X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/demo/Choicebook.py diff --git a/wxPython/demo/Choicebook.py b/wxPython/demo/Choicebook.py deleted file mode 100644 index 4b92842e82..0000000000 --- a/wxPython/demo/Choicebook.py +++ /dev/null @@ -1,79 +0,0 @@ - -import wx - -#---------------------------------------------------------------------------- - -pageTexts = [ "Yet", - "Another", - "Way", - "To", - "Select", - "Pages" - ] - - -class TestCB(wx.Choicebook): - def __init__(self, parent, id, log): - wx.Choicebook.__init__(self, parent, id) - self.log = log - - # Now make a bunch of panels for the choice book - count = 1 - for txt in pageTexts: - win = wx.Panel(self) - if count == 1: - st = wx.StaticText(win, -1, - "wx.Choicebook is yet another way to switch between 'page' windows", - (10, 10)) - else: - st = wx.StaticText(win, -1, "Page: %d" % count, (10,10)) - count += 1 - - self.AddPage(win, txt) - - self.Bind(wx.EVT_CHOICEBOOK_PAGE_CHANGED, self.OnPageChanged) - self.Bind(wx.EVT_CHOICEBOOK_PAGE_CHANGING, self.OnPageChanging) - - - def OnPageChanged(self, event): - old = event.GetOldSelection() - new = event.GetSelection() - sel = self.GetSelection() - self.log.write('OnPageChanged, old:%d, new:%d, sel:%d\n' % (old, new, sel)) - event.Skip() - - def OnPageChanging(self, event): - old = event.GetOldSelection() - new = event.GetSelection() - sel = self.GetSelection() - self.log.write('OnPageChanging, old:%d, new:%d, sel:%d\n' % (old, new, sel)) - event.Skip() - -#---------------------------------------------------------------------------- - -def runTest(frame, nb, log): - testWin = TestCB(nb, -1, log) - return testWin - -#---------------------------------------------------------------------------- - - -overview = """\ - -

wx.Choicebook

-

- -This class is a control similar to a notebook control, but uses a -wx.Choice to manage the selection of the pages. - -""" - - - -if __name__ == '__main__': - import sys,os - import run - run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:]) - - -