Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
ContourDlg.h
1 //
2 // Name: ContourDlg.h
3 //
4 // Copyright (c) 2009-2011 Virtual Terrain Project.
5 // Free for all uses, see license.txt for details.
6 //
7 
8 #ifndef __ContourDlg_H__
9 #define __ContourDlg_H__
10 
11 #include "vtui_UI.h"
12 
13 // WDR: class declarations
14 
15 //----------------------------------------------------------------------------
16 // ContourDlg
17 //----------------------------------------------------------------------------
18 
20 {
21 public:
22  // constructors and destructors
23  ContourDlg( 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 ContourDlg
29  wxChoice *LayerChoice() { return m_choice_layer; }
30  void UpdateEnabling();
31 
32  float m_fElevSingle;
33  float m_fElevEvery;
34  bool m_bSingle;
35  bool m_bCreate;
36  wxString m_strLayer;
37 
38 private:
39  // WDR: member variable declarations for ContourDlg
40 
41 private:
42  // WDR: handler declarations for ContourDlg
43  void OnRadio( wxCommandEvent &event );
44 
45 private:
46  DECLARE_EVENT_TABLE()
47 };
48 
49 #endif // __ContourDlg_H__
50