Version: 9.12.0
SVTK_SpaceMouse.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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 #include <QtGlobal>
31 
32 #if !defined WIN32 && !defined __APPLE__
33 extern "C"
34 {
35 #include <X11/X.h>
36 #include <xcb/xcb.h>
37 }
38 #endif
39 
41 {
42  public:
43 
44  enum MoveData { x, y, z, a, b, c };
46 
47  typedef struct {
48  int type;
49  int button;
50  double data[6];
51  int period;
52  } MoveEvent;
53 
54  bool isSpaceMouseOn() const { return spaceMouseOn != 0; }
55 
57 
58  protected:
59 
61 };
62 
64 {
65 
66 public:
68 
69  // access to SpaceMouse utility class
71 
72 #if !defined WIN32 && !defined __APPLE__
73  int initialize ( xcb_connection_t*, xcb_window_t );
74  int setWindow ( xcb_connection_t*, xcb_window_t );
75  int translateEvent ( xcb_connection_t*, xcb_client_message_event_t*, MoveEvent*, double, double );
76  int close ( xcb_connection_t* );
77 
78 private:
79  xcb_atom_t XCBMotionEvent;
80  xcb_atom_t XCBButtonPressEvent;
82  xcb_window_t win;
83 #endif
84 
86 
87 };
88 
89 #endif
Definition: SVTK_SpaceMouse.h:64
SVTK_SpaceMouseXCB()
Definition: SVTK_SpaceMouse.cxx:56
xcb_atom_t XCBButtonReleaseEvent
Definition: SVTK_SpaceMouse.h:81
int initialize(xcb_connection_t *, xcb_window_t)
Definition: SVTK_SpaceMouse.cxx:77
static SVTK_SpaceMouseXCB * getInstance()
Definition: SVTK_SpaceMouse.cxx:67
int translateEvent(xcb_connection_t *, xcb_client_message_event_t *, MoveEvent *, double, double)
Definition: SVTK_SpaceMouse.cxx:188
static SVTK_SpaceMouseXCB * myInstance
Definition: SVTK_SpaceMouse.h:85
int setWindow(xcb_connection_t *, xcb_window_t)
Definition: SVTK_SpaceMouse.cxx:109
xcb_atom_t XCBMotionEvent
Definition: SVTK_SpaceMouse.h:79
xcb_window_t win
Definition: SVTK_SpaceMouse.h:82
xcb_atom_t XCBButtonPressEvent
Definition: SVTK_SpaceMouse.h:80
int close(xcb_connection_t *)
Definition: SVTK_SpaceMouse.cxx:177
Definition: SVTK_SpaceMouse.h:41
EventType
Definition: SVTK_SpaceMouse.h:45
@ SpaceButtonRelease
Definition: SVTK_SpaceMouse.h:45
@ SpaceMouseMove
Definition: SVTK_SpaceMouse.h:45
@ SpaceButtonPress
Definition: SVTK_SpaceMouse.h:45
MoveData
Definition: SVTK_SpaceMouse.h:44
@ b
Definition: SVTK_SpaceMouse.h:44
@ c
Definition: SVTK_SpaceMouse.h:44
@ x
Definition: SVTK_SpaceMouse.h:44
@ y
Definition: SVTK_SpaceMouse.h:44
@ a
Definition: SVTK_SpaceMouse.h:44
@ z
Definition: SVTK_SpaceMouse.h:44
SVTK_SpaceMouse()
Definition: SVTK_SpaceMouse.cxx:48
int spaceMouseOn
Definition: SVTK_SpaceMouse.h:60
bool isSpaceMouseOn() const
Definition: SVTK_SpaceMouse.h:54
Definition: SVTK_SpaceMouse.h:47
int type
Definition: SVTK_SpaceMouse.h:48
int button
Definition: SVTK_SpaceMouse.h:49
int period
Definition: SVTK_SpaceMouse.h:51