Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / SVTK / SVTK_SpaceMouse.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SALOME VTKViewer : build VTK viewer into Salome desktop
23 //  File   : SVTK_SpaceMouse.h
24 //  Author : Alexander SLADKOV
25 //  Module : SALOME
26 //  $Header$
27 //
28 #ifndef SVTK_SpaceMouse_h
29 #define SVTK_SpaceMouse_h
30
31 #ifndef WIN32
32 extern "C"
33 {
34 #include <X11/X.h>
35 #include <X11/Xlib.h>
36 }
37 #endif
38
39 class SVTK_SpaceMouse 
40 {
41  public:
42
43   // access to SpaceMouse utility class
44   static SVTK_SpaceMouse* getInstance();
45
46   enum MoveData { x, y, z, a, b, c };
47   enum EventType { SpaceMouseMove = 1, SpaceButtonPress, SpaceButtonRelease };
48
49   typedef struct  {
50     int type;
51     int button;
52     double data[6];
53     int period;
54   } MoveEvent;
55
56   bool isSpaceMouseOn() const { return spaceMouseOn != 0; }
57
58 #ifndef WIN32
59   int initialize     ( Display*, Window );
60   int setWindow      ( Display*, Window );
61   int translateEvent ( Display*, XEvent*, MoveEvent*, double, double );
62   int close          ( Display* );
63 #endif
64
65  private:
66   SVTK_SpaceMouse();
67   static SVTK_SpaceMouse* myInstance;
68
69 #ifndef WIN32
70   Atom XMotionEvent;
71   Atom XButtonPressEvent;
72   Atom XButtonReleaseEvent;
73   Atom XCommandEvent;
74
75   Window win;
76 #endif
77   int spaceMouseOn;
78 };
79
80 #endif