r185: *** 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.10 2000/08/27 20:32:55 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, wxSize(200,-1), 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 | wxALL, 5);
85                    
86   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, 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);
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);
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, int iDefaultTrace = Trace::TRACE_NONE)
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   m_iDefaultTrace = iDefaultTrace;
295
296   pTopSizer->Add (new wxStaticText (this, -1, "Set Projection Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
297                    
298   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
299
300   m_pListBoxGeometry = new StringValueAndTitleListBox (this, Scanner::getGeometryCount(), Scanner::getGeometryTitleArray(), Scanner::getGeometryNameArray());
301   m_pListBoxGeometry->SetSelection (iDefaultGeometry);
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* pGeometryGridSizer = new wxGridSizer (2);
323   pGeometryGridSizer->Add (new wxStaticText (this, -1, "Scanner Geometry"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
324   pGeometryGridSizer->Add (m_pListBoxGeometry, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
325   pTopSizer->Add (pGeometryGridSizer, 1, wxALL, 10);
326
327   wxGridSizer* pGridSizer = new wxGridSizer (2);
328   pGridSizer->Add (new wxStaticText (this, -1, "Detectors"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
329   pGridSizer->Add (m_pTextCtrlNDet, 0, wxALIGN_CENTER_VERTICAL);
330   pGridSizer->Add (new wxStaticText (this, -1, "Views"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
331   pGridSizer->Add (m_pTextCtrlNView, 0, wxALIGN_CENTER_VERTICAL);
332   pGridSizer->Add (new wxStaticText (this, -1, "Samples per Detector"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
333   pGridSizer->Add (m_pTextCtrlNSamples, 0, wxALIGN_CENTER_VERTICAL);
334   pGridSizer->Add (new wxStaticText (this, -1, "Rotation Angle (PI units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
335   pGridSizer->Add (m_pTextCtrlRotAngle, 0, wxALIGN_CENTER_VERTICAL);
336   pGridSizer->Add (new wxStaticText (this, -1, "Focal Length Ratio (phantom radius units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
337   pGridSizer->Add (m_pTextCtrlFocalLength, 0, wxALIGN_CENTER_VERTICAL);
338   pGridSizer->Add (new wxStaticText (this, -1, "Field of View (phantom diameter units)"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
339   pGridSizer->Add (m_pTextCtrlFieldOfView, 0, wxALIGN_CENTER_VERTICAL);
340   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
341
342   m_pListBoxTrace = new StringValueAndTitleListBox (this, Trace::getTraceCount(), Trace::getTraceTitleArray(), Trace::getTraceNameArray());
343   m_pListBoxTrace->SetSelection (iDefaultTrace);
344
345   wxGridSizer *pTraceGridSizer = new wxGridSizer (2);
346   pTraceGridSizer->Add (new wxStaticText (this, -1, "Trace Level"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
347   pTraceGridSizer->Add (m_pListBoxTrace, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
348   pTopSizer->Add (pTraceGridSizer, 1, wxALL, 10);
349
350   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
351
352   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
353   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
354   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
355   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
356   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
357
358   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
359
360   SetAutoLayout (true);
361   SetSizer (pTopSizer);
362   pTopSizer->Fit (this);
363   pTopSizer->SetSizeHints (this);
364 }
365
366 DialogGetProjectionParameters::~DialogGetProjectionParameters (void)
367 {
368 }
369
370
371 unsigned int
372 DialogGetProjectionParameters::getNDet (void)
373 {
374     wxString strCtrl = m_pTextCtrlNDet->GetValue();
375     unsigned long lValue;
376     if (strCtrl.ToULong (&lValue))
377         return lValue;
378     else
379         return (m_iDefaultNDet);
380 }
381
382 unsigned int
383 DialogGetProjectionParameters::getNView (void)
384 {
385     wxString strCtrl = m_pTextCtrlNView->GetValue();
386     unsigned long lValue;
387     if (strCtrl.ToULong (&lValue))
388         return lValue;
389     else
390         return (m_iDefaultNView);
391 }
392
393
394 unsigned int
395 DialogGetProjectionParameters::getNSamples (void)
396 {
397     wxString strCtrl = m_pTextCtrlNSamples->GetValue();
398     unsigned long lValue;
399     if (strCtrl.ToULong (&lValue))
400         return lValue;
401     else
402         return (m_iDefaultNSamples);
403 }
404
405 double
406 DialogGetProjectionParameters::getRotAngle (void)
407 {
408     wxString strCtrl = m_pTextCtrlRotAngle->GetValue();
409     double dValue;
410     if (strCtrl.ToDouble (&dValue))
411         return (dValue * PI);
412     else
413       return (m_dDefaultRotAngle);
414 }
415
416 double
417 DialogGetProjectionParameters::getFocalLengthRatio (void)
418 {
419     wxString strCtrl = m_pTextCtrlFocalLength->GetValue();
420     double dValue;
421     if (strCtrl.ToDouble (&dValue))
422         return (dValue);
423     else
424       return (m_dDefaultFocalLength);
425 }
426
427 double
428 DialogGetProjectionParameters::getFieldOfViewRatio (void)
429 {
430     wxString strCtrl = m_pTextCtrlFieldOfView->GetValue();
431     double dValue;
432     if (strCtrl.ToDouble (&dValue))
433         return (dValue);
434     else
435       return (m_dDefaultFieldOfView);
436 }
437
438 const char*
439 DialogGetProjectionParameters::getGeometry (void)
440 {
441   return m_pListBoxGeometry->getSelectionStringValue();
442 }
443
444 int
445 DialogGetProjectionParameters::getTrace (void)
446 {
447   return Trace::convertTraceNameToID(m_pListBoxTrace->getSelectionStringValue());
448 }
449
450
451
452 /////////////////////////////////////////////////////////////////////
453 // CLASS IDENTIFICATION
454 //
455 // DialogGetReconstructionParameters
456 /////////////////////////////////////////////////////////////////////
457
458
459 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)
460     : wxDialog (pParent, -1, "Set Reconstruction Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION)
461 {
462   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
463
464   pTopSizer->Add (new wxStaticText (this, -1, "Set Reconstruction Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
465                    
466   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
467
468   wxGridSizer* pFilterGrid = new wxGridSizer (2);
469   pFilterGrid->Add (new wxStaticText (this, -1, "Filter"), 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, 5);
470   m_pListBoxFilter = new StringValueAndTitleListBox (this, SignalFilter::getFilterCount(), SignalFilter::getFilterTitleArray(), SignalFilter::getFilterNameArray());
471   m_pListBoxFilter->SetSelection (iDefaultFilterID);
472   pFilterGrid->Add (m_pListBoxFilter, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
473
474   m_pListBoxFilterMethod = new StringValueAndTitleListBox (this, ProcessSignal::getFilterMethodCount(), ProcessSignal::getFilterMethodTitleArray(), ProcessSignal::getFilterMethodNameArray());
475   m_pListBoxFilterMethod->SetSelection (iDefaultFilterMethodID);
476   pFilterGrid->Add (new wxStaticText (this, -1, "Filter Method"), 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, 5);
477   pFilterGrid->Add (m_pListBoxFilterMethod, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
478   m_pListBoxFilterGeneration = new StringValueAndTitleListBox (this, ProcessSignal::getFilterGenerationCount(), ProcessSignal::getFilterGenerationTitleArray(), ProcessSignal::getFilterGenerationNameArray());
479   m_pListBoxFilterGeneration->SetSelection (iDefaultFilterGenerationID);
480   pFilterGrid->Add (new wxStaticText (this, -1, "Filter Generation"), 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, 5);
481   pFilterGrid->Add (m_pListBoxFilterGeneration, 0, wxALL | wxALIGN_LEFT | wxEXPAND);
482
483   m_pListBoxBackproject = new StringValueAndTitleListBox (this, Backprojector::getBackprojectCount(), Backprojector::getBackprojectTitleArray(), Backprojector::getBackprojectNameArray());
484   m_pListBoxBackproject->SetSelection (iDefaultBackprojectID);
485   pFilterGrid->Add (new wxStaticText (this, -1, "Backprojection"), 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, 5);
486   pFilterGrid->Add (m_pListBoxBackproject, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
487
488   m_pListBoxInterp = new StringValueAndTitleListBox (this, Backprojector::getInterpCount(), Backprojector::getInterpTitleArray(), Backprojector::getInterpNameArray());
489   m_pListBoxInterp->SetSelection (iDefaultInterpID);
490   pFilterGrid->Add (new wxStaticText (this, -1, "Interpolation"), 0, wxALIGN_CENTER_VERTICAL | wxALIGN_RIGHT | wxALL, 5);
491   pFilterGrid->Add (m_pListBoxInterp, 0, wxALL | wxALIGN_RIGHT | wxEXPAND);
492
493   pTopSizer->Add (pFilterGrid, 1, wxALL);
494
495   ostringstream os;
496   os << iDefaultXSize;
497   m_pTextCtrlXSize = new wxTextCtrl (this, -1, os.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
498   ostringstream osYSize;
499   osYSize << iDefaultYSize;
500   m_pTextCtrlYSize = new wxTextCtrl (this, -1, osYSize.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
501   ostringstream osFilterParam;
502   osFilterParam << dDefaultFilterParam;
503   m_pTextCtrlFilterParam = new wxTextCtrl (this, -1, osFilterParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
504   ostringstream osZeropad;
505   osZeropad << iDefaultZeropad;
506   m_pTextCtrlZeropad = new wxTextCtrl (this, -1, osZeropad.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
507   ostringstream osInterpParam;
508   osInterpParam << iDefaultInterpParam;
509   m_pTextCtrlInterpParam = new wxTextCtrl (this, -1, osInterpParam.str().c_str(), wxDefaultPosition, wxSize(100, 25), 0);
510
511   wxGridSizer* pGridSizer = new wxGridSizer (2);
512   pGridSizer->Add (new wxStaticText (this, -1, "X Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
513   pGridSizer->Add (m_pTextCtrlXSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
514   pGridSizer->Add (new wxStaticText (this, -1, "Y Size"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
515   pGridSizer->Add (m_pTextCtrlYSize, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
516   pGridSizer->Add (new wxStaticText (this, -1, "Filter Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
517   pGridSizer->Add (m_pTextCtrlFilterParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
518   pGridSizer->Add (new wxStaticText (this, -1, "Zeropad"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
519   pGridSizer->Add (m_pTextCtrlZeropad, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
520   pGridSizer->Add (new wxStaticText (this, -1, "Interpolation Parameter"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
521   pGridSizer->Add (m_pTextCtrlInterpParam, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL);
522   pTopSizer->Add (pGridSizer, 1, wxALL, 3);
523
524   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
525
526   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
527   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
528   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
529   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
530   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
531
532   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
533
534   SetAutoLayout (true);
535   SetSizer (pTopSizer);
536   pTopSizer->Layout();
537   pTopSizer->Fit (this);
538   pTopSizer->SetSizeHints (this);
539 }
540
541 DialogGetReconstructionParameters::~DialogGetReconstructionParameters (void)
542 {
543 }
544
545
546 unsigned int
547 DialogGetReconstructionParameters::getXSize (void)
548 {
549     wxString strCtrl = m_pTextCtrlXSize->GetValue();
550     unsigned long lValue;
551     if (strCtrl.ToULong (&lValue))
552         return lValue;
553     else
554         return (m_iDefaultXSize);
555 }
556
557 unsigned int
558 DialogGetReconstructionParameters::getYSize (void)
559 {
560     wxString strCtrl = m_pTextCtrlYSize->GetValue();
561     unsigned long lValue;
562     if (strCtrl.ToULong (&lValue))
563         return lValue;
564     else
565         return (m_iDefaultYSize);
566 }
567
568 unsigned int
569 DialogGetReconstructionParameters::getZeropad (void)
570 {
571     wxString strCtrl = m_pTextCtrlZeropad->GetValue();
572     unsigned long lValue;
573     if (strCtrl.ToULong (&lValue))
574         return lValue;
575     else
576         return (m_iDefaultZeropad);
577 }
578
579
580 unsigned int
581 DialogGetReconstructionParameters::getInterpParam (void)
582 {
583     wxString strCtrl = m_pTextCtrlInterpParam->GetValue();
584     unsigned long lValue;
585     if (strCtrl.ToULong (&lValue))
586         return lValue;
587     else
588         return (m_iDefaultInterpParam);
589 }
590
591 double
592 DialogGetReconstructionParameters::getFilterParam (void)
593 {
594     wxString strCtrl = m_pTextCtrlFilterParam->GetValue();
595     double dValue;
596     if (strCtrl.ToDouble (&dValue))
597         return (dValue);
598     else
599       return (m_dDefaultFilterParam);
600 }
601
602 const char*
603 DialogGetReconstructionParameters::getFilterName (void)
604 {
605   return m_pListBoxFilter->getSelectionStringValue();
606 }
607
608 const char*
609 DialogGetReconstructionParameters::getFilterMethodName (void)
610 {
611   return m_pListBoxFilterMethod->getSelectionStringValue();
612 }
613
614 const char*
615 DialogGetReconstructionParameters::getInterpName (void)
616 {
617   return m_pListBoxInterp->getSelectionStringValue();
618 }
619
620 const char*
621 DialogGetReconstructionParameters::getBackprojectName (void)
622 {
623   return m_pListBoxBackproject->getSelectionStringValue();
624 }
625
626 const char*
627 DialogGetReconstructionParameters::getFilterGenerationName (void)
628 {
629   return m_pListBoxFilterGeneration->getSelectionStringValue();
630 }
631
632
633 DialogAutoScaleParameters::DialogAutoScaleParameters (wxFrame *pParent, const ImageFile& rIF)
634   : wxDialog (pParent, -1, "Auto Scale Parameters", wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxCAPTION), m_rImageFile(rIF)
635 {
636   wxBoxSizer* pTopSizer = new wxBoxSizer (wxVERTICAL);
637
638   pTopSizer->Add (new wxStaticText (this, -1, "Auto Scale Parameters"), 0, wxALIGN_CENTER | wxTOP | wxLEFT | wxRIGHT, 5);
639                    
640   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
641
642   wxString asTitle[3];
643   asTitle[0] = "Median";
644   asTitle[1] = "Mode";
645   asTitle[2] = "Mean";
646
647   m_pListBoxCenter = new wxListBox (this, -1, wxDefaultPosition, wxDefaultSize, 3, asTitle, wxLB_SINGLE | wxLB_NEEDED_SB);
648   m_pListBoxCenter->SetSelection (0);
649   pTopSizer->Add (m_pListBoxCenter, 0, wxALL | wxALIGN_CENTER | wxEXPAND);
650
651   wxGridSizer *pGridSizer = new wxGridSizer (2);
652   pGridSizer->Add (new wxStaticText (this, -1, "Standard Deviation Factor"), 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
653   m_pTextCtrlStdDevFactor = new wxTextCtrl (this, -1, "1.0", wxDefaultPosition, wxSize(100, 25), 0);
654   pGridSizer->Add (m_pTextCtrlStdDevFactor, 0, wxALIGN_CENTER_VERTICAL);
655   pTopSizer->Add (pGridSizer, 1, wxALL, 10);
656
657   pTopSizer->Add (new wxStaticLine (this, -1, wxDefaultPosition, wxSize(3,3), wxHORIZONTAL), 0, wxEXPAND | wxALL, 5);
658
659   wxBoxSizer* pButtonSizer = new wxBoxSizer (wxHORIZONTAL);
660   wxButton* pButtonOk = new wxButton (this, wxID_OK, "Okay");
661   wxButton* pButtonCancel = new wxButton (this, wxID_CANCEL, "Cancel");
662   pButtonSizer->Add (pButtonOk, 0, wxEXPAND | wxALL, 10);
663   pButtonSizer->Add (pButtonCancel, 0, wxEXPAND | wxALL, 10);
664
665   pTopSizer->Add (pButtonSizer, 0, wxALIGN_CENTER);
666
667   SetAutoLayout (true);
668   SetSizer (pTopSizer);
669   pTopSizer->Fit (this);
670   pTopSizer->SetSizeHints (this);
671 }
672
673 void 
674 DialogAutoScaleParameters::getMinMax (double* pMin, double* pMax)
675 {
676   int iCenter = m_pListBoxCenter->GetSelection();
677   double min, max, mean, mode, median, stddev;
678   m_rImageFile.statistics (min, max, mean, mode, median, stddev);
679   double dCenter = median;
680   if (iCenter == 1)
681     dCenter = mode;
682   else if (iCenter == 2)
683     dCenter = mean;
684   
685   wxString sStddevFactor = m_pTextCtrlStdDevFactor->GetValue();
686   double dValue;
687   if (! sStddevFactor.ToDouble (&dValue)) {
688     *theApp->getLog() << "Error: Non-numeric Standard Deviation Factor of " << sStddevFactor << "\n";
689     *pMin = min;
690     *pMax = max;
691   }
692   double dHalfWidth = dValue * stddev / 2;
693   *pMin = dCenter - dHalfWidth;
694   *pMax = dCenter + dHalfWidth;
695   *theApp->getLog() << "Setting minimum to " << *pMin << " and maximum to " << *pMax << "\n";
696 }