]> git.saurik.com Git - wxWidgets.git/commitdiff
forward SetFocus() to the directory tree (replaces patch 1831210)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 Nov 2007 15:12:13 +0000 (15:12 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 Nov 2007 15:12:13 +0000 (15:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/dirctrlg.h
src/generic/dirctrlg.cpp

index 452db329f18e6ec6697127dbf0d8ebecf4486d8b..00eef8c991b3c38700ec41f1d81719a59f58a2d8 100644 (file)
@@ -166,6 +166,10 @@ public:
     // Collapse the entire tree
     virtual void CollapseTree();
 
+
+    // overridden base class methods
+    virtual void SetFocus();
+
 protected:
     virtual void ExpandRoot();
     virtual void ExpandDir(wxTreeItemId parentId);
index 0164ddfc7b6b76e6997e6fb33dc6e204b703570e..5e35d0ff4c75ecbedf8f35c5b72ce0690b65049f 100644 (file)
@@ -664,6 +664,13 @@ void wxGenericDirCtrl::SetupSections()
         AddSection(paths[n], names[n], icons[n]);
 }
 
+void wxGenericDirCtrl::SetFocus()
+{
+    // we don't need focus ourselves, give it to the tree so that the user
+    // could navigate it
+    m_treeCtrl->SetFocus();
+}
+
 void wxGenericDirCtrl::OnBeginEditItem(wxTreeEvent &event)
 {
     // don't rename the main entry "Sections"