X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fviews.h;h=ca998f2bdcb6adc793f9ae529655e382ac28344f;hp=eee1be8dc1b12c0318755709c2a5920cf5a579d7;hb=01ed72399d433ce45a0195f8acaea349a421461e;hpb=0914a8f418770303edfc8d00d68d53061cf01c93 diff --git a/src/views.h b/src/views.h index eee1be8..ca998f2 100644 --- a/src/views.h +++ b/src/views.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: views.h,v 1.26 2001/01/06 15:33:15 kevin Exp $ +** $Id: views.h,v 1.27 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 @@ -57,7 +57,14 @@ private: double m_dAutoScaleFactor; int m_iDefaultExportFormatID; - + + wxFrame* getFrameForChild() +#if CTSIM_MDI + { return theApp->getMainFrame(); } +#else + { return m_frame; } +#endif + public: ImageFileView(void); virtual ~ImageFileView(void); @@ -127,16 +134,20 @@ private: int m_xCursor; int m_yCursor; - -public: ImageFileView* m_pView; +public: ImageFileCanvas (ImageFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style); + virtual ~ImageFileCanvas() + {} + virtual void OnDraw(wxDC& dc); void OnMouseEvent(wxMouseEvent& event); void DrawRubberBandCursor (wxDC& dc, int x, int y); bool GetCurrentCursor (int& x, int& y); - + + virtual wxSize GetBestSize() const; + DECLARE_EVENT_TABLE() }; @@ -173,6 +184,13 @@ private: int m_iDefaultPolarInterpolation; int m_iDefaultPolarZeropad; + wxFrame* getFrameForChild() +#if CTSIM_MDI + { return theApp->getMainFrame(); } +#else + { return m_frame; } +#endif + public: ProjectionFileView(void); virtual ~ProjectionFileView(void); @@ -197,10 +215,16 @@ public: class ProjectionFileCanvas: public wxScrolledWindow { -public: +private: ProjectionFileView* m_pView; - + +public: ProjectionFileCanvas (ProjectionFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style); + virtual ~ProjectionFileCanvas() + {} + + virtual wxSize GetBestSize() const; + virtual void OnDraw(wxDC& dc); }; @@ -230,6 +254,13 @@ private: int m_iDefaultRasterNY; int m_iDefaultRasterNSamples; + wxFrame* getFrameForChild() +#if CTSIM_MDI + { return theApp->getMainFrame(); } +#else + { return m_frame; } +#endif + public: PhantomView(void); virtual ~PhantomView(void); @@ -250,10 +281,14 @@ public: class PhantomCanvas: public wxScrolledWindow { -public: +private: PhantomView* m_pView; - + +public: PhantomCanvas (PhantomView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style); + virtual ~PhantomCanvas() + {} + virtual void OnDraw(wxDC& dc); }; @@ -276,6 +311,13 @@ private: double m_dMaxPixel; double m_dAutoScaleFactor; + wxFrame* getFrameForChild() +#if CTSIM_MDI + { return theApp->getMainFrame(); } +#else + { return m_frame; } +#endif + public: PlotFileView(void); virtual ~PlotFileView(void); @@ -301,10 +343,14 @@ public: class PlotFileCanvas: public wxScrolledWindow { -public: +private: PlotFileView* m_pView; +public: PlotFileCanvas (PlotFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style); + virtual ~PlotFileCanvas() + {} + virtual void OnDraw(wxDC& dc); };