@qooxdoo/framework
Version:
The JS Framework for Coders
107 lines (82 loc) • 2.21 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:
* Jonathan Weiß (jonathan_rass)
************************************************************************ */
/**
* EXPERIMENTAL!
*/
qx.Class.define("qx.ui.virtual.cell.Boolean",
{
extend : qx.ui.virtual.cell.AbstractImage,
/*
*****************************************************************************
CONSTRUCTOR
*****************************************************************************
*/
construct : function()
{
this.base(arguments);
this.__aliasManager = qx.util.AliasManager.getInstance();
},
/*
*****************************************************************************
PROPERTIES
*****************************************************************************
*/
properties :
{
appearance:
{
refine : true,
init : "cell-boolean"
},
/**
* The icon used to indicate the true state
*/
iconTrue :
{
check : "String",
themeable : true,
apply : "_applyIconTrue"
},
/**
* The icon used to indicate the false state
*/
iconFalse :
{
check : "String",
themeable : true,
apply : "_applyIconFalse"
}
},
/*
*****************************************************************************
MEMBERS
*****************************************************************************
*/
members :
{
__imageTrue : null,
__imageFalse : null,
__aliasManager : null,
// property apply
_applyIconTrue : function(value) {
this.__imageTrue = this.__aliasManager.resolve(value);
},
// property apply
_applyIconFalse : function(value) {
this.__imageFalse = this.__aliasManager.resolve(value);
},
// overridden
_identifyImage : function(value) {
return value == true ? this.__imageTrue : this.__imageFalse;
}
}
});