File: MLV_mouse.h

package info (click to toggle)
mlv 3.1.0-8
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 10,596 kB
  • sloc: ansic: 18,982; sh: 4,760; makefile: 381; objc: 246; xml: 92
file content (110 lines) | stat: -rw-r--r-- 3,302 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 *   This file is part of the MLV Library.
 *
 *   Copyright (C) 2010,2011,2012 Adrien Boussicault, Marc Zipstein
 *
 *
 *    This Library is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation, either version 3 of the License, or
 *    (at your option) any later version.
 *
 *    This Library is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this Library.  If not, see <http://www.gnu.org/licenses/>.
 */

/** \~french 
 * \file MLV_mouse.h
 *
 * \author Adrien Boussicault
 * \author Marc Zipstein
 * 
 * \brief Ce fichier définit les prototypes des fonctions qui permettent 
 *        d'utiliser la souris.
 *
 */

#ifndef __MLV__MLV_MOUSE_H__
#define __MLV__MLV_MOUSE_H__

#ifndef MEMORY_DEBUG
#include <SDL/SDL.h>
#else
#include "memory_debug.h"
#endif

#include "MLV_device_with_buttons.h"

#ifdef __cplusplus
extern "C" {
#endif

/** \~french 
 * \brief Énumère les différents bouttons de la souris
 *
 */
typedef enum{
	MLV_BUTTON_LEFT = SDL_BUTTON_LEFT, /**< \~french  Bouton gauche de la souris */
	MLV_BUTTON_MIDDLE = SDL_BUTTON_MIDDLE, /**< \~french  Bouton du milieu de la souris */
	MLV_BUTTON_RIGHT = SDL_BUTTON_RIGHT /**< \~french  Bouton droit de la souris */
} MLV_Mouse_button;

/** \~french 
 *
 * \brief Suspend l'exécution jusqu'à ce que l'utilisateur clique sur le bouton
 *        gauche de la souris.
 *
 * Au moment où l'utilisateur clique, la fonction retourne les
 * coordonnées de la position de la souris dans la fenêtre.
 *
 * \param x Coordonnée en X de la position de la souris dans la fenêtre.
 * \param y Coordonnée en Y de la position de la souris dans la fenêtre.
 */
void MLV_wait_mouse(int *x, int *y);

/** \~french
 * \brief Convertit le code associé à un boutton de la souris (MLV_Mouse_button) en 
 *        chaîne de caratères.
 *
 * \param button_code Le code du bouton.
 * \return La chaîne de caratères correspondant au code du boutton de la
 *          souris passé en paramètre.
 */
const char* MLV_convert_mouse_button_to_string( MLV_Mouse_button button_code );

/** \~french
 * \brief Convertit une chaîne de caractères en un code bouton.
 *
 * \param button_string La chaîne de caractères à convertir.
 * \return Le code bouton associé à la chaîne de caractères.
 */
MLV_Mouse_button MLV_convert_string_to_mouse_button( const char* button_string );

/** \~french
 *
 * \brief Renvoie la position courante de la souris. 
 *
 * \param x Coordonnée en X de la position de la souris dans la fenêtre.
 * \param y Coordonnée en Y de la position de la souris dans la fenêtre.
 */
void MLV_get_mouse_position( int* x, int* y );

/** \~french
 *
 * \brief Renvoie l'état (préssé ou relaché) d'un bouton de la souris.
 *
 * \param mouse_button Le code du bouton de la souris
 * \return L'état du bouton. 
 */
MLV_Button_state MLV_get_mouse_button_state( MLV_Mouse_button mouse_button );

#ifdef __cplusplus
}
#endif

#endif