r569: no message
[ctsim.git] / src / ctsim.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          ctsim.cpp
5 **   Purpose:       Top-level 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-2001 Kevin Rosenberg
11 **
12 **  $Id: ctsim.h,v 1.49 2001/02/21 20:13:03 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 OnCreatePhantom (wxCommandEvent& event);
140   void OnPreferences (wxCommandEvent& event);
141
142   void OnHelpButton (wxCommandEvent& event);
143
144 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
145   void OnHelpSecondary (wxCommandEvent& event);
146 #endif
147
148   void OnCreateFilter (wxCommandEvent& event);
149   void OnExit (wxCommandEvent& event);
150   
151   void OnUpdateUI (wxUpdateUIEvent& event);
152   
153   void OnWindowMenu0 (wxCommandEvent& event);
154   void OnWindowMenu1 (wxCommandEvent& event);
155   void OnWindowMenu2 (wxCommandEvent& event);
156   void OnWindowMenu3 (wxCommandEvent& event);
157   void OnWindowMenu4 (wxCommandEvent& event);
158   void OnWindowMenu5 (wxCommandEvent& event);
159   void OnWindowMenu6 (wxCommandEvent& event);
160   void OnWindowMenu7 (wxCommandEvent& event);
161   void OnWindowMenu8 (wxCommandEvent& event);
162   void OnWindowMenu9 (wxCommandEvent& event);
163   void OnWindowMenu10 (wxCommandEvent& event);
164   void OnWindowMenu11 (wxCommandEvent& event);
165   void OnWindowMenu12 (wxCommandEvent& event);
166   void OnWindowMenu13 (wxCommandEvent& event);
167   void OnWindowMenu14 (wxCommandEvent& event);
168   void OnWindowMenu15 (wxCommandEvent& event);
169   void OnWindowMenu16 (wxCommandEvent& event);
170   void OnWindowMenu17 (wxCommandEvent& event);
171   void OnWindowMenu18 (wxCommandEvent& event);
172   void OnWindowMenu19 (wxCommandEvent& event);
173   
174   void DoWindowMenu (int iMenuPosition, wxCommandEvent& event);
175
176   bool getShuttingDown() const { return m_bShuttingDown; }
177 };
178
179
180 class wxDocManager;
181 class CTSimApp: public wxApp
182 {
183 private:
184   enum { O_HELP, O_PRINT, O_VERSION };
185   static struct option ctsimOptions[];
186
187   bool m_bAdvancedOptions;
188   bool m_bSetModifyNewDocs;
189   bool m_bVerboseLogging;
190
191   wxDocManager* m_docManager;
192   MainFrame* m_pFrame;
193   wxConfig* m_pConfig;
194   wxTextCtrl* m_pLog;
195   wxDocTemplate* m_pDocTemplImage;
196   wxDocTemplate* m_pDocTemplProjection;
197   wxDocTemplate* m_pDocTemplPhantom;
198   wxDocTemplate* m_pDocTemplPlot;
199   wxDocTemplate* m_pDocTemplText;
200 #if wxUSE_GLCANVAS
201   wxDocTemplate* m_pDocTemplGraph3d;
202 #endif
203   
204   TextFileDocument* m_pLogDoc;
205
206   void usage (const char* program);
207   void openConfig();
208   void closeConfig();
209
210 public:
211   CTSimApp();
212   bool OnInit();
213   int OnExit();
214   MainFrame* getMainFrame() const
215   { return m_pFrame; }
216
217   wxTextCtrl* getLog()
218   { return m_pLog; }
219
220   wxDocManager* getDocManager() 
221   { return m_docManager; }
222   
223   wxString getUntitledFilename();
224   
225   EZPlotDialog* makeEZPlotDialog()
226   { return new EZPlotDialog (m_pFrame); }
227   
228   void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector<ImageFileDocument*>& vecIF);
229   bool getAdvancedOptions() const { return m_bAdvancedOptions; }
230   void setAdvancedOptions (bool bAdv) { m_bAdvancedOptions = bAdv; }
231   bool getVerboseLogging() const { return m_bVerboseLogging; }
232   void setVerboseLogging (bool bVerbose) { m_bVerboseLogging = bVerbose; }
233
234   void setIconForFrame (wxFrame* pFrame);
235   wxConfig* getConfig()
236   { return m_pConfig; }
237   bool getAskDeleteNewDocs() const { return m_bSetModifyNewDocs; }
238   void setAskDeleteNewDocs(bool bAsk) { m_bSetModifyNewDocs = bAsk; }
239
240   wxDocTemplate* getDocTemplImage() { return m_pDocTemplImage; }
241   wxDocTemplate* getDocTemplProjection() { return m_pDocTemplProjection; }
242   wxDocTemplate* getDocTemplPhantom() { return m_pDocTemplPhantom; }
243   wxDocTemplate* getDocTemplPlot() { return m_pDocTemplPlot; }
244   wxDocTemplate* getDocTemplText() { return m_pDocTemplText; }
245 #if wxUSE_GLCANVAS
246   wxDocTemplate* getDocTemplGraph3d() { return m_pDocTemplGraph3d; }
247 #endif
248   TextFileDocument* getLogDoc() { return m_pLogDoc; }
249
250   ProjectionFileDocument* newProjectionDoc();
251   ImageFileDocument* newImageDoc();
252   PhantomFileDocument* newPhantomDoc();
253   PlotFileDocument* newPlotDoc();
254   TextFileDocument* newTextDoc();
255 #if wxUSE_GLCANVAS
256   Graph3dFileDocument* newGraph3dDoc();
257 #endif
258 };
259
260 DECLARE_APP(CTSimApp)
261
262 extern class CTSimApp* theApp;
263
264 enum {
265     MAINMENU_WINDOW_BASE = 500,
266     MAINMENU_HELP_ABOUT = 600,
267     MAINMENU_HELP_CONTENTS,
268 #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG))
269     MAINMENU_HELP_SECONDARY,
270 #endif
271     MAINMENU_FILE_CREATE_PHANTOM,
272     
273     MAINMENU_FILE_CREATE_FILTER,
274     MAINMENU_FILE_EXIT,
275     MAINMENU_FILE_PREFERENCES,
276     
277     PJMENU_FILE_PROPERTIES,
278     PJMENU_RECONSTRUCT_FBP,
279     PJMENU_RECONSTRUCT_FOURIER,
280     PJMENU_CONVERT_POLAR,
281     PJMENU_CONVERT_FFT_POLAR,
282     
283     IFMENU_FILE_EXPORT,
284     IFMENU_FILE_PROPERTIES,
285     
286     IFMENU_PLOT_ROW,
287     IFMENU_PLOT_COL,
288     IFMENU_PLOT_FFT_ROW,
289     IFMENU_PLOT_FFT_COL,
290     IFMENU_PLOT_HISTOGRAM,
291     
292     IFMENU_VIEW_SCALE_AUTO,
293     IFMENU_VIEW_SCALE_MINMAX,
294     IFMENU_VIEW_SCALE_FULL,
295     
296     IFMENU_COMPARE_IMAGES,
297     IFMENU_COMPARE_ROW,
298     IFMENU_COMPARE_COL,
299     IFMENU_IMAGE_SCALESIZE,
300     IFMENU_IMAGE_ADD,
301     IFMENU_IMAGE_SUBTRACT,
302     IFMENU_IMAGE_MULTIPLY,
303     IFMENU_IMAGE_DIVIDE,
304 #if wxUSE_GLCANVAS
305     IFMENU_IMAGE_CONVERT3D,
306 #endif
307
308     IFMENU_FILTER_INVERTVALUES,
309     IFMENU_FILTER_SQRT,
310     IFMENU_FILTER_SQUARE,
311     IFMENU_FILTER_LOG,
312     IFMENU_FILTER_EXP,
313     IFMENU_FILTER_FOURIER,
314     IFMENU_FILTER_INVERSE_FOURIER,
315     IFMENU_FILTER_FFT,
316     IFMENU_FILTER_IFFT,
317     IFMENU_FILTER_FFT_ROWS,
318     IFMENU_FILTER_FFT_COLS,
319     IFMENU_FILTER_IFFT_ROWS,
320     IFMENU_FILTER_IFFT_COLS,
321     IFMENU_FILTER_MAGNITUDE,
322     IFMENU_FILTER_PHASE,
323     IFMENU_FILTER_SHUFFLENATURALTOFOURIERORDER,
324     IFMENU_FILTER_SHUFFLEFOURIERTONATURALORDER,
325     
326     PHMMENU_FILE_PROPERTIES,
327     PHMMENU_PROCESS_RASTERIZE,
328     PHMMENU_PROCESS_PROJECTIONS,
329     
330     PLOTMENU_VIEW_SCALE_MINMAX,
331     PLOTMENU_VIEW_SCALE_AUTO,
332     PLOTMENU_VIEW_SCALE_FULL,    
333
334     GRAPH3D_VIEW_SURFACE,
335     GRAPH3D_VIEW_COLOR,
336     GRAPH3D_VIEW_LIGHTING,
337     GRAPH3D_VIEW_SMOOTH,
338     GRAPH3D_VIEW_SCALE_AUTO,
339     GRAPH3D_VIEW_SCALE_MINMAX,
340     GRAPH3D_VIEW_SCALE_FULL,
341 };
342
343 #endif