summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-03 19:57:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:06 -0500
commit2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch)
treec44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js
parent57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff)
downloadsamba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old scripts need to still be available. I've reverted to having the old scripts be the default pages, and added an option to access the preview of the new SWAT. (This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js185
1 files changed, 0 insertions, 185 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js
deleted file mode 100644
index 97486822c1..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/form/RadioButton.js
+++ /dev/null
@@ -1,185 +0,0 @@
-/* ************************************************************************
-
- qooxdoo - the new era of web development
-
- http://qooxdoo.org
-
- Copyright:
- 2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org
-
- License:
- LGPL 2.1: http://www.gnu.org/licenses/lgpl.html
-
- Authors:
- * Sebastian Werner (wpbasti)
- * Andreas Ecker (ecker)
-
-************************************************************************ */
-
-/* ************************************************************************
-
-#module(ui_form)
-
-************************************************************************ */
-
-qx.OO.defineClass("qx.ui.form.RadioButton", qx.ui.form.CheckBox,
-function(vText, vValue, vName, vChecked) {
- qx.ui.form.CheckBox.call(this, vText, vValue, vName, vChecked);
-
- this.addEventListener("keypress", this._onkeypress);
-});
-
-
-
-/*
----------------------------------------------------------------------------
- PROPERTIES
----------------------------------------------------------------------------
-*/
-
-/*!
- The assigned qx.manager.selection.RadioManager which handles the switching between registered buttons
-*/
-qx.OO.addProperty({ name : "manager", type : "object", instance : "qx.manager.selection.RadioManager", allowNull : true });
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- ICON HANDLING
----------------------------------------------------------------------------
-*/
-
-qx.Proto.INPUT_TYPE = "radio";
-
-
-
-
-/*
----------------------------------------------------------------------------
- MODIFIER
----------------------------------------------------------------------------
-*/
-
-qx.Proto._modifyChecked = function(propValue, propOldValue, propData)
-{
- if (this._iconObject) {
- this._iconObject.setChecked(propValue);
- }
-
- var vManager = this.getManager();
- if (vManager) {
- vManager.handleItemChecked(this, propValue);
- }
-
- return true;
-}
-
-qx.Proto._modifyManager = function(propValue, propOldValue, propData)
-{
- if (propOldValue) {
- propOldValue.remove(this);
- }
-
- if (propValue) {
- propValue.add(this);
- }
-
- return true;
-}
-
-qx.Proto._modifyName = function(propValue, propOldValue, propData)
-{
- if (this._iconObject) {
- this._iconObject.setName(propValue);
- }
-
- if (this.getManager()) {
- this.getManager().setName(propValue);
- }
-
- return true;
-}
-
-qx.Proto._modifyValue = function(propValue, propOldValue, propData)
-{
- if (this.isCreated() && this._iconObject) {
- this._iconObject.setValue(propValue);
- }
-
- return true;
-}
-
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- EVENT-HANDLER
----------------------------------------------------------------------------
-*/
-
-qx.Proto._onkeydown = function(e)
-{
- if (e.getKeyIdentifier() == "Enter" && !e.getAltKey()) {
- this.setChecked(true);
- }
-};
-
-
-qx.Proto._onkeypress = function(e)
-{
- switch(e.getKeyIdentifier())
- {
- case "Left":
- case "Up":
- qx.event.handler.FocusHandler.mouseFocus = false;
- // we want to have a focus border when using arrows to select
- qx.event.handler.FocusHandler.mouseFocus = false;
-
- return this.getManager() ? this.getManager().selectPrevious(this) : true;
-
- case "Right":
- case "Down":
- // we want to have a focus border when using arrows to select
- qx.event.handler.FocusHandler.mouseFocus = false;
-
- return this.getManager() ? this.getManager().selectNext(this) : true;
- }
-};
-
-
-qx.Proto._onclick = function(e) {
- this.setChecked(true);
-}
-
-qx.Proto._onkeyup = function(e)
-{
- if(e.getKeyIdentifier() == "Space") {
- this.setChecked(true);
- }
-}
-
-
-
-
-
-/*
----------------------------------------------------------------------------
- DISPOSER
----------------------------------------------------------------------------
-*/
-
-qx.Proto.dispose = function()
-{
- if(this.getDisposed()) {
- return;
- }
-
- this.removeEventListener("keypress", this._onkeypress);
- return qx.ui.form.CheckBox.prototype.dispose.call(this);
-}