r584: no message
[ctsim.git] / src / docs.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          docs.h
5 **   Purpose:       Header file for Document routines 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: docs.h,v 1.26 2001/02/25 16:21:36 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 interface
30 #endif
31
32 #ifndef __DOCSH__
33 #define __DOCSH__
34
35 #include "wx/docview.h"
36
37 // #include "views.h"
38 #include "imagefile.h"
39 #include "phantom.h"
40 #include "projections.h"
41 #include "plotfile.h"
42 #include "threadrecon.h"
43
44 class ProjectionFileView;
45 class PhantomFileView;
46 class ImageFileView;
47 class PlotFileView;
48 class TextFileView;
49 class Graph3dFileView;
50
51 class ImageFileDocument: public wxDocument
52 {
53 private:
54     DECLARE_DYNAMIC_CLASS(ImageFileDocument)
55     ImageFile* m_pImageFile;
56     bool m_bBadFileOpen;
57
58 public:
59     virtual bool OnSaveDocument (const wxString& filename);
60     virtual bool OnOpenDocument (const wxString& filename);
61     virtual bool IsModified () const;
62     virtual bool Revert ();
63     virtual void Modify (bool mod);
64     
65     ImageFileDocument () 
66       : m_bBadFileOpen(false)
67     {
68       m_pImageFile = new ImageFile;
69     }
70
71     virtual ~ImageFileDocument () 
72     {
73       delete m_pImageFile;
74     }
75
76     const ImageFile& getImageFile() const { return *m_pImageFile; }
77     ImageFile& getImageFile() { return *m_pImageFile; }
78     void setImageFile (ImageFile* pImageFile)
79     { 
80       delete m_pImageFile;
81       m_pImageFile = pImageFile;
82     }
83
84     ImageFileView* getView() const;
85     bool getBadFileOpen() const { return m_bBadFileOpen; }
86     void setBadFileOpen() { m_bBadFileOpen = true; }
87 };
88
89 class BackgroundProcessingDocument : public wxDocument
90 {
91 private:
92     DECLARE_DYNAMIC_CLASS(BackgroundProcessingDocument)
93     typedef BackgroundSupervisor BackgroundObject;
94     typedef std::vector<BackgroundObject*> BackgroundContainer;
95     BackgroundContainer m_vecpBackgroundSupervisors;
96     wxCriticalSection m_criticalSection;
97
98 public:
99   BackgroundProcessingDocument()
100     : wxDocument()
101       {}
102
103   void cancelRunningTasks();
104   void OnAddBackground (wxCommandEvent& event);
105   void OnRemoveBackground (wxCommandEvent& event);
106
107   DECLARE_EVENT_TABLE()
108 };
109
110 class ProjectionFileDocument: public BackgroundProcessingDocument
111 {
112 private:
113     DECLARE_DYNAMIC_CLASS(ProjectionFileDocument)
114     Projections* m_pProjectionFile;
115     bool m_bBadFileOpen;
116     
117 public:
118     virtual bool OnSaveDocument (const wxString& filename);
119     virtual bool OnOpenDocument (const wxString& filename);
120     virtual bool IsModified () const;
121     virtual void Modify (bool mod);
122     
123     ProjectionFileDocument () 
124           : m_bBadFileOpen(false)
125     {
126       m_pProjectionFile = new Projections;
127     }
128
129     virtual ~ProjectionFileDocument ();
130
131     const Projections& getProjections () const  { return *m_pProjectionFile; }
132     Projections& getProjections ()      { return *m_pProjectionFile; }
133
134     void setProjections (Projections* pProjections)
135     { delete m_pProjectionFile;
136       m_pProjectionFile = pProjections;
137     }
138
139     ProjectionFileView* getView() const;
140     bool getBadFileOpen() const { return m_bBadFileOpen; }
141     void setBadFileOpen() { m_bBadFileOpen = true; }
142 };
143
144
145 class PhantomFileDocument: public BackgroundProcessingDocument
146 {
147 private:
148     DECLARE_DYNAMIC_CLASS(PhantomFileDocument)
149     Phantom m_phantom;
150     int m_idPhantom;
151     wxString m_namePhantom;
152     bool m_bBadFileOpen;
153
154 public:
155     PhantomFileDocument () 
156         : m_idPhantom(Phantom::PHM_INVALID), m_bBadFileOpen(false)
157     {}
158
159     virtual ~PhantomFileDocument ();
160
161     const int getPhantomID () const { return m_idPhantom; }
162
163     const wxString& getPhantomName () const { return m_namePhantom; }
164
165     const Phantom& getPhantom () const  { return m_phantom; }
166
167     Phantom& getPhantom ()      { return m_phantom; }
168
169     virtual bool OnOpenDocument (const wxString& filename);
170     virtual bool OnSaveDocument (const wxString& filename);
171     virtual bool IsModified () const;
172     virtual void Modify (bool mod);
173     PhantomFileView* getView() const;
174     bool getBadFileOpen() const { return m_bBadFileOpen; }
175     void setBadFileOpen() { m_bBadFileOpen = true; }
176 };
177
178
179 class PlotFileDocument: public wxDocument
180 {
181 private:
182     DECLARE_DYNAMIC_CLASS(PlotFileDocument)
183     PlotFile m_plot;
184     wxString m_namePlot;
185     bool m_bBadFileOpen;
186
187 public:
188     PlotFileDocument () 
189       : m_bBadFileOpen(false)
190     {}
191
192     virtual ~PlotFileDocument () 
193         {}
194
195     const wxString& getPlotName () const
196         { return m_namePlot; }
197
198     const PlotFile& getPlotFile () const
199         { return m_plot; }
200
201     PlotFile& getPlotFile ()
202         { return m_plot; }
203
204     virtual bool OnOpenDocument (const wxString& filename);
205     virtual bool OnSaveDocument (const wxString& filename);
206     virtual bool IsModified () const;
207     virtual void Modify (bool mod);
208     PlotFileView* getView() const;
209     bool getBadFileOpen() const { return m_bBadFileOpen; }
210     void setBadFileOpen() { m_bBadFileOpen = true; }
211 };
212
213
214 class TextFileDocument: public wxDocument
215 {
216  private:
217   DECLARE_DYNAMIC_CLASS(TextFileDocument)
218   bool m_bBadFileOpen;
219
220  public:
221   TextFileDocument(void) 
222         : m_bBadFileOpen(false)
223   {}
224
225   virtual ~TextFileDocument(void) {}
226
227   virtual bool OnSaveDocument(const wxString& filename);
228   virtual bool OnOpenDocument(const wxString& filename);
229   virtual bool IsModified(void) const;
230
231   wxTextCtrl* getTextCtrl();
232
233   TextFileView* getView() const;
234   bool getBadFileOpen() const { return m_bBadFileOpen; }
235   void setBadFileOpen() { m_bBadFileOpen = true; }
236 };
237
238
239 #if wxUSE_GLCANVAS
240 #include <GL/gl.h>
241 #include <GL/glu.h>
242
243 typedef GLfloat glTripleFloat[3];
244
245 class Graph3dFileDocument: public wxDocument
246 {
247   friend Graph3dFileView;
248
249  private:
250   DECLARE_DYNAMIC_CLASS(Graph3dFileDocument)
251   bool m_bBadFileOpen;
252   GLint m_nVertices;
253   glTripleFloat* m_pVertices;
254   glTripleFloat* m_pNormals;
255   unsigned int m_nx;
256   unsigned int m_ny;
257   ImageFileArray m_array;
258
259  public:
260   Graph3dFileDocument(void);
261   virtual ~Graph3dFileDocument(void); 
262  
263   virtual bool OnSaveDocument (const wxString& filename);
264   virtual bool OnOpenDocument (const wxString& filename);
265   virtual bool IsModified () const;
266
267   Graph3dFileView* getView() const;
268   bool getBadFileOpen() const { return m_bBadFileOpen; }
269   void setBadFileOpen()       { m_bBadFileOpen = true; }
270   bool createFromImageFile (const ImageFile& rImageFile);
271
272   int nx() const  { return m_nx; }
273   int ny() const { return m_ny; }
274   ImageFileArray getArray() { return m_array; }
275   ImageFileArrayConst getArray() const { return m_array; }
276 };
277 #endif // wxUSE_GLCANVAS
278
279
280 #endif