mirror of https://github.com/axmolengine/axmol.git
77 lines
2.7 KiB
Lua
77 lines
2.7 KiB
Lua
|
|
--------------------------------
|
|
-- @module Helper
|
|
-- @parent_module ccui
|
|
|
|
--------------------------------
|
|
-- brief Get a UTF8 substring from a std::string with a given start position and length<br>
|
|
-- Sample: std::string str = "中国中国中国"; substr = getSubStringOfUTF8String(str,0,2) will = "中国"<br>
|
|
-- param start The start position of the substring.<br>
|
|
-- param length The length of the substring in UTF8 count<br>
|
|
-- return a UTF8 substring
|
|
-- @function [parent=#Helper] getSubStringOfUTF8String
|
|
-- @param self
|
|
-- @param #string str
|
|
-- @param #unsigned long start
|
|
-- @param #unsigned long length
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#Helper] changeLayoutSystemActiveState
|
|
-- @param self
|
|
-- @param #bool bActive
|
|
-- @return Helper#Helper self (return value: ccui.Helper)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#Helper] seekActionWidgetByActionTag
|
|
-- @param self
|
|
-- @param #ccui.Widget root
|
|
-- @param #int tag
|
|
-- @return Widget#Widget ret (return value: ccui.Widget)
|
|
|
|
--------------------------------
|
|
-- Finds a widget whose name equals to param name from root widget.<br>
|
|
-- param root widget which will be seeked.<br>
|
|
-- name name value.<br>
|
|
-- return finded result.
|
|
-- @function [parent=#Helper] seekWidgetByName
|
|
-- @param self
|
|
-- @param #ccui.Widget root
|
|
-- @param #string name
|
|
-- @return Widget#Widget ret (return value: ccui.Widget)
|
|
|
|
--------------------------------
|
|
-- Finds a widget whose tag equals to param tag from root widget.<br>
|
|
-- param root widget which will be seeked.<br>
|
|
-- tag tag value.<br>
|
|
-- return finded result.
|
|
-- @function [parent=#Helper] seekWidgetByTag
|
|
-- @param self
|
|
-- @param #ccui.Widget root
|
|
-- @param #int tag
|
|
-- @return Widget#Widget ret (return value: ccui.Widget)
|
|
|
|
--------------------------------
|
|
-- brief restrict capInsetSize, when the capInsets's width is larger than the textureSize, it will restrict to 0,<br>
|
|
-- the height goes the same way as width.<br>
|
|
-- param capInsets A user defined capInsets.<br>
|
|
-- param textureSize The size of a scale9enabled texture<br>
|
|
-- return a restricted capInset.
|
|
-- @function [parent=#Helper] restrictCapInsetRect
|
|
-- @param self
|
|
-- @param #rect_table capInsets
|
|
-- @param #size_table textureSize
|
|
-- @return rect_table#rect_table ret (return value: rect_table)
|
|
|
|
--------------------------------
|
|
-- Refresh object and it's children layout state<br>
|
|
-- param rootNode object which will be changed
|
|
-- @function [parent=#Helper] doLayout
|
|
-- @param self
|
|
-- @param #cc.Node rootNode
|
|
-- @return Helper#Helper self (return value: ccui.Helper)
|
|
|
|
return nil
|