The mouse event. More...
#include <CCEventMouse.h>
Public Types | |
| enum | MouseEventType { MOUSE_NONE, MOUSE_DOWN, MOUSE_UP, MOUSE_MOVE, MOUSE_SCROLL } |
| MouseEventType Different types of MouseEvent. More... | |
Public Types inherited from Event | |
| enum | Type { TOUCH, KEYBOARD, ACCELERATION, MOUSE, FOCUS, GAME_CONTROLLER, CUSTOM } |
| Type Event type. More... | |
Public Member Functions | |
| EventMouse (MouseEventType mouseEventCode) | |
| Constructor. More... | |
| ctor ( var mouseEventCode) | |
| Constructor. More... | |
| EventMouse ( local mouseEventCode) | |
| Constructor. More... | |
| void | setScrollData (float scrollX, float scrollY) |
| Set mouse scroll data. More... | |
| var | setScrollData ( var scrollX, var scrollY) |
| Set mouse scroll data. More... | |
| local | setScrollData ( local scrollX, local scrollY) |
| Set mouse scroll data. More... | |
| float | getScrollX () |
| Get mouse scroll data of x axis. More... | |
| float | getScrollY () |
| Get mouse scroll data of y axis. More... | |
| var | getScrollY () |
| Get mouse scroll data of y axis. More... | |
| local | getScrollY () |
| Get mouse scroll data of y axis. More... | |
| void | setCursorPosition (float x, float y) |
| Set the cursor position. More... | |
| var | setLocation ( var x, var y) |
| Set the cursor position. More... | |
| local | setCursorPosition ( local x, local y) |
| Set the cursor position. More... | |
| void | setMouseButton (int button) |
| Set mouse button. More... | |
| var | setButton ( var button) |
| Set mouse button. More... | |
| local | setMouseButton ( local button) |
| Set mouse button. More... | |
| int | getMouseButton () |
| Get mouse button. More... | |
| var | getButton () |
| Get mouse button. More... | |
| local | getMouseButton () |
| Get mouse button. More... | |
| float | getCursorX () |
| Get the cursor position of x axis. More... | |
| var | getLocationX () |
| Get the cursor position of x axis. More... | |
| local | getCursorX () |
| Get the cursor position of x axis. More... | |
| float | getCursorY () |
| Get the cursor position of y axis. More... | |
| var | getLocationY () |
| Get the cursor position of y axis. More... | |
| local | getCursorY () |
| Get the cursor position of y axis. More... | |
| Vec2 | getLocation () const |
| Returns the current touch location in OpenGL coordinates. More... | |
| var | getLocation () |
| Returns the current touch location in OpenGL coordinates. More... | |
| local | getLocation () |
| Returns the current touch location in OpenGL coordinates. More... | |
| Vec2 | getPreviousLocation () const |
| Returns the previous touch location in OpenGL coordinates. More... | |
| local | getPreviousLocation () |
| Returns the previous touch location in OpenGL coordinates. More... | |
| Vec2 | getStartLocation () const |
| Returns the start touch location in OpenGL coordinates. More... | |
| Vec2 | getDelta () const |
| Returns the delta of 2 current touches locations in screen coordinates. More... | |
| Vec2 | getLocationInView () const |
| Returns the current touch location in screen coordinates. More... | |
| Vec2 | getPreviousLocationInView () const |
| Returns the previous touch location in screen coordinates. More... | |
| local | getPreviousLocationInView () |
| Returns the previous touch location in screen coordinates. More... | |
| Vec2 | getStartLocationInView () const |
| Returns the start touch location in screen coordinates. More... | |
| local | getStartLocationInView () |
| Returns the start touch location in screen coordinates. More... | |
Public Member Functions inherited from Event | |
| virtual | ~Event () |
| Destructor. More... | |
| var | ~Event () |
| Destructor. More... | |
| local | ~Event () |
| Destructor. More... | |
| Type | getType () const |
| Gets the event type. More... | |
| var | getType () |
| Gets the event type. More... | |
| local | getType () |
| Gets the event type. More... | |
| void | stopPropagation () |
| Stops propagation for current event. More... | |
| var | stopPropagation () |
| Stops propagation for current event. More... | |
| local | stopPropagation () |
| Stops propagation for current event. More... | |
| bool | isStopped () const |
| Checks whether the event has been stopped. More... | |
| Node * | getCurrentTarget () |
| Gets current target of the event. More... | |
| var | getCurrentTarget () |
| Gets current target of the event. More... | |
| local | getCurrentTarget () |
| Gets current target of the event. More... | |
Public Member Functions inherited from Ref | |
| void | retain () |
| Retains the ownership. More... | |
| void | release () |
| Releases the ownership immediately. More... | |
| Ref * | autorelease () |
| Releases the ownership sometime soon automatically. More... | |
| unsigned int | getReferenceCount () const |
| Returns the Ref's current reference count. More... | |
| virtual | ~Ref () |
| Destructor. More... | |
Friends | |
| class | EventListenerMouse |
Additional Inherited Members | |
Public Attributes inherited from Event | |
| CC_CONSTRUCTOR_ACCESS | __pad0__: Event(Type type) |
| var | __pad0__: Event(Type type) |
| local | __pad0__: Event(Type type) |
Protected Member Functions inherited from Event | |
| void | setCurrentTarget (Node *target) |
| Sets current target. More... | |
| var | setCurrentTarget ( var target) |
| Sets current target. More... | |
| local | setCurrentTarget ( local target) |
| Sets current target. More... | |
Protected Member Functions inherited from Ref | |
| Ref () | |
| Constructor. More... | |
| Ref () | |
| Constructor. More... | |
Protected Attributes inherited from Event | |
| Type | _type |
| Event type. More... | |
| bool | _isStopped |
| whether the event has been stopped. More... | |
| var | _isStopped |
| whether the event has been stopped. More... | |
| local | _isStopped |
| whether the event has been stopped. More... | |
| Node * | _currentTarget |
| Current target. More... | |
| var | _currentTarget |
| Current target. More... | |
| local | _currentTarget |
| Current target. More... | |
Protected Attributes inherited from Ref | |
| unsigned int | _referenceCount |
| count of references More... | |
| local | _referenceCount |
| count of references More... | |
The mouse event.
| EventMouse | ( | MouseEventType | mouseEventCode | ) |
Constructor.
| mouseEventCode | A given mouse event type. |
| var ctor | ( | var | mouseEventCode | ) |
Constructor.
| mouseEventCode | A given mouse event type. |
| local EventMouse | ( | local | mouseEventCode | ) |
Constructor.
| mouseEventCode | A given mouse event type. |
|
inline |
Get the cursor position of x axis.
|
inline |
Get the cursor position of x axis.
|
inline |
Get the cursor position of x axis.
|
inline |
Get the cursor position of y axis.
|
inline |
Get the cursor position of y axis.
|
inline |
Get the cursor position of y axis.
| Vec2 getDelta | ( | ) | const |
Returns the delta of 2 current touches locations in screen coordinates.
| var getDelta | ( | ) |
Returns the delta of 2 current touches locations in screen coordinates.
| local getDelta | ( | ) |
Returns the delta of 2 current touches locations in screen coordinates.
| Vec2 getLocation | ( | ) | const |
Returns the current touch location in OpenGL coordinates.
| var getLocation | ( | ) |
Returns the current touch location in OpenGL coordinates.
| local getLocation | ( | ) |
Returns the current touch location in OpenGL coordinates.
| Vec2 getLocationInView | ( | ) | const |
Returns the current touch location in screen coordinates.
| var getLocationInView | ( | ) |
Returns the current touch location in screen coordinates.
| local getLocationInView | ( | ) |
Returns the current touch location in screen coordinates.
|
inline |
Get mouse button.
|
inline |
Get mouse button.
|
inline |
Get mouse button.
| Vec2 getPreviousLocation | ( | ) | const |
Returns the previous touch location in OpenGL coordinates.
| local getPreviousLocation | ( | ) |
Returns the previous touch location in OpenGL coordinates.
| Vec2 getPreviousLocationInView | ( | ) | const |
Returns the previous touch location in screen coordinates.
| local getPreviousLocationInView | ( | ) |
Returns the previous touch location in screen coordinates.
|
inline |
Get mouse scroll data of x axis.
|
inline |
Get mouse scroll data of x axis.
|
inline |
Get mouse scroll data of x axis.
|
inline |
Get mouse scroll data of y axis.
|
inline |
Get mouse scroll data of y axis.
|
inline |
Get mouse scroll data of y axis.
| Vec2 getStartLocation | ( | ) | const |
Returns the start touch location in OpenGL coordinates.
| local getStartLocation | ( | ) |
Returns the start touch location in OpenGL coordinates.
| Vec2 getStartLocationInView | ( | ) | const |
Returns the start touch location in screen coordinates.
| local getStartLocationInView | ( | ) |
Returns the start touch location in screen coordinates.
|
inline |
Set the cursor position.
| x | The x coordinate of cursor position. |
| y | The y coordinate of cursor position. |
|
inline |
Set the cursor position.
| x | The x coordinate of cursor position. |
| y | The y coordinate of cursor position. |
|
inline |
Set the cursor position.
| x | The x coordinate of cursor position. |
| y | The y coordinate of cursor position. |
|
inline |
Set mouse button.
| button | a given mouse button. |
|
inline |
Set mouse button.
| button | a given mouse button. |
|
inline |
Set mouse button.
| button | a given mouse button. |
|
inline |
Set mouse scroll data.
| scrollX | The scroll data of x axis. |
| scrollY | The scroll data of y axis. |
|
inline |
Set mouse scroll data.
| scrollX | The scroll data of x axis. |
| scrollY | The scroll data of y axis. |
|
inline |
Set mouse scroll data.
| scrollX | The scroll data of x axis. |
| scrollY | The scroll data of y axis. |
|
friend |
|
friend |
|
friend |