11 #include "VTBuilder_UI.h"
26 MatchDlg( wxWindow *parent, wxWindowID
id,
const wxString &title,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = wxDEFAULT_DIALOG_STYLE );
32 wxCheckBox* GetShrink() {
return (wxCheckBox*) FindWindow( ID_SHRINK ); }
33 wxCheckBox* GetGrow() {
return (wxCheckBox*) FindWindow( ID_GROW ); }
34 void SetArea(
const DRECT &area,
bool bIsGeo);
35 wxChoice* GetMatchLayer() {
return (wxChoice*) FindWindow( ID_MATCH_LAYER ); }
36 void SetView(
BuilderView *pView) { m_pView = pView; }
40 wxString m_strExtent1;
41 wxString m_strExtent2;
43 wxString m_strLayerRes;
44 bool m_bGrow, m_bShrink;
51 DRECT m_area, m_original;
58 void OnShrink( wxCommandEvent &
event );
59 void OnGrow( wxCommandEvent &event );
60 void OnMatchLayer( wxCommandEvent &event );
61 void OnSpinUp( wxSpinEvent &event );
62 void OnSpinDown( wxSpinEvent &event );
67 void GetLayerSpacing();
73 #endif // __MatchDlg_H__