]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/ScrolledPanel.py
3 import wx
.lib
.scrolledpanel
as scrolled
5 #----------------------------------------------------------------------
7 text
= "one two buckle my shoe three four shut the door five six pick up sticks seven eight lay them straight nine ten big fat hen"
10 class TestPanel(scrolled
.ScrolledPanel
):
11 def __init__(self
, parent
, log
):
13 scrolled
.ScrolledPanel
.__init
__(self
, parent
, -1)
15 vbox
= wx
.BoxSizer(wx
.VERTICAL
)
16 desc
= wx
.StaticText(self
, -1,
17 "ScrolledPanel extends wx.ScrolledWindow, adding all "
18 "the necessary bits to set up scroll handling for you.\n\n"
19 "Here are three fixed size examples of its use. The "
20 "demo panel for this sample is also using it -- the \nwxStaticLine "
21 "below is intentionally made too long so a scrollbar will be "
24 desc
.SetForegroundColour("Blue")
25 vbox
.Add(desc
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
26 vbox
.Add(wx
.StaticLine(self
, -1, size
=(1024,-1)), 0, wx
.ALL
, 5)
31 panel1
= scrolled
.ScrolledPanel(self
, -1, size
=(120,300),
32 style
= wx
.TAB_TRAVERSAL|wx
.SUNKEN_BORDER
)
33 fgs1
= wx
.FlexGridSizer(cols
=2, vgap
=4, hgap
=4)
36 label
= wx
.StaticText(panel1
, -1, word
+":")
37 tc
= wx
.TextCtrl(panel1
, -1, word
, size
=(50,-1))
38 fgs1
.Add(label
, flag
=wx
.ALIGN_RIGHT | wx
.ALIGN_CENTER_VERTICAL
)
39 fgs1
.Add(tc
, flag
=wx
.EXPAND|wx
.RIGHT
, border
=25)
41 panel1
.SetSizer( fgs1
)
42 panel1
.SetAutoLayout(1)
43 panel1
.SetupScrolling( scroll_x
=False )
45 panel2
= scrolled
.ScrolledPanel(self
, -1, size
=(350, 40),
46 style
= wx
.TAB_TRAVERSAL|wx
.SUNKEN_BORDER
)
47 panel3
= scrolled
.ScrolledPanel(self
, -1, size
=(200,100),
48 style
= wx
.TAB_TRAVERSAL|wx
.SUNKEN_BORDER
)
50 fgs2
= wx
.FlexGridSizer(cols
=25, vgap
=4, hgap
=4)
51 fgs3
= wx
.FlexGridSizer(cols
=5, vgap
=4, hgap
=4)
53 for i
in range(len(words
)):
56 label2
= wx
.StaticText(panel2
, -1, word
)
57 fgs2
.Add(label2
, flag
=wx
.ALIGN_LEFT | wx
.ALIGN_CENTER_VERTICAL
)
58 label3
= wx
.StaticText(panel3
, -1, word
)
59 fgs3
.Add(label3
, flag
=wx
.ALIGN_LEFT | wx
.ALIGN_CENTER_VERTICAL
)
61 tc2
= wx
.TextCtrl(panel2
, -1, word
, size
=(50,-1))
62 fgs2
.Add(tc2
, flag
=wx
.LEFT
, border
=5)
63 tc3
= wx
.TextCtrl(panel3
, -1, word
)
64 fgs3
.Add(tc3
, flag
=wx
.LEFT
, border
=5)
66 panel2
.SetSizer( fgs2
)
67 panel2
.SetAutoLayout(1)
68 panel2
.SetupScrolling(scroll_y
= False)
70 panel3
.SetSizer( fgs3
)
71 panel3
.SetAutoLayout(1)
72 panel3
.SetupScrolling()
74 hbox
= wx
.BoxSizer(wx
.HORIZONTAL
)
79 vbox2
= wx
.BoxSizer(wx
.VERTICAL
)
93 #----------------------------------------------------------------------
96 def runTest(frame
, nb
, log
):
97 win
= TestPanel(nb
, log
)
100 #----------------------------------------------------------------------
104 overview
= """<html><body>
105 ScrolledPanel fills a "hole" in the implementation of wx.ScrolledWindow,
106 providing automatic scrollbar and scrolling behavior and the tab traversal
107 mangement that wx.ScrolledWindow lacks.
112 if __name__
== '__main__':
115 run
.main(['', os
.path
.basename(sys
.argv
[0])] + sys
.argv
[1:])