-
Notifications
You must be signed in to change notification settings - Fork 3
/
vtkKWColorPickerDialog.cxx
233 lines (189 loc) · 6.41 KB
/
vtkKWColorPickerDialog.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
/*=========================================================================
Module: $RCSfile: vtkKWColorPickerDialog.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 "vtkKWColorPickerDialog.h"
#include "vtkKWColorPickerWidget.h"
#include "vtkKWColorPresetSelector.h"
#include "vtkKWApplication.h"
#include "vtkObjectFactory.h"
#include "vtkKWPushButton.h"
#include <vtksys/stl/string>
//----------------------------------------------------------------------------
vtkStandardNewMacro( vtkKWColorPickerDialog );
vtkCxxRevisionMacro(vtkKWColorPickerDialog, "$Revision: 1.5 $");
//----------------------------------------------------------------------------
vtkKWColorPickerDialog::vtkKWColorPickerDialog()
{
this->ColorPickerWidget = vtkKWColorPickerWidget::New();
this->OKButton = NULL;
this->CancelButton = NULL;
}
//----------------------------------------------------------------------------
vtkKWColorPickerDialog::~vtkKWColorPickerDialog()
{
if (this->ColorPickerWidget)
{
this->ColorPickerWidget->Delete();
}
if (this->OKButton)
{
this->OKButton->Delete();
}
if (this->CancelButton)
{
this->CancelButton->Delete();
}
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::CreateWidget()
{
// Check if already created
if (this->IsCreated())
{
vtkErrorMacro(<< this->GetClassName() << " already created");
return;
}
// Call the superclass to create the whole widget
this->Superclass::CreateWidget();
this->SetResizable(1, 1);
vtksys_stl::string title;
if (this->GetApplication()->GetName())
{
title += this->GetApplication()->GetName();
title += ": ";
}
title += "Color Picker";
this->SetTitle(title.c_str());
// Color Picker
if (!this->ColorPickerWidget)
{
this->ColorPickerWidget = vtkKWColorPickerWidget::New();
}
this->ColorPickerWidget->SetParent(this);
this->ColorPickerWidget->GetFavoritesColorPresetSelector()->SetRegistryKey(
"Favorites");
this->ColorPickerWidget->GetHistoryColorPresetSelector()->SetRegistryKey(
"History");
this->ColorPickerWidget->Create();
this->ColorPickerWidget->SetBorderWidth(2);
this->ColorPickerWidget->SetReliefToGroove();
this->AddCallbackCommandObserver(
this->ColorPickerWidget, vtkKWColorPickerWidget::CompactModeChangedEvent);
this->Script(
"pack %s -side top -anchor center -fill both -expand true -padx 2 -pady 2",
this->ColorPickerWidget->GetWidgetName());
// OK button
if (!this->OKButton)
{
this->OKButton = vtkKWPushButton::New();
}
this->OKButton->SetParent(this);
this->OKButton->Create();
this->OKButton->SetWidth(20);
this->OKButton->SetText("OK");
this->OKButton->SetCommand(this, "OK");
this->OKButton->SetConfigurationOptionAsInt("-takefocus", 0);
this->Script("pack %s -side right -anchor e -padx 2 -pady 2 -expand n",
this->OKButton->GetWidgetName());
// Cancel button
if (!this->CancelButton)
{
this->CancelButton = vtkKWPushButton::New();
}
this->CancelButton->SetParent(this);
this->CancelButton->Create();
this->CancelButton->SetWidth(20);
this->CancelButton->SetText("Cancel");
this->CancelButton->SetCommand(this, "Cancel");
this->CancelButton->SetConfigurationOptionAsInt("-takefocus", 0);
this->Script("pack %s -side right -anchor e -pady 2 -padx 2 -expand n",
this->CancelButton->GetWidgetName());
this->AddBinding("<Return>", this, "OK");
this->AddBinding("<Escape>", this, "Cancel");
this->UpdateSize();
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::UpdateSize()
{
// Sadly, need to adjust the size of the dialog manually
int w, h;
if (this->ColorPickerWidget && this->ColorPickerWidget->GetCompactMode())
{
w = 376;
h = 215;
}
else
{
w = 632;
h = 339;
}
#ifndef _WIN32
w += 10;
#endif
this->SetSize(w, h);
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::Display()
{
this->Superclass::Display();
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::OK()
{
this->Superclass::OK();
// We accepted that color, save it to the history
if (this->ColorPickerWidget)
{
vtkKWColorPresetSelector *history =
this->ColorPickerWidget->GetHistoryColorPresetSelector();
int id = history->InsertPreset(history->GetIdOfNthPreset(0));
if (id >= 0)
{
double r, g, b;
this->ColorPickerWidget->GetNewColorAsRGB(r, g, b);
history->SetPresetColorAsRGB(id, r, g, b);
if (!history->GetPresetComment(id) ||
history->HasPresetCommentAsHexadecimalRGB(id))
{
history->SetPresetCommentAsHexadecimalRGB(id);
}
history->RemoveDuplicatedColors();
history->SavePresetsToRegistry();
}
}
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::UpdateEnableState()
{
this->Superclass::UpdateEnableState();
this->PropagateEnableState(this->ColorPickerWidget);
this->PropagateEnableState(this->OKButton);
this->PropagateEnableState(this->CancelButton);
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::ProcessCallbackCommandEvents(vtkObject *caller,
unsigned long event,
void *calldata)
{
if (caller == this->ColorPickerWidget &&
event == vtkKWColorPickerWidget::CompactModeChangedEvent)
{
this->UpdateSize(); // resize
}
this->Superclass::ProcessCallbackCommandEvents(caller, event, calldata);
}
//----------------------------------------------------------------------------
void vtkKWColorPickerDialog::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
if(this->ColorPickerWidget)
{
this->ColorPickerWidget->PrintSelf(os, indent);
}
}