mirror of https://github.com/axmolengine/axmol.git
155 lines
5.0 KiB
Lua
155 lines
5.0 KiB
Lua
|
|
--------------------------------
|
|
-- @module CheckBox
|
|
-- @extend Widget
|
|
-- @parent_module ccui
|
|
|
|
--------------------------------
|
|
-- Load backGroundSelected texture for checkbox.<br>
|
|
-- param backGroundSelected backGround selected state texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundSelected
|
|
-- @param self
|
|
-- @param #string backGroundSelected
|
|
-- @param #int texType
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- Load backGroundDisabled texture for checkbox.<br>
|
|
-- param backGroundDisabled backGroundDisabled texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextureBackGroundDisabled
|
|
-- @param self
|
|
-- @param #string backGroundDisabled
|
|
-- @param #int texType
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CheckBox] setSelected
|
|
-- @param self
|
|
-- @param #bool selected
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CheckBox] addEventListener
|
|
-- @param self
|
|
-- @param #function callback
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- Load cross texture for checkbox.<br>
|
|
-- param cross cross texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextureFrontCross
|
|
-- @param self
|
|
-- @param #string
|
|
-- @param #int texType
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CheckBox] isSelected
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- Load textures for checkbox.<br>
|
|
-- param backGround backGround texture.<br>
|
|
-- param backGroundSelected backGround selected state texture.<br>
|
|
-- param cross cross texture.<br>
|
|
-- param frontCrossDisabled cross dark state texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextures
|
|
-- @param self
|
|
-- @param #string backGround
|
|
-- @param #string backGroundSelected
|
|
-- @param #string cross
|
|
-- @param #string backGroundDisabled
|
|
-- @param #string frontCrossDisabled
|
|
-- @param #int texType
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- brief Return a zoom scale<br>
|
|
-- since v3.3
|
|
-- @function [parent=#CheckBox] getZoomScale
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- Load backGround texture for checkbox.<br>
|
|
-- param backGround backGround texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextureBackGround
|
|
-- @param self
|
|
-- @param #string backGround
|
|
-- @param #int type
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- When user pressed the button, the button will zoom to a scale.<br>
|
|
-- The final scale of the button equals (button original scale + _zoomScale)<br>
|
|
-- since v3.3
|
|
-- @function [parent=#CheckBox] setZoomScale
|
|
-- @param self
|
|
-- @param #float scale
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- Load frontCrossDisabled texture for checkbox.<br>
|
|
-- param frontCrossDisabled frontCrossDisabled texture.<br>
|
|
-- param texType @see TextureResType
|
|
-- @function [parent=#CheckBox] loadTextureFrontCrossDisabled
|
|
-- @param self
|
|
-- @param #string frontCrossDisabled
|
|
-- @param #int texType
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
--------------------------------
|
|
-- @overload self, string, string, string, string, string, int
|
|
-- @overload self
|
|
-- @overload self, string, string, int
|
|
-- @function [parent=#CheckBox] create
|
|
-- @param self
|
|
-- @param #string backGround
|
|
-- @param #string backGroundSeleted
|
|
-- @param #string cross
|
|
-- @param #string backGroundDisabled
|
|
-- @param #string frontCrossDisabled
|
|
-- @param #int texType
|
|
-- @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] getVirtualRenderer
|
|
-- @param self
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
--------------------------------
|
|
-- Returns the "class name" of widget.
|
|
-- @function [parent=#CheckBox] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#CheckBox] getVirtualRendererSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- Default constructor
|
|
-- @function [parent=#CheckBox] CheckBox
|
|
-- @param self
|
|
-- @return CheckBox#CheckBox self (return value: ccui.CheckBox)
|
|
|
|
return nil
|