hidden root works in wxGenericDirCtrl again
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -157,8 +157,12 @@ public:
|
|||||||
// Resize the components of the control
|
// Resize the components of the control
|
||||||
void DoResize();
|
void DoResize();
|
||||||
|
|
||||||
|
// Collapse & expand the tree, thus re-creating it from scratch:
|
||||||
|
void ReCreateTree();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void ExpandDir(wxTreeItemId parentId);
|
void ExpandDir(wxTreeItemId parentId);
|
||||||
|
void CollapseDir(wxTreeItemId parentId);
|
||||||
void AddSection(const wxString& path, const wxString& name, int imageId = 0);
|
void AddSection(const wxString& path, const wxString& name, int imageId = 0);
|
||||||
//void FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames);
|
//void FindChildFiles(wxTreeItemId id, int dirFlags, wxArrayString& filenames);
|
||||||
|
|
||||||
|
@@ -502,18 +502,13 @@ bool wxGenericDirCtrl::Create(wxWindow *parent,
|
|||||||
|
|
||||||
Init();
|
Init();
|
||||||
|
|
||||||
long treeStyle = wxTR_HAS_BUTTONS;
|
long treeStyle = wxTR_HAS_BUTTONS | wxTR_HIDE_ROOT;
|
||||||
|
|
||||||
#ifdef __WXMSW__
|
#ifdef __WXMSW__
|
||||||
if (style & wxDIRCTRL_EDITABLE)
|
if (style & wxDIRCTRL_EDITABLE)
|
||||||
treeStyle |= wxTR_EDIT_LABELS;
|
treeStyle |= wxTR_EDIT_LABELS;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __WXMSW__
|
|
||||||
// FIXME, doesn't work for some reason
|
|
||||||
treeStyle |= wxTR_HIDE_ROOT;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if ((style & wxDIRCTRL_3D_INTERNAL) == 0)
|
if ((style & wxDIRCTRL_3D_INTERNAL) == 0)
|
||||||
treeStyle |= wxNO_BORDER;
|
treeStyle |= wxNO_BORDER;
|
||||||
|
|
||||||
@@ -558,7 +553,7 @@ bool wxGenericDirCtrl::Create(wxWindow *parent,
|
|||||||
|
|
||||||
m_rootId = m_treeCtrl->AddRoot( rootName, 3, -1, rootData);
|
m_rootId = m_treeCtrl->AddRoot( rootName, 3, -1, rootData);
|
||||||
m_treeCtrl->SetItemHasChildren(m_rootId);
|
m_treeCtrl->SetItemHasChildren(m_rootId);
|
||||||
m_treeCtrl->Expand(m_rootId); // automatically expand first level
|
ExpandDir(m_rootId); // automatically expand first level
|
||||||
|
|
||||||
// Expand and select the default path
|
// Expand and select the default path
|
||||||
if (!m_defaultPath.IsEmpty())
|
if (!m_defaultPath.IsEmpty())
|
||||||
@@ -588,8 +583,7 @@ void wxGenericDirCtrl::ShowHidden( bool show )
|
|||||||
m_showHidden = show;
|
m_showHidden = show;
|
||||||
|
|
||||||
wxString path = GetPath();
|
wxString path = GetPath();
|
||||||
m_treeCtrl->Collapse(m_treeCtrl->GetRootItem());
|
ReCreateTree();
|
||||||
m_treeCtrl->Expand(m_treeCtrl->GetRootItem());
|
|
||||||
SetPath(path);
|
SetPath(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -756,9 +750,14 @@ void wxGenericDirCtrl::OnExpandItem(wxTreeEvent &event)
|
|||||||
|
|
||||||
void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent &event )
|
void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent &event )
|
||||||
{
|
{
|
||||||
wxTreeItemId child, parent = event.GetItem();
|
CollapseDir(event.GetItem());
|
||||||
|
}
|
||||||
|
|
||||||
wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(event.GetItem());
|
void wxGenericDirCtrl::CollapseDir(wxTreeItemId parentId)
|
||||||
|
{
|
||||||
|
wxTreeItemId child;
|
||||||
|
|
||||||
|
wxDirItemData *data = (wxDirItemData *) m_treeCtrl->GetItemData(parentId);
|
||||||
if (!data->m_isExpanded)
|
if (!data->m_isExpanded)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -766,13 +765,13 @@ void wxGenericDirCtrl::OnCollapseItem(wxTreeEvent &event )
|
|||||||
long cookie;
|
long cookie;
|
||||||
/* Workaround because DeleteChildren has disapeared (why?) and
|
/* Workaround because DeleteChildren has disapeared (why?) and
|
||||||
* CollapseAndReset doesn't work as advertised (deletes parent too) */
|
* CollapseAndReset doesn't work as advertised (deletes parent too) */
|
||||||
child = m_treeCtrl->GetFirstChild(parent, cookie);
|
child = m_treeCtrl->GetFirstChild(parentId, cookie);
|
||||||
while (child.IsOk())
|
while (child.IsOk())
|
||||||
{
|
{
|
||||||
m_treeCtrl->Delete(child);
|
m_treeCtrl->Delete(child);
|
||||||
/* Not GetNextChild below, because the cookie mechanism can't
|
/* Not GetNextChild below, because the cookie mechanism can't
|
||||||
* handle disappearing children! */
|
* handle disappearing children! */
|
||||||
child = m_treeCtrl->GetFirstChild(parent, cookie);
|
child = m_treeCtrl->GetFirstChild(parentId, cookie);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -910,6 +909,12 @@ void wxGenericDirCtrl::ExpandDir(wxTreeItemId parentId)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wxGenericDirCtrl::ReCreateTree()
|
||||||
|
{
|
||||||
|
CollapseDir(m_treeCtrl->GetRootItem());
|
||||||
|
ExpandDir(m_treeCtrl->GetRootItem());
|
||||||
|
}
|
||||||
|
|
||||||
// Find the child that matches the first part of 'path'.
|
// Find the child that matches the first part of 'path'.
|
||||||
// E.g. if a child path is "/usr" and 'path' is "/usr/include"
|
// E.g. if a child path is "/usr" and 'path' is "/usr/include"
|
||||||
// then the child for /usr is returned.
|
// then the child for /usr is returned.
|
||||||
@@ -1248,8 +1253,7 @@ void wxDirFilterListCtrl::OnSelFilter(wxCommandEvent& WXUNUSED(event))
|
|||||||
|
|
||||||
// If the filter has changed, the view is out of date, so
|
// If the filter has changed, the view is out of date, so
|
||||||
// collapse the tree.
|
// collapse the tree.
|
||||||
m_dirCtrl->GetTreeCtrl()->Collapse(m_dirCtrl->GetRootId());
|
m_dirCtrl->ReCreateTree();
|
||||||
m_dirCtrl->GetTreeCtrl()->Expand(m_dirCtrl->GetRootId());
|
|
||||||
|
|
||||||
// Try to restore the selection, or at least the directory
|
// Try to restore the selection, or at least the directory
|
||||||
m_dirCtrl->ExpandPath(currentPath);
|
m_dirCtrl->ExpandPath(currentPath);
|
||||||
|
Reference in New Issue
Block a user