mirror of https://github.com/axmolengine/axmol.git
90 lines
2.5 KiB
Lua
90 lines
2.5 KiB
Lua
|
|
--------------------------------
|
|
-- @module CheckBox
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] getSelectedState
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundSelected
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundDisabled
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextureFrontCross
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextures
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #char char
|
|
-- @param #char char
|
|
-- @param #char char
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextureBackGround
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] setSelectedState
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] loadTextureFrontCrossDisabled
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] create
|
|
-- @param self
|
|
-- @return CheckBox#CheckBox ret (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] setAnchorPoint
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @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)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] getContentSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#CheckBox] CheckBox
|
|
-- @param self
|
|
|
|
return nil
|