X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9d8bd15f997f3595f6390fcf6a61bd0bf53eedb2..dcda1c71b1d08e0cb1e8d3a16abc36a3d85996cc:/utils/wxPython/demo/Main.py diff --git a/utils/wxPython/demo/Main.py b/utils/wxPython/demo/Main.py index 393b7a0bc5..8d132d3334 100644 --- a/utils/wxPython/demo/Main.py +++ b/utils/wxPython/demo/Main.py @@ -23,7 +23,7 @@ _useNestedSplitter = true _treeList = [ ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']), - ('Miscellaneous Windows', ['wxGrid', 'wxSashWindow', + ('Non-Managed Windows', ['wxGrid', 'wxSashWindow', 'wxScrolledWindow', 'wxSplitterWindow', 'wxStatusBar', 'wxToolBar', 'wxNotebook', 'wxHtmlWindow']), @@ -40,8 +40,9 @@ _treeList = [ ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']), - ('Miscellaneous', ['wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits', - 'wxImage', 'PrintFramework', 'wxOGL']), + ('Miscellaneous', [ 'DragAndDrop', 'CustomDragAndDrop', 'FontEnumerator', + 'wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits', + 'wxImage', 'PrintFramework', 'wxOGL', 'PythonEvents']), ('wxPython Library', ['OldSizers', 'Layoutf', 'wxScrolledMessageDialog', 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar', @@ -194,6 +195,9 @@ class wxPythonDemo(wxFrame): self.tree.EnsureVisible(selectedDemo) + self.WriteText('window handle: %s\n' % self.GetHandle()) + + #--------------------------------------------- def WriteText(self, text): self.log.WriteText(text)