X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fviews.h;h=38ea68519962de6a43f4eda0c4d117fe2c8b6bf3;hb=d850a3477e9ccaecfa85e00bc619848fcc29bdb6;hp=9fcf8f8bfe5986b09f6ac6347717dfc1e58706dd;hpb=ba8635d790ee847d9746c6da24b60bd4cb6d9116;p=ctsim.git diff --git a/src/views.h b/src/views.h index 9fcf8f8..38ea685 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.42 2001/01/30 07:32:13 kevin Exp $ +** $Id: views.h,v 1.48 2001/03/10 23:14:16 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 @@ -35,7 +35,11 @@ #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 @@ -106,7 +110,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); @@ -176,12 +183,12 @@ public: class ProjectionFileCanvas; class ProjectionFileView : public wxView { +private: DECLARE_DYNAMIC_CLASS(ProjectionFileView) - wxMemoryDC m_memoryDC; + wxMemoryDC m_memoryDC; wxBitmap m_bitmap; -private: ProjectionFileCanvas *CreateCanvas (wxFrame* parent); #if CTSIM_MDI wxDocMDIChildFrame* m_pFrame; @@ -193,7 +200,7 @@ private: ProjectionFileCanvas *m_pCanvas; wxMenu* m_pFileMenu; - + int m_iDefaultNX; int m_iDefaultNY; int m_iDefaultFilter; @@ -233,6 +240,7 @@ public: void OnReconstructFourier (wxCommandEvent& event); void OnConvertPolar (wxCommandEvent& event); void OnConvertFFTPolar (wxCommandEvent& event); + void OnPlotTThetaSampling (wxCommandEvent& event); #if CTSIM_MDI wxDocMDIChildFrame* getFrame() { return m_pFrame; } @@ -290,11 +298,14 @@ private: 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() #if CTSIM_MDI @@ -337,6 +348,7 @@ 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);