summaryrefslogtreecommitdiff
path: root/ui/multimediaui.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/multimediaui.sh')
-rwxr-xr-xui/multimediaui.sh37
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/multimediaui.sh b/ui/multimediaui.sh
new file mode 100755
index 0000000..a1bc4c5
--- /dev/null
+++ b/ui/multimediaui.sh
@@ -0,0 +1,37 @@
+#!/usr/bin/env bash
+
+# create multimedia user interface
+export local multimediaui='
+<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 Multimedia>
+ <hbox space-expand="true" space-extend="true">
+ <table hscrollbar-policy="1" vscrollbar-policy="1" exported-column="1">
+ <variable>multimedia</variable>
+ <label>Application Category|Application Name|Application Description</label>
+ <item>media-tv|tv-maxe|Program to view free channels</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 $multimedia</action>
+ </button>
+ <button space-expand="true" space-extend="true" label-text="uninstall">
+ <label>Uninstall package</label>
+ <action>$showprogress epkg autoremove $multimedia</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>'