mirror of https://github.com/axmolengine/axmol.git
234 lines
6.3 KiB
C++
234 lines
6.3 KiB
C++
/****************************************************************************
|
|
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.
|
|
****************************************************************************/
|
|
|
|
|
|
#ifndef __UILISTVIEW_H__
|
|
#define __UILISTVIEW_H__
|
|
|
|
#include "ui/UIScrollView.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
namespace ui{
|
|
|
|
CC_DEPRECATED_ATTRIBUTE typedef enum
|
|
{
|
|
LISTVIEW_ONSELECTEDITEM_START,
|
|
LISTVIEW_ONSELECTEDITEM_END
|
|
}ListViewEventType;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE typedef void (Ref::*SEL_ListViewEvent)(Ref*,ListViewEventType);
|
|
#define listvieweventselector(_SELECTOR) (SEL_ListViewEvent)(&_SELECTOR)
|
|
|
|
class ListView : public ScrollView
|
|
{
|
|
|
|
DECLARE_CLASS_GUI_INFO
|
|
|
|
public:
|
|
enum class Gravity
|
|
{
|
|
LEFT,
|
|
RIGHT,
|
|
CENTER_HORIZONTAL,
|
|
TOP,
|
|
BOTTOM,
|
|
CENTER_VERTICAL
|
|
};
|
|
|
|
enum class EventType
|
|
{
|
|
ON_SELECTED_ITEM_START,
|
|
ON_SELECTED_ITEM_END
|
|
};
|
|
|
|
typedef std::function<void(Ref*, EventType)> ccListViewCallback;
|
|
|
|
/**
|
|
* Default constructor
|
|
*/
|
|
ListView();
|
|
|
|
/**
|
|
* Default destructor
|
|
*/
|
|
virtual ~ListView();
|
|
|
|
/**
|
|
* Allocates and initializes.
|
|
*/
|
|
static ListView* create();
|
|
|
|
/**
|
|
* Sets a item model for listview
|
|
*
|
|
* A model will be cloned for adding default item.
|
|
*
|
|
* @param model item model for listview
|
|
*/
|
|
void setItemModel(Widget* model);
|
|
|
|
/**
|
|
* Push back a default item(create by a cloned model) into listview.
|
|
*/
|
|
void pushBackDefaultItem();
|
|
|
|
/**
|
|
* Insert a default item(create by a cloned model) into listview.
|
|
*/
|
|
void insertDefaultItem(ssize_t index);
|
|
|
|
/**
|
|
* Push back custom item into listview.
|
|
*/
|
|
void pushBackCustomItem(Widget* item);
|
|
|
|
/**
|
|
* Insert custom item into listview.
|
|
*/
|
|
void insertCustomItem(Widget* item, ssize_t index);
|
|
|
|
/**
|
|
* Removes the last item of listview.
|
|
*/
|
|
void removeLastItem();
|
|
|
|
/**
|
|
* Removes a item whose index is same as the parameter.
|
|
*
|
|
* @param index of item.
|
|
*/
|
|
void removeItem(ssize_t index);
|
|
|
|
void removeAllItems();
|
|
|
|
/**
|
|
* Returns a item whose index is same as the parameter.
|
|
*
|
|
* @param index of item.
|
|
*
|
|
* @return the item widget.
|
|
*/
|
|
Widget* getItem(ssize_t index);
|
|
|
|
/**
|
|
* Returns the item container.
|
|
*/
|
|
Vector<Widget*>& getItems();
|
|
|
|
/**
|
|
* Returns the index of item.
|
|
*
|
|
* @param item the item which need to be checked.
|
|
*
|
|
* @return the index of item.
|
|
*/
|
|
ssize_t getIndex(Widget* item) const;
|
|
|
|
/**
|
|
* Changes the gravity of listview.
|
|
* @see ListViewGravity
|
|
*/
|
|
void setGravity(Gravity gravity);
|
|
|
|
/**
|
|
* Changes the margin between each item.
|
|
*
|
|
* @param margin
|
|
*/
|
|
void setItemsMargin(float margin);
|
|
|
|
float getItemsMargin();
|
|
|
|
virtual void sortAllChildren() override;
|
|
virtual void addChild(Node * child) override;
|
|
virtual void addChild(Node * child, int zOrder) override;
|
|
virtual void addChild(Node* child, int zOrder, int tag) override;
|
|
virtual void removeAllChildren() override;
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
|
|
virtual void removeChild(Node* child, bool cleaup = true) override;
|
|
|
|
ssize_t getCurSelectedIndex() const;
|
|
|
|
CC_DEPRECATED_ATTRIBUTE void addEventListenerListView(Ref* target, SEL_ListViewEvent selector);
|
|
void addEventListener(const ccListViewCallback& callback);
|
|
|
|
/**
|
|
* Changes scroll direction of scrollview.
|
|
*
|
|
* @see SCROLLVIEW_DIR SCROLLVIEW_DIR_VERTICAL means vertical scroll, SCROLLVIEW_DIR_HORIZONTAL means horizontal scroll
|
|
*
|
|
* @param SCROLLVIEW_DIR
|
|
*/
|
|
virtual void setDirection(Direction dir) override;
|
|
|
|
virtual std::string getDescription() const override;
|
|
|
|
void requestRefreshView();
|
|
void refreshView();
|
|
|
|
CC_CONSTRUCTOR_ACCESS:
|
|
virtual bool init() override;
|
|
|
|
protected:
|
|
|
|
void updateInnerContainerSize();
|
|
void remedyLayoutParameter(Widget* item);
|
|
virtual void onSizeChanged() override;
|
|
virtual Widget* createCloneInstance() override;
|
|
virtual void copySpecialProperties(Widget* model) override;
|
|
virtual void copyClonedWidgetChildren(Widget* model) override;
|
|
void selectedItemEvent(TouchEventType event);
|
|
virtual void interceptTouchEvent(Widget::TouchEventType event,Widget* sender,const Vec2 &touchPoint) override;
|
|
protected:
|
|
|
|
Widget* _model;
|
|
Vector<Widget*> _items;
|
|
Gravity _gravity;
|
|
float _itemsMargin;
|
|
|
|
Ref* _listViewEventListener;
|
|
#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
|
|
SEL_ListViewEvent _listViewEventSelector;
|
|
#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;
|
|
|
|
ssize_t _curSelectedIndex;
|
|
bool _refreshViewDirty;
|
|
};
|
|
|
|
}
|
|
NS_CC_END
|
|
|
|
#endif /* defined(__ListView__) */
|