mirror of https://github.com/axmolengine/axmol.git
89 lines
2.7 KiB
Lua
89 lines
2.7 KiB
Lua
|
|
--------------------------------
|
|
-- @module TextAtlas
|
|
-- @extend Widget
|
|
-- @parent_module ccui
|
|
|
|
--------------------------------
|
|
-- Gets the string length of the label.<br>
|
|
-- Note: This length will be larger than the raw string length,<br>
|
|
-- if you want to get the raw string length, you should call this->getString().size() instead<br>
|
|
-- return string length.
|
|
-- @function [parent=#TextAtlas] getStringLength
|
|
-- @param self
|
|
-- @return long#long ret (return value: long)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] getString
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] setString
|
|
-- @param self
|
|
-- @param #string value
|
|
-- @return TextAtlas#TextAtlas self (return value: ccui.TextAtlas)
|
|
|
|
--------------------------------
|
|
-- initializes the LabelAtlas with a string, a char map file(the atlas), the width and height of each element and the starting char of the atlas
|
|
-- @function [parent=#TextAtlas] setProperty
|
|
-- @param self
|
|
-- @param #string stringValue
|
|
-- @param #string charMapFile
|
|
-- @param #int itemWidth
|
|
-- @param #int itemHeight
|
|
-- @param #string startCharMap
|
|
-- @return TextAtlas#TextAtlas self (return value: ccui.TextAtlas)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] adaptRenderers
|
|
-- @param self
|
|
-- @return TextAtlas#TextAtlas self (return value: ccui.TextAtlas)
|
|
|
|
--------------------------------
|
|
-- @overload self, string, string, int, int, string
|
|
-- @overload self
|
|
-- @function [parent=#TextAtlas] create
|
|
-- @param self
|
|
-- @param #string stringValue
|
|
-- @param #string charMapFile
|
|
-- @param #int itemWidth
|
|
-- @param #int itemHeight
|
|
-- @param #string startCharMap
|
|
-- @return TextAtlas#TextAtlas ret (return value: ccui.TextAtlas)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] getVirtualRenderer
|
|
-- @param self
|
|
-- @return Node#Node ret (return value: cc.Node)
|
|
|
|
--------------------------------
|
|
-- Returns the "class name" of widget.
|
|
-- @function [parent=#TextAtlas] getDescription
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#TextAtlas] getVirtualRendererSize
|
|
-- @param self
|
|
-- @return size_table#size_table ret (return value: size_table)
|
|
|
|
--------------------------------
|
|
-- Default constructor
|
|
-- @function [parent=#TextAtlas] TextAtlas
|
|
-- @param self
|
|
-- @return TextAtlas#TextAtlas self (return value: ccui.TextAtlas)
|
|
|
|
return nil
|