X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fviews.h;h=541287fc2eace4bf83b5ce0b1a76594397ecb151;hp=2ec4c878ced13250cc2cacc82f2255022f2dd7e7;hb=8a7697ce57b56cdc43698cd1241ad98d49f9b5ac;hpb=58319f51aa5804c90fe5edd8e5f0386b7a297827 diff --git a/src/views.h b/src/views.h index 2ec4c87..541287f 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.59 2003/01/23 23:35:58 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 @@ -44,7 +44,7 @@ private: DECLARE_DYNAMIC_CLASS(ImageFileView) wxMemoryDC m_memoryDC; - wxBitmap m_bitmap; + wxBitmap* m_pBitmap; wxMenu* m_pMenuAnalyze; ImageFileCanvas *CreateCanvas (wxFrame* parent); @@ -191,7 +191,7 @@ private: DECLARE_DYNAMIC_CLASS(ProjectionFileView) wxMemoryDC m_memoryDC; - wxBitmap m_bitmap; + wxBitmap* m_pBitmap; ProjectionFileCanvas *CreateCanvas (wxFrame* parent); #if CTSIM_MDI @@ -204,6 +204,8 @@ private: ProjectionFileCanvas *m_pCanvas; wxMenu* m_pFileMenu; + wxMenu* m_pReconstructMenu; + wxMenu* m_pConvertMenu; int m_iDefaultNX; int m_iDefaultNY; @@ -262,6 +264,7 @@ public: void setInitialClientSize(); wxMenu* getFileMenu() { return m_pFileMenu; } + wxMenu* getReconstructMenu() { return m_pReconstructMenu; } ProjectionFileDocument* GetDocument() { return dynamic_cast(wxView::GetDocument()); }