r384: Added first vesion of EZPlotDialog
[ctsim.git] / src / dlgezplot.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          dlgezplot.h
5 **   Purpose:       Headers for EZPlot Dialog
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  Jan 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: dlgezplot.h,v 1.1 2001/01/12 16:41:56 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 __DLGEZPLOT_H_
29 #define __DLGEZPLOT_H_
30
31 #ifdef __GNUG__
32 #pragma interface "dlgezplot.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 SGP;
43 class SGPDriver;
44 class EZPlot;
45
46 class EZPlotDialog : public wxDialog
47 {
48 private:
49   DECLARE_DYNAMIC_CLASS(EZPlotDialog)
50   DECLARE_EVENT_TABLE()
51
52    EZPlot* m_pEZPlot;
53    wxWindow *m_parentTop;     // parent top level window (may be NULL)
54    int m_iClientX;   // size of client window
55    int m_iClientY;
56
57    SGPDriver* m_pSGPDriver;
58    SGP* m_pSGP;
59    wxDC* m_pDC;
60
61 public:
62   EZPlotDialog (wxWindow *parent = NULL);
63
64    ~EZPlotDialog();
65
66    /* Perform projection on view number
67        return true if ABORT button has not been pressed
68    */
69    EZPlot* getEZPlot ()
70    { return m_pEZPlot; }
71
72   void OnClose(wxCloseEvent& event);
73   void OnPaint(wxPaintEvent& event);
74 };
75 #endif
76