diff options
Diffstat (limited to 'ui/graphicsui.sh')
-rwxr-xr-x | ui/graphicsui.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ui/graphicsui.sh b/ui/graphicsui.sh new file mode 100755 index 0000000..5c3f243 --- /dev/null +++ b/ui/graphicsui.sh @@ -0,0 +1,36 @@ +#!/usr/bin/env bash + +# create graphics user interface +export local graphicsui=' +<window title="Sisyphus - A simple Epkg GUI" window-position="1" icon-name="gtk-search" modal="true" resizable="false" width-request="800" height-request="600"> +<vbox> +<frame Graphics> + <hbox space-expand="true" space-extend="true"> + <table hscrollbar-policy="1" vscrollbar-policy="1" exported-column="1"> + <variable>graphics</variable> + <label>Application Category|Application Name|Application Description</label> + <item>media-gfx|gimp|GNU Image Manipulation Program</item> + </table> + </hbox> + <hbox space-expand="false" space-extend="false"> + <button space-expand="true" space-extend="true" label-text="install"> + <label>Install package</label> + <action>$showprogress epkg autoinstall $graphics</action> + </button> + <button space-expand="true" space-extend="true" label-text="uninstall"> + <label>Uninstall package</label> + <action>$showprogress epkg autoremove $graphics</action> + </button> + <button space-expand="true" space-extend="true" label-text="home"> + <label>Back home</label> + <action signal="button-press-event">gtkdialog --space-expand=true --space-fill=true --program=mainui &</action> + <action signal="button-release-event">EXIT:ok</action> + </button> + <button space-expand="true" space-extend="true" label-text="exit"> + <label>Exit</label> + <action>EXIT:ok</action> + </button> + </hbox> +</frame> +</vbox> +</window>' |