r355: Polar conversions of projections
[ctsim.git] / src / docs.cpp
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          doc.cpp
5 **   Purpose:       Document 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-2000 Kevin Rosenberg
11 **
12 **  $Id: docs.cpp,v 1.12 2001/01/06 15:33:15 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 implementation
30 #endif
31
32 // For compilers that support precompilation, includes "wx/wx.h".
33 #include "wx/wxprec.h"
34
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38
39 #ifndef WX_PRECOMP
40 #include "wx/wx.h"
41 #endif
42 #include "wx/txtstrm.h"
43 #include "wx/file.h"
44
45 #if !wxUSE_DOC_VIEW_ARCHITECTURE
46 #error You must set wxUSE_DOC_VIEW_ARCHITECTURE to 1 in setup.h!
47 #endif
48
49 #include "ct.h"
50 #include "ctsim.h"
51 #include "docs.h"
52 #include "views.h"
53
54 // ImageFileDocument
55
56 IMPLEMENT_DYNAMIC_CLASS(ImageFileDocument, wxDocument)
57
58 bool ImageFileDocument::OnSaveDocument(const wxString& filename)
59 {
60   if (! m_imageFile.fileWrite (filename)) {
61     *theApp->getLog() << "Unable to write image file " << filename << "\n";
62     return false;
63   }
64   *theApp->getLog() << "Wrote image file " << filename << "\n";
65   Modify(false);
66   return true;
67 }
68
69 bool ImageFileDocument::OnOpenDocument(const wxString& filename)
70 {
71   if (filename == "untitled.if") {
72     wxString untitledFilename = theApp->getUntitledFilename();
73     SetFilename (untitledFilename, true);
74   } else {
75     if (! m_imageFile.fileRead (filename.c_str())) {
76       *theApp->getLog() << "Unable to read image file " << filename << "\n";
77       return false;
78     }
79     *theApp->getLog() << "Read image file " << filename << "\n";
80     SetFilename(filename, true);
81   }
82   Modify(false);
83   UpdateAllViews();
84   GetFirstView()->OnUpdate (GetFirstView(), NULL);
85
86   return true;
87 }
88
89 bool ImageFileDocument::IsModified(void) const
90 {
91   return wxDocument::IsModified();
92 }
93
94 void ImageFileDocument::Modify(bool mod)
95 {
96     wxDocument::Modify(mod);
97 }
98
99 bool ImageFileDocument::OnCloseDocument ()
100 {
101   bool bReturn = wxDocument::OnCloseDocument();
102   return bReturn;
103 }
104
105 // ProjectionFileDocument
106
107 IMPLEMENT_DYNAMIC_CLASS(ProjectionFileDocument, wxDocument)
108
109 bool ProjectionFileDocument::OnSaveDocument(const wxString& filename)
110 {
111   if (! m_projectionFile.write (filename.c_str())) {
112     *theApp->getLog() << "Unable to write projection file " << filename << "\n";
113     return false;
114   }
115   *theApp->getLog() << "Wrote projection file " << filename << "\n";
116   Modify(false);
117   return true;
118 }
119
120 bool ProjectionFileDocument::OnOpenDocument(const wxString& filename)
121 {
122   if (filename == "untitled.pj") {
123     wxString untitledFilename = theApp->getUntitledFilename();
124     SetFilename (untitledFilename, true);
125   } else {
126     if (! m_projectionFile.read (filename.c_str())) {
127       *theApp->getLog() << "Unable to read projection file " << filename << "\n";
128       return false;
129     }
130     *theApp->getLog() << "Read projection file " << filename << "\n";
131     SetFilename(filename, true);
132   }
133   Modify(false);
134   UpdateAllViews();
135   GetFirstView()->OnUpdate (GetFirstView(), NULL);
136
137   return true;
138 }
139
140 bool ProjectionFileDocument::IsModified(void) const
141 {
142   return wxDocument::IsModified();
143 }
144
145 void ProjectionFileDocument::Modify(bool mod)
146 {
147     wxDocument::Modify(mod);
148 }
149
150
151 bool ProjectionFileDocument::OnCloseDocument ()
152 {
153   bool bReturn = wxDocument::OnCloseDocument();
154   return bReturn;
155 }
156
157 // PhantomDocument
158
159 IMPLEMENT_DYNAMIC_CLASS(PhantomDocument, wxDocument)
160
161 bool PhantomDocument::OnOpenDocument(const wxString& filename)
162 {
163   wxString myFilename = filename;
164   if (wxFile::Exists (myFilename)) {
165     m_phantom.createFromFile (myFilename);
166     *theApp->getLog() << "Read phantom file " << filename << "\n";
167   } else {
168     myFilename.Replace (".phm", "");
169     m_phantom.createFromPhantom (myFilename);
170   }
171   m_namePhantom = myFilename;
172   SetFilename (myFilename, true);
173   if (m_phantom.fail()) {
174     *theApp->getLog() << "Failure creating phantom " << myFilename << "\n";
175     return false;
176   }
177   m_idPhantom = m_phantom.id();
178   Modify(false);
179   UpdateAllViews();
180   GetFirstView()->OnUpdate (GetFirstView(), NULL);
181
182   return true;
183 }
184
185 bool PhantomDocument::OnSaveDocument(const wxString& filename)
186 {
187   if (! m_phantom.fileWrite (filename.c_str())) {
188     *theApp->getLog() << "Unable to write phantom file " << filename << "\n";
189     return false;
190   }
191   *theApp->getLog() << "Wrote phantom file " << filename << "\n";
192   Modify(false);
193   return true;
194 }
195
196 bool PhantomDocument::OnCloseDocument ()
197 {
198   bool bReturn = wxDocument::OnCloseDocument();
199   return bReturn;
200 }
201
202 bool PhantomDocument::IsModified(void) const
203 {
204   return wxDocument::IsModified();
205 }
206
207 void PhantomDocument::Modify(bool mod)
208 {
209     wxDocument::Modify(mod);
210 }
211
212
213 // PlotFileDocument
214
215 IMPLEMENT_DYNAMIC_CLASS(PlotFileDocument, wxDocument)
216
217 bool PlotFileDocument::OnSaveDocument(const wxString& filename)
218 {
219   m_namePlot = filename.c_str();
220   if (! m_plot.fileWrite (filename)) {
221     *theApp->getLog() << "Unable to write plot file " << filename << "\n";
222     return false;
223   }
224   *theApp->getLog() << "Wrote plot file " << filename << "\n";
225   Modify(false);
226   return true;
227 }
228
229 bool PlotFileDocument::OnOpenDocument(const wxString& filename)
230 {
231   if (filename == "untitled.plt") {
232     wxString untitledFilename = theApp->getUntitledFilename();
233     SetFilename (untitledFilename, true);
234   } else {
235     if (! m_plot.fileRead (filename.c_str())) {
236       *theApp->getLog() << "Unable to read plot file " << filename << "\n";
237       return false;
238     }
239     *theApp->getLog() << "Read plot file " << filename << "\n";
240     SetFilename (filename, true);
241     m_namePlot = filename.c_str();
242   }
243   Modify (false);
244   UpdateAllViews();
245   GetFirstView()->OnUpdate (NULL, NULL);
246
247   return true;
248 }
249
250 bool PlotFileDocument::OnCloseDocument ()
251 {
252   bool bReturn = wxDocument::OnCloseDocument();
253   return bReturn;
254 }
255
256 bool PlotFileDocument::IsModified(void) const
257 {
258   return wxDocument::IsModified();
259 }
260
261 void PlotFileDocument::Modify(bool mod)
262 {
263     wxDocument::Modify(mod);
264 }
265