2013-09-13 22:20:20 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
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-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
#ifndef __UILISTVIEW_H__
|
|
|
|
#define __UILISTVIEW_H__
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
#include "gui/UIScrollView.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
namespace gui{
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-09-17 20:13:23 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
LISTVIEW_GRAVITY_LEFT,
|
|
|
|
LISTVIEW_GRAVITY_RIGHT,
|
|
|
|
LISTVIEW_GRAVITY_CENTER_HORIZONTAL,
|
|
|
|
|
|
|
|
LISTVIEW_GRAVITY_TOP,
|
|
|
|
LISTVIEW_GRAVITY_BOTTOM,
|
|
|
|
LISTVIEW_GRAVITY_CENTER_VERTICAL,
|
|
|
|
}ListViewGravity;
|
2013-11-08 20:29:49 +08:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2013-11-14 13:42:10 +08:00
|
|
|
LISTVIEW_ONSELECTEDITEM
|
2013-11-08 20:29:49 +08:00
|
|
|
}ListViewEventType;
|
|
|
|
|
|
|
|
typedef void (cocos2d::Object::*SEL_ListViewEvent)(cocos2d::Object*,ListViewEventType);
|
|
|
|
#define listvieweventselector(_SELECTOR) (SEL_ListViewEvent)(&_SELECTOR)
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
class UIListView : public UIScrollView
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
public:
|
2013-11-06 16:04:06 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default constructor
|
2013-11-20 12:04:47 +08:00
|
|
|
* @js ctor
|
2013-11-06 16:04:06 +08:00
|
|
|
*/
|
2013-09-13 22:20:20 +08:00
|
|
|
UIListView();
|
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Default destructor
|
2013-11-20 12:04:47 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
virtual ~UIListView();
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Allocates and initializes.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
static UIListView* create();
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Sets a item model for listview
|
|
|
|
*
|
|
|
|
* A model will be cloned for adding default item.
|
|
|
|
*
|
|
|
|
* @param model item model for listview
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void setItemModel(UIWidget* model);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
/**
|
|
|
|
* Push back a default item(create by a cloned model) into listview.
|
|
|
|
*/
|
|
|
|
void pushBackDefaultItem();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Insert a default item(create by a cloned model) into listview.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void insertDefaultItem(int index);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Push back custom item into listview.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void pushBackCustomItem(UIWidget* item);
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Insert custom item into listview.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void insertCustomItem(UIWidget* item, int index);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +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
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Removes a item whose index is same as the parameter.
|
|
|
|
*
|
|
|
|
* @param index of item.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void removeItem(int index);
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Returns a item whose index is same as the parameter.
|
|
|
|
*
|
|
|
|
* @param index of item.
|
|
|
|
*
|
|
|
|
* @return the item widget.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
UIWidget* getItem(unsigned int index);
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Returns the item container.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
cocos2d::Array* getItems();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Returns the index of item.
|
|
|
|
*
|
|
|
|
* @param item the item which need to be checked.
|
|
|
|
*
|
|
|
|
* @return the index of item.
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
unsigned int getIndex(UIWidget* item) const;
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Changes the gravity of listview.
|
|
|
|
* @see ListViewGravity
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void setGravity(ListViewGravity gravity);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Changes the margin between each item.
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
/**
|
|
|
|
* Refresh the view of list.
|
|
|
|
*
|
|
|
|
* If you change the data, you need to call this mathod.
|
|
|
|
*/
|
|
|
|
void refreshView();
|
2013-09-23 19:16:20 +08:00
|
|
|
|
2013-11-08 20:29:49 +08:00
|
|
|
int getCurSelectedIndex() const;
|
|
|
|
|
|
|
|
void addEventListenerListView(cocos2d::Object* target, SEL_ListViewEvent selector);
|
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
/**
|
2013-11-06 16:04:06 +08:00
|
|
|
* Changes scroll direction of scrollview.
|
|
|
|
*
|
|
|
|
* @see SCROLLVIEW_DIR SCROLLVIEW_DIR_VERTICAL means vertical scroll, SCROLLVIEW_DIR_HORIZONTAL means horizontal scroll
|
|
|
|
*
|
|
|
|
* @param SCROLLVIEW_DIR
|
2013-09-17 17:59:20 +08:00
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setDirection(SCROLLVIEW_DIR dir) override;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual const char* getDescription() const override;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual bool addChild(UIWidget* widget) override{return UIScrollView::addChild(widget);};
|
|
|
|
virtual bool removeChild(UIWidget* widget) override{return UIScrollView::removeChild(widget);};
|
|
|
|
virtual void removeAllChildren() override{UIScrollView::removeAllChildren();};
|
|
|
|
virtual cocos2d::Array* getChildren() override{return UIScrollView::getChildren();};
|
|
|
|
virtual bool init() override;
|
2013-11-06 16:04:06 +08:00
|
|
|
void updateInnerContainerSize();
|
|
|
|
void remedyLayoutParameter(UIWidget* item);
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void onSizeChanged() override;
|
|
|
|
virtual UIWidget* createCloneInstance() override;
|
|
|
|
virtual void copySpecialProperties(UIWidget* model) override;
|
|
|
|
virtual void copyClonedWidgetChildren(UIWidget* model) override;
|
2013-11-08 20:29:49 +08:00
|
|
|
void selectedItemEvent();
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void interceptTouchEvent(int handleState,UIWidget* sender,const cocos2d::Point &touchPoint) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-11-06 16:04:06 +08:00
|
|
|
|
|
|
|
UIWidget* _model;
|
|
|
|
cocos2d::Array* _items;
|
|
|
|
ListViewGravity _gravity;
|
|
|
|
float _itemsMargin;
|
2013-11-08 20:29:49 +08:00
|
|
|
cocos2d::Object* _listViewEventListener;
|
|
|
|
SEL_ListViewEvent _listViewEventSelector;
|
|
|
|
int _curSelectedIndex;
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
#endif /* defined(__UIListView__) */
|