2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
#ifndef __UILISTVIEW_H__
|
|
|
|
#define __UILISTVIEW_H__
|
|
|
|
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/UIScrollView.h"
|
2014-07-21 17:45:56 +08:00
|
|
|
#include "ui/GUIExport.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2014-02-24 18:56:45 +08:00
|
|
|
namespace ui{
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup ui
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ListView click item event type.
|
|
|
|
*/
|
2014-07-10 00:45:27 +08:00
|
|
|
typedef enum
|
2013-11-08 20:29:49 +08:00
|
|
|
{
|
2014-03-11 11:53:44 +08:00
|
|
|
LISTVIEW_ONSELECTEDITEM_START,
|
|
|
|
LISTVIEW_ONSELECTEDITEM_END
|
2013-11-08 20:29:49 +08:00
|
|
|
}ListViewEventType;
|
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* A callback which would be called when a ListView item is clicked.
|
|
|
|
*@deprecated Use @see `ccListViewCallback` instead.
|
|
|
|
*/
|
2014-07-10 00:45:27 +08:00
|
|
|
typedef void (Ref::*SEL_ListViewEvent)(Ref*,ListViewEventType);
|
2013-11-08 20:29:49 +08:00
|
|
|
#define listvieweventselector(_SELECTOR) (SEL_ListViewEvent)(&_SELECTOR)
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
*@brief ListView is a view group that displays a list of scrollable items.
|
|
|
|
*The list items are inserted to the list by using @see `addChild` or @see `insertDefaultItem`.
|
|
|
|
* @warning The list item in ListView doesn't support cell reuse at the moment, if you have a large amount of data need to be displayed, use @see `TableView` instead.
|
|
|
|
* ListView is a subclass of @see `ScrollView`, so it shares many features of ScrollView.
|
|
|
|
*/
|
2014-07-21 17:45:56 +08:00
|
|
|
class CC_GUI_DLL ListView : public ScrollView
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
DECLARE_CLASS_GUI_INFO
|
2013-09-13 22:20:20 +08:00
|
|
|
public:
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* Gravity for docking elements in ListView.
|
|
|
|
*/
|
2014-05-12 09:51:23 +08:00
|
|
|
enum class Gravity
|
|
|
|
{
|
|
|
|
LEFT,
|
|
|
|
RIGHT,
|
|
|
|
CENTER_HORIZONTAL,
|
|
|
|
TOP,
|
|
|
|
BOTTOM,
|
|
|
|
CENTER_VERTICAL
|
|
|
|
};
|
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* ListView element item click event.
|
|
|
|
*/
|
2014-05-12 09:51:23 +08:00
|
|
|
enum class EventType
|
|
|
|
{
|
|
|
|
ON_SELECTED_ITEM_START,
|
|
|
|
ON_SELECTED_ITEM_END
|
|
|
|
};
|
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* ListView item click callback.
|
|
|
|
*/
|
2014-05-12 09:51:23 +08:00
|
|
|
typedef std::function<void(Ref*, EventType)> ccListViewCallback;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
ListView();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Default destructor
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual ~ListView();
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Create an empty ListView.
|
|
|
|
*@return A ListView instance.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
static ListView* create();
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Set a item model for listview.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
2015-03-25 18:17:58 +08:00
|
|
|
* When calling @see `pushBackDefaultItem`, the model will be used as a blueprint and new model copy will be inserted into ListView.
|
|
|
|
* @param model Model in `Widget*`.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void setItemModel(Widget* model);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Insert a a default item(create by a cloned model) at the end of the listview.
|
2013-11-06 16:04:06 +08:00
|
|
|
*/
|
|
|
|
void pushBackDefaultItem();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Insert a default item(create by cloning model) into listview at a give index.
|
|
|
|
*@param index A index in ssize_t.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-28 14:34:52 +08:00
|
|
|
void insertDefaultItem(ssize_t index);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Insert a custom item into the end of ListView.
|
|
|
|
*@param item A item in `Widget*`.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void pushBackCustomItem(Widget* item);
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* @brief Insert a custom widget into ListView at a given index.
|
|
|
|
*
|
|
|
|
* @param item A widget pointer to be inserted.
|
|
|
|
* @param index A given index in ssize_t.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-28 14:34:52 +08:00
|
|
|
void insertCustomItem(Widget* item, ssize_t index);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Removes the last item of ListView.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void removeLastItem();
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Remove a item at given index.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
2015-03-25 18:17:58 +08:00
|
|
|
* @param index A given index in ssize_t.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-28 14:34:52 +08:00
|
|
|
void removeItem(ssize_t index);
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-12-27 16:01:03 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* @brief Remove all items in current ListView.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
2015-03-25 18:17:58 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
void removeAllItems();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a item at a given index.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
2015-03-25 18:17:58 +08:00
|
|
|
* @param index A given index in ssize_t.
|
|
|
|
* @return A widget instance.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2014-05-27 10:40:20 +08:00
|
|
|
Widget* getItem(ssize_t index)const;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Return all items in a ListView.
|
|
|
|
*@returns A vector of widget pointers.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
Vector<Widget*>& getItems();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Return the index of specified widget.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
2015-03-25 18:17:58 +08:00
|
|
|
* @param item A widget pointer.
|
|
|
|
* @return The index of a given widget in ListView.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-28 14:34:52 +08:00
|
|
|
ssize_t getIndex(Widget* item) const;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Set the gravity of ListView.
|
|
|
|
* @see `ListViewGravity`
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2014-05-12 09:51:23 +08:00
|
|
|
void setGravity(Gravity gravity);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2015-03-25 18:17:58 +08:00
|
|
|
* Set the margin between each item in ListView.
|
2013-11-06 16:04:06 +08:00
|
|
|
*
|
|
|
|
* @param margin
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void setItemsMargin(float margin);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Query margin between each item in ListView.
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return A margin in float.
|
|
|
|
*/
|
2014-05-27 10:40:20 +08:00
|
|
|
float getItemsMargin()const;
|
2014-03-01 22:34:25 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
//override methods
|
2014-12-22 09:55:29 +08:00
|
|
|
virtual void forceDoLayout()override;
|
2014-06-04 10:51:32 +08:00
|
|
|
virtual void doLayout() override;
|
2014-06-25 16:17:16 +08:00
|
|
|
virtual void addChild(Node* child)override;
|
|
|
|
virtual void addChild(Node * child, int localZOrder)override;
|
2014-05-22 17:49:19 +08:00
|
|
|
virtual void addChild(Node* child, int zOrder, int tag) override;
|
2014-06-25 11:27:48 +08:00
|
|
|
virtual void addChild(Node* child, int zOrder, const std::string &name) override;
|
2014-05-22 17:49:19 +08:00
|
|
|
virtual void removeAllChildren() override;
|
|
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
|
2015-03-25 18:17:58 +08:00
|
|
|
virtual void removeChild(Node* child, bool cleaup = true) override;
|
2013-09-23 19:16:20 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Query current selected widget's idnex.
|
|
|
|
*
|
|
|
|
|
|
|
|
* @return A index of a selected item.
|
|
|
|
*/
|
2013-12-28 14:34:52 +08:00
|
|
|
ssize_t getCurSelectedIndex() const;
|
2013-11-08 20:29:49 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* Add a event click callback to ListView, then one item of Listview is clicked, the callback will be called.
|
|
|
|
*@deprecated Use @see `addEventListener` instead.
|
|
|
|
*@param target A pointer of `Ref*` type.
|
|
|
|
*@param selector A member function pointer with type of `SEL_ListViewEvent`.
|
|
|
|
*/
|
2014-05-12 09:51:23 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void addEventListenerListView(Ref* target, SEL_ListViewEvent selector);
|
2015-03-25 18:17:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a event click callback to ListView, then one item of Listview is clicked, the callback will be called.
|
|
|
|
*@param callback A callback function with type of `ccListViewCallback`.
|
|
|
|
*/
|
2014-05-14 16:14:28 +08:00
|
|
|
void addEventListener(const ccListViewCallback& callback);
|
2014-06-23 15:46:07 +08:00
|
|
|
using ScrollView::addEventListener;
|
2014-06-23 12:09:49 +08:00
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Changes scroll direction of scrollview.
|
|
|
|
*
|
2014-07-15 15:56:07 +08:00
|
|
|
* @see Direction Direction::VERTICAL means vertical scroll, Direction::HORIZONTAL means horizontal scroll
|
|
|
|
* @param dir, set the list view's scroll direction
|
2013-09-17 17:59:20 +08:00
|
|
|
*/
|
2014-05-12 11:08:10 +08:00
|
|
|
virtual void setDirection(Direction dir) override;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual std::string getDescription() const override;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2015-03-25 18:17:58 +08:00
|
|
|
/**
|
|
|
|
* @brief Refresh view and layout of ListView manually.
|
|
|
|
* This method will mark ListView content as dirty and the content view will be refershed in the next frame.
|
|
|
|
*/
|
2013-12-26 14:57:30 +08:00
|
|
|
void requestRefreshView();
|
2015-03-25 18:17:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Refresh content view of ListView.
|
|
|
|
*/
|
2014-03-06 17:21:09 +08:00
|
|
|
void refreshView();
|
2014-03-21 13:44:29 +08:00
|
|
|
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
|
|
|
virtual bool init() override;
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2014-05-22 17:49:19 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
void updateInnerContainerSize();
|
2013-12-23 15:02:52 +08:00
|
|
|
void remedyLayoutParameter(Widget* item);
|
2015-01-19 11:44:32 +08:00
|
|
|
void remedyVerticalLayoutParameter(LinearLayoutParameter* layoutParameter, ssize_t itemIndex);
|
|
|
|
void remedyHorizontalLayoutParameter(LinearLayoutParameter* layoutParameter,ssize_t itemIndex);
|
|
|
|
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void onSizeChanged() override;
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual Widget* createCloneInstance() override;
|
|
|
|
virtual void copySpecialProperties(Widget* model) override;
|
|
|
|
virtual void copyClonedWidgetChildren(Widget* model) override;
|
2014-05-22 15:23:13 +08:00
|
|
|
void selectedItemEvent(TouchEventType event);
|
2014-06-06 16:48:49 +08:00
|
|
|
virtual void interceptTouchEvent(Widget::TouchEventType event,Widget* sender,Touch* touch) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-12-23 15:02:52 +08:00
|
|
|
Widget* _model;
|
2014-06-06 16:48:49 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
Vector<Widget*> _items;
|
2014-06-06 16:48:49 +08:00
|
|
|
|
2014-05-12 09:51:23 +08:00
|
|
|
Gravity _gravity;
|
2014-06-06 16:48:49 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
float _itemsMargin;
|
2014-05-12 09:51:23 +08:00
|
|
|
|
2014-06-06 16:48:49 +08:00
|
|
|
ssize_t _curSelectedIndex;
|
|
|
|
bool _refreshViewDirty;
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
Ref* _listViewEventListener;
|
2014-05-12 09:51:23 +08:00
|
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#elif _MSC_VER >= 1400 //vs 2005 or higher
|
|
|
|
#pragma warning (push)
|
|
|
|
#pragma warning (disable: 4996)
|
|
|
|
#endif
|
2013-11-08 20:29:49 +08:00
|
|
|
SEL_ListViewEvent _listViewEventSelector;
|
2014-05-12 09:51:23 +08:00
|
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
|
|
|
|
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
|
|
|
|
#elif _MSC_VER >= 1400 //vs 2005 or higher
|
|
|
|
#pragma warning (pop)
|
|
|
|
#endif
|
|
|
|
ccListViewCallback _eventCallback;
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2015-03-25 18:17:58 +08:00
|
|
|
// end of ui group
|
|
|
|
/// @}
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_END
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
#endif /* defined(__ListView__) */
|