wxString GetPath() const { return m_path; }
virtual void SetPath(const wxString &str) { m_path=str; }
+ // returns the picker widget cast to wxControl
+ virtual wxControl *AsControl() = 0;
+
protected:
virtual void UpdateDialogPath(wxDialog *) = 0;
virtual void UpdatePathFromDialog(wxDialog *) = 0;
// ----------------------------------------------------------------------------
-// wxFileDirPickerWidgetBase
+// wxFileDirPickerCtrlBase
// ----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxFileDirPickerCtrlBase : public wxPickerBase
public:
wxFileDirPickerCtrlBase() : m_bIgnoreNextTextCtrlUpdate(false) {}
+protected:
// NB: no default values since this function will never be used
// directly by the user and derived classes wouldn't use them
bool CreateBase(wxWindow *parent,
public: // public API
- wxString GetPath() const
- { return ((wxFileDirPickerWidgetBase*)m_picker)->GetPath(); }
+ wxString GetPath() const;
void SetPath(const wxString &str);
public: // internal functions
// event handler for our picker
void OnFileDirChange(wxFileDirPickerEvent &);
- virtual bool CreatePicker(wxWindow *parent, const wxString& path,
- const wxString& message, const wxString& wildcard) = 0;
-
// Returns TRUE if the current path is a valid one
// (i.e. a valid file for a wxFilePickerWidget or a valid
// folder for a wxDirPickerWidget).
// Returns the filtered value currently placed in the text control (if present).
virtual wxString GetTextCtrlValue() const = 0;
+protected:
+ // creates the picker control
+ virtual
+ wxFileDirPickerWidgetBase *CreatePicker(wxWindow *parent,
+ const wxString& path,
+ const wxString& message,
+ const wxString& wildcard) = 0;
+
protected:
// true if the next UpdateTextCtrl() call is to ignore
bool m_bIgnoreNextTextCtrlUpdate;
+
+ // m_picker object as wxFileDirPickerWidgetBase interface
+ wxFileDirPickerWidgetBase *m_pickerIface;
};
#endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
public: // overrides
- bool CreatePicker(wxWindow *parent, const wxString& path,
- const wxString& message, const wxString& wildcard)
- {
- m_picker = new wxFilePickerWidget(parent, wxID_ANY,
- wxFilePickerWidgetLabel,
- path, message, wildcard,
- wxDefaultPosition, wxDefaultSize,
- GetPickerStyle(GetWindowStyle()));
- return true;
- }
-
// return true if the given path is valid for this control
bool CheckPath(const wxString& path) const;
{ return wxEVT_COMMAND_FILEPICKER_CHANGED; }
protected:
+ wxFileDirPickerWidgetBase *CreatePicker(wxWindow *parent,
+ const wxString& path,
+ const wxString& message,
+ const wxString& wildcard)
+ {
+ return new wxFilePickerWidget(parent, wxID_ANY,
+ wxFilePickerWidgetLabel,
+ path, message, wildcard,
+ wxDefaultPosition, wxDefaultSize,
+ GetPickerStyle(GetWindowStyle()));
+ }
+
// extracts the style for our picker from wxFileDirPickerCtrlBase's style
long GetPickerStyle(long style) const
{
public: // overrides
- bool CreatePicker(wxWindow *parent, const wxString& path,
- const wxString& message, const wxString& WXUNUSED(wildcard))
- {
- m_picker = new wxDirPickerWidget(parent, wxID_ANY, wxDirPickerWidgetLabel,
- path, message, wxDefaultPosition, wxDefaultSize,
- GetPickerStyle(GetWindowStyle()));
- return true;
- }
-
bool CheckPath(const wxString &path) const;
wxString GetTextCtrlValue() const;
{ return wxEVT_COMMAND_DIRPICKER_CHANGED; }
protected:
+ wxFileDirPickerWidgetBase *CreatePicker(wxWindow *parent,
+ const wxString& path,
+ const wxString& message,
+ const wxString& WXUNUSED(wildcard))
+ {
+ return new wxDirPickerWidget(parent, wxID_ANY, wxDirPickerWidgetLabel,
+ path, message,
+ wxDefaultPosition, wxDefaultSize,
+ GetPickerStyle(GetWindowStyle()));
+ }
+
// extracts the style for our picker from wxFileDirPickerCtrlBase's style
long GetPickerStyle(long style) const
{ return (style & (wxDIRP_DIR_MUST_EXIST|wxDIRP_CHANGE_DIR)); }
// wxFileDirPickerCtrlBase
// ----------------------------------------------------------------------------
-#define M_PICKER ((wxFilePickerWidget*)m_picker)
-
bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
const wxString &path, const wxString &message,
const wxString &wildcard,
long style, const wxValidator& validator,
const wxString &name )
{
- wxASSERT_MSG(path.empty() || CheckPath(path), wxT("Invalid initial path !"));
+ wxASSERT_MSG(path.empty() || CheckPath(path), wxT("Invalid initial path!"));
if (!wxPickerBase::CreateBase(parent, id, path, pos, size,
style, validator, name))
_T("wxFLP_OVERWRITE_PROMPT can't be used with wxFLP_OPEN") );
// create a wxFilePickerWidget or a wxDirPickerWidget...
- if (!CreatePicker(this, path, message, wildcard))
+ m_pickerIface = CreatePicker(this, path, message, wildcard);
+ if ( !m_pickerIface )
return false;
+ m_picker = m_pickerIface->AsControl();
// complete sizer creation
wxPickerBase::PostCreation();
return true;
}
+wxString wxFileDirPickerCtrlBase::GetPath() const
+{
+ return m_pickerIface->GetPath();
+}
+
void wxFileDirPickerCtrlBase::SetPath(const wxString &path)
{
- M_PICKER->SetPath(path);
+ m_pickerIface->SetPath(path);
UpdateTextCtrlFromPicker();
}
if (!CheckPath(newpath))
return; // invalid user input
- if (M_PICKER->GetPath() != newpath)
+ if (m_pickerIface->GetPath() != newpath)
{
- M_PICKER->SetPath(newpath);
+ m_pickerIface->SetPath(newpath);
// update current working directory, if necessary
// NOTE: the path separator is required because if newpath is "C:"
// which will trigger a unneeded UpdateFromTextCtrl(); thus before using
// SetValue() we set the m_bIgnoreNextTextCtrlUpdate flag...
m_bIgnoreNextTextCtrlUpdate = true;
- m_text->SetValue(M_PICKER->GetPath());
+ m_text->SetValue(m_pickerIface->GetPath());
}