mirror of https://github.com/axmolengine/axmol.git
98 lines
2.6 KiB
Lua
98 lines
2.6 KiB
Lua
|
|
--------------------------------
|
|
-- @module TableView
|
|
-- @extend ScrollView,ScrollViewDelegate
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] updateCellAtIndex
|
|
-- @param self
|
|
-- @param #long long
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] setVerticalFillOrder
|
|
-- @param self
|
|
-- @param #int verticalfillorder
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] scrollViewDidZoom
|
|
-- @param self
|
|
-- @param #cc.ScrollView scrollview
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] _updateContentSize
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] getVerticalFillOrder
|
|
-- @param self
|
|
-- @return int#int ret (return value: int)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] removeCellAtIndex
|
|
-- @param self
|
|
-- @param #long long
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] initWithViewSize
|
|
-- @param self
|
|
-- @param #size_table size
|
|
-- @param #cc.Node node
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] scrollViewDidScroll
|
|
-- @param self
|
|
-- @param #cc.ScrollView scrollview
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] reloadData
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] insertCellAtIndex
|
|
-- @param self
|
|
-- @param #long long
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] cellAtIndex
|
|
-- @param self
|
|
-- @param #long long
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] dequeueCell
|
|
-- @param self
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] onTouchMoved
|
|
-- @param self
|
|
-- @param #cc.Touch touch
|
|
-- @param #cc.Event event
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] onTouchEnded
|
|
-- @param self
|
|
-- @param #cc.Touch touch
|
|
-- @param #cc.Event event
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] onTouchCancelled
|
|
-- @param self
|
|
-- @param #cc.Touch touch
|
|
-- @param #cc.Event event
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] onTouchBegan
|
|
-- @param self
|
|
-- @param #cc.Touch touch
|
|
-- @param #cc.Event event
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#TableView] TableView
|
|
-- @param self
|
|
|
|
return nil
|