eedd7b826ec55be79247108b5e6f6d19b5ab4d51
[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.5 2000/12/17 22:30:34 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 SGPDriver;
46
47 class ProjectionsDialog : public wxDialog
48 {
49   DECLARE_DYNAMIC_CLASS(ProjectionsDialog)
50
51 public:
52   ProjectionsDialog (Scanner& rScanner, Projections& rProj, const Phantom& rPhantom, const int iTrace, wxWindow *parent);
53
54    ~ProjectionsDialog();
55
56    /* Perform projection on view number
57        return true if ABORT button has not been pressed
58    */
59    bool projectView(int iViewNumber);
60
61    /* Can be called to continue after the cancel button has been pressed, but
62        the program decided to continue the operation (e.g., user didn't
63        confirm it)
64    */
65    void Resume() { m_state = Continue; }
66
67    // implementation from now on
68        // callback for optional abort button
69    void OnCancel(wxCommandEvent& event);
70        // callback to disable "hard" window closing
71    void OnClose(wxCloseEvent& event);
72    void OnPaint(wxPaintEvent& event);
73
74    void OnPause(wxCommandEvent& event);
75    void OnStep(wxCommandEvent& event);
76
77    bool isPaused() const {return m_state == Paused;}
78
79    bool isCancelled() const {return m_state == Cancelled;}
80
81 private:
82    // parent top level window (may be NULL)
83    wxWindow *m_parentTop;
84    int m_iLastView;
85    int m_iClientX;   // size of client window
86    int m_iClientY;
87
88    Scanner& m_rScanner;
89    Projections& m_rProjections;
90    const Phantom& m_rPhantom;
91    SGPDriver* m_pSGPDriver;
92    SGP* m_pSGP;
93    const int m_iTrace;
94    wxDC* m_pDC;
95
96    wxButton *m_btnAbort;    // the abort button (or NULL if none)
97    wxButton *m_btnPause; 
98    wxButton *m_btnStep;
99
100    wxMemoryDC m_memoryDC;  // for restoring image on OnPaint
101    wxBitmap m_bitmap;
102
103    // continue processing or not (return value for Update())
104    enum
105    {
106       Uncancellable = -1,   // dialog can't be canceled
107       Paused,
108       Cancelled,            // can be cancelled and, in fact, was
109       Continue,            // can be cancelled but wasn't
110       Finished             // finished, waiting to be removed from screen
111    } m_state;
112
113    enum { ID_BTN_PAUSE = 19996, ID_BTN_STEP = 19997 };
114
115    void showView (int iViewNumber);
116
117    DECLARE_EVENT_TABLE()
118 };
119 #endif
120