]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxNotebook.py
df761009353be026e9ae258db4fb37c7f0c6ba37
2 from wxPython
. wx
import *
7 import wxScrolledWindow
11 #----------------------------------------------------------------------------
13 class TestNB ( wxNotebook
):
14 def __init__ ( self
, parent
, id , log
):
15 wxNotebook
.__ init
__ ( self
, parent
, id , style
= wxNB_BOTTOM
)
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." ,
25 st
. SetForegroundColour ( wxWHITE
)
26 st
. SetBackgroundColour ( wxBLUE
)
28 win
= ColorPanel
. ColoredPanel ( self
, wxRED
)
29 self
. AddPage ( win
, "Red" )
31 win
= wxScrolledWindow
. MyCanvas ( self
)
32 self
. AddPage ( win
, 'ScrolledWindow' )
34 win
= ColorPanel
. ColoredPanel ( self
, wxGREEN
)
35 self
. AddPage ( win
, "Green" )
37 win
= GridSimple
. SimpleGrid ( self
, log
)
38 self
. AddPage ( win
, "Grid" )
40 win
= wxListCtrl
. TestListCtrlPanel ( self
, log
)
41 self
. AddPage ( win
, 'List' )
43 win
= ColorPanel
. ColoredPanel ( self
, wxCYAN
)
44 self
. AddPage ( win
, "Cyan" )
46 win
= ColorPanel
. ColoredPanel ( self
, wxWHITE
)
47 self
. AddPage ( win
, "White" )
49 win
= ColorPanel
. ColoredPanel ( self
, wxBLACK
)
50 self
. AddPage ( win
, "Black" )
52 win
= ColorPanel
. ColoredPanel ( self
, wxNamedColour ( 'MIDNIGHT BLUE' ))
53 self
. AddPage ( win
, "MIDNIGHT BLUE" )
55 win
= ColorPanel
. ColoredPanel ( self
, wxNamedColour ( 'INDIAN RED' ))
56 self
. AddPage ( win
, "INDIAN RED" )
58 EVT_NOTEBOOK_PAGE_CHANGED ( self
, self
. GetId (), self
. OnPageChanged
)
59 EVT_NOTEBOOK_PAGE_CHANGING ( self
, self
. GetId (), self
. OnPageChanging
)
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
))
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
))
75 #----------------------------------------------------------------------------
77 def runTest ( frame
, nb
, log
):
78 testWin
= TestNB ( nb
, - 1 , log
)
81 #----------------------------------------------------------------------------
95 This class represents a notebook control, which manages multiple windows with associated tabs.
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.
102 if __name__
== "__main__" :
103 app
= wxPySimpleApp ()
104 frame
= wxFrame ( None , - 1 , "Test Notebook" , size
=( 600 , 400 ))
105 win
= TestNB ( frame
, - 1 , sys
. stdout
)