]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/dirctrlg.h
Remove wxLogWindow::OnFrameCreate() virtual method.
[wxWidgets.git] / include / wx / generic / dirctrlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/dirctrlg.h
3 // Purpose: wxGenericDirCtrl class
4 // Builds on wxDirCtrl class written by Robert Roebling for the
5 // wxFile application, modified by Harm van der Heijden.
6 // Further modified for Windows.
7 // Author: Robert Roebling, Harm van der Heijden, Julian Smart et al
8 // Modified by:
9 // Created: 21/3/2000
10 // RCS-ID: $Id$
11 // Copyright: (c) Robert Roebling, Harm van der Heijden, Julian Smart
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
14
15 #ifndef _WX_DIRCTRL_H_
16 #define _WX_DIRCTRL_H_
17
18 #if wxUSE_DIRDLG
19
20 #include "wx/treectrl.h"
21 #include "wx/dialog.h"
22 #include "wx/dirdlg.h"
23 #include "wx/choice.h"
24
25 //-----------------------------------------------------------------------------
26 // classes
27 //-----------------------------------------------------------------------------
28
29 class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
30 class WXDLLIMPEXP_FWD_BASE wxHashTable;
31
32 //-----------------------------------------------------------------------------
33 // Extra styles for wxGenericDirCtrl
34 //-----------------------------------------------------------------------------
35
36 enum
37 {
38 // Only allow directory viewing/selection, no files
39 wxDIRCTRL_DIR_ONLY = 0x0010,
40 // When setting the default path, select the first file in the directory
41 wxDIRCTRL_SELECT_FIRST = 0x0020,
42 // Show the filter list
43 wxDIRCTRL_SHOW_FILTERS = 0x0040,
44 // Use 3D borders on internal controls
45 wxDIRCTRL_3D_INTERNAL = 0x0080,
46 // Editable labels
47 wxDIRCTRL_EDIT_LABELS = 0x0100,
48 // Allow multiple selection
49 wxDIRCTRL_MULTIPLE = 0x0200
50 };
51
52 //-----------------------------------------------------------------------------
53 // wxDirItemData
54 //-----------------------------------------------------------------------------
55
56 class WXDLLIMPEXP_CORE wxDirItemData : public wxTreeItemData
57 {
58 public:
59 wxDirItemData(const wxString& path, const wxString& name, bool isDir);
60 virtual ~wxDirItemData(){}
61 void SetNewDirName(const wxString& path);
62
63 bool HasSubDirs() const;
64 bool HasFiles(const wxString& spec = wxEmptyString) const;
65
66 wxString m_path, m_name;
67 bool m_isHidden;
68 bool m_isExpanded;
69 bool m_isDir;
70 };
71
72 //-----------------------------------------------------------------------------
73 // wxDirCtrl
74 //-----------------------------------------------------------------------------
75
76 class WXDLLIMPEXP_FWD_CORE wxDirFilterListCtrl;
77
78 class WXDLLIMPEXP_CORE wxGenericDirCtrl: public wxControl
79 {
80 public:
81 wxGenericDirCtrl();
82 wxGenericDirCtrl(wxWindow *parent, const wxWindowID id = wxID_ANY,
83 const wxString &dir = wxDirDialogDefaultFolderStr,
84 const wxPoint& pos = wxDefaultPosition,
85 const wxSize& size = wxDefaultSize,
86 long style = wxDIRCTRL_3D_INTERNAL,
87 const wxString& filter = wxEmptyString,
88 int defaultFilter = 0,
89 const wxString& name = wxTreeCtrlNameStr )
90 {
91 Init();
92 Create(parent, id, dir, pos, size, style, filter, defaultFilter, name);
93 }
94
95 bool Create(wxWindow *parent, const wxWindowID id = wxID_ANY,
96 const wxString &dir = wxDirDialogDefaultFolderStr,
97 const wxPoint& pos = wxDefaultPosition,
98 const wxSize& size = wxDefaultSize,
99 long style = wxDIRCTRL_3D_INTERNAL,
100 const wxString& filter = wxEmptyString,
101 int defaultFilter = 0,
102 const wxString& name = wxTreeCtrlNameStr );
103
104 virtual void Init();
105
106 virtual ~wxGenericDirCtrl();
107
108 void OnExpandItem(wxTreeEvent &event );
109 void OnCollapseItem(wxTreeEvent &event );
110 void OnBeginEditItem(wxTreeEvent &event );
111 void OnEndEditItem(wxTreeEvent &event );
112 void OnTreeSelChange(wxTreeEvent &event);
113 void OnSize(wxSizeEvent &event );
114
115 // Try to expand as much of the given path as possible.
116 virtual bool ExpandPath(const wxString& path);
117 // collapse the path
118 virtual bool CollapsePath(const wxString& path);
119
120 // Accessors
121
122 virtual inline wxString GetDefaultPath() const { return m_defaultPath; }
123 virtual void SetDefaultPath(const wxString& path) { m_defaultPath = path; }
124
125 // Get dir or filename
126 virtual wxString GetPath() const;
127 virtual void GetPaths(wxArrayString& paths) const;
128
129 // Get selected filename path only (else empty string).
130 // I.e. don't count a directory as a selection
131 virtual wxString GetFilePath() const;
132 virtual void GetFilePaths(wxArrayString& paths) const;
133 virtual void SetPath(const wxString& path);
134
135 virtual void SelectPath(const wxString& path, bool select = true);
136 virtual void SelectPaths(const wxArrayString& paths);
137
138 virtual void ShowHidden( bool show );
139 virtual bool GetShowHidden() { return m_showHidden; }
140
141 virtual wxString GetFilter() const { return m_filter; }
142 virtual void SetFilter(const wxString& filter);
143
144 virtual int GetFilterIndex() const { return m_currentFilter; }
145 virtual void SetFilterIndex(int n);
146
147 virtual wxTreeItemId GetRootId() { return m_rootId; }
148
149 virtual wxTreeCtrl* GetTreeCtrl() const { return m_treeCtrl; }
150 virtual wxDirFilterListCtrl* GetFilterListCtrl() const { return m_filterListCtrl; }
151
152 virtual void UnselectAll();
153
154 // Helper
155 virtual void SetupSections();
156
157 // Find the child that matches the first part of 'path'.
158 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
159 // then the child for /usr is returned.
160 // If the path string has been used (we're at the leaf), done is set to true
161 virtual wxTreeItemId FindChild(wxTreeItemId parentId, const wxString& path, bool& done);
162
163 wxString GetPath(wxTreeItemId itemId) const;
164
165 // Resize the components of the control
166 virtual void DoResize();
167
168 // Collapse & expand the tree, thus re-creating it from scratch:
169 virtual void ReCreateTree();
170
171 // Collapse the entire tree
172 virtual void CollapseTree();
173
174 // overridden base class methods
175 virtual void SetFocus();
176
177 protected:
178 virtual void ExpandRoot();
179 virtual void ExpandDir(wxTreeItemId parentId);
180 virtual void CollapseDir(wxTreeItemId parentId);
181 virtual const wxTreeItemId AddSection(const wxString& path, const wxString& name, int imageId = 0);
182 virtual wxTreeItemId AppendItem (const wxTreeItemId & parent,
183 const wxString & text,
184 int image = -1, int selectedImage = -1,
185 wxTreeItemData * data = NULL);
186 //void FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames);
187 virtual wxTreeCtrl* CreateTreeCtrl(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long treeStyle);
188
189 // Extract description and actual filter from overall filter string
190 bool ExtractWildcard(const wxString& filterStr, int n, wxString& filter, wxString& description);
191
192 private:
193 void PopulateNode(wxTreeItemId node);
194 wxDirItemData* GetItemData(wxTreeItemId itemId);
195
196 bool m_showHidden;
197 wxTreeItemId m_rootId;
198 wxString m_defaultPath; // Starting path
199 long m_styleEx; // Extended style
200 wxString m_filter; // Wildcards in same format as per wxFileDialog
201 int m_currentFilter; // The current filter index
202 wxString m_currentFilterStr; // Current filter string
203 wxTreeCtrl* m_treeCtrl;
204 wxDirFilterListCtrl* m_filterListCtrl;
205
206 private:
207 DECLARE_EVENT_TABLE()
208 DECLARE_DYNAMIC_CLASS(wxGenericDirCtrl)
209 wxDECLARE_NO_COPY_CLASS(wxGenericDirCtrl);
210 };
211
212 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_DIRCTRL_CHANGED, wxTreeEvent );
213
214 #define wx__DECLARE_DIRCTRL_EVT(evt, id, fn) \
215 wx__DECLARE_EVT1(wxEVT_COMMAND_DIRCTRL_ ## evt, id, wxTreeEventHandler(fn))
216
217 #define EVT_DIRCTRL_CHANGED(id, fn) wx__DECLARE_DIRCTRL_EVT(CHANGED, id, fn)
218
219 //-----------------------------------------------------------------------------
220 // wxDirFilterListCtrl
221 //-----------------------------------------------------------------------------
222
223 class WXDLLIMPEXP_CORE wxDirFilterListCtrl: public wxChoice
224 {
225 public:
226 wxDirFilterListCtrl() { Init(); }
227 wxDirFilterListCtrl(wxGenericDirCtrl* parent, const wxWindowID id = wxID_ANY,
228 const wxPoint& pos = wxDefaultPosition,
229 const wxSize& size = wxDefaultSize,
230 long style = 0)
231 {
232 Init();
233 Create(parent, id, pos, size, style);
234 }
235
236 bool Create(wxGenericDirCtrl* parent, const wxWindowID id = wxID_ANY,
237 const wxPoint& pos = wxDefaultPosition,
238 const wxSize& size = wxDefaultSize,
239 long style = 0);
240
241 void Init();
242
243 virtual ~wxDirFilterListCtrl() {}
244
245 //// Operations
246 void FillFilterList(const wxString& filter, int defaultFilter);
247
248 //// Events
249 void OnSelFilter(wxCommandEvent& event);
250
251 protected:
252 wxGenericDirCtrl* m_dirCtrl;
253
254 DECLARE_EVENT_TABLE()
255 DECLARE_CLASS(wxDirFilterListCtrl)
256 wxDECLARE_NO_COPY_CLASS(wxDirFilterListCtrl);
257 };
258
259 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXPM__)
260 #define wxDirCtrl wxGenericDirCtrl
261 #endif
262
263 // Symbols for accessing individual controls
264 #define wxID_TREECTRL 7000
265 #define wxID_FILTERLISTCTRL 7001
266
267 #endif // wxUSE_DIRDLG
268
269 //-------------------------------------------------------------------------
270 // wxFileIconsTable - use wxTheFileIconsTable which is created as necessary
271 //-------------------------------------------------------------------------
272
273 #if wxUSE_DIRDLG || wxUSE_FILEDLG || wxUSE_FILECTRL
274
275 class WXDLLIMPEXP_FWD_CORE wxImageList;
276
277 class WXDLLIMPEXP_CORE wxFileIconsTable
278 {
279 public:
280 wxFileIconsTable();
281 ~wxFileIconsTable();
282
283 enum iconId_Type
284 {
285 folder,
286 folder_open,
287 computer,
288 drive,
289 cdrom,
290 floppy,
291 removeable,
292 file,
293 executable
294 };
295
296 int GetIconID(const wxString& extension, const wxString& mime = wxEmptyString);
297 wxImageList *GetSmallImageList();
298
299 protected:
300 void Create(); // create on first use
301
302 wxImageList *m_smallImageList;
303 wxHashTable *m_HashTable;
304 };
305
306 // The global fileicons table
307 extern WXDLLIMPEXP_DATA_CORE(wxFileIconsTable *) wxTheFileIconsTable;
308
309 #endif // wxUSE_DIRDLG || wxUSE_FILEDLG || wxUSE_FILECTRL
310
311 #endif
312 // _WX_DIRCTRLG_H_