fixed crashes in wxFile/DirPickerCtrl::GetPath() due to incorrect casting in multiple inheritance hierarchy and incorrect casting to wxFilePickerWidget in wxFileDirPickerCtrlBase

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40100 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2006-07-15 15:13:04 +00:00
parent 1029169f08
commit af6ad98461
3 changed files with 55 additions and 34 deletions

View File

@ -46,6 +46,9 @@ public:
wxString GetPath() const { return m_path; } wxString GetPath() const { return m_path; }
virtual void SetPath(const wxString &str) { m_path=str; } virtual void SetPath(const wxString &str) { m_path=str; }
// returns the picker widget cast to wxControl
virtual wxControl *AsControl() = 0;
protected: protected:
virtual void UpdateDialogPath(wxDialog *) = 0; virtual void UpdateDialogPath(wxDialog *) = 0;
virtual void UpdatePathFromDialog(wxDialog *) = 0; virtual void UpdatePathFromDialog(wxDialog *) = 0;
@ -88,7 +91,7 @@ protected:
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxFileDirPickerWidgetBase // wxFileDirPickerCtrlBase
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxFileDirPickerCtrlBase : public wxPickerBase class WXDLLIMPEXP_CORE wxFileDirPickerCtrlBase : public wxPickerBase
@ -96,6 +99,7 @@ class WXDLLIMPEXP_CORE wxFileDirPickerCtrlBase : public wxPickerBase
public: public:
wxFileDirPickerCtrlBase() : m_bIgnoreNextTextCtrlUpdate(false) {} wxFileDirPickerCtrlBase() : m_bIgnoreNextTextCtrlUpdate(false) {}
protected:
// NB: no default values since this function will never be used // NB: no default values since this function will never be used
// directly by the user and derived classes wouldn't use them // directly by the user and derived classes wouldn't use them
bool CreateBase(wxWindow *parent, bool CreateBase(wxWindow *parent,
@ -111,8 +115,7 @@ public:
public: // public API public: // public API
wxString GetPath() const wxString GetPath() const;
{ return ((wxFileDirPickerWidgetBase*)m_picker)->GetPath(); }
void SetPath(const wxString &str); void SetPath(const wxString &str);
public: // internal functions public: // internal functions
@ -123,9 +126,6 @@ public: // internal functions
// event handler for our picker // event handler for our picker
void OnFileDirChange(wxFileDirPickerEvent &); 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 // Returns TRUE if the current path is a valid one
// (i.e. a valid file for a wxFilePickerWidget or a valid // (i.e. a valid file for a wxFilePickerWidget or a valid
// folder for a wxDirPickerWidget). // folder for a wxDirPickerWidget).
@ -140,10 +140,21 @@ public: // internal functions
// Returns the filtered value currently placed in the text control (if present). // Returns the filtered value currently placed in the text control (if present).
virtual wxString GetTextCtrlValue() const = 0; 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: protected:
// true if the next UpdateTextCtrl() call is to ignore // true if the next UpdateTextCtrl() call is to ignore
bool m_bIgnoreNextTextCtrlUpdate; bool m_bIgnoreNextTextCtrlUpdate;
// m_picker object as wxFileDirPickerWidgetBase interface
wxFileDirPickerWidgetBase *m_pickerIface;
}; };
#endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL #endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
@ -206,17 +217,6 @@ public:
public: // overrides 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 // return true if the given path is valid for this control
bool CheckPath(const wxString& path) const; bool CheckPath(const wxString& path) const;
@ -230,6 +230,18 @@ public: // overrides
{ return wxEVT_COMMAND_FILEPICKER_CHANGED; } { return wxEVT_COMMAND_FILEPICKER_CHANGED; }
protected: 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 // extracts the style for our picker from wxFileDirPickerCtrlBase's style
long GetPickerStyle(long style) const long GetPickerStyle(long style) const
{ {
@ -297,15 +309,6 @@ public:
public: // overrides 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; bool CheckPath(const wxString &path) const;
wxString GetTextCtrlValue() const; wxString GetTextCtrlValue() const;
@ -317,6 +320,17 @@ public: // overrides
{ return wxEVT_COMMAND_DIRPICKER_CHANGED; } { return wxEVT_COMMAND_DIRPICKER_CHANGED; }
protected: 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 // extracts the style for our picker from wxFileDirPickerCtrlBase's style
long GetPickerStyle(long style) const long GetPickerStyle(long style) const
{ return (style & (wxDIRP_DIR_MUST_EXIST|wxDIRP_CHANGE_DIR)); } { return (style & (wxDIRP_DIR_MUST_EXIST|wxDIRP_CHANGE_DIR)); }

View File

@ -48,6 +48,8 @@ public:
virtual ~wxGenericFileDirButton() {} virtual ~wxGenericFileDirButton() {}
virtual wxControl *AsControl() { return this; }
public: // overrideable public: // overrideable
virtual wxDialog *CreateDialog() = 0; virtual wxDialog *CreateDialog() = 0;

View File

@ -45,8 +45,6 @@ IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent, wxCommandEvent)
// wxFileDirPickerCtrlBase // wxFileDirPickerCtrlBase
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
#define M_PICKER ((wxFilePickerWidget*)m_picker)
bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id, bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
const wxString &path, const wxString &message, const wxString &path, const wxString &message,
const wxString &wildcard, const wxString &wildcard,
@ -54,7 +52,7 @@ bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
long style, const wxValidator& validator, long style, const wxValidator& validator,
const wxString &name ) 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, if (!wxPickerBase::CreateBase(parent, id, path, pos, size,
style, validator, name)) style, validator, name))
@ -74,8 +72,10 @@ bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
_T("wxFLP_OVERWRITE_PROMPT can't be used with wxFLP_OPEN") ); _T("wxFLP_OVERWRITE_PROMPT can't be used with wxFLP_OPEN") );
// create a wxFilePickerWidget or a wxDirPickerWidget... // create a wxFilePickerWidget or a wxDirPickerWidget...
if (!CreatePicker(this, path, message, wildcard)) m_pickerIface = CreatePicker(this, path, message, wildcard);
if ( !m_pickerIface )
return false; return false;
m_picker = m_pickerIface->AsControl();
// complete sizer creation // complete sizer creation
wxPickerBase::PostCreation(); wxPickerBase::PostCreation();
@ -91,9 +91,14 @@ bool wxFileDirPickerCtrlBase::CreateBase( wxWindow *parent, wxWindowID id,
return true; return true;
} }
wxString wxFileDirPickerCtrlBase::GetPath() const
{
return m_pickerIface->GetPath();
}
void wxFileDirPickerCtrlBase::SetPath(const wxString &path) void wxFileDirPickerCtrlBase::SetPath(const wxString &path)
{ {
M_PICKER->SetPath(path); m_pickerIface->SetPath(path);
UpdateTextCtrlFromPicker(); UpdateTextCtrlFromPicker();
} }
@ -115,9 +120,9 @@ void wxFileDirPickerCtrlBase::UpdatePickerFromTextCtrl()
if (!CheckPath(newpath)) if (!CheckPath(newpath))
return; // invalid user input 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 // update current working directory, if necessary
// NOTE: the path separator is required because if newpath is "C:" // NOTE: the path separator is required because if newpath is "C:"
@ -140,7 +145,7 @@ void wxFileDirPickerCtrlBase::UpdateTextCtrlFromPicker()
// which will trigger a unneeded UpdateFromTextCtrl(); thus before using // which will trigger a unneeded UpdateFromTextCtrl(); thus before using
// SetValue() we set the m_bIgnoreNextTextCtrlUpdate flag... // SetValue() we set the m_bIgnoreNextTextCtrlUpdate flag...
m_bIgnoreNextTextCtrlUpdate = true; m_bIgnoreNextTextCtrlUpdate = true;
m_text->SetValue(M_PICKER->GetPath()); m_text->SetValue(m_pickerIface->GetPath());
} }