Remove the not-recent recent additions

This commit is contained in:
Robin Dunn
2017-09-08 14:30:38 -07:00
parent 32f7fd169d
commit 06bdddb7e3
2 changed files with 1 additions and 27 deletions

View File

@@ -73,26 +73,7 @@ def GetRecentAdditions():
into the Recent Additions tree item in the wxPython demo.
"""
# For the moment, we add all the widgets in AGW as
# Recent Additions
if wx.VERSION < (2, 9):
recentAdditions = ['AdvancedSplash', 'AquaButton', 'AUI', 'BalloonTip',
'ButtonPanel', 'CubeColourDialog', 'CustomTreeCtrl',
'FlatMenu', 'FlatNotebook', 'FloatSpin',
'FoldPanelBar', 'FourWaySplitter', 'GenericMessageDialog',
'GradientButton', 'HyperLinkCtrl', 'HyperTreeList',
'AGWInfoBar', 'KnobCtrl', 'LabelBook', 'MultiDirDialog',
'PeakMeter', 'PersistentControls', 'PieCtrl', 'PyBusyInfo',
'PyCollapsiblePane', 'PyProgress', 'RibbonBar', 'RulerCtrl',
'ShapedButton', 'ShortcutEditor', 'SpeedMeter', 'SuperToolTip',
'ThumbnailCtrl', 'ToasterBox', 'UltimateListCtrl',
'XLSGrid', 'ZoomBar']
elif wx.VERSION < (2,9,2):
recentAdditions = ['AUI', 'AGWInfoBar', 'PersistentControls', 'PyBusyInfo', 'PyGauge',
'RibbonBar', 'ShortcutEditor', 'UltimateListCtrl',
'XLSGrid', 'ZoomBar']
else:
recentAdditions = ['AGWInfoBar', 'PersistentControls', 'ShortcutEditor', 'XLSGrid']
recentAdditions = []
# Return the Recent Additions for AGW
return recentAdditions

View File

@@ -38,13 +38,6 @@ _demoPngs = ["overview", "recent", "frame", "dialog", "moredialog", "core",
_treeList = [
# new stuff
('Recent Additions/Updates', [
'FileCtrl',
'Overlay',
'RearrangeDialog',
'RichMessageDialog',
'ToolTip',
'TimePickerCtrl',
'BannerWindow',
'Simplebook',
]),