Update of /cvsroot/qooxdoo/qooxdoo/source/script/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26687/source/script/core
Modified Files:
Tag: renderer
QxApplication.js QxConst.js
Log Message:
Moved many styling stuff to the widgets, dramatically reduced size of qooxdoo.css, direct font handling in appearance of QxLabel and QxTextField, default font-size for all qooxdoo widgets is from now on zero.
Index: QxConst.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxConst.js,v
retrieving revision 1.1.2.25
retrieving revision 1.1.2.26
diff -u -d -r1.1.2.25 -r1.1.2.26
--- QxConst.js 24 Jan 2006 12:46:05 -0000 1.1.2.25
+++ QxConst.js 24 Jan 2006 16:48:54 -0000 1.1.2.26
@@ -68,6 +68,7 @@
CORE_HIDDEN : "hidden",
CORE_0PIXEL : "0px",
CORE_ABSOLUTE : "absolute",
+ CORE_INLINE : "inline",
CORE_FIXED : "fixed",
CORE_DIV : "div",
CORE_DISABLED : "disabled",
@@ -148,6 +149,7 @@
PROPERTY_BORDERY : "borderY",
PROPERTY_BORDERWIDTHY : "borderWidthY",
PROPERTY_DISPLAY : "display",
+ PROPERTY_POSITION : "position",
PROPERTY_VISIBILITY : "visibility",
PROPERTY_DISABLED : "disabled",
PROPERTY_LINEHEIGHT : "lineHeight",
Index: QxApplication.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxApplication.js,v
retrieving revision 1.2.2.57
retrieving revision 1.2.2.58
diff -u -d -r1.2.2.57 -r1.2.2.58
--- QxApplication.js 16 Jan 2006 16:11:55 -0000 1.2.2.57
+++ QxApplication.js 24 Jan 2006 16:48:54 -0000 1.2.2.58
@@ -144,6 +144,9 @@
// Build virtual methods for easy additions of childrens and so on
this._remappingChildTable = QxParent.prototype._remappingChildTable;
QxParent.prototype.remapChildrenHandlingTo.call(this, this._clientWindow.getClientDocument());
+
+ // Early initial flush
+ QxWidget.flushGlobalQueues();
};
proto._initMain = function()
|