Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
LayerPropDlg.h
1 //
2 // Name: LayerPropDlg.h
3 //
4 // Copyright (c) 2002-2011 Virtual Terrain Project
5 // Free for all uses, see license.txt for details.
6 //
7 
8 #ifndef __LayerPropDlg_H__
9 #define __LayerPropDlg_H__
10 
11 #include "VTBuilder_UI.h"
12 
13 // WDR: class declarations
14 
15 //----------------------------------------------------------------------------
16 // LayerPropDlg
17 //----------------------------------------------------------------------------
18 
20 {
21 public:
22  // constructors and destructors
23  LayerPropDlg( 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 LayerPropDlg
29  double m_fLeft, m_fTop, m_fRight, m_fBottom;
30  wxString m_strText;
31 
32 private:
33  // WDR: member variable declarations for LayerPropDlg
34 
35 private:
36  // WDR: handler declarations for LayerPropDlg
37 
38 private:
39  DECLARE_EVENT_TABLE()
40 };
41 
42 #endif // __LayerPropDlg_H__
43