-------------------------------- -- @module CheckBox -- @extend Widget -- @parent_module ccui -------------------------------- -- Load backGroundSelected texture for checkbox.
-- param backGroundSelected backGround selected state texture.
-- param texType @see TextureResType -- @function [parent=#CheckBox] loadTextureBackGroundSelected -- @param self -- @param #string backGroundSelected -- @param #int texType -------------------------------- -- Load backGroundDisabled texture for checkbox.
-- param backGroundDisabled backGroundDisabled texture.
-- param texType @see TextureResType -- @function [parent=#CheckBox] loadTextureBackGroundDisabled -- @param self -- @param #string backGroundDisabled -- @param #int texType -------------------------------- -- -- @function [parent=#CheckBox] setSelected -- @param self -- @param #bool selected -------------------------------- -- -- @function [parent=#CheckBox] addEventListener -- @param self -- @param #function callback -------------------------------- -- Load cross texture for checkbox.
-- param cross cross texture.
-- param texType @see TextureResType -- @function [parent=#CheckBox] loadTextureFrontCross -- @param self -- @param #string -- @param #int texType -------------------------------- -- -- @function [parent=#CheckBox] isSelected -- @param self -- @return bool#bool ret (return value: bool) -------------------------------- -- Load textures for checkbox.
-- param backGround backGround texture.
-- param backGroundSelected backGround selected state texture.
-- param cross cross texture.
-- param frontCrossDisabled cross dark state texture.
-- 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 -------------------------------- -- brief Return a zoom scale
-- since v3.3 -- @function [parent=#CheckBox] getZoomScale -- @param self -- @return float#float ret (return value: float) -------------------------------- -- Load backGround texture for checkbox.
-- param backGround backGround texture.
-- param texType @see TextureResType -- @function [parent=#CheckBox] loadTextureBackGround -- @param self -- @param #string backGround -- @param #int type -------------------------------- -- When user pressed the button, the button will zoom to a scale.
-- The final scale of the button equals (button original scale + _zoomScale)
-- since v3.3 -- @function [parent=#CheckBox] setZoomScale -- @param self -- @param #float scale -------------------------------- -- Load frontCrossDisabled texture for checkbox.
-- param frontCrossDisabled frontCrossDisabled texture.
-- param texType @see TextureResType -- @function [parent=#CheckBox] loadTextureFrontCrossDisabled -- @param self -- @param #string frontCrossDisabled -- @param #int texType -------------------------------- -- @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 nil