Open Inventor Release 2024.1.1
 
Loading...
Searching...
No Matches
SoWinTransformSliderSet.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23
24
25
26
27
28#ifndef _SO_WIN_TRANSFORM_SLIDER_SET_
29#define _SO_WIN_TRANSFORM_SLIDER_SET_
30
31#include <Inventor/Win/SoWinBeginStrict.h>
32#include <Inventor/Win/SoWinSliderSet.h>
33
35//
36// Class: SoWinTransformSliderSet
37//
38// For editing transformation nodes.
39//
40// The SoWinTransformSliderSet allocates:
41// 1 SoWinTransSliderModule (for editing translation)
42// 1 SoWinScaleSliderModule (for editing scaling)
43// 1 SoWinRotateSliderModule (for editing rotation)
44// 1 SoWinCenterSliderModule (for editing center of rotation and scale)
45//
47
48{
49 public:
50 SoWinTransformSliderSet(
51 SoWidget parent = NULL,
52 const char *name = NULL,
53 SbBool buildInsideParent = TRUE,
54 SoNode *newEditNode = NULL );
55 ~SoWinTransformSliderSet();
56
57 private:
58
59 // This constructor takes a boolean whether to build the widget now.
60 // Subclasses can pass FALSE, then call the buildWidget() method on
61 // this class when they are ready for it to be built.
62 SoEXTENDER
63 SoWinTransformSliderSet(
64 SoWidget parent,
65 const char *name,
66 SbBool buildInsideParent,
67 SoNode *newEditNode,
68 SbBool buildNow);
69
70 // redefine these
71 virtual SbString getDefaultWidgetName() const;
72 virtual SbString getDefaultTitle() const;
73 virtual SbString getDefaultIconTitle() const;
74
75 SoWidget buildWidget( SoWidget parent);
76
77 // this is called by both constructors
78 void constructorCommon(SbBool buildNow);
79};
80
81#include <Inventor/Win/SoWinEndStrict.h>
82
83#endif // _SO_WIN_TRANSFORM_SLIDER_SET_
84
85
Class for smart character strings.
Definition SbString.h:202
Abstract base class for all database nodes.
Definition SoNode.h:145
int SbBool
Boolean type.
Definition SbBase.h:87