[Qooxdoo-commit] qooxdoo/source/script/core QxConst.js,1.1.2.15,1.1.2.16
Brought to you by:
ecker,
martinwittemann
|
From: Sebastian W. <wp...@us...> - 2006-01-16 15:17:10
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19026/source/script/core Modified Files: Tag: renderer QxConst.js Log Message: Reimplemented QxSpinner using appearance and box layouts, optimized state handling in many classes (use constants, instead of deep object access) Index: QxConst.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/core/Attic/QxConst.js,v retrieving revision 1.1.2.15 retrieving revision 1.1.2.16 diff -C2 -d -r1.1.2.15 -r1.1.2.16 *** QxConst.js 13 Jan 2006 10:50:26 -0000 1.1.2.15 --- QxConst.js 16 Jan 2006 15:17:01 -0000 1.1.2.16 *************** *** 289,304 **** STATE_OVER : "over", STATE_OUT : "out", ! STATE_NOTPRESSED : "notpressed", ! STATE_PRESSED : "pressed", ! STATE_LEFT : "left", ! STATE_CHECKED : "checked", ! STATE_UNCHECKED : "unchecked", ! STATE_BLURED : "blured", STATE_FOCUSED : "focused", STATE_ENABLED : "enabled", STATE_DISABLED : "disabled", STATE_ACTIVE : "active", STATE_INACTIVE : "inactive", OVERFLOW_VALUE_AUTO : "auto", OVERFLOW_VALUE_HIDDEN : "hidden", --- 289,321 ---- STATE_OVER : "over", STATE_OUT : "out", ! STATE_FOCUSED : "focused", + STATE_BLURRED : "blurred", + STATE_ENABLED : "enabled", STATE_DISABLED : "disabled", + STATE_ACTIVE : "active", STATE_INACTIVE : "inactive", + STATE_CHECKED : "checked", + STATE_UNCHECKED : "unchecked", + + STATE_NOTPRESSED : "notpressed", + STATE_PRESSED : "pressed", + STATE_LEFT : "left", + + STATE_NOTSELECTED : "notselected", + STATE_SELECTED : "selected", + + STATE_NOTANCHOR : "notanchor", + STATE_ANCHOR : "anchor", + + STATE_NOTLEAD : "notlead", + STATE_LEAD : "lead", + + STATE_RESTORED : "restored", + STATE_MAXIMIZED : "maximized", + OVERFLOW_VALUE_AUTO : "auto", OVERFLOW_VALUE_HIDDEN : "hidden", |