-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvtkKWCoreWidget.cxx
433 lines (358 loc) · 12.2 KB
/
vtkKWCoreWidget.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*=========================================================================
Module: $RCSfile: vtkKWCoreWidget.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 "vtkKWCoreWidget.h"
#include "vtkKWApplication.h"
#include "vtkObjectFactory.h"
#include "vtkKWTkUtilities.h"
#include "vtkKWIcon.h"
#include "vtkKWOptions.h"
#include <vtksys/SystemTools.hxx>
//----------------------------------------------------------------------------
vtkStandardNewMacro( vtkKWCoreWidget );
vtkCxxRevisionMacro(vtkKWCoreWidget, "$Revision: 1.22 $");
//----------------------------------------------------------------------------
class vtkKWCoreWidgetInternals
{
public:
// Some temporary storage var that do not need to be exposed in the .h
double ConfigurationOptionAsColorTemp[3];
vtksys_stl::string ConvertInternalStringToTclStringTemp;
vtksys_stl::string ConvertTclStringToInternalStringTemp;
// For performance, let's cache the -state option value so that we
// can query it faster. This is important as setting a lot of other
// options on a widget can only be achieved given a specific state.
int CachedStateOption;
};
//----------------------------------------------------------------------------
vtkKWCoreWidget::vtkKWCoreWidget()
{
this->Internals = new vtkKWCoreWidgetInternals;
this->Internals->CachedStateOption = vtkKWOptions::StateUnknown;
}
//----------------------------------------------------------------------------
vtkKWCoreWidget::~vtkKWCoreWidget()
{
delete this->Internals;
this->Internals = NULL;
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::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();
}
//----------------------------------------------------------------------------
int vtkKWCoreWidget::SetConfigurationOption(
const char *option, const char *value)
{
if (!this->IsCreated())
{
vtkWarningMacro("Widget is not created yet !");
return 0;
}
if (!option)
{
vtkWarningMacro("Missing option !");
return 0;
}
const char *res =
this->Script("%s configure %s {%s}",
this->GetWidgetName(), option, value ? value : "");
// 'configure' is not supposed to return anything, so let's assume
// any output is an error
if (res && *res)
{
vtksys_stl::string err_msg(res);
vtksys_stl::string tcl_name(this->GetTclName());
vtksys_stl::string widget_name(this->GetWidgetName());
vtksys_stl::string type(this->GetType());
vtkErrorMacro(
"Error configuring " << tcl_name.c_str() << " (" << type.c_str() << ": "
<< widget_name.c_str() << ") with option: [" << option
<< "] and value [" << value << "] => " << err_msg.c_str());
return 0;
}
return 1;
}
//----------------------------------------------------------------------------
int vtkKWCoreWidget::HasConfigurationOption(const char *option)
{
if (!this->IsCreated())
{
vtkWarningMacro("Widget is not created yet !");
return 0;
}
return (this->GetApplication() &&
!this->GetApplication()->EvaluateBooleanExpression(
"catch {%s cget %s}",
this->GetWidgetName(), option));
}
//----------------------------------------------------------------------------
const char* vtkKWCoreWidget::GetConfigurationOption(const char *option)
{
if (!this->HasConfigurationOption(option))
{
return NULL;
}
return this->Script("%s cget %s", this->GetWidgetName(), option);
}
//----------------------------------------------------------------------------
int vtkKWCoreWidget::SetConfigurationOptionAsInt(
const char *option, int value)
{
char buffer[20];
sprintf(buffer, "%d", value);
return this->SetConfigurationOption(option, buffer);
}
//----------------------------------------------------------------------------
int vtkKWCoreWidget::GetConfigurationOptionAsInt(const char *option)
{
if (!this->HasConfigurationOption(option))
{
return 0;
}
return atoi(this->Script("%s cget %s", this->GetWidgetName(), option));
}
//----------------------------------------------------------------------------
int vtkKWCoreWidget::SetConfigurationOptionAsDouble(
const char *option, double value)
{
char buffer[2048];
sprintf(buffer, "%f", value);
return this->SetConfigurationOption(option, buffer);
}
//----------------------------------------------------------------------------
double vtkKWCoreWidget::GetConfigurationOptionAsDouble(const char *option)
{
if (!this->HasConfigurationOption(option))
{
return 0.0;
}
return atof(this->Script("%s cget %s", this->GetWidgetName(), option));
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::GetConfigurationOptionAsColor(
const char *option, double *r, double *g, double *b)
{
vtkKWTkUtilities::GetOptionColor(this, option, r, g, b);
}
//----------------------------------------------------------------------------
double* vtkKWCoreWidget::GetConfigurationOptionAsColor(const char *option)
{
// Now this is still not super-safe if in a multi-thread context this
// method is called with different 'option' argument...
this->GetConfigurationOptionAsColor(
option,
this->Internals->ConfigurationOptionAsColorTemp,
this->Internals->ConfigurationOptionAsColorTemp + 1,
this->Internals->ConfigurationOptionAsColorTemp + 2);
return this->Internals->ConfigurationOptionAsColorTemp;
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::SetConfigurationOptionAsColor(
const char *option, double r, double g, double b)
{
vtkKWTkUtilities::SetOptionColor(this, option, r, g, b);
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::GetDefaultConfigurationOptionAsColor(
const char *option, double *r, double *g, double *b)
{
vtkKWTkUtilities::GetDefaultOptionColor(this, option, r, g, b);
}
//----------------------------------------------------------------------------
double* vtkKWCoreWidget::GetDefaultConfigurationOptionAsColor(
const char *option)
{
// Now this is still not super-safe if in a multi-thread context this
// method is called with different 'option' argument...
this->GetDefaultConfigurationOptionAsColor(
option,
this->Internals->ConfigurationOptionAsColorTemp,
this->Internals->ConfigurationOptionAsColorTemp + 1,
this->Internals->ConfigurationOptionAsColorTemp + 2);
return this->Internals->ConfigurationOptionAsColorTemp;
}
//----------------------------------------------------------------------------
const char* vtkKWCoreWidget::ConvertInternalStringToTclString(
const char *source, int options)
{
if (!source || !this->IsCreated())
{
return NULL;
}
vtksys_stl::string &dest =
this->Internals->ConvertInternalStringToTclStringTemp;
const char *res = source;
// Handle the encoding
int app_encoding = this->GetApplication()->GetCharacterEncoding();
if (app_encoding != VTK_ENCODING_NONE &&
app_encoding != VTK_ENCODING_UNKNOWN)
{
// Get the Tcl encoding name
const char *tcl_encoding_name =
vtkKWOptions::GetCharacterEncodingAsTclOptionValue(app_encoding);
// Check if we have that encoding
Tcl_Encoding tcl_encoding =
Tcl_GetEncoding(
this->GetApplication()->GetMainInterp(), tcl_encoding_name);
if (tcl_encoding != NULL)
{
Tcl_FreeEncoding(tcl_encoding);
// Convert from that encoding
// We need to escape interpretable chars to perform that conversion
dest = vtksys::SystemTools::EscapeChars(source, "[]$\"\\");
res = source = this->Script(
"encoding convertfrom %s \"%s\"", tcl_encoding_name, dest.c_str());
}
}
// Escape
vtksys_stl::string escape_chars;
if (options)
{
if (options & vtkKWCoreWidget::ConvertStringEscapeCurlyBraces)
{
escape_chars += "{}";
}
if (options & vtkKWCoreWidget::ConvertStringEscapeInterpretable)
{
escape_chars += "[]$\"\\";
}
dest =
vtksys::SystemTools::EscapeChars(source, escape_chars.c_str());
res = source = dest.c_str();
}
return res;
}
//----------------------------------------------------------------------------
const char* vtkKWCoreWidget::ConvertTclStringToInternalString(
const char *source, int options)
{
if (!source || !this->IsCreated())
{
return NULL;
}
vtksys_stl::string &dest =
this->Internals->ConvertTclStringToInternalStringTemp;
const char *res = source;
// Handle the encoding
int app_encoding = this->GetApplication()->GetCharacterEncoding();
if (app_encoding != VTK_ENCODING_NONE &&
app_encoding != VTK_ENCODING_UNKNOWN)
{
// Convert from that encoding
// We need to escape interpretable chars to perform that conversion
dest = vtksys::SystemTools::EscapeChars(source, "[]$\"\\");
res = source = this->Script(
"encoding convertfrom identity \"%s\"", dest.c_str());
}
// Escape
vtksys_stl::string escape_chars;
if (options)
{
if (options & vtkKWCoreWidget::ConvertStringEscapeCurlyBraces)
{
escape_chars += "{}";
}
if (options & vtkKWCoreWidget::ConvertStringEscapeInterpretable)
{
escape_chars += "[]$\"\\";
}
dest =
vtksys::SystemTools::EscapeChars(source, escape_chars.c_str());
res = source = dest.c_str();
}
return res;
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::SetTextOption(const char *option, const char *value)
{
if (!option || !this->IsCreated())
{
return;
}
const char *val = this->ConvertInternalStringToTclString(
value, vtkKWCoreWidget::ConvertStringEscapeInterpretable);
this->Script("%s configure %s \"%s\"",
this->GetWidgetName(), option, val ? val : "");
}
//----------------------------------------------------------------------------
const char* vtkKWCoreWidget::GetTextOption(const char *option)
{
if (!option || !this->IsCreated())
{
return "";
}
return this->ConvertTclStringToInternalString(
this->GetConfigurationOption(option));
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::SetState(int state)
{
if (this->GetState() != state && this->IsAlive())
{
this->Internals->CachedStateOption = state;
this->SetConfigurationOption(
"-state", vtkKWOptions::GetStateAsTkOptionValue(state));
}
}
void vtkKWCoreWidget::SetStateToDisabled()
{
this->SetState(vtkKWOptions::StateDisabled);
};
void vtkKWCoreWidget::SetStateToNormal()
{
this->SetState(vtkKWOptions::StateNormal);
};
void vtkKWCoreWidget::SetStateToReadOnly()
{
this->SetState(vtkKWOptions::StateReadOnly);
};
//----------------------------------------------------------------------------
int vtkKWCoreWidget::GetState()
{
if (this->Internals->CachedStateOption == vtkKWOptions::StateUnknown &&
this->IsAlive())
{
this->Internals->CachedStateOption =
vtkKWOptions::GetStateFromTkOptionValue(
this->GetConfigurationOption("-state"));
}
return this->Internals->CachedStateOption;
}
//----------------------------------------------------------------------------
const char* vtkKWCoreWidget::GetType()
{
const char *res = vtkKWTkUtilities::GetWidgetClass(this);
if (!res)
{
return "None";
}
return res;
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::Raise()
{
if (this->IsCreated())
{
this->Script("raise %s", this->GetWidgetName());
}
}
//----------------------------------------------------------------------------
void vtkKWCoreWidget::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}