1 /////////////////////////////////////////////////////////////////////////////
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
11 // Copyright: (c) Robert Roebling, Harm van der Heijden, Julian Smart
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
15 #ifndef _WX_DIRCTRL_H_
16 #define _WX_DIRCTRL_H_
18 #if defined(__GNUG__) && !defined(__APPLE__)
19 #pragma interface "dirctrlg.h"
24 #include "wx/treectrl.h"
25 #include "wx/dialog.h"
26 #include "wx/dirdlg.h"
27 #include "wx/choice.h"
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 class WXDLLEXPORT wxTextCtrl
;
35 //-----------------------------------------------------------------------------
36 // Extra styles for wxGenericDirCtrl
37 //-----------------------------------------------------------------------------
41 // Only allow directory viewing/selection, no files
42 wxDIRCTRL_DIR_ONLY
= 0x0010,
43 // When setting the default path, select the first file in the directory
44 wxDIRCTRL_SELECT_FIRST
= 0x0020,
45 // Show the filter list
46 wxDIRCTRL_SHOW_FILTERS
= 0x0040,
47 // Use 3D borders on internal controls
48 wxDIRCTRL_3D_INTERNAL
= 0x0080,
50 wxDIRCTRL_EDIT_LABELS
= 0x0100
53 //-----------------------------------------------------------------------------
55 //-----------------------------------------------------------------------------
57 class WXDLLEXPORT wxDirItemData
: public wxTreeItemData
60 wxDirItemData(const wxString
& path
, const wxString
& name
, bool isDir
);
62 void SetNewDirName(const wxString
& path
);
64 bool HasSubDirs() const;
65 bool HasFiles(const wxString
& spec
= wxEmptyString
) const;
67 wxString m_path
, m_name
;
73 //-----------------------------------------------------------------------------
75 //-----------------------------------------------------------------------------
77 class WXDLLEXPORT wxDirFilterListCtrl
;
79 class WXDLLEXPORT wxGenericDirCtrl
: public wxControl
83 wxGenericDirCtrl(wxWindow
*parent
, const wxWindowID id
= -1,
84 const wxString
&dir
= wxDirDialogDefaultFolderStr
,
85 const wxPoint
& pos
= wxDefaultPosition
,
86 const wxSize
& size
= wxDefaultSize
,
87 long style
= wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
,
88 const wxString
& filter
= wxEmptyString
,
89 int defaultFilter
= 0,
90 const wxString
& name
= wxTreeCtrlNameStr
)
93 Create(parent
, id
, dir
, pos
, size
, style
, filter
, defaultFilter
, name
);
96 bool Create(wxWindow
*parent
, const wxWindowID id
= -1,
97 const wxString
&dir
= wxDirDialogDefaultFolderStr
,
98 const wxPoint
& pos
= wxDefaultPosition
,
99 const wxSize
& size
= wxDefaultSize
,
100 long style
= wxDIRCTRL_3D_INTERNAL
|wxSUNKEN_BORDER
,
101 const wxString
& filter
= wxEmptyString
,
102 int defaultFilter
= 0,
103 const wxString
& name
= wxTreeCtrlNameStr
);
107 virtual ~wxGenericDirCtrl();
109 void OnExpandItem(wxTreeEvent
&event
);
110 void OnCollapseItem(wxTreeEvent
&event
);
111 void OnBeginEditItem(wxTreeEvent
&event
);
112 void OnEndEditItem(wxTreeEvent
&event
);
113 void OnSize(wxSizeEvent
&event
);
115 // Try to expand as much of the given path as possible.
116 virtual bool ExpandPath(const wxString
& path
);
120 virtual inline wxString
GetDefaultPath() const { return m_defaultPath
; }
121 virtual void SetDefaultPath(const wxString
& path
) { m_defaultPath
= path
; }
123 // Get dir or filename
124 virtual wxString
GetPath() const;
126 // Get selected filename path only (else empty string).
127 // I.e. don't count a directory as a selection
128 virtual wxString
GetFilePath() const;
129 virtual void SetPath(const wxString
& path
);
131 virtual void ShowHidden( bool show
);
132 virtual bool GetShowHidden() { return m_showHidden
; }
134 virtual wxString
GetFilter() const { return m_filter
; }
135 virtual void SetFilter(const wxString
& filter
);
137 virtual int GetFilterIndex() const { return m_currentFilter
; }
138 virtual void SetFilterIndex(int n
);
140 virtual wxTreeItemId
GetRootId() { return m_rootId
; }
142 virtual wxTreeCtrl
* GetTreeCtrl() const { return m_treeCtrl
; }
143 virtual wxDirFilterListCtrl
* GetFilterListCtrl() const { return m_filterListCtrl
; }
146 virtual void SetupSections();
148 // Parse the filter into an array of filters and an array of descriptions
149 virtual int ParseFilter(const wxString
& filterStr
, wxArrayString
& filters
, wxArrayString
& descriptions
);
151 // Find the child that matches the first part of 'path'.
152 // E.g. if a child path is "/usr" and 'path' is "/usr/include"
153 // then the child for /usr is returned.
154 // If the path string has been used (we're at the leaf), done is set to TRUE
155 virtual wxTreeItemId
FindChild(wxTreeItemId parentId
, const wxString
& path
, bool& done
);
157 // Resize the components of the control
158 virtual void DoResize();
160 // Collapse & expand the tree, thus re-creating it from scratch:
161 virtual void ReCreateTree();
164 void ExpandDir(wxTreeItemId parentId
);
165 void CollapseDir(wxTreeItemId parentId
);
166 void AddSection(const wxString
& path
, const wxString
& name
, int imageId
= 0);
167 //void FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames);
169 // Extract description and actual filter from overall filter string
170 bool ExtractWildcard(const wxString
& filterStr
, int n
, wxString
& filter
, wxString
& description
);
174 wxTreeItemId m_rootId
;
175 wxImageList
* m_imageList
;
176 wxString m_defaultPath
; // Starting path
177 long m_styleEx
; // Extended style
178 wxString m_filter
; // Wildcards in same format as per wxFileDialog
179 int m_currentFilter
; // The current filter index
180 wxString m_currentFilterStr
; // Current filter string
181 wxTreeCtrl
* m_treeCtrl
;
182 wxDirFilterListCtrl
* m_filterListCtrl
;
185 DECLARE_EVENT_TABLE()
186 DECLARE_DYNAMIC_CLASS(wxGenericDirCtrl
)
187 DECLARE_NO_COPY_CLASS(wxGenericDirCtrl
)
190 //-----------------------------------------------------------------------------
191 // wxDirFilterListCtrl
192 //-----------------------------------------------------------------------------
194 class WXDLLEXPORT wxDirFilterListCtrl
: public wxChoice
197 wxDirFilterListCtrl() { Init(); }
198 wxDirFilterListCtrl(wxGenericDirCtrl
* parent
, const wxWindowID id
= -1,
199 const wxPoint
& pos
= wxDefaultPosition
,
200 const wxSize
& size
= wxDefaultSize
,
204 Create(parent
, id
, pos
, size
, style
);
207 bool Create(wxGenericDirCtrl
* parent
, const wxWindowID id
= -1,
208 const wxPoint
& pos
= wxDefaultPosition
,
209 const wxSize
& size
= wxDefaultSize
,
214 ~wxDirFilterListCtrl() {};
217 void FillFilterList(const wxString
& filter
, int defaultFilter
);
220 void OnSelFilter(wxCommandEvent
& event
);
223 wxGenericDirCtrl
* m_dirCtrl
;
225 DECLARE_EVENT_TABLE()
226 DECLARE_CLASS(wxDirFilterListCtrl
)
227 DECLARE_NO_COPY_CLASS(wxDirFilterListCtrl
)
230 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXPM__)
231 #define wxDirCtrl wxGenericDirCtrl
234 // Symbols for accessing individual controls
235 #define wxID_TREECTRL 7000
236 #define wxID_FILTERLISTCTRL 7001
238 #endif // wxUSE_DIRDLG