r570: no message
[ctsim.git] / src / ctsim.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          ctsim.h
5 **   Purpose:       Header file for CTSim
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: ctsim.h,v 1.50 2001/02/22 00:56: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 #ifndef __CTSIMH__
29 #define __CTSIMH__
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34 #ifdef HAVE_DMALLOC
35 #include <dmalloc.h>
36 #endif
37
38 #ifndef WX_PRECOMP
39 #include "wx/wx.h"
40 #endif
41 #include "wx/config.h"
42 #ifdef __WXMSW__
43 #include "wx/msw/helpchm.h"
44 #endif
45
46 #ifdef MSVC
47 #define CTSIM_MDI 1
48 #endif
49 #define CTSIM_CUSTOM_MRU 1
50
51 #if defined(CTSIM_MDI) && !wxUSE_MDI_ARCHITECTURE
52 #error You must set wxUSE_MDI_ARCHITECTURE to 1 in setup.h!
53 #endif
54 #ifdef CTSIM_MDI
55 #include "wx/docmdi.h"
56 #endif
57
58 class wxMenu;
59 class wxDocument;
60 class ImageFileDocument;
61 class ProjectionFileDocument;
62 class PhantomFileDocument;
63 class PlotFileDocument;
64 class TextFileDocument;
65 #if wxUSE_GLCANVAS
66 class Graph3dFileDocument;
67 #endif
68
69 #include <vector>
70 #include "wx/docview.h"
71 #include "wx/textctrl.h"
72 #include "wx/menu.h"
73 #include "wx/help.h"
74 #include "wx/html/helpctrl.h"
75 #include "dlgezplot.h"
76 #include "ctsim-map.h"
77
78
79 #if defined(__WXMSW__) || defined (MSVC)
80 #define CTSIM_WINHELP   1
81 #endif
82
83 // Define a new frame for main window
84 #if CTSIM_MDI
85 class MainFrame: public wxDocMDIParentFrame
86 #else
87 class MainFrame: public wxDocParentFrame
88 #endif
89 {
90 private:
91   DECLARE_CLASS(MainFrame)
92   DECLARE_EVENT_TABLE()
93
94 #ifndef CTSIM_MDI
95   wxMenu* m_pWindowMenu;
96 #endif
97
98   enum { MAX_WINDOW_MENUITEMS = 20 };
99   wxMenuItem* m_apWindowMenuItems[MAX_WINDOW_MENUITEMS];
100   wxDocument* m_apWindowMenuData[MAX_WINDOW_MENUITEMS];
101   
102   int m_iDefaultPhantomID;
103   int m_iDefaultFilterID;
104   int m_iDefaultFilterDomainID;
105   unsigned int m_iDefaultFilterXSize;    
106   unsigned int m_iDefaultFilterYSize;
107   double m_dDefaultFilterParam;
108   double m_dDefaultFilterBandwidth;
109   double m_dDefaultFilterInputScale;
110   double m_dDefaultFilterOutputScale;
111
112   bool m_bShuttingDown;
113
114 #if CTSIM_WINHELP
115   wxCHMHelpController      m_winHelp;
116 #endif
117   wxHtmlHelpController     m_htmlHelp;
118   
119 public:
120   MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type);
121   virtual ~MainFrame();
122
123 #ifdef CTSIM_CUSTOM_MRU
124   void OnMRUFile (wxCommandEvent& event);
125 #endif
126   void OnSize (wxSizeEvent& event);
127
128 #if CTSIM_WINHELP
129   wxCHMHelpController&   getWinHelpController()
130   {return m_winHelp; }
131 #endif
132   wxHtmlHelpController&  getHtmlHelpController()
133   { return m_htmlHelp; }
134
135   void showHelp (int commandID);
136
137   void OnAbout (wxCommandEvent& event);
138   void OnHelpContents (wxCommandEvent& event);
139   void OnHelpTips (wxCommandEvent& event);
140   void OnCreatePhantom (wxCommandEvent& event);
141   void OnPreferences (wxCommandEvent& event);
142
143   void OnHelpButton (wxCommandEvent& event);
144
145 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
146   void OnHelpSecondary (wxCommandEvent& event);
147 #endif
148
149   void OnCreateFilter (wxCommandEvent& event);
150   void OnExit (wxCommandEvent& event);
151   
152   void OnUpdateUI (wxUpdateUIEvent& event);
153   
154   void OnWindowMenu0 (wxCommandEvent& event);
155   void OnWindowMenu1 (wxCommandEvent& event);
156   void OnWindowMenu2 (wxCommandEvent& event);
157   void OnWindowMenu3 (wxCommandEvent& event);
158   void OnWindowMenu4 (wxCommandEvent& event);
159   void OnWindowMenu5 (wxCommandEvent& event);
160   void OnWindowMenu6 (wxCommandEvent& event);
161   void OnWindowMenu7 (wxCommandEvent& event);
162   void OnWindowMenu8 (wxCommandEvent& event);
163   void OnWindowMenu9 (wxCommandEvent& event);
164   void OnWindowMenu10 (wxCommandEvent& event);
165   void OnWindowMenu11 (wxCommandEvent& event);
166   void OnWindowMenu12 (wxCommandEvent& event);
167   void OnWindowMenu13 (wxCommandEvent& event);
168   void OnWindowMenu14 (wxCommandEvent& event);
169   void OnWindowMenu15 (wxCommandEvent& event);
170   void OnWindowMenu16 (wxCommandEvent& event);
171   void OnWindowMenu17 (wxCommandEvent& event);
172   void OnWindowMenu18 (wxCommandEvent& event);
173   void OnWindowMenu19 (wxCommandEvent& event);
174   
175   void DoWindowMenu (int iMenuPosition, wxCommandEvent& event);
176
177   bool getShuttingDown() const { return m_bShuttingDown; }
178 };
179
180
181 class wxDocManager;
182 class CTSimApp: public wxApp
183 {
184 private:
185   enum { O_HELP, O_PRINT, O_VERSION };
186   static struct option ctsimOptions[];
187
188   bool m_bAdvancedOptions;
189   bool m_bSetModifyNewDocs;
190   bool m_bVerboseLogging;
191   bool m_bShowStartupTips;
192   long m_iCurrentTip;
193
194   wxDocManager* m_docManager;
195   MainFrame* m_pFrame;
196   wxConfig* m_pConfig;
197   wxTextCtrl* m_pLog;
198   wxDocTemplate* m_pDocTemplImage;
199   wxDocTemplate* m_pDocTemplProjection;
200   wxDocTemplate* m_pDocTemplPhantom;
201   wxDocTemplate* m_pDocTemplPlot;
202   wxDocTemplate* m_pDocTemplText;
203 #if wxUSE_GLCANVAS
204   wxDocTemplate* m_pDocTemplGraph3d;
205 #endif
206   
207   TextFileDocument* m_pLogDoc;
208
209   void usage (const char* program);
210   void openConfig();
211   void closeConfig();
212
213 public:
214   CTSimApp();
215   bool OnInit();
216   int OnExit();
217   MainFrame* getMainFrame() const
218   { return m_pFrame; }
219
220   wxTextCtrl* getLog()
221   { return m_pLog; }
222
223   wxDocManager* getDocManager() 
224   { return m_docManager; }
225   
226   wxString getUntitledFilename();
227   
228   EZPlotDialog* makeEZPlotDialog()
229   { return new EZPlotDialog (m_pFrame); }
230   
231   void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF);
232   bool getAdvancedOptions() const { return m_bAdvancedOptions; }
233   void setAdvancedOptions (bool bAdv) { m_bAdvancedOptions = bAdv; }
234   bool getVerboseLogging() const { return m_bVerboseLogging; }
235   void setVerboseLogging (bool bVerbose) { m_bVerboseLogging = bVerbose; }
236   bool getStartupTips() const { return m_bShowStartupTips; }
237   void setStartupTips(bool bTips) { m_bShowStartupTips = bTips; }
238
239   void ShowTips();
240
241   void setIconForFrame (wxFrame* pFrame);
242   wxConfig* getConfig()
243   { return m_pConfig; }
244   bool getAskDeleteNewDocs() const { return m_bSetModifyNewDocs; }
245   void setAskDeleteNewDocs(bool bAsk) { m_bSetModifyNewDocs = bAsk; }
246
247   wxDocTemplate* getDocTemplImage() { return m_pDocTemplImage; }
248   wxDocTemplate* getDocTemplProjection() { return m_pDocTemplProjection; }
249   wxDocTemplate* getDocTemplPhantom() { return m_pDocTemplPhantom; }
250   wxDocTemplate* getDocTemplPlot() { return m_pDocTemplPlot; }
251   wxDocTemplate* getDocTemplText() { return m_pDocTemplText; }
252 #if wxUSE_GLCANVAS
253   wxDocTemplate* getDocTemplGraph3d() { return m_pDocTemplGraph3d; }
254 #endif
255   TextFileDocument* getLogDoc() { return m_pLogDoc; }
256
257   ProjectionFileDocument* newProjectionDoc();
258   ImageFileDocument* newImageDoc();
259   PhantomFileDocument* newPhantomDoc();
260   PlotFileDocument* newPlotDoc();
261   TextFileDocument* newTextDoc();
262 #if wxUSE_GLCANVAS
263   Graph3dFileDocument* newGraph3dDoc();
264 #endif
265 };
266
267 DECLARE_APP(CTSimApp)
268
269 extern class CTSimApp* theApp;
270
271 enum {
272     MAINMENU_WINDOW_BASE = 500,
273     MAINMENU_HELP_ABOUT = 600,
274     MAINMENU_HELP_CONTENTS,
275     MAINMENU_HELP_TIPS,
276 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
277     MAINMENU_HELP_SECONDARY,
278 #endif
279     MAINMENU_FILE_CREATE_PHANTOM,
280     
281     MAINMENU_FILE_CREATE_FILTER,
282     MAINMENU_FILE_EXIT,
283     MAINMENU_FILE_PREFERENCES,
284     
285     PJMENU_FILE_PROPERTIES,
286     PJMENU_RECONSTRUCT_FBP,
287     PJMENU_RECONSTRUCT_FOURIER,
288     PJMENU_CONVERT_POLAR,
289     PJMENU_CONVERT_FFT_POLAR,
290     
291     IFMENU_FILE_EXPORT,
292     IFMENU_FILE_PROPERTIES,
293     
294     IFMENU_PLOT_ROW,
295     IFMENU_PLOT_COL,
296     IFMENU_PLOT_FFT_ROW,
297     IFMENU_PLOT_FFT_COL,
298     IFMENU_PLOT_HISTOGRAM,
299     
300     IFMENU_VIEW_SCALE_AUTO,
301     IFMENU_VIEW_SCALE_MINMAX,
302     IFMENU_VIEW_SCALE_FULL,
303     
304     IFMENU_COMPARE_IMAGES,
305     IFMENU_COMPARE_ROW,
306     IFMENU_COMPARE_COL,
307     IFMENU_IMAGE_SCALESIZE,
308     IFMENU_IMAGE_ADD,
309     IFMENU_IMAGE_SUBTRACT,
310     IFMENU_IMAGE_MULTIPLY,
311     IFMENU_IMAGE_DIVIDE,
312 #if wxUSE_GLCANVAS
313     IFMENU_IMAGE_CONVERT3D,
314 #endif
315
316     IFMENU_FILTER_INVERTVALUES,
317     IFMENU_FILTER_SQRT,
318     IFMENU_FILTER_SQUARE,
319     IFMENU_FILTER_LOG,
320     IFMENU_FILTER_EXP,
321     IFMENU_FILTER_FOURIER,
322     IFMENU_FILTER_INVERSE_FOURIER,
323     IFMENU_FILTER_FFT,
324     IFMENU_FILTER_IFFT,
325     IFMENU_FILTER_FFT_ROWS,
326     IFMENU_FILTER_FFT_COLS,
327     IFMENU_FILTER_IFFT_ROWS,
328     IFMENU_FILTER_IFFT_COLS,
329     IFMENU_FILTER_MAGNITUDE,
330     IFMENU_FILTER_PHASE,
331     IFMENU_FILTER_SHUFFLENATURALTOFOURIERORDER,
332     IFMENU_FILTER_SHUFFLEFOURIERTONATURALORDER,
333     
334     PHMMENU_FILE_PROPERTIES,
335     PHMMENU_PROCESS_RASTERIZE,
336     PHMMENU_PROCESS_PROJECTIONS,
337     
338     PLOTMENU_VIEW_SCALE_MINMAX,
339     PLOTMENU_VIEW_SCALE_AUTO,
340     PLOTMENU_VIEW_SCALE_FULL,    
341
342     GRAPH3D_VIEW_SURFACE,
343     GRAPH3D_VIEW_COLOR,
344     GRAPH3D_VIEW_LIGHTING,
345     GRAPH3D_VIEW_SMOOTH,
346     GRAPH3D_VIEW_SCALE_AUTO,
347     GRAPH3D_VIEW_SCALE_MINMAX,
348     GRAPH3D_VIEW_SCALE_FULL,
349 };
350
351 #endif