wok-current diff gtkdialog/stuff/examples/10.00-vbox_and_hbox @ rev 215
Up: 2.6.24.2 add new files in stuff/
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 14 19:12:23 2008 +0100 (2008-02-14) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gtkdialog/stuff/examples/10.00-vbox_and_hbox Thu Feb 14 19:12:23 2008 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +#!/bin/sh 1.5 + 1.6 +export MAIN_DIALOG=' 1.7 + <vbox> 1.8 + <hbox> 1.9 + <text><label>Label1</label></text> 1.10 + <entry></entry> 1.11 + </hbox> 1.12 + <hbox> 1.13 + <text><label>Label2</label></text> 1.14 + <entry></entry> 1.15 + </hbox> 1.16 + <hbox> 1.17 + <button cancel></button> 1.18 + <button help></button> 1.19 + </hbox> 1.20 + </vbox> 1.21 +' 1.22 + 1.23 +gtkdialog --program=MAIN_DIALOG 1.24 + 1.25 +