mirror of https://github.com/axmolengine/axmol.git
169 lines
5.2 KiB
Lua
169 lines
5.2 KiB
Lua
|
|
--------------------------------
|
|
-- @module Layout
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundColorVector
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setClippingType
|
|
-- @param self
|
|
-- @param #ccui.LayoutClippingType layoutclippingtype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundColorType
|
|
-- @param self
|
|
-- @param #ccui.LayoutBackGroundColorType layoutbackgroundcolortype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundImageColor
|
|
-- @param self
|
|
-- @param #color3B_table color3b
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundColorVector
|
|
-- @param self
|
|
-- @return point_table#point_table ret (return value: point_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getClippingType
|
|
-- @param self
|
|
-- @return LayoutClippingType#LayoutClippingType ret (return value: ccui.LayoutClippingType)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] removeBackGroundImage
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundColorOpacity
|
|
-- @param self
|
|
-- @return unsigned char#unsigned char ret (return value: unsigned char)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] isClippingEnabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundImageOpacity
|
|
-- @param self
|
|
-- @param #unsigned char char
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundImage
|
|
-- @param self
|
|
-- @param #char char
|
|
-- @param #ccui.TextureResType texturerestype
|
|
|
|
--------------------------------
|
|
-- overload function: setBackGroundColor(color3B_table, color3B_table)
|
|
--
|
|
-- overload function: setBackGroundColor(color3B_table)
|
|
--
|
|
-- @function [parent=#Layout] setBackGroundColor
|
|
-- @param self
|
|
-- @param #color3B_table color3b
|
|
-- @param #color3B_table color3b
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] requestDoLayout
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundImageCapInsets
|
|
-- @param self
|
|
-- @return rect_table#rect_table ret (return value: rect_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundColor
|
|
-- @param self
|
|
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setClippingEnabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundImageColor
|
|
-- @param self
|
|
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] isBackGroundImageScale9Enabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundColorType
|
|
-- @param self
|
|
-- @return LayoutBackGroundColorType#LayoutBackGroundColorType ret (return value: ccui.LayoutBackGroundColorType)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundEndColor
|
|
-- @param self
|
|
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundColorOpacity
|
|
-- @param self
|
|
-- @param #unsigned char char
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundImageOpacity
|
|
-- @param self
|
|
-- @return unsigned char#unsigned char ret (return value: unsigned char)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundImageCapInsets
|
|
-- @param self
|
|
-- @param #rect_table rect
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundImageTextureSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getLayoutType
|
|
-- @param self
|
|
-- @return LayoutType#LayoutType ret (return value: ccui.LayoutType)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] getBackGroundStartColor
|
|
-- @param self
|
|
-- @return color3B_table#color3B_table ret (return value: color3B_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] hitTest
|
|
-- @param self
|
|
-- @param #point_table point
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setBackGroundImageScale9Enabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] setLayoutType
|
|
-- @param self
|
|
-- @param #ccui.LayoutType layouttype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] create
|
|
-- @param self
|
|
-- @return Layout#Layout ret (return value: ccui.Layout)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Layout] Layout
|
|
-- @param self
|
|
|
|
return nil
|