2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module TableView
|
2014-03-26 14:03:04 +08:00
|
|
|
-- @extend ScrollView,ScrollViewDelegate
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Updates the content of the cell at a given index.<br>
|
|
|
|
-- param idx index to find a cell
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] updateCellAtIndex
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #long idx
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- determines how cell is ordered and filled in the view.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] setVerticalFillOrder
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #int order
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] scrollViewDidZoom
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.ScrollView view
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] _updateContentSize
|
|
|
|
-- @param self
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] getVerticalFillOrder
|
|
|
|
-- @param self
|
2014-07-17 22:20:04 +08:00
|
|
|
-- @return int#int ret (return value: int)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Removes a cell at a given index<br>
|
|
|
|
-- param idx index to find a cell
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] removeCellAtIndex
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #long idx
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] initWithViewSize
|
|
|
|
-- @param self
|
|
|
|
-- @param #size_table size
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Node container
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] scrollViewDidScroll
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.ScrollView view
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- reloads data from data source. the view will be refreshed.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] reloadData
|
|
|
|
-- @param self
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Inserts a new cell at a given index<br>
|
|
|
|
-- param idx location to insert
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] insertCellAtIndex
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #long idx
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Returns an existing cell at a given index. Returns nil if a cell is nonexistent at the moment of query.<br>
|
|
|
|
-- param idx index<br>
|
|
|
|
-- return a cell at a given index
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] cellAtIndex
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #long idx
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Dequeues a free cell if available. nil if not.<br>
|
|
|
|
-- return free cell
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] dequeueCell
|
|
|
|
-- @param self
|
|
|
|
-- @return TableViewCell#TableViewCell ret (return value: cc.TableViewCell)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TableView] onTouchMoved
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Touch pTouch
|
|
|
|
-- @param #cc.Event pEvent
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TableView] onTouchEnded
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Touch pTouch
|
|
|
|
-- @param #cc.Event pEvent
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TableView] onTouchCancelled
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Touch pTouch
|
|
|
|
-- @param #cc.Event pEvent
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#TableView] onTouchBegan
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #cc.Touch pTouch
|
|
|
|
-- @param #cc.Event pEvent
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- js ctor
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#TableView] TableView
|
|
|
|
-- @param self
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return TableView#TableView self (return value: cc.TableView)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
return nil
|