1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/filepickercmn.cpp
3 // Purpose: wxFilePickerCtrl class implementation
4 // Author: Francesco Montorsi (readapted code written by Vadim Zeitlin)
8 // Copyright: (c) Vadim Zeitlin, Francesco Montorsi
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
29 #include "wx/filepicker.h"
30 #include "wx/filename.h"
33 #include "wx/textctrl.h"
36 // ============================================================================
38 // ============================================================================
40 DEFINE_EVENT_TYPE(wxEVT_COMMAND_FILEPICKER_CHANGED
)
41 DEFINE_EVENT_TYPE(wxEVT_COMMAND_DIRPICKER_CHANGED
)
42 IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent
, wxCommandEvent
)
44 // ----------------------------------------------------------------------------
45 // wxFileDirPickerCtrlBase
46 // ----------------------------------------------------------------------------
48 #define M_PICKER ((wxFilePickerWidget*)m_picker)
50 bool wxFileDirPickerCtrlBase::CreateBase( wxWindow
*parent
, wxWindowID id
,
51 const wxString
&path
, const wxString
&message
,
52 const wxString
&wildcard
,
53 const wxPoint
&pos
, const wxSize
&size
,
54 long style
, const wxValidator
& validator
,
55 const wxString
&name
)
57 wxASSERT_MSG(path
.empty() || CheckPath(path
), wxT("Invalid initial path !"));
59 if (!wxPickerBase::CreateBase(parent
, id
, path
, pos
, size
,
60 style
, validator
, name
))
63 if (!HasFlag(wxFLP_OPEN
) && !HasFlag(wxFLP_SAVE
))
64 m_windowStyle
|= wxFLP_OPEN
; // wxFD_OPEN is the default
66 // check that the styles are not contradictory
67 wxASSERT_MSG( !(HasFlag(wxFLP_SAVE
) && HasFlag(wxFLP_OPEN
)),
68 _T("can't specify both wxFLP_SAVE and wxFLP_OPEN at once") );
70 wxASSERT_MSG( !HasFlag(wxFLP_SAVE
) || !HasFlag(wxFLP_FILE_MUST_EXIST
),
71 _T("wxFLP_FILE_MUST_EXIST can't be used with wxFLP_SAVE" ) );
73 wxASSERT_MSG( !HasFlag(wxFLP_OPEN
) || !HasFlag(wxFLP_OVERWRITE_PROMPT
),
74 _T("wxFLP_OVERWRITE_PROMPT can't be used with wxFLP_OPEN") );
76 // create a wxFilePickerWidget or a wxDirPickerWidget...
77 if (!CreatePicker(this, path
, message
, wildcard
))
80 // complete sizer creation
81 wxPickerBase::PostCreation();
83 m_picker
->Connect(GetEventType(),
84 wxFileDirPickerEventHandler(wxFileDirPickerCtrlBase::OnFileDirChange
),
87 // default's wxPickerBase textctrl limit is too small for this control:
89 if (m_text
) m_text
->SetMaxLength(512);
94 void wxFileDirPickerCtrlBase::SetPath(const wxString
&path
)
96 M_PICKER
->SetPath(path
);
97 UpdateTextCtrlFromPicker();
100 void wxFileDirPickerCtrlBase::UpdatePickerFromTextCtrl()
104 if (m_bIgnoreNextTextCtrlUpdate
)
106 // ignore this update
107 m_bIgnoreNextTextCtrlUpdate
= false;
111 // remove the eventually present path-separator from the end of the textctrl
112 // string otherwise we would generate a wxFileDirPickerEvent when changing
113 // from e.g. /home/user to /home/user/ and we want to avoid it !
114 wxString
newpath(GetTextCtrlValue());
115 if (!CheckPath(newpath
))
116 return; // invalid user input
118 if (M_PICKER
->GetPath() != newpath
)
120 M_PICKER
->SetPath(newpath
);
122 // update current working directory, if necessary
123 // NOTE: the path separator is required because if newpath is "C:"
124 // then no change would happen
126 wxSetWorkingDirectory(newpath
);
129 wxFileDirPickerEvent
event(GetEventType(), this, GetId(), newpath
);
130 GetEventHandler()->ProcessEvent(event
);
134 void wxFileDirPickerCtrlBase::UpdateTextCtrlFromPicker()
137 return; // no textctrl to update
139 // NOTE: this SetValue() will generate an unwanted wxEVT_COMMAND_TEXT_UPDATED
140 // which will trigger a unneeded UpdateFromTextCtrl(); thus before using
141 // SetValue() we set the m_bIgnoreNextTextCtrlUpdate flag...
142 m_bIgnoreNextTextCtrlUpdate
= true;
143 m_text
->SetValue(M_PICKER
->GetPath());
148 // ----------------------------------------------------------------------------
149 // wxFileDirPickerCtrlBase - event handlers
150 // ----------------------------------------------------------------------------
152 void wxFileDirPickerCtrlBase::OnFileDirChange(wxFileDirPickerEvent
&ev
)
154 UpdateTextCtrlFromPicker();
156 // the wxFilePickerWidget sent us a colour-change notification.
157 // forward this event to our parent
158 wxFileDirPickerEvent
event(GetEventType(), this, GetId(), ev
.GetPath());
159 GetEventHandler()->ProcessEvent(event
);
162 #endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
164 // ----------------------------------------------------------------------------
165 // wxFileDirPickerCtrl
166 // ----------------------------------------------------------------------------
168 #if wxUSE_FILEPICKERCTRL
170 IMPLEMENT_DYNAMIC_CLASS(wxFilePickerCtrl
, wxPickerBase
)
172 bool wxFilePickerCtrl::CheckPath(const wxString
& path
) const
174 // if wxFLP_SAVE was given or wxFLP_FILE_MUST_EXIST has NOT been given we
175 // must accept any path
176 return HasFlag(wxFLP_SAVE
) ||
177 !HasFlag(wxFLP_FILE_MUST_EXIST
) ||
178 wxFileName::FileExists(path
);
181 wxString
wxFilePickerCtrl::GetTextCtrlValue() const
183 // filter it through wxFileName to remove any spurious path separator
184 return wxFileName(m_text
->GetValue()).GetFullPath();
187 #endif // wxUSE_FILEPICKERCTRL
189 // ----------------------------------------------------------------------------
191 // ----------------------------------------------------------------------------
193 #if wxUSE_DIRPICKERCTRL
194 IMPLEMENT_DYNAMIC_CLASS(wxDirPickerCtrl
, wxPickerBase
)
196 bool wxDirPickerCtrl::CheckPath(const wxString
& path
) const
198 // if wxDIRP_DIR_MUST_EXIST has NOT been given we must accept any path
199 return !HasFlag(wxDIRP_DIR_MUST_EXIST
) || wxFileName::DirExists(path
);
202 wxString
wxDirPickerCtrl::GetTextCtrlValue() const
204 // filter it through wxFileName to remove any spurious path separator
205 return wxFileName::DirName(m_text
->GetValue()).GetPath();
208 #endif // wxUSE_DIRPICKERCTRL