]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/MaskedNumCtrl.py
7 import wx
.lib
.maskednumctrl
as mnum
8 #----------------------------------------------------------------------
10 class TestPanel( wx
.Panel
):
11 def __init__( self
, parent
, log
):
13 wx
.Panel
.__init
__( self
, parent
, -1 )
15 panel
= wx
.Panel( self
, -1 )
17 header
= wx
.StaticText(panel
, -1, """\
18 This shows the various options for MaskedNumCtrl.
19 The controls at the top reconfigure the resulting control at the bottom.
21 header
.SetForegroundColour( "Blue" )
23 intlabel
= wx
.StaticText( panel
, -1, "Integer width:" )
24 self
.integerwidth
= mnum
.MaskedNumCtrl(
25 panel
, value
=10, integerWidth
=2, allowNegative
=False
28 fraclabel
= wx
.StaticText( panel
, -1, "Fraction width:" )
29 self
.fractionwidth
= mnum
.MaskedNumCtrl(
30 panel
, value
=0, integerWidth
=2, allowNegative
=False
33 groupcharlabel
= wx
.StaticText( panel
,-1, "Grouping char:" )
34 self
.groupchar
= mnum
.MaskedTextCtrl(
35 panel
, -1, value
=',', mask
='&', excludeChars
= '-()',
36 formatcodes
='F', emptyInvalid
=True, validRequired
=True
39 decimalcharlabel
= wx
.StaticText( panel
,-1, "Decimal char:" )
40 self
.decimalchar
= mnum
.MaskedTextCtrl(
41 panel
, -1, value
='.', mask
='&', excludeChars
= '-()',
42 formatcodes
='F', emptyInvalid
=True, validRequired
=True
45 self
.set_min
= wx
.CheckBox( panel
, -1, "Set minimum value:" )
46 # Create this MaskedNumCtrl using factory, to show how:
47 self
.min = mnum
.MaskedNumCtrl( panel
, integerWidth
=5, fractionWidth
=2 )
48 self
.min.Enable( False )
50 self
.set_max
= wx
.CheckBox( panel
, -1, "Set maximum value:" )
51 self
.max = mnum
.MaskedNumCtrl( panel
, integerWidth
=5, fractionWidth
=2 )
52 self
.max.Enable( False )
55 self
.limit_target
= wx
.CheckBox( panel
, -1, "Limit control" )
56 self
.allow_none
= wx
.CheckBox( panel
, -1, "Allow empty control" )
57 self
.group_digits
= wx
.CheckBox( panel
, -1, "Group digits" )
58 self
.group_digits
.SetValue( True )
59 self
.allow_negative
= wx
.CheckBox( panel
, -1, "Allow negative values" )
60 self
.allow_negative
.SetValue( True )
61 self
.use_parens
= wx
.CheckBox( panel
, -1, "Use parentheses" )
62 self
.select_on_entry
= wx
.CheckBox( panel
, -1, "Select on entry" )
63 self
.select_on_entry
.SetValue( True )
65 label
= wx
.StaticText( panel
, -1, "Resulting numeric control:" )
66 font
= label
.GetFont()
67 font
.SetWeight(wx
.BOLD
)
70 self
.target_ctl
= mnum
.MaskedNumCtrl( panel
, -1, name
="target control" )
72 label_numselect
= wx
.StaticText( panel
, -1, """\
73 Programmatically set the above
75 self
.numselect
= wx
.ComboBox(panel
, -1, choices
= [ '0', '111', '222.22', '-3', '54321.666666666', '-1353.978',
76 '1234567', '-1234567', '123456789', '-123456789.1',
77 '1234567890.', '-9876543210.9' ])
79 grid1
= wx
.FlexGridSizer( 0, 4, 0, 0 )
80 grid1
.Add( intlabel
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5)
81 grid1
.Add( self
.integerwidth
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
83 grid1
.Add( groupcharlabel
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5)
84 grid1
.Add( self
.groupchar
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
86 grid1
.Add( fraclabel
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5 )
87 grid1
.Add( self
.fractionwidth
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
89 grid1
.Add( decimalcharlabel
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5)
90 grid1
.Add( self
.decimalchar
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
92 grid1
.Add( self
.set_min
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5 )
93 grid1
.Add( self
.min, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
94 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
95 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
97 grid1
.Add( self
.set_max
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5 )
98 grid1
.Add( self
.max, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
99 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
100 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
103 grid1
.Add( self
.limit_target
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
104 grid1
.Add( self
.allow_none
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
105 hbox1
= wx
.BoxSizer( wx
.HORIZONTAL
)
106 hbox1
.Add( (17,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
107 hbox1
.Add( self
.group_digits
, 0, wx
.ALIGN_LEFT|wx
.LEFT
, 5 )
108 grid1
.Add( hbox1
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
109 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
111 grid1
.Add( self
.allow_negative
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
112 grid1
.Add( self
.use_parens
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
113 hbox2
= wx
.BoxSizer( wx
.HORIZONTAL
)
114 hbox2
.Add( (17,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
115 hbox2
.Add( self
.select_on_entry
, 0, wx
.ALIGN_LEFT|wx
.LEFT
, 5 )
116 grid1
.Add( hbox2
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
117 grid1
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
120 grid2
= wx
.FlexGridSizer( 0, 2, 0, 0 )
121 grid2
.Add( label
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5 )
122 grid2
.Add( self
.target_ctl
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
123 grid2
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
124 grid2
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
125 grid2
.Add( label_numselect
, 0, wx
.ALIGN_LEFT|wx
.ALIGN_CENTER_VERTICAL|wx
.ALL
, 5 )
126 grid2
.Add( self
.numselect
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 5 )
127 grid2
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
128 grid2
.Add( (5,5), 0, wx
.ALIGN_LEFT|wx
.ALL
, 5)
129 grid2
.AddGrowableCol(1)
131 self
.outer_box
= wx
.BoxSizer( wx
.VERTICAL
)
132 self
.outer_box
.Add(header
, 0, wx
.ALIGN_LEFT|wx
.TOP|wx
.LEFT
, 20)
133 self
.outer_box
.Add( grid1
, 0, wx
.ALIGN_CENTRE|wx
.LEFT|wx
.BOTTOM|wx
.RIGHT
, 20 )
134 self
.outer_box
.Add( grid2
, 0, wx
.ALIGN_LEFT|wx
.ALL
, 20 )
137 panel
.SetAutoLayout( True )
138 panel
.SetSizer( self
.outer_box
)
139 self
.outer_box
.Fit( panel
)
140 panel
.Move( (50,10) )
143 self
.Bind(mnum
.EVT_MASKEDNUM
, self
.OnSetIntWidth
, self
.integerwidth
)
144 self
.Bind(mnum
.EVT_MASKEDNUM
, self
.OnSetFractionWidth
, self
.fractionwidth
)
145 self
.Bind(wx
.EVT_TEXT
, self
.OnSetGroupChar
, self
.groupchar
)
146 self
.Bind(wx
.EVT_TEXT
, self
.OnSetDecimalChar
, self
.decimalchar
)
148 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetMin
, self
.set_min
)
149 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetMax
, self
.set_max
)
150 self
.Bind(mnum
.EVT_MASKEDNUM
, self
.SetTargetMinMax
, self
.min )
151 self
.Bind(mnum
.EVT_MASKEDNUM
, self
.SetTargetMinMax
, self
.max )
153 self
.Bind(wx
.EVT_CHECKBOX
, self
.SetTargetMinMax
, self
.limit_target
)
154 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetAllowNone
, self
.allow_none
)
155 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetGroupDigits
, self
.group_digits
)
156 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetAllowNegative
, self
.allow_negative
)
157 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetUseParens
, self
.use_parens
)
158 self
.Bind(wx
.EVT_CHECKBOX
, self
.OnSetSelectOnEntry
, self
.select_on_entry
)
160 self
.Bind(mnum
.EVT_MASKEDNUM
, self
.OnTargetChange
, self
.target_ctl
)
161 self
.Bind(wx
.EVT_COMBOBOX
, self
.OnNumberSelect
, self
.numselect
)
164 def OnSetIntWidth(self
, event
):
165 width
= self
.integerwidth
.GetValue()
168 self
.log
.write("integer width must be positive\n")
169 self
.integerwidth
.SetForegroundColour(wx
.RED
)
171 self
.integerwidth
.SetForegroundColour(wx
.BLACK
)
172 self
.log
.write("setting integer width to %d\n" % width
)
173 self
.target_ctl
.SetParameters( integerWidth
= width
)
174 # Now resize and fit the dialog as appropriate:
175 self
.grid2
.SetItemMinSize(self
.target_ctl
, self
.target_ctl
.GetSize())
176 self
.outer_box
.Fit( self
.panel
)
177 self
.outer_box
.SetSizeHints( self
.panel
)
180 def OnSetFractionWidth(self
, event
):
181 width
= self
.fractionwidth
.GetValue()
182 self
.log
.write("setting fraction width to %d\n" % width
)
183 self
.target_ctl
.SetParameters( fractionWidth
= width
)
184 # Now resize and fit the dialog as appropriate:
185 self
.grid2
.SetItemMinSize(self
.target_ctl
, self
.target_ctl
.GetSize())
186 self
.outer_box
.Fit( self
.panel
)
187 self
.outer_box
.SetSizeHints( self
.panel
)
190 def OnSetGroupChar( self
, event
):
191 char
= self
.groupchar
.GetValue()
192 if self
.target_ctl
.GetDecimalChar() == char
:
193 self
.log
.write("group and decimal chars must be different\n")
194 self
.groupchar
.SetForegroundColour(wx
.RED
)
196 self
.groupchar
.SetForegroundColour(wx
.BLACK
)
197 self
.log
.write("setting group char to %s\n" % char
)
198 self
.target_ctl
.SetGroupChar( char
)
200 def OnSetDecimalChar( self
, event
):
201 char
= self
.decimalchar
.GetValue()
202 if self
.target_ctl
.GetGroupChar() == char
:
203 self
.log
.write("group and decimal chars must be different\n")
204 self
.decimalchar
.SetForegroundColour(wx
.RED
)
206 self
.decimalchar
.SetForegroundColour(wx
.BLACK
)
207 self
.log
.write("setting decimal char to %s\n" % char
)
208 self
.target_ctl
.SetDecimalChar( char
)
211 def OnSetMin( self
, event
):
212 self
.min.Enable( self
.set_min
.GetValue() )
213 self
.SetTargetMinMax()
215 def OnSetMax( self
, event
):
216 self
.max.Enable( self
.set_max
.GetValue() )
217 self
.SetTargetMinMax()
220 def SetTargetMinMax( self
, event
=None ):
222 self
.target_ctl
.SetLimited( self
.limit_target
.GetValue() )
224 if self
.set_min
.GetValue():
225 min = self
.min.GetValue()
226 if self
.set_max
.GetValue():
227 max = self
.max.GetValue()
229 cur_min
, cur_max
= self
.target_ctl
.GetBounds()
231 if min != cur_min
and not self
.target_ctl
.SetMin( min ):
232 if self
.target_ctl
.GetMax() is None and cur_max
> min:
233 self
.log
.write( "min (%d) won't fit in control -- bound not set\n" % min )
235 self
.log
.write( "min (%d) > current max (%d) -- bound not set\n" % ( min, self
.target_ctl
.GetMax() ) )
236 self
.min.SetParameters( signedForegroundColour
=wx
.RED
, foregroundColour
=wx
.RED
)
238 self
.min.SetParameters( signedForegroundColour
=wx
.BLACK
, foregroundColour
=wx
.BLACK
)
241 if max != cur_max
and not self
.target_ctl
.SetMax( max ):
242 if self
.target_ctl
.GetMax() is None and cur_min
< max:
243 self
.log
.write( "max (%d) won't fit in control -- bound not set\n" % max )
245 self
.log
.write( "max (%d) < current min (%d) -- bound not set\n" % ( max, self
.target_ctl
.GetMin() ) )
246 self
.max.SetParameters( signedForegroundColour
=wx
.RED
, foregroundColour
=wx
.RED
)
248 self
.max.SetParameters( signedForegroundColour
=wx
.BLACK
, foregroundColour
=wx
.BLACK
)
251 if min != cur_min
or max != cur_max
:
252 new_min
, new_max
= self
.target_ctl
.GetBounds()
253 self
.log
.write( "current min, max: (%s, %s)\n" % ( str(new_min
), str(new_max
) ) )
256 def OnSetAllowNone( self
, event
):
257 self
.target_ctl
.SetAllowNone( self
.allow_none
.GetValue() )
260 def OnSetGroupDigits( self
, event
):
261 self
.target_ctl
.SetGroupDigits( self
.group_digits
.GetValue() )
262 # Now resize and fit the dialog as appropriate:
263 self
.grid2
.SetItemMinSize(self
.target_ctl
, self
.target_ctl
.GetSize())
264 self
.outer_box
.Fit( self
.panel
)
265 self
.outer_box
.SetSizeHints( self
.panel
)
268 def OnSetAllowNegative( self
, event
):
269 if self
.allow_negative
.GetValue():
270 self
.use_parens
.Enable(True)
271 self
.target_ctl
.SetParameters(allowNegative
=True,
272 useParensForNegatives
= self
.use_parens
.GetValue())
274 self
.target_ctl
.SetAllowNegative(False)
275 # Now resize and fit the dialog as appropriate:
276 self
.grid2
.SetItemMinSize(self
.target_ctl
, self
.target_ctl
.GetSize())
277 self
.outer_box
.Fit( self
.panel
)
278 self
.outer_box
.SetSizeHints( self
.panel
)
281 def OnSetUseParens( self
, event
):
282 self
.target_ctl
.SetUseParensForNegatives( self
.use_parens
.GetValue() )
283 # Now resize and fit the dialog as appropriate:
284 self
.grid2
.SetItemMinSize(self
.target_ctl
, self
.target_ctl
.GetSize())
285 self
.outer_box
.Fit( self
.panel
)
286 self
.outer_box
.SetSizeHints( self
.panel
)
289 def OnSetSelectOnEntry( self
, event
):
290 self
.target_ctl
.SetSelectOnEntry( self
.select_on_entry
.GetValue() )
293 def OnTargetChange( self
, event
):
294 ctl
= event
.GetEventObject()
295 value
= ctl
.GetValue()
296 ib_str
= [ " (out of bounds)", "" ]
297 self
.log
.write( "value = %s (%s)%s\n" % ( repr(value
), repr(type(value
)), ib_str
[ ctl
.IsInBounds(value
) ] ) )
300 def OnNumberSelect( self
, event
):
301 value
= event
.GetString()
303 if value
.find('.') != -1:
304 numvalue
= float(value
)
306 numvalue
= long(value
)
308 numvalue
= value
# try to clear the value again
311 self
.target_ctl
.SetValue(numvalue
)
313 type, value
, tb
= sys
.exc_info()
314 for line
in traceback
.format_exception_only(type, value
):
318 #----------------------------------------------------------------------
320 def runTest( frame
, nb
, log
):
321 win
= TestPanel( nb
, log
)
324 #----------------------------------------------------------------------
325 overview
= mnum
.__doc
__
327 if __name__
== '__main__':
330 run
.main(['', os
.path
.basename(sys
.argv
[0])] + sys
.argv
[1:])