Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://bitbucket.org/Coin3D/
http://www.kongsberg.com/kogt/
SoTrackballDragger.h
1 #ifndef COIN_SOTRACKBALLDRAGGER_H
2 #define COIN_SOTRACKBALLDRAGGER_H
3 
4 /**************************************************************************\
5  * Copyright (c) Kongsberg Oil & Gas Technologies AS
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met:
11  *
12  * Redistributions of source code must retain the above copyright notice,
13  * this list of conditions and the following disclaimer.
14  *
15  * Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in the
17  * documentation and/or other materials provided with the distribution.
18  *
19  * Neither the name of the copyright holder nor the names of its
20  * contributors may be used to endorse or promote products derived from
21  * this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 \**************************************************************************/
35 
37 #include <Inventor/tools/SbPimplPtr.h>
38 #include <Inventor/fields/SoSFRotation.h>
39 #include <Inventor/fields/SoSFVec3f.h>
40 #include <Inventor/SbVec2f.h>
41 #include <Inventor/SbTime.h>
42 
43 class SoSensor;
44 class SoFieldSensor;
45 class SbSphereProjector;
47 class SbLineProjector;
48 class SoTimerSensor;
49 class SoTrackballDraggerP;
50 
51 class COIN_DLL_API SoTrackballDragger : public SoDragger {
52  typedef SoDragger inherited;
53 
54  SO_KIT_HEADER(SoTrackballDragger);
55  SO_KIT_CATALOG_ENTRY_HEADER(XRotator);
56  SO_KIT_CATALOG_ENTRY_HEADER(XRotatorActive);
57  SO_KIT_CATALOG_ENTRY_HEADER(XRotatorSwitch);
58  SO_KIT_CATALOG_ENTRY_HEADER(YRotator);
59  SO_KIT_CATALOG_ENTRY_HEADER(YRotatorActive);
60  SO_KIT_CATALOG_ENTRY_HEADER(YRotatorSwitch);
61  SO_KIT_CATALOG_ENTRY_HEADER(ZRotator);
62  SO_KIT_CATALOG_ENTRY_HEADER(ZRotatorActive);
63  SO_KIT_CATALOG_ENTRY_HEADER(ZRotatorSwitch);
64  SO_KIT_CATALOG_ENTRY_HEADER(antiSquish);
65  SO_KIT_CATALOG_ENTRY_HEADER(rotator);
66  SO_KIT_CATALOG_ENTRY_HEADER(rotatorActive);
67  SO_KIT_CATALOG_ENTRY_HEADER(rotatorSwitch);
68  SO_KIT_CATALOG_ENTRY_HEADER(surroundScale);
69  SO_KIT_CATALOG_ENTRY_HEADER(userAxis);
70  SO_KIT_CATALOG_ENTRY_HEADER(userAxisActive);
71  SO_KIT_CATALOG_ENTRY_HEADER(userAxisRotation);
72  SO_KIT_CATALOG_ENTRY_HEADER(userAxisSwitch);
73  SO_KIT_CATALOG_ENTRY_HEADER(userRotator);
74  SO_KIT_CATALOG_ENTRY_HEADER(userRotatorActive);
75  SO_KIT_CATALOG_ENTRY_HEADER(userRotatorSwitch);
76 
77 public:
78  static void initClass(void);
79  SoTrackballDragger(void);
80 
83 
84  SbBool isAnimationEnabled(void);
85  void setAnimationEnabled(SbBool newval);
86 
87 protected:
88  virtual ~SoTrackballDragger(void);
89  virtual SbBool setUpConnections(SbBool onoff, SbBool doitalways = FALSE);
90  virtual void setDefaultOnNonWritingFields(void);
91 
92  void dragStart(void);
93  void drag(void);
94  void dragFinish(void);
95  void setAllPartsActive(SbBool onoroff);
96 
97  static void startCB(void * f, SoDragger * d);
98  static void motionCB(void * f, SoDragger * d);
99  static void finishCB(void * f, SoDragger * d);
100  static void metaKeyChangeCB(void * f, SoDragger * d);
101  static void fieldSensorCB(void * f, SoSensor * s);
102  static void valueChangedCB(void * f, SoDragger * d);
103 
106 
107 private:
108  SoNode * getNodeFieldNode(const char *fieldname);
109  void updateUserAxisSwitches(const SbBool setactive = FALSE);
110  static void timerSensorCB(void *, SoSensor *);
111 
112 private:
114  friend class SoTrackballDraggerP;
115 
116  // NOT IMPLEMENTED:
118  SoTrackballDragger & operator = (const SoTrackballDragger & rhs);
119 }; // SoTrackballDragger
120 
121 #endif // !COIN_SOTRACKBALLDRAGGER_H
static void fieldSensorCB(void *, SoSensor *)
Definition: SoInteractionKit.cpp:752
SoFieldSensor * scaleFieldSensor
Definition: SoTrackballDragger.h:105
The SoTrackballDragger provides the end-user with rotation and scaling interaction possibilities...
Definition: SoTrackballDragger.h:51
SoFieldSensor * rotFieldSensor
Definition: SoTrackballDragger.h:104
The SoSFRotation class is a container for an SbRotation.
Definition: SoSFRotation.h:40
The SoTimerSensor class is a sensor which will trigger at given intervals.
Definition: SoTimerSensor.h:38
The SbSphereProjector class is the abstract base class for mapping to spherical surfaces.
Definition: SbSphereProjector.h:40
The SoNode class is the base class for nodes used in scene graphs.
Definition: SoNode.h:56
The SoInteractionKit class is a base class for draggers.
Definition: SoInteractionKit.h:50
The SoDragger class is the base class for all draggers.
Definition: SoDragger.h:64
The SoSensor class is the abstract base class for all sensors.
Definition: SoSensor.h:43
static void initClass(void)
Definition: SoDragger.cpp:409
The SoFieldSensor class detects changes to a field.
Definition: SoFieldSensor.h:38
The SoSFVec3f class is a container for an SbVec3f vector.
Definition: SoSFVec3f.h:40
SoSFVec3f scaleFactor
Definition: SoTrackballDragger.h:82
The SbLineProjector class projects 2D points to 3D points along a line.
Definition: SbLineProjector.h:41
SoSFRotation rotation
Definition: SoTrackballDragger.h:81
virtual SbBool setUpConnections(SbBool onoff, SbBool doitalways=FALSE)
Definition: SoInteractionKit.cpp:675
The SbCylinderProjector class is the abstract base class for mapping to cylindrical surfaces...
Definition: SbCylinderProjector.h:39
virtual void setDefaultOnNonWritingFields(void)
Definition: SoDragger.cpp:1829