]> Creatis software - creaContours.git/blob - appli/wxContourGUIExample/wxContourGUIExample.h
ca18f238fa093c728b3c740174b3dbde8122fa61
[creaContours.git] / appli / wxContourGUIExample / wxContourGUIExample.h
1
2 #ifndef __EXAMPLE_CONTOUR_GUI__
3 #define __EXAMPLE_CONTOUR_GUI__
4
5
6 // ----------------------------------------------------------------------------
7 // wx headers inclusion.
8 // For compilers that support precompilation, includes <wx/wx.h>.
9 // ----------------------------------------------------------------------------
10 #include <wx/wxprec.h>
11 #ifdef __BORLANDC__
12 #pragma hdrstop
13 #endif
14 #ifndef WX_PRECOMP
15 #include <wx/wx.h>
16 #endif
17
18 #include <string.h>
19 #include "wxContourMainFrame.h"
20
21 /*
22 eed
23
24 class wxContourGUIExample : public wxFrame
25 {
26 public:
27 //      wxContourGUIExample(wxWindow *parent,wxString title);
28         wxContourGUIExample(const wxString& title, const wxPoint& pos, const wxSize& size);
29
30     void OnBtnRun(wxCommandEvent& event);
31         
32 private:
33         
34         wxStaticText            * stResult;
35
36         wxButton                        * btn;
37                 
38         //DECLARE_CLASS(wxContourGUIExample)    
39
40 };
41 */
42
43 class wxTheApplication : public wxApp
44 {
45 public:
46     bool OnInit();
47 private:
48         static wxContourMainFrame * frame;
49         
50 };
51
52 #endif