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