X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.h;h=c87880332c2fff2104e4bf4e44f9dd2a0de71036;hp=90a0b29693bfb1cfe6acc8eef1dfce9caa048273;hb=d3fa225aa232e132cc198672c4fc148f96a1ab8c;hpb=0914a8f418770303edfc8d00d68d53061cf01c93 diff --git a/src/ctsim.h b/src/ctsim.h index 90a0b29..c878803 100644 --- a/src/ctsim.h +++ b/src/ctsim.h @@ -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: ctsim.h,v 1.28 2001/01/20 02:25:45 kevin Exp $ +** $Id: ctsim.h,v 1.43 2001/02/11 04:56:38 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,22 +35,36 @@ #include #endif +#ifndef WX_PRECOMP +#include "wx/wx.h" +#endif +#include "wx/config.h" +#include "wx/msw/helpchm.h" + #ifdef MSVC -// #define CTSIM_MDI 1 +#define CTSIM_MDI 1 #endif +#define CTSIM_CUSTOM_MRU 1 +#if defined(CTSIM_MDI) && !wxUSE_MDI_ARCHITECTURE +#error You must set wxUSE_MDI_ARCHITECTURE to 1 in setup.h! +#endif +#ifdef CTSIM_MDI +#include "wx/docmdi.h" +#endif class wxMenu; class wxDocument; - class ImageFileDocument; - -#include - -#ifndef WX_PRECOMP -#include "wx/wx.h" +class ProjectionFileDocument; +class PhantomFileDocument; +class PlotFileDocument; +class TextFileDocument; +#if wxUSE_GLCANVAS +class Graph3dFileDocument; #endif +#include #include "wx/docview.h" #include "wx/textctrl.h" #include "wx/menu.h" @@ -65,16 +79,19 @@ class ImageFileDocument; // Define a new frame for main window #if CTSIM_MDI -class MainFrame: public wxMDIParentFrame +class MainFrame: public wxDocMDIParentFrame #else class MainFrame: public wxDocParentFrame #endif { - DECLARE_CLASS(MainFrame) private: - wxTextCtrl* m_pLog; + DECLARE_CLASS(MainFrame) + DECLARE_EVENT_TABLE() + +#ifndef CTSIM_MDI wxMenu* m_pWindowMenu; - +#endif + enum { MAX_WINDOW_MENUITEMS = 20 }; wxMenuItem* m_apWindowMenuItems[MAX_WINDOW_MENUITEMS]; wxDocument* m_apWindowMenuData[MAX_WINDOW_MENUITEMS]; @@ -88,17 +105,25 @@ private: double m_dDefaultFilterBandwidth; double m_dDefaultFilterInputScale; double m_dDefaultFilterOutputScale; - + + bool m_bShuttingDown; + #if CTSIM_WINHELP - wxWinHelpController m_winHelp; + wxCHMHelpController m_winHelp; #endif wxHtmlHelpController m_htmlHelp; public: MainFrame(wxDocManager *manager, wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, const long type); - + virtual ~MainFrame(); + +#ifdef CTSIM_CUSTOM_MRU + void OnMRUFile (wxCommandEvent& event); +#endif + void OnSize (wxSizeEvent& event); + #if CTSIM_WINHELP - wxWinHelpController& getWinHelpController() + wxCHMHelpController& getWinHelpController() {return m_winHelp; } #endif wxHtmlHelpController& getHtmlHelpController() @@ -110,6 +135,7 @@ public: void OnHelpTopics (wxCommandEvent& event); void OnHelpContents (wxCommandEvent& event); void OnCreatePhantom (wxCommandEvent& event); + void OnPreferences (wxCommandEvent& event); #if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG)) void OnHelpSecondary (wxCommandEvent& event); @@ -120,9 +146,6 @@ public: void OnUpdateUI (wxUpdateUIEvent& event); - wxTextCtrl* getLog() - { return m_pLog; } - void OnWindowMenu0 (wxCommandEvent& event); void OnWindowMenu1 (wxCommandEvent& event); void OnWindowMenu2 (wxCommandEvent& event); @@ -145,22 +168,46 @@ public: void OnWindowMenu19 (wxCommandEvent& event); void DoWindowMenu (int iMenuPosition, wxCommandEvent& event); - - DECLARE_EVENT_TABLE() + + bool getShuttingDown() const { return m_bShuttingDown; } }; class wxDocManager; class CTSimApp: public wxApp { +private: + enum { O_HELP, O_VERSION }; + static struct option ctsimOptions[]; + + bool m_bAdvancedOptions; + wxDocManager* m_docManager; + MainFrame* m_pFrame; + wxConfig* m_pConfig; + wxTextCtrl* m_pLog; + wxDocTemplate* m_pDocTemplImage; + wxDocTemplate* m_pDocTemplProjection; + wxDocTemplate* m_pDocTemplPhantom; + wxDocTemplate* m_pDocTemplPlot; + wxDocTemplate* m_pDocTemplText; +#if wxUSE_GLCANVAS + wxDocTemplate* m_pDocTemplGraph3d; +#endif + + TextFileDocument* m_pLogDoc; + + void usage (const char* program); + public: CTSimApp(); bool OnInit(); int OnExit(); MainFrame* getMainFrame() const { return m_pFrame; } + wxTextCtrl* getLog() - { return m_pFrame->getLog(); } + { return m_pLog; } + wxDocManager* getDocManager() { return m_docManager; } @@ -170,21 +217,31 @@ public: { return new EZPlotDialog (m_pFrame); } void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector& vecIF); - - bool getSetModifyNewDocs() const - { return true; } - + bool getAdvancedOptions() const { return m_bAdvancedOptions; } + void setAdvancedOptions (bool bAdv) { m_bAdvancedOptions = bAdv; } + void setIconForFrame (wxFrame* pFrame); + wxConfig* getConfig() + { return m_pConfig; } -private: - wxDocManager* m_docManager; - MainFrame* m_pFrame; - - void usage (const char* program); - - static struct option ctsimOptions[]; - - enum { O_HELP, O_VERSION }; + wxDocTemplate* getDocTemplImage() { return m_pDocTemplImage; } + wxDocTemplate* getDocTemplProjection() { return m_pDocTemplProjection; } + wxDocTemplate* getDocTemplPhantom() { return m_pDocTemplPhantom; } + wxDocTemplate* getDocTemplPlot() { return m_pDocTemplPlot; } + wxDocTemplate* getDocTemplText() { return m_pDocTemplText; } +#if wxUSE_GLCANVAS + wxDocTemplate* getDocTemplGraph3d() { return m_pDocTemplGraph3d; } +#endif + TextFileDocument* getLogDoc() { return m_pLogDoc; } + + ProjectionFileDocument* newProjectionDoc(); + ImageFileDocument* newImageDoc(); + PhantomFileDocument* newPhantomDoc(); + PlotFileDocument* newPlotDoc(); + TextFileDocument* newTextDoc(); +#if wxUSE_GLCANVAS + Graph3dFileDocument* newGraph3dDoc(); +#endif }; DECLARE_APP(CTSimApp) @@ -196,11 +253,14 @@ enum { MAINMENU_HELP_ABOUT = 600, MAINMENU_HELP_CONTENTS, MAINMENU_HELP_TOPICS, +#if defined(CTSIM_WINHELP) && (defined(DEBUG) || defined(_DEBUG)) MAINMENU_HELP_SECONDARY, +#endif MAINMENU_FILE_CREATE_PHANTOM, MAINMENU_FILE_CREATE_FILTER, MAINMENU_FILE_EXIT, + MAINMENU_FILE_PREFERENCES, PJMENU_FILE_PROPERTIES, PJMENU_RECONSTRUCT_FBP, @@ -229,7 +289,10 @@ enum { IFMENU_IMAGE_SUBTRACT, IFMENU_IMAGE_MULTIPLY, IFMENU_IMAGE_DIVIDE, - +#if wxUSE_GLCANVAS + IFMENU_IMAGE_CONVERT3D, +#endif + IFMENU_FILTER_INVERTVALUES, IFMENU_FILTER_SQRT, IFMENU_FILTER_SQUARE, @@ -255,6 +318,14 @@ enum { PLOTMENU_VIEW_SCALE_MINMAX, PLOTMENU_VIEW_SCALE_AUTO, PLOTMENU_VIEW_SCALE_FULL, + + GRAPH3D_VIEW_SURFACE, + GRAPH3D_VIEW_COLOR, + GRAPH3D_VIEW_LIGHTING, + GRAPH3D_VIEW_SMOOTH, + GRAPH3D_VIEW_SCALE_AUTO, + GRAPH3D_VIEW_SCALE_MINMAX, + GRAPH3D_VIEW_SCALE_FULL, }; #endif