X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3764716de63a84126574562dc0f6bc23724b532b..1e8dba5e29eba7ac5e53fa4035e65ceeaeed3884:/wxPython/demo/Main.py diff --git a/wxPython/demo/Main.py b/wxPython/demo/Main.py index c5632bff43..11ea138078 100644 --- a/wxPython/demo/Main.py +++ b/wxPython/demo/Main.py @@ -48,15 +48,25 @@ _treeList = [ # new stuff ('Recent Additions/Updates', [ 'AnalogClock', + 'AUI_DockingWindowMgr', + 'AUI_Notebook', 'CheckListCtrlMixin', + 'ComboTreeBox', + 'Pickers', + 'PseudoDC', 'RichTextCtrl', 'Treebook', 'Toolbook', - 'Pickers', + 'BitmapFromBuffer', + 'RawBitmapAccess', + 'DragScroller', +## 'AlphaDrawing', + 'DelayedResult', ]), # managed windows == things with a (optional) caption you can close ('Frames and Dialogs', [ + 'AUI_DockingWindowMgr', 'Dialog', 'Frame', 'MDIWindows', @@ -125,6 +135,7 @@ _treeList = [ ]), ('"Book" Controls', [ + 'AUI_Notebook', 'Choicebook', 'Listbook', 'Notebook', @@ -135,6 +146,7 @@ _treeList = [ ('Custom Controls', [ 'AnalogClock', 'ColourSelect', + 'ComboTreeBox', 'Editor', 'GenericButtons', 'GenericDirCtrl', @@ -204,6 +216,7 @@ _treeList = [ # ditto ('Process and Events', [ + 'DelayedResult', 'EventManager', 'KeyEvents', 'Process', @@ -222,7 +235,9 @@ _treeList = [ # Images ('Using Images', [ +## 'AlphaDrawing', 'ArtProvider', + 'BitmapFromBuffer', 'Cursor', 'DragImage', 'GIFAnimationCtrl', @@ -230,13 +245,16 @@ _treeList = [ 'ImageAlpha', 'ImageFromStream', 'Mask', + 'RawBitmapAccess', 'Throbber', ]), # Other stuff ('Miscellaneous', [ +## 'AlphaDrawing', 'ColourDB', ##'DialogUnits', # needs more explanations + 'DragScroller', 'DrawXXXList', 'FileHistory', 'FontEnumerator', @@ -246,6 +264,7 @@ _treeList = [ 'MouseGestures', 'OGL', 'PrintFramework', + 'PseudoDC', 'ShapedWindow', 'Sound', 'StandardPaths', @@ -1126,8 +1145,11 @@ class wxPythonDemo(wx.Frame): icon = images.getWXPdemoIcon() self.SetIcon(icon) - self.tbicon = DemoTaskBarIcon(self) - + try: + self.tbicon = DemoTaskBarIcon(self) + except: + self.tbicon = None + wx.CallAfter(self.ShowTip) self.otherWin = None @@ -1610,7 +1632,8 @@ class wxPythonDemo(wx.Frame): self.demoPage = None self.codePage = None self.mainmenu = None - self.tbicon.Destroy() + if self.tbicon is not None: + self.tbicon.Destroy() self.Destroy()