r261: Use explicit std:: namespace
[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.4 2000/12/16 06:12:47 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)) {
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   return true;
85 }
86
87 bool ImageFileDocument::IsModified(void) const
88 {
89   return wxDocument::IsModified();
90 }
91
92 void ImageFileDocument::Modify(bool mod)
93 {
94     wxDocument::Modify(mod);
95 }
96
97 bool ImageFileDocument::OnCloseDocument ()
98 {
99   bool bReturn = wxDocument::OnCloseDocument();
100   return bReturn;
101 }
102
103 // ProjectionFileDocument
104
105 IMPLEMENT_DYNAMIC_CLASS(ProjectionFileDocument, wxDocument)
106
107 bool ProjectionFileDocument::OnSaveDocument(const wxString& filename)
108 {
109   if (! m_projectionFile.write (filename)) {
110     *theApp->getLog() << "Unable to write projection file " << filename << "\n";
111     return false;
112   }
113   *theApp->getLog() << "Wrote projection file " << filename << "\n";
114   Modify(false);
115   return true;
116 }
117
118 bool ProjectionFileDocument::OnOpenDocument(const wxString& filename)
119 {
120   if (filename == "untitled.pj") {
121     wxString untitledFilename = theApp->getUntitledFilename();
122     SetFilename (untitledFilename, true);
123   } else {
124     if (! m_projectionFile.read (filename)) {
125       *theApp->getLog() << "Unable to read projection file " << filename << "\n";
126       return false;
127     }
128     *theApp->getLog() << "Read projection file " << filename << "\n";
129     SetFilename(filename, true);
130   }
131   Modify(false);
132   UpdateAllViews();
133   return true;
134 }
135
136 bool ProjectionFileDocument::IsModified(void) const
137 {
138   return wxDocument::IsModified();
139 }
140
141 void ProjectionFileDocument::Modify(bool mod)
142 {
143     wxDocument::Modify(mod);
144 }
145
146
147 bool ProjectionFileDocument::OnCloseDocument ()
148 {
149   bool bReturn = wxDocument::OnCloseDocument();
150   return bReturn;
151 }
152
153 // PhantomDocument
154
155 IMPLEMENT_DYNAMIC_CLASS(PhantomDocument, wxDocument)
156
157 bool PhantomDocument::OnOpenDocument(const wxString& filename)
158 {
159   wxString myFilename = filename;
160   if (wxFile::Exists (myFilename)) {
161     m_phantom.createFromFile (myFilename);
162     *theApp->getLog() << "Read phantom file " << filename << "\n";
163   } else {
164     myFilename.Replace (".phm", "");
165     m_phantom.createFromPhantom (myFilename);
166   }
167   m_namePhantom = myFilename;
168   SetFilename (myFilename, true);
169   if (m_phantom.fail()) {
170     *theApp->getLog() << "Failure creating phantom " << myFilename << "\n";
171     return false;
172   }
173   m_idPhantom = m_phantom.id();
174   Modify(false);
175   UpdateAllViews();
176   return true;
177 }
178
179 bool PhantomDocument::OnCloseDocument ()
180 {
181   bool bReturn = wxDocument::OnCloseDocument();
182   return bReturn;
183 }
184
185 bool PhantomDocument::IsModified(void) const
186 {
187   return wxDocument::IsModified();
188 }
189
190 void PhantomDocument::Modify(bool mod)
191 {
192     wxDocument::Modify(mod);
193 }
194