// implementation
// ============================================================================
+const wxChar wxFilePickerCtrlNameStr[] = wxT("filepicker");
+const wxChar wxFilePickerWidgetNameStr[] = wxT("filepickerwidget");
+const wxChar wxDirPickerCtrlNameStr[] = wxT("dirpicker");
+const wxChar wxDirPickerWidgetNameStr[] = wxT("dirpickerwidget");
+const wxChar wxFilePickerWidgetLabel[] = wxT("Browse");
+const wxChar wxDirPickerWidgetLabel[] = wxT("Browse");
+
DEFINE_EVENT_TYPE(wxEVT_COMMAND_FILEPICKER_CHANGED)
DEFINE_EVENT_TYPE(wxEVT_COMMAND_DIRPICKER_CHANGED)
IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent, wxCommandEvent)
// wxFileDirPickerCtrlBase
// ----------------------------------------------------------------------------
-bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
- const wxString &path, const wxString &message,
- const wxString &wildcard,
- const wxPoint &pos, const wxSize &size,
- long style, const wxValidator& validator,
- const wxString &name )
+bool wxFileDirPickerCtrlBase::CreateBase(wxWindow *parent,
+ wxWindowID id,
+ const wxString &path,
+ const wxString &message,
+ const wxString &wildcard,
+ const wxPoint &pos,
+ const wxSize &size,
+ long style,
+ const wxValidator& validator,
+ const wxString &name )
{
wxASSERT_MSG(path.empty() || CheckPath(path), wxT("Invalid initial path!"));