Salome HOME
Misprint correction
[modules/gui.git] / src / SVTK / SVTK_SpaceMouse.h
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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
23 //  SALOME VTKViewer : build VTK viewer into Salome desktop
24 //  File   : SVTK_SpaceMouse.h
25 //  Author : Alexander SLADKOV
26
27 #ifndef SVTK_SpaceMouse_h
28 #define SVTK_SpaceMouse_h
29
30 #ifndef WIN32
31 extern "C"
32 {
33 #include <X11/X.h>
34 #include <X11/Xlib.h>
35 }
36 #endif
37
38 class SVTK_SpaceMouse 
39 {
40  public:
41
42   // access to SpaceMouse utility class
43   static SVTK_SpaceMouse* getInstance();
44
45   enum MoveData { x, y, z, a, b, c };
46   enum EventType { SpaceMouseMove = 1, SpaceButtonPress, SpaceButtonRelease };
47
48   typedef struct  {
49     int type;
50     int button;
51     double data[6];
52     int period;
53   } MoveEvent;
54
55   bool isSpaceMouseOn() const { return spaceMouseOn != 0; }
56
57 #ifndef WIN32
58   int initialize     ( Display*, Window );
59   int setWindow      ( Display*, Window );
60   int translateEvent ( Display*, XEvent*, MoveEvent*, double, double );
61   int close          ( Display* );
62 #endif
63
64  private:
65   SVTK_SpaceMouse();
66   static SVTK_SpaceMouse* myInstance;
67
68 #ifndef WIN32
69   Atom XMotionEvent;
70   Atom XButtonPressEvent;
71   Atom XButtonReleaseEvent;
72   Atom XCommandEvent;
73
74   Window win;
75 #endif
76   int spaceMouseOn;
77 };
78
79 #endif