Revert "Update package dependency from libwxgtk3.0-dev to libwxgtk3.0-gtk3-dev for...
[ctsim.git] / include / nographics.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          nographics.h
5 **   Purpose:       Headers for empty duplicate of graphics functions
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  Mar 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2009 Kevin Rosenberg
11 **
12 **  This program is free software; you can redistribute it and/or modify
13 **  it under the terms of the GNU General Public License (version 2) as
14 **  published by the Free Software Foundation.
15 **
16 **  This program is distributed in the hope that it will be useful,
17 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 **  GNU General Public License for more details.
20 **
21 **  You should have received a copy of the GNU General Public License
22 **  along with this program; if not, write to the Free Software
23 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 ******************************************************************************/
25
26 #ifndef __NOGRAPHICS_H_
27 #define __NOGRAPHICS_H_
28
29 #include <cstdio>
30
31 #ifdef HAVE_WXWINDOWS
32 class EZPlot;
33 class wxWindow;
34 class wxEZPlotDialog;
35
36 class EZPlotDialog
37 {
38 private:
39   wxEZPlotDialog* m_pDialog;
40
41 public:
42   EZPlotDialog (wxWindow *parent = NULL, bool bCancelButton = false);
43
44   EZPlot* getEZPlot ();
45   int ShowModal();
46 };
47 #endif
48
49 #endif
50