-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathStudioHandleWidget.cpp
165 lines (135 loc) · 5.55 KB
/
StudioHandleWidget.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include "StudioHandleWidget.h"
#include <vtkCallbackCommand.h>
#include <vtkCommand.h>
#include <vtkWidgetCallbackMapper.h>
#include <vtkWidgetEvent.h>
#include "PlaneWidget.h"
#include "vtkEvent.h"
#include "vtkHandleRepresentation.h"
#include "vtkObjectFactory.h"
#include "vtkRenderWindowInteractor.h"
namespace shapeworks {
vtkStandardNewMacro(StudioHandleWidget);
//-----------------------------------------------------------------------------
StudioHandleWidget::StudioHandleWidget() {
this->CallbackMapper->SetCallbackMethod(vtkCommand::LeftButtonPressEvent, vtkWidgetEvent::Select, this,
StudioHandleWidget::CustomSelectAction);
this->CallbackMapper->SetCallbackMethod(vtkCommand::RightButtonPressEvent, vtkWidgetEvent::Scale, this,
StudioHandleWidget::RightClickSelectAction);
this->CallbackMapper->SetCallbackMethod(vtkCommand::MouseMoveEvent, vtkWidgetEvent::Move, this,
StudioHandleWidget::CustomMoveAction);
this->CallbackMapper->SetCallbackMethod(vtkCommand::LeftButtonReleaseEvent, vtkWidgetEvent::EndSelect, this,
StudioHandleWidget::CustomEndSelectAction);
}
//-----------------------------------------------------------------------------
void StudioHandleWidget::RightClickSelectAction(vtkAbstractWidget *w) {
StudioHandleWidget *self = reinterpret_cast<StudioHandleWidget *>(w);
double eventPos[2];
eventPos[0] = static_cast<double>(self->Interactor->GetEventPosition()[0]);
eventPos[1] = static_cast<double>(self->Interactor->GetEventPosition()[1]);
self->WidgetRep->StartWidgetInteraction(eventPos);
if (self->WidgetRep->GetInteractionState() == vtkHandleRepresentation::Outside) {
return;
}
self->EventCallbackCommand->SetAbortFlag(1);
self->EndInteraction();
if (self->plane_widget_) {
self->plane_widget_->handle_right_click(self->domain_, self->plane_, self->point_);
}
}
//-----------------------------------------------------------------------------
void StudioHandleWidget::CustomMoveAction(vtkAbstractWidget *w) {
StudioHandleWidget *self = reinterpret_cast<StudioHandleWidget *>(w);
// compute some info we need for all cases
int X = self->Interactor->GetEventPosition()[0];
int Y = self->Interactor->GetEventPosition()[1];
// Set the cursor appropriately
if (self->WidgetState == vtkHandleWidget::Start) {
int state = self->WidgetRep->GetInteractionState();
self->WidgetRep->ComputeInteractionState(X, Y);
self->SetCursor(self->WidgetRep->GetInteractionState());
// Must rerender if we change appearance
if (reinterpret_cast<vtkHandleRepresentation *>(self->WidgetRep)->GetActiveRepresentation() &&
state != self->WidgetRep->GetInteractionState()) {
self->Render();
}
return;
}
if (!self->EnableTranslation) {
return;
}
// if (self->Interactor->GetShiftKey()) {
if (self->shift_active_) {
int diff = Y - self->start_y_;
if (self->plane_widget_) {
self->plane_widget_->set_plane_offset(self->domain_, self->plane_, diff);
}
// Got this event, we are finished
self->EventCallbackCommand->SetAbortFlag(1);
self->Render();
return;
} else {
// Okay, adjust the representation
double eventPosition[2];
eventPosition[0] = static_cast<double>(X);
eventPosition[1] = static_cast<double>(Y);
self->WidgetRep->WidgetInteraction(eventPosition);
}
// Got this event, we are finished
self->EventCallbackCommand->SetAbortFlag(1);
self->InvokeEvent(vtkCommand::InteractionEvent, nullptr);
self->Render();
}
//-----------------------------------------------------------------------------
void StudioHandleWidget::CustomSelectAction(vtkAbstractWidget *w) {
StudioHandleWidget *self = reinterpret_cast<StudioHandleWidget *>(w);
int X = self->Interactor->GetEventPosition()[0];
int Y = self->Interactor->GetEventPosition()[1];
self->WidgetRep->ComputeInteractionState(X, Y);
if (self->WidgetRep->GetInteractionState() == vtkHandleRepresentation::Outside) {
return;
}
// We are definitely selected
if (!self->Parent) {
self->GrabFocus(self->EventCallbackCommand);
}
if (self->Interactor->GetShiftKey()) {
self->start_y_ = Y;
self->shift_active_ = true;
}
double eventPos[2];
eventPos[0] = static_cast<double>(X);
eventPos[1] = static_cast<double>(Y);
self->WidgetRep->StartWidgetInteraction(eventPos);
self->WidgetState = vtkHandleWidget::Active;
reinterpret_cast<vtkHandleRepresentation *>(self->WidgetRep)->SetInteractionState(vtkHandleRepresentation::Selecting);
self->GenericAction(self);
}
//-----------------------------------------------------------------------------
void StudioHandleWidget::CustomEndSelectAction(vtkAbstractWidget *w) {
StudioHandleWidget *self = reinterpret_cast<StudioHandleWidget *>(w);
if (self->WidgetState != vtkHandleWidget::Active) {
return;
}
// Return state to not selected
self->WidgetState = vtkHandleWidget::Start;
// Highlight as necessary
self->WidgetRep->Highlight(0);
// stop adjusting
if (!self->Parent) {
self->ReleaseFocus();
}
if (self->shift_active_) {
// now re-cut and place landmarks
if (self->plane_widget_) {
self->plane_widget_->finalize_plane_offset(self->domain_, self->plane_);
}
}
self->shift_active_ = false;
self->EventCallbackCommand->SetAbortFlag(1);
self->EndInteraction();
self->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr);
self->WidgetState = vtkHandleWidget::Start;
self->Render();
}
} // namespace shapeworks