r186: *** empty log message ***
[ctsim.git] / src / dlgprojections.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          dlgprojections.h
5 **   Purpose:       Headers for Projection Collection Animation Dialog
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  August 2000
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id: dlgprojections.h,v 1.2 2000/08/31 08:38:58 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #ifndef __DLGPROJECTIONS_H_
29 #define __DLGPROJECTIONS_H_
30
31 #ifdef __GNUG__
32 #pragma interface "dlgprojections.h"
33 #endif
34
35 #include "wx/setup.h"
36 #include "wx/dialog.h"
37 #include "wx/dcmemory.h"
38
39 class wxButton;
40 class wxStaticText;
41 class Projections;
42 class Phantom;
43 class SGP;
44 class Scanner;
45 class SGP;
46 class SGPDriver;
47
48 class ProjectionsDialog : public wxDialog
49 {
50   DECLARE_DYNAMIC_CLASS(ProjectionsDialog)
51
52 public:
53   ProjectionsDialog (Scanner& rScanner, Projections& rProj, const Phantom& rPhantom, const int iTrace, wxWindow *parent);
54
55    ~ProjectionsDialog();
56
57    /* Perform projection on view number
58        return true if ABORT button has not been pressed
59    */
60    bool projectView(int iViewNumber);
61
62    /* Can be called to continue after the cancel button has been pressed, but
63        the program decided to continue the operation (e.g., user didn't
64        confirm it)
65    */
66    void Resume() { m_state = Continue; }
67
68    // implementation from now on
69        // callback for optional abort button
70    void OnCancel(wxCommandEvent& event);
71        // callback to disable "hard" window closing
72    void OnClose(wxCloseEvent& event);
73    void OnPaint(wxPaintEvent& event);
74
75    void OnPause(wxCommandEvent& event);
76    void OnStep(wxCommandEvent& event);
77
78    bool isPaused() const {return m_state == Paused;}
79
80    bool isCancelled() const {return m_state == Cancelled;}
81
82 private:
83    // parent top level window (may be NULL)
84    wxWindow *m_parentTop;
85    int m_iLastView;
86    int m_iClientX;   // size of client window
87    int m_iClientY;
88
89    Scanner& m_rScanner;
90    Projections& m_rProjections;
91    const Phantom& m_rPhantom;
92    SGPDriver* m_pSGPDriver;
93    SGP* m_pSGP;
94    const int m_iTrace;
95    wxDC* m_pDC;
96
97    wxButton *m_btnAbort;    // the abort button (or NULL if none)
98    wxButton *m_btnPause; 
99    wxButton *m_btnStep;
100
101    wxMemoryDC m_memoryDC;  // for restoring image on OnPaint
102    wxBitmap m_bitmap;
103
104    // continue processing or not (return value for Update())
105    enum
106    {
107       Uncancellable = -1,   // dialog can't be canceled
108       Paused,
109       Cancelled,            // can be cancelled and, in fact, was
110       Continue,            // can be cancelled but wasn't
111       Finished             // finished, waiting to be removed from screen
112    } m_state;
113
114    const static int ID_BTN_PAUSE = 19998;
115    const static int ID_BTN_STEP = 19999;
116
117    void showView (int iViewNumber);
118
119    DECLARE_EVENT_TABLE()
120 };
121 #endif
122