axmol/cocos/gui/UIPageView.h

233 lines
6.6 KiB
C++

/****************************************************************************
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.
****************************************************************************/
#ifndef __UIPAGEVIEW_H__
#define __UIPAGEVIEW_H__
#include "gui/UILayout.h"
#include "gui/UIScrollInterface.h"
namespace gui {
typedef enum
{
PAGEVIEW_EVENT_TURNING,
}PageViewEventType;
typedef void (cocos2d::Object::*SEL_PageViewEvent)(cocos2d::Object*, PageViewEventType);
#define pagevieweventselector(_SELECTOR)(SEL_PageViewEvent)(&_SELECTOR)
typedef enum {
PAGEVIEW_TOUCHLEFT,
PAGEVIEW_TOUCHRIGHT
}PVTouchDir;
class UIPageView : public UILayout , public UIScrollInterface
{
public:
/**
* Default constructor
* @js ctor
*/
UIPageView();
/**
* Default destructor
* @lua NA
* @js NA
*/
virtual ~UIPageView();
/**
* Allocates and initializes.
*/
static UIPageView* create();
/**
* Add a widget to a page of pageview.
*
* @param widget widget to be added to pageview.
*
* @param pageIdx index of page.
*
* @param forceCreate if force create and there is no page exsit, pageview would create a default page for adding widget.
*/
void addWidgetToPage(UIWidget* widget, int pageIdx, bool forceCreate);
/**
* Push back a page to pageview.
*
* @param page page to be added to pageview.
*/
void addPage(UILayout* page);
/**
* Inert a page to pageview.
*
* @param page page to be added to pageview.
*/
void insertPage(UILayout* page, int idx);
/**
* Remove a page of pageview.
*
* @param page page which will be removed.
*/
void removePage(UILayout* page);
/**
* Remove a page at index of pageview.
*
* @param index index of page.
*/
void removePageAtIndex(int index);
void removeAllPages();
/**
* scroll pageview to index.
*
* @param idx index of page.
*/
void scrollToPage(int idx);
/**
* Gets current page index.
*
* @return current page index.
*/
int getCurPageIndex() const;
cocos2d::Array* getPages();
UILayout* getPage(int index);
// event
void addEventListenerPageView(cocos2d::Object *target, SEL_PageViewEvent selector);
/**override "onTouchBegan" method of widget.
* @js NA
* @lua NA
*/
virtual bool onTouchBegan(const cocos2d::Point &touchPoint) override;
/**override "onTouchMoved" method of widget.
* @js NA
* @lua NA
*/
virtual void onTouchMoved(const cocos2d::Point &touchPoint) override;
/**override "onTouchEnded" method of widget.
* @js NA
* @lua NA
*/
virtual void onTouchEnded(const cocos2d::Point &touchPoint) override;
/**override "onTouchCancelled" method of widget.
* @js NA
* @lua NA
*/
virtual void onTouchCancelled(const cocos2d::Point &touchPoint) override;
//override "update" method of widget.
virtual void update(float dt) override;
virtual void doLayout() override{};
/**
* Sets LayoutType.
*
* @see LayoutType
*
* @param LayoutType
*/
virtual void setLayoutType(LayoutType type) override{};
/**
* Gets LayoutType.
*
* @see LayoutType
*
* @return LayoutType
*/
virtual LayoutType getLayoutType() const override{return LAYOUT_ABSOLUTE;};
/**
* Returns the "class name" of widget.
*/
virtual const char* getDescription() const override;
protected:
virtual bool addChild(UIWidget* widget) override;
virtual bool removeChild(UIWidget* widget) override;
virtual void removeAllChildren() override;
virtual cocos2d::Array* getChildren() override{return UIWidget::getChildren();};
virtual bool init() override;
UILayout* createPage();
float getPositionXByIndex(int idx);
void updateBoundaryPages();
virtual void handlePressLogic(const cocos2d::Point &touchPoint) override;
virtual void handleMoveLogic(const cocos2d::Point &touchPoint) override;
virtual void handleReleaseLogic(const cocos2d::Point &touchPoint) override;
virtual void interceptTouchEvent(int handleState, UIWidget* sender, const cocos2d::Point &touchPoint) override;
virtual void checkChildInfo(int handleState, UIWidget* sender, const cocos2d::Point &touchPoint) override;
virtual bool scrollPages(float touchOffset);
void movePages(float offset);
void pageTurningEvent();
void updateChildrenSize();
void updateChildrenPosition();
virtual void onSizeChanged() override;
virtual UIWidget* createCloneInstance() override;
virtual void copySpecialProperties(UIWidget* model) override;
virtual void copyClonedWidgetChildren(UIWidget* model) override;
virtual void setClippingEnabled(bool enabled) override {UILayout::setClippingEnabled(enabled);};
protected:
int _curPageIdx;
cocos2d::Array* _pages;
PVTouchDir _touchMoveDir;
float _touchStartLocation;
float _touchMoveStartLocation;
cocos2d::Point _movePagePoint;
UIWidget* _leftChild;
UIWidget* _rightChild;
float _leftBoundary;
float _rightBoundary;
bool _isAutoScrolling;
float _autoScrollDistance;
float _autoScrollSpeed;
int _autoScrollDir;
float _childFocusCancelOffset;
cocos2d::Object* _pageViewEventListener;
SEL_PageViewEvent _pageViewEventSelector;
};
}
#endif /* defined(__UIPageView__) */