r617: *** empty log 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.48 2001/03/07 21:18:50 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
687 DialogGetProjectionParameters::~DialogGetProjectionParameters ()
688 {
689 }
690
691
692 unsigned int
693 DialogGetProjectionParameters::getNDet ()
694 {
695   wxString strCtrl = m_pTextCtrlNDet->GetValue();
696   unsigned long lValue;
697   if (strCtrl.ToULong (&lValue))
698     return lValue;
699   else
700     return (m_iDefaultNDet);
701 }
702
703 unsigned int
704 DialogGetProjectionParameters::getNView ()
705 {
706   wxString strCtrl = m_pTextCtrlNView->GetValue();
707   unsigned long lValue;
708   if (strCtrl.ToULong (&lValue))
709     return lValue;
710   else
711     return (m_iDefaultNView);
712 }
713
714
715 unsigned int
716 DialogGetProjectionParameters::getNSamples ()
717 {
718   wxString strCtrl = m_pTextCtrlNSamples->GetValue();
719   unsigned long lValue;
720   if (strCtrl.ToULong (&lValue))
721     return lValue;
722   else
723     return (m_iDefaultNSamples);
724 }
725
726 double
727 DialogGetProjectionParameters::getRotAngle ()
728 {
729   if (theApp->getAdvancedOptions()) {
730     wxString strCtrl = m_pTextCtrlRotAngle->GetValue();
731     double dValue;
732     if (strCtrl.ToDouble (&dValue))
733       return (dValue * TWOPI);
734     else
735       return (m_dDefaultRotAngle);
736   } else {
737     if (Scanner::convertGeometryNameToID (m_pRadioBoxGeometry->getSelectionStringValue()) == 
738           Scanner::GEOMETRY_PARALLEL)
739       return (PI);
740     else
741       return (TWOPI);
742   }
743 }
744
745 double
746 DialogGetProjectionParameters::getFocalLengthRatio ()
747 {
748   wxString strCtrl = m_pTextCtrlFocalLength->GetValue();
749   double dValue;
750   if (strCtrl.ToDouble (&dValue))
751     return (dValue);
752   else
753     return (m_dDefaultFocalLength);
754 }
755
756 double
757 DialogGetProjectionParameters::getCenterDetectorLengthRatio ()
758 {
759   wxString strCtrl = m_pTextCtrlCenterDetectorLength->GetValue();
760   double dValue;
761   if (strCtrl.ToDouble (&dValue))
762     return (dValue);
763   else
764     return (m_dDefaultCenterDetectorLength);
765 }
766
767 double
768 DialogGetProjectionParameters::getViewRatio ()
769 {
770   wxString strCtrl = m_pTextCtrlViewRatio->GetValue();
771   double dValue;
772   if (strCtrl.ToDouble (&dValue))
773     return (dValue);
774   else
775     return (m_dDefaultViewRatio);
776 }
777
778 double
779 DialogGetProjectionParameters::getScanRatio ()
780 {
781   wxString strCtrl = m_pTextCtrlScanRatio->GetValue();
782   double dValue;
783   if (strCtrl.ToDouble (&dValue))
784     return (dValue);
785   else
786     return (m_dDefaultScanRatio);
787 }
788
789 const char*
790 DialogGetProjectionParameters::getGeometry ()
791 {
792   return m_pRadioBoxGeometry->getSelectionStringValue();
793 }
794
795 int
796 DialogGetProjectionParameters::getTrace ()
797 {
798   return Trace::convertTraceNameToID(m_pRadioBoxTrace->getSelectionStringValue());
799 }
800
801
802
803 /////////////////////////////////////////////////////////////////////
804 // CLASS IDENTIFICATION
805 //
806 // DialogGetReconstructionParameters
807 /////////////////////////////////////////////////////////////////////
808
809
810 DialogGetReconstructionParameters::DialogGetReconstructionParameters (wxWindow* pParent, int iDefaultXSize, 
811                      int iDefaultYSize, int iDefaultFilterID, double dDefaultHammingParam,  
812                      int iDefaultFilterMethodID, int iDefaultFilterGenerationID, int iDefaultZeropad, 
813                      int iDefaultInterpID, int iDefaultInterpParam, int iDefaultBackprojectID, int iTrace)
814 : wxDialog (pParent, -1, _T("Set Reconstruction Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
815 {
816   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
817   
818   pTopSizer->Add (new wxStaticText (this, -1, "Set Reconstruction Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
819   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
820   
821   wxFlexGridSizer* pGridSizer = NULL;
822   if (theApp->getAdvancedOptions())
823     pGridSizer = new wxFlexGridSizer (4);
824   else
825     pGridSizer = new wxFlexGridSizer (3);
826
827   if (theApp->getAdvancedOptions())
828     m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
829   else
830     m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getReconstructFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
831   m_pRadioBoxFilter->SetSelection (iDefaultFilterID);
832   pGridSizer->Add (m_pRadioBoxFilter, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
833   
834   if (theApp->getAdvancedOptions()) {
835     m_pRadioBoxFilterMethod = new StringValueAndTitleRadioBox (this, _T("Filter Method"), ProcessSignal::getFilterMethodCount(), ProcessSignal::getFilterMethodTitleArray(), ProcessSignal::getFilterMethodNameArray());
836     m_pRadioBoxFilterMethod->SetSelection (iDefaultFilterMethodID);
837     pGridSizer->Add (m_pRadioBoxFilterMethod, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
838   } else {
839 #if HAVE_FFTW
840     static const char* aszFilterMethodTitle[] = {"Convolution", "FFT"};
841     static const char* aszFilterMethodName[] = {"convolution", "rfftw"};
842 #else
843     static const char* aszFilterMethodTitle[] = {"Convolution", "Fourier"};
844     static const char* aszFilterMethodName[] = {"convolution", "fourier-table"};
845 #endif
846       m_pRadioBoxFilterMethod = new StringValueAndTitleRadioBox (this, _T("Filter Method"), 2, aszFilterMethodTitle, aszFilterMethodName);
847 #if HAVE_FFTW
848       m_pRadioBoxFilterMethod->SetSelection (1);
849 #else
850       m_pRadioBoxFilterMethod->SetSelection (0);
851 #endif
852       pGridSizer->Add (m_pRadioBoxFilterMethod, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
853   }
854
855   if (theApp->getAdvancedOptions()) {
856     m_pRadioBoxFilterGeneration = new StringValueAndTitleRadioBox (this, _T("Filter Generation"), ProcessSignal::getFilterGenerationCount(), ProcessSignal::getFilterGenerationTitleArray(), ProcessSignal::getFilterGenerationNameArray());
857     m_pRadioBoxFilterGeneration->SetSelection (iDefaultFilterGenerationID);
858     pGridSizer->Add (m_pRadioBoxFilterGeneration, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
859   
860     m_pRadioBoxBackproject = new StringValueAndTitleRadioBox (this, _T("Backprojection"), Backprojector::getBackprojectCount(), Backprojector::getBackprojectTitleArray(), Backprojector::getBackprojectNameArray());
861     m_pRadioBoxBackproject->SetSelection (iDefaultBackprojectID);
862     pGridSizer->Add (m_pRadioBoxBackproject, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
863   }
864
865   m_pRadioBoxInterp = new StringValueAndTitleRadioBox (this, _T("Interpolation"), Backprojector::getInterpCount(), Backprojector::getInterpTitleArray(), Backprojector::getInterpNameArray());
866   m_pRadioBoxInterp->SetSelection (iDefaultInterpID);
867   pGridSizer->Add (m_pRadioBoxInterp, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
868   
869   static const char* aszTraceTitle[] = {"None", "Full"};
870   static const char* aszTraceName[] = {"none", "full"};
871   m_pRadioBoxTrace = new StringValueAndTitleRadioBox (this, _T("Trace Level"), 2, aszTraceTitle, aszTraceName);
872   iTrace = clamp(iTrace, 0, 1);
873   m_pRadioBoxTrace->SetSelection (iTrace);
874   pGridSizer->Add (m_pRadioBoxTrace);
875
876   wxFlexGridSizer* pTextGridSizer = new wxFlexGridSizer (2);
877   std::ostringstream os;
878   os << iDefaultXSize;
879   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
880   pTextGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
881   pTextGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
882   std::ostringstream osYSize;
883   osYSize << iDefaultYSize;
884   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
885   pTextGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
886   pTextGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
887
888   std::ostringstream osHammingParam;
889   osHammingParam << dDefaultHammingParam;
890   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osHammingParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
891   pTextGridSizer->Add (new wxStaticText (this, -1, "Hamming Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
892   pTextGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
893
894   if (theApp->getAdvancedOptions()) {
895     std::ostringstream osZeropad;
896     osZeropad << iDefaultZeropad;
897     m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
898     pTextGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
899     pTextGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
900   }
901   pGridSizer->Add (pTextGridSizer);
902
903 #if HAVE_FREQ_PREINTERP
904   std::ostringstream osInterpParam;
905   osInterpParam << iDefaultInterpParam;
906   m_pTextCtrlInterpParam = new wxTextCtrl (this, -1, osInterpParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
907   pGridSizer->Add (new wxStaticText (this, -1, "Interpolation Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
908   pGridSizer->Add (m_pTextCtrlInterpParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
909 #endif  
910   
911   pTopSizer->Add (pGridSizer, 1, wxALL, 3);
912   
913   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
914   
915   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
916   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
917   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
918   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
919   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
920   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_RECONSTRUCTION);
921   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
922   
923   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
924   pButtonOk->SetDefault();
925   
926   SetAutoLayout (true);
927   SetSizer (pTopSizer);
928   pTopSizer->Layout();
929   pTopSizer->Fit (this);
930   pTopSizer->SetSizeHints (this);
931 }
932
933 DialogGetReconstructionParameters::~DialogGetReconstructionParameters ()
934 {
935 }
936
937
938 unsigned int
939 DialogGetReconstructionParameters::getXSize ()
940 {
941   wxString strCtrl = m_pTextCtrlXSize->GetValue();
942   unsigned long lValue;
943   if (strCtrl.ToULong (&lValue))
944     return lValue;
945   else
946     return (m_iDefaultXSize);
947 }
948
949 unsigned int
950 DialogGetReconstructionParameters::getYSize ()
951 {
952   wxString strCtrl = m_pTextCtrlYSize->GetValue();
953   unsigned long lValue;
954   if (strCtrl.ToULong (&lValue))
955     return lValue;
956   else
957     return (m_iDefaultYSize);
958 }
959
960 unsigned int
961 DialogGetReconstructionParameters::getZeropad ()
962 {
963   if (theApp->getAdvancedOptions()) {
964     wxString strCtrl = m_pTextCtrlZeropad->GetValue();
965     unsigned long lValue;
966     if (strCtrl.ToULong (&lValue))
967       return lValue;
968     else
969       return (m_iDefaultZeropad);
970   } else
971     return 1;
972 }
973
974
975 unsigned int
976 DialogGetReconstructionParameters::getInterpParam ()
977 {
978 #if HAVE_FREQ_PREINTERP
979   wxString strCtrl = m_pTextCtrlInterpParam->GetValue();
980   unsigned long lValue;
981   if (strCtrl.ToULong (&lValue))
982     return lValue;
983   else
984     return (m_iDefaultInterpParam);
985 #else
986   return 1;
987 #endif
988 }
989
990 double
991 DialogGetReconstructionParameters::getFilterParam ()
992 {
993   wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
994   double dValue;
995   if (strCtrl.ToDouble (&dValue))
996     return (dValue);
997   else
998     return (m_dDefaultFilterParam);
999 }
1000
1001 const char*
1002 DialogGetReconstructionParameters::getFilterName ()
1003 {
1004   return m_pRadioBoxFilter->getSelectionStringValue();
1005 }
1006
1007 const char*
1008 DialogGetReconstructionParameters::getFilterMethodName ()
1009 {
1010   return m_pRadioBoxFilterMethod->getSelectionStringValue();
1011 }
1012
1013 const char*
1014 DialogGetReconstructionParameters::getInterpName ()
1015 {
1016   return m_pRadioBoxInterp->getSelectionStringValue();
1017 }
1018
1019 int
1020 DialogGetReconstructionParameters::getTrace ()
1021 {
1022   int iTrace = 0;
1023   if (strcmp("full", m_pRadioBoxTrace->getSelectionStringValue()) == 0)
1024     iTrace = Trace::TRACE_PLOT;
1025   return iTrace;
1026 }
1027
1028 const char*
1029 DialogGetReconstructionParameters::getBackprojectName ()
1030 {
1031   if (theApp->getAdvancedOptions()) {
1032     return m_pRadioBoxBackproject->getSelectionStringValue();
1033   } else
1034     return "idiff";
1035 }
1036
1037 const char*
1038 DialogGetReconstructionParameters::getFilterGenerationName ()
1039 {
1040   if (theApp->getAdvancedOptions()) {
1041     return m_pRadioBoxFilterGeneration->getSelectionStringValue();
1042   } else {
1043     if (ProcessSignal::convertFilterMethodNameToID(m_pRadioBoxFilterMethod->getSelectionStringValue())
1044         == ProcessSignal::FILTER_METHOD_CONVOLUTION)
1045       return "direct";
1046     else
1047       return "inverse-fourier";
1048   }
1049 }
1050
1051
1052 /////////////////////////////////////////////////////////////////////
1053 // CLASS IDENTIFICATION
1054 //
1055 // DialogGetFilterParameters
1056 /////////////////////////////////////////////////////////////////////
1057
1058
1059
1060 DialogGetFilterParameters::DialogGetFilterParameters (wxWindow* pParent, int iDefaultXSize, int iDefaultYSize, int iDefaultFilterID, double dDefaultFilterParam,  double dDefaultBandwidth, int iDefaultDomainID, double dDefaultInputScale, double dDefaultOutputScale)
1061 : wxDialog (pParent, -1, _T("Set Filter Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1062 {
1063   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1064   
1065   pTopSizer->Add (new wxStaticText (this, -1, "Set Filter Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5); 
1066   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1067   
1068   wxFlexGridSizer* pGridSizer = new wxFlexGridSizer (2);
1069
1070   m_pRadioBoxFilter = new StringValueAndTitleRadioBox (this, _T("Filter"), SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
1071   m_pRadioBoxFilter->SetSelection (iDefaultFilterID);
1072   pGridSizer->Add (m_pRadioBoxFilter, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
1073   
1074   m_pRadioBoxDomain = new StringValueAndTitleRadioBox (this, _T("Domain"), SignalFilter::getDomainCount(), SignalFilter::getDomainTitleArray(), SignalFilter::getDomainNameArray());
1075   m_pRadioBoxDomain->SetSelection (iDefaultDomainID);
1076   pGridSizer->Add (m_pRadioBoxDomain, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
1077   
1078   std::ostringstream os;
1079   os << iDefaultXSize;
1080   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1081   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1082   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1083
1084   std::ostringstream osYSize;
1085   osYSize << iDefaultYSize;
1086   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1087   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1088   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1089
1090   std::ostringstream osFilterParam;
1091   osFilterParam << dDefaultFilterParam;
1092   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osFilterParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1093   pGridSizer->Add (new wxStaticText (this, -1, "Filter Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1094   pGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1095
1096   std::ostringstream osBandwidth;
1097   osBandwidth << dDefaultBandwidth;
1098   m_pTextCtrlBandwidth = new wxTextCtrl (this, -1, osBandwidth.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1099   pGridSizer->Add (new wxStaticText (this, -1, "Bandwidth"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1100   pGridSizer->Add (m_pTextCtrlBandwidth, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1101
1102   std::ostringstream osInputScale;
1103   osInputScale << dDefaultInputScale;
1104   m_pTextCtrlInputScale = new wxTextCtrl (this, -1, osInputScale.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1105   pGridSizer->Add (new wxStaticText (this, -1, "Axis (input) Scale"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1106   pGridSizer->Add (m_pTextCtrlInputScale, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1107
1108   std::ostringstream osOutputScale;
1109   osOutputScale << dDefaultOutputScale;
1110   m_pTextCtrlOutputScale = new wxTextCtrl (this, -1, osOutputScale.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1111   pGridSizer->Add (new wxStaticText (this, -1, "Filter Output Scale"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1112   pGridSizer->Add (m_pTextCtrlOutputScale, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1113   
1114   pTopSizer->Add (pGridSizer, 1, wxALL, 3);
1115   
1116   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1117   
1118   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1119   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1120   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1121   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1122   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1123   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_FILTER);
1124   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1125   
1126   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1127   pButtonOk->SetDefault();
1128
1129   SetAutoLayout (true);
1130   SetSizer (pTopSizer);
1131   pTopSizer->Layout();
1132   pTopSizer->Fit (this);
1133   pTopSizer->SetSizeHints (this);
1134 }
1135
1136 DialogGetFilterParameters::~DialogGetFilterParameters ()
1137 {
1138 }
1139
1140
1141 unsigned int
1142 DialogGetFilterParameters::getXSize ()
1143 {
1144   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1145   unsigned long lValue;
1146   if (strCtrl.ToULong (&lValue))
1147     return lValue;
1148   else
1149     return (m_iDefaultXSize);
1150 }
1151
1152 unsigned int
1153 DialogGetFilterParameters::getYSize ()
1154 {
1155   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1156   unsigned long lValue;
1157   if (strCtrl.ToULong (&lValue))
1158     return lValue;
1159   else
1160     return (m_iDefaultYSize);
1161 }
1162
1163 double
1164 DialogGetFilterParameters::getBandwidth ()
1165 {
1166   wxString strCtrl = m_pTextCtrlBandwidth->GetValue();
1167   double dValue;
1168   if (strCtrl.ToDouble (&dValue))
1169     return dValue;
1170   else
1171     return (m_dDefaultBandwidth);
1172 }
1173
1174 double
1175 DialogGetFilterParameters::getFilterParam ()
1176 {
1177   wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
1178   double dValue;
1179   if (strCtrl.ToDouble (&dValue))
1180     return (dValue);
1181   else
1182     return (m_dDefaultFilterParam);
1183 }
1184
1185 double
1186 DialogGetFilterParameters::getInputScale ()
1187 {
1188   wxString strCtrl = m_pTextCtrlInputScale->GetValue();
1189   double dValue;
1190   if (strCtrl.ToDouble (&dValue))
1191     return dValue;
1192   else
1193     return (m_dDefaultInputScale);
1194 }
1195
1196 double
1197 DialogGetFilterParameters::getOutputScale ()
1198 {
1199   wxString strCtrl = m_pTextCtrlOutputScale->GetValue();
1200   double dValue;
1201   if (strCtrl.ToDouble (&dValue))
1202     return dValue;
1203   else
1204     return (m_dDefaultOutputScale);
1205 }
1206
1207 const char*
1208 DialogGetFilterParameters::getFilterName ()
1209 {
1210   return m_pRadioBoxFilter->getSelectionStringValue();
1211 }
1212
1213 const char*
1214 DialogGetFilterParameters::getDomainName ()
1215 {
1216   return m_pRadioBoxDomain->getSelectionStringValue();
1217 }
1218
1219
1220 ///////////////////////////////////////////////////////////////////////
1221 // CLASS IMPLEMENTATION
1222 //    DialogExportParameters
1223 ///////////////////////////////////////////////////////////////////////
1224
1225 DialogExportParameters::DialogExportParameters (wxWindow* pParent, int iDefaultFormatID)
1226 : wxDialog (pParent, -1, _T("Select ExportParameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1227 {
1228   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1229   
1230   pTopSizer->Add (new wxStaticText (this, -1, "Select Export Format"), 0, wxALIGN_CENTER | wxALL, 5);
1231   
1232   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxALL, 5);
1233   
1234   m_pRadioBoxFormat = new StringValueAndTitleRadioBox (this, _T("File Type"), 
1235     ImageFile::getExportFormatCount(), ImageFile::getExportFormatTitleArray(), ImageFile::getExportFormatNameArray());
1236   m_pRadioBoxFormat->SetSelection (iDefaultFormatID);
1237   pTopSizer->Add (m_pRadioBoxFormat, 0, wxALL | wxALIGN_CENTER);
1238   
1239   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1240   
1241   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1242   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1243   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1244   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1245   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1246   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_EXPORT);
1247   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1248   
1249   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1250   pButtonOk->SetDefault();
1251
1252   SetAutoLayout (true);
1253   SetSizer (pTopSizer);
1254   pTopSizer->Fit (this);
1255   pTopSizer->SetSizeHints (this);
1256 }
1257
1258 const char*
1259 DialogExportParameters::getFormatName()
1260 {
1261   return m_pRadioBoxFormat->getSelectionStringValue();
1262 }
1263
1264
1265 ///////////////////////////////////////////////////////////////////////
1266 // CLASS IMPLEMENTATION
1267 //    DialogImportParameters
1268 ///////////////////////////////////////////////////////////////////////
1269
1270 DialogImportParameters::DialogImportParameters (wxWindow* pParent, int iDefaultFormatID)
1271 : wxDialog (pParent, -1, _T("Select Import Parameters"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1272 {
1273   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1274   
1275   pTopSizer->Add (new wxStaticText (this, -1, "Select Import Format"), 0, wxALIGN_CENTER | wxALL, 5);
1276   
1277   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxALL, 5);
1278   
1279   m_pRadioBoxFormat = new StringValueAndTitleRadioBox (this, _T("File Type"), 
1280     ImageFile::getImportFormatCount(), ImageFile::getImportFormatTitleArray(), ImageFile::getImportFormatNameArray());
1281   m_pRadioBoxFormat->SetSelection (iDefaultFormatID);
1282   pTopSizer->Add (m_pRadioBoxFormat, 0, wxALL | wxALIGN_CENTER);
1283   
1284   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1285   
1286   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1287   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1288   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1289   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1290   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1291   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_IMPORT);
1292   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1293   
1294   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1295   pButtonOk->SetDefault();
1296
1297   SetAutoLayout (true);
1298   SetSizer (pTopSizer);
1299   pTopSizer->Fit (this);
1300   pTopSizer->SetSizeHints (this);
1301 }
1302
1303 const char*
1304 DialogImportParameters::getFormatName()
1305 {
1306   return m_pRadioBoxFormat->getSelectionStringValue();
1307 }
1308
1309
1310 /////////////////////////////////////////////////////////////////////
1311 // CLASS DiaglogGetXYSize Implementation
1312 /////////////////////////////////////////////////////////////////////
1313
1314 DialogGetXYSize::DialogGetXYSize (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize, int iDefaultYSize)
1315 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1316 {
1317   m_iDefaultXSize = iDefaultXSize;
1318   m_iDefaultYSize = iDefaultYSize;
1319
1320   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1321   
1322   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
1323   
1324   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1325   
1326   std::ostringstream os;
1327   os << iDefaultXSize;
1328   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1329   std::ostringstream osYSize;
1330   osYSize << iDefaultYSize;
1331   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1332   
1333   wxFlexGridSizer *pGridSizer = new wxFlexGridSizer (2);
1334   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1335   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_CENTER_VERTICAL);
1336   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1337   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_CENTER_VERTICAL);
1338   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
1339   
1340   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1341   
1342   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1343   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1344   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1345   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1346   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1347   
1348   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1349   pButtonOk->SetDefault();
1350
1351   SetAutoLayout (true);
1352   SetSizer (pTopSizer);
1353   pTopSizer->Fit (this);
1354   pTopSizer->SetSizeHints (this);
1355 }
1356
1357 DialogGetXYSize::~DialogGetXYSize ()
1358 {
1359 }
1360
1361 unsigned int
1362 DialogGetXYSize::getXSize ()
1363 {
1364   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1365   long lValue;
1366   if (strCtrl.ToLong (&lValue))
1367     return lValue;
1368   else
1369     return (m_iDefaultXSize);
1370 }
1371
1372 unsigned int
1373 DialogGetXYSize::getYSize ()
1374 {
1375   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1376   long lValue;
1377   if (strCtrl.ToLong (&lValue))
1378     return lValue;
1379   else
1380     return (m_iDefaultYSize);
1381 }
1382
1383
1384
1385 /////////////////////////////////////////////////////////////////////
1386 // CLASS IDENTIFICATION
1387 //
1388 // DialogGetConvertPolarParameters
1389 /////////////////////////////////////////////////////////////////////
1390
1391 DialogGetConvertPolarParameters::DialogGetConvertPolarParameters (wxWindow* pParent, const char* const pszTitle, 
1392        int iDefaultXSize, int iDefaultYSize, int iDefaultInterpolationID, int iDefaultZeropad)
1393 : wxDialog (pParent, -1, _T(pszTitle), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
1394 {
1395   m_iDefaultXSize = iDefaultXSize;
1396   m_iDefaultYSize = iDefaultYSize;
1397   m_iDefaultZeropad = iDefaultZeropad;
1398
1399   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
1400   
1401   pTopSizer->Add (new wxStaticText (this, -1, pszTitle), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5); 
1402   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1403   
1404   wxFlexGridSizer* pGridSizer = new wxFlexGridSizer (1);
1405   
1406   m_pRadioBoxInterpolation = new StringValueAndTitleRadioBox (this, _T("Interpolation"), Projections::getInterpCount(), Projections::getInterpTitleArray(), Projections::getInterpNameArray());
1407   m_pRadioBoxInterpolation->SetSelection (iDefaultInterpolationID);
1408   pGridSizer->Add (m_pRadioBoxInterpolation, 0, wxALL | wxALIGN_CENTER);
1409   
1410   wxFlexGridSizer* pTextGridSizer = new wxFlexGridSizer (2);
1411   std::ostringstream os;
1412   os << iDefaultXSize;
1413   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);  
1414   pTextGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1415   pTextGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1416   std::ostringstream osYSize;
1417   osYSize << iDefaultYSize;
1418   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1419   pTextGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1420   pTextGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1421 #ifdef DEBUG
1422   if (iDefaultZeropad >= 0) {
1423     std::ostringstream osZeropad;
1424     osZeropad << iDefaultZeropad;
1425     m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
1426     pTextGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
1427     pTextGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
1428   }
1429 #endif
1430
1431   pGridSizer->Add (pTextGridSizer, 0, wxALIGN_CENTER | wxALL);
1432
1433   pTopSizer->Add (pGridSizer, 1, wxALL | wxALIGN_CENTER, 3);
1434   
1435   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
1436   
1437   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
1438   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
1439   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
1440   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
1441   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
1442   CTSimHelpButton* pButtonHelp = new CTSimHelpButton (this, IDH_DLG_POLAR);
1443   pButtonSizer->Add (pButtonHelp, 0, wxEXPAND | wxALL, 10);
1444   
1445   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
1446   pButtonOk->SetDefault();
1447   SetAutoLayout (true);
1448   SetSizer (pTopSizer);
1449   pTopSizer->Layout();
1450   pTopSizer->Fit (this);
1451   pTopSizer->SetSizeHints (this);
1452 }
1453
1454
1455 DialogGetConvertPolarParameters::~DialogGetConvertPolarParameters ()
1456 {
1457 }
1458
1459
1460 unsigned int
1461 DialogGetConvertPolarParameters::getXSize ()
1462 {
1463   wxString strCtrl = m_pTextCtrlXSize->GetValue();
1464   unsigned long lValue;
1465   if (strCtrl.ToULong (&lValue))
1466     return lValue;
1467   else
1468     return (m_iDefaultXSize);
1469 }
1470
1471 unsigned int
1472 DialogGetConvertPolarParameters::getYSize ()
1473 {
1474   wxString strCtrl = m_pTextCtrlYSize->GetValue();
1475   unsigned long lValue;
1476   if (strCtrl.ToULong (&lValue))
1477     return lValue;
1478   else
1479     return (m_iDefaultYSize);
1480 }
1481
1482 unsigned int
1483 DialogGetConvertPolarParameters::getZeropad ()
1484 {
1485 #ifdef DEBUG
1486   wxString strCtrl = m_pTextCtrlZeropad->GetValue();
1487   unsigned long lValue;
1488   if (strCtrl.ToULong (&lValue))
1489     return lValue;
1490   else
1491     return (m_iDefaultZeropad);
1492 #else
1493   return 0;
1494 #endif
1495 }
1496
1497 const char*
1498 DialogGetConvertPolarParameters::getInterpolationName ()
1499 {
1500   return m_pRadioBoxInterpolation->getSelectionStringValue();
1501 }
1502