X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fviews.h;h=0dc47c91f55f241147f44285c4a708df006a3a15;hb=6b2163676582e4d32020dc765b74cff3a1705d3c;hp=0fb0bd7d44d48a919fb24efd42a6e7adfac596c3;hpb=f3c7d22b4544bb1d5c4471bceded6dc5b9ed57fd;p=ctsim.git diff --git a/src/views.h b/src/views.h index 0fb0bd7..0dc47c9 100644 --- a/src/views.h +++ b/src/views.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: views.h,v 1.58 2002/06/06 22:50:24 kevin Exp $ +** $Id: views.h,v 1.61 2003/03/15 10:27:30 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 @@ -25,10 +25,6 @@ ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ******************************************************************************/ -#ifdef __GNUG__ -// #pragma interface -#endif - #ifndef __VIEWSH__ #define __VIEWSH__ @@ -48,7 +44,7 @@ private: DECLARE_DYNAMIC_CLASS(ImageFileView) wxMemoryDC m_memoryDC; - wxBitmap m_bitmap; + wxBitmap* m_pBitmap; wxMenu* m_pMenuAnalyze; ImageFileCanvas *CreateCanvas (wxFrame* parent); @@ -195,7 +191,7 @@ private: DECLARE_DYNAMIC_CLASS(ProjectionFileView) wxMemoryDC m_memoryDC; - wxBitmap m_bitmap; + wxBitmap* m_pBitmap; ProjectionFileCanvas *CreateCanvas (wxFrame* parent); #if CTSIM_MDI @@ -208,6 +204,8 @@ private: ProjectionFileCanvas *m_pCanvas; wxMenu* m_pFileMenu; + wxMenu* m_pReconstructMenu; + wxMenu* m_pConvertMenu; int m_iDefaultNX; int m_iDefaultNY; @@ -266,6 +264,7 @@ public: void setInitialClientSize(); wxMenu* getFileMenu() { return m_pFileMenu; } + wxMenu* getReconstructMenu() { return m_pReconstructMenu; } ProjectionFileDocument* GetDocument() { return dynamic_cast(wxView::GetDocument()); }