Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26513/source/script/gui
Modified Files:
Tag: renderer
QxParent.js QxWidget.js
Log Message:
Reworked zIndex stuff to fix some ugly bugs. Hopefully this completly reworked version does it better
Index: QxWidget.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidget.js,v
retrieving revision 1.1.2.47
retrieving revision 1.1.2.48
diff -C2 -d -r1.1.2.47 -r1.1.2.48
*** QxWidget.js 16 Jan 2006 18:45:56 -0000 1.1.2.47
--- QxWidget.js 17 Jan 2006 13:47:13 -0000 1.1.2.48
***************
*** 183,187 ****
this might give unrespected results.
*/
! QxWidget.addProperty({ name : "zIndex", type : QxConst.TYPEOF_NUMBER, impl : "styleProperty" });
/*!
--- 183,187 ----
this might give unrespected results.
*/
! QxWidget.addProperty({ name : "zIndex", type : QxConst.TYPEOF_NUMBER });
/*!
***************
*** 3414,3421 ****
*/
- proto._modifyStyleProperty = function(propValue, propOldValue, propData) {
- return this.setStyleProperty(propData.name, propValue);
- };
-
proto.getStyleProperty = function(propName) {
return this._styleProperties[propName] || QxConst.CORE_EMPTY;
--- 3414,3417 ----
***************
*** 3646,3649 ****
--- 3642,3660 ----
+ /*
+ ---------------------------------------------------------------------------
+ ZINDEX
+ ---------------------------------------------------------------------------
+ */
+
+ proto._modifyZIndex = function(propValue, propOldValue, propData) {
+ return this.setStyleProperty(propData.name, propValue);
+ };
+
+
+
+
+
+
/*
Index: QxParent.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxParent.js,v
retrieving revision 1.1.2.19
retrieving revision 1.1.2.20
diff -C2 -d -r1.1.2.19 -r1.1.2.20
*** QxParent.js 16 Jan 2006 16:11:55 -0000 1.1.2.19
--- QxParent.js 17 Jan 2006 13:47:11 -0000 1.1.2.20
***************
*** 892,896 ****
var vChanges = vChild._layoutChanges;
! // this.debug("Layouting " + vChild + ": " + QxUtil.convertObjectToString(vChanges));
try
--- 892,896 ----
var vChanges = vChild._layoutChanges;
! // this.debug("Layouting " + vChild + ": " + QxUtil.convertObjectKeysToString(vChanges));
try
|