Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 13f5dcef5358e9d5a2a5a1ae6baf28fc > files > 32

gtkdialog-0.8.3-1.mga5.x86_64.rpm

#!/bin/sh

# Thunor: This example is broken: input from a command has not been
# implemented for this widget and it's now old and deprecated.

GTKDIALOG=gtkdialog

MAIN_DIALOG='
<window>
	<vbox>
		<hbox>
			<text>
				<label>Combobox:</label>
			</text>
			<combobox>
				<variable>COMBOBOX</variable>
				<input>ls</input>
			</combobox>
		</hbox>
		<hbox>
			<button ok></button>
			<button cancel></button>
		</hbox>
	</vbox>
</window>
'
export MAIN_DIALOG

case $1 in
	-d | --dump) echo "$MAIN_DIALOG" ;;
	*) $GTKDIALOG --program=MAIN_DIALOG ;;
esac