Update of /cvsroot/qooxdoo/qooxdoo/source/test/user
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11082/source/test/user
Modified Files:
Tag: renderer
Grid_Layout_10.html Grid_Layout_11.html Grid_Layout_5.html
Grid_Layout_6.html
Log Message:
Improved examples, fixed for latest changes in grid layout implementation
Index: Grid_Layout_5.html
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_5.html,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -d -r1.1.2.4 -r1.1.2.5
--- Grid_Layout_5.html 13 Dec 2005 10:04:00 -0000 1.1.2.4
+++ Grid_Layout_5.html 26 Jan 2006 08:53:26 -0000 1.1.2.5
@@ -71,7 +71,6 @@
var input7 = new QxButton("Submit", "icons/16/apply.png");
input7.setHorizontalAlign("right");
- input6.setDimension(null, null);
gl.add(label1, 0, 0);
gl.add(input1, 1, 0);
Index: Grid_Layout_6.html
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_6.html,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- Grid_Layout_6.html 13 Dec 2005 10:04:00 -0000 1.1.2.2
+++ Grid_Layout_6.html 26 Jan 2006 08:53:26 -0000 1.1.2.3
@@ -82,14 +82,19 @@
var input1 = new QxTextField;
var input2 = new QxTextField;
- var input3 = new QxTextField;
+ var input3 = new QxComboBox;
var input4 = new QxTextField;
var input5 = new QxTextField;
var input6 = new QxTextArea;
var input7 = new QxButton("Submit", "icons/16/apply.png");
+ input3.add(new QxListItem("New York"));
+ input3.add(new QxListItem("Paris"));
+ input3.add(new QxListItem("Sydney"));
+ input3.add(new QxListItem("Berlin"));
+ input3.add(new QxListItem("Washington"));
+
input7.setHorizontalAlign("right");
- input6.setDimension(null, null);
gl.add(label1, 0, 0);
gl.add(input1, 1, 0);
Index: Grid_Layout_10.html
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_10.html,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- Grid_Layout_10.html 13 Dec 2005 10:04:00 -0000 1.1.2.2
+++ Grid_Layout_10.html 26 Jan 2006 08:53:26 -0000 1.1.2.3
@@ -73,15 +73,15 @@
gl.add(t1, 0, 1);
var b1 = new QxButton("OK");
- b1.setWidth(null);
+ b1.setAllowStretchX(true);
gl.add(b1, 2, 3);
var b2 = new QxButton("Cancel");
- b2.setWidth(null);
+ b2.setAllowStretchX(true);
gl.add(b2, 3, 3);
var b3 = new QxButton("Browse...");
- b3.setWidth(null);
+ b3.setAllowStretchX(true);
b3.getLabelObject().setMnemonic("B");
gl.add(b3, 4, 3);
Index: Grid_Layout_11.html
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/test/user/Attic/Grid_Layout_11.html,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- Grid_Layout_11.html 13 Dec 2005 10:04:00 -0000 1.1.2.3
+++ Grid_Layout_11.html 26 Jan 2006 08:53:26 -0000 1.1.2.4
@@ -73,15 +73,15 @@
gl.add(t1, 0, 1);
var b1 = new QxButton("OK");
- b1.setWidth(null);
+ b1.setAllowStretchX(true);
gl.add(b1, 2, 3);
var b2 = new QxButton("Cancel");
- b2.setWidth(null);
+ b2.setAllowStretchX(true);
gl.add(b2, 3, 3);
var b3 = new QxButton("Browse...");
- b3.setWidth(null);
+ b3.setAllowStretchX(true);
b3.getLabelObject().setMnemonic("B");
gl.add(b3, 4, 3);
|