1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/filedirpicker.h
3 // Purpose: wxFileButton, wxDirButton header
4 // Author: Francesco Montorsi
7 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GTK_FILEPICKER_H_
13 #define _WX_GTK_FILEPICKER_H_
15 // since GtkColorButton is available only for GTK+ >= 2.4,
16 // we need to use generic versions if we detect (at runtime)
18 #include "wx/generic/filepickerg.h"
20 //-----------------------------------------------------------------------------
21 // wxFileButton and wxDirButton shared code
22 // (cannot be a base class since they need to derive from wxGenericFileButton
23 // and from wxGenericDirButton classes !)
24 //-----------------------------------------------------------------------------
26 #define FILEDIRBTN_OVERRIDES \
27 /* NULL is because of a problem with destruction order which happens */ \
28 /* if we pass GetParent(): in fact, this GTK native implementation */ \
29 /* needs to create the dialog in ::Create() and not for each user */ \
30 /* request in response to the user click as the generic implementation */ \
32 virtual wxWindow *GetDialogParent() \
37 virtual bool Destroy() \
40 m_dialog->Destroy(); \
41 return wxButton::Destroy(); \
44 /* even if wx derive from wxGenericFileButton, i.e. from wxButton, our */ \
45 /* native GTK+ widget does not derive from GtkButton thus *all* uses */ \
46 /* GTK_BUTTON(m_widget) macro done by wxButton must be bypassed to */ \
47 /* avoid bunch of GTK+ warnings like: */ \
48 /* invalid cast from `GtkFileChooserButton' to `GtkButton' */ \
49 /* so, override wxButton::GTKGetWindow and return NULL as GTK+ doesn't */ \
50 /* give us access to the internal GdkWindow of a GtkFileChooserButton */ \
52 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const \
56 //-----------------------------------------------------------------------------
58 //-----------------------------------------------------------------------------
60 class WXDLLIMPEXP_CORE wxFileButton
: public wxGenericFileButton
63 wxFileButton() { m_dialog
= NULL
; }
64 wxFileButton(wxWindow
*parent
,
66 const wxString
& label
= wxFilePickerWidgetLabel
,
67 const wxString
&path
= wxEmptyString
,
68 const wxString
&message
= wxFileSelectorPromptStr
,
69 const wxString
&wildcard
= wxFileSelectorDefaultWildcardStr
,
70 const wxPoint
& pos
= wxDefaultPosition
,
71 const wxSize
& size
= wxDefaultSize
,
72 long style
= wxFILEBTN_DEFAULT_STYLE
,
73 const wxValidator
& validator
= wxDefaultValidator
,
74 const wxString
& name
= wxFilePickerWidgetNameStr
)
77 Create(parent
, id
, label
, path
, message
, wildcard
,
78 pos
, size
, style
, validator
, name
);
81 virtual ~wxFileButton();
86 bool Create(wxWindow
*parent
,
88 const wxString
& label
= wxFilePickerWidgetLabel
,
89 const wxString
&path
= wxEmptyString
,
90 const wxString
&message
= wxFileSelectorPromptStr
,
91 const wxString
&wildcard
= wxFileSelectorDefaultWildcardStr
,
92 const wxPoint
& pos
= wxDefaultPosition
,
93 const wxSize
& size
= wxDefaultSize
,
95 const wxValidator
& validator
= wxDefaultValidator
,
96 const wxString
& name
= wxFilePickerWidgetNameStr
);
98 // event handler for the click
99 void OnDialogOK(wxCommandEvent
&);
101 // GtkFileChooserButton does not support GTK_FILE_CHOOSER_ACTION_SAVE
102 // so we replace it with GTK_FILE_CHOOSER_ACTION_OPEN; since wxFD_SAVE
103 // is not supported, wxFD_OVERWRITE_PROMPT isn't too...
104 virtual long GetDialogStyle() const
106 return (wxGenericFileButton::GetDialogStyle() &
107 ~(wxFD_SAVE
| wxFD_OVERWRITE_PROMPT
)) | wxFD_OPEN
;
110 virtual void SetPath(const wxString
&str
);
112 // see macro defined above
118 DECLARE_DYNAMIC_CLASS(wxFileButton
)
122 //-----------------------------------------------------------------------------
124 //-----------------------------------------------------------------------------
126 class WXDLLIMPEXP_CORE wxDirButton
: public wxGenericDirButton
129 wxDirButton() { Init(); }
130 wxDirButton(wxWindow
*parent
,
132 const wxString
& label
= wxFilePickerWidgetLabel
,
133 const wxString
&path
= wxEmptyString
,
134 const wxString
&message
= wxFileSelectorPromptStr
,
135 const wxPoint
& pos
= wxDefaultPosition
,
136 const wxSize
& size
= wxDefaultSize
,
137 long style
= wxDIRBTN_DEFAULT_STYLE
,
138 const wxValidator
& validator
= wxDefaultValidator
,
139 const wxString
& name
= wxFilePickerWidgetNameStr
)
143 Create(parent
, id
, label
, path
, message
, wxEmptyString
,
144 pos
, size
, style
, validator
, name
);
147 virtual ~wxDirButton();
152 bool Create(wxWindow
*parent
,
154 const wxString
& label
= wxFilePickerWidgetLabel
,
155 const wxString
&path
= wxEmptyString
,
156 const wxString
&message
= wxFileSelectorPromptStr
,
157 const wxString
&wildcard
= wxFileSelectorDefaultWildcardStr
,
158 const wxPoint
& pos
= wxDefaultPosition
,
159 const wxSize
& size
= wxDefaultSize
,
161 const wxValidator
& validator
= wxDefaultValidator
,
162 const wxString
& name
= wxFilePickerWidgetNameStr
);
165 // GtkFileChooserButton does not support GTK_FILE_CHOOSER_CREATE_FOLDER
166 // thus we must ensure that the wxDD_DIR_MUST_EXIST style was given
167 long GetDialogStyle() const
169 return (wxGenericDirButton::GetDialogStyle() | wxDD_DIR_MUST_EXIST
);
172 virtual void SetPath(const wxString
&str
);
174 // see macro defined above
178 // common part of all ctors
182 m_bIgnoreNextChange
= false;
187 public: // used by the GTK callback only
189 bool m_bIgnoreNextChange
;
191 void UpdatePath(const char *gtkpath
)
192 { m_path
= wxString::FromAscii(gtkpath
); }
195 DECLARE_DYNAMIC_CLASS(wxDirButton
)
198 #undef FILEDIRBTN_OVERRIDES
200 #endif // _WX_GTK_FILEPICKER_H_