Umasoft
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
ImageMapDlg.h
1 //
2 // Name: ImageMapDlg.h
3 //
4 // Copyright (c) 2004-2011 Virtual Terrain Project
5 // Free for all uses, see license.txt for details.
6 //
7 
8 #ifndef __ImageMapDlg_H__
9 #define __ImageMapDlg_H__
10 
11 #include "VTBuilder_UI.h"
12 
13 // WDR: class declarations
14 
15 //----------------------------------------------------------------------------
16 // ImageMapDlg
17 //----------------------------------------------------------------------------
18 
20 {
21 public:
22  // constructors and destructors
23  ImageMapDlg( 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 ImageMapDlg
29  wxChoice* GetLinkField() { return (wxChoice*) FindWindow( ID_LINK_FIELD ); }
30  void SetFields(class vtFeatureSet *pSet);
31 
32 public:
33  // WDR: member variable declarations for ImageMapDlg
34  int m_iField;
35 
36 private:
37  // WDR: handler declarations for ImageMapDlg
38 
39 private:
40  DECLARE_EVENT_TABLE()
41 };
42 
43 #endif