Applied initial patches for wx2.8 compatibility
[ctsim.git] / src / views.h
index 6cab7ab8e274d4f3790e0344f8ff27f281ca1592..d0dda152754f24ec9dd9942fa98ba589fae9775b 100644 (file)
@@ -7,9 +7,9 @@
 **   Date Started:  July 2000
 **
 **  This is part of the CTSim program
-**  Copyright (C) 1983-2000 Kevin Rosenberg
+**  Copyright (c) 1983-2001 Kevin Rosenberg
 **
-**  $Id: views.h,v 1.30 2001/01/26 05:37:24 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
 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 ******************************************************************************/
 
-#ifdef __GNUG__
-// #pragma interface
-#endif
-
 #ifndef __VIEWSH__
 #define __VIEWSH__
 
 #include "wx/wx.h"
 #include "docs.h"
 #include "imagefile.h"
+#include "threadrecon.h"
+
+#if wxUSE_GLCANVAS
+#include "graph3dview.h"
+#endif
 
 class ImageFileCanvas;
 class ImageFileView : public wxView
 {
 private:
   DECLARE_DYNAMIC_CLASS(ImageFileView)
-    
+
   wxMemoryDC m_memoryDC;
-  wxBitmap m_bitmap;
-  
-  ImageFileCanvas *CreateCanvas(wxView *view, wxFrame *parent);
-  wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
+  wxBitmap* m_pBitmap;
+  wxMenu* m_pMenuAnalyze;
+
+  ImageFileCanvas *CreateCanvas (wxFrame* parent);
+#if CTSIM_MDI
+  wxDocMDIChildFrame* m_pFrame;
+  wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#else
+  wxDocChildFrame* m_pFrame;
+  wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#endif
+
+  ImageFileCanvas *m_pCanvas;
   wxMenu* m_pFileMenu;
-  
-  ImageFileCanvas *m_canvas;
-  wxFrame *m_frame;
+  wxMenu* m_pFilterMenu;
   bool m_bMinSpecified;
   bool m_bMaxSpecified;
   double m_dMinPixel;
   double m_dMaxPixel;
   double m_dAutoScaleFactor;
-  
+
   int m_iDefaultExportFormatID;
 
-  wxWindow* getFrameForChild() 
+  wxFrame* getFrameForChild()
 #if CTSIM_MDI
-  { return theApp->getMainFrame()->GetClientWindow(); }
+  { return theApp->getMainFrame(); }
 #else
-  { return m_frame; }
+  { return m_pFrame; }
 #endif
 
 public:
-  ImageFileView(void);
-  virtual ~ImageFileView(void);
+  ImageFileView();
+  virtual ~ImageFileView();
   void canvasClosed()
-  { m_canvas = NULL; m_frame = NULL; }
+  { m_pCanvas = NULL; m_pFrame = NULL; }
 
   wxMenu* getFileMenu()
   { return m_pFileMenu; }
@@ -79,13 +87,17 @@ public:
   void OnDraw(wxDC* dc);
   void OnUpdate(wxView *sender, wxObject *hint = NULL);
   bool OnClose (bool deleteWindow = true);
-  
-  void OnScaleSize (wxCommandEvent& event);
+
+  void OnEditCopy (wxCommandEvent& event);
+  void OnEditCut (wxCommandEvent& event);
+  void OnEditPaste (wxCommandEvent& event);
+
+  void OnRevert (wxCommandEvent& event);
   void OnExport (wxCommandEvent& event);
-  
   void OnProperties (wxCommandEvent& event);
+
   void OnCompare (wxCommandEvent& event);
-  
+  void OnScaleSize (wxCommandEvent& event);
   void OnInvertValues (wxCommandEvent& event);
   void OnSquare (wxCommandEvent& event);
   void OnSquareRoot (wxCommandEvent& event);
@@ -99,7 +111,10 @@ public:
   void OnInverseFourier (wxCommandEvent& event);
   void OnShuffleNaturalToFourierOrder (wxCommandEvent& event);
   void OnShuffleFourierToNaturalOrder (wxCommandEvent& event);
-  
+#if wxUSE_GLCANVAS
+  void OnConvert3d (wxCommandEvent& event);
+#endif
+
 #ifdef HAVE_FFT
   void OnFFT (wxCommandEvent& event);
   void OnIFFT (wxCommandEvent& event);
@@ -108,10 +123,12 @@ public:
   void OnFFTCols (wxCommandEvent& event);
   void OnIFFTCols (wxCommandEvent& event);
 #endif
-  
+
   void OnMagnitude (wxCommandEvent& event);
   void OnPhase (wxCommandEvent& event);
-  
+  void OnReal (wxCommandEvent& event);
+  void OnImaginary (wxCommandEvent& event);
+
   void OnScaleAuto (wxCommandEvent& event);
   void OnScaleMinMax (wxCommandEvent& event);
   void OnScaleFull (wxCommandEvent& event);
@@ -124,29 +141,36 @@ public:
   void OnPlotHistogram (wxCommandEvent& event);
   void OnCompareRow (wxCommandEvent& event);
   void OnCompareCol (wxCommandEvent& event);
-  
-  wxFrame* getFrame()
-  { return m_frame; }
-  
-  ImageFileDocument* GetDocument(void) 
+
+#if CTSIM_MDI
+  wxDocMDIChildFrame* getFrame() { return m_pFrame; }
+#else
+  wxDocChildFrame* getFrame() { return m_pFrame; }
+#endif
+  void setInitialClientSize();
+
+  wxMenu* getMenuAnalyze() { return m_pMenuAnalyze; }
+
+  ImageFileDocument* GetDocument()
   { return dynamic_cast<ImageFileDocument*>(wxView::GetDocument()); }
-  
+
   DECLARE_EVENT_TABLE()
 };
 
 class ImageFileCanvas: public wxScrolledWindow
 {
 private:
-  
+  ImageFileView* m_pView;
+
   int m_xCursor;
   int m_yCursor;
-  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 OnChar(wxKeyEvent& event);
   void OnMouseEvent(wxMouseEvent& event);
   void DrawRubberBandCursor (wxDC& dc, int x, int y);
   bool GetCurrentCursor (int& x, int& y);
@@ -163,19 +187,26 @@ public:
 class ProjectionFileCanvas;
 class ProjectionFileView : public wxView
 {
-  DECLARE_DYNAMIC_CLASS(ProjectionFileView)
-    
-    wxMemoryDC m_memoryDC;
-  wxBitmap m_bitmap;
-  
 private:
-  ProjectionFileCanvas *CreateCanvas(wxView *view, wxFrame *parent);
-  wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
-  
-  ProjectionFileCanvas *m_canvas;
-  wxFrame *m_frame;
+  DECLARE_DYNAMIC_CLASS(ProjectionFileView)
+
+  wxMemoryDC m_memoryDC;
+  wxBitmap* m_pBitmap;
+
+  ProjectionFileCanvas *CreateCanvas (wxFrame* parent);
+#if CTSIM_MDI
+  wxDocMDIChildFrame* m_pFrame;
+  wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#else
+  wxDocChildFrame* m_pFrame;
+  wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#endif
+
+  ProjectionFileCanvas *m_pCanvas;
   wxMenu* m_pFileMenu;
-  
+  wxMenu* m_pReconstructMenu;
+  wxMenu* m_pConvertMenu;
+
   int m_iDefaultNX;
   int m_iDefaultNY;
   int m_iDefaultFilter;
@@ -187,40 +218,55 @@ private:
   int m_iDefaultInterpParam;
   int m_iDefaultBackprojector;
   int m_iDefaultTrace;
-  
+
   int m_iDefaultPolarNX;
   int m_iDefaultPolarNY;
   int m_iDefaultPolarInterpolation;
   int m_iDefaultPolarZeropad;
 
-  wxWindow* getFrameForChild() 
+  wxWindow* getFrameForChild()
 #if CTSIM_MDI
-  { return theApp->getMainFrame()->GetClientWindow(); }
+  { return theApp->getMainFrame(); }
 #else
-  { return m_frame; }
+  { return m_pFrame; }
 #endif
 
 public:
-  ProjectionFileView(void);
-  virtual ~ProjectionFileView(void);
+  ProjectionFileView();
+  virtual ~ProjectionFileView();
   void canvasClosed()
-  { m_canvas = NULL; m_frame = NULL; }
-  
+  { m_pCanvas = NULL; m_pFrame = NULL; }
+
   bool OnCreate(wxDocument *doc, long flags);
   void OnDraw(wxDC* dc);
   void OnUpdate(wxView *sender, wxObject *hint = NULL);
   bool OnClose (bool deleteWindow = true);
   void OnProperties (wxCommandEvent& event);
   void OnReconstructFBP (wxCommandEvent& event);
+  void OnReconstructFBPRebin (wxCommandEvent& event);
   void OnReconstructFourier (wxCommandEvent& event);
+  void OnConvertRectangular (wxCommandEvent& event);
   void OnConvertPolar (wxCommandEvent& event);
   void OnConvertFFTPolar (wxCommandEvent& event);
-  
-  wxFrame* getFrame ()   { return m_frame; }
-  
+  void OnPlotTThetaSampling (wxCommandEvent& event);
+  void OnPlotHistogram (wxCommandEvent& event);
+  void OnConvertParallel (wxCommandEvent& event);
+  void OnArtifactReduction (wxCommandEvent& event);
+
+  void doReconstructFBP (const Projections& rProj, bool bRebinToParallel);
+
+#if CTSIM_MDI
+  wxDocMDIChildFrame* getFrame() { return m_pFrame; }
+#else
+  wxDocChildFrame* getFrame() { return m_pFrame; }
+#endif
+  ProjectionFileCanvas* getCanvas() { return m_pCanvas; }
+  void setInitialClientSize();
+
   wxMenu* getFileMenu()  { return m_pFileMenu; }
+  wxMenu* getReconstructMenu()  { return m_pReconstructMenu; }
 
-  ProjectionFileDocument* GetDocument(void) 
+  ProjectionFileDocument* GetDocument()
   { return dynamic_cast<ProjectionFileDocument*>(wxView::GetDocument()); }
   DECLARE_EVENT_TABLE()
 };
@@ -230,7 +276,7 @@ class ProjectionFileCanvas: public wxScrolledWindow
 private:
   ProjectionFileView* m_pView;
 
-public:  
+public:
   ProjectionFileCanvas (ProjectionFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style);
   virtual ~ProjectionFileCanvas() ;
 
@@ -247,40 +293,49 @@ class PhantomFileView : public wxView
 private:
   DECLARE_DYNAMIC_CLASS(PhantomFileView)
   DECLARE_EVENT_TABLE()
-    
-  PhantomCanvas *CreateCanvas(wxView *view, wxFrame *parent);
-  wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
-  
-  PhantomCanvas *m_canvas;
-  wxFrame *m_frame;
+
+  PhantomCanvas *CreateCanvas (wxFrame* parent);
+#if CTSIM_MDI
+  wxDocMDIChildFrame* m_pFrame;
+  wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#else
+  wxDocChildFrame* m_pFrame;
+  wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#endif
+
+  PhantomCanvas *m_pCanvas;
   wxMenu* m_pFileMenu;
-  
+
   int m_iDefaultNDet;
   int m_iDefaultNView;
+  int m_iDefaultOffsetView;
   int m_iDefaultNSample;
   int m_iDefaultGeometry;
   int m_iDefaultTrace;
   double m_dDefaultRotation;
   double m_dDefaultFocalLength;
-  double m_dDefaultFieldOfView;
-  
+  double m_dDefaultCenterDetectorLength;
+  double m_dDefaultViewRatio;
+  double m_dDefaultScanRatio;
+
   int m_iDefaultRasterNX;
   int m_iDefaultRasterNY;
   int m_iDefaultRasterNSamples;
+  double m_dDefaultRasterViewRatio;
 
-  wxWindow* getFrameForChild() 
+  wxWindow* getFrameForChild()
 #if CTSIM_MDI
-  { return theApp->getMainFrame()->GetClientWindow(); }
+  { return theApp->getMainFrame(); }
 #else
-  { return m_frame; }
+  { return m_pFrame; }
 #endif
 
 public:
-  PhantomFileView(void);
-  virtual ~PhantomFileView(void);
+  PhantomFileView();
+  virtual ~PhantomFileView();
   void canvasClosed()
-  { m_canvas = NULL; m_frame = NULL; }
-  
+  { m_pCanvas = NULL; m_pFrame = NULL; }
+
   bool OnCreate(wxDocument *doc, long flags);
   void OnUpdate(wxView *sender, wxObject *hint = NULL);
   bool OnClose (bool deleteWindow = true);
@@ -288,12 +343,16 @@ public:
   void OnProperties (wxCommandEvent& event);
   void OnRasterize (wxCommandEvent& event);
   void OnProjections (wxCommandEvent& event);
-  
-  PhantomFileDocument* GetDocument(void) 
+
+  PhantomFileDocument* GetDocument()
   { return dynamic_cast<PhantomFileDocument*>(wxView::GetDocument()); }
-  
+
   wxMenu* getFileMenu() { return m_pFileMenu; }
-  wxFrame* getFrame() { return m_frame; }
+#if CTSIM_MDI
+  wxDocMDIChildFrame* getFrame() { return m_pFrame; }
+#else
+  wxDocChildFrame* getFrame() { return m_pFrame; }
+#endif
 };
 
 class PhantomCanvas: public wxScrolledWindow
@@ -301,10 +360,11 @@ class PhantomCanvas: public wxScrolledWindow
 private:
   PhantomFileView* m_pView;
 
-public:  
+public:
   PhantomCanvas (PhantomFileView* v, wxFrame *frame, const wxPoint& pos, const wxSize& size, const long style);
   virtual ~PhantomCanvas();
 
+  virtual wxSize GetBestSize() const;
   void setView(PhantomFileView* pView)
   { m_pView = pView; }
   virtual void OnDraw(wxDC& dc);
@@ -314,35 +374,40 @@ class PlotFileCanvas;
 class PlotFileView : public wxView
 {
   DECLARE_DYNAMIC_CLASS(PlotFileView)
-    
+
 private:
-  PlotFileCanvas *CreateCanvas(wxView *view, wxFrame *parent);
-  wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
-  
-  PlotFileCanvas *m_canvas;
-  wxFrame *m_frame;
-  wxMenu* m_pFileMenu;
+#if CTSIM_MDI
+  wxDocMDIChildFrame* m_pFrame;
+  wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#else
+  wxDocChildFrame* m_pFrame;
+  wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#endif
+
+  PlotFileCanvas *m_pCanvas;
   EZPlot* m_pEZPlot;
-  
+  wxMenu* m_pFileMenu;
+
   bool m_bMinSpecified;
   bool m_bMaxSpecified;
   double m_dMinPixel;
   double m_dMaxPixel;
   double m_dAutoScaleFactor;
-  
-  wxWindow* getFrameForChild() 
+
+  PlotFileCanvas *CreateCanvas (wxFrame* parent);
+  wxWindow* getFrameForChild()
 #if CTSIM_MDI
-  { return theApp->getMainFrame()->GetClientWindow(); }
+  { return theApp->getMainFrame(); }
 #else
-  { return m_frame; }
+  { return m_pFrame; }
 #endif
 
 public:
-  PlotFileView(void);
-  virtual ~PlotFileView(void);
+  PlotFileView();
+  virtual ~PlotFileView();
   void canvasClosed()
-  { m_canvas = NULL; m_frame = NULL; }
-  
+  { m_pCanvas = NULL; m_pFrame = NULL; }
+
   bool OnCreate(wxDocument *doc, long flags);
   void OnDraw(wxDC* dc);
   void OnUpdate(wxView *sender, wxObject *hint = NULL);
@@ -352,14 +417,18 @@ public:
   void OnScaleMinMax (wxCommandEvent& event);
   void OnScaleAuto (wxCommandEvent& event);
   void OnScaleFull (wxCommandEvent& event);
-  
-  wxFrame* getFrame ()
-  { return m_frame; }
-  
+
+#if CTSIM_MDI
+  wxDocMDIChildFrame* getFrame() { return m_pFrame; }
+#else
+  wxDocChildFrame* getFrame() { return m_pFrame; }
+#endif
+
+  void setInitialClientSize();
   wxMenu* getFileMenu() { return m_pFileMenu; }
-  PlotFileDocument* GetDocument(void) 
+  PlotFileDocument* GetDocument()
   { return dynamic_cast<PlotFileDocument*>(wxView::GetDocument()); }
-  
+
   DECLARE_EVENT_TABLE()
 };
 
@@ -367,12 +436,13 @@ class PlotFileCanvas: public wxScrolledWindow
 {
 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);
+  virtual wxSize GetBestSize() const;
 
   void setView (PlotFileView* pView)
   { m_pView = pView; }
@@ -385,37 +455,49 @@ class TextFileView: public wxView
 private:
   DECLARE_DYNAMIC_CLASS(TextFileView)
 
-    wxFrame *m_pFrame;
+#if CTSIM_MDI
+  wxDocMDIChildFrame* m_pFrame;
+  wxDocMDIChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#else
+  wxDocChildFrame* m_pFrame;
+  wxDocChildFrame* CreateChildFrame(wxDocument *doc, wxView *view);
+#endif
     wxMenu* m_pFileMenu;
     TextFileCanvas *m_pCanvas;
-  
+
 public:
-    TextFileView() 
+    TextFileView()
       : wxView() , m_pFrame(0), m_pCanvas(0)
     {}
     ~TextFileView();
     void canvasClosed()
     { m_pFrame = NULL; }
 
-    wxFrame *CreateChildFrame(wxDocument *doc, wxView *view);
-
     bool OnCreate (wxDocument *doc, long flags);
     void OnDraw (wxDC *dc);
     void OnUpdate (wxView *sender, wxObject *hint = (wxObject *) NULL);
     bool OnClose (bool deleteWindow = TRUE);
 
+    TextFileDocument* GetDocument()
+    { return dynamic_cast<TextFileDocument*>(wxView::GetDocument()); }
+
     TextFileCanvas* getTextCtrl() { return m_pCanvas; }
-    wxFrame* getFrame() { return m_pFrame; }
     wxMenu* getFileMenu() { return m_pFileMenu; }
+#if CTSIM_MDI
+  wxDocMDIChildFrame* getFrame() { return m_pFrame; }
+#else
+  wxDocChildFrame* getFrame() { return m_pFrame; }
+#endif
 };
 
 class TextFileCanvas: public wxTextCtrl
 {
     TextFileView *m_pView;
 
-public:    
+public:
     TextFileCanvas (TextFileView *v, wxFrame *frame, const wxPoint& pos, const wxSize& size, long style);
     ~TextFileCanvas ();
+    virtual wxSize GetBestSize() const;
 };