r184: *** 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-2000 Kevin Rosenberg
11 **
12 **  $Id: dialogs.cpp,v 1.9 2000/08/25 15:59:13 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 // For compilers that support precompilation, includes "wx/wx.h".
33 #include "wx/wxprec.h"
34
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38
39 #ifndef WX_PRECOMP
40 #include "wx/wx.h"
41 #endif
42
43 #if !wxUSE_DOC_VIEW_ARCHITECTURE
44 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
45 #endif
46
47 #include "wx/statline.h"
48 #include "wx/sizer.h"
49 #include "dialogs.h"
50 #include <sstream>
51 #include "ctsupport.h"
52 #include "ctsim.h"
53 #include "scanner.h"
54 #include "phantom.h"
55 #include "filter.h"
56 #include "backprojectors.h"
57
58
59 StringValueAndTitleListBox::StringValueAndTitleListBox (wxDialog* pParent, int nChoices, const char* aszTitle[], const char* aszValue[])
60   : wxListBox ()
61 {
62     wxString asTitle[nChoices];
63     for (int i = 0; i < nChoices; i++)
64         asTitle[i] = aszTitle[i];
65
66     Create (pParent, -1, wxDefaultPosition, wxDefaultSize, nChoices, asTitle, wxLB_SINGLE | wxLB_NEEDED_SB);
67
68     m_ppszValues = aszValue;
69 };
70
71 const char*
72 StringValueAndTitleListBox::getSelectionStringValue (void) const
73 {
74   return m_ppszValues[GetSelection()];
75 }
76
77
78
79 DialogGetPhantom::DialogGetPhantom (wxFrame* pParent, int iDefaultPhantom = Phantom::PHM_HERMAN)
80     : wxDialog (pParent, -1, "Select Phantom", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
81 {
82   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
83
84   pTopSizer->Add (new wxStaticText (this, -1, "Select Phantom"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
85                    
86   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
87
88   m_pListBoxPhantom = new StringValueAndTitleListBox (this, Phantom::getPhantomCount(), Phantom::getPhantomTitleArray(), Phantom::getPhantomNameArray());
89   m_pListBoxPhantom->SetSelection (iDefaultPhantom);
90   pTopSizer->Add (m_pListBoxPhantom, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
91
92   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
93
94   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
95   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
96   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
97   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
98   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
99
100   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
101
102   SetAutoLayout (true);
103   SetSizer (pTopSizer);
104   pTopSizer->Fit (this);
105   pTopSizer->SetSizeHints (this);
106 }
107
108 const char*
109 DialogGetPhantom::getPhantom(void)
110 {
111     return m_pListBoxPhantom->getSelectionStringValue();
112 }
113
114
115 DialogGetImageMinMax::DialogGetImageMinMax (wxFrame* pParent, const ImageFile& rImagefile, double dDefaultMin = 0., double dDefaultMax = 0.)
116     : wxDialog (pParent, -1, "Set Image Display Minimum & Maximum", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
117 {
118   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
119
120   pTopSizer->Add (new wxStaticText (this, -1, "Set Image Display Minimum and Maximum"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
121                    
122   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
123
124   ostringstream os;
125   os << dDefaultMin;
126   m_pTextCtrlMin = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
127   ostringstream osMax;
128   osMax << dDefaultMax;
129   m_pTextCtrlMax = new wxTextCtrl (this, -1, osMax.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
130
131   wxGridSizer *pGridSizer = new wxGridSizer (2, 2, 5);
132   pGridSizer->Add (new wxStaticText (this, -1, "Minimum"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
133   pGridSizer->Add (m_pTextCtrlMin, 0, wxALIGN_CENTER_VERTICAL);
134   pGridSizer->Add (new wxStaticText (this, -1, "Maximum"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
135   pGridSizer->Add (m_pTextCtrlMax, 0, wxALIGN_CENTER_VERTICAL);
136   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
137
138   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
139
140   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
141   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
142   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
143   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
144   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
145
146   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
147
148   SetAutoLayout (true);
149   SetSizer (pTopSizer);
150   pTopSizer->Fit (this);
151   pTopSizer->SetSizeHints (this);
152 }
153
154 DialogGetImageMinMax::~DialogGetImageMinMax (void)
155 {
156 #if 0
157   delete m_pTextCtrlMin;
158   delete m_pTextCtrlMax;
159 #endif
160 }
161
162 double
163 DialogGetImageMinMax::getMinimum (void)
164 {
165     wxString strCtrl = m_pTextCtrlMin->GetValue();
166     double dValue;
167     if (strCtrl.ToDouble (&dValue))
168         return dValue;
169     else
170         return (m_dDefaultMin);
171 }
172
173 double
174 DialogGetImageMinMax::getMaximum (void)
175 {
176     wxString strCtrl = m_pTextCtrlMax->GetValue();
177     double dValue;
178     if (strCtrl.ToDouble (&dValue))
179         return dValue;
180     else
181         return (m_dDefaultMax);
182 }
183
184
185 /////////////////////////////////////////////////////////////////////
186 // CLASS IDENTIFICATION
187 //
188 // DialogGetRasterParameters
189 /////////////////////////////////////////////////////////////////////
190
191 DialogGetRasterParameters::DialogGetRasterParameters (wxFrame* pParent, int iDefaultXSize = 0, int iDefaultYSize = 0, int iDefaultNSamples = 1)
192     : wxDialog (pParent, -1, "Set Rasterization Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
193 {
194   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
195
196   pTopSizer->Add (new wxStaticText (this, -1, "Set Rasterization Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
197                    
198   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
199
200   ostringstream os;
201   os << iDefaultXSize;
202   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
203   ostringstream osYSize;
204   osYSize << iDefaultYSize;
205   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
206   ostringstream osNSamples;
207   osNSamples << iDefaultNSamples;
208   m_pTextCtrlNSamples = new wxTextCtrl (this, -1, osNSamples.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
209
210   wxGridSizer *pGridSizer = new wxGridSizer (2, 3, 5);
211   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
212   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_CENTER_VERTICAL);
213   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
214   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_CENTER_VERTICAL);
215   pGridSizer->Add (new wxStaticText (this, -1, "Samples per Pixel"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
216   pGridSizer->Add (m_pTextCtrlNSamples, 0, wxALIGN_CENTER_VERTICAL);
217   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
218
219   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
220
221   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
222   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
223   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
224   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
225   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
226
227   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
228
229   SetAutoLayout (true);
230   SetSizer (pTopSizer);
231   pTopSizer->Fit (this);
232   pTopSizer->SetSizeHints (this);
233 }
234
235 DialogGetRasterParameters::~DialogGetRasterParameters (void)
236 {
237 }
238
239
240 unsigned int
241 DialogGetRasterParameters::getXSize (void)
242 {
243     wxString strCtrl = m_pTextCtrlXSize->GetValue();
244     unsigned long lValue;
245     if (strCtrl.ToULong (&lValue))
246         return lValue;
247     else
248         return (m_iDefaultXSize);
249 }
250
251 unsigned int
252 DialogGetRasterParameters::getYSize (void)
253 {
254     wxString strCtrl = m_pTextCtrlYSize->GetValue();
255     unsigned long lValue;
256     if (strCtrl.ToULong (&lValue))
257         return lValue;
258     else
259         return (m_iDefaultYSize);
260 }
261
262
263 unsigned int
264 DialogGetRasterParameters::getNSamples (void)
265 {
266     wxString strCtrl = m_pTextCtrlNSamples->GetValue();
267     unsigned long lValue;
268     if (strCtrl.ToULong (&lValue))
269         return lValue;
270     else
271         return (m_iDefaultNSamples);
272 }
273
274
275
276 /////////////////////////////////////////////////////////////////////
277 // CLASS IDENTIFICATION
278 //
279 // DialogGetProjectionParameters
280 /////////////////////////////////////////////////////////////////////
281
282
283 DialogGetProjectionParameters::DialogGetProjectionParameters (wxFrame* pParent, int iDefaultNDet = 0, int iDefaultNView = 0, int iDefaultNSamples = 1, double dDefaultRotAngle = 1., double dDefaultFocalLength = 1, double dDefaultFieldOfView = 1., int iDefaultGeometry = Scanner::GEOMETRY_PARALLEL)
284   : wxDialog (pParent, -1, "Set Projection Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
285 {
286   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
287
288   m_dDefaultRotAngle = dDefaultRotAngle;
289   m_dDefaultFocalLength = dDefaultFocalLength;
290   m_dDefaultFieldOfView = dDefaultFieldOfView;
291   m_iDefaultNSamples = iDefaultNSamples;
292   m_iDefaultNView = iDefaultNView;
293   m_iDefaultNDet = iDefaultNDet;
294
295   pTopSizer->Add (new wxStaticText (this, -1, "Set Projection Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
296                    
297   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
298
299   m_pListBoxGeometry = new StringValueAndTitleListBox (this, Scanner::getGeometryCount(), Scanner::getGeometryTitleArray(), Scanner::getGeometryNameArray());
300   m_pListBoxGeometry->SetSelection (iDefaultGeometry);
301   pTopSizer->Add (m_pListBoxGeometry, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
302
303   ostringstream os;
304   os << iDefaultNDet;
305   m_pTextCtrlNDet = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
306   ostringstream osNView;
307   osNView << iDefaultNView;
308   m_pTextCtrlNView = new wxTextCtrl (this, -1, osNView.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
309   ostringstream osNSamples;
310   osNSamples << iDefaultNSamples;
311   m_pTextCtrlNSamples = new wxTextCtrl (this, -1, osNSamples.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
312   ostringstream osRotAngle;
313   osRotAngle << dDefaultRotAngle;
314   m_pTextCtrlRotAngle = new wxTextCtrl (this, -1, osRotAngle.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
315   ostringstream osFocalLength;
316   osFocalLength << dDefaultFocalLength;
317   m_pTextCtrlFocalLength = new wxTextCtrl (this, -1, osFocalLength.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
318   ostringstream osFieldOfView;
319   osFieldOfView << dDefaultFieldOfView;
320   m_pTextCtrlFieldOfView = new wxTextCtrl (this, -1, osFieldOfView.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
321
322   wxGridSizer *pGridSizer = new wxGridSizer (2, 4, 5);
323   pGridSizer->Add (new wxStaticText (this, -1, "Detectors"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
324   pGridSizer->Add (m_pTextCtrlNDet, 0, wxALIGN_CENTER_VERTICAL);
325   pGridSizer->Add (new wxStaticText (this, -1, "Views"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
326   pGridSizer->Add (m_pTextCtrlNView, 0, wxALIGN_CENTER_VERTICAL);
327   pGridSizer->Add (new wxStaticText (this, -1, "Samples per Detector"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
328   pGridSizer->Add (m_pTextCtrlNSamples, 0, wxALIGN_CENTER_VERTICAL);
329   pGridSizer->Add (new wxStaticText (this, -1, "Rotation Angle (PI units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
330   pGridSizer->Add (m_pTextCtrlRotAngle, 0, wxALIGN_CENTER_VERTICAL);
331   pGridSizer->Add (new wxStaticText (this, -1, "Focal Length Ratio (phantom radius units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
332   pGridSizer->Add (m_pTextCtrlFocalLength, 0, wxALIGN_CENTER_VERTICAL);
333   pGridSizer->Add (new wxStaticText (this, -1, "Field of View (phantom diameter units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
334   pGridSizer->Add (m_pTextCtrlFieldOfView, 0, wxALIGN_CENTER_VERTICAL);
335   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
336
337   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
338
339   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
340   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
341   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
342   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
343   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
344
345   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
346
347   SetAutoLayout (true);
348   SetSizer (pTopSizer);
349   pTopSizer->Fit (this);
350   pTopSizer->SetSizeHints (this);
351 }
352
353 DialogGetProjectionParameters::~DialogGetProjectionParameters (void)
354 {
355 }
356
357
358 unsigned int
359 DialogGetProjectionParameters::getNDet (void)
360 {
361     wxString strCtrl = m_pTextCtrlNDet->GetValue();
362     unsigned long lValue;
363     if (strCtrl.ToULong (&lValue))
364         return lValue;
365     else
366         return (m_iDefaultNDet);
367 }
368
369 unsigned int
370 DialogGetProjectionParameters::getNView (void)
371 {
372     wxString strCtrl = m_pTextCtrlNView->GetValue();
373     unsigned long lValue;
374     if (strCtrl.ToULong (&lValue))
375         return lValue;
376     else
377         return (m_iDefaultNView);
378 }
379
380
381 unsigned int
382 DialogGetProjectionParameters::getNSamples (void)
383 {
384     wxString strCtrl = m_pTextCtrlNSamples->GetValue();
385     unsigned long lValue;
386     if (strCtrl.ToULong (&lValue))
387         return lValue;
388     else
389         return (m_iDefaultNSamples);
390 }
391
392 double
393 DialogGetProjectionParameters::getRotAngle (void)
394 {
395     wxString strCtrl = m_pTextCtrlRotAngle->GetValue();
396     double dValue;
397     if (strCtrl.ToDouble (&dValue))
398         return (dValue * PI);
399     else
400       return (m_dDefaultRotAngle);
401 }
402
403 double
404 DialogGetProjectionParameters::getFocalLengthRatio (void)
405 {
406     wxString strCtrl = m_pTextCtrlFocalLength->GetValue();
407     double dValue;
408     if (strCtrl.ToDouble (&dValue))
409         return (dValue);
410     else
411       return (m_dDefaultFocalLength);
412 }
413
414 double
415 DialogGetProjectionParameters::getFieldOfViewRatio (void)
416 {
417     wxString strCtrl = m_pTextCtrlFieldOfView->GetValue();
418     double dValue;
419     if (strCtrl.ToDouble (&dValue))
420         return (dValue);
421     else
422       return (m_dDefaultFieldOfView);
423 }
424
425 const char*
426 DialogGetProjectionParameters::getGeometry (void)
427 {
428   return m_pListBoxGeometry->getSelectionStringValue();
429 }
430
431
432
433 /////////////////////////////////////////////////////////////////////
434 // CLASS IDENTIFICATION
435 //
436 // DialogGetReconstructionParameters
437 /////////////////////////////////////////////////////////////////////
438
439
440 DialogGetReconstructionParameters::DialogGetReconstructionParameters (wxFrame* pParent, int iDefaultXSize = 0, int iDefaultYSize = 0, int iDefaultFilterID = SignalFilter::FILTER_ABS_BANDLIMIT, double dDefaultFilterParam = 1.,  int iDefaultFilterMethodID = ProcessSignal::FILTER_METHOD_CONVOLUTION, int iDefaultFilterGenerationID = ProcessSignal::FILTER_GENERATION_INVALID, int iDefaultZeropad = 3, int iDefaultInterpID = Backprojector::INTERP_LINEAR, int iDefaultInterpParam = 1, int iDefaultBackprojectID = Backprojector::BPROJ_IDIFF3)
441     : wxDialog (pParent, -1, "Set Reconstruction Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
442 {
443   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
444
445   pTopSizer->Add (new wxStaticText (this, -1, "Set Reconstruction Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
446                    
447   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
448
449   m_pListBoxFilter = new StringValueAndTitleListBox (this, SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
450   m_pListBoxFilter->SetSelection (iDefaultFilterID);
451   pTopSizer->Add (m_pListBoxFilter, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
452
453   m_pListBoxFilterMethod = new StringValueAndTitleListBox (this, ProcessSignal::getFilterMethodCount(), ProcessSignal::getFilterMethodTitleArray(), ProcessSignal::getFilterMethodNameArray());
454   m_pListBoxFilterMethod->SetSelection (iDefaultFilterMethodID);
455   pTopSizer->Add (m_pListBoxFilterMethod, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
456   m_pListBoxFilterGeneration = new StringValueAndTitleListBox (this, ProcessSignal::getFilterGenerationCount(), ProcessSignal::getFilterGenerationTitleArray(), ProcessSignal::getFilterGenerationNameArray());
457   m_pListBoxFilterGeneration->SetSelection (iDefaultFilterGenerationID);
458   pTopSizer->Add (m_pListBoxFilterGeneration, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
459
460   m_pListBoxBackproject = new StringValueAndTitleListBox (this, Backprojector::getBackprojectCount(), Backprojector::getBackprojectTitleArray(), Backprojector::getBackprojectNameArray());
461   m_pListBoxBackproject->SetSelection (iDefaultBackprojectID);
462   pTopSizer->Add (m_pListBoxBackproject, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
463
464   m_pListBoxInterp = new StringValueAndTitleListBox (this, Backprojector::getInterpCount(), Backprojector::getInterpTitleArray(), Backprojector::getInterpNameArray());
465   m_pListBoxInterp->SetSelection (iDefaultInterpID);
466   pTopSizer->Add (m_pListBoxInterp, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
467
468   ostringstream os;
469   os << iDefaultXSize;
470   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
471   ostringstream osYSize;
472   osYSize << iDefaultYSize;
473   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
474   ostringstream osFilterParam;
475   osFilterParam << dDefaultFilterParam;
476   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osFilterParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
477   ostringstream osZeropad;
478   osZeropad << iDefaultZeropad;
479   m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
480   ostringstream osInterpParam;
481   osInterpParam << iDefaultInterpParam;
482   m_pTextCtrlInterpParam = new wxTextCtrl (this, -1, osInterpParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
483
484   wxGridSizer *pGridSizer = new wxGridSizer (2, 5, 5);
485   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
486   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_CENTER_VERTICAL);
487   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
488   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_CENTER_VERTICAL);
489   pGridSizer->Add (new wxStaticText (this, -1, "Filter Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
490   pGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_CENTER_VERTICAL);
491   pGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
492   pGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_CENTER_VERTICAL);
493   pGridSizer->Add (new wxStaticText (this, -1, "Interpolation Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
494   pGridSizer->Add (m_pTextCtrlInterpParam, 0, wxALIGN_CENTER_VERTICAL);
495   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
496
497   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
498
499   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
500   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
501   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
502   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
503   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
504
505   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
506
507   SetAutoLayout (true);
508   SetSizer (pTopSizer);
509   pTopSizer->Fit (this);
510   pTopSizer->SetSizeHints (this);
511 }
512
513 DialogGetReconstructionParameters::~DialogGetReconstructionParameters (void)
514 {
515 }
516
517
518 unsigned int
519 DialogGetReconstructionParameters::getXSize (void)
520 {
521     wxString strCtrl = m_pTextCtrlXSize->GetValue();
522     unsigned long lValue;
523     if (strCtrl.ToULong (&lValue))
524         return lValue;
525     else
526         return (m_iDefaultXSize);
527 }
528
529 unsigned int
530 DialogGetReconstructionParameters::getYSize (void)
531 {
532     wxString strCtrl = m_pTextCtrlYSize->GetValue();
533     unsigned long lValue;
534     if (strCtrl.ToULong (&lValue))
535         return lValue;
536     else
537         return (m_iDefaultYSize);
538 }
539
540 unsigned int
541 DialogGetReconstructionParameters::getZeropad (void)
542 {
543     wxString strCtrl = m_pTextCtrlZeropad->GetValue();
544     unsigned long lValue;
545     if (strCtrl.ToULong (&lValue))
546         return lValue;
547     else
548         return (m_iDefaultZeropad);
549 }
550
551
552 unsigned int
553 DialogGetReconstructionParameters::getInterpParam (void)
554 {
555     wxString strCtrl = m_pTextCtrlInterpParam->GetValue();
556     unsigned long lValue;
557     if (strCtrl.ToULong (&lValue))
558         return lValue;
559     else
560         return (m_iDefaultInterpParam);
561 }
562
563 double
564 DialogGetReconstructionParameters::getFilterParam (void)
565 {
566     wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
567     double dValue;
568     if (strCtrl.ToDouble (&dValue))
569         return (dValue);
570     else
571       return (m_dDefaultFilterParam);
572 }
573
574 const char*
575 DialogGetReconstructionParameters::getFilterName (void)
576 {
577   return m_pListBoxFilter->getSelectionStringValue();
578 }
579
580 const char*
581 DialogGetReconstructionParameters::getFilterMethodName (void)
582 {
583   return m_pListBoxFilterMethod->getSelectionStringValue();
584 }
585
586 const char*
587 DialogGetReconstructionParameters::getInterpName (void)
588 {
589   return m_pListBoxInterp->getSelectionStringValue();
590 }
591
592 const char*
593 DialogGetReconstructionParameters::getBackprojectName (void)
594 {
595   return m_pListBoxBackproject->getSelectionStringValue();
596 }
597
598 const char*
599 DialogGetReconstructionParameters::getFilterGenerationName (void)
600 {
601   return m_pListBoxFilterGeneration->getSelectionStringValue();
602 }
603
604
605 DialogAutoScaleParameters::DialogAutoScaleParameters (wxFrame *pParent, const ImageFile& rIF)
606   : wxDialog (pParent, -1, "Auto Scale Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION), m_rImageFile(rIF)
607 {
608   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
609
610   pTopSizer->Add (new wxStaticText (this, -1, "Auto Scale Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
611                    
612   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
613
614   wxString asTitle[3];
615   asTitle[0] = "Median";
616   asTitle[1] = "Mode";
617   asTitle[2] = "Mean";
618
619   m_pListBoxCenter = new wxListBox (this, -1, wxDefaultPosition, wxDefaultSize, 3, asTitle, wxLB_SINGLE | wxLB_NEEDED_SB);
620   m_pListBoxCenter->SetSelection (0);
621   pTopSizer->Add (m_pListBoxCenter, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
622
623   wxGridSizer *pGridSizer = new wxGridSizer (2, 2, 5);
624   pGridSizer->Add (new wxStaticText (this, -1, "Standard Deviation Factor"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
625   m_pTextCtrlStdDevFactor = new wxTextCtrl (this, -1, "1.0", wxDefaultPosition, wxSize(100, 25), 0);
626   pGridSizer->Add (m_pTextCtrlStdDevFactor, 0, wxALIGN_CENTER_VERTICAL);
627   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
628
629   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
630
631   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
632   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
633   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
634   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
635   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
636
637   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
638
639   SetAutoLayout (true);
640   SetSizer (pTopSizer);
641   pTopSizer->Fit (this);
642   pTopSizer->SetSizeHints (this);
643 }
644
645 void 
646 DialogAutoScaleParameters::getMinMax (double* pMin, double* pMax)
647 {
648   int iCenter = m_pListBoxCenter->GetSelection();
649   double min, max, mean, mode, median, stddev;
650   m_rImageFile.statistics (min, max, mean, mode, median, stddev);
651   double dCenter = median;
652   if (iCenter == 1)
653     dCenter = mode;
654   else if (iCenter == 2)
655     dCenter = mean;
656   
657   wxString sStddevFactor = m_pTextCtrlStdDevFactor->GetValue();
658   double dValue;
659   if (! sStddevFactor.ToDouble (&dValue)) {
660     *theApp->getLog() << "Error: Non-numeric Standard Deviation Factor of " << sStddevFactor << "\n";
661     *pMin = min;
662     *pMax = max;
663   }
664   double dHalfWidth = dValue * stddev / 2;
665   *pMin = dCenter - dHalfWidth;
666   *pMax = dCenter + dHalfWidth;
667   *theApp->getLog() << "Setting minimum to " << *pMin << " and maximum to " << *pMax << "\n";
668 }