123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- /****************************************************************************
- Copyright (c) 2013-2016 Chukong Technologies Inc.
- Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
- 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 "ui/UIListView.h"
- #include "ui/GUIExport.h"
- /**
- * @addtogroup ui
- * @{
- */
- NS_CC_BEGIN
- namespace ui {
- class PageViewIndicator;
- /**
- *PageView page turn event type.
- *@deprecated Use `PageView::EventType` instead.
- */
- typedef enum
- {
- PAGEVIEW_EVENT_TURNING,
- }PageViewEventType;
- /**
- *A callback which would be called when a PageView turning event is happening.
- *@deprecated Use `PageView::ccPageViewCallback` instead.
- */
- typedef void (Ref::*SEL_PageViewEvent)(Ref*, PageViewEventType);
- #define pagevieweventselector(_SELECTOR)(SEL_PageViewEvent)(&_SELECTOR)
- /**
- *@brief Layout manager that allows the user to flip left & right and up & down through pages of data.
- *
- */
- class CC_GUI_DLL PageView : public ListView
- {
-
- DECLARE_CLASS_GUI_INFO
-
- public:
- /**
- * Page turn event type.
- */
- enum class EventType
- {
- TURNING
- };
-
- /**
- * Touch direction type.
- */
- enum class TouchDirection
- {
- LEFT,
- RIGHT,
- UP,
- DOWN
- };
- /**
- * PageView page turn event callback.
- */
- typedef std::function<void(Ref*, EventType)> ccPageViewCallback;
- /**
- * Default constructor
- * @js ctor
- * @lua new
- */
- PageView();
-
- /**
- * Default destructor
- * @js NA
- * @lua NA
- */
- virtual ~PageView();
-
- /**
- * Create an empty PageView.
- *@return A PageView instance.
- */
- static PageView* create();
- /**
- * Changes direction
- * Direction Direction::VERTICAL means vertical scroll, Direction::HORIZONTAL means horizontal scroll.
- * @param direction Set the page view's scroll direction.
- */
- virtual void setDirection(Direction direction) override;
- /**
- * Add a widget as a page of PageView in a given index.
- *
- * @param widget Widget to be added to pageview.
- * @param pageIdx A given index.
- * @param forceCreate If `forceCreate` is true and `widget` isn't exists, pageview would create a default page and add it.
- *
- * Since v3.9, this is deprecated. Use `insertPage(Widget* page, int idx)` instead.
- */
- CC_DEPRECATED_ATTRIBUTE void addWidgetToPage(Widget* widget, ssize_t pageIdx, bool forceCreate);
-
- /**
- * Insert a page into the end of PageView.
- *
- * @param page Page to be inserted.
- */
- void addPage(Widget* page);
- /**
- * Insert a page into PageView at a given index.
- *
- * @param page Page to be inserted.
- * @param idx A given index.
- */
- void insertPage(Widget* page, int idx);
- /**
- * Remove a page of PageView.
- *
- * @param page Page to be removed.
- */
- void removePage(Widget* page);
- /**
- * Remove a page at a given index of PageView.
- *
- * @param index A given index.
- */
- void removePageAtIndex(ssize_t index);
- /**
- * @brief Remove all pages of the PageView.
- */
- void removeAllPages();
-
- /**
- * Scroll to a page with a given index.
- *
- * @param idx A given index in the PageView. Index start from 0 to pageCount -1.
- */
- void scrollToPage(ssize_t idx);
-
- /**
- * Scroll to a page with a given index and with a given scroll time.
- *
- * @param idx A given index in the PageView. Index start from 0 to pageCount -1.
- * @param time Scroll time must be >= 0. Otherwise last set scroll time will be used.
- */
- void scrollToPage(ssize_t idx, float time);
- /**
- * Scroll to a page with a given index.
- *
- * @param itemIndex A given index in the PageView. Index start from 0 to pageCount -1.
- */
- void scrollToItem(ssize_t itemIndex);
-
- /**
- * Scroll to a item with a given index and with a given scroll time.
- *
- * @param idx A given index in the PageView. Index start from 0 to pageCount -1.
- * @param time Scroll time must be >= 0. Otherwise last set scrolltime will be used.
- */
- void scrollToItem(ssize_t idx, float time);
- /**
- * Gets current displayed page index.
- * @return current page index.
- *
- * Since v3.9, this is deprecated. Use `getCurrentPageIndex()` instead.
- */
- CC_DEPRECATED_ATTRIBUTE ssize_t getCurPageIndex() const;
- /**
- * Gets current displayed page index.
- * @return current page index.
- */
- ssize_t getCurrentPageIndex();
- /**
- * Jump to a page with a given index without scrolling.
- * This is the different between scrollToPage.
- *
- * @param index A given index in PageView. Index start from 0 to pageCount -1.
- *
- * Since v3.9, this is deprecated. Use `setCurrentPageIndex()` instead.
- */
- CC_DEPRECATED_ATTRIBUTE void setCurPageIndex(ssize_t index);
- /**
- * Jump to a page with a given index without scrolling.
- * This is the different between scrollToPage.
- *
- * @param index A given index in PageView. Index start from 0 to pageCount -1.
- */
- void setCurrentPageIndex(ssize_t index);
- /**
- * @brief Get all the pages in the PageView.
- * @return A vector of Layout pointers.
- *
- * Since v3.9, this is obsolete. Use `Vector<Widget*>& ListView::getItems()` instead.
- */
- CC_DEPRECATED_ATTRIBUTE Vector<Layout*>& getPages();
- /**
- * @brief Get a page at a given index
- *
- * @param index A given index.
- * @return A layout pointer in PageView container.
- *
- * Since v3.9, this is obsolete. Use `Widget* ListView::getItem(index)` instead.
- */
- CC_DEPRECATED_ATTRIBUTE Layout* getPage(ssize_t index);
-
- /**
- * Add a page turn callback to PageView, then when one page is turning, the callback will be called.
- *@deprecated Use `PageView::addEventListener` instead.
- *@param target A pointer of `Ref*` type.
- *@param selector A member function pointer with signature of `SEL_PageViewEvent`.
- */
- CC_DEPRECATED_ATTRIBUTE void addEventListenerPageView(Ref *target, SEL_PageViewEvent selector);
- /**
- * @brief Add a page turn callback to PageView, then when one page is turning, the callback will be called.
- *
- * @param callback A page turning callback.
- */
- void addEventListener(const ccPageViewCallback& callback);
- using ScrollView::addEventListener;
- //override methods
- virtual std::string getDescription() const override;
- /**
- * @brief Toggle page indicator enabled.
- *
- * @param enabled True if enable page indicator, false otherwise.
- */
- void setIndicatorEnabled(bool enabled);
- /**
- * @brief Query page indicator state.
- *
- * @return True if page indicator is enabled, false otherwise.
- */
- bool getIndicatorEnabled() const { return _indicator != nullptr; }
- /**
- * @brief Set the page indicator's position using anchor point.
- *
- * @param positionAsAnchorPoint The position as anchor point.
- */
- void setIndicatorPositionAsAnchorPoint(const Vec2& positionAsAnchorPoint);
- /**
- * @brief Get the page indicator's position as anchor point.
- *
- * @return positionAsAnchorPoint
- */
- const Vec2& getIndicatorPositionAsAnchorPoint() const;
- /**
- * @brief Set the page indicator's position in page view.
- *
- * @param position The position in page view
- */
- void setIndicatorPosition(const Vec2& position);
-
- /**
- * @brief Get the page indicator's position.
- *
- * @return positionAsAnchorPoint
- */
- const Vec2& getIndicatorPosition() const;
- /**
- * @brief Set space between page indicator's index nodes.
- *
- * @param spaceBetweenIndexNodes Space between nodes in pixel.
- */
- void setIndicatorSpaceBetweenIndexNodes(float spaceBetweenIndexNodes);
- /**
- * @brief Get the space between page indicator's index nodes.
- *
- * @return spaceBetweenIndexNodes
- */
- float getIndicatorSpaceBetweenIndexNodes() const;
- /**
- * @brief Set color of page indicator's selected index.
- *
- * @param color New color for selected (current) index.
- */
- void setIndicatorSelectedIndexColor(const Color3B& color);
- /**
- * @brief Get the color of page indicator's selected index.
- *
- * @return color
- */
- const Color3B& getIndicatorSelectedIndexColor() const;
- /**
- * @brief Set color of page indicator's index nodes.
- *
- * @param color New indicator node color.
- */
- void setIndicatorIndexNodesColor(const Color3B& color);
-
- /**
- * @brief Get the color of page indicator's index nodes.
- *
- * @return color
- */
- const Color3B& getIndicatorIndexNodesColor() const;
-
- /**
- * @brief Set opacity of page indicator's selected index.
- *
- * @param color New opacity for selected (current) index.
- */
- void setIndicatorSelectedIndexOpacity(GLubyte opacity);
-
- /**
- * @brief Get the opacity of page indicator's selected index.
- *
- * @return opacity
- */
- GLubyte getIndicatorSelectedIndexOpacity() const;
-
- /**
- * @brief Set opacity of page indicator's index nodes.
- *
- * @param opacity New indicator node opacity.
- */
- void setIndicatorIndexNodesOpacity(GLubyte opacity);
-
- /**
- * @brief Get the opacity of page indicator's index nodes.
- *
- * @return opacity
- */
- GLubyte getIndicatorIndexNodesOpacity() const;
-
- /**
- * @brief Set scale of page indicator's index nodes.
- *
- * @param indexNodesScale Scale of index nodes.
- */
- void setIndicatorIndexNodesScale(float indexNodesScale);
-
- /**
- * sets texture for index nodes.
- *
- * @param fileName File name of texture.
- * @param resType @see TextureResType .
- */
- void setIndicatorIndexNodesTexture(const std::string& texName,Widget::TextureResType texType = Widget::TextureResType::LOCAL);
-
- /**
- * @brief Get scale of page indicator's index nodes.
- *
- * @return indexNodesScale
- */
- float getIndicatorIndexNodesScale() const;
-
- /**
- *@brief If you don't specify the value, the pageView will turn page when scrolling at the half width of a page.
- *@param threshold A threshold in float.
- *@deprecated Since v3.9, this method has no effect.
- */
- CC_DEPRECATED_ATTRIBUTE void setCustomScrollThreshold(float threshold);
- /**
- *@brief Query the custom scroll threshold of the PageView.
- *@return Custom scroll threshold in float.
- *@deprecated Since v3.9, this method always returns 0.
- */
- CC_DEPRECATED_ATTRIBUTE float getCustomScrollThreshold()const;
- /**
- *@brief Set using user defined scroll page threshold or not.
- * If you set it to false, then the default scroll threshold is pageView.width / 2
- *@param flag True if using custom scroll threshold, false otherwise.
- *@deprecated Since v3.9, this method has no effect.
- */
- CC_DEPRECATED_ATTRIBUTE void setUsingCustomScrollThreshold(bool flag);
- /**
- *@brief Query whether use user defined scroll page threshold or not.
- *@return True if using custom scroll threshold, false otherwise.
- *@deprecated Since v3.9, this method always returns false.
- */
- CC_DEPRECATED_ATTRIBUTE bool isUsingCustomScrollThreshold()const;
- void setAutoScrollStopEpsilon(float epsilon);
- CC_CONSTRUCTOR_ACCESS:
- virtual bool init() override;
- //override methods
- virtual void doLayout() override;
- protected:
- void pageTurningEvent();
- virtual float getAutoScrollStopEpsilon() const override;
- virtual void remedyLayoutParameter(Widget* item)override;
- virtual void moveInnerContainer(const Vec2& deltaMove, bool canStartBounceBack) override;
- virtual void onItemListChanged() override;
- virtual void onSizeChanged() override;
- virtual void handleReleaseLogic(Touch *touch) override;
- virtual void handlePressLogic(Touch *touch) override;
- virtual Widget* createCloneInstance() override;
- virtual void copySpecialProperties(Widget* model) override;
- void refreshIndicatorPosition();
- protected:
- PageViewIndicator* _indicator;
- Vec2 _indicatorPositionAsAnchorPoint;
- ssize_t _currentPageIndex;
- float _childFocusCancelOffset;
- Ref* _pageViewEventListener;
- #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_PageViewEvent _pageViewEventSelector;
- #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
- ccPageViewCallback _eventCallback;
- float _autoScrollStopEpsilon;
- ssize_t _previousPageIndex;
- bool _isTouchBegin;
- };
- }
- NS_CC_END
- // end of ui group
- /// @}
- #endif /* defined(__PageView__) */
|