File: vtkKWApplicationSettingsInterfacePro.cxx

package info (click to toggle)
volview 3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 25,204 kB
  • sloc: cpp: 132,585; ansic: 11,612; tcl: 236; sh: 64; makefile: 25; xml: 8
file content (428 lines) | stat: -rw-r--r-- 13,073 bytes parent folder | download
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
/*=========================================================================

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/VolViewCopyright.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 "vtkKWApplicationSettingsInterfacePro.h"

#include "vtkObjectFactory.h"

#include "vtkKWLabel.h"
#include "vtkKWCheckButton.h"
#include "vtkKWEntry.h"
#include "vtkKWFrame.h"
#include "vtkKWEntryWithLabel.h"
#include "vtkKWFrameWithLabel.h"
#include "vtkKWInternationalization.h"

#include "vtkKWApplicationPro.h"

#include "vtkKWWidgetsProConfigure.h" // Needed for KWWidgetsPro_USE_Flickcurl

//----------------------------------------------------------------------------
vtkStandardNewMacro(vtkKWApplicationSettingsInterfacePro);
vtkCxxRevisionMacro(vtkKWApplicationSettingsInterfacePro, "$Revision: 1.8 $");

//----------------------------------------------------------------------------
vtkKWApplicationSettingsInterfacePro::vtkKWApplicationSettingsInterfacePro()
{
  // Flickr settings

  this->FlickrSettingsFrame            = NULL;
  this->FlickrApplicationKeyEntry      = NULL;
  this->FlickrSharedSecretEntry        = NULL;
  this->FlickrAuthenticationTokenEntry = NULL;

  // Graphics settings

  this->GraphicsSettingsFrame = NULL;
  this->UseGPURenderingCheckButton = NULL;
}

//----------------------------------------------------------------------------
vtkKWApplicationSettingsInterfacePro::~vtkKWApplicationSettingsInterfacePro()
{
  // Flickr settings

  if (this->FlickrSettingsFrame)
    {
    this->FlickrSettingsFrame->Delete();
    this->FlickrSettingsFrame = NULL;
    }

  if (this->FlickrApplicationKeyEntry)
    {
    this->FlickrApplicationKeyEntry->Delete();
    this->FlickrApplicationKeyEntry = NULL;
    }

  if (this->FlickrSharedSecretEntry)
    {
    this->FlickrSharedSecretEntry->Delete();
    this->FlickrSharedSecretEntry = NULL;
    }

  if (this->FlickrAuthenticationTokenEntry)
    {
    this->FlickrAuthenticationTokenEntry->Delete();
    this->FlickrAuthenticationTokenEntry = NULL;
    }

  // Graphics settings

  if (this->GraphicsSettingsFrame)
    {
    this->GraphicsSettingsFrame->Delete();
    this->GraphicsSettingsFrame = NULL;
    }

  if (this->UseGPURenderingCheckButton)
    {
    this->UseGPURenderingCheckButton->Delete();
    this->UseGPURenderingCheckButton = NULL;
    }
}

// ---------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::Create()
{
  if (this->IsCreated())
    {
    vtkErrorMacro("The panel is already created.");
    return;
    }

  // Create the superclass instance (and set the application)

  this->Superclass::Create();

  ostrstream tk_cmd;

  vtkKWWidget *page;
  vtkKWFrame *frame;

  page = this->GetPageWidget(this->GetName());
  
#ifdef KWWidgetsPro_USE_Flickcurl
  // --------------------------------------------------------------
  // Flickr settings : main frame

  if (!this->FlickrSettingsFrame)
    {
    this->FlickrSettingsFrame = vtkKWFrameWithLabel::New();
    }

  this->FlickrSettingsFrame->SetParent(this->GetPagesParentWidget());
  this->FlickrSettingsFrame->Create();
  this->FlickrSettingsFrame->SetLabelText(
    ks_("Application Settings|Flickr Settings"));
    
  tk_cmd << "pack " << this->FlickrSettingsFrame->GetWidgetName()
         << " -side top -anchor nw -fill x -padx 2 -pady 2 " 
         << " -in " << page->GetWidgetName() << endl;
  
  frame = this->FlickrSettingsFrame->GetFrame();

  // --------------------------------------------------------------
  // Flickr settings : Application Key

  if (!this->FlickrApplicationKeyEntry)
    {
    this->FlickrApplicationKeyEntry = vtkKWEntryWithLabel::New();
    }

  this->FlickrApplicationKeyEntry->SetParent(frame);
  this->FlickrApplicationKeyEntry->Create();

  this->FlickrApplicationKeyEntry->SetLabelText(ks_("Flickr|API Key:"));
  this->FlickrApplicationKeyEntry->SetLabelWidth(20);
  this->FlickrApplicationKeyEntry->GetWidget()->SetCommand(
    this, "FlickrApplicationKeyCallback");
  this->FlickrApplicationKeyEntry->GetWidget()->SetWidth(40);
  this->FlickrApplicationKeyEntry->SetBalloonHelpString(
    k_("Your Flickr API Key (see http://www.flickr.com/services/api/keys/)"));

  tk_cmd << "pack " << this->FlickrApplicationKeyEntry->GetWidgetName()
    << "  -side top -anchor w -expand no -fill none" << endl;

  // --------------------------------------------------------------
  // Flickr settings : Shared Secret

  if (!this->FlickrSharedSecretEntry)
    {
    this->FlickrSharedSecretEntry = vtkKWEntryWithLabel::New();
    }

  this->FlickrSharedSecretEntry->SetParent(frame);
  this->FlickrSharedSecretEntry->Create();

  this->FlickrSharedSecretEntry->SetLabelText(ks_("Flickr|Shared Secret:"));
  this->FlickrSharedSecretEntry->SetLabelWidth(
    this->FlickrApplicationKeyEntry->GetLabelWidth());
  this->FlickrSharedSecretEntry->GetWidget()->SetCommand(
    this, "FlickrSharedSecretCallback");
  this->FlickrSharedSecretEntry->GetWidget()->SetWidth(
    this->FlickrApplicationKeyEntry->GetWidget()->GetWidth());
  this->FlickrSharedSecretEntry->SetBalloonHelpString(
    k_("Your Flickr Shared Secret (see http://www.flickr.com/services/api/keys/)"));
    
  tk_cmd << "pack " << this->FlickrSharedSecretEntry->GetWidgetName()
    << "  -side top -anchor w -expand no -fill none" << endl;

  // --------------------------------------------------------------
  // Flickr settings : Authentication Token

  if (!this->FlickrAuthenticationTokenEntry)
    {
    this->FlickrAuthenticationTokenEntry = vtkKWEntryWithLabel::New();
    }

  this->FlickrAuthenticationTokenEntry->SetParent(frame);
  this->FlickrAuthenticationTokenEntry->Create();

  this->FlickrAuthenticationTokenEntry->SetLabelText(
    ks_("Flickr|Authentication Token:"));
  this->FlickrAuthenticationTokenEntry->SetLabelWidth(
    this->FlickrApplicationKeyEntry->GetLabelWidth());
  this->FlickrAuthenticationTokenEntry->GetWidget()->SetCommand(
    this, "FlickrAuthenticationTokenCallback");
  this->FlickrAuthenticationTokenEntry->GetWidget()->SetWidth(
    this->FlickrApplicationKeyEntry->GetWidget()->GetWidth());
  this->FlickrAuthenticationTokenEntry->SetBalloonHelpString(
    k_("Your Flickr Authentication Token (see http://www.flickr.com/services/api/keys/)"));
    
  tk_cmd << "pack " << this->FlickrAuthenticationTokenEntry->GetWidgetName()
    << "  -side top -anchor w -expand no -fill none" << endl;
#endif

  // --------------------------------------------------------------
  // Graphics settings : main frame

  if (!this->GraphicsSettingsFrame)
    {
    this->GraphicsSettingsFrame = vtkKWFrameWithLabel::New();
    }

  this->GraphicsSettingsFrame->SetParent(this->GetPagesParentWidget());
  this->GraphicsSettingsFrame->Create();
  this->GraphicsSettingsFrame->SetLabelText(
    ks_("Application Settings|Graphics Settings"));
    
  tk_cmd << "pack " << this->GraphicsSettingsFrame->GetWidgetName()
         << " -side top -anchor nw -fill x -padx 2 -pady 2 " 
         << " -in " << page->GetWidgetName() << endl;
  
  frame = this->GraphicsSettingsFrame->GetFrame();

  // --------------------------------------------------------------
  // Graphics settings : Use GPU Rendering

  if (!this->UseGPURenderingCheckButton)
    {
    this->UseGPURenderingCheckButton = vtkKWCheckButton::New();
    }

  this->UseGPURenderingCheckButton->SetParent(frame);
  this->UseGPURenderingCheckButton->Create();

  this->UseGPURenderingCheckButton->SetText(
    ks_("Application Settings|Use GPU rendering"));
  this->UseGPURenderingCheckButton->SetCommand(
    this, "UseGPURenderingCallback");
  this->UseGPURenderingCheckButton->SetBalloonHelpString(
    k_("Volumetric data displayed in 3D views can be rendered much faster by "
       "offloading computations to your graphics card (GPU). Given the "
       "variety of hardware and graphics drivers, you may experience "
       "application crashes and data losses, please use it at your own risk. "
       "If crashes happens, turn this option OFF make sure to contact us so "
       "that we can improve GPU support, we would welcome your feedback."));

  tk_cmd 
    << "pack " 
    << this->UseGPURenderingCheckButton->GetWidgetName()
    << "  -side top -anchor w -expand no -fill none" << endl;

  // Pack 

  tk_cmd << ends;
  this->Script(tk_cmd.str());
  tk_cmd.rdbuf()->freeze(0);

  // Update according to the current Window

  this->Update();
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::Update()
{
  this->Superclass::Update();

  vtkKWApplicationPro *app_pro = 
    vtkKWApplicationPro::SafeDownCast(this->GetApplication());

  if (!this->IsCreated() || !app_pro)
    {
    return;
    }

#ifdef KWWidgetsPro_USE_Flickcurl
  // Flickr settings : Application Key

  if (this->FlickrApplicationKeyEntry &&
      app_pro->GetFlickrApplicationKey())
    {
    this->FlickrApplicationKeyEntry->GetWidget()->SetValue(
      app_pro->GetFlickrApplicationKey());
    }

  // Flickr settings : Shared Secret

  if (this->FlickrSharedSecretEntry &&
      app_pro->GetFlickrSharedSecret())
    {
    this->FlickrSharedSecretEntry->GetWidget()->SetValue(
      app_pro->GetFlickrSharedSecret());
    }

  // Flickr settings : Authentication Token

  if (this->FlickrAuthenticationTokenEntry &&
      app_pro->GetFlickrAuthenticationToken())
    {
    this->FlickrAuthenticationTokenEntry->GetWidget()->SetValue(
      app_pro->GetFlickrAuthenticationToken());
    }
#endif

  // Graphics settings : Use GPU Rendering
  // Let's disable it in release mode.

  if (this->UseGPURenderingCheckButton && app_pro)
    {
    this->UseGPURenderingCheckButton->SetSelectedState(
      app_pro->GetUseGPURendering());
#if 0
    this->UseGPURenderingCheckButton->SetEnabled(
      app_pro->GetReleaseMode() && !app_pro->GetUseGPURendering() 
      ? 0 : this->GetEnabled());
#endif
    }
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::FlickrApplicationKeyCallback(
  const char *value)
{
#ifdef KWWidgetsPro_USE_Flickcurl
  vtkKWApplicationPro *app_pro = 
    vtkKWApplicationPro::SafeDownCast(this->GetApplication());
  if (app_pro && value)
    {
    app_pro->SetFlickrApplicationKey(value);
    }
#else
  (void)value;
#endif
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::FlickrSharedSecretCallback(
  const char *value)
{
#ifdef KWWidgetsPro_USE_Flickcurl
  vtkKWApplicationPro *app_pro = 
    vtkKWApplicationPro::SafeDownCast(this->GetApplication());
  if (app_pro && value)
    {
    app_pro->SetFlickrSharedSecret(value);
    }
#else
  (void)value;
#endif
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::FlickrAuthenticationTokenCallback(
  const char *value)
{
#ifdef KWWidgetsPro_USE_Flickcurl
  vtkKWApplicationPro *app_pro = 
    vtkKWApplicationPro::SafeDownCast(this->GetApplication());
  if (app_pro && value)
    {
    app_pro->SetFlickrAuthenticationToken(value);
    }
#else
  (void)value;
#endif
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::UseGPURenderingCallback(
  int state)
{
  vtkKWApplicationPro *app_pro = 
    vtkKWApplicationPro::SafeDownCast(this->GetApplication());
  if (app_pro)
    {
    app_pro->SetUseGPURendering(state);
    this->Update();
    }
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::UpdateEnableState()
{
  this->Superclass::UpdateEnableState();

#ifdef KWWidgetsPro_USE_Flickcurl
  // Flickr settings

  if (this->FlickrSettingsFrame)
    {
    this->FlickrSettingsFrame->SetEnabled(this->GetEnabled());
    }

  if (this->FlickrApplicationKeyEntry)
    {
    this->FlickrApplicationKeyEntry->SetEnabled(this->GetEnabled());
    }

  if (this->FlickrSharedSecretEntry)
    {
    this->FlickrSharedSecretEntry->SetEnabled(this->GetEnabled());
    }

  if (this->FlickrAuthenticationTokenEntry)
    {
    this->FlickrAuthenticationTokenEntry->SetEnabled(this->GetEnabled());
    }
#endif

  // Graphics settings

  if (this->GraphicsSettingsFrame)
    {
    this->GraphicsSettingsFrame->SetEnabled(this->GetEnabled());
    }

  if (this->UseGPURenderingCheckButton)
    {
    this->UseGPURenderingCheckButton->SetEnabled(this->GetEnabled());
    }
}

//----------------------------------------------------------------------------
void vtkKWApplicationSettingsInterfacePro::PrintSelf(ostream& os, vtkIndent indent)
{
  this->Superclass::PrintSelf(os,indent);
}