8 #ifndef __OptionsDlg_H__
9 #define __OptionsDlg_H__
11 #include "VTBuilder_UI.h"
12 #include "ElevDrawOptions.h"
24 OptionsDlg( wxWindow *parent, wxWindowID
id,
const wxString &title,
25 const wxPoint& pos = wxDefaultPosition,
26 const wxSize& size = wxDefaultSize,
27 long style = wxDEFAULT_DIALOG_STYLE );
30 wxButton* GetRenderOptions() {
return (wxButton*) FindWindow( ID_RENDER_OPTIONS ); }
31 wxCheckBox* GetCheckHideUnknown() {
return (wxCheckBox*) FindWindow( ID_CHECK_HIDE_UNKNOWN ); }
32 wxRadioButton* GetRadioColor() {
return (wxRadioButton*) FindWindow( ID_RADIO_COLOR ); }
33 wxRadioButton* GetRadioOutlineOnly() {
return (wxRadioButton*) FindWindow( ID_RADIO_OUTLINE_ONLY ); }
34 wxChoice* GetElevUnit() {
return (wxChoice*) FindWindow( ID_ELEVUNIT ); }
45 bool m_bDrawTinSimple;
47 bool m_bShowRoadWidth;
48 bool m_bDrawRawSimple;
58 void OnHideUnknown( wxCommandEvent &
event );
59 void OnRenderOptions( wxCommandEvent &
event );
60 void OnRadio( wxCommandEvent &
event );
61 void OnInitDialog(wxInitDialogEvent&
event);
67 #endif // __OptionsDlg_H__