X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdocs.h;h=680636ba05fc6e2f7f248a49c2197ab7e46d6a09;hp=f841bcdfe51489dd296182f43dc78522ad254362;hb=1a050c98763fbbc0662731b0b76953acede6f5d7;hpb=df521cfe14a9e0b47bdcd98d1f67d03acf242162 diff --git a/src/docs.h b/src/docs.h index f841bcd..680636b 100644 --- a/src/docs.h +++ b/src/docs.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: docs.h,v 1.25 2001/02/25 10:52:55 kevin Exp $ +** $Id$ ** ** 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 @@ -25,10 +25,6 @@ ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ -#ifdef __GNUG__ -// #pragma interface -#endif - #ifndef __DOCSH__ #define __DOCSH__ @@ -48,6 +44,7 @@ class PlotFileView; class TextFileView; class Graph3dFileView; + class ImageFileDocument: public wxDocument { private: @@ -61,14 +58,14 @@ public: virtual bool IsModified () const; virtual bool Revert (); virtual void Modify (bool mod); - - ImageFileDocument () + + ImageFileDocument () : m_bBadFileOpen(false) { m_pImageFile = new ImageFile; } - virtual ~ImageFileDocument () + virtual ~ImageFileDocument () { delete m_pImageFile; } @@ -76,7 +73,7 @@ public: const ImageFile& getImageFile() const { return *m_pImageFile; } ImageFile& getImageFile() { return *m_pImageFile; } void setImageFile (ImageFile* pImageFile) - { + { delete m_pImageFile; m_pImageFile = pImageFile; } @@ -84,16 +81,19 @@ public: ImageFileView* getView() const; bool getBadFileOpen() const { return m_bBadFileOpen; } void setBadFileOpen() { m_bBadFileOpen = true; } + void Activate(); }; class BackgroundProcessingDocument : public wxDocument { private: DECLARE_DYNAMIC_CLASS(BackgroundProcessingDocument) +#ifdef HAVE_WXTHREADS typedef BackgroundSupervisor BackgroundObject; typedef std::vector BackgroundContainer; BackgroundContainer m_vecpBackgroundSupervisors; wxCriticalSection m_criticalSection; +#endif public: BackgroundProcessingDocument() @@ -101,8 +101,10 @@ public: {} void cancelRunningTasks(); - void OnAddBackground (wxCommandEvent& event); - void OnRemoveBackground (wxCommandEvent& event); +#ifdef HAVE_WXTHREADS + void addBackgroundSupervisor (BackgroundSupervisor* pSupervisor); + void removeBackgroundSupervisor (BackgroundSupervisor* pSupervisor); +#endif DECLARE_EVENT_TABLE() }; @@ -113,14 +115,14 @@ private: DECLARE_DYNAMIC_CLASS(ProjectionFileDocument) Projections* m_pProjectionFile; bool m_bBadFileOpen; - + public: virtual bool OnSaveDocument (const wxString& filename); virtual bool OnOpenDocument (const wxString& filename); virtual bool IsModified () const; virtual void Modify (bool mod); - - ProjectionFileDocument () + + ProjectionFileDocument () : m_bBadFileOpen(false) { m_pProjectionFile = new Projections; @@ -128,8 +130,8 @@ public: virtual ~ProjectionFileDocument (); - const Projections& getProjections () const { return *m_pProjectionFile; } - Projections& getProjections () { return *m_pProjectionFile; } + const Projections& getProjections () const { return *m_pProjectionFile; } + Projections& getProjections () { return *m_pProjectionFile; } void setProjections (Projections* pProjections) { delete m_pProjectionFile; @@ -139,6 +141,7 @@ public: ProjectionFileView* getView() const; bool getBadFileOpen() const { return m_bBadFileOpen; } void setBadFileOpen() { m_bBadFileOpen = true; } + void Activate(); }; @@ -152,20 +155,19 @@ private: bool m_bBadFileOpen; public: - PhantomFileDocument () - : m_idPhantom(Phantom::PHM_INVALID), m_bBadFileOpen(false) + PhantomFileDocument () + : m_idPhantom(Phantom::PHM_INVALID), m_bBadFileOpen(false) {} - virtual ~PhantomFileDocument () - {} + virtual ~PhantomFileDocument (); const int getPhantomID () const { return m_idPhantom; } const wxString& getPhantomName () const { return m_namePhantom; } - const Phantom& getPhantom () const { return m_phantom; } + const Phantom& getPhantom () const { return m_phantom; } - Phantom& getPhantom () { return m_phantom; } + Phantom& getPhantom () { return m_phantom; } virtual bool OnOpenDocument (const wxString& filename); virtual bool OnSaveDocument (const wxString& filename); @@ -174,6 +176,7 @@ public: PhantomFileView* getView() const; bool getBadFileOpen() const { return m_bBadFileOpen; } void setBadFileOpen() { m_bBadFileOpen = true; } + void Activate(); }; @@ -186,21 +189,21 @@ private: bool m_bBadFileOpen; public: - PlotFileDocument () + PlotFileDocument () : m_bBadFileOpen(false) {} - virtual ~PlotFileDocument () - {} + virtual ~PlotFileDocument () + {} const wxString& getPlotName () const - { return m_namePlot; } + { return m_namePlot; } const PlotFile& getPlotFile () const - { return m_plot; } + { return m_plot; } PlotFile& getPlotFile () - { return m_plot; } + { return m_plot; } virtual bool OnOpenDocument (const wxString& filename); virtual bool OnSaveDocument (const wxString& filename); @@ -209,6 +212,7 @@ public: PlotFileView* getView() const; bool getBadFileOpen() const { return m_bBadFileOpen; } void setBadFileOpen() { m_bBadFileOpen = true; } + void Activate(); }; @@ -219,7 +223,7 @@ class TextFileDocument: public wxDocument bool m_bBadFileOpen; public: - TextFileDocument(void) + TextFileDocument(void) : m_bBadFileOpen(false) {} @@ -245,7 +249,7 @@ typedef GLfloat glTripleFloat[3]; class Graph3dFileDocument: public wxDocument { - friend Graph3dFileView; + friend class Graph3dFileView; private: DECLARE_DYNAMIC_CLASS(Graph3dFileDocument) @@ -259,8 +263,8 @@ class Graph3dFileDocument: public wxDocument public: Graph3dFileDocument(void); - virtual ~Graph3dFileDocument(void); - + virtual ~Graph3dFileDocument(void); + virtual bool OnSaveDocument (const wxString& filename); virtual bool OnOpenDocument (const wxString& filename); virtual bool IsModified () const; @@ -274,6 +278,7 @@ class Graph3dFileDocument: public wxDocument int ny() const { return m_ny; } ImageFileArray getArray() { return m_array; } ImageFileArrayConst getArray() const { return m_array; } + void Activate(); }; #endif // wxUSE_GLCANVAS