mirror of https://github.com/axmolengine/axmol.git
72 lines
1.9 KiB
Lua
72 lines
1.9 KiB
Lua
|
|
--------------------------------
|
|
-- @module PageView
|
|
--------------------------------
|
|
-- @function [parent=#PageView] getCurPageIndex
|
|
-- @param self
|
|
-- @return long#long ret (return value: long)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] addWidgetToPage
|
|
-- @param self
|
|
-- @param #ccui.Widget widget
|
|
-- @param #long long
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] getPage
|
|
-- @param self
|
|
-- @param #long long
|
|
-- @return Layout#Layout ret (return value: ccui.Layout)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] removePage
|
|
-- @param self
|
|
-- @param #ccui.Layout layout
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] insertPage
|
|
-- @param self
|
|
-- @param #ccui.Layout layout
|
|
-- @param #int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] scrollToPage
|
|
-- @param self
|
|
-- @param #long long
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] removePageAtIndex
|
|
-- @param self
|
|
-- @param #long long
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] getPages
|
|
-- @param self
|
|
-- @return array_table#array_table ret (return value: array_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] removeAllPages
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] addPage
|
|
-- @param self
|
|
-- @param #ccui.Layout layout
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] create
|
|
-- @param self
|
|
-- @return PageView#PageView ret (return value: ccui.PageView)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] createInstance
|
|
-- @param self
|
|
-- @return Ref#Ref ret (return value: cc.Ref)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PageView] PageView
|
|
-- @param self
|
|
|
|
return nil
|