forked from FNNDSC/KWWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkKWHeaderAnnotationEditor.cxx
389 lines (314 loc) · 10.8 KB
/
vtkKWHeaderAnnotationEditor.cxx
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/*=========================================================================
Module: $RCSfile: vtkKWHeaderAnnotationEditor.cxx,v $
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkKWHeaderAnnotationEditor.h"
#include "vtkKWCheckButton.h"
#include "vtkKWEntry.h"
#include "vtkKWEvent.h"
#include "vtkKWFrame.h"
#include "vtkKWInternationalization.h"
#include "vtkKWLabel.h"
#include "vtkKWEntryWithLabel.h"
#include "vtkKWFrameWithLabel.h"
#include "vtkKWPopupButtonWithLabel.h"
#include "vtkKWPopupButton.h"
#include "vtkKWRenderWidget.h"
#include "vtkKWTextPropertyEditor.h"
#include "vtkObjectFactory.h"
#include "vtkTextActor.h"
#include "vtkTextProperty.h"
//----------------------------------------------------------------------------
vtkStandardNewMacro( vtkKWHeaderAnnotationEditor );
//vtkCxxRevisionMacro(vtkKWHeaderAnnotationEditor, "$Revision: 1.17 $");
//----------------------------------------------------------------------------
vtkKWHeaderAnnotationEditor::vtkKWHeaderAnnotationEditor()
{
this->AnnotationChangedEvent = vtkKWEvent::ViewAnnotationChangedEvent;
this->PopupTextProperty = 0;
this->RenderWidget = NULL;
// GUI
this->TextFrame = vtkKWFrame::New();
this->TextEntry = vtkKWEntryWithLabel::New();
this->TextPropertyWidget = vtkKWTextPropertyEditor::New();
this->TextPropertyPopupButton = NULL;
}
//----------------------------------------------------------------------------
vtkKWHeaderAnnotationEditor::~vtkKWHeaderAnnotationEditor()
{
// GUI
if (this->TextFrame)
{
this->TextFrame->Delete();
this->TextFrame = NULL;
}
if (this->TextEntry)
{
this->TextEntry->Delete();
this->TextEntry = NULL;
}
if (this->TextPropertyWidget)
{
this->TextPropertyWidget->Delete();
this->TextPropertyWidget = NULL;
}
if (this->TextPropertyPopupButton)
{
this->TextPropertyPopupButton->Delete();
this->TextPropertyPopupButton = NULL;
}
this->RenderWidget = NULL;
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::SetRenderWidget(vtkKWRenderWidget *_arg)
{
if (this->RenderWidget == _arg)
{
return;
}
this->RenderWidget = _arg;
this->Modified();
// Update the GUI. Test if it is alive because we might be in the middle
// of destructing the whole GUI
if (this->IsAlive())
{
this->Update();
}
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::CreateWidget()
{
// Create the superclass widgets
if (this->IsCreated())
{
vtkErrorMacro("HeaderAnnotation already created");
return;
}
this->Superclass::CreateWidget();
int popup_text_property =
this->PopupTextProperty && !this->PopupMode;
vtkKWWidget *frame = this->Frame->GetFrame();
// --------------------------------------------------------------
// If in popup mode, modify the popup button
if (this->PopupMode)
{
this->PopupButton->SetText(ks_("Header Annotation Editor|Edit..."));
}
// --------------------------------------------------------------
// Edit the labeled frame
this->Frame->SetLabelText(ks_("Header Annotation Editor|Header annotation"));
// --------------------------------------------------------------
// Edit the check button (Annotation visibility)
this->CheckButton->SetText(
ks_("Header Annotation Editor|Display header annotation"));
this->CheckButton->SetBalloonHelpString(
k_("Toggle the visibility of the header annotation text"));
// --------------------------------------------------------------
// Text frame
this->TextFrame->SetParent(frame);
this->TextFrame->Create();
this->Script("pack %s -side top -fill both -expand y",
this->TextFrame->GetWidgetName());
// --------------------------------------------------------------
// Header text
this->TextEntry->SetParent(this->TextFrame);
this->TextEntry->Create();
this->TextEntry->GetLabel()->SetText(
ks_("Header Annotation Editor|Header:"));
this->TextEntry->GetWidget()->SetWidth(20);
this->TextEntry->GetWidget()->SetCommand(this, "HeaderTextCallback");
this->TextEntry->SetBalloonHelpString(
k_("Set the header annotation. The text will automatically scale "
"to fit within the allocated space"));
this->Script("pack %s -padx 2 -pady 2 -side %s -anchor nw -expand y -fill x",
this->TextEntry->GetWidgetName(),
(popup_text_property ? "left" : "top"));
// --------------------------------------------------------------
// Text property : popup button if needed
if (popup_text_property)
{
if (!this->TextPropertyPopupButton)
{
this->TextPropertyPopupButton = vtkKWPopupButtonWithLabel::New();
}
this->TextPropertyPopupButton->SetParent(this->TextFrame);
this->TextPropertyPopupButton->Create();
this->TextPropertyPopupButton->GetLabel()->SetText(
ks_("Header Annotation Editor|Header properties:"));
this->TextPropertyPopupButton->GetWidget()->SetText(
ks_("Header Annotation Editor|Edit..."));
vtkKWFrame *popupframe =
this->TextPropertyPopupButton->GetWidget()->GetPopupFrame();
popupframe->SetBorderWidth(2);
popupframe->SetReliefToGroove();
this->Script("pack %s -padx 2 -pady 2 -side left -anchor w",
this->TextPropertyPopupButton->GetWidgetName());
this->TextPropertyWidget->SetParent(
this->TextPropertyPopupButton->GetWidget()->GetPopupFrame());
}
else
{
this->TextPropertyWidget->SetParent(this->TextFrame);
}
// --------------------------------------------------------------
// Text property
this->TextPropertyWidget->LongFormatOn();
this->TextPropertyWidget->LabelOnTopOn();
this->TextPropertyWidget->LabelVisibilityOn();
this->TextPropertyWidget->Create();
this->TextPropertyWidget->GetLabel()->SetText(
ks_("Header Annotation Editor|Header properties:"));
this->TextPropertyWidget->SetChangedCommand(this, "TextPropertyCallback");
this->Script("pack %s -padx 2 -pady %d -side top -anchor nw -fill y",
this->TextPropertyWidget->GetWidgetName(),
this->TextPropertyWidget->GetLongFormat() ? 0 : 2);
// --------------------------------------------------------------
// Update the GUI according to the Ivar value (i.e. the corner prop, etc.)
this->Update();
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::Update()
{
this->Superclass::Update();
vtkTextActor *anno = NULL;
if (this->RenderWidget)
{
anno = this->RenderWidget->GetHeaderAnnotation();
}
if (!this->IsCreated())
{
return;
}
// Corners text
if (this->TextEntry)
{
if (anno)
{
this->TextEntry->GetWidget()->SetValue(
anno->GetInput() ? anno->GetInput() : "");
}
}
// Text property
if (this->TextPropertyWidget)
{
this->TextPropertyWidget->SetTextProperty(
anno ? anno->GetTextProperty() : NULL);
this->TextPropertyWidget->SetActor2D(anno);
this->TextPropertyWidget->Update();
}
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::Render()
{
if (this->RenderWidget)
{
this->RenderWidget->Render();
}
}
//----------------------------------------------------------------------------
int vtkKWHeaderAnnotationEditor::GetVisibility()
{
if (!this->RenderWidget)
{
return 0;
}
return this->RenderWidget->GetHeaderAnnotationVisibility();
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::SetVisibility(int state)
{
if (!this->RenderWidget)
{
return;
}
int old_visibility = this->GetVisibility();
this->RenderWidget->SetHeaderAnnotationVisibility(state);
if (old_visibility != this->GetVisibility())
{
this->Update();
this->Render();
this->SendChangedEvent();
}
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::CheckButtonCallback(int state)
{
this->SetVisibility(state ? 1 : 0);
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::TextPropertyCallback()
{
if (this->GetVisibility())
{
this->Render();
}
this->SendChangedEvent();
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::SetHeaderText(const char *text)
{
if (this->RenderWidget && text &&
(!this->RenderWidget->GetHeaderAnnotationText() ||
strcmp(this->RenderWidget->GetHeaderAnnotationText(), text)))
{
this->RenderWidget->SetHeaderAnnotationText(text);
this->Update();
if (this->GetVisibility())
{
this->Render();
}
this->SendChangedEvent();
}
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::HeaderTextCallback(const char *value)
{
this->SetHeaderText(value);
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::UpdateEnableState()
{
this->Superclass::UpdateEnableState();
//int enabled = this->RenderWidget ? this->GetEnabled() : 0;
int enabled = this->GetEnabled();
if (this->TextFrame)
{
this->TextFrame->SetEnabled(enabled);
}
if (this->TextEntry)
{
this->TextEntry->SetEnabled(enabled);
}
if (this->TextPropertyWidget)
{
this->TextPropertyWidget->SetEnabled(enabled);
}
if (this->TextPropertyPopupButton)
{
this->TextPropertyPopupButton->SetEnabled(enabled);
}
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::SendChangedEvent()
{
if (!this->RenderWidget || !this->RenderWidget->GetHeaderAnnotation())
{
return;
}
this->InvokeEvent(this->AnnotationChangedEvent, NULL);
}
//----------------------------------------------------------------------------
void vtkKWHeaderAnnotationEditor::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "AnnotationChangedEvent: "
<< this->AnnotationChangedEvent << endl;
os << indent << "RenderWidget: " << this->GetRenderWidget() << endl;
os << indent << "PopupTextProperty: "
<< (this->PopupTextProperty ? "On" : "Off") << endl;
}