blob: 70a984725215b8fd8352f77a23fd250ec49ad4d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $XConsortium: box,v 1.2 94/04/01 16:33:14 matt Exp $
# This dish script draws a resizeable glyph
set style [figure_kit default_style]
set hello [figure_kit label style hello]
set world [figure_kit label style world]
set hbox [layout_kit hbox]
hbox append hello
hbox append [layout_kit hfil]
hbox append world
main 0 hbox
|