VTK
vtkParallelopipedWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParallelopipedWidget.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
41 #ifndef vtkParallelopipedWidget_h
42 #define vtkParallelopipedWidget_h
43 
44 #include "vtkInteractionWidgetsModule.h" // For export macro
45 #include "vtkAbstractWidget.h"
46 
48 class vtkHandleWidget;
49 class vtkWidgetSet;
50 
51 class VTKINTERACTIONWIDGETS_EXPORT vtkParallelopipedWidget : public vtkAbstractWidget
52 {
53 
54  friend class vtkWidgetSet;
55 
56 public:
60  static vtkParallelopipedWidget *New();
61 
63  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
64 
70  void SetEnabled(int) VTK_OVERRIDE;
71 
78  {
79  this->Superclass::SetWidgetRepresentation(
80  reinterpret_cast<vtkWidgetRepresentation*>(r));
81  }
82 
87  {return reinterpret_cast<vtkParallelopipedRepresentation*>(this->WidgetRep);}
88 
90 
94  vtkSetMacro(EnableChairCreation,int);
95  vtkGetMacro(EnableChairCreation,int);
96  vtkBooleanMacro(EnableChairCreation,int);
98 
102  void CreateDefaultRepresentation() VTK_OVERRIDE;
103 
108  void SetProcessEvents(int) VTK_OVERRIDE;
109 
110 protected:
112  ~vtkParallelopipedWidget() VTK_OVERRIDE;
113 
114  static void RequestResizeCallback (vtkAbstractWidget* );
115  static void RequestResizeAlongAnAxisCallback (vtkAbstractWidget* );
116  static void RequestChairModeCallback (vtkAbstractWidget* );
117  static void TranslateCallback (vtkAbstractWidget* );
118  static void OnMouseMoveCallback (vtkAbstractWidget* );
119  static void OnLeftButtonUpCallback (vtkAbstractWidget* );
120 
121  // Control whether chairs can be created
123 
125  void BeginTranslateAction ( vtkParallelopipedWidget *dispatcher);
126  void TranslateAction ( vtkParallelopipedWidget *dispatcher);
128 
129  // helper methods for cursor management
130  void SetCursor(int state) VTK_OVERRIDE;
131 
132  // To break reference count loops
133  void ReportReferences(vtkGarbageCollector* collector) VTK_OVERRIDE;
134 
135  // The positioning handle widgets
137 
142  {
143  RequestResizeEvent = 10000,
145  RequestChairModeEvent
146  };
147 
149 
150 private:
151  vtkParallelopipedWidget(const vtkParallelopipedWidget&) VTK_DELETE_FUNCTION;
152  void operator=(const vtkParallelopipedWidget&) VTK_DELETE_FUNCTION;
153 };
154 
155 #endif
virtual void SetCursor(int vtkNotUsed(state))
virtual void SetProcessEvents(int)
Methods to change whether the widget responds to interaction.
WidgetEventIds
Events invoked by this widget.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros implementing standard VTK methods.
a general widget for moving handles
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
Synchronize a collection on vtkWidgets drawn on different renderwindows using the Callback - Dispatch...
Definition: vtkWidgetSet.h:111
Detect and break reference loops.
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual void ReportReferences(vtkGarbageCollector *)
Default representation for vtkParallelopipedWidget.
vtkParallelopipedRepresentation * GetParallelopipedRepresentation()
Return the representation as a vtkParallelopipedRepresentation.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
define the API for widget / widget representation
void SetEnabled(int) override
Methods for activating this widget.
a widget to manipulate 3D parallelopipeds
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
void SetRepresentation(vtkParallelopipedRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene...