@qooxdoo/framework
Version:
The JS Framework for Coders
87 lines (65 loc) • 1.88 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Andreas Ecker (ecker)
************************************************************************ */
/**
* A button which is toggle-able for toolbars.
*/
qx.Class.define("qx.ui.toolbar.CheckBox",
{
extend : qx.ui.form.ToggleButton,
/*
*****************************************************************************
CONSTRUCTOR
*****************************************************************************
*/
construct : function(label, icon)
{
this.base(arguments, label, icon);
// Toolbar buttons should not support the keyboard events
this.removeListener("keydown", this._onKeyDown);
this.removeListener("keyup", this._onKeyUp);
},
/*
*****************************************************************************
PROPERTIES
*****************************************************************************
*/
properties :
{
appearance :
{
refine : true,
init : "toolbar-button"
},
show :
{
refine : true,
init : "inherit"
},
focusable :
{
refine : true,
init : false
}
},
members : {
// overridden
_applyVisibility : function(value, old) {
this.base(arguments, value, old);
// trigger a appearance recalculation of the parent
var parent = this.getLayoutParent();
if (parent && parent instanceof qx.ui.toolbar.PartContainer) {
qx.ui.core.queue.Appearance.add(parent);
}
}
}
});