Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://bitbucket.org/Coin3D/
http://www.kongsberg.com/kogt/
SoWinExaminerViewer.h
1 #ifndef SOWIN_EXAMINERVIEWER_H
2 #define SOWIN_EXAMINERVIEWER_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/SbLinear.h>
39 #include <Inventor/Win/viewers/SoWinFullViewer.h>
40 
41 class SoSeparator;
42 class SoSwitch;
43 class SoTranslation;
44 class SoScale;
45 
46 class SoWinThumbWheel;
47 
48 // *************************************************************************
49 
50 class SOWIN_DLL_API SoWinExaminerViewer : public SoWinFullViewer {
51  SOWIN_OBJECT_HEADER(SoWinExaminerViewer, SoWinFullViewer);
52 
53 public:
54  SoWinExaminerViewer(HWND parent = NULL,
55  const char * name = NULL,
56  SbBool embed = TRUE,
57  SoWinFullViewer::BuildFlag flag = BUILD_ALL,
58  SoWinViewer::Type type = BROWSER);
60 
61  void setAnimationEnabled(const SbBool enable);
62  SbBool isAnimationEnabled(void) const;
63 
64  void stopAnimating(void);
65  SbBool isAnimating(void) const;
66 
67  void setFeedbackVisibility(const SbBool enable);
68  SbBool isFeedbackVisible(void) const;
69 
70  void setFeedbackSize(const int size);
71  int getFeedbackSize(void) const;
72 
73  virtual void setViewing(SbBool enable);
74  virtual void setCamera(SoCamera * camera);
75  virtual void setCursorEnabled(SbBool enable);
76 
77 protected:
78  SoWinExaminerViewer(HWND parent,
79  const char * name,
80  SbBool embed,
82  SoWinViewer::Type type,
83  SbBool build);
84 
85  virtual void leftWheelMotion(float val);
86  virtual void bottomWheelMotion(float val);
87  virtual void rightWheelMotion(float val);
88 
89  virtual void createViewerButtons(HWND parent, SbPList * buttonlist);
90 
91  virtual const char * getDefaultWidgetName(void) const;
92  virtual const char * getDefaultTitle(void) const;
93  virtual const char * getDefaultIconTitle(void) const;
94 
95  virtual SbBool processSoEvent(const SoEvent * const event);
96  virtual void setSeekMode(SbBool enable);
97  virtual void actualRedraw(void);
98 
99  virtual void afterRealizeHook(void);
100 
101 private:
102  class SoWinExaminerViewerP * pimpl;
103 
104  friend class SoGuiExaminerViewerP;
105  friend class SoWinExaminerViewerP;
106 };
107 
108 #endif // ! SOWIN_EXAMINERVIEWER_H
virtual const char * getDefaultTitle(void) const
Definition: SoWinRenderArea.cpp:2101
virtual void setCursorEnabled(SbBool enable)
Definition: SoWinViewer.cpp:2197
virtual void setViewing(SbBool on)
Definition: FullViewer.cpp:289
virtual void setCamera(SoCamera *camera)
Definition: SoWinViewer.cpp:1704
virtual void rightWheelMotion(float)
Definition: SoWinFullViewer.cpp:633
The SoWinFullViewer class adds some user interface components to the viewer canvas.
Definition: SoWinFullViewer.h:44
virtual void bottomWheelMotion(float)
Definition: SoWinFullViewer.cpp:566
The SoWinExaminerViewer class is a 3D-model examination viewer.
Definition: SoWinExaminerViewer.h:50
virtual void createViewerButtons(HWND parent, SbPList *buttonlist)
virtual const char * getDefaultWidgetName(void) const
Definition: SoWinRenderArea.cpp:2093
virtual void setSeekMode(SbBool enable)
Definition: SoWinViewer.cpp:2961
virtual void afterRealizeHook(void)
Definition: SoWinRenderArea.cpp:984
virtual const char * getDefaultIconTitle(void) const
Definition: SoWinRenderArea.cpp:2109
virtual void actualRedraw(void)
Definition: SoWinViewer.cpp:3270
virtual SbBool processSoEvent(const SoEvent *const event)
Definition: SoWinFullViewer.cpp:725
BuildFlag
Definition: SoWinFullViewer.h:48
Type
Definition: SoWinViewer.h:94
virtual void leftWheelMotion(float)
Definition: SoWinFullViewer.cpp:499