[Thinlet-development] thinlet/src/java/thinlet Thinlet.java,1.5,1.6
Brought to you by:
bajzat
From: <ba...@us...> - 2003-10-13 11:40:37
|
Update of /cvsroot/thinlet/thinlet/src/java/thinlet In directory sc8-pr-cvs1:/tmp/cvs-serv24660 Modified Files: Thinlet.java Log Message: Resizable property for dialogs (see the dialog demo in drafts). Popup (of menu, or combobox) location bug fixed in scrollable dialogs. Panel border is interrupted behind its title content. Angle tree property to draw lines detailing the relationships between nodes. Index: Thinlet.java =================================================================== RCS file: /cvsroot/thinlet/thinlet/src/java/thinlet/Thinlet.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Thinlet.java 18 Aug 2003 10:59:02 -0000 1.5 +++ Thinlet.java 13 Oct 2003 11:40:28 -0000 1.6 @@ -1,6567 +1,6638 @@ -/* - Thinlet GUI toolkit - www.thinlet.com - Copyright (C) 2002 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 [...13175 lines suppressed...] + "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 } } + }; + } +} \ No newline at end of file |