Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
PrefDlg.h
1 //
2 // Name: PrefDlg.h
3 //
4 // Copyright (c) 2007-2011 Virtual Terrain Project
5 // Free for all uses, see license.txt for details.
6 //
7 
8 #ifndef __PrefDlg_H__
9 #define __PrefDlg_H__
10 
11 #include "VTBuilder_UI.h"
12 
13 // WDR: class declarations
14 
15 //----------------------------------------------------------------------------
16 // PrefDlg
17 //----------------------------------------------------------------------------
18 
19 class PrefDlg: public PrefDlgBase
20 {
21 public:
22  // constructors and destructors
23  PrefDlg( wxWindow *parent, wxWindowID id, const wxString &title,
24  const wxPoint& pos = wxDefaultPosition,
25  const wxSize& size = wxDefaultSize,
26  long style = wxDEFAULT_DIALOG_STYLE );
27 
28  // WDR: method declarations for PrefDlg
29  void UpdateEnable();
30 
31 public:
32  // WDR: member variable declarations for PrefDlg
33  bool b1, b2, b3, b4, b5, b6, b7, b8, b9, b10, b11, b12, b13, b14, b15;
34  int i1, i2, i3, i4;
35 
36 private:
37  // WDR: handler declarations for PrefDlg
38  void OnInitDialog(wxInitDialogEvent& event);
39  void OnCheck( wxCommandEvent &event );
40  void OnRadio( wxCommandEvent &event );
41  void OnOK( wxCommandEvent &event );
42 
43 private:
44  DECLARE_EVENT_TABLE()
45 };
46 
47 #endif // __PrefDlg_H__