2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module CheckBox
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend Widget
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module ccui
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundSelected
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundDisabled
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-05-12 16:14:14 +08:00
|
|
|
|
2014-08-18 23:26:32 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] setSelected
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #bool bool
|
2014-08-18 23:26:32 +08:00
|
|
|
|
2014-05-12 16:14:14 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] addEventListener
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #function func
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextureFrontCross
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-03-10 14:04:58 +08:00
|
|
|
|
2014-08-18 23:26:32 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] isSelected
|
|
|
|
-- @param self
|
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextures
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextureBackGround
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] loadTextureFrontCrossDisabled
|
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-07-17 22:20:04 +08:00
|
|
|
-- @overload self, string, string, string, string, string, int
|
2014-07-17 10:28:34 +08:00
|
|
|
-- @overload self
|
2014-04-04 18:45:34 +08:00
|
|
|
-- @function [parent=#CheckBox] create
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @param self
|
2014-08-29 18:38:25 +08:00
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #string str
|
|
|
|
-- @param #int texturerestype
|
2014-04-04 18:45:34 +08:00
|
|
|
-- @return CheckBox#CheckBox ret (retunr value: ccui.CheckBox)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] createInstance
|
|
|
|
-- @param self
|
|
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] getVirtualRenderer
|
|
|
|
-- @param self
|
|
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] getDescription
|
|
|
|
-- @param self
|
|
|
|
-- @return string#string ret (return value: string)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-04-18 10:51:14 +08:00
|
|
|
-- @function [parent=#CheckBox] getVirtualRendererSize
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @param self
|
|
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
|
|
|
-- @function [parent=#CheckBox] CheckBox
|
|
|
|
-- @param self
|
|
|
|
|
|
|
|
return nil
|