SoWx  0.1.0
Coin3D GUI toolkit binding
Loading...
Searching...
No Matches
SoWxExaminerViewer.h
1#ifndef SOWX_EXAMINERVIEWER_H
2#define SOWX_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/Wx/viewers/SoWxFullViewer.h>
40
41class SoSeparator;
42class SoSwitch;
43class SoTranslation;
44class SoScale;
45
46class SoWxThumbWheel;
47
48// *************************************************************************
49
50class SOWX_DLL_API SoWxExaminerViewer : public SoWxFullViewer {
51 SOWX_OBJECT_HEADER(SoWxExaminerViewer, SoWxFullViewer);
52
53public:
54 SoWxExaminerViewer(wxWindow* parent = NULL,
55 const char * name = NULL,
56 SbBool embed = TRUE,
57 SoWxFullViewer::BuildFlag flag = BUILD_ALL,
58 SoWxViewer::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
77protected:
78 SoWxExaminerViewer(wxWindow* parent,
79 const char * name,
80 SbBool embed,
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(wxWindow* 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
101private:
102 class SoWxExaminerViewerP * pimpl;
103
104 friend class SoGuiExaminerViewerP;
105 friend class SoWxExaminerViewerP;
106};
107
108#endif // ! SOWX_EXAMINERVIEWER_H
The SoWxExaminerViewer class is a 3D-model examination viewer.
Definition SoWxExaminerViewer.h:50
SoWxExaminerViewer(wxWindow *parent=NULL, const char *name=NULL, SbBool embed=TRUE, SoWxFullViewer::BuildFlag flag=BUILD_ALL, SoWxViewer::Type type=BROWSER)
The SoWxFullViewer class adds some user interface components to the viewer canvas.
Definition SoWxFullViewer.h:44
virtual void setViewing(SbBool on)
Definition FullViewer.cpp:255
virtual void leftWheelMotion(float)
Definition SoWxFullViewer.cpp:499
virtual void bottomWheelMotion(float)
Definition SoWxFullViewer.cpp:566
virtual void rightWheelMotion(float)
Definition SoWxFullViewer.cpp:633
virtual void createViewerButtons(wxWindow *parent, SbPList *buttonlist)
Definition FullViewer.cpp:435
virtual SbBool processSoEvent(const SoEvent *const event)
Definition SoWxFullViewer.cpp:725
BuildFlag
Definition SoWxFullViewer.h:48
virtual const char * getDefaultIconTitle(void) const
Definition SoWxRenderArea.cpp:2126
virtual void afterRealizeHook(void)
Definition SoWxRenderArea.cpp:981
virtual const char * getDefaultWidgetName(void) const
Definition SoWxRenderArea.cpp:2110
virtual const char * getDefaultTitle(void) const
Definition SoWxRenderArea.cpp:2118
virtual void setCursorEnabled(SbBool enable)
Definition SoWxViewer.cpp:2199
virtual void setCamera(SoCamera *camera)
Definition SoWxViewer.cpp:1706
Type
Definition SoWxViewer.h:94
virtual void setSeekMode(SbBool enable)
Definition SoWxViewer.cpp:2963
virtual void actualRedraw(void)
Definition SoWxViewer.cpp:3272