Enumerations | Functions
Mouse.h File Reference
#include <SFML/Window/Export.h>
#include <SFML/Window/Types.h>
#include <SFML/System/Vector2.h>

Go to the source code of this file.

Enumerations

enum  sfMouseButton {
  sfMouseLeft,
  sfMouseRight,
  sfMouseMiddle,
  sfMouseXButton1,
  sfMouseXButton2,
  sfMouseButtonCount
}
 Mouse buttons. More...
 

Functions

CSFML_WINDOW_API sfBool sfMouse_isButtonPressed (sfMouseButton button)
 Check if a mouse button is pressed.
 
CSFML_WINDOW_API sfVector2i sfMouse_getPosition (const sfWindow *relativeTo)
 Get the current position of the mouse.
 
CSFML_WINDOW_API void sfMouse_setPosition (sfVector2i position, const sfWindow *relativeTo)
 Set the current position of the mouse.
 

Enumeration Type Documentation

Mouse buttons.

Enumerator:
sfMouseLeft 

The left mouse button.

sfMouseRight 

The right mouse button.

sfMouseMiddle 

The middle (wheel) mouse button.

sfMouseXButton1 

The first extra mouse button.

sfMouseXButton2 

The second extra mouse button.

sfMouseButtonCount 

Keep last – the total number of mouse buttons.

Definition at line 39 of file Mouse.h.

Function Documentation

CSFML_WINDOW_API sfVector2i sfMouse_getPosition ( const sfWindow relativeTo)

Get the current position of the mouse.

This function returns the current position of the mouse cursor relative to the given window, or desktop if NULL is passed.

Parameters
relativeToReference window
Returns
Position of the mouse cursor, relative to the given window
CSFML_WINDOW_API sfBool sfMouse_isButtonPressed ( sfMouseButton  button)

Check if a mouse button is pressed.

Parameters
buttonButton to check
Returns
sfTrue if the button is pressed, sfFalse otherwise
CSFML_WINDOW_API void sfMouse_setPosition ( sfVector2i  position,
const sfWindow relativeTo 
)

Set the current position of the mouse.

This function sets the current position of the mouse cursor relative to the given window, or desktop if NULL is passed.

Parameters
positionNew position of the mouse
relativeToReference window