/////////////////////////////////////////////////////////////////////////////
-// Name: dirctrlg.h
+// Name: wx/generic/dirctrlg.h
// Purpose: wxGenericDirCtrl class
// Builds on wxDirCtrl class written by Robert Roebling for the
// wxFile application, modified by Harm van der Heijden.
wxDIRCTRL_DIR_ONLY = 0x0010,
// When setting the default path, select the first file in the directory
wxDIRCTRL_SELECT_FIRST = 0x0020,
-#if WXWIN_COMPATIBILITY_2_8
- // Unused, for compatibility only
+ // Show the filter list
wxDIRCTRL_SHOW_FILTERS = 0x0040,
-#endif // WXWIN_COMPATIBILITY_2_8
// Use 3D borders on internal controls
wxDIRCTRL_3D_INTERNAL = 0x0080,
// Editable labels
void OnCollapseItem(wxTreeEvent &event );
void OnBeginEditItem(wxTreeEvent &event );
void OnEndEditItem(wxTreeEvent &event );
+ void OnTreeSelChange(wxTreeEvent &event);
void OnSize(wxSizeEvent &event );
// Try to expand as much of the given path as possible.
// If the path string has been used (we're at the leaf), done is set to true
virtual wxTreeItemId FindChild(wxTreeItemId parentId, const wxString& path, bool& done);
+ wxString GetPath(wxTreeItemId itemId) const;
+
// Resize the components of the control
virtual void DoResize();
private:
void PopulateNode(wxTreeItemId node);
+ wxDirItemData* GetItemData(wxTreeItemId itemId);
bool m_showHidden;
wxTreeItemId m_rootId;
wxDECLARE_NO_COPY_CLASS(wxGenericDirCtrl);
};
+wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_DIRCTRL_CHANGED, wxTreeEvent );
+
+#define EVT_DIRCTRL_CHANGED(id, fn) \
+ wx__DECLARE_EVT1(wxEVT_DIRCTRL_CHANGED, id, wxTreeEventHandler(fn))
+
//-----------------------------------------------------------------------------
// wxDirFilterListCtrl
//-----------------------------------------------------------------------------
#endif // wxUSE_DIRDLG || wxUSE_FILEDLG || wxUSE_FILECTRL
+// old wxEVT_COMMAND_* constants
+#define wxEVT_COMMAND_DIRCTRL_CHANGED wxEVT_DIRCTRL_CHANGED
+
#endif
// _WX_DIRCTRLG_H_