r591: Added Center-Detector length to scanning and reconstruction
[ctsim.git] / src / dialogs.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          dialogs.h
5 **   Purpose:       Header file for Dialogs of 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.h,v 1.32 2001/03/01 07:30:49 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
29 #ifndef __DIALOGSH__
30 #define __DIALOGSH__
31
32 #include "wx/wx.h"
33 #include <string>
34 #include "ctsupport.h"
35 #include "scanner.h"
36 #include "phantom.h"
37 #include "procsignal.h"
38 #include "filter.h"
39 #include "projections.h"
40
41
42 class CTSimHelpButton : public wxButton
43 {
44 public:
45   CTSimHelpButton (wxWindow* parent, int id)
46     : wxButton (parent, id, "Help")
47   {}
48 };
49
50
51 // CLASS StringValueAndTitleListBox
52 //
53 // A superclass of wxListBox that can handle string values and titles
54 // and by displaying the title in the list box and returning the string value
55
56 class StringValueAndTitleListBox : public wxListBox
57 {
58  public:
59   StringValueAndTitleListBox (wxDialog* pParent, int nChoices, const char* const aszTitle[], const char* const aszValue[]);
60
61     const char* getSelectionStringValue () const;
62
63  private:
64     const char* const* m_ppszValues;
65 };
66
67
68 class StringValueAndTitleRadioBox : public wxRadioBox
69 {
70  public:
71   StringValueAndTitleRadioBox (wxDialog* pParent, const wxString& strTitle, int nChoices, const char* const aszTitle[], const char* const aszValue[]);
72
73   const char* getSelectionStringValue () const;
74
75  private:
76   const char* const* m_ppszValues;
77 };
78
79
80 class DialogGetPhantom : public wxDialog
81 {
82  public:
83     DialogGetPhantom (wxWindow* pParent, int iDefaultPhantom = Phantom::PHM_HERMAN);
84     virtual ~DialogGetPhantom () {}
85
86     const char* getPhantom ();
87
88  private:
89     StringValueAndTitleRadioBox* m_pRadioBoxPhantom;
90 };
91
92
93 #include <vector>
94 class ImageFileDocument;
95 class DialogGetComparisonImage : public wxDialog
96 {
97  public:
98    DialogGetComparisonImage (wxWindow* pParent, const char* const pszTitle, const std::vector<ImageFileDocument*>& rVecIF, bool bShowMakeDifference);
99     virtual ~DialogGetComparisonImage () {}
100
101     ImageFileDocument* getImageFileDocument ();
102
103     bool getMakeDifferenceImage();
104
105  private:
106     wxListBox* m_pListBoxImageChoices;
107     wxCheckBox* m_pMakeDifferenceImage;
108     const std::vector<ImageFileDocument*>& m_rVecIF;
109 };
110
111
112 class DialogPreferences : public wxDialog
113 {
114  public:
115     DialogPreferences (wxWindow* pParent, const char* const pszTitle, bool bAdvanced, bool bAskNewDocs,
116       bool bVerboseLogging, bool bStartupTips, bool bUseBackgroundTasks);
117     virtual ~DialogPreferences ();
118
119     bool getAdvancedOptions ();
120     bool getAskDeleteNewDocs ();
121     bool getVerboseLogging ();
122     bool getStartupTips ();
123     bool getUseBackgroundTasks();
124
125  private:
126     wxCheckBox* m_pCBAdvancedOptions;
127     wxCheckBox* m_pCBAskDeleteNewDocs;
128     wxCheckBox* m_pCBVerboseLogging;
129     wxCheckBox* m_pCBStartupTips;
130     wxCheckBox* m_pCBUseBackgroundTasks;
131 };
132
133
134 class ImageFile;
135 class DialogGetMinMax : public wxDialog
136 {
137  public:
138     DialogGetMinMax (wxWindow* pParent, const char* const pszTitle, double dDefaultMin = 0., double dDefaultMax = 0.);
139     virtual ~DialogGetMinMax ();
140
141     double getMinimum ();
142     double getMaximum ();
143
144  private:
145     wxTextCtrl* m_pTextCtrlMin;
146     wxTextCtrl* m_pTextCtrlMax;
147
148     double m_dDefaultMin;
149     double m_dDefaultMax;
150 };
151
152
153 class DialogGetRasterParameters : public wxDialog
154 {
155  public:
156     DialogGetRasterParameters (wxWindow* pParent, int iDefaultXSize = 0, int iDefaultYSize = 0, 
157       int iDefaultNSamples = 1, double dDefaultViewRatio = 1);
158     virtual ~DialogGetRasterParameters ();
159
160     unsigned int getXSize ();
161     unsigned int getYSize ();
162     unsigned int getNSamples ();
163     double getViewRatio();
164
165  private:
166     wxTextCtrl* m_pTextCtrlXSize;
167     wxTextCtrl* m_pTextCtrlYSize;
168     wxTextCtrl* m_pTextCtrlNSamples;
169     wxTextCtrl* m_pTextCtrlViewRatio;
170
171     int m_iDefaultXSize;
172     int m_iDefaultYSize;
173     int m_iDefaultNSamples;
174     double m_dDefaultViewRatio;
175 };
176
177
178 class DialogGetProjectionParameters : public wxDialog
179 {
180  public:
181     DialogGetProjectionParameters (wxWindow* pParent, int iDefaultNDet = 0, 
182       int iDefaultNView = 0, int iDefaultNSamples = 1, double dDefaultRotAngle = 1., 
183       double dDefaultFocalLength = 1, double dDefaultCenterDetectorLength = 1, double dDefaultViewRatio = 1., 
184       double dDefaultScanRatio = 1., int iDefaultGeometry = Scanner::GEOMETRY_PARALLEL, int iDefaultTrace = Trace::TRACE_NONE);
185     ~DialogGetProjectionParameters ();
186
187     unsigned int getNDet ();
188     unsigned int getNView ();
189     unsigned int getNSamples ();
190     int getTrace ();
191
192     double getRotAngle ();
193     double getViewRatio ();
194     double getScanRatio ();
195     double getFocalLengthRatio ();
196     double getCenterDetectorLengthRatio ();
197     const char* getGeometry();
198
199  private:
200     wxTextCtrl* m_pTextCtrlNDet;
201     wxTextCtrl* m_pTextCtrlNView;
202     wxTextCtrl* m_pTextCtrlNSamples;
203     wxTextCtrl* m_pTextCtrlRotAngle;
204     wxTextCtrl* m_pTextCtrlFocalLength;
205     wxTextCtrl* m_pTextCtrlCenterDetectorLength;
206     wxTextCtrl* m_pTextCtrlViewRatio;
207     wxTextCtrl* m_pTextCtrlScanRatio;
208     StringValueAndTitleRadioBox* m_pRadioBoxGeometry;
209     StringValueAndTitleRadioBox* m_pRadioBoxTrace;
210
211     int m_iDefaultNDet;
212     int m_iDefaultNView;
213     int m_iDefaultNSamples;
214     int m_iDefaultTrace;
215     int m_iDefaultGeometry;
216     double m_dDefaultRotAngle;
217     double m_dDefaultFocalLength;
218     double m_dDefaultCenterDetectorLength;
219     double m_dDefaultViewRatio;
220     double m_dDefaultScanRatio;
221 };
222
223
224 #include "backprojectors.h"
225 class DialogGetReconstructionParameters : public wxDialog
226 {
227  public:
228     DialogGetReconstructionParameters (wxWindow* pParent, int iDefaultXSize = 0, int iDefaultYSize = 0, 
229       int iDefaultFilterID = SignalFilter::FILTER_ABS_BANDLIMIT, double dDefaultFilterParam = 1., 
230       int iDefaultFilterMethodID = ProcessSignal::FILTER_METHOD_CONVOLUTION, 
231       int iDefaultFilterGeneration = ProcessSignal::FILTER_GENERATION_DIRECT, 
232       int iDefaultZeropad = 3, int iDefaultInterpID = Backprojector::INTERP_LINEAR, 
233       int iDefaultInterpParam = 1, int iDefaultBackprojectID = Backprojector::BPROJ_IDIFF, 
234       int iDefaultTrace = Trace::TRACE_NONE);
235     virtual ~DialogGetReconstructionParameters ();
236
237     unsigned int getXSize();
238     unsigned int getYSize();
239     const char* getFilterName();
240     double getFilterParam();
241     const char* getFilterMethodName();
242     unsigned int getZeropad();
243     const char* getFilterGenerationName();
244     const char* getInterpName();
245     unsigned int getInterpParam();
246     const char* getBackprojectName();
247     int getTrace ();
248
249  private:
250     wxTextCtrl* m_pTextCtrlXSize;
251     wxTextCtrl* m_pTextCtrlYSize;
252     wxTextCtrl* m_pTextCtrlZeropad;
253     wxTextCtrl* m_pTextCtrlFilterParam;
254     wxTextCtrl* m_pTextCtrlInterpParam;
255
256     StringValueAndTitleRadioBox* m_pRadioBoxFilter;
257     StringValueAndTitleRadioBox* m_pRadioBoxFilterMethod;
258     StringValueAndTitleRadioBox* m_pRadioBoxFilterGeneration;
259     StringValueAndTitleRadioBox* m_pRadioBoxInterp;
260     StringValueAndTitleRadioBox* m_pRadioBoxBackproject;
261     StringValueAndTitleRadioBox* m_pRadioBoxTrace;
262
263     int m_iDefaultXSize;
264     int m_iDefaultYSize;
265     double m_dDefaultFilterParam;
266     int m_iDefaultZeropad;
267     int m_iDefaultInterpParam;
268     int m_iDefaultTrace;
269 };
270
271
272 class DialogGetFilterParameters : public wxDialog
273 {
274  public:
275     DialogGetFilterParameters (wxWindow* pParent, int iDefaultXSize = 0, int iDefaultYSize = 0, int iDefaultFilterID = SignalFilter::FILTER_BANDLIMIT, double dDefaultFilterParam = 1., double dDefaultBandwidth = 1., int iDefaultDomain = SignalFilter::DOMAIN_SPATIAL, double dDefaultInputScale = 1., double dDefaultOutputScale = 1.);
276     virtual ~DialogGetFilterParameters ();
277
278     unsigned int getXSize();
279     unsigned int getYSize();
280     const char* getFilterName();
281     const char* getDomainName();
282     double getFilterParam();
283     double getInputScale();
284     double getOutputScale();
285     double getBandwidth();
286
287  private:
288     wxTextCtrl* m_pTextCtrlXSize;
289     wxTextCtrl* m_pTextCtrlYSize;
290     wxTextCtrl* m_pTextCtrlFilterParam;
291     wxTextCtrl* m_pTextCtrlOutputScale;
292     wxTextCtrl* m_pTextCtrlInputScale;
293     wxTextCtrl* m_pTextCtrlBandwidth;
294
295     StringValueAndTitleRadioBox* m_pRadioBoxFilter;
296     StringValueAndTitleRadioBox* m_pRadioBoxDomain;
297
298     int m_iDefaultXSize;
299     int m_iDefaultYSize;
300     double m_dDefaultFilterParam;
301     double m_dDefaultBandwidth;
302     double m_dDefaultOutputScale;
303     double m_dDefaultInputScale;
304     int m_iDefaultDomain;
305 };
306
307 class DialogExportParameters : public wxDialog
308 {
309  public:
310     DialogExportParameters (wxWindow* pParent, int iDefaultFormatID);
311     virtual ~DialogExportParameters () {}
312
313     const char* getFormatName();
314
315  private:
316     StringValueAndTitleRadioBox* m_pRadioBoxFormat;
317 };
318
319 class DialogAutoScaleParameters : public wxDialog
320 {
321  public:
322     DialogAutoScaleParameters (wxWindow* pParent, double mean, double mode, double median, double stddev, double dDefaultScaleFactor = 1.);
323     virtual ~DialogAutoScaleParameters() {}
324
325     bool getMinMax (double* pMin, double* pMax);
326     double getAutoScaleFactor ();
327
328  private:
329     const double m_dMean;
330         const double m_dMode;
331         const double m_dMedian;
332         const double m_dStdDev;
333
334     wxTextCtrl* m_pTextCtrlStdDevFactor;
335     wxRadioBox* m_pRadioBoxCenter;
336 };
337
338 class DialogGetXYSize : public wxDialog
339 {
340  public:
341     DialogGetXYSize (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize = 1, int iDefaultYSize = 1);
342     virtual ~DialogGetXYSize ();
343
344     unsigned int getXSize ();
345     unsigned int getYSize ();
346
347  private:
348     wxTextCtrl* m_pTextCtrlXSize;
349     wxTextCtrl* m_pTextCtrlYSize;
350
351     unsigned int m_iDefaultXSize;
352     unsigned int m_iDefaultYSize;
353 };
354
355
356 class DialogGetConvertPolarParameters : public wxDialog
357 {
358  public:
359    DialogGetConvertPolarParameters (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize = 0, 
360      int iDefaultYSize = 0, int iDefaultInterpolationID = Projections::POLAR_INTERP_BILINEAR, 
361      int iDefaultZeropad = 1);
362    virtual ~DialogGetConvertPolarParameters ();
363
364     unsigned int getXSize();
365     unsigned int getYSize();
366     const char* getInterpolationName();
367     unsigned int getZeropad();
368
369  private:
370     wxTextCtrl* m_pTextCtrlXSize;
371     wxTextCtrl* m_pTextCtrlYSize;
372     wxTextCtrl* m_pTextCtrlZeropad;
373
374     StringValueAndTitleRadioBox* m_pRadioBoxInterpolation;
375
376     int m_iDefaultXSize;
377     int m_iDefaultYSize;
378     int m_iDefaultZeropad;
379 };
380
381
382 #endif
383