|
From: Harry E. <har...@us...> - 2006-09-18 11:31:29
|
Update of /cvsroot/synclast/client/examples/SynclastUIDemo/bin In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv18107/examples/SynclastUIDemo/bin Modified Files: MANIFEST.MF SynclastUIDemo.jad Log Message: Fixed size fixes. Containers now always respect the values set in setFixedSize(width, height). BoxContainer, FlowContainer, and TableContainer have all been modded to properly respect the fixedW and fixedH varaibles. Container now calls layout when setFixedSize(width, height) is called. Added a FixedSizeMIDlet to examples, and modded the jad and MANIFEST to expose it. This MIDlet is ugly, but demonstrates proper function. Without these changes, the widgets only draw themselves in the area defined by fixedW and fixedH, but leave their full amount of space around (coded the midlet before the changes to verify this :) Index: MANIFEST.MF =================================================================== RCS file: /cvsroot/synclast/client/examples/SynclastUIDemo/bin/MANIFEST.MF,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MANIFEST.MF 3 Aug 2003 21:16:25 -0000 1.3 --- MANIFEST.MF 18 Sep 2006 11:31:26 -0000 1.4 *************** *** 4,7 **** --- 4,8 ---- MIDlet-4: RasterEffect, , RasterMIDlet MIDlet-5: Table, , TableMIDlet + MIDlet-6: FixedSize, , FixedSizeMIDlet MIDlet-Name: SynclastUIDemo MIDlet-Vendor: Synclast Index: SynclastUIDemo.jad =================================================================== RCS file: /cvsroot/synclast/client/examples/SynclastUIDemo/bin/SynclastUIDemo.jad,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SynclastUIDemo.jad 5 Feb 2004 01:55:07 -0000 1.7 --- SynclastUIDemo.jad 18 Sep 2006 11:31:26 -0000 1.8 *************** *** 4,7 **** --- 4,8 ---- MIDlet-4: RasterEffect, , RasterMIDlet MIDlet-5: Table, , TableMIDlet + MIDlet-6: FixedSize, , FixedSizeMIDlet MIDlet-Jar-Size: 100 MIDlet-Jar-URL: SynclastUIDemo.jar |