Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://coin3d.github.io
https://www.kongsberg.com/en/kogt/
SoQtMouse.h
1 #ifndef SOQT_MOUSE_H
2 #define SOQT_MOUSE_H
3 
4 //
5 
6 /**************************************************************************\
7  * Copyright (c) Kongsberg Oil & Gas Technologies AS
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are
12  * met:
13  *
14  * Redistributions of source code must retain the above copyright notice,
15  * this list of conditions and the following disclaimer.
16  *
17  * Redistributions in binary form must reproduce the above copyright
18  * notice, this list of conditions and the following disclaimer in the
19  * documentation and/or other materials provided with the distribution.
20  *
21  * Neither the name of the copyright holder nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 \**************************************************************************/
37 
38 #include <Inventor/Qt/devices/SoQtDevice.h>
39 
40 class SoMouseButtonEvent;
41 class SoLocation2Event;
42 
43 // *************************************************************************
44 
45 class SOQT_DLL_API SoQtMouse : public SoQtDevice {
46  SOQT_OBJECT_HEADER(SoQtMouse, SoQtDevice);
47 
48 public:
49  enum Events {
50  BUTTON_PRESS = 0x01,
51  BUTTON_RELEASE = 0x02,
52  POINTER_MOTION = 0x04,
53  BUTTON_MOTION = 0x08,
54 
55  ALL_EVENTS = BUTTON_PRESS | BUTTON_RELEASE | POINTER_MOTION | BUTTON_MOTION
56  };
57 
58  SoQtMouse(int eventmask = ALL_EVENTS);
59  virtual ~SoQtMouse(void);
60 
61  virtual void enable(QWidget* widget, SoQtEventHandler * handler, void * closure);
62  virtual void disable(QWidget* widget, SoQtEventHandler * handler, void * closure);
63 
64  virtual const SoEvent * translateEvent(QEvent* event);
65 
66 private:
67  class SoQtMouseP * pimpl;
68  friend class SoQtMouseP;
69  friend class SoGuiMouseP;
70 };
71 
72 // *************************************************************************
73 
74 #endif // ! SOQT_MOUSE_H
The SoQtMouse class is the mouse input device abstraction.
Definition: SoQtMouse.h:45
The SoQtDevice class is the base class for the translation devices.
Definition: SoQtDevice.h:77
virtual const SoEvent * translateEvent(QEvent *event)=0
virtual void disable(QWidget *w, SoQtEventHandler *handler, void *closure)=0
virtual void enable(QWidget *w, SoQtEventHandler *handler, void *closure)=0
Events
Definition: SoQtMouse.h:49