r631: no message
[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.34 2001/03/11 15:27:30 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, ReconstructionROI* pROI = NULL);
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     void getROI (ReconstructionROI* pROI);
248     int getTrace ();
249
250  private:
251     wxTextCtrl* m_pTextCtrlXSize;
252     wxTextCtrl* m_pTextCtrlYSize;
253     wxTextCtrl* m_pTextCtrlZeropad;
254     wxTextCtrl* m_pTextCtrlFilterParam;
255     wxTextCtrl* m_pTextCtrlInterpParam;
256     wxTextCtrl* m_pTextCtrlRoiXMin;
257     wxTextCtrl* m_pTextCtrlRoiXMax;
258     wxTextCtrl* m_pTextCtrlRoiYMin;
259     wxTextCtrl* m_pTextCtrlRoiYMax;
260     StringValueAndTitleRadioBox* m_pRadioBoxFilter;
261     StringValueAndTitleRadioBox* m_pRadioBoxFilterMethod;
262     StringValueAndTitleRadioBox* m_pRadioBoxFilterGeneration;
263     StringValueAndTitleRadioBox* m_pRadioBoxInterp;
264     StringValueAndTitleRadioBox* m_pRadioBoxBackproject;
265     StringValueAndTitleRadioBox* m_pRadioBoxTrace;
266
267     int m_iDefaultXSize;
268     int m_iDefaultYSize;
269     double m_dDefaultFilterParam;
270     int m_iDefaultZeropad;
271     int m_iDefaultInterpParam;
272     double m_dDefaultRoiXMin;
273     double m_dDefaultRoiXMax;
274     double m_dDefaultRoiYMin;
275     double m_dDefaultRoiYMax;
276 };
277
278
279 class DialogGetFilterParameters : public wxDialog
280 {
281  public:
282     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.);
283     virtual ~DialogGetFilterParameters ();
284
285     unsigned int getXSize();
286     unsigned int getYSize();
287     const char* getFilterName();
288     const char* getDomainName();
289     double getFilterParam();
290     double getInputScale();
291     double getOutputScale();
292     double getBandwidth();
293
294  private:
295     wxTextCtrl* m_pTextCtrlXSize;
296     wxTextCtrl* m_pTextCtrlYSize;
297     wxTextCtrl* m_pTextCtrlFilterParam;
298     wxTextCtrl* m_pTextCtrlOutputScale;
299     wxTextCtrl* m_pTextCtrlInputScale;
300     wxTextCtrl* m_pTextCtrlBandwidth;
301
302     StringValueAndTitleRadioBox* m_pRadioBoxFilter;
303     StringValueAndTitleRadioBox* m_pRadioBoxDomain;
304
305     int m_iDefaultXSize;
306     int m_iDefaultYSize;
307     double m_dDefaultFilterParam;
308     double m_dDefaultBandwidth;
309     double m_dDefaultOutputScale;
310     double m_dDefaultInputScale;
311     int m_iDefaultDomain;
312 };
313
314 class DialogExportParameters : public wxDialog
315 {
316  public:
317     DialogExportParameters (wxWindow* pParent, int iDefaultFormatID);
318     virtual ~DialogExportParameters () {}
319
320     const char* getFormatName();
321
322  private:
323     StringValueAndTitleRadioBox* m_pRadioBoxFormat;
324 };
325
326 class DialogImportParameters : public wxDialog
327 {
328  public:
329     DialogImportParameters (wxWindow* pParent, int iDefaultFormatID);
330     virtual ~DialogImportParameters () {}
331
332     const char* getFormatName();
333
334  private:
335     StringValueAndTitleRadioBox* m_pRadioBoxFormat;
336 };
337
338 class DialogAutoScaleParameters : public wxDialog
339 {
340  public:
341     DialogAutoScaleParameters (wxWindow* pParent, double mean, double mode, double median, double stddev, double dDefaultScaleFactor = 1.);
342     virtual ~DialogAutoScaleParameters() {}
343
344     bool getMinMax (double* pMin, double* pMax);
345     double getAutoScaleFactor ();
346
347  private:
348     const double m_dMean;
349         const double m_dMode;
350         const double m_dMedian;
351         const double m_dStdDev;
352
353     wxTextCtrl* m_pTextCtrlStdDevFactor;
354     wxRadioBox* m_pRadioBoxCenter;
355 };
356
357 class DialogGetXYSize : public wxDialog
358 {
359  public:
360     DialogGetXYSize (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize = 1, int iDefaultYSize = 1);
361     virtual ~DialogGetXYSize ();
362
363     unsigned int getXSize ();
364     unsigned int getYSize ();
365
366  private:
367     wxTextCtrl* m_pTextCtrlXSize;
368     wxTextCtrl* m_pTextCtrlYSize;
369
370     unsigned int m_iDefaultXSize;
371     unsigned int m_iDefaultYSize;
372 };
373
374
375 class DialogGetConvertPolarParameters : public wxDialog
376 {
377  public:
378    DialogGetConvertPolarParameters (wxWindow* pParent, const char* const pszTitle, int iDefaultXSize = 0, 
379      int iDefaultYSize = 0, int iDefaultInterpolationID = Projections::POLAR_INTERP_BILINEAR, 
380      int iDefaultZeropad = 1);
381    virtual ~DialogGetConvertPolarParameters ();
382
383     unsigned int getXSize();
384     unsigned int getYSize();
385     const char* getInterpolationName();
386     unsigned int getZeropad();
387
388  private:
389     wxTextCtrl* m_pTextCtrlXSize;
390     wxTextCtrl* m_pTextCtrlYSize;
391     wxTextCtrl* m_pTextCtrlZeropad;
392
393     StringValueAndTitleRadioBox* m_pRadioBoxInterpolation;
394
395     int m_iDefaultXSize;
396     int m_iDefaultYSize;
397     int m_iDefaultZeropad;
398 };
399
400
401 #endif
402