r306: Changes for PlotFile support
[ctsim.git] / src / docs.cpp
index 179cc89750461dca1a20a89f22bdbf56a1a29dff..c3fd4892fd8747a0eb08adda81880eb0936f2703 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.7 2000/12/19 21:37:51 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
@@ -196,3 +196,46 @@ void PhantomDocument::Modify(bool mod)
     wxDocument::Modify(mod);
 }
 
+
+// PlotFileDocument
+
+IMPLEMENT_DYNAMIC_CLASS(PlotFileDocument, wxDocument)
+
+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);
+  }
+  Modify(false);
+  UpdateAllViews();\r
+  PlotFileView* ifView = dynamic_cast<PlotFileView*>(GetFirstView());\r
+  if (ifView)\r
+         ifView->OnUpdate(ifView, NULL);\r
+
+  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);
+}
+