qooxdoo-commit Mailing List for qooxdoo (Page 1416)
Brought to you by:
ecker,
martinwittemann
You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(453) |
Feb
(800) |
Mar
(247) |
Apr
(324) |
May
(172) |
Jun
(145) |
Jul
(265) |
Aug
(447) |
Sep
(271) |
Oct
(312) |
Nov
(327) |
Dec
(472) |
| 2007 |
Jan
(493) |
Feb
(631) |
Mar
(565) |
Apr
(469) |
May
(757) |
Jun
(460) |
Jul
(440) |
Aug
(411) |
Sep
(813) |
Oct
(339) |
Nov
(112) |
Dec
(215) |
| 2008 |
Jan
(423) |
Feb
(671) |
Mar
(578) |
Apr
(566) |
May
(498) |
Jun
(411) |
Jul
(845) |
Aug
(1208) |
Sep
(176) |
Oct
(144) |
Nov
(216) |
Dec
(353) |
| 2009 |
Jan
(363) |
Feb
(700) |
Mar
(416) |
Apr
(362) |
May
(292) |
Jun
(238) |
Jul
(243) |
Aug
(216) |
Sep
(287) |
Oct
(304) |
Nov
(300) |
Dec
(416) |
| 2010 |
Jan
(200) |
Feb
(200) |
Mar
(183) |
Apr
(259) |
May
(217) |
Jun
(241) |
Jul
(320) |
Aug
(330) |
Sep
(209) |
Oct
(217) |
Nov
(460) |
Dec
(392) |
| 2011 |
Jan
(338) |
Feb
(465) |
Mar
(1257) |
Apr
(433) |
May
(505) |
Jun
(417) |
Jul
(438) |
Aug
(241) |
Sep
(258) |
Oct
(223) |
Nov
(224) |
Dec
(172) |
| 2012 |
Jan
(151) |
Feb
(119) |
Mar
(220) |
Apr
(182) |
May
(236) |
Jun
(264) |
Jul
(188) |
Aug
(145) |
Sep
(186) |
Oct
(183) |
Nov
(243) |
Dec
(126) |
| 2013 |
Jan
(133) |
Feb
(165) |
Mar
(122) |
Apr
(116) |
May
(177) |
Jun
(177) |
Jul
(290) |
Aug
(150) |
Sep
(165) |
Oct
(168) |
Nov
(252) |
Dec
(152) |
| 2014 |
Jan
(109) |
Feb
(150) |
Mar
(135) |
Apr
(186) |
May
(235) |
Jun
(181) |
Jul
(193) |
Aug
(117) |
Sep
(118) |
Oct
(194) |
Nov
(207) |
Dec
(261) |
| 2015 |
Jan
(138) |
Feb
(218) |
Mar
(180) |
Apr
(141) |
May
(114) |
Jun
(24) |
Jul
(22) |
Aug
(14) |
Sep
(22) |
Oct
(11) |
Nov
(7) |
Dec
(10) |
| 2016 |
Jan
(1) |
Feb
(31) |
Mar
(13) |
Apr
(30) |
May
(34) |
Jun
(25) |
Jul
(16) |
Aug
(14) |
Sep
(21) |
Oct
(20) |
Nov
(6) |
Dec
|
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:51:38
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2517/source/script/gui Modified Files: Tag: renderer QxWidgetCore.js Log Message: Cleaned up old big global flush method Index: QxWidgetCore.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidgetCore.js,v retrieving revision 1.1.2.15 retrieving revision 1.1.2.16 diff -u -d -r1.1.2.15 -r1.1.2.16 --- QxWidgetCore.js 2 Feb 2006 14:10:25 -0000 1.1.2.15 +++ QxWidgetCore.js 3 Feb 2006 09:51:31 -0000 1.1.2.16 @@ -40,36 +40,6 @@ --------------------------------------------------------------------------- */ -QxWidget.timeTracker = function(funcRef, doIt, trackId) -{ - var s = (new Date).valueOf(); - - QxWidget.executor(funcRef, doIt, trackId); - - return (new Date).valueOf()-s; -}; - -QxWidget.executor = function(funcRef, doIt, trackId) -{ - try - { - return funcRef(doIt); - } - catch(ex) - { - throw new Error("QxWidget: Error while executing queue flush(" + trackId + "): " + ex); - }; -}; - -QxWidget.enableDebug = false; - -QxWidget.TRACKID_WIDGET = "widget"; -QxWidget.TRACKID_ELEMENT = "element"; -QxWidget.TRACKID_STATE = "state"; -QxWidget.TRACKID_JOB = "job"; -QxWidget.TRACKID_LAYOUT = "layout"; -QxWidget.TRACKID_DISPLAY = "display"; - QxWidget.flushGlobalQueues = function() { if (QxWidget._inFlushGlobalQueues || !window.application.isReady()) { @@ -79,30 +49,13 @@ // Also used for inline event handling to seperate 'real' events QxWidget._inFlushGlobalQueues = true; - var tt = QxWidget.enableDebug ? QxWidget.timeTracker : QxWidget.executor; - - var do1 = QxWidget._globalWidgetQueue.length; - var ti1 = do1 ? tt(QxWidget.flushGlobalWidgetQueue, do1, QxWidget.TRACKID_WIDGET) : 0; - - var do2 = QxWidget._globalElementQueue.length; - var ti2 = do2 ? tt(QxWidget.flushGlobalElementQueue, do2, QxWidget.TRACKID_ELEMENT) : 0; - - var do3 = QxWidget._globalStateQueue.length; - var ti3 = do3 ? tt(QxWidget.flushGlobalStateQueue, do3, QxWidget.TRACKID_STATE) : 0; - - var do4 = QxWidget._globalJobQueue.length; - var ti4 = do4 ? tt(QxWidget.flushGlobalJobQueue, do4, QxWidget.TRACKID_JOB) : 0; - - var do5 = QxWidget._globalLayoutQueue.length; - var ti5 = do5 ? tt(QxWidget.flushGlobalLayoutQueue, do5, QxWidget.TRACKID_LAYOUT) : 0; - - var do6 = QxWidget._fastGlobalDisplayQueue.length > 0 || !QxUtil.isObjectEmpty(QxWidget._lazyGlobalDisplayQueues); - var ti6 = do6 ? tt(QxWidget.flushGlobalDisplayQueue, do6, QxWidget.TRACKID_DISPLAY) : 0; - - if (QxWidget.enableDebug && (ti1 > 0 || ti2 > 0 || ti3 > 0 || ti4 > 0 || ti5 > 0 || ti6 > 0)) { - window.status = "Global-Queue-Runtime: (Widget=" + ti1 + "|Elem=" + ti2 + "|State=" + ti3 + "|Jobs=" + ti4 + "|Layout=" + ti5 + "|Display=" + ti6 + ") = " + (ti1+ti2+ti3+ti4+ti5+ti6) + " [" + ((new Date).valueOf()-window._htmlstart) + "]"; - }; - + QxWidget.flushGlobalWidgetQueue(); + QxWidget.flushGlobalStateQueue(); + QxWidget.flushGlobalElementQueue(); + QxWidget.flushGlobalJobQueue(); + QxWidget.flushGlobalLayoutQueue(); + QxWidget.flushGlobalDisplayQueue(); + delete QxWidget._inFlushGlobalQueues; }; |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:49:01
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/appearance Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/appearance added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:49:00
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/icons In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/icons Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/icons added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:49:00
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/widgets Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/widgets added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:48:59
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/meta In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/meta Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/meta added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:48:59
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/font In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/font Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/font added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:48:58
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes/colors In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1161/source/themes/colors Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes/colors added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:48:48
|
Update of /cvsroot/qooxdoo/qooxdoo/source/themes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1104/source/themes Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/themes added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:43:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/themes/color In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31503/source/script/themes/color Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/script/themes/color added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:43:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/themes/meta In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31503/source/script/themes/meta Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/script/themes/meta added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:43:57
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/themes/font In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31503/source/script/themes/font Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/script/themes/font added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:43:56
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/themes/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31503/source/script/themes/appearance Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/script/themes/appearance added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:43:37
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/themes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31436/source/script/themes Log Message: Directory /cvsroot/qooxdoo/qooxdoo/source/script/themes added to the repository --> Using per-directory sticky tag `renderer' |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:42:21
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30769/source/script/gui Modified Files: Tag: renderer QxBorder.js QxFont.js Log Message: Don't use features of QxTarget Index: QxFont.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxFont.js,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- QxFont.js 16 Jan 2006 16:11:55 -0000 1.1.2.5 +++ QxFont.js 3 Feb 2006 09:42:13 -0000 1.1.2.6 @@ -48,7 +48,7 @@ }; }; -QxFont.extend(QxTarget, "QxFont"); +QxFont.extend(QxObject, "QxFont"); @@ -223,5 +223,5 @@ delete this._defs; - return QxTarget.prototype.dispose.call(this); + return QxObject.prototype.dispose.call(this); }; Index: QxBorder.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxBorder.js,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- QxBorder.js 16 Jan 2006 16:11:55 -0000 1.1.2.8 +++ QxBorder.js 3 Feb 2006 09:42:13 -0000 1.1.2.9 @@ -36,7 +36,7 @@ */ function QxBorder(vWidth, vStyle, vColor) { - QxTarget.call(this); + QxObject.call(this); this._themedEdges = {}; this._initCache(); @@ -55,7 +55,7 @@ }; }; -QxBorder.extend(QxTarget, "QxBorder"); +QxBorder.extend(QxObject, "QxBorder"); QxBorder.enhancedCrossBrowserMode = true; QxBorder.baseColor = "threedlightshadow"; @@ -1167,5 +1167,5 @@ delete this._themedEdges; - return QxTarget.prototype.dispose.call(this); + return QxObject.prototype.dispose.call(this); }; \ No newline at end of file |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:41:52
|
Update of /cvsroot/qooxdoo/qooxdoo/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30530/tools Modified Files: Tag: renderer config.sh Log Message: Converted to a real QxObject Index: config.sh =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/tools/config.sh,v retrieving revision 1.16.2.100 retrieving revision 1.16.2.101 diff -u -d -r1.16.2.100 -r1.16.2.101 --- config.sh 30 Jan 2006 13:36:27 -0000 1.16.2.100 +++ config.sh 3 Feb 2006 09:41:43 -0000 1.16.2.101 @@ -4,7 +4,6 @@ L="$L core/QxMain" L="$L core/QxConst" L="$L core/QxExtend" -L="$L core/QxClient" L="$L core/QxNative" L="$L core/QxUtil" L="$L core/QxCompare" @@ -12,6 +11,7 @@ # Core Qooxdoo Objects L="$L core/QxObject" L="$L core/QxObjectCore" +L="$L core/QxClient" L="$L core/QxDom" L="$L core/QxDebug" L="$L core/QxTarget" |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:41:41
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30480/source/script/core Modified Files: Tag: renderer QxClient.js Log Message: Converted to a real QxObject Index: QxClient.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxClient.js,v retrieving revision 1.1.2.19 retrieving revision 1.1.2.20 diff -u -d -r1.1.2.19 -r1.1.2.20 --- QxClient.js 20 Jan 2006 14:10:42 -0000 1.1.2.19 +++ QxClient.js 3 Feb 2006 09:41:33 -0000 1.1.2.20 @@ -62,13 +62,13 @@ // Fix Opera version to match wikipedia style vEngineVersion = vEngineVersion.substring(0, 3) + "." + vEngineVersion.substring(3); - vEngineEmulation = vBrowserUserAgent.indexOf("MSIE") != -1 ? "mshtml" : vBrowserUserAgent.indexOf("Mozilla") != -1 ? "gecko" : null; + vEngineEmulation = vBrowserUserAgent.indexOf("MSIE") !== -1 ? "mshtml" : vBrowserUserAgent.indexOf("Mozilla") !== -1 ? "gecko" : null; } - else if (typeof vBrowserVendor==QxConst.TYPEOF_STRING && vBrowserVendor=="KDE") + else if (typeof vBrowserVendor===QxConst.TYPEOF_STRING && vBrowserVendor==="KDE") { vEngine = "khtml"; } - else if (typeof vBrowserProduct==QxConst.TYPEOF_STRING && vBrowserProduct=="Gecko" && /rv\:([^\);]+)(\)|;)/.test(vBrowserUserAgent)) + else if (typeof vBrowserProduct===QxConst.TYPEOF_STRING && vBrowserProduct==="Gecko" && /rv\:([^\);]+)(\)|;)/.test(vBrowserUserAgent)) { vEngine = "gecko"; vEngineVersion = RegExp.$1; @@ -95,10 +95,10 @@ }; this._engineName = vEngine; - this._engineNameMshtml = vEngine == "mshtml"; - this._engineNameGecko = vEngine == "gecko"; - this._engineNameOpera = vEngine == "opera"; - this._engineNameKhtml = vEngine == "khtml"; + this._engineNameMshtml = vEngine === "mshtml"; + this._engineNameGecko = vEngine === "gecko"; + this._engineNameOpera = vEngine === "opera"; + this._engineNameKhtml = vEngine === "khtml"; this._engineVersion = vEngineVersion; this._engineVersionMajor = vEngineVersionMajor; @@ -106,14 +106,14 @@ this._engineVersionRevision = vEngineVersionRevision; this._engineVersionBuild = vEngineVersionBuild; - this._engineQuirksMode = document.compatMode != "CSS1Compat"; + this._engineQuirksMode = document.compatMode !== "CSS1Compat"; this._engineEmulation = vEngineEmulation; this._browserPlatform = vBrowserPlatform; this._browserModeHta = vBrowserModeHta; }; -QxClient.extend(Object, "QxClient"); +QxClient.extend(QxObject, "QxClient"); |
|
From: Sebastian W. <wp...@us...> - 2006-02-03 09:29:00
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24896/source/script/core Modified Files: Tag: renderer QxDom.js Log Message: Minor bugfix Index: QxDom.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxDom.js,v retrieving revision 1.10.2.25 retrieving revision 1.10.2.26 diff -u -d -r1.10.2.25 -r1.10.2.26 --- QxDom.js 2 Feb 2006 17:16:37 -0000 1.10.2.25 +++ QxDom.js 3 Feb 2006 09:28:49 -0000 1.10.2.26 @@ -836,7 +836,7 @@ vElement.attachEvent(QxDom.STR_ON + vType, vFunction); }; - QxDom.removeEventListener = function(el, vType, vFunction) { + QxDom.removeEventListener = function(vElement, vType, vFunction) { vElement.detachEvent(QxDom.STR_ON + vType, vFunction); }; } |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:21:53
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3993/appearance Modified Files: Tag: renderer QxAppearanceTheme-Default.js Log Message: Changed text position of checked tab view button Index: QxAppearanceTheme-Default.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v retrieving revision 1.1.2.19 retrieving revision 1.1.2.20 diff -u -d -r1.1.2.19 -r1.1.2.20 --- QxAppearanceTheme-Default.js 2 Feb 2006 17:06:36 -0000 1.1.2.19 +++ QxAppearanceTheme-Default.js 2 Feb 2006 17:21:45 -0000 1.1.2.20 @@ -1710,24 +1710,34 @@ { backgroundColor : this.bgcolor_checked, zIndex : 1, - paddingTop : 3, + paddingTop : 2, + paddingBottom : 4, + paddingLeft : 7, paddingRight : 8, - paddingBottom : 3, - paddingLeft : 8, border : vBarTop ? this.border_top_checked : this.border_bottom_checked, marginTop : 0, - marginBottom : 0 + marginBottom : 0, + marginRight : -1, + marginLeft : -2 }; if (vAlignLeft) { - vReturn.marginLeft = vWidget.getParent().getFirstVisibleChild() == vWidget ? 0 : -3; - vReturn.marginRight = -3; + if (vWidget.getParent().getFirstVisibleChild() == vWidget) + { + vReturn.paddingLeft = 6; + vReturn.paddingRight = 7; + vReturn.marginLeft = 0; + } } else { - vReturn.marginLeft = -3; - vReturn.marginRight = vWidget.getParent().getLastVisibleChild() == vWidget ? 0 : -3; + if (vWidget.getParent().getLastVisibleChild() == vWidget) + { + vReturn.paddingLeft = 8; + vReturn.paddingRight = 5; + vReturn.marginRight = 0; + } }; } else @@ -1737,20 +1747,29 @@ backgroundColor : vStates.over ? this.bgcolor_checked : this.bgcolor_normal, zIndex : 0, paddingTop : 2, - paddingRight : 6, paddingBottom : 2, - paddingLeft : 6 + paddingLeft : 5, + paddingRight : 6, + marginRight : 1, + marginLeft : 0 }; if (vAlignLeft) { - vReturn.marginRight = 1; - vReturn.marginLeft = 0; + if (vWidget.getParent().getFirstVisibleChild() == vWidget) + { + vReturn.paddingLeft = 6; + vReturn.paddingRight = 5; + } } else { - vReturn.marginRight = 0; - vReturn.marginLeft = 1; + if (vWidget.getParent().getLastVisibleChild() == vWidget) + { + vReturn.paddingLeft = 6; + vReturn.paddingRight = 5; + vReturn.marginRight = 0; + } }; if (vBarTop) |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:18:50
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2580/core Modified Files: Tag: renderer QxObjectCore.js Log Message: Dos2Unix Index: QxObjectCore.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxObjectCore.js,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- QxObjectCore.js 27 Jan 2006 15:32:02 -0000 1.1.2.4 +++ QxObjectCore.js 2 Feb 2006 17:18:41 -0000 1.1.2.5 @@ -1,72 +1,72 @@ -/* ************************************************************************ - - qooxdoo - the new era of web interface development - - Version: - $Id$ - - Copyright: - (C) 2004-2005 by Schlund + Partner AG, Germany - All rights reserved - - License: - LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ - - Internet: - * http://qooxdoo.oss.schlund.de - - Authors: - * Sebastian Werner (wpbasti) - <sebastian dot werner at 1und1 dot de> - * Andreas Ecker (aecker) - <andreas dot ecker at 1und1 dot de> - -************************************************************************ */ - -/* ************************************************************************ - -#package(core) -#require(QxObject) - -************************************************************************ */ - -var QxObjectCounter = 0; -var QxObjectDataBase = []; - -QxObject.toHashCode = function(o) -{ - if(o._hashCode != null) { - return o._hashCode; - }; - - return o._hashCode = QxObjectCounter++; -}; - -QxObject.dispose = function() -{ - // QxDebug("QxObject", "Disposing Application"); - - var vStart = (new Date).valueOf(); - var vObject; - - for (var i=QxObjectDataBase.length-1; i>=0; i--) - { - vObject = QxObjectDataBase[i]; - - if (vObject != null) - { - // QxDebug("QxObject", "Disposing: " + vObject); - vObject.dispose(); - QxObjectDataBase[i] = null; - }; - }; - - // QxDebug("QxObject", "Done in: " + ((new Date).valueOf() - vStart) + "ms"); -}; - -QxObject.addProperty({ name : "enabled", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true, getAlias : "isEnabled" }); - -QxObject.DEBUG_MSG_BEFORE = "[HASHCODE:"; -QxObject.DEBUG_MSG_AFTER = "]"; -QxObject.DEBUG_FUNCERRORPRE = "Failed to execute \""; -QxObject.DEBUG_FUNCERRORPOST = "()\": "; +/* ************************************************************************ + + qooxdoo - the new era of web interface development + + Version: + $Id$ + + Copyright: + (C) 2004-2005 by Schlund + Partner AG, Germany + All rights reserved + + License: + LGPL 2.1: http://creativecommons.org/licenses/LGPL/2.1/ + + Internet: + * http://qooxdoo.oss.schlund.de + + Authors: + * Sebastian Werner (wpbasti) + <sebastian dot werner at 1und1 dot de> + * Andreas Ecker (aecker) + <andreas dot ecker at 1und1 dot de> + +************************************************************************ */ + +/* ************************************************************************ + +#package(core) +#require(QxObject) + +************************************************************************ */ + +var QxObjectCounter = 0; +var QxObjectDataBase = []; + +QxObject.toHashCode = function(o) +{ + if(o._hashCode != null) { + return o._hashCode; + }; + + return o._hashCode = QxObjectCounter++; +}; + +QxObject.dispose = function() +{ + // QxDebug("QxObject", "Disposing Application"); + + var vStart = (new Date).valueOf(); + var vObject; + + for (var i=QxObjectDataBase.length-1; i>=0; i--) + { + vObject = QxObjectDataBase[i]; + + if (vObject != null) + { + // QxDebug("QxObject", "Disposing: " + vObject); + vObject.dispose(); + QxObjectDataBase[i] = null; + }; + }; + + // QxDebug("QxObject", "Done in: " + ((new Date).valueOf() - vStart) + "ms"); +}; + +QxObject.addProperty({ name : "enabled", type : QxConst.TYPEOF_BOOLEAN, defaultValue : true, getAlias : "isEnabled" }); + +QxObject.DEBUG_MSG_BEFORE = "[HASHCODE:"; +QxObject.DEBUG_MSG_AFTER = "]"; +QxObject.DEBUG_FUNCERRORPRE = "Failed to execute \""; +QxObject.DEBUG_FUNCERRORPOST = "()\": "; |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:16:49
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1654/source/script/core Modified Files: Tag: renderer QxDom.js Log Message: Renamed some function arguments in QxDom Index: QxDom.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/QxDom.js,v retrieving revision 1.10.2.24 retrieving revision 1.10.2.25 diff -u -d -r1.10.2.24 -r1.10.2.25 --- QxDom.js 30 Jan 2006 11:42:40 -0000 1.10.2.24 +++ QxDom.js 2 Feb 2006 17:16:37 -0000 1.10.2.25 @@ -832,22 +832,22 @@ if (QxClient.isMshtml()) { - QxDom.addEventListener = function(e, t, f) { - e.attachEvent(QxDom.STR_ON + t, f); + QxDom.addEventListener = function(vElement, vType, vFunction) { + vElement.attachEvent(QxDom.STR_ON + vType, vFunction); }; - QxDom.removeEventListener = function(e, t, f) { - e.detachEvent(QxDom.STR_ON + t, f); + QxDom.removeEventListener = function(el, vType, vFunction) { + vElement.detachEvent(QxDom.STR_ON + vType, vFunction); }; } else { - QxDom.addEventListener = function(e, t, f) { - e.addEventListener(t, f, false); + QxDom.addEventListener = function(vElement, vType, vFunction) { + vElement.addEventListener(vType, vFunction, false); }; - QxDom.removeEventListener = function(e, t, f) { - e.removeEventListener(t, f, false); + QxDom.removeEventListener = function(vElement, vType, vFunction) { + vElement.removeEventListener(vType, vFunction, false); }; }; |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:06:49
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29247/source/script/appearance Modified Files: Tag: renderer QxAppearanceTheme-Default.js Log Message: Renamed state left, minor fix in appearance Index: QxAppearanceTheme-Default.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v retrieving revision 1.1.2.18 retrieving revision 1.1.2.19 diff -u -d -r1.1.2.18 -r1.1.2.19 --- QxAppearanceTheme-Default.js 2 Feb 2006 16:51:03 -0000 1.1.2.18 +++ QxAppearanceTheme-Default.js 2 Feb 2006 17:06:36 -0000 1.1.2.19 @@ -220,8 +220,8 @@ state : function(vWidget, vTheme, vStates) { return { - backgroundColor : vStates.left ? this.bgcolor_left : vStates.over ? this.bgcolor_over : this.bgcolor_default, - border : vStates.pressed || vStates.checked || vStates.left ? this.border_pressed : this.border_default + backgroundColor : vStates.abandoned ? this.bgcolor_left : vStates.over ? this.bgcolor_over : this.bgcolor_default, + border : vStates.pressed || vStates.checked || vStates.abandoned ? this.border_pressed : this.border_default }; } }); @@ -352,11 +352,11 @@ { var vReturn = { - backgroundColor : vStates.left ? this.bgcolor_left : this.bgcolor_default, + backgroundColor : vStates.abandoned ? this.bgcolor_left : this.bgcolor_default, backgroundImage : vStates.checked && !vStates.over ? this.checked_background : null }; - if (vStates.pressed || vStates.checked || vStates.left) { + if (vStates.pressed || vStates.checked || vStates.abandoned) { vReturn.border = this.border_pressed; } else if (vStates.over) { vReturn.border = this.border_over; @@ -364,7 +364,7 @@ vReturn.border = this.border_default; }; - if (vStates.pressed || vStates.checked || vStates.left) + if (vStates.pressed || vStates.checked || vStates.abandoned) { vReturn.paddingTop = 3; vReturn.paddingRight = 2; |
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27914/source/script/widgets Modified Files: Tag: renderer QxButton.js QxRepeatButton.js QxToolBarCheckBox.js QxToolBarRadioButton.js QxWindow.js Log Message: Renamed state left Index: QxButton.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxButton.js,v retrieving revision 1.4.2.35 retrieving revision 1.4.2.36 diff -u -d -r1.4.2.35 -r1.4.2.36 --- QxButton.js 2 Feb 2006 16:51:04 -0000 1.4.2.35 +++ QxButton.js 2 Feb 2006 17:03:39 -0000 1.4.2.36 @@ -77,9 +77,9 @@ return; }; - if (this.hasState(QxConst.STATE_LEFT)) + if (this.hasState(QxConst.STATE_ABANDONED)) { - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.addState(QxConst.STATE_PRESSED); }; @@ -101,7 +101,7 @@ this.setCapture(true); this.removeState(QxConst.STATE_PRESSED); - this.addState(QxConst.STATE_LEFT); + this.addState(QxConst.STATE_ABANDONED); }; }; @@ -111,7 +111,7 @@ return; }; - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.addState(QxConst.STATE_PRESSED); }; @@ -119,7 +119,7 @@ { this.setCapture(false); - if (!this.hasState(QxConst.STATE_LEFT)) + if (!this.hasState(QxConst.STATE_ABANDONED)) { this.addState(QxConst.STATE_OVER); @@ -128,7 +128,7 @@ }; }; - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.removeState(QxConst.STATE_PRESSED); }; @@ -138,7 +138,7 @@ { case QxKeyEvent.keys.enter: case QxKeyEvent.keys.space: - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.addState(QxConst.STATE_PRESSED); }; }; @@ -151,7 +151,7 @@ case QxKeyEvent.keys.space: if (this.hasState(QxConst.STATE_PRESSED)) { - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.removeState(QxConst.STATE_PRESSED); this.execute(); }; Index: QxRepeatButton.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/Attic/QxRepeatButton.js,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- QxRepeatButton.js 2 Feb 2006 16:51:04 -0000 1.1.2.9 +++ QxRepeatButton.js 2 Feb 2006 17:03:39 -0000 1.1.2.10 @@ -71,7 +71,7 @@ this._timer.setInterval(this.getFirstInterval()); this._timer.start(); - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.addState(QxConst.STATE_PRESSED); }; @@ -79,7 +79,7 @@ { this.setCapture(false); - if (!this.hasState(QxConst.STATE_LEFT)) + if (!this.hasState(QxConst.STATE_ABANDONED)) { this.addState(QxConst.STATE_OVER); @@ -90,7 +90,7 @@ this._timer.stop(); - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.removeState(QxConst.STATE_PRESSED); }; Index: QxWindow.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxWindow.js,v retrieving revision 1.25.2.65 retrieving revision 1.25.2.66 diff -u -d -r1.25.2.65 -r1.25.2.66 --- QxWindow.js 2 Feb 2006 16:51:04 -0000 1.25.2.65 +++ QxWindow.js 2 Feb 2006 17:03:39 -0000 1.25.2.66 @@ -1132,7 +1132,7 @@ // we need to be sure that the button gets the right states after clicking // because the button will move and does not get the mouseup event anymore this._minimizeButton.removeState(QxConst.STATE_PRESSED); - this._minimizeButton.removeState(QxConst.STATE_LEFT); + this._minimizeButton.removeState(QxConst.STATE_ABANDONED); this._minimizeButton.removeState(QxConst.STATE_OVER); e.stopPropagation(); @@ -1145,7 +1145,7 @@ // we need to be sure that the button gets the right states after clicking // because the button will move and does not get the mouseup event anymore this._restoreButton.removeState(QxConst.STATE_PRESSED); - this._restoreButton.removeState(QxConst.STATE_LEFT); + this._restoreButton.removeState(QxConst.STATE_ABANDONED); this._restoreButton.removeState(QxConst.STATE_OVER); e.stopPropagation(); @@ -1158,7 +1158,7 @@ // we need to be sure that the button gets the right states after clicking // because the button will move and does not get the mouseup event anymore this._maximizeButton.removeState(QxConst.STATE_PRESSED); - this._maximizeButton.removeState(QxConst.STATE_LEFT); + this._maximizeButton.removeState(QxConst.STATE_ABANDONED); this._maximizeButton.removeState(QxConst.STATE_OVER); e.stopPropagation(); @@ -1171,7 +1171,7 @@ // we need to be sure that the button gets the right states after clicking // because the button will move and does not get the mouseup event anymore this._closeButton.removeState(QxConst.STATE_PRESSED); - this._closeButton.removeState(QxConst.STATE_LEFT); + this._closeButton.removeState(QxConst.STATE_ABANDONED); this._closeButton.removeState(QxConst.STATE_OVER); e.stopPropagation(); Index: QxToolBarCheckBox.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxToolBarCheckBox.js,v retrieving revision 1.1.2.16 retrieving revision 1.1.2.17 diff -u -d -r1.1.2.16 -r1.1.2.17 --- QxToolBarCheckBox.js 2 Feb 2006 16:51:04 -0000 1.1.2.16 +++ QxToolBarCheckBox.js 2 Feb 2006 17:03:39 -0000 1.1.2.17 @@ -80,14 +80,14 @@ { this.setCapture(false); - if (!this.hasState(QxConst.STATE_LEFT)) + if (!this.hasState(QxConst.STATE_ABANDONED)) { this.addState(QxConst.STATE_OVER); this.setChecked(!this.getChecked()); this.execute(); }; - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.removeState(QxConst.STATE_PRESSED); e.stopPropagation(); Index: QxToolBarRadioButton.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxToolBarRadioButton.js,v retrieving revision 1.1.2.19 retrieving revision 1.1.2.20 diff -u -d -r1.1.2.19 -r1.1.2.20 --- QxToolBarRadioButton.js 2 Feb 2006 16:51:04 -0000 1.1.2.19 +++ QxToolBarRadioButton.js 2 Feb 2006 17:03:39 -0000 1.1.2.20 @@ -111,14 +111,14 @@ { this.setCapture(false); - if (!this.hasState(QxConst.STATE_LEFT)) + if (!this.hasState(QxConst.STATE_ABANDONED)) { this.addState(QxConst.STATE_OVER); this.setChecked(this.getDisableUncheck() || !this.getChecked()); this.execute(); }; - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); this.removeState(QxConst.STATE_PRESSED); e.stopPropagation(); |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:03:50
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27914/source/script/gui Modified Files: Tag: renderer QxWidget.js Log Message: Renamed state left Index: QxWidget.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/Attic/QxWidget.js,v retrieving revision 1.1.2.66 retrieving revision 1.1.2.67 diff -u -d -r1.1.2.66 -r1.1.2.67 --- QxWidget.js 2 Feb 2006 16:51:03 -0000 1.1.2.66 +++ QxWidget.js 2 Feb 2006 17:03:39 -0000 1.1.2.67 @@ -863,7 +863,7 @@ // Remove any hover/pressed styles this.removeState(QxConst.STATE_OVER); this.removeState(QxConst.STATE_PRESSED); - this.removeState(QxConst.STATE_LEFT); + this.removeState(QxConst.STATE_ABANDONED); // this.debug("_beforeDisappear"); this.createDispatchEvent(QxConst.EVENT_TYPE_BEFORERDISAPPEAR); |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 17:03:48
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27914/source/script/core Modified Files: Tag: renderer QxConst.js Log Message: Renamed state left Index: QxConst.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxConst.js,v retrieving revision 1.1.2.30 retrieving revision 1.1.2.31 diff -u -d -r1.1.2.30 -r1.1.2.31 --- QxConst.js 2 Feb 2006 16:51:03 -0000 1.1.2.30 +++ QxConst.js 2 Feb 2006 17:03:39 -0000 1.1.2.31 @@ -321,7 +321,7 @@ STATE_ACTIVE : "active", STATE_CHECKED : "checked", STATE_PRESSED : "pressed", - STATE_LEFT : "left", + STATE_ABANDONED : "abandoned", STATE_SELECTED : "selected", STATE_ANCHOR : "anchor", STATE_LEAD : "lead", |
|
From: Sebastian W. <wp...@us...> - 2006-02-02 16:51:21
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23080/source/script/appearance Modified Files: Tag: renderer QxAppearanceTheme-Default.js Log Message: Reimplemented state handling, fixed some issues with blank images Index: QxAppearanceTheme-Default.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v retrieving revision 1.1.2.17 retrieving revision 1.1.2.18 diff -u -d -r1.1.2.17 -r1.1.2.18 --- QxAppearanceTheme-Default.js 27 Jan 2006 20:53:20 -0000 1.1.2.17 +++ QxAppearanceTheme-Default.js 2 Feb 2006 16:51:03 -0000 1.1.2.18 @@ -123,7 +123,7 @@ state : function(vWidget, vTheme, vStates) { return { - color : vStates.enabled ? null : this.color_disabled + color : vStates.disabled ? this.color_disabled : null }; } }); @@ -680,7 +680,7 @@ state : function(vWidget, vTheme, vStates) { return { - border : vStates.restored ? QxBorderObject.presets.outset : QxBorderObject.presets.none + border : vStates.maximized ? QxBorderObject.presets.none : QxBorderObject.presets.outset }; } }); |