From 742c06e8aa5165afc2a1de5bd57ab7aec2cc5b7d Mon Sep 17 00:00:00 2001 From: "Patrick K. O'Brien" Date: Tue, 6 May 2003 19:42:09 +0000 Subject: [PATCH] Added DirFilterListCtrl class. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/py/wxd/Controls.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/wxPython/wxPython/py/wxd/Controls.py b/wxPython/wxPython/py/wxd/Controls.py index f2870fa5c2..0ae01ea9ec 100644 --- a/wxPython/wxPython/py/wxd/Controls.py +++ b/wxPython/wxPython/py/wxd/Controls.py @@ -503,6 +503,19 @@ class GenericDirCtrl(Control): pass +class DirFilterListCtrl(Choice): + """""" + + def __init__(self, parent, id=-1, pos=wx.DefaultPosition, + size=wx.DefaultSize, style=0): + """""" + pass + + def FillFilterList(filter, defaultFilter): + """""" + pass + + class ListBox(ControlWithItems): """"""