r577: 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.24 2001/02/23 21:58:31 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
90 class ProjectionFileDocument: public wxDocument
91 {
92 private:
93     DECLARE_DYNAMIC_CLASS(ProjectionFileDocument)
94     Projections* m_pProjectionFile;
95     bool m_bBadFileOpen;
96     typedef BackgroundSupervisor BackgroundObject;
97     typedef std::vector<BackgroundObject*> BackgroundContainer ;
98     BackgroundContainer m_vecpBackgroundSupervisors;
99     wxCriticalSection m_criticalSection;
100     
101 public:
102     virtual bool OnSaveDocument (const wxString& filename);
103     virtual bool OnOpenDocument (const wxString& filename);
104     virtual bool IsModified () const;
105     virtual void Modify (bool mod);
106     
107     ProjectionFileDocument () 
108           : m_bBadFileOpen(false)
109     {
110       m_pProjectionFile = new Projections;
111     }
112
113     virtual ~ProjectionFileDocument ();
114
115     const Projections& getProjections () const  { return *m_pProjectionFile; }
116     Projections& getProjections ()      { return *m_pProjectionFile; }
117
118     void setProjections (Projections* pProjections)
119     { delete m_pProjectionFile;
120       m_pProjectionFile = pProjections;
121     }
122
123     ProjectionFileView* getView() const;
124     bool getBadFileOpen() const { return m_bBadFileOpen; }
125     void setBadFileOpen() { m_bBadFileOpen = true; }
126
127     void OnAddBackground (wxCommandEvent& event);
128     void OnRemoveBackground (wxCommandEvent& event);
129
130     DECLARE_EVENT_TABLE()
131 };
132
133
134 class PhantomFileDocument: public wxDocument
135 {
136 private:
137     DECLARE_DYNAMIC_CLASS(PhantomFileDocument)
138     Phantom m_phantom;
139     int m_idPhantom;
140     wxString m_namePhantom;
141     bool m_bBadFileOpen;
142
143 public:
144     PhantomFileDocument () 
145         : m_idPhantom(Phantom::PHM_INVALID), m_bBadFileOpen(false)
146     {}
147
148     virtual ~PhantomFileDocument () 
149     {}
150
151     const int getPhantomID () const { return m_idPhantom; }
152
153     const wxString& getPhantomName () const { return m_namePhantom; }
154
155     const Phantom& getPhantom () const  { return m_phantom; }
156
157     Phantom& getPhantom ()      { return m_phantom; }
158
159     virtual bool OnOpenDocument (const wxString& filename);
160     virtual bool OnSaveDocument (const wxString& filename);
161     virtual bool IsModified () const;
162     virtual void Modify (bool mod);
163     PhantomFileView* getView() const;
164     bool getBadFileOpen() const { return m_bBadFileOpen; }
165     void setBadFileOpen() { m_bBadFileOpen = true; }
166 };
167
168
169 class PlotFileDocument: public wxDocument
170 {
171 private:
172     DECLARE_DYNAMIC_CLASS(PlotFileDocument)
173     PlotFile m_plot;
174     wxString m_namePlot;
175     bool m_bBadFileOpen;
176
177 public:
178     PlotFileDocument () 
179       : m_bBadFileOpen(false)
180     {}
181
182     virtual ~PlotFileDocument () 
183         {}
184
185     const wxString& getPlotName () const
186         { return m_namePlot; }
187
188     const PlotFile& getPlotFile () const
189         { return m_plot; }
190
191     PlotFile& getPlotFile ()
192         { return m_plot; }
193
194     virtual bool OnOpenDocument (const wxString& filename);
195     virtual bool OnSaveDocument (const wxString& filename);
196     virtual bool IsModified () const;
197     virtual void Modify (bool mod);
198     PlotFileView* getView() const;
199     bool getBadFileOpen() const { return m_bBadFileOpen; }
200     void setBadFileOpen() { m_bBadFileOpen = true; }
201 };
202
203
204 class TextFileDocument: public wxDocument
205 {
206  private:
207   DECLARE_DYNAMIC_CLASS(TextFileDocument)
208   bool m_bBadFileOpen;
209
210  public:
211   TextFileDocument(void) 
212         : m_bBadFileOpen(false)
213   {}
214
215   virtual ~TextFileDocument(void) {}
216
217   virtual bool OnSaveDocument(const wxString& filename);
218   virtual bool OnOpenDocument(const wxString& filename);
219   virtual bool IsModified(void) const;
220
221   wxTextCtrl* getTextCtrl();
222
223   TextFileView* getView() const;
224   bool getBadFileOpen() const { return m_bBadFileOpen; }
225   void setBadFileOpen() { m_bBadFileOpen = true; }
226 };
227
228
229 #if wxUSE_GLCANVAS
230 #include <GL/gl.h>
231 #include <GL/glu.h>
232
233 typedef GLfloat glTripleFloat[3];
234
235 class Graph3dFileDocument: public wxDocument
236 {
237   friend Graph3dFileView;
238
239  private:
240   DECLARE_DYNAMIC_CLASS(Graph3dFileDocument)
241   bool m_bBadFileOpen;
242   GLint m_nVertices;
243   glTripleFloat* m_pVertices;
244   glTripleFloat* m_pNormals;
245   unsigned int m_nx;
246   unsigned int m_ny;
247   ImageFileArray m_array;
248
249  public:
250   Graph3dFileDocument(void);
251   virtual ~Graph3dFileDocument(void); 
252  
253   virtual bool OnSaveDocument (const wxString& filename);
254   virtual bool OnOpenDocument (const wxString& filename);
255   virtual bool IsModified () const;
256
257   Graph3dFileView* getView() const;
258   bool getBadFileOpen() const { return m_bBadFileOpen; }
259   void setBadFileOpen()       { m_bBadFileOpen = true; }
260   bool createFromImageFile (const ImageFile& rImageFile);
261
262   int nx() const  { return m_nx; }
263   int ny() const { return m_ny; }
264   ImageFileArray getArray() { return m_array; }
265   ImageFileArrayConst getArray() const { return m_array; }
266 };
267 #endif // wxUSE_GLCANVAS
268
269
270 #endif