2 import wxaddons
.sized_controls
as sc
5 SizedControls is an addon library that attempts to simplify the creation of
6 sizer-based layouts. It adds the following classes:
10 This class automatically creates its own sizer (a vertical box sizer
11 by default) and automatically adds its children to the sizer. You can change the
12 SizedPanel's sizer type by calling panel.SetSizerType("type", [args]), where valid types are
13 "horizontal", "vertical", "form" (a 2-col flex grid sizer), and "grid". Args include
14 "cols" and "rows" attributes for grids. This class also applies control borders
15 that adhere to the native platform's Human Interface Guidelines (HIG) on Win, GTK and Mac.
17 <b>SizedFrame and SizedDialog</b>
19 These classes automatically setup a SizedPanel which
20 is appropriately positioned and given appropriate borders in accordance with the
23 Since controls are added to the parent's sizer upon creation, you don't need to
24 use sizer.Add or even create sizers yourself. You just use SetSizerType() to
25 change the sizer you want to use, and control.SetSizerProps() to change the
26 sizer properties of the control. So as a result, code that used to look like this:
28 <table bgcolor="#EFEFEF"><tr><td><code>
29 ... wx.Dialog init code...
31 panel = wx.Panel(self, -1)
32 b1 = wx.Button(panel, -1)
33 b2 = wx.Button(panel, -1)
34 t1 = wx.TextCtrl(panel, -1)
35 b3 = wx.Button(panel, -1)
37 sizer = wx.BoxSizer(wx.HORIZONTAL)
38 sizer.Add(b1, 0, wx.ALL, 6)
39 sizer.Add(b2, 0, wx.ALL, 6)
40 sizer.Add(t1, 0, wx.EXPAND | wx.ALL, 6)
41 sizer.Add(b3, 0, wx.ALL, 6)
44 dlgSizer = wx.BoxSizer()
45 dlgSizer.Add(panel, 1, wx.EXPAND)
46 self.SetSizer(dlgSizer)
47 self.SetAutoLayout(True)
49 ... rest of dialog ...</code>
52 would now look like this:
54 <table bgcolor="#EFEFEF"><tr><td><code>
55 ... wx.Dialog init code...
57 panel = self.GetContentsPane()
58 panel.SetSizerType("horizontal")
60 b1 = wx.Button(panel, -1)
61 b2 = wx.Button(panel, -1)
63 t1 = wx.TextCtrl(panel, -1)
64 t1.SetSizerProps(expand=True)
66 b3 = wx.Button(panel, -1)
68 ... rest of dialog ...</code>
70 and the latter example will adhere to HIG spacing guidelines on all platforms,
71 unlike the former example.
73 Please check the demos for more complete and sophisticated examples of SizedControls
77 class FormDialog(sc
.SizedDialog
):
78 def __init__(self
, parent
, id):
79 sc
.SizedDialog
.__init
__(self
, None, -1, "SizedForm Dialog",
80 style
=wx
.DEFAULT_DIALOG_STYLE | wx
.RESIZE_BORDER
)
82 pane
= self
.GetContentsPane()
83 pane
.SetSizerType("form")
86 wx
.StaticText(pane
, -1, "Name")
87 textCtrl
= wx
.TextCtrl(pane
, -1, "Your name here")
88 textCtrl
.SetSizerProps(expand
=True)
91 wx
.StaticText(pane
, -1, "Email")
92 emailCtrl
= wx
.TextCtrl(pane
, -1, "")
93 emailCtrl
.SetSizerProps(expand
=True)
96 wx
.StaticText(pane
, -1, "Gender")
97 wx
.Choice(pane
, -1, choices
=["male", "female"])
100 wx
.StaticText(pane
, -1, "State")
101 wx
.TextCtrl(pane
, -1, size
=(60, -1)) # two chars for state
104 wx
.StaticText(pane
, -1, "Title")
106 # here's how to add a 'nested sizer' using sized_controls
107 radioPane
= sc
.SizedPanel(pane
, -1)
108 radioPane
.SetSizerType("horizontal")
109 radioPane
.SetSizerProps(expand
=True)
111 # make these children of the radioPane to have them use
112 # the horizontal layout
113 wx
.RadioButton(radioPane
, -1, "Mr.")
114 wx
.RadioButton(radioPane
, -1, "Mrs.")
115 wx
.RadioButton(radioPane
, -1, "Dr.")
119 self
.SetButtonSizer(self
.CreateStdDialogButtonSizer(wx
.OK | wx
.CANCEL
))
121 # a little trick to make sure that you can't resize the dialog to
122 # less screen space than the controls need
124 self
.SetMinSize(self
.GetSize())
127 class ErrorDialog(sc
.SizedDialog
):
128 def __init__(self
, parent
, id):
129 sc
.SizedDialog
.__init
__(self
, parent
, id, "Error log viewer",
130 style
=wx
.DEFAULT_DIALOG_STYLE|wx
.RESIZE_BORDER
)
132 # Always use self.GetContentsPane() - this ensures that your dialog
133 # automatically adheres to HIG spacing requirements on all platforms.
134 # pane here is a sc.SizedPanel with a vertical sizer layout. All children
135 # should be added to this pane, NOT to self.
136 pane
= self
.GetContentsPane()
139 self
.listCtrl
= wx
.ListCtrl(pane
, -1, size
=(300, -1), style
=wx
.LC_REPORT
)
140 self
.listCtrl
.SetSizerProps(expand
=True, proportion
=1)
141 self
.ConfigureListCtrl()
144 self
.lblDetails
= wx
.StaticText(pane
, -1, "Error Details")
147 self
.details
= wx
.TextCtrl(pane
, -1, style
=wx
.TE_MULTILINE
)
148 self
.details
.SetSizerProps(expand
=True, proportion
=1)
151 # since we want to use a custom button layout, we won't use the
152 # CreateStdDialogBtnSizer here, we'll just create our own panel with
153 # a horizontal layout and add the buttons to that.
154 btnpane
= sc
.SizedPanel(pane
, -1)
155 btnpane
.SetSizerType("horizontal")
156 btnpane
.SetSizerProps(expand
=True)
158 self
.saveBtn
= wx
.Button(btnpane
, wx
.ID_SAVE
)
159 spacer
= sc
.SizedPanel(btnpane
, -1)
160 spacer
.SetSizerProps(expand
=True, proportion
=1)
162 self
.clearBtn
= wx
.Button(btnpane
, -1, "Clear")
165 self
.SetMinSize(self
.GetSize())
167 def ConfigureListCtrl(self
):
168 self
.listCtrl
.InsertColumn(0, "Time")
169 self
.listCtrl
.InsertColumn(1, "Error Message")
170 self
.listCtrl
.SetColumnWidth(0, 100)
171 self
.listCtrl
.SetColumnWidth(1, 280)
173 #---------------------------------------------------------------------------
175 class TestPanel(wx
.Panel
):
176 def __init__(self
, parent
, log
):
179 wx
.Panel
.__init
__(self
, parent
, -1)
181 b
= wx
.Button(self
, -1, "Sized Controls Form Dialog", (50,50))
182 self
.Bind(wx
.EVT_BUTTON
, self
.OnFormButton
, b
)
184 b2
= wx
.Button(self
, -1, "Sized Controls Error Dialog", (50,90))
185 self
.Bind(wx
.EVT_BUTTON
, self
.OnErrorButton
, b2
)
188 def OnFormButton(self
, evt
):
190 dlg
= FormDialog(self
, -1)
193 # this does not return until the dialog is closed.
194 val
= dlg
.ShowModal()
197 self
.log
.WriteText("You pressed OK\n")
199 self
.log
.WriteText("You pressed Cancel\n")
203 def OnErrorButton(self
, evt
):
205 dlg
= ErrorDialog(self
, -1)
208 # this does not return until the dialog is closed.
209 val
= dlg
.ShowModal()
212 self
.log
.WriteText("You pressed OK\n")
214 self
.log
.WriteText("You pressed Cancel\n")
218 def runTest(frame
, nb
, log
):
219 win
= TestPanel(nb
, log
)
222 if __name__
== "__main__":
223 app
= wx
.PySimpleApp()