Orxonox  0.0.5 Codename: Arcturus
LinuxMouse.h
Go to the documentation of this file.
1 /*
2 The zlib/libpng License
3 
4 Copyright (c) 2005-2007 Phillip Castaneda (pjcast -- www.wreckedgames.com)
5 
6 This software is provided 'as-is', without any express or implied warranty. In no event will
7 the authors be held liable for any damages arising from the use of this software.
8 
9 Permission is granted to anyone to use this software for any purpose, including commercial
10 applications, and to alter it and redistribute it freely, subject to the following
11 restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not claim that
14  you wrote the original software. If you use this software in a product,
15  an acknowledgment in the product documentation would be appreciated but is
16  not required.
17 
18  2. Altered source versions must be plainly marked as such, and must not be
19  misrepresented as being the original software.
20 
21  3. This notice may not be removed or altered from any source distribution.
22 */
23 #ifndef _LINUX_MOUSE_H_EADER_
24 #define _LINUX_MOUSE_H_EADER_
25 
26 #include "linux/LinuxPrereqs.h"
27 #include "OISMouse.h"
28 #include <X11/Xlib.h>
29 
30 namespace OIS
31 {
32  class LinuxMouse : public Mouse
33  {
34  public:
35  LinuxMouse(InputManager* creator, bool buffered, bool grab, bool hide);
36  virtual ~LinuxMouse();
37 
39  virtual void setBuffered(bool buffered);
40 
46  virtual void capture();
47 
50 
52  virtual void _initialize();
53 
54  void grab(bool grab);
55  void hide(bool hide);
56 
57  protected:
58  void _processXEvents();
59 
60  bool mMoved, mWarped;
61 
62  //Since X11 provides us with absolute values, we need to keep track of relative values
64 
65  Window window; //The X Window
66  Display *display; //The X display
67  Cursor cursor; //A blank cursor
68 
69  bool grabMouse; //Are we grabbing the mouse to the window?
70  bool hideMouse; //Are we hiding OS mouse?
71  bool mouseFocusLost;//Has the mouse just lost focus?
72  };
73 }
74 
75 #endif //_LINUX_MOUSE_H_EADER_
bool grabMouse
Definition: LinuxMouse.h:69
long oldXMouseY
Definition: LinuxMouse.h:63
virtual ~LinuxMouse()
Definition: LinuxMouse.cpp:89
Cursor cursor
Definition: LinuxMouse.h:67
bool mWarped
Definition: LinuxMouse.h:60
An Object&#39;s interface is a way to gain write access to devices which support it.
Definition: OISInterface.h:34
IType
Type of Interface.
Definition: OISInterface.h:40
Window window
Definition: LinuxMouse.h:65
virtual void _initialize()
Definition: LinuxMouse.cpp:45
Mouse base class.
Definition: OISMouse.h:107
Definition: LinuxMouse.h:32
virtual Interface * queryInterface(Interface::IType)
Definition: LinuxMouse.h:49
bool mouseFocusLost
Definition: LinuxMouse.h:71
long oldXMouseZ
Definition: LinuxMouse.h:63
virtual void setBuffered(bool buffered)
Definition: LinuxMouse.cpp:103
virtual bool buffered() const
Definition: OISObject.h:44
void grab(bool grab)
Definition: LinuxMouse.cpp:257
bool hideMouse
Definition: LinuxMouse.h:70
Base Manager class.
Definition: OISInputManager.h:38
long oldXMouseX
Definition: LinuxMouse.h:63
Display * display
Definition: LinuxMouse.h:66
bool mMoved
Definition: LinuxMouse.h:60
Definition: EventHelpers.h:31
virtual void capture()
Definition: LinuxMouse.cpp:109
LinuxMouse(InputManager *creator, bool buffered, bool grab, bool hide)
Definition: LinuxMouse.cpp:31
void _processXEvents()
Definition: LinuxMouse.cpp:153
void hide(bool hide)
Definition: LinuxMouse.cpp:266