Panda3D
mouseButton.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file mouseButton.h
10  * @author drose
11  * @date 2000-03-01
12  */
13 
14 #ifndef MOUSEBUTTON_H
15 #define MOUSEBUTTON_H
16 
17 #include "pandabase.h"
18 
19 #include "buttonHandle.h"
20 
21 /**
22  * This class is just used as a convenient namespace for grouping all of these
23  * handy functions that return buttons which map to standard mouse buttons.
24  */
25 class EXPCL_PANDA_PUTIL MouseButton {
26 PUBLISHED:
27  static ButtonHandle button(int button_number);
28  static ButtonHandle one();
29  static ButtonHandle two();
30  static ButtonHandle three();
31  static ButtonHandle four();
32  static ButtonHandle five();
33  static ButtonHandle wheel_up();
34  static ButtonHandle wheel_down();
35  static ButtonHandle wheel_left();
36  static ButtonHandle wheel_right();
37 
38  static bool is_mouse_button(ButtonHandle button);
39 
40 public:
41  static void init_mouse_buttons();
42 
43  enum { num_mouse_buttons = 5 };
44  static ButtonHandle _buttons[num_mouse_buttons];
45  static ButtonHandle _wheel_up;
46  static ButtonHandle _wheel_down;
47  static ButtonHandle _wheel_left;
48  static ButtonHandle _wheel_right;
49 };
50 
51 #endif
This class is just used as a convenient namespace for grouping all of these handy functions that retu...
Definition: mouseButton.h:25
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
A ButtonHandle represents a single button from any device, including keyboard buttons and mouse butto...
Definition: buttonHandle.h:26
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.