X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fdocs.h;h=133a1ad69d6fa5d97637f9456a1c8405a5db7ef7;hb=dfe03b8fc348b60a8f0b012f3f76c24ad29f21ce;hp=b56ebe5442cbb5cd66d5f6d6ef3b9e47aaacf7b4;hpb=ab4a3ba2c1ba9672136b5022897f81fc55d03493;p=ctsim.git diff --git a/src/docs.h b/src/docs.h index b56ebe5..133a1ad 100644 --- a/src/docs.h +++ b/src/docs.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: docs.h,v 1.3 2000/07/19 04:33:27 kevin Exp $ +** $Id: docs.h,v 1.14 2001/01/26 05:37:24 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 @@ -34,89 +34,143 @@ #include "wx/docview.h" +// #include "views.h" #include "imagefile.h" #include "phantom.h" #include "projections.h" +#include "plotfile.h" +class ProjectionFileView; +class PhantomFileView; +class ImageFileView; +class PlotFileView; +class TextFileView; class ImageFileDocument: public wxDocument { - DECLARE_DYNAMIC_CLASS(ImageFileDocument) private: + DECLARE_DYNAMIC_CLASS(ImageFileDocument) ImageFile m_imageFile; public: virtual bool OnSaveDocument (const wxString& filename); virtual bool OnOpenDocument (const wxString& filename); - virtual bool IsModified (void) const; + virtual bool IsModified () const; virtual void Modify (bool mod); - ImageFileDocument (void) {} - ~ImageFileDocument (void) {} + ImageFileDocument () {} + virtual ~ImageFileDocument () {} - const ImageFile& getImageFile(void) const - { return m_imageFile; } + const ImageFile& getImageFile() const { return m_imageFile; } - ImageFile& getImageFile(void) - { return m_imageFile; } + ImageFile& getImageFile() { return m_imageFile; } + ImageFileView* getView() const; }; class ProjectionFileDocument: public wxDocument { - DECLARE_DYNAMIC_CLASS(ProjectionFileDocument) private: + DECLARE_DYNAMIC_CLASS(ProjectionFileDocument) Projections m_projectionFile; public: virtual bool OnSaveDocument (const wxString& filename); virtual bool OnOpenDocument (const wxString& filename); - virtual bool IsModified (void) const; + virtual bool IsModified () const; virtual void Modify (bool mod); - ProjectionFileDocument (void) {} - ~ProjectionFileDocument (void) {} + ProjectionFileDocument () {} + virtual ~ProjectionFileDocument () {} - const Projections& getProjections (void) const - { return m_projectionFile; } + const Projections& getProjections () const { return m_projectionFile; } + Projections& getProjections () { return m_projectionFile; } - Projections& getProjections (void) - { return m_projectionFile; } + ProjectionFileView* getView() const; }; -class PhantomDocument: public wxDocument +class PhantomFileDocument: public wxDocument { - DECLARE_DYNAMIC_CLASS(PhantomDocument) - private: + DECLARE_DYNAMIC_CLASS(PhantomFileDocument) Phantom m_phantom; - Phantom::PhantomID m_idPhantom; + int m_idPhantom; wxString m_namePhantom; public: - PhantomDocument (void) + PhantomFileDocument () : m_idPhantom(Phantom::PHM_INVALID) - {} + {} + + virtual ~PhantomFileDocument () + {} + + const int getPhantomID () const { return m_idPhantom; } + + const wxString& getPhantomName () const { return m_namePhantom; } + + const Phantom& getPhantom () const { return m_phantom; } + + Phantom& getPhantom () { return m_phantom; } + + virtual bool OnOpenDocument (const wxString& filename); + virtual bool OnSaveDocument (const wxString& filename); + virtual bool IsModified () const; + virtual void Modify (bool mod); + PhantomFileView* getView() const; +}; - ~PhantomDocument (void) + +class PlotFileDocument: public wxDocument +{ +private: + DECLARE_DYNAMIC_CLASS(PlotFileDocument) + PlotFile m_plot; + wxString m_namePlot; + +public: + PlotFileDocument () {} - const Phantom::PhantomID getPhantomID (void) const - { return m_idPhantom; } + virtual ~PlotFileDocument () + {} - const wxString& getPhantomName (void) const - { return m_namePhantom; } + const wxString& getPlotName () const + { return m_namePlot; } - const Phantom& getPhantom (void) const - { return m_phantom; } + const PlotFile& getPlotFile () const + { return m_plot; } - Phantom& getPhantom (void) - { return m_phantom; } + PlotFile& getPlotFile () + { return m_plot; } virtual bool OnOpenDocument (const wxString& filename); - virtual bool IsModified (void) const; + virtual bool OnSaveDocument (const wxString& filename); + virtual bool IsModified () const; virtual void Modify (bool mod); + PlotFileView* getView() const; +}; + +#include "views.h" + +class TextFileDocument: public wxDocument +{ + private: + DECLARE_DYNAMIC_CLASS(TextFileDocument) + + public: + TextFileDocument(void) {} + virtual ~TextFileDocument(void) {} + + virtual bool OnSaveDocument(const wxString& filename); + virtual bool OnOpenDocument(const wxString& filename); + virtual bool IsModified(void) const; + + wxTextCtrl* getTextCtrl() + { return dynamic_cast(GetFirstView())->getTextCtrl(); } + + TextFileView* getView() const; };