mirror of https://github.com/axmolengine/axmol.git
136 lines
3.7 KiB
Lua
136 lines
3.7 KiB
Lua
|
|
--------------------------------
|
|
-- @module Slider
|
|
-- @extend Widget
|
|
-- @parent_module ccui
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] setPercent
|
|
-- @param self
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadSlidBallTextureDisabled
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadSlidBallTextureNormal
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadBarTexture
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadProgressBarTexture
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadSlidBallTextures
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #string str
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] setCapInsetProgressBarRebderer
|
|
-- @param self
|
|
-- @param #rect_table rect
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] setCapInsetsBarRenderer
|
|
-- @param self
|
|
-- @param #rect_table rect
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getCapInsetsProgressBarRebderer
|
|
-- @param self
|
|
-- @return rect_table#rect_table ret (return value: rect_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] setScale9Enabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] setCapInsets
|
|
-- @param self
|
|
-- @param #rect_table rect
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] addEventListener
|
|
-- @param self
|
|
-- @param #function func
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] loadSlidBallTexturePressed
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #int texturerestype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] isScale9Enabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getCapInsetsBarRenderer
|
|
-- @param self
|
|
-- @return rect_table#rect_table ret (return value: rect_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getPercent
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] create
|
|
-- @param self
|
|
-- @return Slider#Slider ret (return value: ccui.Slider)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getVirtualRenderer
|
|
-- @param self
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] ignoreContentAdaptWithSize
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] hitTest
|
|
-- @param self
|
|
-- @param #vec2_table vec2
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] getVirtualRendererSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Slider] Slider
|
|
-- @param self
|
|
|
|
return nil
|