]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxNotebook.py
df761009353be026e9ae258db4fb37c7f0c6ba37
[wxWidgets.git] / wxPython / demo / wxNotebook.py
1
2 from wxPython.wx import *
3
4 import ColorPanel
5 import GridSimple
6 import wxListCtrl
7 import wxScrolledWindow
8
9 import sys
10
11 #----------------------------------------------------------------------------
12
13 class TestNB(wxNotebook):
14 def __init__(self, parent, id, log):
15 wxNotebook.__init__(self, parent, id, style=wxNB_BOTTOM)
16 self.log = log
17
18 win = ColorPanel.ColoredPanel(self, wxBLUE)
19 self.AddPage(win, "Blue")
20 st = wxStaticText(win, -1,
21 "You can put nearly any type of window here,\n"
22 "and if the platform supports it then the\n"
23 "tabs can be on any side of the notebook.",
24 wxPoint(10, 10))
25 st.SetForegroundColour(wxWHITE)
26 st.SetBackgroundColour(wxBLUE)
27
28 win = ColorPanel.ColoredPanel(self, wxRED)
29 self.AddPage(win, "Red")
30
31 win = wxScrolledWindow.MyCanvas(self)
32 self.AddPage(win, 'ScrolledWindow')
33
34 win = ColorPanel.ColoredPanel(self, wxGREEN)
35 self.AddPage(win, "Green")
36
37 win = GridSimple.SimpleGrid(self, log)
38 self.AddPage(win, "Grid")
39
40 win = wxListCtrl.TestListCtrlPanel(self, log)
41 self.AddPage(win, 'List')
42
43 win = ColorPanel.ColoredPanel(self, wxCYAN)
44 self.AddPage(win, "Cyan")
45
46 win = ColorPanel.ColoredPanel(self, wxWHITE)
47 self.AddPage(win, "White")
48
49 win = ColorPanel.ColoredPanel(self, wxBLACK)
50 self.AddPage(win, "Black")
51
52 win = ColorPanel.ColoredPanel(self, wxNamedColour('MIDNIGHT BLUE'))
53 self.AddPage(win, "MIDNIGHT BLUE")
54
55 win = ColorPanel.ColoredPanel(self, wxNamedColour('INDIAN RED'))
56 self.AddPage(win, "INDIAN RED")
57
58 EVT_NOTEBOOK_PAGE_CHANGED(self, self.GetId(), self.OnPageChanged)
59 EVT_NOTEBOOK_PAGE_CHANGING(self, self.GetId(), self.OnPageChanging)
60
61
62 def OnPageChanged(self, event):
63 old = event.GetOldSelection()
64 new = event.GetSelection()
65 self.log.write('OnPageChanged, old:%d, new:%d\n' % (old, new))
66 event.Skip()
67
68 def OnPageChanging(self, event):
69 old = event.GetOldSelection()
70 new = event.GetSelection()
71 self.log.write('OnPageChanging, old:%d, new:%d\n' % (old, new))
72 event.Skip()
73
74
75 #----------------------------------------------------------------------------
76
77 def runTest(frame, nb, log):
78 testWin = TestNB(nb, -1, log)
79 return testWin
80
81 #----------------------------------------------------------------------------
82
83
84
85
86
87
88
89
90
91
92
93
94 overview = """\
95 This class represents a notebook control, which manages multiple windows with associated tabs.
96
97 To use the class, create a wxNotebook object and call AddPage or InsertPage, passing a window to be used as the page. Do not explicitly delete the window for a page that is currently managed by wxNotebook.
98
99 """
100
101
102 if __name__ == "__main__":
103 app = wxPySimpleApp()
104 frame = wxFrame(None, -1, "Test Notebook", size=(600, 400))
105 win = TestNB(frame, -1, sys.stdout)
106 frame.Show(true)
107 app.MainLoop()
108
109
110