[Thinlet-development] thinlet/src/java/thinlet/examples/demo demo.xml,1.4,1.5
Brought to you by:
bajzat
From: Andrzej B. <ab...@us...> - 2004-08-15 22:42:58
|
Update of /cvsroot/thinlet/thinlet/src/java/thinlet/examples/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/examples/demo Modified Files: demo.xml Log Message: Enable textfields and textareas to take an "alignment" attribute. Change the Demo to illustrate this functionality. Submitted by Don Ledford. Thank you! Index: demo.xml =================================================================== RCS file: /cvsroot/thinlet/thinlet/src/java/thinlet/examples/demo/demo.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- demo.xml 7 Jun 2004 23:10:25 -0000 1.4 +++ demo.xml 15 Aug 2004 22:42:46 -0000 1.5 @@ -298,6 +298,14 @@ <textarea valign="fill" weighty="1" weightx="1" halign="fill" border="false" wrap="true" editable="false" font="Serif italic bold 14" foreground="#88ff88" background="#446600" text="Most components support custom background / foreground colors and font settings"/> </panel> </tab> + <tab text="Five"> + <panel columns="1" gap="4"> + <label text="Text alignment:"/> + <textfield alignment="left" columns="15" text="left"/> + <textfield alignment="center" columns="15" text="center"/> + <textfield alignment="right" columns="15" text="right"/> + </panel> + </tab> </tabbedpane> </panel> <separator/> |