X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdocs.cpp;h=8bdb8d017925ec936583ec51403c3e78c00f4007;hb=a5d437cb4228b07f8c005eaca497c317b8c19d14;hp=096a61b6a0b33828eca4f45d350e0a19a71608cc;hpb=92a0f68cb5d5062787b0cbb2664fafe2b2c9ae37;p=ctsim.git diff --git a/src/docs.cpp b/src/docs.cpp index 096a61b..8bdb8d0 100644 --- a/src/docs.cpp +++ b/src/docs.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: docs.cpp,v 1.5 2000/12/17 22:30:34 kevin Exp $ +** $Id: docs.cpp,v 1.14 2001/01/20 17:43:41 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 @@ -81,6 +81,8 @@ bool ImageFileDocument::OnOpenDocument(const wxString& filename) } Modify(false); UpdateAllViews(); + GetFirstView()->OnUpdate (GetFirstView(), NULL); + return true; } @@ -94,11 +96,6 @@ void ImageFileDocument::Modify(bool mod) wxDocument::Modify(mod); } -bool ImageFileDocument::OnCloseDocument () -{ - bool bReturn = wxDocument::OnCloseDocument(); - return bReturn; -} // ProjectionFileDocument @@ -130,6 +127,8 @@ bool ProjectionFileDocument::OnOpenDocument(const wxString& filename) } Modify(false); UpdateAllViews(); + GetFirstView()->OnUpdate (GetFirstView(), NULL); + return true; } @@ -144,11 +143,6 @@ void ProjectionFileDocument::Modify(bool mod) } -bool ProjectionFileDocument::OnCloseDocument () -{ - bool bReturn = wxDocument::OnCloseDocument(); - return bReturn; -} // PhantomDocument @@ -173,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) @@ -192,3 +193,96 @@ 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::IsModified(void) const +{ + return wxDocument::IsModified(); +} + +void PlotFileDocument::Modify(bool mod) +{ + wxDocument::Modify(mod); +} + + +////////////////////////////////////////////////////////////////////////// +// +// TextEditDocument +// +////////////////////////////////////////////////////////////////////////// + +IMPLEMENT_DYNAMIC_CLASS(TextEditDocument, wxDocument) + +// Since text windows have their own method for saving to/loading from files, +// we override OnSave/OpenDocument instead of Save/LoadObject +bool TextEditDocument::OnSaveDocument(const wxString& filename) +{ + TextEditView *view = dynamic_cast(GetFirstView()); + if (! view->getTextCtrl()->SaveFile(filename)) + return false; + Modify(false); + return true; +} + +bool TextEditDocument::OnOpenDocument(const wxString& filename) +{ + TextEditView *view = dynamic_cast(GetFirstView()); + + if (filename != "Log.txt" && ! view->getTextCtrl()->LoadFile(filename)) + return false; + + SetFilename (filename, true); + Modify (false); + UpdateAllViews(); + return true; +} + +bool TextEditDocument::IsModified(void) const +{ + return false; + + TextEditView *view = dynamic_cast(GetFirstView()); + if (view) + return (wxDocument::IsModified() || view->getTextCtrl()->IsModified()); + else + return wxDocument::IsModified(); +} +