]>
Commit | Line | Data |
---|---|---|
ec376c8f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/gtk/filedirpicker.h | |
3 | // Purpose: wxFileButton, wxDirButton header | |
4 | // Author: Francesco Montorsi | |
5 | // Modified by: | |
6 | // Created: 14/4/2006 | |
7 | // Copyright: (c) Francesco Montorsi | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows Licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_GTK_FILEPICKER_H_ | |
13 | #define _WX_GTK_FILEPICKER_H_ | |
14 | ||
15 | // since GtkColorButton is available only for GTK+ >= 2.4, | |
16 | // we need to use generic versions if we detect (at runtime) | |
17 | // that GTK+ < 2.4 | |
18 | #include "wx/generic/filepickerg.h" | |
19 | ||
556151f5 MW |
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 | //----------------------------------------------------------------------------- | |
25 | ||
1029169f VS |
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 */ \ | |
31 | /* does. */ \ | |
32 | virtual wxWindow *GetDialogParent() \ | |
33 | { \ | |
34 | return NULL; \ | |
35 | } \ | |
36 | \ | |
37 | virtual bool Destroy() \ | |
38 | { \ | |
dee059c4 JS |
39 | if (m_dialog) \ |
40 | m_dialog->Destroy(); \ | |
1029169f | 41 | return wxButton::Destroy(); \ |
64321998 RR |
42 | } \ |
43 | \ | |
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 */ \ | |
bc48a5d7 | 51 | protected: \ |
e4161a2a VZ |
52 | virtual GdkWindow * \ |
53 | GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const \ | |
64321998 | 54 | { return NULL; } |
556151f5 MW |
55 | |
56 | ||
ec376c8f VZ |
57 | //----------------------------------------------------------------------------- |
58 | // wxFileButton | |
59 | //----------------------------------------------------------------------------- | |
60 | ||
61 | class WXDLLIMPEXP_CORE wxFileButton : public wxGenericFileButton | |
62 | { | |
63 | public: | |
459128ac | 64 | wxFileButton() { Init(); } |
ec376c8f VZ |
65 | wxFileButton(wxWindow *parent, |
66 | wxWindowID id, | |
67 | const wxString& label = wxFilePickerWidgetLabel, | |
68 | const wxString &path = wxEmptyString, | |
69 | const wxString &message = wxFileSelectorPromptStr, | |
70 | const wxString &wildcard = wxFileSelectorDefaultWildcardStr, | |
71 | const wxPoint& pos = wxDefaultPosition, | |
72 | const wxSize& size = wxDefaultSize, | |
73 | long style = wxFILEBTN_DEFAULT_STYLE, | |
74 | const wxValidator& validator = wxDefaultValidator, | |
75 | const wxString& name = wxFilePickerWidgetNameStr) | |
76 | { | |
459128ac VZ |
77 | Init(); |
78 | m_pickerStyle = style; | |
ec376c8f VZ |
79 | Create(parent, id, label, path, message, wildcard, |
80 | pos, size, style, validator, name); | |
81 | } | |
82 | ||
556151f5 | 83 | virtual ~wxFileButton(); |
ec376c8f VZ |
84 | |
85 | ||
86 | public: // overrides | |
87 | ||
88 | bool Create(wxWindow *parent, | |
89 | wxWindowID id, | |
90 | const wxString& label = wxFilePickerWidgetLabel, | |
91 | const wxString &path = wxEmptyString, | |
92 | const wxString &message = wxFileSelectorPromptStr, | |
93 | const wxString &wildcard = wxFileSelectorDefaultWildcardStr, | |
94 | const wxPoint& pos = wxDefaultPosition, | |
95 | const wxSize& size = wxDefaultSize, | |
96 | long style = 0, | |
97 | const wxValidator& validator = wxDefaultValidator, | |
98 | const wxString& name = wxFilePickerWidgetNameStr); | |
99 | ||
100 | // event handler for the click | |
101 | void OnDialogOK(wxCommandEvent &); | |
102 | ||
58772e49 | 103 | virtual void SetPath(const wxString &str); |
75cb911c | 104 | virtual void SetInitialDirectory(const wxString& dir); |
58772e49 | 105 | |
556151f5 MW |
106 | // see macro defined above |
107 | FILEDIRBTN_OVERRIDES | |
108 | ||
109 | protected: | |
92153555 VZ |
110 | virtual bool GTKShouldConnectSizeRequest() const { return false; } |
111 | ||
556151f5 | 112 | wxDialog *m_dialog; |
ec376c8f | 113 | |
459128ac VZ |
114 | private: |
115 | // common part of all ctors | |
116 | void Init() { m_dialog = NULL; } | |
117 | ||
ec376c8f VZ |
118 | DECLARE_DYNAMIC_CLASS(wxFileButton) |
119 | }; | |
120 | ||
121 | ||
122 | //----------------------------------------------------------------------------- | |
123 | // wxDirButton | |
124 | //----------------------------------------------------------------------------- | |
125 | ||
126 | class WXDLLIMPEXP_CORE wxDirButton : public wxGenericDirButton | |
127 | { | |
128 | public: | |
58772e49 | 129 | wxDirButton() { Init(); } |
ec376c8f VZ |
130 | wxDirButton(wxWindow *parent, |
131 | wxWindowID id, | |
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) | |
140 | { | |
58772e49 VZ |
141 | Init(); |
142 | ||
459128ac VZ |
143 | m_pickerStyle = style; |
144 | ||
ec376c8f VZ |
145 | Create(parent, id, label, path, message, wxEmptyString, |
146 | pos, size, style, validator, name); | |
147 | } | |
148 | ||
149 | virtual ~wxDirButton(); | |
150 | ||
151 | ||
152 | public: // overrides | |
153 | ||
154 | bool Create(wxWindow *parent, | |
155 | wxWindowID id, | |
156 | const wxString& label = wxFilePickerWidgetLabel, | |
157 | const wxString &path = wxEmptyString, | |
158 | const wxString &message = wxFileSelectorPromptStr, | |
159 | const wxString &wildcard = wxFileSelectorDefaultWildcardStr, | |
160 | const wxPoint& pos = wxDefaultPosition, | |
161 | const wxSize& size = wxDefaultSize, | |
162 | long style = 0, | |
163 | const wxValidator& validator = wxDefaultValidator, | |
164 | const wxString& name = wxFilePickerWidgetNameStr); | |
165 | ||
ec376c8f VZ |
166 | |
167 | // GtkFileChooserButton does not support GTK_FILE_CHOOSER_CREATE_FOLDER | |
168 | // thus we must ensure that the wxDD_DIR_MUST_EXIST style was given | |
169 | long GetDialogStyle() const | |
170 | { | |
171 | return (wxGenericDirButton::GetDialogStyle() | wxDD_DIR_MUST_EXIST); | |
172 | } | |
173 | ||
58772e49 | 174 | virtual void SetPath(const wxString &str); |
75cb911c | 175 | virtual void SetInitialDirectory(const wxString& dir); |
58772e49 | 176 | |
556151f5 MW |
177 | // see macro defined above |
178 | FILEDIRBTN_OVERRIDES | |
179 | ||
180 | protected: | |
58772e49 VZ |
181 | // common part of all ctors |
182 | void Init() | |
183 | { | |
184 | m_dialog = NULL; | |
185 | m_bIgnoreNextChange = false; | |
186 | } | |
187 | ||
556151f5 MW |
188 | wxDialog *m_dialog; |
189 | ||
58772e49 VZ |
190 | public: // used by the GTK callback only |
191 | ||
192 | bool m_bIgnoreNextChange; | |
193 | ||
21d96807 BP |
194 | void GTKUpdatePath(const char *gtkpath); |
195 | ||
ec376c8f VZ |
196 | private: |
197 | DECLARE_DYNAMIC_CLASS(wxDirButton) | |
198 | }; | |
199 | ||
556151f5 MW |
200 | #undef FILEDIRBTN_OVERRIDES |
201 | ||
ec376c8f VZ |
202 | #endif // _WX_GTK_FILEPICKER_H_ |
203 |