1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/filepicker.h
3 // Purpose: wxFilePickerCtrl, wxDirPickerCtrl base header
4 // Author: Francesco Montorsi
7 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILEDIRPICKER_H_BASE_
13 #define _WX_FILEDIRPICKER_H_BASE_
17 #if wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
19 #include "wx/pickerbase.h"
20 #include "wx/filename.h"
22 class WXDLLIMPEXP_FWD_CORE wxDialog
;
23 class WXDLLIMPEXP_FWD_CORE wxFileDirPickerEvent
;
25 extern WXDLLIMPEXP_DATA_CORE(const char) wxFilePickerWidgetLabel
[];
26 extern WXDLLIMPEXP_DATA_CORE(const char) wxFilePickerWidgetNameStr
[];
27 extern WXDLLIMPEXP_DATA_CORE(const char) wxFilePickerCtrlNameStr
[];
28 extern WXDLLIMPEXP_DATA_CORE(const char) wxFileSelectorPromptStr
[];
30 extern WXDLLIMPEXP_DATA_CORE(const char) wxDirPickerWidgetLabel
[];
31 extern WXDLLIMPEXP_DATA_CORE(const char) wxDirPickerWidgetNameStr
[];
32 extern WXDLLIMPEXP_DATA_CORE(const char) wxDirPickerCtrlNameStr
[];
33 extern WXDLLIMPEXP_DATA_CORE(const char) wxDirSelectorPromptStr
[];
35 // ----------------------------------------------------------------------------
36 // wxFileDirPickerEvent: used by wxFilePickerCtrl and wxDirPickerCtrl only
37 // ----------------------------------------------------------------------------
39 class WXDLLIMPEXP_CORE wxFileDirPickerEvent
: public wxCommandEvent
42 wxFileDirPickerEvent() {}
43 wxFileDirPickerEvent(wxEventType type
, wxObject
*generator
, int id
, const wxString
&path
)
44 : wxCommandEvent(type
, id
),
47 SetEventObject(generator
);
50 wxString
GetPath() const { return m_path
; }
51 void SetPath(const wxString
&p
) { m_path
= p
; }
53 // default copy ctor, assignment operator and dtor are ok
54 virtual wxEvent
*Clone() const { return new wxFileDirPickerEvent(*this); }
59 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFileDirPickerEvent
)
62 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE
, wxEVT_COMMAND_FILEPICKER_CHANGED
, wxFileDirPickerEvent
);
63 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE
, wxEVT_COMMAND_DIRPICKER_CHANGED
, wxFileDirPickerEvent
);
65 // ----------------------------------------------------------------------------
66 // event types and macros
67 // ----------------------------------------------------------------------------
69 typedef void (wxEvtHandler::*wxFileDirPickerEventFunction
)(wxFileDirPickerEvent
&);
71 #define wxFileDirPickerEventHandler(func) \
72 wxEVENT_HANDLER_CAST(wxFileDirPickerEventFunction, func)
74 #define EVT_FILEPICKER_CHANGED(id, fn) \
75 wx__DECLARE_EVT1(wxEVT_COMMAND_FILEPICKER_CHANGED, id, wxFileDirPickerEventHandler(fn))
76 #define EVT_DIRPICKER_CHANGED(id, fn) \
77 wx__DECLARE_EVT1(wxEVT_COMMAND_DIRPICKER_CHANGED, id, wxFileDirPickerEventHandler(fn))
79 // ----------------------------------------------------------------------------
80 // wxFileDirPickerWidgetBase: a generic abstract interface which must be
81 // implemented by controls used by wxFileDirPickerCtrlBase
82 // ----------------------------------------------------------------------------
84 class WXDLLIMPEXP_CORE wxFileDirPickerWidgetBase
87 wxFileDirPickerWidgetBase() { }
88 virtual ~wxFileDirPickerWidgetBase() { }
90 wxString
GetPath() const { return m_path
; }
91 virtual void SetPath(const wxString
&str
) { m_path
=str
; }
93 // returns the picker widget cast to wxControl
94 virtual wxControl
*AsControl() = 0;
97 virtual void UpdateDialogPath(wxDialog
*) = 0;
98 virtual void UpdatePathFromDialog(wxDialog
*) = 0;
103 // Styles which must be supported by all controls implementing wxFileDirPickerWidgetBase
104 // NB: these styles must be defined to carefully-chosen values to
105 // avoid conflicts with wxButton's styles
107 #define wxFLP_OPEN 0x0400
108 #define wxFLP_SAVE 0x0800
109 #define wxFLP_OVERWRITE_PROMPT 0x1000
110 #define wxFLP_FILE_MUST_EXIST 0x2000
111 #define wxFLP_CHANGE_DIR 0x4000
112 #define wxFLP_SMALL wxPB_SMALL
114 // NOTE: wxMULTIPLE is not supported !
117 #define wxDIRP_DIR_MUST_EXIST 0x0008
118 #define wxDIRP_CHANGE_DIR 0x0010
119 #define wxDIRP_SMALL wxPB_SMALL
122 // map platform-dependent controls which implement the wxFileDirPickerWidgetBase
123 // under the name "wxFilePickerWidget" and "wxDirPickerWidget".
124 // NOTE: wxFileDirPickerCtrlBase will allocate a wx{File|Dir}PickerWidget and this
125 // requires that all classes being mapped as wx{File|Dir}PickerWidget have the
126 // same prototype for the contructor...
127 // since GTK >= 2.6, there is GtkFileButton
128 #if defined(__WXGTK26__) && !defined(__WXUNIVERSAL__)
129 #include "wx/gtk/filepicker.h"
130 #define wxFilePickerWidget wxFileButton
131 #define wxDirPickerWidget wxDirButton
133 #include "wx/generic/filepickerg.h"
134 #define wxFilePickerWidget wxGenericFileButton
135 #define wxDirPickerWidget wxGenericDirButton
140 // ----------------------------------------------------------------------------
141 // wxFileDirPickerCtrlBase
142 // ----------------------------------------------------------------------------
144 class WXDLLIMPEXP_CORE wxFileDirPickerCtrlBase
: public wxPickerBase
147 wxFileDirPickerCtrlBase() : m_bIgnoreNextTextCtrlUpdate(false) {}
150 // NB: no default values since this function will never be used
151 // directly by the user and derived classes wouldn't use them
152 bool CreateBase(wxWindow
*parent
,
154 const wxString
& path
,
155 const wxString
&message
,
156 const wxString
&wildcard
,
160 const wxValidator
& validator
,
161 const wxString
& name
);
163 public: // public API
165 wxString
GetPath() const;
166 void SetPath(const wxString
&str
);
168 public: // internal functions
170 void UpdatePickerFromTextCtrl();
171 void UpdateTextCtrlFromPicker();
173 // event handler for our picker
174 void OnFileDirChange(wxFileDirPickerEvent
&);
176 // Returns TRUE if the current path is a valid one
177 // (i.e. a valid file for a wxFilePickerWidget or a valid
178 // folder for a wxDirPickerWidget).
179 virtual bool CheckPath(const wxString
&str
) const = 0;
181 // TRUE if any textctrl change should update the current working directory
182 virtual bool IsCwdToUpdate() const = 0;
184 // Returns the event type sent by this picker
185 virtual wxEventType
GetEventType() const = 0;
187 virtual void DoConnect( wxControl
*sender
, wxFileDirPickerCtrlBase
*eventSink
) = 0;
189 // Returns the filtered value currently placed in the text control (if present).
190 virtual wxString
GetTextCtrlValue() const = 0;
193 // creates the picker control
195 wxFileDirPickerWidgetBase
*CreatePicker(wxWindow
*parent
,
196 const wxString
& path
,
197 const wxString
& message
,
198 const wxString
& wildcard
) = 0;
202 // true if the next UpdateTextCtrl() call is to ignore
203 bool m_bIgnoreNextTextCtrlUpdate
;
205 // m_picker object as wxFileDirPickerWidgetBase interface
206 wxFileDirPickerWidgetBase
*m_pickerIface
;
209 #endif // wxUSE_FILEPICKERCTRL || wxUSE_DIRPICKERCTRL
212 #if wxUSE_FILEPICKERCTRL
214 // ----------------------------------------------------------------------------
215 // wxFilePickerCtrl: platform-independent class which embeds the
216 // platform-dependent wxFilePickerWidget and, if wxFLP_USE_TEXTCTRL style is
217 // used, a textctrl next to it.
218 // ----------------------------------------------------------------------------
220 #define wxFLP_USE_TEXTCTRL (wxPB_USE_TEXTCTRL)
223 // GTK apps usually don't have a textctrl next to the picker
224 #define wxFLP_DEFAULT_STYLE (wxFLP_OPEN|wxFLP_FILE_MUST_EXIST)
226 #define wxFLP_DEFAULT_STYLE (wxFLP_USE_TEXTCTRL|wxFLP_OPEN|wxFLP_FILE_MUST_EXIST)
229 class WXDLLIMPEXP_CORE wxFilePickerCtrl
: public wxFileDirPickerCtrlBase
232 wxFilePickerCtrl() {}
234 wxFilePickerCtrl(wxWindow
*parent
,
236 const wxString
& path
= wxEmptyString
,
237 const wxString
& message
= wxFileSelectorPromptStr
,
238 const wxString
& wildcard
= wxFileSelectorDefaultWildcardStr
,
239 const wxPoint
& pos
= wxDefaultPosition
,
240 const wxSize
& size
= wxDefaultSize
,
241 long style
= wxFLP_DEFAULT_STYLE
,
242 const wxValidator
& validator
= wxDefaultValidator
,
243 const wxString
& name
= wxFilePickerCtrlNameStr
)
245 Create(parent
, id
, path
, message
, wildcard
, pos
, size
, style
,
249 bool Create(wxWindow
*parent
,
251 const wxString
& path
= wxEmptyString
,
252 const wxString
& message
= wxFileSelectorPromptStr
,
253 const wxString
& wildcard
= wxFileSelectorDefaultWildcardStr
,
254 const wxPoint
& pos
= wxDefaultPosition
,
255 const wxSize
& size
= wxDefaultSize
,
256 long style
= wxFLP_DEFAULT_STYLE
,
257 const wxValidator
& validator
= wxDefaultValidator
,
258 const wxString
& name
= wxFilePickerCtrlNameStr
);
260 void SetFileName(const wxFileName
&filename
)
261 { SetPath(filename
.GetFullPath()); }
263 wxFileName
GetFileName() const
264 { return wxFileName(GetPath()); }
268 // return true if the given path is valid for this control
269 bool CheckPath(const wxString
& path
) const;
271 // return the text control value in canonical form
272 wxString
GetTextCtrlValue() const;
274 bool IsCwdToUpdate() const
275 { return HasFlag(wxFLP_CHANGE_DIR
); }
277 wxEventType
GetEventType() const
278 { return wxEVT_COMMAND_FILEPICKER_CHANGED
; }
280 virtual void DoConnect( wxControl
*sender
, wxFileDirPickerCtrlBase
*eventSink
)
282 sender
->Connect( wxEVT_COMMAND_FILEPICKER_CHANGED
,
283 wxFileDirPickerEventHandler( wxFileDirPickerCtrlBase::OnFileDirChange
),
290 wxFileDirPickerWidgetBase
*CreatePicker(wxWindow
*parent
,
291 const wxString
& path
,
292 const wxString
& message
,
293 const wxString
& wildcard
)
295 return new wxFilePickerWidget(parent
, wxID_ANY
,
296 wxGetTranslation(wxFilePickerWidgetLabel
),
297 path
, message
, wildcard
,
298 wxDefaultPosition
, wxDefaultSize
,
299 GetPickerStyle(GetWindowStyle()));
302 // extracts the style for our picker from wxFileDirPickerCtrlBase's style
303 long GetPickerStyle(long style
) const
305 return style
& (wxFLP_OPEN
|
307 wxFLP_OVERWRITE_PROMPT
|
308 wxFLP_FILE_MUST_EXIST
|
315 DECLARE_DYNAMIC_CLASS(wxFilePickerCtrl
)
318 #endif // wxUSE_FILEPICKERCTRL
321 #if wxUSE_DIRPICKERCTRL
323 // ----------------------------------------------------------------------------
324 // wxDirPickerCtrl: platform-independent class which embeds the
325 // platform-dependent wxDirPickerWidget and eventually a textctrl
326 // (see wxDIRP_USE_TEXTCTRL) next to it.
327 // ----------------------------------------------------------------------------
329 #define wxDIRP_USE_TEXTCTRL (wxPB_USE_TEXTCTRL)
332 // GTK apps usually don't have a textctrl next to the picker
333 #define wxDIRP_DEFAULT_STYLE (wxDIRP_DIR_MUST_EXIST)
335 #define wxDIRP_DEFAULT_STYLE (wxDIRP_USE_TEXTCTRL|wxDIRP_DIR_MUST_EXIST)
338 class WXDLLIMPEXP_CORE wxDirPickerCtrl
: public wxFileDirPickerCtrlBase
343 wxDirPickerCtrl(wxWindow
*parent
, wxWindowID id
,
344 const wxString
& path
= wxEmptyString
,
345 const wxString
& message
= wxDirSelectorPromptStr
,
346 const wxPoint
& pos
= wxDefaultPosition
,
347 const wxSize
& size
= wxDefaultSize
,
348 long style
= wxDIRP_DEFAULT_STYLE
,
349 const wxValidator
& validator
= wxDefaultValidator
,
350 const wxString
& name
= wxDirPickerCtrlNameStr
)
352 Create(parent
, id
, path
, message
, pos
, size
, style
, validator
, name
);
355 bool Create(wxWindow
*parent
, wxWindowID id
,
356 const wxString
& path
= wxEmptyString
,
357 const wxString
& message
= wxDirSelectorPromptStr
,
358 const wxPoint
& pos
= wxDefaultPosition
,
359 const wxSize
& size
= wxDefaultSize
,
360 long style
= wxDIRP_DEFAULT_STYLE
,
361 const wxValidator
& validator
= wxDefaultValidator
,
362 const wxString
& name
= wxDirPickerCtrlNameStr
);
364 void SetDirName(const wxFileName
&dirname
)
365 { SetPath(dirname
.GetPath()); }
367 wxFileName
GetDirName() const
368 { return wxFileName::DirName(GetPath()); }
372 bool CheckPath(const wxString
&path
) const;
374 wxString
GetTextCtrlValue() const;
376 bool IsCwdToUpdate() const
377 { return HasFlag(wxDIRP_CHANGE_DIR
); }
379 wxEventType
GetEventType() const
380 { return wxEVT_COMMAND_DIRPICKER_CHANGED
; }
382 virtual void DoConnect( wxControl
*sender
, wxFileDirPickerCtrlBase
*eventSink
)
384 sender
->Connect( wxEVT_COMMAND_DIRPICKER_CHANGED
,
385 wxFileDirPickerEventHandler( wxFileDirPickerCtrlBase::OnFileDirChange
),
392 wxFileDirPickerWidgetBase
*CreatePicker(wxWindow
*parent
,
393 const wxString
& path
,
394 const wxString
& message
,
395 const wxString
& WXUNUSED(wildcard
))
397 return new wxDirPickerWidget(parent
, wxID_ANY
,
398 wxGetTranslation(wxDirPickerWidgetLabel
),
400 wxDefaultPosition
, wxDefaultSize
,
401 GetPickerStyle(GetWindowStyle()));
404 // extracts the style for our picker from wxFileDirPickerCtrlBase's style
405 long GetPickerStyle(long style
) const
407 return style
& (wxDIRP_DIR_MUST_EXIST
|
409 wxDIRP_USE_TEXTCTRL
|
414 DECLARE_DYNAMIC_CLASS(wxDirPickerCtrl
)
417 #endif // wxUSE_DIRPICKERCTRL
419 #endif // _WX_FILEDIRPICKER_H_BASE_