r630: no message
[ctsim.git] / src / dialogs.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          dialogs.cpp
5 **   Purpose:       Dialog routines for CTSim program
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  July 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: dialogs.cpp,v 1.49 2001/03/11 12:37:34 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #ifdef __GNUG__
29 // #pragma implementation
30 #endif
31
32 #include "wx/wxprec.h"
33
34 #ifndef WX_PRECOMP
35 #include "wx/wx.h"
36 #endif
37
38 #if !wxUSE_DOC_VIEW_ARCHITECTURE
39 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
40 #endif
41
42 #include "wx/statline.h"
43 #include "wx/sizer.h"
44 #include "dialogs.h"
45 #include "ctsim.h"
46 #include "ct.h"
47 #include "docs.h"
48 #include "views.h"
49 #include "imagefile.h"
50
51 #if defined(MSVC) || HAVE_SSTREAM
52 #include <sstream>
53 #else
54 #include <sstream_subst>
55 #endif
56
57
58 ///////////////////////////////////////////////////////////////////////
59 // CLASS IMPLEMENTATION
60 //    StringValueAndTitleListBox
61 ///////////////////////////////////////////////////////////////////////
62
63 StringValueAndTitleListBox::StringValueAndTitleListBox (wxDialog* pParent, int nChoices, const char* const aszTitle[], const char* const aszValue[])
64 : wxListBox ()
65 {
66   wxString* psTitle = new wxString [nChoices];
67   for (int i = 0; i < nChoices; i++)
68     psTitle[i] = aszTitle[i];
69   
70   Create (pParent, -1, wxDefaultPosition, wxSize(-1,-1), nChoices, psTitle, wxLB_SINGLE | wxLB_NEEDED_SB);
71   
72   m_ppszValues = aszValue;
73   delete [] psTitle;
74 };
75
76 const char*
77 StringValueAndTitleListBox::getSelectionStringValue () const
78 {
79   return m_ppszValues[GetSelection()];
80 }
81
82 StringValueAndTitleRadioBox::StringValueAndTitleRadioBox (wxDialog* pParent, const wxString& strTitle, int nChoices, const char* const aszTitle[], const char* const aszValue[])
83 : wxRadioBox ()
84 {
85   wxString* psTitle = new wxString [nChoices];
86   for (int i = 0; i < nChoices; i++)
87     psTitle[i] = aszTitle[i];
88   
89   Create (pParent, -1, strTitle, wxDefaultPosition, wxDefaultSize, nChoices, psTitle, 1, wxRA_SPECIFY_COLS);
90   
91   m_ppszValues = aszValue;
92   delete [] psTitle;
93 };
94
95 const char*
96 StringValueAndTitleRadioBox::getSelectionStringValue () const
97 {
98   return m_ppszValues[GetSelection()];
99 }
100
101 ///////////////////////////////////////////////////////////////////////
102 // CLASS IMPLEMENTATION
103 //    DialogGetPhantom
104 ///////////////////////////////////////////////////////////////////////
105
106 DialogGetPhantom::DialogGetPhantom (wxWindow* pParent, int iDefaultPhantom)
107 : wxDialog (pParent, -1, _T("Select Phantom"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
108 {
109   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
110   
111   pTopSizer->Add (new wxStaticText (this, -1, "Select Phantom"), 0, wxCENTER | wxALL, 5);
112   
113   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
114   
115   m_pRadioBoxPhantom = new StringValueAndTitleRadioBox (this, _T("Phantom"), Phantom::getPhantomCount(), Phantom::getPhantomTitleArray(), Phantom::getPhantomNameArray());
116   m_pRadioBoxPhantom->SetSelection (iDefaultPhantom);
117   pTopSizer->Add (m_pRadioBoxPhantom, 0, wxALL | wxALIGN_CENTER);
118   
119   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
120   
121   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
122   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
123   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
124   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
125   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
126   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_PHANTOM);
127   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
128
129   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
130   pButtonOk->SetDefault();
131   
132   SetAutoLayout (true);
133   SetSizer (pTopSizer);
134   pTopSizer->Fit (this);
135   pTopSizer->SetSizeHints (this);
136 }
137
138 const char*
139 DialogGetPhantom::getPhantom()
140 {
141   return m_pRadioBoxPhantom->getSelectionStringValue();
142 }
143
144
145 ///////////////////////////////////////////////////////////////////////
146 // CLASS IMPLEMENTATION
147 //    DialogGetComparisonImage
148 ///////////////////////////////////////////////////////////////////////
149
150 DialogGetComparisonImage::DialogGetComparisonImage (wxWindow* pParent, const char* const pszTitle, const std::vector<ImageFileDocument*>& rVecIF, bool bShowMakeDifference)
151 : wxDialog (pParent, -1, pszTitle, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION), m_rVecIF(rVecIF)
152 {
153   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
154   
155   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxALL, 5);
156   
157   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxALL, 5);
158   
159   int iNImages = m_rVecIF.size();
160   wxString* pstrImages = new wxString [iNImages];
161   for (int i = 0; i < iNImages; i++) {
162     ImageFileView* pView = dynamic_cast<ImageFileView*>(m_rVecIF[i]->GetFirstView());
163     if (pView)
164       pstrImages[i] = pView->getFrame()->GetTitle();
165   }
166
167   m_pListBoxImageChoices = new wxListBox (this, -1, wxDefaultPosition, wxDefaultSize, iNImages, pstrImages, wxLB_SINGLE);
168   delete [] pstrImages;
169
170   m_pListBoxImageChoices->SetSelection (0);
171   pTopSizer->Add (m_pListBoxImageChoices, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
172   
173   if (bShowMakeDifference) {
174     m_pMakeDifferenceImage = new wxCheckBox (this, -1, "Make Difference Image");
175     m_pMakeDifferenceImage->SetValue (FALSE);
176     pTopSizer->Add (m_pMakeDifferenceImage, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
177   } else
178     m_pMakeDifferenceImage = NULL;
179
180   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
181   
182   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
183   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
184   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
185   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
186   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
187   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_COMPARISON);
188   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
189   
190   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
191   pButtonOk->SetDefault();
192   
193   SetAutoLayout (true);
194   SetSizer (pTopSizer);
195   pTopSizer->Fit (this);
196   pTopSizer->SetSizeHints (this);
197 }
198
199 ImageFileDocument*
200 DialogGetComparisonImage::getImageFileDocument()
201 {
202   return m_rVecIF[ m_pListBoxImageChoices->GetSelection() ];
203 }
204
205 bool
206 DialogGetComparisonImage::getMakeDifferenceImage()
207 {
208   if (m_pMakeDifferenceImage)
209     return m_pMakeDifferenceImage->GetValue();
210   else
211     return false;
212 }
213
214
215 /////////////////////////////////////////////////////////////////////
216 // CLASS DiaglogPreferences Implementation
217 /////////////////////////////////////////////////////////////////////
218
219 DialogPreferences::DialogPreferences (wxWindow* pParent, const char* const pszTitle, 
220                    bool bAdvancedOptions, bool bAskDeleteNewDocs, bool bVerboseLogging, bool bStartupTips, bool bUseBackgroundTasks)
221 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
222 {
223   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
224   
225   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
226   
227   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
228
229   m_pCBAdvancedOptions = new wxCheckBox (this, -1, "Advanced Options", wxDefaultPosition, wxSize(250, 25), 0);
230   m_pCBAdvancedOptions->SetValue (bAdvancedOptions);
231   pTopSizer->Add (m_pCBAdvancedOptions, 0, wxALIGN_CENTER_VERTICAL);
232
233   m_pCBAskDeleteNewDocs = new wxCheckBox (this, -1, "Ask \"Save New Documents\" Before Closing", wxDefaultPosition, wxSize(250, 25), 0);
234   m_pCBAskDeleteNewDocs->SetValue (bAskDeleteNewDocs);
235   pTopSizer->Add (m_pCBAskDeleteNewDocs, 0, wxALIGN_CENTER_VERTICAL);
236
237   m_pCBVerboseLogging = new wxCheckBox (this, -1, "Verbose Logging", wxDefaultPosition, wxSize(250, 25), 0);
238   m_pCBVerboseLogging->SetValue (bVerboseLogging);
239   pTopSizer->Add (m_pCBVerboseLogging, 0, wxALIGN_CENTER_VERTICAL);
240
241   m_pCBStartupTips = new wxCheckBox (this, -1, "Show Tips at Start", wxDefaultPosition, wxSize(250, 25), 0);
242   m_pCBStartupTips->SetValue (bStartupTips);
243   pTopSizer->Add (m_pCBStartupTips, 0, wxALIGN_CENTER_VERTICAL);
244
245 #ifdef HAVE_WXTHREADS
246   m_pCBUseBackgroundTasks = new wxCheckBox (this, -1, "Put Tasks in Background", wxDefaultPosition, wxSize(250, 25), 0);
247   m_pCBUseBackgroundTasks->SetValue (bUseBackgroundTasks);
248   pTopSizer->Add (m_pCBUseBackgroundTasks, 0, wxALIGN_CENTER_VERTICAL);
249 #endif
250
251   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
252   
253   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
254   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
255   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
256   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
257   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
258   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_PREFERENCES);
259   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
260   
261   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
262   pButtonOk->SetDefault();
263   
264   SetAutoLayout (true);
265   SetSizer (pTopSizer);
266   pTopSizer->Fit (this);
267   pTopSizer->SetSizeHints (this);
268 }
269
270 DialogPreferences::~DialogPreferences ()
271 {
272 }
273
274 bool
275 DialogPreferences::getAdvancedOptions ()
276 {
277   return static_cast<bool>(m_pCBAdvancedOptions->GetValue());
278 }
279
280 bool
281 DialogPreferences::getAskDeleteNewDocs ()
282 {
283   return static_cast<bool>(m_pCBAskDeleteNewDocs->GetValue());
284 }
285
286 bool
287 DialogPreferences::getVerboseLogging ()
288 {
289   return static_cast<bool>(m_pCBVerboseLogging->GetValue());
290 }
291
292 bool
293 DialogPreferences::getStartupTips ()
294 {
295   return static_cast<bool>(m_pCBStartupTips->GetValue());
296 }
297
298 bool
299 DialogPreferences::getUseBackgroundTasks ()
300 {
301 #ifdef HAVE_WXTHREADS
302   return static_cast<bool>(m_pCBUseBackgroundTasks->GetValue());
303 #else
304   return false;
305 #endif
306 }
307
308
309 /////////////////////////////////////////////////////////////////////
310 // CLASS DiaglogGetMinMax Implementation
311 /////////////////////////////////////////////////////////////////////
312
313 DialogGetMinMax::DialogGetMinMax (wxWindow* pParent, const char* const pszTitle, double dDefaultMin, double dDefaultMax)
314 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
315 {
316   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
317   
318   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
319   
320   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
321   
322   std::ostringstream os;
323   os << dDefaultMin;
324   m_pTextCtrlMin = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
325   std::ostringstream osMax;
326   osMax << dDefaultMax;
327   m_pTextCtrlMax = new wxTextCtrl (this, -1, osMax.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
328   
329   wxFlexGridSizer *pGridSizer = new wxFlexGridSizer (2);
330   pGridSizer->Add (new wxStaticText (this, -1, "Minimum"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
331   pGridSizer->Add (m_pTextCtrlMin, 0, wxALIGN_CENTER_VERTICAL);
332   pGridSizer->Add (new wxStaticText (this, -1, "Maximum"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
333   pGridSizer->Add (m_pTextCtrlMax, 0, wxALIGN_CENTER_VERTICAL);
334   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
335   
336   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
337   
338   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
339   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
340   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
341   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
342   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
343   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_MINMAX);
344   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
345   
346   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
347   pButtonOk->SetDefault();
348   
349   SetAutoLayout (true);
350   SetSizer (pTopSizer);
351   pTopSizer->Fit (this);
352   pTopSizer->SetSizeHints (this);
353 }
354
355 DialogGetMinMax::~DialogGetMinMax ()
356 {
357 }
358
359 double
360 DialogGetMinMax::getMinimum ()
361 {
362   wxString strCtrl = m_pTextCtrlMin->GetValue();
363   double dValue;
364   if (strCtrl.ToDouble (&dValue))
365     return dValue;
366   else
367     return (m_dDefaultMin);
368 }
369
370 double
371 DialogGetMinMax::getMaximum ()
372 {
373   wxString strCtrl = m_pTextCtrlMax->GetValue();
374   double dValue;
375   if (strCtrl.ToDouble (&dValue))
376     return dValue;
377   else
378     return (m_dDefaultMax);
379 }
380
381
382 /////////////////////////////////////////////////////////////////////
383 // CLASS DialogAutoScaleParameters IMPLEMENTATION
384 /////////////////////////////////////////////////////////////////////
385
386 DialogAutoScaleParameters::DialogAutoScaleParameters (wxWindow *pParent, double mean, double mode, double median, double stddev, double dDefaultScaleFactor)
387 : wxDialog (pParent, -1, _T("Auto Scale Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION), m_dMean(mean), m_dMode(mode), m_dMedian(median), m_dStdDev(stddev)
388 {
389   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
390   
391   pTopSizer->Add (new wxStaticText (this, -1, "Auto Scale Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
392   
393   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
394   
395   wxString asTitle[] = {"Median", "Mode", "Mean"};
396   
397   m_pRadioBoxCenter = new wxRadioBox (this, -1, _T("Center"), wxDefaultPosition, wxDefaultSize, 3, asTitle, 1, wxRA_SPECIFY_COLS);
398   m_pRadioBoxCenter->SetSelection (0);
399   pTopSizer->Add (m_pRadioBoxCenter, 0, wxALL | wxALIGN_CENTER);
400   
401   wxGridSizer *pGridSizer = new wxGridSizer (2);
402   pGridSizer->Add (new wxStaticText (this, -1, "Standard Deviation Factor"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
403   std::ostringstream osDefaultFactor;
404   osDefaultFactor << dDefaultScaleFactor;
405   m_pTextCtrlStdDevFactor = new wxTextCtrl (this, -1, osDefaultFactor.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
406   pGridSizer->Add (m_pTextCtrlStdDevFactor, 0, wxALIGN_CENTER_VERTICAL);
407   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
408   
409   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
410   
411   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
412   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
413   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
414   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
415   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
416   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_AUTOSCALE);
417   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
418   
419   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
420   pButtonOk->SetDefault();
421   
422   SetAutoLayout (true);
423   SetSizer (pTopSizer);
424   pTopSizer->Fit (this);
425   pTopSizer->SetSizeHints (this);
426 }
427
428 bool
429 DialogAutoScaleParameters::getMinMax (double* pMin, double* pMax)
430 {
431   int iCenter = m_pRadioBoxCenter->GetSelection();
432   double dCenter = m_dMedian;
433   if (iCenter == 1)
434     dCenter = m_dMode;
435   else if (iCenter == 2)
436     dCenter = m_dMode;
437   
438   wxString sStddevFactor = m_pTextCtrlStdDevFactor->GetValue();
439   double dValue;
440   if (! sStddevFactor.ToDouble (&dValue)) {
441     *theApp->getLog() << "Error: Non-numeric Standard Deviation Factor of " << sStddevFactor << "\n";
442     return false;
443   }
444   double dHalfWidth = dValue * m_dStdDev / 2;
445   *pMin = dCenter - dHalfWidth;
446   *pMax = dCenter + dHalfWidth;
447   *theApp->getLog() << "Setting minimum to " << *pMin << " and maximum to " << *pMax << "\n";
448   
449   return true;
450 }
451
452 double
453 DialogAutoScaleParameters::getAutoScaleFactor ()
454 {
455   wxString sStddevFactor = m_pTextCtrlStdDevFactor->GetValue();
456   double dValue = 1.;
457   if (! sStddevFactor.ToDouble (&dValue)) {
458     *theApp->getLog() << "Error: Non-numeric Standard Deviation Factor of " << sStddevFactor << "\n";
459   }
460   
461   return dValue;
462 }
463
464
465
466 /////////////////////////////////////////////////////////////////////
467 // CLASS IDENTIFICATION
468 //
469 // DialogGetRasterParameters
470 /////////////////////////////////////////////////////////////////////
471
472 DialogGetRasterParameters::DialogGetRasterParameters 
473    (wxWindow* pParent, int iDefaultXSize, int iDefaultYSize, int iDefaultNSamples, double dDefaultViewRatio)
474 : wxDialog (pParent, -1, _T("Set Rasterization Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
475 {
476   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
477   
478   pTopSizer->Add (new wxStaticText (this, -1, "Set Rasterization Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
479   
480   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
481     
482   wxFlexGridSizer *pGridSizer = new wxFlexGridSizer (2);
483   std::ostringstream os;
484   os << iDefaultXSize;
485   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
486   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
487   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_CENTER_VERTICAL);
488   std::ostringstream osYSize;
489   osYSize << iDefaultYSize;
490   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
491   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
492   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_CENTER_VERTICAL);
493   std::ostringstream osViewRatio;
494   osViewRatio << dDefaultViewRatio;
495   m_pTextCtrlViewRatio = new wxTextCtrl (this, -1, osViewRatio.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
496   pGridSizer->Add (new wxStaticText (this, -1, "View Ratio"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
497   pGridSizer->Add (m_pTextCtrlViewRatio, 0, wxALIGN_CENTER_VERTICAL);
498   std::ostringstream osNSamples;
499   osNSamples << iDefaultNSamples;
500   m_pTextCtrlNSamples = new wxTextCtrl (this, -1, osNSamples.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
501   pGridSizer->Add (new wxStaticText (this, -1, "Samples per Pixel"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
502   pGridSizer->Add (m_pTextCtrlNSamples, 0, wxALIGN_CENTER_VERTICAL);
503
504   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
505   
506   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
507   
508   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
509   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
510   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
511   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
512   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
513   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_RASTERIZE);
514   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
515
516   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
517   pButtonOk->SetDefault();
518   
519   SetAutoLayout (true);
520   SetSizer (pTopSizer);
521   pTopSizer->Fit (this);
522   pTopSizer->SetSizeHints (this);
523 }
524
525 DialogGetRasterParameters::~DialogGetRasterParameters ()
526 {
527 }
528
529
530 unsigned int
531 DialogGetRasterParameters::getXSize ()
532 {
533   wxString strCtrl = m_pTextCtrlXSize->GetValue();
534   unsigned long lValue;
535   if (strCtrl.ToULong (&lValue))
536     return lValue;
537   else
538     return (m_iDefaultXSize);
539 }
540
541 unsigned int
542 DialogGetRasterParameters::getYSize ()
543 {
544   wxString strCtrl = m_pTextCtrlYSize->GetValue();
545   unsigned long lValue;
546   if (strCtrl.ToULong (&lValue))
547     return lValue;
548   else
549     return (m_iDefaultYSize);
550 }
551
552 unsigned int
553 DialogGetRasterParameters::getNSamples ()
554 {
555   wxString strCtrl = m_pTextCtrlNSamples->GetValue();
556   unsigned long lValue;
557   if (strCtrl.ToULong (&lValue))
558     return lValue;
559   else
560     return (m_iDefaultNSamples);
561 }
562
563 double
564 DialogGetRasterParameters::getViewRatio ()
565 {
566   wxString strCtrl = m_pTextCtrlViewRatio->GetValue();
567   double dValue;
568   if (strCtrl.ToDouble (&dValue))
569     return dValue;
570   else
571     return (m_dDefaultViewRatio);
572 }
573
574
575 /////////////////////////////////////////////////////////////////////
576 // CLASS IDENTIFICATION
577 //
578 // DialogGetProjectionParameters
579 /////////////////////////////////////////////////////////////////////
580
581
582 DialogGetProjectionParameters::DialogGetProjectionParameters 
583    (wxWindow* pParent, int iDefaultNDet, int iDefaultNView, int iDefaultNSamples, 
584     double dDefaultRotAngle, double dDefaultFocalLength, double dDefaultCenterDetectorLength,
585     double dDefaultViewRatio, double dDefaultScanRatio, int iDefaultGeometry, int iDefaultTrace)
586 : wxDialog (pParent, -1, _T("Set Projection Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
587 {
588   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
589   
590   m_dDefaultRotAngle = dDefaultRotAngle;
591   m_dDefaultFocalLength = dDefaultFocalLength;
592   m_dDefaultCenterDetectorLength = dDefaultCenterDetectorLength;
593   m_dDefaultViewRatio = dDefaultViewRatio;
594   m_dDefaultScanRatio = dDefaultScanRatio;
595   m_iDefaultNSamples = iDefaultNSamples;
596   m_iDefaultNView = iDefaultNView;
597   m_iDefaultNDet = iDefaultNDet;
598   m_iDefaultTrace = iDefaultTrace;
599   m_iDefaultGeometry = iDefaultGeometry;
600   
601   pTopSizer->Add (new wxStaticText (this, -1, "Set Projection Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
602   
603   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
604     
605   wxFlexGridSizer* pGridSizer = new wxFlexGridSizer (2);
606   m_pRadioBoxGeometry = new StringValueAndTitleRadioBox (this, _T("Geometry"), Scanner::getGeometryCount(), Scanner::getGeometryTitleArray(), Scanner::getGeometryNameArray());
607   m_pRadioBoxGeometry->SetSelection (iDefaultGeometry);
608   
609   pGridSizer->Add (m_pRadioBoxGeometry, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
610   
611   m_pRadioBoxTrace = new StringValueAndTitleRadioBox (this, _T("Trace Level"), Trace::getTraceCount(), Trace::getTraceTitleArray(), Trace::getTraceNameArray());
612   m_pRadioBoxTrace->SetSelection (iDefaultTrace);
613   pGridSizer->Add (m_pRadioBoxTrace, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
614
615           wxFlexGridSizer* pText1Sizer = new wxFlexGridSizer(2);
616   std::ostringstream os;
617   os << iDefaultNDet;
618   m_pTextCtrlNDet = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
619   pText1Sizer->Add (new wxStaticText (this, -1, "Detectors"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
620   pText1Sizer->Add (m_pTextCtrlNDet, 0, wxALIGN_CENTER_VERTICAL);
621   std::ostringstream osNView;
622   osNView << iDefaultNView;
623   m_pTextCtrlNView = new wxTextCtrl (this, -1, osNView.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
624   pText1Sizer->Add (new wxStaticText (this, -1, "Views"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
625   pText1Sizer->Add (m_pTextCtrlNView, 0, wxALIGN_CENTER_VERTICAL);
626   std::ostringstream osNSamples;
627   osNSamples << iDefaultNSamples;
628   m_pTextCtrlNSamples = new wxTextCtrl (this, -1, osNSamples.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
629   pText1Sizer->Add (new wxStaticText (this, -1, "Samples per Detector"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
630   pText1Sizer->Add (m_pTextCtrlNSamples, 0, wxALIGN_CENTER_VERTICAL);
631
632   pGridSizer->Add (pText1Sizer);
633
634   wxFlexGridSizer* pText2Sizer = new wxFlexGridSizer(2);
635   std::ostringstream osViewRatio;
636   osViewRatio << dDefaultViewRatio;
637   m_pTextCtrlViewRatio = new wxTextCtrl (this, -1, osViewRatio.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
638   pText2Sizer->Add (new wxStaticText (this, -1, "View Ratio"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
639   pText2Sizer->Add (m_pTextCtrlViewRatio, 0, wxALIGN_CENTER_VERTICAL);
640   std::ostringstream osScanRatio;
641   osScanRatio << dDefaultScanRatio;
642   m_pTextCtrlScanRatio = new wxTextCtrl (this, -1, osScanRatio.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
643   pText2Sizer->Add (new wxStaticText (this, -1, "Scan Ratio"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
644   pText2Sizer->Add (m_pTextCtrlScanRatio, 0, wxALIGN_CENTER_VERTICAL);
645   std::ostringstream osFocalLength;
646   osFocalLength << dDefaultFocalLength;
647   m_pTextCtrlFocalLength = new wxTextCtrl (this, -1, osFocalLength.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
648   pText2Sizer->Add (new wxStaticText (this, -1, "Focal Length Ratio"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
649   pText2Sizer->Add (m_pTextCtrlFocalLength, 0, wxALIGN_CENTER_VERTICAL);
650
651   std::ostringstream osCenterDetectorLength;
652   osCenterDetectorLength << dDefaultCenterDetectorLength;
653   m_pTextCtrlCenterDetectorLength = new wxTextCtrl (this, -1, osCenterDetectorLength.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
654   pText2Sizer->Add (new wxStaticText (this, -1, "Center-Detector Length Ratio"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
655   pText2Sizer->Add (m_pTextCtrlCenterDetectorLength, 0, wxALIGN_CENTER_VERTICAL);
656
657   if (theApp->getAdvancedOptions()) {
658     std::ostringstream osRotAngle;
659     osRotAngle << dDefaultRotAngle;
660     m_pTextCtrlRotAngle = new wxTextCtrl (this, -1, osRotAngle.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
661     pText2Sizer->Add (new wxStaticText (this, -1, "Rotation Angle (Fraction of circle)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
662     pText2Sizer->Add (m_pTextCtrlRotAngle, 0, wxALIGN_CENTER_VERTICAL);
663   }
664   pGridSizer->Add (pText2Sizer);
665
666   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
667   
668   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
669   
670   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
671   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
672   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
673   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
674   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
675   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_PROJECTIONS);
676   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
677   
678   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
679   pButtonOk->SetDefault();
680   
681   SetAutoLayout (true);
682   SetSizer (pTopSizer);
683   pTopSizer->Fit (this);
684   pTopSizer->SetSizeHints (this);
685
686   m_pRadioBoxGeometry->SetFocus();
687 }
688
689 DialogGetProjectionParameters::~DialogGetProjectionParameters ()
690 {
691 }
692
693
694 unsigned int
695 DialogGetProjectionParameters::getNDet ()
696 {
697   wxString strCtrl = m_pTextCtrlNDet->GetValue();
698   unsigned long lValue;
699   if (strCtrl.ToULong (&lValue))
700     return lValue;
701   else
702     return (m_iDefaultNDet);
703 }
704
705 unsigned int
706 DialogGetProjectionParameters::getNView ()
707 {
708   wxString strCtrl = m_pTextCtrlNView->GetValue();
709   unsigned long lValue;
710   if (strCtrl.ToULong (&lValue))
711     return lValue;
712   else
713     return (m_iDefaultNView);
714 }
715
716
717 unsigned int
718 DialogGetProjectionParameters::getNSamples ()
719 {
720   wxString strCtrl = m_pTextCtrlNSamples->GetValue();
721   unsigned long lValue;
722   if (strCtrl.ToULong (&lValue))
723     return lValue;
724   else
725     return (m_iDefaultNSamples);
726 }
727
728 double
729 DialogGetProjectionParameters::getRotAngle ()
730 {
731   if (theApp->getAdvancedOptions()) {
732     wxString strCtrl = m_pTextCtrlRotAngle->GetValue();
733     double dValue;
734     if (strCtrl.ToDouble (&dValue))
735       return (dValue * TWOPI);
736     else
737       return (m_dDefaultRotAngle);
738   } else {
739     if (Scanner::convertGeometryNameToID (m_pRadioBoxGeometry->getSelectionStringValue()) == 
740           Scanner::GEOMETRY_PARALLEL)
741       return (PI);
742     else
743       return (TWOPI);
744   }
745 }
746
747 double
748 DialogGetProjectionParameters::getFocalLengthRatio ()
749 {
750   wxString strCtrl = m_pTextCtrlFocalLength->GetValue();
751   double dValue;
752   if (strCtrl.ToDouble (&dValue))
753     return (dValue);
754   else
755     return (m_dDefaultFocalLength);
756 }
757
758 double
759 DialogGetProjectionParameters::getCenterDetectorLengthRatio ()
760 {
761   wxString strCtrl = m_pTextCtrlCenterDetectorLength->GetValue();
762   double dValue;
763   if (strCtrl.ToDouble (&dValue))
764     return (dValue);
765   else
766     return (m_dDefaultCenterDetectorLength);
767 }
768
769 double
770 DialogGetProjectionParameters::getViewRatio ()
771 {
772   wxString strCtrl = m_pTextCtrlViewRatio->GetValue();
773   double dValue;
774   if (strCtrl.ToDouble (&dValue))
775     return (dValue);
776   else
777     return (m_dDefaultViewRatio);
778 }
779
780 double
781 DialogGetProjectionParameters::getScanRatio ()
782 {
783   wxString strCtrl = m_pTextCtrlScanRatio->GetValue();
784   double dValue;
785   if (strCtrl.ToDouble (&dValue))
786     return (dValue);
787   else
788     return (m_dDefaultScanRatio);
789 }
790
791 const char*
792 DialogGetProjectionParameters::getGeometry ()
793 {
794   return m_pRadioBoxGeometry->getSelectionStringValue();
795 }
796
797 int
798 DialogGetProjectionParameters::getTrace ()
799 {
800   return Trace::convertTraceNameToID(m_pRadioBoxTrace->getSelectionStringValue());
801 }
802
803
804
805 /////////////////////////////////////////////////////////////////////
806 // CLASS IDENTIFICATION
807 //
808 // DialogGetReconstructionParameters
809 /////////////////////////////////////////////////////////////////////
810
811
812 DialogGetReconstructionParameters::DialogGetReconstructionParameters (wxWindow* pParent, int iDefaultXSize, 
813                      int iDefaultYSize, int iDefaultFilterID, double dDefaultHammingParam,  
814                      int iDefaultFilterMethodID, int iDefaultFilterGenerationID, int iDefaultZeropad, 
815                      int iDefaultInterpID, int iDefaultInterpParam, int iDefaultBackprojectID, int iTrace)
816 : wxDialog (pParent, -1, _T("Set Reconstruction Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
817 {
818   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
819   
820   pTopSizer->Add (new wxStaticText (this, -1, "Set Reconstruction Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
821   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
822   
823   wxFlexGridSizer* pGridSizer = NULL;
824   if (theApp->getAdvancedOptions())
825     pGridSizer = new wxFlexGridSizer (4);
826   else
827     pGridSizer = new wxFlexGridSizer (3);
828
829   if (theApp->getAdvancedOptions())
830     m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
831   else
832     m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getReconstructFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
833   m_pRadioBoxFilter->SetSelection (iDefaultFilterID);
834   pGridSizer->Add (m_pRadioBoxFilter, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
835   
836   if (theApp->getAdvancedOptions()) {
837     m_pRadioBoxFilterMethod = new StringValueAndTitleRadioBox (this, _T("Filter Method"), ProcessSignal::getFilterMethodCount(), ProcessSignal::getFilterMethodTitleArray(), ProcessSignal::getFilterMethodNameArray());
838     m_pRadioBoxFilterMethod->SetSelection (iDefaultFilterMethodID);
839     pGridSizer->Add (m_pRadioBoxFilterMethod, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
840   } else {
841 #if HAVE_FFTW
842     static const char* aszFilterMethodTitle[] = {"Convolution", "FFT"};
843     static const char* aszFilterMethodName[] = {"convolution", "rfftw"};
844 #else
845     static const char* aszFilterMethodTitle[] = {"Convolution", "Fourier"};
846     static const char* aszFilterMethodName[] = {"convolution", "fourier-table"};
847 #endif
848       m_pRadioBoxFilterMethod = new StringValueAndTitleRadioBox (this, _T("Filter Method"), 2, aszFilterMethodTitle, aszFilterMethodName);
849 #if HAVE_FFTW
850       m_pRadioBoxFilterMethod->SetSelection (1);
851 #else
852       m_pRadioBoxFilterMethod->SetSelection (0);
853 #endif
854       pGridSizer->Add (m_pRadioBoxFilterMethod, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
855   }
856
857   if (theApp->getAdvancedOptions()) {
858     m_pRadioBoxFilterGeneration = new StringValueAndTitleRadioBox (this, _T("Filter Generation"), ProcessSignal::getFilterGenerationCount(), ProcessSignal::getFilterGenerationTitleArray(), ProcessSignal::getFilterGenerationNameArray());
859     m_pRadioBoxFilterGeneration->SetSelection (iDefaultFilterGenerationID);
860     pGridSizer->Add (m_pRadioBoxFilterGeneration, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
861   
862     m_pRadioBoxBackproject = new StringValueAndTitleRadioBox (this, _T("Backprojection"), Backprojector::getBackprojectCount(), Backprojector::getBackprojectTitleArray(), Backprojector::getBackprojectNameArray());
863     m_pRadioBoxBackproject->SetSelection (iDefaultBackprojectID);
864     pGridSizer->Add (m_pRadioBoxBackproject, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
865   }
866
867   m_pRadioBoxInterp = new StringValueAndTitleRadioBox (this, _T("Interpolation"), Backprojector::getInterpCount(), Backprojector::getInterpTitleArray(), Backprojector::getInterpNameArray());
868   m_pRadioBoxInterp->SetSelection (iDefaultInterpID);
869   pGridSizer->Add (m_pRadioBoxInterp, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
870   
871   static const char* aszTraceTitle[] = {"None", "Full"};
872   static const char* aszTraceName[] = {"none", "full"};
873   m_pRadioBoxTrace = new StringValueAndTitleRadioBox (this, _T("Trace Level"), 2, aszTraceTitle, aszTraceName);
874   iTrace = clamp(iTrace, 0, 1);
875   m_pRadioBoxTrace->SetSelection (iTrace);
876   pGridSizer->Add (m_pRadioBoxTrace);
877
878   wxFlexGridSizer* pTextGridSizer = new wxFlexGridSizer (2);
879   std::ostringstream os;
880   os << iDefaultXSize;
881   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
882   pTextGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
883   pTextGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
884   std::ostringstream osYSize;
885   osYSize << iDefaultYSize;
886   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
887   pTextGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
888   pTextGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
889
890   std::ostringstream osHammingParam;
891   osHammingParam << dDefaultHammingParam;
892   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osHammingParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
893   pTextGridSizer->Add (new wxStaticText (this, -1, "Hamming Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
894   pTextGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
895
896   if (theApp->getAdvancedOptions()) {
897     std::ostringstream osZeropad;
898     osZeropad << iDefaultZeropad;
899     m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
900     pTextGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
901     pTextGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
902   }
903   pGridSizer->Add (pTextGridSizer);
904
905 #if HAVE_FREQ_PREINTERP
906   std::ostringstream osInterpParam;
907   osInterpParam << iDefaultInterpParam;
908   m_pTextCtrlInterpParam = new wxTextCtrl (this, -1, osInterpParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
909   pGridSizer->Add (new wxStaticText (this, -1, "Interpolation Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
910   pGridSizer->Add (m_pTextCtrlInterpParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
911 #endif  
912   
913   pTopSizer->Add (pGridSizer, 1, wxALL, 3);
914   
915   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
916   
917   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
918   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
919   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
920   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
921   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
922   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_RECONSTRUCTION);
923   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
924   
925   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
926   pButtonOk->SetDefault();
927   
928   SetAutoLayout (true);
929   SetSizer (pTopSizer);
930   pTopSizer->Layout();
931   pTopSizer->Fit (this);
932   pTopSizer->SetSizeHints (this);
933 }
934
935 DialogGetReconstructionParameters::~DialogGetReconstructionParameters ()
936 {
937 }
938
939
940 unsigned int
941 DialogGetReconstructionParameters::getXSize ()
942 {
943   wxString strCtrl = m_pTextCtrlXSize->GetValue();
944   unsigned long lValue;
945   if (strCtrl.ToULong (&lValue))
946     return lValue;
947   else
948     return (m_iDefaultXSize);
949 }
950
951 unsigned int
952 DialogGetReconstructionParameters::getYSize ()
953 {
954   wxString strCtrl = m_pTextCtrlYSize->GetValue();
955   unsigned long lValue;
956   if (strCtrl.ToULong (&lValue))
957     return lValue;
958   else
959     return (m_iDefaultYSize);
960 }
961
962 unsigned int
963 DialogGetReconstructionParameters::getZeropad ()
964 {
965   if (theApp->getAdvancedOptions()) {
966     wxString strCtrl = m_pTextCtrlZeropad->GetValue();
967     unsigned long lValue;
968     if (strCtrl.ToULong (&lValue))
969       return lValue;
970     else
971       return (m_iDefaultZeropad);
972   } else
973     return 1;
974 }
975
976
977 unsigned int
978 DialogGetReconstructionParameters::getInterpParam ()
979 {
980 #if HAVE_FREQ_PREINTERP
981   wxString strCtrl = m_pTextCtrlInterpParam->GetValue();
982   unsigned long lValue;
983   if (strCtrl.ToULong (&lValue))
984     return lValue;
985   else
986     return (m_iDefaultInterpParam);
987 #else
988   return 1;
989 #endif
990 }
991
992 double
993 DialogGetReconstructionParameters::getFilterParam ()
994 {
995   wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
996   double dValue;
997   if (strCtrl.ToDouble (&dValue))
998     return (dValue);
999   else
1000     return (m_dDefaultFilterParam);
1001 }
1002
1003 const char*
1004 DialogGetReconstructionParameters::getFilterName ()
1005 {
1006   return m_pRadioBoxFilter->getSelectionStringValue();
1007 }
1008
1009 const char*
1010 DialogGetReconstructionParameters::getFilterMethodName ()
1011 {
1012   return m_pRadioBoxFilterMethod->getSelectionStringValue();
1013 }
1014
1015 const char*
1016 DialogGetReconstructionParameters::getInterpName ()
1017 {
1018   return m_pRadioBoxInterp->getSelectionStringValue();
1019 }
1020
1021 int
1022 DialogGetReconstructionParameters::getTrace ()
1023 {
1024   int iTrace = 0;
1025   if (strcmp("full", m_pRadioBoxTrace->getSelectionStringValue()) == 0)
1026     iTrace = Trace::TRACE_PLOT;
1027   return iTrace;
1028 }
1029
1030 const char*
1031 DialogGetReconstructionParameters::getBackprojectName ()
1032 {
1033   if (theApp->getAdvancedOptions()) {
1034     return m_pRadioBoxBackproject->getSelectionStringValue();
1035   } else
1036     return "idiff";
1037 }
1038
1039 const char*
1040 DialogGetReconstructionParameters::getFilterGenerationName ()
1041 {
1042   if (theApp->getAdvancedOptions()) {
1043     return m_pRadioBoxFilterGeneration->getSelectionStringValue();
1044   } else {
1045     if (ProcessSignal::convertFilterMethodNameToID(m_pRadioBoxFilterMethod->getSelectionStringValue())
1046         == ProcessSignal::FILTER_METHOD_CONVOLUTION)
1047       return "direct";
1048     else
1049       return "inverse-fourier";
1050   }
1051 }
1052
1053
1054 /////////////////////////////////////////////////////////////////////
1055 // CLASS IDENTIFICATION
1056 //
1057 // DialogGetFilterParameters
1058 /////////////////////////////////////////////////////////////////////
1059
1060
1061
1062 DialogGetFilterParameters::DialogGetFilterParameters (wxWindow* pParent, int iDefaultXSize, int iDefaultYSize, int iDefaultFilterID, double dDefaultFilterParam,  double dDefaultBandwidth, int iDefaultDomainID, double dDefaultInputScale, double dDefaultOutputScale)
1063 : wxDialog (pParent, -1, _T("Set Filter Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1064 {
1065   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1066   
1067   pTopSizer->Add (new wxStaticText (this, -1, "Set Filter Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5); 
1068   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1069   
1070   wxFlexGridSizer* pGridSizer = new wxFlexGridSizer (2);
1071
1072   m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
1073   m_pRadioBoxFilter->SetSelection (iDefaultFilterID);
1074   pGridSizer->Add (m_pRadioBoxFilter, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
1075   
1076   m_pRadioBoxDomain = new StringValueAndTitleRadioBox (this, _T("Domain"), SignalFilter::getDomainCount(), SignalFilter::getDomainTitleArray(), SignalFilter::getDomainNameArray());
1077   m_pRadioBoxDomain->SetSelection (iDefaultDomainID);
1078   pGridSizer->Add (m_pRadioBoxDomain, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
1079   
1080   std::ostringstream os;
1081   os << iDefaultXSize;
1082   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1083   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1084   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1085
1086   std::ostringstream osYSize;
1087   osYSize << iDefaultYSize;
1088   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1089   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1090   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1091
1092   std::ostringstream osFilterParam;
1093   osFilterParam << dDefaultFilterParam;
1094   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osFilterParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1095   pGridSizer->Add (new wxStaticText (this, -1, "Filter Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1096   pGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1097
1098   std::ostringstream osBandwidth;
1099   osBandwidth << dDefaultBandwidth;
1100   m_pTextCtrlBandwidth = new wxTextCtrl (this, -1, osBandwidth.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1101   pGridSizer->Add (new wxStaticText (this, -1, "Bandwidth"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1102   pGridSizer->Add (m_pTextCtrlBandwidth, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1103
1104   std::ostringstream osInputScale;
1105   osInputScale << dDefaultInputScale;
1106   m_pTextCtrlInputScale = new wxTextCtrl (this, -1, osInputScale.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1107   pGridSizer->Add (new wxStaticText (this, -1, "Axis (input) Scale"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1108   pGridSizer->Add (m_pTextCtrlInputScale, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1109
1110   std::ostringstream osOutputScale;
1111   osOutputScale << dDefaultOutputScale;
1112   m_pTextCtrlOutputScale = new wxTextCtrl (this, -1, osOutputScale.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1113   pGridSizer->Add (new wxStaticText (this, -1, "Filter Output Scale"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1114   pGridSizer->Add (m_pTextCtrlOutputScale, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1115   
1116   pTopSizer->Add (pGridSizer, 1, wxALL, 3);
1117   
1118   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1119   
1120   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1121   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1122   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1123   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1124   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1125   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_FILTER);
1126   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1127   
1128   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1129   pButtonOk->SetDefault();
1130
1131   SetAutoLayout (true);
1132   SetSizer (pTopSizer);
1133   pTopSizer->Layout();
1134   pTopSizer->Fit (this);
1135   pTopSizer->SetSizeHints (this);
1136 }
1137
1138 DialogGetFilterParameters::~DialogGetFilterParameters ()
1139 {
1140 }
1141
1142
1143 unsigned int
1144 DialogGetFilterParameters::getXSize ()
1145 {
1146   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1147   unsigned long lValue;
1148   if (strCtrl.ToULong (&lValue))
1149     return lValue;
1150   else
1151     return (m_iDefaultXSize);
1152 }
1153
1154 unsigned int
1155 DialogGetFilterParameters::getYSize ()
1156 {
1157   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1158   unsigned long lValue;
1159   if (strCtrl.ToULong (&lValue))
1160     return lValue;
1161   else
1162     return (m_iDefaultYSize);
1163 }
1164
1165 double
1166 DialogGetFilterParameters::getBandwidth ()
1167 {
1168   wxString strCtrl = m_pTextCtrlBandwidth->GetValue();
1169   double dValue;
1170   if (strCtrl.ToDouble (&dValue))
1171     return dValue;
1172   else
1173     return (m_dDefaultBandwidth);
1174 }
1175
1176 double
1177 DialogGetFilterParameters::getFilterParam ()
1178 {
1179   wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
1180   double dValue;
1181   if (strCtrl.ToDouble (&dValue))
1182     return (dValue);
1183   else
1184     return (m_dDefaultFilterParam);
1185 }
1186
1187 double
1188 DialogGetFilterParameters::getInputScale ()
1189 {
1190   wxString strCtrl = m_pTextCtrlInputScale->GetValue();
1191   double dValue;
1192   if (strCtrl.ToDouble (&dValue))
1193     return dValue;
1194   else
1195     return (m_dDefaultInputScale);
1196 }
1197
1198 double
1199 DialogGetFilterParameters::getOutputScale ()
1200 {
1201   wxString strCtrl = m_pTextCtrlOutputScale->GetValue();
1202   double dValue;
1203   if (strCtrl.ToDouble (&dValue))
1204     return dValue;
1205   else
1206     return (m_dDefaultOutputScale);
1207 }
1208
1209 const char*
1210 DialogGetFilterParameters::getFilterName ()
1211 {
1212   return m_pRadioBoxFilter->getSelectionStringValue();
1213 }
1214
1215 const char*
1216 DialogGetFilterParameters::getDomainName ()
1217 {
1218   return m_pRadioBoxDomain->getSelectionStringValue();
1219 }
1220
1221
1222 ///////////////////////////////////////////////////////////////////////
1223 // CLASS IMPLEMENTATION
1224 //    DialogExportParameters
1225 ///////////////////////////////////////////////////////////////////////
1226
1227 DialogExportParameters::DialogExportParameters (wxWindow* pParent, int iDefaultFormatID)
1228 : wxDialog (pParent, -1, _T("Select ExportParameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1229 {
1230   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1231   
1232   pTopSizer->Add (new wxStaticText (this, -1, "Select Export Format"), 0, wxALIGN_CENTER | wxALL, 5);
1233   
1234   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxALL, 5);
1235   
1236   m_pRadioBoxFormat = new StringValueAndTitleRadioBox (this, _T("File Type"), 
1237     ImageFile::getExportFormatCount(), ImageFile::getExportFormatTitleArray(), ImageFile::getExportFormatNameArray());
1238   m_pRadioBoxFormat->SetSelection (iDefaultFormatID);
1239   pTopSizer->Add (m_pRadioBoxFormat, 0, wxALL | wxALIGN_CENTER);
1240   
1241   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1242   
1243   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1244   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1245   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1246   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1247   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1248   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_EXPORT);
1249   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1250   
1251   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1252   pButtonOk->SetDefault();
1253
1254   SetAutoLayout (true);
1255   SetSizer (pTopSizer);
1256   pTopSizer->Fit (this);
1257   pTopSizer->SetSizeHints (this);
1258 }
1259
1260 const char*
1261 DialogExportParameters::getFormatName()
1262 {
1263   return m_pRadioBoxFormat->getSelectionStringValue();
1264 }
1265
1266
1267 ///////////////////////////////////////////////////////////////////////
1268 // CLASS IMPLEMENTATION
1269 //    DialogImportParameters
1270 ///////////////////////////////////////////////////////////////////////
1271
1272 DialogImportParameters::DialogImportParameters (wxWindow* pParent, int iDefaultFormatID)
1273 : wxDialog (pParent, -1, _T("Select Import Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1274 {
1275   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1276   
1277   pTopSizer->Add (new wxStaticText (this, -1, "Select Import Format"), 0, wxALIGN_CENTER | wxALL, 5);
1278   
1279   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxALL, 5);
1280   
1281   m_pRadioBoxFormat = new StringValueAndTitleRadioBox (this, _T("File Type"), 
1282     ImageFile::getImportFormatCount(), ImageFile::getImportFormatTitleArray(), ImageFile::getImportFormatNameArray());
1283   m_pRadioBoxFormat->SetSelection (iDefaultFormatID);
1284   pTopSizer->Add (m_pRadioBoxFormat, 0, wxALL | wxALIGN_CENTER);
1285   
1286   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1287   
1288   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1289   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1290   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1291   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1292   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1293   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_IMPORT);
1294   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1295   
1296   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1297   pButtonOk->SetDefault();
1298
1299   SetAutoLayout (true);
1300   SetSizer (pTopSizer);
1301   pTopSizer->Fit (this);
1302   pTopSizer->SetSizeHints (this);
1303 }
1304
1305 const char*
1306 DialogImportParameters::getFormatName()
1307 {
1308   return m_pRadioBoxFormat->getSelectionStringValue();
1309 }
1310
1311
1312 /////////////////////////////////////////////////////////////////////
1313 // CLASS DiaglogGetXYSize Implementation
1314 /////////////////////////////////////////////////////////////////////
1315
1316 DialogGetXYSize::DialogGetXYSize (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize, int iDefaultYSize)
1317 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1318 {
1319   m_iDefaultXSize = iDefaultXSize;
1320   m_iDefaultYSize = iDefaultYSize;
1321
1322   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1323   
1324   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
1325   
1326   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1327   
1328   std::ostringstream os;
1329   os << iDefaultXSize;
1330   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1331   std::ostringstream osYSize;
1332   osYSize << iDefaultYSize;
1333   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1334   
1335   wxFlexGridSizer *pGridSizer = new wxFlexGridSizer (2);
1336   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1337   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_CENTER_VERTICAL);
1338   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1339   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_CENTER_VERTICAL);
1340   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
1341   
1342   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1343   
1344   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1345   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1346   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1347   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1348   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1349   
1350   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1351   pButtonOk->SetDefault();
1352
1353   SetAutoLayout (true);
1354   SetSizer (pTopSizer);
1355   pTopSizer->Fit (this);
1356   pTopSizer->SetSizeHints (this);
1357 }
1358
1359 DialogGetXYSize::~DialogGetXYSize ()
1360 {
1361 }
1362
1363 unsigned int
1364 DialogGetXYSize::getXSize ()
1365 {
1366   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1367   long lValue;
1368   if (strCtrl.ToLong (&lValue))
1369     return lValue;
1370   else
1371     return (m_iDefaultXSize);
1372 }
1373
1374 unsigned int
1375 DialogGetXYSize::getYSize ()
1376 {
1377   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1378   long lValue;
1379   if (strCtrl.ToLong (&lValue))
1380     return lValue;
1381   else
1382     return (m_iDefaultYSize);
1383 }
1384
1385
1386
1387 /////////////////////////////////////////////////////////////////////
1388 // CLASS IDENTIFICATION
1389 //
1390 // DialogGetConvertPolarParameters
1391 /////////////////////////////////////////////////////////////////////
1392
1393 DialogGetConvertPolarParameters::DialogGetConvertPolarParameters (wxWindow* pParent, const char* const pszTitle, 
1394        int iDefaultXSize, int iDefaultYSize, int iDefaultInterpolationID, int iDefaultZeropad)
1395 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1396 {
1397   m_iDefaultXSize = iDefaultXSize;
1398   m_iDefaultYSize = iDefaultYSize;
1399   m_iDefaultZeropad = iDefaultZeropad;
1400
1401   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1402   
1403   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5); 
1404   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1405   
1406   wxFlexGridSizer* pGridSizer = new wxFlexGridSizer (1);
1407   
1408   m_pRadioBoxInterpolation = new StringValueAndTitleRadioBox (this, _T("Interpolation"), Projections::getInterpCount(), Projections::getInterpTitleArray(), Projections::getInterpNameArray());
1409   m_pRadioBoxInterpolation->SetSelection (iDefaultInterpolationID);
1410   pGridSizer->Add (m_pRadioBoxInterpolation, 0, wxALL | wxALIGN_CENTER);
1411   
1412   wxFlexGridSizer* pTextGridSizer = new wxFlexGridSizer (2);
1413   std::ostringstream os;
1414   os << iDefaultXSize;
1415   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);  
1416   pTextGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1417   pTextGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1418   std::ostringstream osYSize;
1419   osYSize << iDefaultYSize;
1420   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1421   pTextGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1422   pTextGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1423 #ifdef DEBUG
1424   if (iDefaultZeropad >= 0) {
1425     std::ostringstream osZeropad;
1426     osZeropad << iDefaultZeropad;
1427     m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1428     pTextGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1429     pTextGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1430   }
1431 #endif
1432
1433   pGridSizer->Add (pTextGridSizer, 0, wxALIGN_CENTER | wxALL);
1434
1435   pTopSizer->Add (pGridSizer, 1, wxALL | wxALIGN_CENTER, 3);
1436   
1437   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1438   
1439   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1440   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1441   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1442   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1443   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1444   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_POLAR);
1445   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1446   
1447   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1448   pButtonOk->SetDefault();
1449   SetAutoLayout (true);
1450   SetSizer (pTopSizer);
1451   pTopSizer->Layout();
1452   pTopSizer->Fit (this);
1453   pTopSizer->SetSizeHints (this);
1454 }
1455
1456
1457 DialogGetConvertPolarParameters::~DialogGetConvertPolarParameters ()
1458 {
1459 }
1460
1461
1462 unsigned int
1463 DialogGetConvertPolarParameters::getXSize ()
1464 {
1465   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1466   unsigned long lValue;
1467   if (strCtrl.ToULong (&lValue))
1468     return lValue;
1469   else
1470     return (m_iDefaultXSize);
1471 }
1472
1473 unsigned int
1474 DialogGetConvertPolarParameters::getYSize ()
1475 {
1476   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1477   unsigned long lValue;
1478   if (strCtrl.ToULong (&lValue))
1479     return lValue;
1480   else
1481     return (m_iDefaultYSize);
1482 }
1483
1484 unsigned int
1485 DialogGetConvertPolarParameters::getZeropad ()
1486 {
1487 #ifdef DEBUG
1488   wxString strCtrl = m_pTextCtrlZeropad->GetValue();
1489   unsigned long lValue;
1490   if (strCtrl.ToULong (&lValue))
1491     return lValue;
1492   else
1493     return (m_iDefaultZeropad);
1494 #else
1495   return 0;
1496 #endif
1497 }
1498
1499 const char*
1500 DialogGetConvertPolarParameters::getInterpolationName ()
1501 {
1502   return m_pRadioBoxInterpolation->getSelectionStringValue();
1503 }
1504