diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2016-12-24 23:16:47 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2016-12-24 23:16:47 +0000 |
commit | 30f4daf518bf907e560f9a60da6ae76fce86fb29 (patch) | |
tree | 046ec79762a2c1f0154448e4c9864c074dcb9605 /officeui.sh | |
parent | 6b3099135638121af264e3b37e0232a44585d3d7 (diff) |
add button icons, improve main UI, now it looks stunning
Diffstat (limited to 'officeui.sh')
-rwxr-xr-x | officeui.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/officeui.sh b/officeui.sh deleted file mode 100755 index 7e8703d..0000000 --- a/officeui.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env bash - -# create office user interface -export local officeui=' -<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 Office> - <hbox space-expand="true" space-extend="true"> - <table hscrollbar-policy="1" vscrollbar-policy="1" exported-column="1"> - <variable>office</variable> - <label>Application Category|Application Name|Application Description</label> - <item>app-office|abiword|Fully featured yet light and fast cross platform word processor documentation</item> - <item>app-office|fet|Opensource school/high-school/university timetable scheduling software</item> - <item>app-office|gnucash|A personal finance manager</item> - <item>app-office|libreoffice|A full office productivity suite</item> - <item>app-office|wps-office|WPS Office is an office productivity suite</item> - <item>app-text|qpdfview|A tabbed document viewer</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 $office</action> - </button> - <button space-expand="true" space-extend="true" label-text="uninstall"> - <label>Uninstall package</label> - <action>$showprogress epkg autoremove $office</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>' |