#include <UIScrollView.h>
Public Member Functions | |
UIScrollView () | |
virtual | ~UIScrollView () |
Default destructor. More... | |
virtual void | setDirection (SCROLLVIEW_DIR dir) |
Changes scroll direction of scrollview. More... | |
var | setDirection ( var dir) |
Changes scroll direction of scrollview. More... | |
SCROLLVIEW_DIR | getDirection () |
Gets scroll direction of scrollview. More... | |
UILayout * | getInnerContainer () |
Gets inner container of scrollview. More... | |
void | scrollToBottom (float time, bool attenuated) |
Scroll inner container to bottom boundary of scrollview. More... | |
void | scrollToTop (float time, bool attenuated) |
Scroll inner container to top boundary of scrollview. More... | |
var | scrollToTop ( var time, var attenuated) |
Scroll inner container to top boundary of scrollview. More... | |
void | scrollToLeft (float time, bool attenuated) |
Scroll inner container to left boundary of scrollview. More... | |
var | scrollToLeft ( var time, var attenuated) |
Scroll inner container to left boundary of scrollview. More... | |
void | scrollToRight (float time, bool attenuated) |
Scroll inner container to right boundary of scrollview. More... | |
var | scrollToRight ( var time, var attenuated) |
Scroll inner container to right boundary of scrollview. More... | |
void | scrollToTopLeft (float time, bool attenuated) |
Scroll inner container to top and left boundary of scrollview. More... | |
var | scrollToTopLeft ( var time, var attenuated) |
Scroll inner container to top and left boundary of scrollview. More... | |
void | scrollToTopRight (float time, bool attenuated) |
Scroll inner container to top and right boundary of scrollview. More... | |
void | scrollToBottomLeft (float time, bool attenuated) |
Scroll inner container to bottom and left boundary of scrollview. More... | |
void | scrollToBottomRight (float time, bool attenuated) |
Scroll inner container to bottom and right boundary of scrollview. More... | |
void | scrollToPercentVertical (float percent, float time, bool attenuated) |
Scroll inner container to vertical percent position of scrollview. More... | |
void | scrollToPercentHorizontal (float percent, float time, bool attenuated) |
Scroll inner container to horizontal percent position of scrollview. More... | |
void | scrollToPercentBothDirection (const CCPoint &percent, float time, bool attenuated) |
Scroll inner container to both direction percent position of scrollview. More... | |
void | jumpToBottom () |
Move inner container to bottom boundary of scrollview. More... | |
void | jumpToTop () |
Move inner container to top boundary of scrollview. More... | |
var | jumpToTop () |
Move inner container to top boundary of scrollview. More... | |
void | jumpToLeft () |
Move inner container to left boundary of scrollview. More... | |
var | jumpToLeft () |
Move inner container to left boundary of scrollview. More... | |
void | jumpToRight () |
Move inner container to right boundary of scrollview. More... | |
var | jumpToRight () |
Move inner container to right boundary of scrollview. More... | |
void | jumpToTopLeft () |
Move inner container to top and left boundary of scrollview. More... | |
var | jumpToTopLeft () |
Move inner container to top and left boundary of scrollview. More... | |
void | jumpToTopRight () |
Move inner container to top and right boundary of scrollview. More... | |
var | jumpToTopRight () |
Move inner container to top and right boundary of scrollview. More... | |
void | jumpToBottomLeft () |
Move inner container to bottom and left boundary of scrollview. More... | |
var | jumpToBottomLeft () |
Move inner container to bottom and left boundary of scrollview. More... | |
void | jumpToBottomRight () |
Move inner container to bottom and right boundary of scrollview. More... | |
void | jumpToPercentVertical (float percent) |
Move inner container to vertical percent position of scrollview. More... | |
void | jumpToPercentHorizontal (float percent) |
Move inner container to horizontal percent position of scrollview. More... | |
void | jumpToPercentBothDirection (const CCPoint &percent) |
Move inner container to both direction percent position of scrollview. More... | |
void | setInnerContainerSize (const CCSize &size) |
Changes inner container size of scrollview. More... | |
const CCSize & | getInnerContainerSize () const |
Gets inner container size of scrollview. More... | |
void | addEventListenerScrollView (CCObject *target, SEL_ScrollViewEvent selector) |
Add call back function called scrollview event triggered. More... | |
void | addScrollToTopEvent (CCObject *target, SEL_ScrollToTopEvent selector) |
Add call back function called when scrollview scrolled to top. More... | |
var | addScrollToTopEvent ( var target, var selector) |
Add call back function called when scrollview scrolled to top. More... | |
void | addScrollToBottomEvent (CCObject *target, SEL_ScrollToBottomEvent selector) |
Add call back function called when scrollview scrolled to bottom. More... | |
void | addScrollToLeftEvent (CCObject *target, SEL_ScrollToLeftEvent selector) |
Add call back function called when scrollview scrolled to left. More... | |
var | addScrollToLeftEvent ( var target, var selector) |
Add call back function called when scrollview scrolled to left. More... | |
void | addScrollToRightEvent (CCObject *target, SEL_ScrollToRightEvent selector) |
Add call back function called when scrollview scrolled to right. More... | |
var | addScrollToRightEvent ( var target, var selector) |
Add call back function called when scrollview scrolled to right. More... | |
virtual bool | addChild (UIWidget *widget) |
Adds a child to the container. More... | |
virtual void | removeAllChildren () |
Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter. More... | |
virtual bool | removeChild (UIWidget *child) |
Removes a child from the container with a cleanup. More... | |
var | removeChild ( var child) |
Removes a child from the container with a cleanup. More... | |
virtual CCArray * | getChildren () |
Return an array of children. More... | |
virtual bool | onTouchBegan (const CCPoint &touchPoint) |
A call back function called when widget is selected, and on touch began. More... | |
var | onTouchBegan ( var touchPoint) |
A call back function called when widget is selected, and on touch began. More... | |
virtual void | onTouchMoved (const CCPoint &touchPoint) |
A call back function called when widget is selected, and on touch moved. More... | |
virtual void | onTouchEnded (const CCPoint &touchPoint) |
A call back function called when widget is selected, and on touch ended. More... | |
var | onTouchEnded ( var touchPoint) |
A call back function called when widget is selected, and on touch ended. More... | |
virtual void | onTouchCancelled (const CCPoint &touchPoint) |
A call back function called when widget is selected, and on touch canceled. More... | |
virtual void | onTouchLongClicked (const CCPoint &touchPoint) |
A call back function called when widget is selected, and on touch long clicked. More... | |
virtual void | update (float dt) |
var | update ( var dt) |
void | setBounceEnabled (bool enabled) |
var | setBounceEnabled ( var enabled) |
bool | isBounceEnabled () const |
var | isBounceEnabled () |
void | setInertiaScrollEnabled (bool enabled) |
var | setInertiaScrollEnabled ( var enabled) |
bool | isInertiaScrollEnabled () const |
virtual void | setLayoutType (LayoutType type) |
Sets LayoutType. More... | |
virtual LayoutType | getLayoutType () const |
Gets LayoutType. More... | |
virtual void | doLayout () |
virtual const char * | getDescription () const |
Returns the "class name" of widget. More... | |
var | getDescription () |
Returns the "class name" of widget. More... | |
Public Member Functions inherited from UILayout | |
UILayout () | |
virtual | ~UILayout () |
Default destructor. More... | |
virtual bool | hitTest (const CCPoint &pt) |
Checks a point if is in widget's space. More... | |
void | setBackGroundImage (const char *fileName, TextureResType texType=UI_TEX_TYPE_LOCAL) |
Sets a background image for layout. More... | |
var | setBackGroundImage ( var fileName, var UI_TEX_TYPE_LOCAL) |
Sets a background image for layout. More... | |
void | setBackGroundImageCapInsets (const CCRect &capInsets) |
Sets a background image capinsets for layout, if the background image is a scale9 render. More... | |
void | setBackGroundColorType (LayoutBackGroundColorType type) |
Sets Color Type for layout. More... | |
void | setBackGroundImageScale9Enabled (bool enabled) |
Sets background iamge use scale9 renderer. More... | |
void | setBackGroundColor (const ccColor3B &color) |
Sets background color for layout, if color type is LAYOUT_COLOR_SOLID. More... | |
void | setBackGroundColor (const ccColor3B &startColor, const ccColor3B &endColor) |
Sets background color for layout, if color type is LAYOUT_COLOR_GRADIENT. More... | |
void | setBackGroundColorOpacity (int opacity) |
Sets background opacity layout. More... | |
void | setBackGroundColorVector (const CCPoint &vector) |
Sets background color vector for layout, if color type is LAYOUT_COLOR_GRADIENT. More... | |
virtual void | setColor (const ccColor3B &color) |
Sets color to widget. More... | |
virtual void | setOpacity (int opacity) |
Sets opacity to widget. More... | |
void | removeBackGroundImage () |
Remove the background image of layout. More... | |
var | removeBackGroundImage () |
Remove the background image of layout. More... | |
const CCSize & | getBackGroundImageTextureSize () const |
Gets background image texture size. More... | |
var | getBackGroundImageTextureSize () |
Gets background image texture size. More... | |
virtual bool | isClippingEnabled () |
Gets if layout is clipping enabled. More... | |
virtual const CCSize & | getContentSize () const |
Gets the content size of widget. More... | |
void | setBackGroundImageScale9Enable (bool is) |
These methods will be removed. More... | |
Public Member Functions inherited from UIWidget | |
UIWidget (void) | |
virtual | ~UIWidget () |
Default destructor. More... | |
virtual void | setEnabled (bool enabled) |
Sets whether the widget is enabled. More... | |
bool | isEnabled () const |
Determines if the widget is enabled. More... | |
void | setVisible (bool visible) |
Sets whether the widget is visible. More... | |
bool | isVisible () const |
Determines if the widget is visible. More... | |
void | setBright (bool bright) |
Sets whether the widget is bright. More... | |
bool | isBright () const |
Determines if the widget is bright. More... | |
virtual void | setTouchEnabled (bool enabled) |
Sets whether the widget is touch enabled. More... | |
void | setBrightStyle (BrightStyle style) |
To set the bright style of widget. More... | |
bool | isTouchEnabled () const |
Determines if the widget is touch enabled. More... | |
bool | isFocused () const |
Determines if the widget is on focused. More... | |
void | setFocused (bool fucosed) |
Sets whether the widget is on focused. More... | |
void | setZOrder (int z) |
Sets the Z order which stands for the drawing order, and reorder this widget in its parent's children array. More... | |
int | getZOrder () |
Gets the Z order of this widget. More... | |
float | getLeftInParent () |
Gets the left boundary position of this widget. More... | |
float | getBottomInParent () |
Gets the bottom boundary position of this widget. More... | |
var | getBottomInParent () |
Gets the bottom boundary position of this widget. More... | |
float | getRightInParent () |
Gets the right boundary position of this widget. More... | |
float | getTopInParent () |
Gets the top boundary position of this widget. More... | |
virtual void | removeFromParent () |
Removes this widget itself from its parent widget. More... | |
virtual void | reorderChild (UIWidget *child) |
Reorders a child according to a new z value. More... | |
UIWidget * | getChildByName (const char *name) |
Gets a child from the container with its name. More... | |
UIWidget * | getChildByTag (int tag) |
Gets a child from the container with its tag. More... | |
CCNode * | getRenderer () |
Gets the renderer of widget. More... | |
void | addRenderer (CCNode *renderer, int zOrder) |
Add a CCNode for rendering. More... | |
void | removeRenderer (CCNode *renderer, bool cleanup) |
Remove a CCNode from widget. More... | |
void | setParent (UIWidget *parent) |
Sets the parent widget. More... | |
UIWidget * | getParent () |
Returns a pointer to the parent widget. More... | |
void | addTouchEventListener (CCObject *target, SEL_TouchEvent selector) |
Sets the touch event target/selector of the menu item. More... | |
var | addTouchEventListener ( var target, var selector) |
Sets the touch event target/selector of the menu item. More... | |
void | setPosition (const CCPoint &pos) |
Changes the position (x,y) of the widget in OpenGL coordinates. More... | |
void | setPositionPercent (const CCPoint &percent) |
Changes the position (x,y) of the widget in OpenGL coordinates. More... | |
var | setPositionPercent ( var percent) |
Changes the position (x,y) of the widget in OpenGL coordinates. More... | |
const CCPoint & | getPosition () |
Gets the position (x,y) of the widget in OpenGL coordinates. More... | |
const CCPoint & | getPositionPercent () |
Gets the percent (x,y) of the widget in OpenGL coordinates. More... | |
void | setPositionType (PositionType type) |
Changes the position type of the widget. More... | |
PositionType | getPositionType () const |
Gets the position type of the widget. More... | |
virtual void | setAnchorPoint (const CCPoint &pt) |
Sets the anchor point in percent. More... | |
const CCPoint & | getAnchorPoint () |
Returns the anchor point in percent. More... | |
virtual void | setScale (float fScale) |
Changes both X and Y scale factor of the widget. More... | |
float | getScale () |
Gets the scale factor of the widget, when X and Y have the same scale factor. More... | |
virtual void | setScaleX (float fScaleX) |
Changes the scale factor on X axis of this widget. More... | |
float | getScaleX () |
Returns the scale factor on X axis of this widget. More... | |
virtual void | setScaleY (float fScaleY) |
Changes the scale factor on Y axis of this widget. More... | |
float | getScaleY () |
Returns the scale factor on Y axis of this widget. More... | |
void | setRotation (float rotation) |
Sets the rotation (angle) of the widget in degrees. More... | |
float | getRotation () |
Returns the rotation of the widget in degrees. More... | |
void | setRotationX (float rotationX) |
Sets the X rotation (angle) of the widget in degrees which performs a horizontal rotational skew. More... | |
float | getRotationX () |
Gets the X rotation (angle) of the widget in degrees which performs a horizontal rotation skew. More... | |
void | setRotationY (float rotationY) |
Sets the Y rotation (angle) of the widget in degrees which performs a vertical rotational skew. More... | |
float | getRotationY () |
Gets the Y rotation (angle) of the widget in degrees which performs a vertical rotational skew. More... | |
virtual void | setFlipX (bool flipX) |
Sets whether the widget should be flipped horizontally or not. More... | |
virtual bool | isFlipX () |
Returns the flag which indicates whether the widget is flipped horizontally or not. More... | |
virtual void | setFlipY (bool flipY) |
Sets whether the widget should be flipped vertically or not. More... | |
virtual bool | isFlipY () |
Return the flag which indicates whether the widget is flipped vertically or not. More... | |
virtual const ccColor3B & | getColor () |
Gets color of widget. More... | |
virtual int | getOpacity () |
Gets opacity of widget. More... | |
virtual bool | isCascadeOpacityEnabled () |
virtual void | setCascadeOpacityEnabled (bool cascadeOpacityEnabled) |
virtual bool | isCascadeColorEnabled () |
virtual void | setCascadeColorEnabled (bool cascadeColorEnabled) |
void | setBlendFunc (ccBlendFunc blendFunc) |
virtual void | setActionManager (CCActionManager *actionManager) |
virtual CCActionManager * | getActionManager () |
CCAction * | runAction (CCAction *action) |
void | stopAllActions (void) |
void | stopAction (CCAction *action) |
void | stopActionByTag (int tag) |
CCAction * | getActionByTag (int tag) |
void | didNotSelectSelf () |
A call back function when widget lost of focus. More... | |
var | didNotSelectSelf () |
A call back function when widget lost of focus. More... | |
bool | clippingParentAreaContainPoint (const CCPoint &pt) |
const CCPoint & | getTouchStartPos () |
const CCPoint & | getTouchMovePos () |
const CCPoint & | getTouchEndPos () |
void | setTag (int tag) |
Changes the tag that is used to identify the widget easily. More... | |
int | getTag () const |
Returns a tag that is used to identify the widget easily. More... | |
void | setName (const char *name) |
Changes the name that is used to identify the widget easily. More... | |
const char * | getName () const |
Returns a name that is used to identify the widget easily. More... | |
var | getName () |
Returns a name that is used to identify the widget easily. More... | |
WidgetType | getWidgetType () const |
Returns a type that is widget's type. More... | |
virtual void | setSize (const CCSize &size) |
Changes the size that is widget's size. More... | |
virtual void | setSizePercent (const CCPoint &percent) |
Changes the percent that is widget's percent size. More... | |
void | setSizeType (SizeType type) |
Changes the size type of widget. More... | |
SizeType | getSizeType () const |
Gets the size type of widget. More... | |
const CCSize & | getSize () const |
Returns size of widget. More... | |
const CCPoint & | getSizePercent () const |
Returns size percent of widget. More... | |
void | setLayoutParameter (UILayoutParameter *parameter) |
Sets a LayoutParameter to widget. More... | |
UILayoutParameter * | getLayoutParameter (LayoutParameterType type) |
Gets LayoutParameter of widget. More... | |
virtual void | ignoreContentAdaptWithSize (bool ignore) |
Ignore the widget size. More... | |
bool | isIgnoreContentAdaptWithSize () const |
Gets the widget if is ignore it's size. More... | |
CCPoint | getWorldPosition () |
Gets world position of widget. More... | |
CCPoint | convertToWorldSpace (const CCPoint &pt) |
Converts a Point to world space coordinates. More... | |
virtual CCNode * | getVirtualRenderer () |
Gets the Virtual Renderer of widget. More... | |
void | setUpdateEnabled (bool enable) |
Schedules the "update" method. More... | |
bool | isUpdateEnabled () |
is the "update" method scheduled. More... | |
UIWidget * | clone () |
virtual void | onEnter () |
virtual void | onExit () |
virtual CCObject * | getUserObject () |
Returns a user assigned CCObject. More... | |
virtual void | setUserObject (CCObject *pUserObject) |
Returns a user assigned CCObject. More... | |
void | setTouchEnable (bool enabled, bool containChildren=false) |
These methods will be removed. More... | |
void | disable (bool containChildren=false) |
void | active (bool containChildren=false) |
bool | isActive () |
var | isActive () |
void | setBright (bool bright, bool containChild) |
CCRect | getRect () |
CCNode * | getValidNode () |
void | setWidgetZOrder (int z) |
int | getWidgetZOrder () |
float | getRelativeLeftPos () |
var | getRelativeLeftPos () |
float | getRelativeBottomPos () |
float | getRelativeRightPos () |
float | getRelativeTopPos () |
CCNode * | getContainerNode () |
void | setWidgetParent (UIWidget *parent) |
UIWidget * | getWidgetParent () |
void | setWidgetTag (int tag) |
int | getWidgetTag () |
void | addCCNode (CCNode *node) |
void | addPushDownEvent (CCObject *target, SEL_PushEvent selector) |
var | addPushDownEvent ( var target, var selector) |
void | addMoveEvent (CCObject *target, SEL_MoveEvent selector) |
void | addReleaseEvent (CCObject *target, SEL_ReleaseEvent selector) |
void | addCancelEvent (CCObject *target, SEL_CancelEvent selector) |
bool | removeChild (UIWidget *child, bool cleanup) |
void | removeFromParentAndCleanup (bool cleanup) |
void | removeAllChildrenAndCleanUp (bool cleanup) |
void | setActionTag (int tag) |
int | getActionTag () |
void | updateSizeAndPosition () |
var | updateSizeAndPosition () |
Public Member Functions inherited from CCObject | |
CCObject (void) | |
virtual | ~CCObject (void) |
void | release (void) |
void | retain (void) |
CCObject * | autorelease (void) |
CCObject * | copy (void) |
bool | isSingleReference (void) const |
unsigned int | retainCount (void) const |
virtual bool | isEqual (const CCObject *pObject) |
virtual void | acceptVisitor (CCDataVisitor &visitor) |
Public Member Functions inherited from CCCopying | |
virtual CCObject * | copyWithZone (CCZone *pZone) |
Static Public Member Functions | |
static UIScrollView * | create () |
Allocates and initializes. More... | |
Static Public Member Functions inherited from UILayout | |
static UILayout * | create () |
Allocates and initializes a layout. More... | |
Static Public Member Functions inherited from UIWidget | |
static UIWidget * | create () |
Allocates and initializes a widget. More... | |
Protected Member Functions | |
virtual bool | init () |
virtual void | initRenderer () |
var | initRenderer () |
void | moveChildren (float offsetX, float offsetY) |
var | moveChildren ( var offsetX, var offsetY) |
void | autoScrollChildren (float dt) |
void | bounceChildren (float dt) |
var | bounceChildren ( var dt) |
void | checkBounceBoundary () |
bool | checkNeedBounce () |
var | checkNeedBounce () |
void | startAutoScrollChildrenWithOriginalSpeed (const CCPoint &dir, float v, bool attenuated, float acceleration) |
var | startAutoScrollChildrenWithOriginalSpeed ( var dir, var v, var attenuated, var acceleration) |
void | startAutoScrollChildrenWithDestination (const CCPoint &des, float time, bool attenuated) |
var | startAutoScrollChildrenWithDestination ( var des, var time, var attenuated) |
void | jumpToDestination (const CCPoint &des) |
void | stopAutoScrollChildren () |
void | startBounceChildren (float v) |
var | startBounceChildren ( var v) |
void | stopBounceChildren () |
bool | checkCustomScrollDestination (float *touchOffsetX, float *touchOffsetY) |
virtual bool | scrollChildren (float touchOffsetX, float touchOffsetY) |
bool | bounceScrollChildren (float touchOffsetX, float touchOffsetY) |
var | bounceScrollChildren ( var touchOffsetX, var touchOffsetY) |
void | startRecordSlidAction () |
virtual void | endRecordSlidAction () |
var | endRecordSlidAction () |
virtual void | handlePressLogic (const CCPoint &touchPoint) |
var | handlePressLogic ( var touchPoint) |
virtual void | handleMoveLogic (const CCPoint &touchPoint) |
virtual void | handleReleaseLogic (const CCPoint &touchPoint) |
virtual void | interceptTouchEvent (int handleState, UIWidget *sender, const CCPoint &touchPoint) |
var | interceptTouchEvent ( var handleState, var sender, var touchPoint) |
virtual void | checkChildInfo (int handleState, UIWidget *sender, const CCPoint &touchPoint) |
void | recordSlidTime (float dt) |
void | scrollToTopEvent () |
void | scrollToBottomEvent () |
var | scrollToBottomEvent () |
void | scrollToLeftEvent () |
var | scrollToLeftEvent () |
void | scrollToRightEvent () |
var | scrollToRightEvent () |
void | scrollingEvent () |
var | scrollingEvent () |
void | bounceTopEvent () |
var | bounceTopEvent () |
void | bounceBottomEvent () |
var | bounceBottomEvent () |
void | bounceLeftEvent () |
void | bounceRightEvent () |
var | bounceRightEvent () |
virtual void | onSizeChanged () |
virtual UIWidget * | createCloneInstance () |
virtual void | copySpecialProperties (UIWidget *model) |
virtual void | copyClonedWidgetChildren (UIWidget *model) |
virtual void | setClippingEnable (bool is) |
These methods will be removed. More... | |
var | setClippingEnable ( var is) |
These methods will be removed. More... | |
virtual void | setClippingEnabled (bool able) |
Changes if layout can clip it's content and child. More... | |
Protected Member Functions inherited from UILayout | |
void | addBackGroundImage () |
void | supplyTheLayoutParameterLackToChild (UIWidget *child) |
var | supplyTheLayoutParameterLackToChild ( var child) |
Protected Member Functions inherited from UIWidget | |
virtual void | onPressStateChangedToNormal () |
virtual void | onPressStateChangedToPressed () |
virtual void | onPressStateChangedToDisabled () |
void | pushDownEvent () |
void | moveEvent () |
void | releaseUpEvent () |
void | cancelUpEvent () |
void | longClickEvent () |
void | updateAnchorPoint () |
var | updateAnchorPoint () |
void | copyProperties (UIWidget *model) |
Additional Inherited Members | |
Public Attributes inherited from CCObject | |
unsigned int | m_uID |
int | m_nLuaID |
UIScrollView | ( | ) |
var ctor | ( | ) |
|
virtual |
Default destructor.
|
virtual |
Default destructor.
|
virtual |
Adds a child to the container.
child | A child widget |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
virtual |
Adds a child to the container.
child | A child widget |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
void addEventListenerScrollView | ( | CCObject * | target, |
SEL_ScrollViewEvent | selector | ||
) |
Add call back function called scrollview event triggered.
var addEventListenerScrollView | ( | var | target, |
var | selector | ||
) |
Add call back function called scrollview event triggered.
void addScrollToBottomEvent | ( | CCObject * | target, |
SEL_ScrollToBottomEvent | selector | ||
) |
Add call back function called when scrollview scrolled to bottom.
var addScrollToBottomEvent | ( | var | target, |
var | selector | ||
) |
Add call back function called when scrollview scrolled to bottom.
void addScrollToLeftEvent | ( | CCObject * | target, |
SEL_ScrollToLeftEvent | selector | ||
) |
Add call back function called when scrollview scrolled to left.
var addScrollToLeftEvent | ( | var | target, |
var | selector | ||
) |
Add call back function called when scrollview scrolled to left.
void addScrollToRightEvent | ( | CCObject * | target, |
SEL_ScrollToRightEvent | selector | ||
) |
Add call back function called when scrollview scrolled to right.
var addScrollToRightEvent | ( | var | target, |
var | selector | ||
) |
Add call back function called when scrollview scrolled to right.
void addScrollToTopEvent | ( | CCObject * | target, |
SEL_ScrollToTopEvent | selector | ||
) |
Add call back function called when scrollview scrolled to top.
var addScrollToTopEvent | ( | var | target, |
var | selector | ||
) |
Add call back function called when scrollview scrolled to top.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protectedvirtual |
Reimplemented from UIWidget.
|
protectedvirtual |
Reimplemented from UIWidget.
|
protected |
|
protected |
|
protected |
|
protected |
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
static |
Allocates and initializes.
|
static |
Allocates and initializes.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
virtual |
Reimplemented from UILayout.
|
virtual |
Reimplemented from UILayout.
|
protectedvirtual |
|
protectedvirtual |
|
virtual |
Return an array of children.
Composing a "tree" structure is a very important feature of UIWidget
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
virtual |
Return an array of children.
Composing a "tree" structure is a very important feature of UIWidget
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
virtual |
|
virtual |
SCROLLVIEW_DIR getDirection | ( | ) |
Gets scroll direction of scrollview.
var getDirection | ( | ) |
Gets scroll direction of scrollview.
UILayout* getInnerContainer | ( | ) |
Gets inner container of scrollview.
Inner container is the container of scrollview's children.
var getInnerContainer | ( | ) |
Gets inner container of scrollview.
Inner container is the container of scrollview's children.
const CCSize& getInnerContainerSize | ( | ) | const |
Gets inner container size of scrollview.
Inner container size must be larger than or equal scrollview's size.
var getInnerContainerSize | ( | ) |
Gets inner container size of scrollview.
Inner container size must be larger than or equal scrollview's size.
|
virtual |
|
virtual |
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Implements UIScrollInterface.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx, and UIDragPanel.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx, and UIDragPanel.
|
protectedvirtual |
Reimplemented from UILayout.
|
protectedvirtual |
Reimplemented from UILayout.
|
protectedvirtual |
Implements UIScrollInterface.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Implements UIScrollInterface.
Reimplemented in UIListViewEx.
bool isBounceEnabled | ( | ) | const |
var isBounceEnabled | ( | ) |
bool isInertiaScrollEnabled | ( | ) | const |
var isInertiaScrollEnabled | ( | ) |
void jumpToBottom | ( | ) |
Move inner container to bottom boundary of scrollview.
var jumpToBottom | ( | ) |
Move inner container to bottom boundary of scrollview.
void jumpToBottomLeft | ( | ) |
Move inner container to bottom and left boundary of scrollview.
var jumpToBottomLeft | ( | ) |
Move inner container to bottom and left boundary of scrollview.
void jumpToBottomRight | ( | ) |
Move inner container to bottom and right boundary of scrollview.
var jumpToBottomRight | ( | ) |
Move inner container to bottom and right boundary of scrollview.
|
protected |
|
protected |
void jumpToLeft | ( | ) |
Move inner container to left boundary of scrollview.
var jumpToLeft | ( | ) |
Move inner container to left boundary of scrollview.
void jumpToPercentBothDirection | ( | const CCPoint & | percent) |
Move inner container to both direction percent position of scrollview.
var jumpToPercentBothDirection | ( | var | percent) |
Move inner container to both direction percent position of scrollview.
void jumpToPercentHorizontal | ( | float | percent) |
Move inner container to horizontal percent position of scrollview.
var jumpToPercentHorizontal | ( | var | percent) |
Move inner container to horizontal percent position of scrollview.
void jumpToPercentVertical | ( | float | percent) |
Move inner container to vertical percent position of scrollview.
var jumpToPercentVertical | ( | var | percent) |
Move inner container to vertical percent position of scrollview.
void jumpToRight | ( | ) |
Move inner container to right boundary of scrollview.
var jumpToRight | ( | ) |
Move inner container to right boundary of scrollview.
void jumpToTop | ( | ) |
Move inner container to top boundary of scrollview.
var jumpToTop | ( | ) |
Move inner container to top boundary of scrollview.
void jumpToTopLeft | ( | ) |
Move inner container to top and left boundary of scrollview.
var jumpToTopLeft | ( | ) |
Move inner container to top and left boundary of scrollview.
void jumpToTopRight | ( | ) |
Move inner container to top and right boundary of scrollview.
var jumpToTopRight | ( | ) |
Move inner container to top and right boundary of scrollview.
|
protected |
|
protected |
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
protectedvirtual |
Reimplemented from UILayout.
Reimplemented in UIListViewEx.
|
virtual |
A call back function called when widget is selected, and on touch began.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch began.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch canceled.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch canceled.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch ended.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch ended.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch long clicked.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch long clicked.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch moved.
touch | point |
Reimplemented from UIWidget.
|
virtual |
A call back function called when widget is selected, and on touch moved.
touch | point |
Reimplemented from UIWidget.
|
protected |
|
protected |
|
virtual |
Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter.
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
virtual |
Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter.
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
virtual |
Removes a child from the container with a cleanup.
child | The child widget which will be removed. |
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
virtual |
Removes a child from the container with a cleanup.
child | The child widget which will be removed. |
Reimplemented from UIWidget.
Reimplemented in UIListViewEx.
|
protectedvirtual |
|
protectedvirtual |
|
protected |
|
protected |
void scrollToBottom | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to bottom boundary of scrollview.
var scrollToBottom | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to bottom boundary of scrollview.
|
protected |
|
protected |
void scrollToBottomLeft | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to bottom and left boundary of scrollview.
var scrollToBottomLeft | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to bottom and left boundary of scrollview.
void scrollToBottomRight | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to bottom and right boundary of scrollview.
var scrollToBottomRight | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to bottom and right boundary of scrollview.
void scrollToLeft | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to left boundary of scrollview.
var scrollToLeft | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to left boundary of scrollview.
|
protected |
|
protected |
void scrollToPercentBothDirection | ( | const CCPoint & | percent, |
float | time, | ||
bool | attenuated | ||
) |
Scroll inner container to both direction percent position of scrollview.
var scrollToPercentBothDirection | ( | var | percent, |
var | time, | ||
var | attenuated | ||
) |
Scroll inner container to both direction percent position of scrollview.
void scrollToPercentHorizontal | ( | float | percent, |
float | time, | ||
bool | attenuated | ||
) |
Scroll inner container to horizontal percent position of scrollview.
var scrollToPercentHorizontal | ( | var | percent, |
var | time, | ||
var | attenuated | ||
) |
Scroll inner container to horizontal percent position of scrollview.
void scrollToPercentVertical | ( | float | percent, |
float | time, | ||
bool | attenuated | ||
) |
Scroll inner container to vertical percent position of scrollview.
var scrollToPercentVertical | ( | var | percent, |
var | time, | ||
var | attenuated | ||
) |
Scroll inner container to vertical percent position of scrollview.
void scrollToRight | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to right boundary of scrollview.
var scrollToRight | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to right boundary of scrollview.
|
protected |
|
protected |
void scrollToTop | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to top boundary of scrollview.
var scrollToTop | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to top boundary of scrollview.
|
protected |
|
protected |
void scrollToTopLeft | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to top and left boundary of scrollview.
var scrollToTopLeft | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to top and left boundary of scrollview.
void scrollToTopRight | ( | float | time, |
bool | attenuated | ||
) |
Scroll inner container to top and right boundary of scrollview.
var scrollToTopRight | ( | var | time, |
var | attenuated | ||
) |
Scroll inner container to top and right boundary of scrollview.
void setBounceEnabled | ( | bool | enabled) |
var setBounceEnabled | ( | var | enabled) |
|
inlineprotectedvirtual |
These methods will be removed.
Reimplemented from UILayout.
|
inlineprotectedvirtual |
These methods will be removed.
Reimplemented from UILayout.
|
inlineprotectedvirtual |
Changes if layout can clip it's content and child.
If you really need this, please enable it. But it would reduce the rendering efficiency.
clipping | enabled. |
Reimplemented from UILayout.
|
inlineprotectedvirtual |
Changes if layout can clip it's content and child.
If you really need this, please enable it. But it would reduce the rendering efficiency.
clipping | enabled. |
Reimplemented from UILayout.
|
virtual |
Changes scroll direction of scrollview.
SCROLLVIEW_DIR |
Reimplemented in UIListViewEx.
|
virtual |
Changes scroll direction of scrollview.
SCROLLVIEW_DIR |
Reimplemented in UIListViewEx.
void setInertiaScrollEnabled | ( | bool | enabled) |
var setInertiaScrollEnabled | ( | var | enabled) |
void setInnerContainerSize | ( | const CCSize & | size) |
Changes inner container size of scrollview.
Inner container size must be larger than or equal scrollview's size.
inner | container size. |
var setInnerContainerSize | ( | var | size) |
Changes inner container size of scrollview.
Inner container size must be larger than or equal scrollview's size.
inner | container size. |
|
virtual |
|
virtual |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
virtual |
Reimplemented from CCObject.
|
virtual |
Reimplemented from CCObject.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |