hatari/python-ui/hatariui

25 lines
817 B
Plaintext
Raw Normal View History

#!/bin/sh
#
path=${0%/*}
name=${0##*/}
# example setup for Hatari UI
2008-07-11 02:15:07 +03:00
$path/$name.py --right "about,|,run,pause,|,reset,debug,|,quit" --embed
return
2008-07-07 00:17:11 +03:00
# test setup without embedding, dupplicate toggles
$path/$name.py --top "about,run,pause,quit" \
2008-07-07 00:17:11 +03:00
--panel "Testpanel,pause,>,close" \
--bottom "sound,|,pause,|,fast,|,Testpanel"
return
# test setup with embedding and all available controls
$path/$name.py --embed \
--top "about,|,run,pause,|,reset,debug,|,quit" \
--left "run,pause,reset,machine,about" \
--panel "Keys,F1=59,F2=60,F3=61,F4=62,F5=63,F6=64,F7=65,F8=66,F9=67,F10=68,>,Macro=Test,Undo=97,Help=98,Enter=114,>,close" \
--panel "Misc,fast,|,full,|,sound,>,shot,>,close" \
--bottom "fast,full,Misc,Keys,input,devices,display,debug,trace" \
--right "fast,full,Misc,Keys,input,devices,display,Help=98"
2008-07-07 00:17:11 +03:00
return