Re: [Thinlet-development] thinlet/src/java/thinlet Thinlet.java,1.11,1.12
Brought to you by:
bajzat
From: Stephen C. <sco...@bt...> - 2004-08-15 23:06:28
|
Could we rename the parameter to 'align' please ? This would fit better with HTML, and result in less head scratching when using both HTML and thinlet. Stephen ----- Original Message ----- From: "Andrzej Bialecki" <ab...@us...> Sent: Sunday, August 15, 2004 11:42 PM Subject: [Thinlet-development] thinlet/src/java/thinlet Thinlet.java,1.11,1.12 > Update of /cvsroot/thinlet/thinlet/src/java/thinlet > In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209 > > Modified Files: > Thinlet.java > 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: Thinlet.java > =================================================================== > RCS file: /cvsroot/thinlet/thinlet/src/java/thinlet/Thinlet.java,v > retrieving revision 1.11 > retrieving revision 1.12 > diff -u -d -r1.11 -r1.12 > --- Thinlet.java 7 Jun 2004 23:23:07 -0000 1.11 > +++ Thinlet.java 15 Aug 2004 22:42:40 -0000 1.12 > @@ -1,6789 +1,6830 @@ > -/* Thinlet GUI toolkit - www.thinlet.com > - * Copyright (C) 2002-2003 Robert Bajzat (rob...@th...) > - * > - * This library is free software; you can redistribute it and/or > - * modify it under the terms of the GNU Lesser General Public > - * License as published by the Free Software Foundation; either > - * version 2.1 of the License, or (at your option) any later version. > - * > - * This library is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > [...13588 lines suppressed...] > + { "boolean", "expanded", null, Boolean.TRUE } }, > + "separator", "component", null, > + "menubar", "component", new Object[][] { > + { "choice", "placement", "validate", new String[] { "top", "bottom" } } }, > + "menu", "choice", new Object[][] { > + { "integer", "mnemonic", "paint", integer_1 } }, > + "menuitem", "choice", new Object[][] { > + { "keystroke", "accelerator", null, null }, > + { "method", "action" }, > + { "integer", "mnemonic", "paint", integer_1 } }, > + "checkboxmenuitem", "menuitem", new Object[][] { > + { "boolean", "selected", "paint", Boolean.FALSE }, //...group > + { "string", "group", "paint", null } }, //...group > + "popupmenu", "component", new Object[][] { > + { "method", "menushown" } }, // Post menu: Shift+F10 > + "bean", "component", new Object[][] { > + { "bean", "bean", null, null } } > + }; > + } > +} > > > > ------------------------------------------------------- > SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media > 100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33 > Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift. > http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285 > _______________________________________________ > Thinlet-development mailing list > Thi...@li... > https://lists.sourceforge.net/lists/listinfo/thinlet-development |