summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js156
1 files changed, 156 insertions, 0 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js
new file mode 100644
index 0000000000..2457c3bdd0
--- /dev/null
+++ b/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/groupbox/GroupBox.js
@@ -0,0 +1,156 @@
+/* ************************************************************************
+
+ 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.groupbox.GroupBox", qx.ui.layout.CanvasLayout,
+function(vLegend, vIcon)
+{
+ qx.ui.layout.CanvasLayout.call(this);
+
+
+ // ************************************************************************
+ // SUB WIDGETS
+ // ************************************************************************
+ this._createFrameObject();
+ this._createLegendObject();
+
+
+ // ************************************************************************
+ // INIT
+ // ************************************************************************
+ this.setLegend(vLegend);
+
+ if (qx.util.Validation.isValidString(vIcon)) {
+ this.setIcon(vIcon);
+ }
+
+
+ // ************************************************************************
+ // REMAPPING
+ // ************************************************************************
+ this.remapChildrenHandlingTo(this._frameObject);
+});
+
+qx.OO.changeProperty({ name : "appearance", type : "string", defaultValue : "field-set" });
+
+
+
+
+/*
+---------------------------------------------------------------------------
+ SUB WIDGET CREATION
+---------------------------------------------------------------------------
+*/
+
+qx.Proto._createLegendObject = function()
+{
+ this._legendObject = new qx.ui.basic.Atom;
+ this._legendObject.setAppearance("field-set-legend");
+
+ this.add(this._legendObject);
+}
+
+qx.Proto._createFrameObject = function()
+{
+ this._frameObject = new qx.ui.layout.CanvasLayout;
+ this._frameObject.setAppearance("field-set-frame");
+
+ this.add(this._frameObject);
+}
+
+
+
+
+
+/*
+---------------------------------------------------------------------------
+ GETTER FOR SUB WIDGETS
+---------------------------------------------------------------------------
+*/
+
+qx.Proto.getFrameObject = function() {
+ return this._frameObject;
+}
+
+qx.Proto.getLegendObject = function() {
+ return this._legendObject;
+}
+
+
+
+
+
+
+/*
+---------------------------------------------------------------------------
+ SETTER/GETTER
+---------------------------------------------------------------------------
+*/
+
+qx.Proto.setLegend = function(vLegend) {
+ this._legendObject.setLabel(vLegend);
+}
+
+qx.Proto.getLegend = function() {
+ return this._legendObject.getLabel();
+}
+
+qx.Proto.setIcon = function(vIcon) {
+ this._legendObject.setIcon(vIcon);
+}
+
+qx.Proto.getIcon = function() {
+ this._legendObject.getIcon();
+}
+
+
+
+
+
+
+/*
+---------------------------------------------------------------------------
+ DISPOSER
+---------------------------------------------------------------------------
+*/
+
+qx.Proto.dispose = function()
+{
+ if (this.getDisposed()) {
+ return true;
+ }
+
+ if (this._legendObject)
+ {
+ this._legendObject.dispose();
+ this._legendObject = null;
+ }
+
+ if (this._frameObject)
+ {
+ this._frameObject.dispose();
+ this._frameObject = null;
+ }
+
+ return qx.ui.layout.CanvasLayout.prototype.dispose.call(this);
+}