r348: fix linefeed problem
[ctsim.git] / src / docs.cpp
index 179cc89750461dca1a20a89f22bdbf56a1a29dff..d9b3d1098169533deb28d032598663bbc3912854 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: docs.cpp,v 1.6 2000/12/18 09:55:22 kevin Exp $
+**  $Id: docs.cpp,v 1.11 2001/01/02 16:02:13 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -80,10 +80,8 @@ bool ImageFileDocument::OnOpenDocument(const wxString& filename)
     SetFilename(filename, true);
   }
   Modify(false);
-  UpdateAllViews();\r
-  ImageFileView* ifView = dynamic_cast<ImageFileView*>(GetFirstView());\r
-  if (ifView)\r
-         ifView->OnUpdate(ifView, NULL);\r
+  UpdateAllViews();
+  GetFirstView()->OnUpdate (GetFirstView(), NULL);
 
   return true;
 }
@@ -134,6 +132,7 @@ bool ProjectionFileDocument::OnOpenDocument(const wxString& filename)
   }
   Modify(false);
   UpdateAllViews();
+
   return true;
 }
 
@@ -177,6 +176,18 @@ bool PhantomDocument::OnOpenDocument(const wxString& filename)
   m_idPhantom = m_phantom.id();
   Modify(false);
   UpdateAllViews();
+
+  return true;
+}
+
+bool PhantomDocument::OnSaveDocument(const wxString& filename)
+{
+  if (! m_phantom.fileWrite (filename.c_str())) {
+    *theApp->getLog() << "Unable to write phantom file " << filename << "\n";
+    return false;
+  }
+  *theApp->getLog() << "Wrote phantom file " << filename << "\n";
+  Modify(false);
   return true;
 }
 
@@ -196,3 +207,57 @@ void PhantomDocument::Modify(bool mod)
     wxDocument::Modify(mod);
 }
 
+
+// PlotFileDocument
+
+IMPLEMENT_DYNAMIC_CLASS(PlotFileDocument, wxDocument)
+
+bool PlotFileDocument::OnSaveDocument(const wxString& filename)
+{
+  m_namePlot = filename.c_str();
+  if (! m_plot.fileWrite (filename)) {
+    *theApp->getLog() << "Unable to write plot file " << filename << "\n";
+    return false;
+  }
+  *theApp->getLog() << "Wrote plot file " << filename << "\n";
+  Modify(false);
+  return true;
+}
+
+bool PlotFileDocument::OnOpenDocument(const wxString& filename)
+{
+  if (filename == "untitled.plt") {
+    wxString untitledFilename = theApp->getUntitledFilename();
+    SetFilename (untitledFilename, true);
+  } else {
+    if (! m_plot.fileRead (filename.c_str())) {
+      *theApp->getLog() << "Unable to read plot file " << filename << "\n";
+      return false;
+    }
+    *theApp->getLog() << "Read plot file " << filename << "\n";
+    SetFilename (filename, true);
+    m_namePlot = filename.c_str();
+  }
+  Modify (false);
+  UpdateAllViews();
+  GetFirstView()->OnUpdate (NULL, NULL);
+
+  return true;
+}
+
+bool PlotFileDocument::OnCloseDocument ()
+{
+  bool bReturn = wxDocument::OnCloseDocument();
+  return bReturn;
+}
+
+bool PlotFileDocument::IsModified(void) const
+{
+  return wxDocument::IsModified();
+}
+
+void PlotFileDocument::Modify(bool mod)
+{
+    wxDocument::Modify(mod);
+}
+