]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/RowColSizer.py
correction to float array declaration following array implementation changes (will...
[wxWidgets.git] / wxPython / demo / RowColSizer.py
1
2 from wxPython.wx import *
3 from wxPython.lib.rcsizer import RowColSizer
4
5
6 #----------------------------------------------------------------------
7
8 class TestPanel(wxPanel):
9 def __init__(self, parent):
10 wxPanel.__init__(self, parent, -1)
11
12 sizer = RowColSizer()
13 text = "This sizer lays out it's items by row and column that are"\
14 "specified explicitly when the item is added to the sizer.\n"\
15 "Grid cells with nothing in them are supported and column-"\
16 "or row-spanning is handled as well. Growable rows and\n"\
17 "columns are specified just like the wxFlexGridSizer."
18 sizer.Add(wxStaticText(self, -1, text), row=1, col=1, colspan=5)
19
20 sizer.Add(wxTextCtrl(self, -1, "(3,1)"), flag=wxEXPAND, row=3, col=1)
21 sizer.Add(wxTextCtrl(self, -1, "(3,2)"), row=3, col=2)
22 sizer.Add(wxTextCtrl(self, -1, "(3,3)"), row=3, col=3)
23 sizer.Add(wxTextCtrl(self, -1, "(3,4)"), row=3, col=4)
24 sizer.Add(wxTextCtrl(self, -1, "(4,2) span:(2,2)"), flag=wxEXPAND,
25 row=4, col=2, rowspan=2, colspan=2)
26 sizer.Add(wxTextCtrl(self, -1, "(6,4)"), row=6, col=4)
27 sizer.Add(wxTextCtrl(self, -1, "(7,2)"), row=7, col=2)
28 sizer.Add(wxTextCtrl(self, -1, "(8,3)"), row=8, col=3)
29 sizer.Add(wxTextCtrl(self, -1, "(10,1) colspan: 4"), flag=wxEXPAND, pos=(10,1), colspan=4)
30 sizer.Add(wxTextCtrl(self, -1, "(3,5) rowspan: 8, growable col", style=wxTE_MULTILINE),
31 flag=wxEXPAND, pos=(3,5), size=(8,1))
32
33 box = wxBoxSizer(wxVERTICAL)
34 box.Add(wxButton(self, -1, "A vertical box"), flag=wxEXPAND)
35 box.Add(wxButton(self, -1, "sizer put in the"), flag=wxEXPAND)
36 box.Add(wxButton(self, -1, "RowColSizer at (12,1)"), flag=wxEXPAND)
37 sizer.Add(box, pos=(12,1))
38
39 sizer.Add(wxTextCtrl(self, -1, "(12,2) align bottom"), flag=wxALIGN_BOTTOM, pos=(12,2))
40 sizer.Add(wxTextCtrl(self, -1, "(12,3) align center"), flag=wxALIGN_CENTER_VERTICAL, pos=(12,3))
41 sizer.Add(wxTextCtrl(self, -1, "(12,4)"),pos=(12,4))
42 sizer.Add(wxTextCtrl(self, -1, "(12,5) full border"), flag=wxEXPAND|wxALL, border=15, pos=(12,5))
43
44 sizer.AddGrowableCol(5)
45 sizer.AddGrowableRow(9)
46
47 sizer.AddSpacer(10,10, pos=(1,6))
48 sizer.AddSpacer(10,10, pos=(13,1))
49
50 self.SetSizer(sizer)
51 self.SetAutoLayout(true)
52
53
54 #----------------------------------------------------------------------
55
56 def runTest(frame, nb, log):
57 win = TestPanel(nb)
58 return win
59
60
61 #----------------------------------------------------------------------
62
63
64 import wxPython.lib.rcsizer
65 overview = wxPython.lib.rcsizer.__doc__
66
67