X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e91a9dfcc3589df1d3577bb8d4695f269405a52b..8e193f384f7b98daef459653ddb8485173fba8ba:/utils/wxPython/demo/Main.py diff --git a/utils/wxPython/demo/Main.py b/utils/wxPython/demo/Main.py index 92630666ee..56cc784729 100644 --- a/utils/wxPython/demo/Main.py +++ b/utils/wxPython/demo/Main.py @@ -17,13 +17,16 @@ from wxPython.wx import * #--------------------------------------------------------------------------- +_useSplitter = true +_useNestedSplitter = true _treeList = [ ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']), ('Miscellaneous Windows', ['wxGrid', 'wxSashWindow', 'wxScrolledWindow', 'wxSplitterWindow', - 'wxStatusBar', 'wxToolBar', 'wxNotebook']), + 'wxStatusBar', 'wxToolBar', 'wxNotebook', + 'wxHtmlWindow']), ('Common Dialogs', ['wxColourDialog', 'wxDirDialog', 'wxFileDialog', 'wxSingleChoiceDialog', 'wxTextEntryDialog', @@ -35,13 +38,14 @@ _treeList = [ 'wxTreeCtrl', 'wxSpinButton', 'wxStaticText', 'wxStaticBitmap', 'wxRadioBox', 'wxSlider']), - ('Window Layout', ['wxLayoutConstraints', 'Sizers']), + ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']), - ('Miscellaneous', ['wxTimer', 'wxGLCanvas', 'DialogUnits', 'wxImage', - 'PrintFramework', 'wxOGL']), + ('Miscellaneous', ['wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits', + 'wxImage', 'PrintFramework', 'wxOGL']), - ('wxPython Library', ['Sizers', 'Layoutf', 'wxScrolledMessageDialog', - 'wxMultipleChoiceDialog', 'wxPlotCanvas']), + ('wxPython Library', ['OldSizers', 'Layoutf', 'wxScrolledMessageDialog', + 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar', + 'PyShell']), ('Cool Contribs', ['pyTree', 'hangman', 'SlashDot', 'XMLtreeview']), @@ -51,8 +55,8 @@ _treeList = [ class wxPythonDemo(wxFrame): def __init__(self, parent, id, title): - wxFrame.__init__(self, parent, -1, title, - wxDefaultPosition, wxSize(700, 550)) + wxFrame.__init__(self, parent, -1, title, size = (725, 550)) + if wxPlatform == '__WXMSW__': self.icon = wxIcon('bitmaps/mondrian.ico', wxBITMAP_TYPE_ICO) self.SetIcon(self.icon) @@ -62,8 +66,24 @@ class wxPythonDemo(wxFrame): self.Centre(wxBOTH) self.CreateStatusBar(1, wxST_SIZEGRIP) - splitter = wxSplitterWindow(self, -1) - splitter2 = wxSplitterWindow(splitter, -1) + + if _useSplitter: + splitter = wxSplitterWindow(self, -1) + if _useNestedSplitter: + splitter2 = wxSplitterWindow(splitter, -1) + logParent = nbParent = splitter2 + else: + nbParent = splitter + logParent = wxFrame(self, -1, "wxPython Demo: log window", + (0,0), (500, 150)) + logParent.Show(true) + else: + nbParent = self + logParent = wxFrame(self, -1, "wxPython Demo: log window", + (0,0), (500, 150)) + logParent.Show(true) + + # Prevent TreeCtrl from displaying all items after destruction self.dying = false @@ -71,42 +91,56 @@ class wxPythonDemo(wxFrame): # Make a File menu self.mainmenu = wxMenuBar() menu = wxMenu() - mID = NewId() - menu.Append(mID, 'E&xit', 'Get the heck outta here!') - EVT_MENU(self, mID, self.OnFileExit) + exitID = wxNewId() + menu.Append(exitID, 'E&xit\tAlt-X', 'Get the heck outta here!') + EVT_MENU(self, exitID, self.OnFileExit) self.mainmenu.Append(menu, '&File') + # Make a Demo menu + menu = wxMenu() + for item in _treeList: + submenu = wxMenu() + for childItem in item[1]: + mID = wxNewId() + submenu.Append(mID, childItem) + EVT_MENU(self, mID, self.OnDemoMenu) + menu.AppendMenu(wxNewId(), item[0], submenu) + self.mainmenu.Append(menu, '&Demo') + + # Make a Help menu - mID = NewId() + helpID = wxNewId() menu = wxMenu() - menu.Append(mID, '&About', 'wxPython RULES!!!') - EVT_MENU(self, mID, self.OnHelpAbout) + menu.Append(helpID, '&About\tCtrl-H', 'wxPython RULES!!!') + EVT_MENU(self, helpID, self.OnHelpAbout) self.mainmenu.Append(menu, '&Help') self.SetMenuBar(self.mainmenu) - selectedDemo = None - selectedDemoName = "Nada" - if len(sys.argv) == 2: - selectedDemoName = sys.argv[1] + # set the menu accellerator table... + aTable = wxAcceleratorTable([(wxACCEL_ALT, ord('X'), exitID), + (wxACCEL_CTRL, ord('H'), helpID)]) + self.SetAcceleratorTable(aTable) - # Create a TreeCtrl - tID = NewId() - self.tree = wxTreeCtrl(splitter, tID) - root = self.tree.AddRoot("Overview") - for item in _treeList: - child = self.tree.AppendItem(root, item[0]) - for childItem in item[1]: - theDemo = self.tree.AppendItem(child, childItem) - if childItem == selectedDemoName: - selectedDemo = theDemo - self.tree.Expand(root) - EVT_TREE_ITEM_EXPANDED (self.tree, tID, self.OnItemExpanded) - EVT_TREE_ITEM_COLLAPSED (self.tree, tID, self.OnItemCollapsed) - EVT_TREE_SEL_CHANGED (self.tree, tID, self.OnSelChanged) + # Create a TreeCtrl + if _useSplitter: + tID = wxNewId() + self.treeMap = {} + self.tree = wxTreeCtrl(splitter, tID) + root = self.tree.AddRoot("Overview") + for item in _treeList: + child = self.tree.AppendItem(root, item[0]) + for childItem in item[1]: + theDemo = self.tree.AppendItem(child, childItem) + self.treeMap[childItem] = theDemo + + self.tree.Expand(root) + EVT_TREE_ITEM_EXPANDED (self.tree, tID, self.OnItemExpanded) + EVT_TREE_ITEM_COLLAPSED (self.tree, tID, self.OnItemCollapsed) + EVT_TREE_SEL_CHANGED (self.tree, tID, self.OnSelChanged) # Create a Notebook - self.nb = wxNotebook(splitter2, -1) + self.nb = wxNotebook(nbParent, -1) # Set up a TextCtrl on the Overview Notebook page self.ovr = wxTextCtrl(self.nb, -1, style = wxTE_MULTILINE|wxTE_READONLY) @@ -121,30 +155,44 @@ class wxPythonDemo(wxFrame): # Set up a log on the View Log Notebook page - self.log = wxTextCtrl(splitter2, -1, + self.log = wxTextCtrl(logParent, -1, style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL) (w, self.charHeight) = self.log.GetTextExtent('X') - #self.WriteText('wxPython Demo Log:\n') + self.WriteText('wxPython Demo Log:\n') # add the windows to the splitter and split it. - splitter.SplitVertically(self.tree, splitter2) - splitter.SetSashPosition(180, true) - splitter.SetMinimumPaneSize(20) + if _useSplitter: + if _useNestedSplitter: + splitter2.SplitHorizontally(self.nb, self.log) + splitter2.SetSashPosition(360, true) + splitter2.SetMinimumPaneSize(20) + + splitter.SplitVertically(self.tree, splitter2) + else: + splitter.SplitVertically(self.tree, self.nb) + + splitter.SetSashPosition(180, true) + splitter.SetMinimumPaneSize(20) - splitter2.SplitHorizontally(self.nb, self.log) - splitter2.SetSashPosition(360, true) - splitter2.SetMinimumPaneSize(20) # make our log window be stdout #sys.stdout = self # select initial items self.nb.SetSelection(0) - self.tree.SelectItem(root) - if selectedDemo: - self.tree.SelectItem(selectedDemo) - self.tree.EnsureVisible(selectedDemo) + if _useSplitter: + self.tree.SelectItem(root) + + if len(sys.argv) == 2: + try: + selectedDemo = self.treeMap[sys.argv[1]] + except: + selectedDemo = None + if selectedDemo and _useSplitter: + self.tree.SelectItem(selectedDemo) + self.tree.EnsureVisible(selectedDemo) + #--------------------------------------------- def WriteText(self, text): @@ -152,8 +200,9 @@ class wxPythonDemo(wxFrame): w, h = self.log.GetClientSizeTuple() numLines = h/self.charHeight x, y = self.log.PositionToXY(self.log.GetLastPosition()) - self.log.ShowPosition(self.log.XYToPosition(x, y-numLines)) - ##self.log.ShowPosition(self.log.GetLastPosition()) + if y > numLines: + self.log.ShowPosition(self.log.XYToPosition(x, y-numLines)) + ##self.log.ShowPosition(self.log.GetLastPosition()) self.log.SetInsertionPointEnd() def write(self, txt): @@ -174,20 +223,22 @@ class wxPythonDemo(wxFrame): if self.dying: return + item = event.GetItem() + itemText = self.tree.GetItemText(item) + self.RunDemo(itemText) + + + #--------------------------------------------- + def RunDemo(self, itemText): if self.nb.GetPageCount() == 3: if self.nb.GetSelection() == 2: self.nb.SetSelection(0) self.nb.DeletePage(2) - item = event.GetItem() - itemText = self.tree.GetItemText(item) - if itemText == 'Overview': self.GetDemoFile('Main.py') self.SetOverview('Overview', overview) - #self.nb.ResizeChildren(); self.nb.Refresh(); - #wxYield() self.window = None else: @@ -203,8 +254,11 @@ class wxPythonDemo(wxFrame): self.window = module.runTest(self, self.nb, self) if self.window: self.nb.AddPage(self.window, 'Demo') + #self.nb.ResizeChildren() self.nb.SetSelection(2) - self.nb.ResizeChildren(); + self.nb.ResizeChildren() + #if self.window.GetAutoLayout(): + # self.window.Layout() else: self.ovr.Clear() @@ -212,6 +266,7 @@ class wxPythonDemo(wxFrame): self.window = None + #--------------------------------------------- # Get the Demo files def GetDemoFile(self, filename): @@ -242,13 +297,15 @@ class wxPythonDemo(wxFrame): def OnHelpAbout(self, event): - about = wxMessageDialog(self, - "wxPython is a Python extension module that\n" - "encapsulates the wxWindows GUI classes.\n\n" - "This demo shows off some of the capabilities\n" - "of wxPython.\n\n" - " Developed by Robin Dunn", - "About wxPython", wxOK) + #about = wxMessageDialog(self, + # "wxPython is a Python extension module that\n" + # "encapsulates the wxWindows GUI classes.\n\n" + # "This demo shows off some of the capabilities\n" + # "of wxPython.\n\n" + # " Developed by Robin Dunn", + # "About wxPython", wxOK) + from About import MyAboutBox + about = MyAboutBox(self) about.ShowModal() about.Destroy() @@ -257,6 +314,7 @@ class wxPythonDemo(wxFrame): def OnCloseWindow(self, event): self.dying = true self.window = None + self.mainmenu = None self.Destroy() #--------------------------------------------- @@ -266,6 +324,18 @@ class wxPythonDemo(wxFrame): self.window = self.otherWin self.otherWin = None + #--------------------------------------------- + def OnDemoMenu(self, event): + if _useSplitter: + try: + selectedDemo = self.treeMap[self.mainmenu.GetLabel(event.GetId())] + except: + selectedDemo = None + if selectedDemo: + self.tree.SelectItem(selectedDemo) + self.tree.EnsureVisible(selectedDemo) + else: + self.RunDemo(self.mainmenu.GetLabel(event.GetId())) #--------------------------------------------------------------------------- #---------------------------------------------------------------------------