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"
31 // ============================================================================
33 // ============================================================================
35 DEFINE_EVENT_TYPE(wxEVT_COMMAND_FILEPICKER_CHANGED
)
36 DEFINE_EVENT_TYPE(wxEVT_COMMAND_DIRPICKER_CHANGED
)
37 IMPLEMENT_DYNAMIC_CLASS(wxFileDirPickerEvent
, wxCommandEvent
)
39 // ----------------------------------------------------------------------------
40 // wxFileDirPickerCtrlBase
41 // ----------------------------------------------------------------------------
43 #define M_PICKER ((wxFilePickerWidget*)m_picker)
45 bool wxFileDirPickerCtrlBase::CreateBase( wxWindow
*parent
, wxWindowID id
,
46 const wxString
&path
, const wxString
&message
,
47 const wxString
&wildcard
,
48 const wxPoint
&pos
, const wxSize
&size
,
49 long style
, const wxValidator
& validator
,
50 const wxString
&name
)
52 wxASSERT_MSG(path
.empty() || CheckPath(path
), wxT("Invalid initial path !"));
54 if (!wxPickerBase::CreateBase(parent
, id
, path
, pos
, size
,
55 style
, validator
, name
))
58 if (!HasFlag(wxFLP_OPEN
) && !HasFlag(wxFLP_SAVE
))
59 m_windowStyle
|= wxFLP_OPEN
; // wxFD_OPEN is the default
61 // check that the styles are not contradictory
62 wxASSERT_MSG( !(HasFlag(wxFLP_SAVE
) && HasFlag(wxFLP_OPEN
)),
63 _T("can't specify both wxFLP_SAVE and wxFLP_OPEN at once") );
65 wxASSERT_MSG( !HasFlag(wxFLP_SAVE
) || !HasFlag(wxFLP_FILE_MUST_EXIST
),
66 _T("wxFLP_FILE_MUST_EXIST can't be used with wxFLP_SAVE" ) );
68 wxASSERT_MSG( !HasFlag(wxFLP_OPEN
) || !HasFlag(wxFLP_OVERWRITE_PROMPT
),
69 _T("wxFLP_OVERWRITE_PROMPT can't be used with wxFLP_OPEN") );
71 // create a wxFilePickerWidget or a wxDirPickerWidget...
72 if (!CreatePicker(this, path
, message
, wildcard
))
74 m_picker
->Connect(GetEventType(),
75 wxFileDirPickerEventHandler(wxFileDirPickerCtrlBase::OnFileDirChange
),
78 // default's wxPickerBase textctrl limit is too small for this control:
80 if (m_text
) m_text
->SetMaxLength(512);
85 void wxFileDirPickerCtrlBase::SetPath(const wxString
&path
)
87 M_PICKER
->SetPath(path
);
88 UpdateTextCtrlFromPicker();
91 void wxFileDirPickerCtrlBase::UpdatePickerFromTextCtrl()
95 if (m_bIgnoreNextTextCtrlUpdate
)
98 m_bIgnoreNextTextCtrlUpdate
= false;
102 // remove the eventually present path-separator from the end of the textctrl
103 // string otherwise we would generate a wxFileDirPickerEvent when changing
104 // from e.g. /home/user to /home/user/ and we want to avoid it !
105 wxString
newpath(m_text
->GetValue());
106 if (!newpath
.empty() && wxFileName::IsPathSeparator(newpath
.Last()))
107 newpath
.RemoveLast();
108 if (!CheckPath(newpath
))
109 return; // invalid user input
111 if (M_PICKER
->GetPath() != newpath
)
113 M_PICKER
->SetPath(newpath
);
115 // update current working directory, if necessary
116 // NOTE: the path separator is required because if newpath is "C:"
117 // then no change would happen
119 wxSetWorkingDirectory(newpath
+ wxFileName::GetPathSeparator());
122 wxFileDirPickerEvent
event(GetEventType(), this, GetId(), newpath
);
123 GetEventHandler()->ProcessEvent(event
);
127 void wxFileDirPickerCtrlBase::UpdateTextCtrlFromPicker()
130 return; // no textctrl to update
132 // NOTE: this SetValue() will generate an unwanted wxEVT_COMMAND_TEXT_UPDATED
133 // which will trigger a unneeded UpdateFromTextCtrl(); thus before using
134 // SetValue() we set the m_bIgnoreNextTextCtrlUpdate flag...
135 m_bIgnoreNextTextCtrlUpdate
= true;
136 m_text
->SetValue(M_PICKER
->GetPath());
141 // ----------------------------------------------------------------------------
142 // wxFileDirPickerCtrlBase - event handlers
143 // ----------------------------------------------------------------------------
145 void wxFileDirPickerCtrlBase::OnFileDirChange(wxFileDirPickerEvent
&ev
)
147 UpdateTextCtrlFromPicker();
149 // the wxFilePickerWidget sent us a colour-change notification.
150 // forward this event to our parent
151 wxFileDirPickerEvent
event(GetEventType(), this, GetId(), ev
.GetPath());
152 GetEventHandler()->ProcessEvent(event
);
155 #endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
157 #if wxUSE_FILEPICKERCTRL
158 IMPLEMENT_DYNAMIC_CLASS(wxFilePickerCtrl
, wxPickerBase
)
160 #if wxUSE_DIRPICKERCTRL
161 IMPLEMENT_DYNAMIC_CLASS(wxDirPickerCtrl
, wxPickerBase
)