r427: Changes for MDI support
[ctsim.git] / src / docs.cpp
index c3fd4892fd8747a0eb08adda81880eb0936f2703..4520551adca8ecf90b27465828894c51b0e00474 100644 (file)
@@ -9,7 +9,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: docs.cpp,v 1.7 2000/12/19 21:37:51 kevin Exp $
+**  $Id: docs.cpp,v 1.13 2001/01/20 08:10:33 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;
 }
@@ -98,11 +96,6 @@ void ImageFileDocument::Modify(bool mod)
     wxDocument::Modify(mod);
 }
 
-bool ImageFileDocument::OnCloseDocument ()
-{
-  bool bReturn = wxDocument::OnCloseDocument();
-  return bReturn;
-}
 
 // ProjectionFileDocument
 
@@ -134,6 +127,8 @@ bool ProjectionFileDocument::OnOpenDocument(const wxString& filename)
   }
   Modify(false);
   UpdateAllViews();
+  GetFirstView()->OnUpdate (GetFirstView(), NULL);
+
   return true;
 }
 
@@ -148,11 +143,6 @@ void ProjectionFileDocument::Modify(bool mod)
 }
 
 
-bool ProjectionFileDocument::OnCloseDocument ()
-{
-  bool bReturn = wxDocument::OnCloseDocument();
-  return bReturn;
-}
 
 // PhantomDocument
 
@@ -177,18 +167,25 @@ bool PhantomDocument::OnOpenDocument(const wxString& filename)
   m_idPhantom = m_phantom.id();
   Modify(false);
   UpdateAllViews();
+  GetFirstView()->OnUpdate (GetFirstView(), NULL);
+
   return true;
 }
 
-bool PhantomDocument::OnCloseDocument ()
+bool PhantomDocument::OnSaveDocument(const wxString& filename)
 {
-  bool bReturn = wxDocument::OnCloseDocument();
-  return bReturn;
+  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;
 }
 
 bool PhantomDocument::IsModified(void) const
 {
-  return wxDocument::IsModified();
+  return false;
 }
 
 void PhantomDocument::Modify(bool mod)
@@ -201,6 +198,18 @@ void PhantomDocument::Modify(bool mod)
 
 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") {
@@ -212,22 +221,16 @@ bool PlotFileDocument::OnOpenDocument(const wxString& filename)
       return false;
     }
     *theApp->getLog() << "Read plot file " << filename << "\n";
-    SetFilename(filename, true);
+    SetFilename (filename, true);
+    m_namePlot = filename.c_str();
   }
-  Modify(false);
-  UpdateAllViews();\r
-  PlotFileView* ifView = dynamic_cast<PlotFileView*>(GetFirstView());\r
-  if (ifView)\r
-         ifView->OnUpdate(ifView, NULL);\r
+  Modify (false);
+  UpdateAllViews();
+  GetFirstView()->OnUpdate (NULL, NULL);
 
   return true;
 }
 
-bool PlotFileDocument::OnCloseDocument ()
-{
-  bool bReturn = wxDocument::OnCloseDocument();
-  return bReturn;
-}
 
 bool PlotFileDocument::IsModified(void) const
 {