[Thinlet-development] thinlet/src/java/thinlet Thinlet.java,1.11,1.12
Brought to you by:
bajzat
From: Andrzej B. <ab...@us...> - 2004-08-15 22:43:02
|
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 } } + }; + } +} |