Sophie

Sophie

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

gtkdialog-0.8.3-1.mga5.x86_64.rpm

#!/bin/sh

GTKDIALOG=gtkdialog

MAIN_DIALOG='
<window>
	<vbox>
		<hbox border-width="30" spacing="30">
			<vbox>
				<text wrap="false" angle="45">
					<label>"Angled text (line wrapping must
    be disabled for this) and any
        angle is supported."</label>
				</text>
				<hseparator></hseparator>
				<text justify="0">
					<label>"This text is left justified relative to
the other lines within this text (default)"</label>
				</text>
				<hseparator></hseparator>
				<text justify="1">
					<label>"This text is right justified relative to
the other lines within this text"</label>
				</text>
			</vbox>
			<vseparator></vseparator>
			<vbox>
				<text justify="2">
					<label>"This text is centre justified relative to
the other lines within this text"</label>
				</text>
				<hseparator></hseparator>
				<text max-width-chars="20">
					<label>The desired maximum width of the text, in characters.</label>
				</text>
				<hseparator></hseparator>
				<text width-chars="20">
					<label>The desired width of the text, in characters.</label>
				</text>
				<hseparator></hseparator>
				<text pattern="This ____ includes ____ underlined _____.">
					<label>This text includes some underlined words.</label>
				</text>
				<hseparator></hseparator>
				<text selectable="true">
					<label>This text can be selected and will be selected by default if it has the focus (press Tab to move the focus here from the OK button).</label>
				</text>
				<hseparator></hseparator>
				<text use-markup="true">
					<label>"<span fgcolor='"'darkred'"'><b>This</b></span> <s>text</s> <i>includes</i> <span fgcolor='"'darkgreen'"'>XML</span> <u>markup</u>."</label>
				</text>
			</vbox>
		</hbox>
		<hseparator></hseparator>
		<hbox homogeneous="true">
			<button use-stock="true" label="gtk-ok" has-focus="true"></button>
		</hbox>
	</vbox>
</window>
'
export MAIN_DIALOG

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