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
|
|
|
|
|
|
|
#ifndef __UISCROLLVIEW_H__
|
|
|
|
#define __UISCROLLVIEW_H__
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
#include "gui/UILayout.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/UIScrollInterface.h"
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace gui {
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
enum SCROLLVIEW_DIR
|
|
|
|
{
|
|
|
|
SCROLLVIEW_DIR_NONE,
|
|
|
|
SCROLLVIEW_DIR_VERTICAL,
|
2013-11-06 16:04:06 +08:00
|
|
|
SCROLLVIEW_DIR_HORIZONTAL,
|
|
|
|
SCROLLVIEW_DIR_BOTH
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-09-17 20:34:26 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SCROLLVIEW_EVENT_SCROLL_TO_TOP,
|
|
|
|
SCROLLVIEW_EVENT_SCROLL_TO_BOTTOM,
|
|
|
|
SCROLLVIEW_EVENT_SCROLL_TO_LEFT,
|
|
|
|
SCROLLVIEW_EVENT_SCROLL_TO_RIGHT,
|
2013-11-06 16:04:06 +08:00
|
|
|
SCROLLVIEW_EVENT_SCROLLING,
|
|
|
|
SCROLLVIEW_EVENT_BOUNCE_TOP,
|
|
|
|
SCROLLVIEW_EVENT_BOUNCE_BOTTOM,
|
|
|
|
SCROLLVIEW_EVENT_BOUNCE_LEFT,
|
|
|
|
SCROLLVIEW_EVENT_BOUNCE_RIGHT
|
2013-09-17 20:34:26 +08:00
|
|
|
}ScrollviewEventType;
|
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
typedef void (Object::*SEL_ScrollViewEvent)(Object*, ScrollviewEventType);
|
2013-09-17 20:34:26 +08:00
|
|
|
#define scrollvieweventselector(_SELECTOR) (SEL_ScrollViewEvent)(&_SELECTOR)
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
class ScrollView : public Layout , public UIScrollInterface
|
2013-09-13 22:20:20 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
ScrollView();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default destructor
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual ~ScrollView();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocates and initializes.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
static ScrollView* create();
|
2013-09-13 22:20:20 +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-11-06 16:04:06 +08:00
|
|
|
virtual void setDirection(SCROLLVIEW_DIR dir);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets scroll direction of scrollview.
|
|
|
|
*
|
|
|
|
* @see SCROLLVIEW_DIR SCROLLVIEW_DIR_VERTICAL means vertical scroll, SCROLLVIEW_DIR_HORIZONTAL means horizontal scroll
|
|
|
|
*
|
|
|
|
* @return SCROLLVIEW_DIR
|
|
|
|
*/
|
|
|
|
SCROLLVIEW_DIR getDirection();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets inner container of scrollview.
|
|
|
|
*
|
|
|
|
* Inner container is the container of scrollview's children.
|
|
|
|
*
|
|
|
|
* @return inner container.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
Layout* getInnerContainer();
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to bottom boundary of scrollview.
|
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void scrollToBottom(float time, bool attenuated);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to top boundary of scrollview.
|
|
|
|
*/
|
2013-11-06 16:04:06 +08:00
|
|
|
void scrollToTop(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToLeft(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToRight(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to top and left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToTopLeft(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to top and right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToTopRight(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to bottom and left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToBottomLeft(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to bottom and right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToBottomRight(float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to vertical percent position of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToPercentVertical(float percent, float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to horizontal percent position of scrollview.
|
|
|
|
*/
|
|
|
|
void scrollToPercentHorizontal(float percent, float time, bool attenuated);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scroll inner container to both direction percent position of scrollview.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void scrollToPercentBothDirection(const Point& percent, float time, bool attenuated);
|
2013-11-06 16:04:06 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to bottom boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToBottom();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to top boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToTop();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToLeft();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToRight();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to top and left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToTopLeft();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to top and right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToTopRight();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to bottom and left boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToBottomLeft();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to bottom and right boundary of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToBottomRight();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to vertical percent position of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToPercentVertical(float percent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to horizontal percent position of scrollview.
|
|
|
|
*/
|
|
|
|
void jumpToPercentHorizontal(float percent);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move inner container to both direction percent position of scrollview.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void jumpToPercentBothDirection(const Point& percent);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes inner container size of scrollview.
|
|
|
|
*
|
|
|
|
* Inner container size must be larger than or equal scrollview's size.
|
|
|
|
*
|
|
|
|
* @param inner container size.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void setInnerContainerSize(const Size &size);
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets inner container size of scrollview.
|
|
|
|
*
|
|
|
|
* Inner container size must be larger than or equal scrollview's size.
|
|
|
|
*
|
|
|
|
* @return inner container size.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
const Size& getInnerContainerSize() const;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
/**
|
2013-09-17 20:34:26 +08:00
|
|
|
* Add call back function called scrollview event triggered
|
2013-09-13 22:20:20 +08:00
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
void addEventListenerScrollView(Object* target, SEL_ScrollViewEvent selector);
|
2013-09-23 19:16:20 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual void addChild(Node * child) override;
|
|
|
|
/**
|
|
|
|
* Adds a child to the container with a z-order
|
|
|
|
*
|
|
|
|
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
|
|
|
|
*
|
|
|
|
* @param child A child node
|
2014-01-19 03:35:27 +08:00
|
|
|
* @param zOrder Z order for drawing priority. Please refer to setLocalZOrder(int)
|
2013-12-23 15:02:52 +08:00
|
|
|
*/
|
|
|
|
virtual void addChild(Node * child, int zOrder) override;
|
|
|
|
/**
|
|
|
|
* Adds a child to the container with z order and tag
|
|
|
|
*
|
|
|
|
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
|
|
|
|
*
|
|
|
|
* @param child A child node
|
2014-01-19 03:35:27 +08:00
|
|
|
* @param zOrder Z order for drawing priority. Please refer to setLocalZOrder(int)
|
2013-12-23 15:02:52 +08:00
|
|
|
* @param tag A interger to identify the node easily. Please refer to setTag(int)
|
|
|
|
*/
|
|
|
|
virtual void addChild(Node* child, int zOrder, int tag) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "removeAllChildrenAndCleanUp" method of widget.
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void removeAllChildren() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-27 16:01:03 +08:00
|
|
|
virtual void removeAllChildrenWithCleanup(bool cleanup) override;
|
|
|
|
|
2013-09-13 22:20:20 +08:00
|
|
|
//override "removeChild" method of widget.
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual void removeChild(Node* child, bool cleaup = true) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
|
|
|
//override "getChildren" method of widget.
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual Vector<Node*>& getChildren() override;
|
|
|
|
virtual const Vector<Node*>& getChildren() const override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-12-27 16:01:03 +08:00
|
|
|
virtual ssize_t getChildrenCount() const override;
|
|
|
|
|
|
|
|
virtual Node * getChildByTag(int tag) override;
|
|
|
|
|
|
|
|
virtual Widget* getChildByName(const char* name) override;
|
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual bool onTouchBegan(Touch *touch, Event *unusedEvent) override;
|
|
|
|
virtual void onTouchMoved(Touch *touch, Event *unusedEvent) override;
|
|
|
|
virtual void onTouchEnded(Touch *touch, Event *unusedEvent) override;
|
|
|
|
virtual void onTouchCancelled(Touch *touch, Event *unusedEvent) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void update(float dt) override;
|
2013-09-17 17:59:20 +08:00
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
void setBounceEnabled(bool enabled);
|
|
|
|
|
|
|
|
bool isBounceEnabled() const;
|
|
|
|
|
|
|
|
void setInertiaScrollEnabled(bool enabled);
|
|
|
|
|
|
|
|
bool isInertiaScrollEnabled() const;
|
|
|
|
|
2013-09-23 19:16:20 +08:00
|
|
|
/**
|
|
|
|
* Sets LayoutType.
|
|
|
|
*
|
|
|
|
* @see LayoutType
|
|
|
|
*
|
|
|
|
* @param LayoutType
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual void setLayoutType(LayoutType type) override;
|
2013-09-23 19:16:20 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets LayoutType.
|
|
|
|
*
|
|
|
|
* @see LayoutType
|
|
|
|
*
|
|
|
|
* @return LayoutType
|
|
|
|
*/
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual LayoutType getLayoutType() const override;
|
2013-09-23 19:16:20 +08:00
|
|
|
|
2013-09-17 17:59:20 +08:00
|
|
|
/**
|
|
|
|
* Returns the "class name" of widget.
|
|
|
|
*/
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual std::string getDescription() const override;
|
2014-01-09 09:58:27 +08:00
|
|
|
|
|
|
|
virtual void onEnter() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-11-14 13:42:10 +08:00
|
|
|
virtual bool init() override;
|
|
|
|
virtual void initRenderer() override;
|
2013-11-06 16:04:06 +08:00
|
|
|
void moveChildren(float offsetX, float offsetY);
|
2013-09-13 22:20:20 +08:00
|
|
|
void autoScrollChildren(float dt);
|
2013-11-06 16:04:06 +08:00
|
|
|
void bounceChildren(float dt);
|
|
|
|
void checkBounceBoundary();
|
|
|
|
bool checkNeedBounce();
|
2013-12-23 15:02:52 +08:00
|
|
|
void startAutoScrollChildrenWithOriginalSpeed(const Point& dir, float v, bool attenuated, float acceleration);
|
|
|
|
void startAutoScrollChildrenWithDestination(const Point& des, float time, bool attenuated);
|
|
|
|
void jumpToDestination(const Point& des);
|
2013-09-13 22:20:20 +08:00
|
|
|
void stopAutoScrollChildren();
|
2013-11-06 16:04:06 +08:00
|
|
|
void startBounceChildren(float v);
|
|
|
|
void stopBounceChildren();
|
|
|
|
bool checkCustomScrollDestination(float* touchOffsetX, float* touchOffsetY);
|
|
|
|
virtual bool scrollChildren(float touchOffsetX, float touchOffsetY);
|
|
|
|
bool bounceScrollChildren(float touchOffsetX, float touchOffsetY);
|
2013-09-13 22:20:20 +08:00
|
|
|
void startRecordSlidAction();
|
|
|
|
virtual void endRecordSlidAction();
|
2013-12-23 15:02:52 +08:00
|
|
|
virtual void handlePressLogic(const Point &touchPoint) override;
|
|
|
|
virtual void handleMoveLogic(const Point &touchPoint) override;
|
|
|
|
virtual void handleReleaseLogic(const Point &touchPoint) override;
|
|
|
|
virtual void interceptTouchEvent(int handleState,Widget* sender,const Point &touchPoint) override;
|
|
|
|
virtual void checkChildInfo(int handleState,Widget* sender,const Point &touchPoint) override;
|
2013-09-13 22:20:20 +08:00
|
|
|
void recordSlidTime(float dt);
|
|
|
|
void scrollToTopEvent();
|
|
|
|
void scrollToBottomEvent();
|
|
|
|
void scrollToLeftEvent();
|
|
|
|
void scrollToRightEvent();
|
2013-11-06 16:04:06 +08:00
|
|
|
void scrollingEvent();
|
|
|
|
void bounceTopEvent();
|
|
|
|
void bounceBottomEvent();
|
|
|
|
void bounceLeftEvent();
|
|
|
|
void bounceRightEvent();
|
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;
|
|
|
|
virtual void setClippingEnabled(bool able) override{Layout::setClippingEnabled(able);};
|
|
|
|
virtual void doLayout() override;
|
2013-09-13 22:20:20 +08:00
|
|
|
protected:
|
2013-12-23 15:02:52 +08:00
|
|
|
Layout* _innerContainer;
|
2013-09-17 20:34:26 +08:00
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
SCROLLVIEW_DIR _direction;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
Point _touchBeganPoint;
|
|
|
|
Point _touchMovedPoint;
|
|
|
|
Point _touchEndedPoint;
|
|
|
|
Point _touchMovingPoint;
|
|
|
|
Point _autoScrollDir;
|
2013-11-06 16:04:06 +08:00
|
|
|
|
|
|
|
float _topBoundary;
|
|
|
|
float _bottomBoundary;
|
2013-09-16 20:54:13 +08:00
|
|
|
float _leftBoundary;
|
|
|
|
float _rightBoundary;
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
float _bounceTopBoundary;
|
|
|
|
float _bounceBottomBoundary;
|
|
|
|
float _bounceLeftBoundary;
|
|
|
|
float _bounceRightBoundary;
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
bool _autoScroll;
|
2013-11-06 16:04:06 +08:00
|
|
|
float _autoScrollAddUpTime;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
float _autoScrollOriginalSpeed;
|
|
|
|
float _autoScrollAcceleration;
|
2013-11-06 16:04:06 +08:00
|
|
|
bool _isAutoScrollSpeedAttenuated;
|
|
|
|
bool _needCheckAutoScrollDestination;
|
2013-12-23 15:02:52 +08:00
|
|
|
Point _autoScrollDestination;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
bool _bePressed;
|
|
|
|
float _slidTime;
|
2013-12-23 15:02:52 +08:00
|
|
|
Point _moveChildPoint;
|
2013-09-16 20:54:13 +08:00
|
|
|
float _childFocusCancelOffset;
|
|
|
|
|
2013-11-06 16:04:06 +08:00
|
|
|
bool _leftBounceNeeded;
|
|
|
|
bool _topBounceNeeded;
|
|
|
|
bool _rightBounceNeeded;
|
|
|
|
bool _bottomBounceNeeded;
|
|
|
|
|
|
|
|
bool _bounceEnabled;
|
|
|
|
bool _bouncing;
|
2013-12-23 15:02:52 +08:00
|
|
|
Point _bounceDir;
|
2013-11-06 16:04:06 +08:00
|
|
|
float _bounceOriginalSpeed;
|
|
|
|
bool _inertiaScrollEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-23 15:02:52 +08:00
|
|
|
Object* _scrollViewEventListener;
|
2013-11-08 18:43:06 +08:00
|
|
|
SEL_ScrollViewEvent _scrollViewEventSelector;
|
2013-09-13 22:20:20 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-12-23 15:02:52 +08:00
|
|
|
NS_CC_END
|
|
|
|
#endif /* defined(__CocoGUI__ScrollView__) */
|