]> git.saurik.com Git - wxWidgets.git/blame - wxPython/wx/lib/masked/maskededit.py
Compile fixes for Panther
[wxWidgets.git] / wxPython / wx / lib / masked / maskededit.py
CommitLineData
d14a1e28
RD
1#----------------------------------------------------------------------------
2# Name: maskededit.py
3# Authors: Jeff Childers, Will Sadkin
5fe636c6 4# Email: jchilders_98@yahoo.com, wsadkin@parlancecorp.com
d14a1e28 5# Created: 02/11/2003
fffd96b7 6# Copyright: (c) 2003 by Jeff Childers, Will Sadkin, 2003
5fe636c6 7# Portions: (c) 2002 by Will Sadkin, 2002-2006
d14a1e28 8# RCS-ID: $Id$
c878ceea 9# License: wxWindows license
d14a1e28
RD
10#----------------------------------------------------------------------------
11# NOTE:
d4b73b1b 12# MaskedEdit controls are based on a suggestion made on [wxPython-Users] by
d14a1e28 13# Jason Hihn, and borrows liberally from Will Sadkin's original masked edit
d4b73b1b 14# control for time entry, TimeCtrl (which is now rewritten using this
d14a1e28
RD
15# control!).
16#
d4b73b1b 17# MaskedEdit controls do not normally use validators, because they do
d14a1e28
RD
18# careful manipulation of the cursor in the text window on each keystroke,
19# and validation is cursor-position specific, so the control intercepts the
20# key codes before the validator would fire. However, validators can be
21# provided to do data transfer to the controls.
b881fc78
RD
22#
23#----------------------------------------------------------------------------
24#
c878ceea
RD
25# This file now contains the bulk of the logic behind all masked controls,
26# the MaskedEditMixin class, the Field class, and the autoformat codes.
27#
28#----------------------------------------------------------------------------
29#
30# 03/30/2004 - Will Sadkin (wsadkin@nameconnector.com)
31#
32# o Split out TextCtrl, ComboBox and IpAddrCtrl into their own files,
33# o Reorganized code into masked package
34#
b881fc78
RD
35# 12/09/2003 - Jeff Grimmett (grimmtooth@softhome.net)
36#
37# o Updated for wx namespace. No guarantees. This is one huge file.
c878ceea 38#
b881fc78
RD
39# 12/13/2003 - Jeff Grimmett (grimmtooth@softhome.net)
40#
41# o Missed wx.DateTime stuff earlier.
c878ceea 42#
d4b73b1b
RD
43# 12/20/2003 - Jeff Grimmett (grimmtooth@softhome.net)
44#
c878ceea
RD
45# o MaskedEditMixin -> MaskedEditMixin
46# o wxMaskedTextCtrl -> maskedTextCtrl
d4b73b1b
RD
47# o wxMaskedComboBoxSelectEvent -> MaskedComboBoxSelectEvent
48# o wxMaskedComboBox -> MaskedComboBox
49# o wxIpAddrCtrl -> IpAddrCtrl
50# o wxTimeCtrl -> TimeCtrl
51#
1fded56b 52
5fe636c6
RD
53__doc__ = """\
54contains MaskedEditMixin class that drives all the other masked controls.
55
f54a36bb
RD
56====================
57Masked Edit Overview
58====================
59
60masked.TextCtrl:
d14a1e28
RD
61 is a sublassed text control that can carefully control the user's input
62 based on a mask string you provide.
1fded56b 63
f54a36bb
RD
64 General usage example::
65
c878ceea 66 control = masked.TextCtrl( win, -1, '', mask = '(###) ###-####')
d14a1e28
RD
67
68 The example above will create a text control that allows only numbers to be
69 entered and then only in the positions indicated in the mask by the # sign.
70
f54a36bb 71masked.ComboBox:
d14a1e28
RD
72 is a similar subclass of wxComboBox that allows the same sort of masking,
73 but also can do auto-complete of values, and can require the value typed
74 to be in the list of choices to be colored appropriately.
75
f54a36bb 76masked.Ctrl:
d14a1e28
RD
77 is actually a factory function for several types of masked edit controls:
78
f54a36bb
RD
79 ================= ==================================================
80 masked.TextCtrl standard masked edit text box
81 masked.ComboBox adds combobox capabilities
82 masked.IpAddrCtrl adds special semantics for IP address entry
83 masked.TimeCtrl special subclass handling lots of types as values
84 masked.NumCtrl special subclass handling numeric values
85 ================= ==================================================
d14a1e28 86
f54a36bb 87 It works by looking for a *controlType* parameter in the keyword
d14a1e28
RD
88 arguments of the control, to determine what kind of instance to return.
89 If not specified as a keyword argument, the default control type returned
c878ceea 90 will be masked.TextCtrl.
d14a1e28 91
c878ceea 92 Each of the above classes has its own set of arguments, but masked.Ctrl
5fe636c6
RD
93 provides a single "unified" interface for masked controls.
94
95What follows is a description of how to configure the generic masked.TextCtrl
96and masked.ComboBox; masked.NumCtrl and masked.TimeCtrl have their own demo
97pages and interface descriptions.
d14a1e28 98
f54a36bb 99=========================
d14a1e28 100
f54a36bb
RD
101Initialization Parameters
102-------------------------
103mask
104 Allowed mask characters and function:
105
106 ========= ==========================================================
d14a1e28 107 Character Function
f54a36bb
RD
108 ========= ==========================================================
109 # Allow numeric only (0-9)
110 N Allow letters and numbers (0-9)
111 A Allow uppercase letters only
112 a Allow lowercase letters only
113 C Allow any letter, upper or lower
114 X Allow string.letters, string.punctuation, string.digits
5fe636c6
RD
115 & Allow string.punctuation only (doesn't include all unicode symbols)
116 \* Allow any visible character
117 | explicit field boundary (takes no space in the control; allows mix
118 of adjacent mask characters to be treated as separate fields,
119 eg: '&|###' means "field 0 = '&', field 1 = '###'", but there's
120 no fixed characters in between.
f54a36bb 121 ========= ==========================================================
d14a1e28
RD
122
123
124 These controls define these sets of characters using string.letters,
125 string.uppercase, etc. These sets are affected by the system locale
126 setting, so in order to have the masked controls accept characters
127 that are specific to your users' language, your application should
128 set the locale.
129 For example, to allow international characters to be used in the
130 above masks, you can place the following in your code as part of
f54a36bb 131 your application's initialization code::
d14a1e28
RD
132
133 import locale
134 locale.setlocale(locale.LC_ALL, '')
135
5fe636c6
RD
136 The controls now also support (by popular demand) all "visible" characters,
137 by use of the * mask character, including unicode characters above
138 the standard ANSI keycode range.
139 Note: As string.punctuation doesn't typically include all unicode
140 symbols, you will have to use includechars to get some of these into
141 otherwise restricted positions in your control, such as those specified
142 with &.
d14a1e28
RD
143
144 Using these mask characters, a variety of template masks can be built. See
145 the demo for some other common examples include date+time, social security
146 number, etc. If any of these characters are needed as template rather
147 than mask characters, they can be escaped with \, ie. \N means "literal N".
148 (use \\ for literal backslash, as in: r'CCC\\NNN'.)
149
150
f54a36bb 151 *Note:*
d14a1e28
RD
152 Masks containing only # characters and one optional decimal point
153 character are handled specially, as "numeric" controls. Such
154 controls have special handling for typing the '-' key, handling
155 the "decimal point" character as truncating the integer portion,
156 optionally allowing grouping characters and so forth.
157 There are several parameters and format codes that only make sense
158 when combined with such masks, eg. groupChar, decimalChar, and so
159 forth (see below). These allow you to construct reasonable
160 numeric entry controls.
161
f54a36bb 162 *Note:*
d14a1e28
RD
163 Changing the mask for a control deletes any previous field classes
164 (and any associated validation or formatting constraints) for them.
165
f54a36bb 166useFixedWidthFont
d14a1e28
RD
167 By default, masked edit controls use a fixed width font, so that
168 the mask characters are fixed within the control, regardless of
169 subsequent modifications to the value. Set to False if having
f54a36bb
RD
170 the control font be the same as other controls is required. (This is
171 a control-level parameter.)
d14a1e28 172
f54a36bb
RD
173defaultEncoding
174 (Applies to unicode systems only) By default, the default unicode encoding
175 used is latin1, or iso-8859-1. If necessary, you can set this control-level
176 parameter to govern the codec used to decode your keyboard inputs.
177 (This is a control-level parameter.)
d14a1e28 178
f54a36bb 179formatcodes
d14a1e28
RD
180 These other properties can be passed to the class when instantiating it:
181 Formatcodes are specified as a string of single character formatting
f54a36bb
RD
182 codes that modify behavior of the control::
183
d14a1e28
RD
184 _ Allow spaces
185 ! Force upper
186 ^ Force lower
187 R Right-align field(s)
188 r Right-insert in field(s) (implies R)
f54a36bb 189 < Stay in field until explicit navigation out of it
d14a1e28 190
f54a36bb 191 > Allow insert/delete within partially filled fields (as
d14a1e28
RD
192 opposed to the default "overwrite" mode for fixed-width
193 masked edit controls.) This allows single-field controls
194 or each field within a multi-field control to optionally
195 behave more like standard text controls.
196 (See EMAIL or phone number autoformat examples.)
197
f54a36bb 198 *Note: This also governs whether backspace/delete operations
d14a1e28
RD
199 shift contents of field to right of cursor, or just blank the
200 erased section.
201
202 Also, when combined with 'r', this indicates that the field
203 or control allows right insert anywhere within the current
204 non-empty value in the field. (Otherwise right-insert behavior
205 is only performed to when the entire right-insertable field is
f54a36bb 206 selected or the cursor is at the right edge of the field.*
d14a1e28
RD
207
208
209 , Allow grouping character in integer fields of numeric controls
210 and auto-group/regroup digits (if the result fits) when leaving
211 such a field. (If specified, .SetValue() will attempt to
212 auto-group as well.)
213 ',' is also the default grouping character. To change the
214 grouping character and/or decimal character, use the groupChar
215 and decimalChar parameters, respectively.
216 Note: typing the "decimal point" character in such fields will
217 clip the value to that left of the cursor for integer
218 fields of controls with "integer" or "floating point" masks.
219 If the ',' format code is specified, this will also cause the
220 resulting digits to be regrouped properly, using the current
221 grouping character.
222 - Prepend and reserve leading space for sign to mask and allow
223 signed values (negative #s shown in red by default.) Can be
224 used with argument useParensForNegatives (see below.)
225 0 integer fields get leading zeros
226 D Date[/time] field
227 T Time field
228 F Auto-Fit: the control calulates its size from
229 the length of the template mask
230 V validate entered chars against validRegex before allowing them
231 to be entered vs. being allowed by basic mask and then having
232 the resulting value just colored as invalid.
233 (See USSTATE autoformat demo for how this can be used.)
234 S select entire field when navigating to new field
235
f54a36bb
RD
236fillChar
237
238defaultValue
d14a1e28
RD
239 These controls have two options for the initial state of the control.
240 If a blank control with just the non-editable characters showing
241 is desired, simply leave the constructor variable fillChar as its
242 default (' '). If you want some other character there, simply
243 change the fillChar to that value. Note: changing the control's fillChar
244 will implicitly reset all of the fields' fillChars to this value.
245
246 If you need different default characters in each mask position,
247 you can specify a defaultValue parameter in the constructor, or
248 set them for each field individually.
249 This value must satisfy the non-editable characters of the mask,
250 but need not conform to the replaceable characters.
251
f54a36bb
RD
252groupChar
253
254decimalChar
d14a1e28
RD
255 These parameters govern what character is used to group numbers
256 and is used to indicate the decimal point for numeric format controls.
257 The default groupChar is ',', the default decimalChar is '.'
258 By changing these, you can customize the presentation of numbers
259 for your location.
d14a1e28 260
f54a36bb
RD
261 Eg::
262
766abb5b 263 formatcodes = ',', groupChar='\'' allows 12'345.34
f54a36bb
RD
264 formatcodes = ',', groupChar='.', decimalChar=',' allows 12.345,34
265
266 (These are control-level parameters.)
267
268shiftDecimalChar
d14a1e28
RD
269 The default "shiftDecimalChar" (used for "backwards-tabbing" until
270 shift-tab is fixed in wxPython) is '>' (for QUERTY keyboards.) for
271 other keyboards, you may want to customize this, eg '?' for shift ',' on
272 AZERTY keyboards, ':' or ';' for other European keyboards, etc.
f54a36bb 273 (This is a control-level parameter.)
d14a1e28 274
f54a36bb 275useParensForNegatives=False
d14a1e28
RD
276 This option can be used with signed numeric format controls to
277 indicate signs via () rather than '-'.
f54a36bb 278 (This is a control-level parameter.)
d14a1e28 279
f54a36bb 280autoSelect=False
d14a1e28
RD
281 This option can be used to have a field or the control try to
282 auto-complete on each keystroke if choices have been specified.
283
f54a36bb 284autoCompleteKeycodes=[]
d14a1e28
RD
285 By default, DownArrow, PageUp and PageDown will auto-complete a
286 partially entered field. Shift-DownArrow, Shift-UpArrow, PageUp
287 and PageDown will also auto-complete, but if the field already
288 contains a matched value, these keys will cycle through the list
289 of choices forward or backward as appropriate. Shift-Up and
290 Shift-Down also take you to the next/previous field after any
291 auto-complete action.
292
293 Additional auto-complete keys can be specified via this parameter.
294 Any keys so specified will act like PageDown.
f54a36bb
RD
295 (This is a control-level parameter.)
296
297
298
299Validating User Input
300=====================
301There are a variety of initialization parameters that are used to validate
302user input. These parameters can apply to the control as a whole, and/or
303to individual fields:
304
305 ===================== ==================================================================
306 excludeChars A string of characters to exclude even if otherwise allowed
307 includeChars A string of characters to allow even if otherwise disallowed
308 validRegex Use a regular expression to validate the contents of the text box
309 validRange Pass a rangeas list (low,high) to limit numeric fields/values
310 choices A list of strings that are allowed choices for the control.
311 choiceRequired value must be member of choices list
312 compareNoCase Perform case-insensitive matching when validating against list
313 *Note: for masked.ComboBox, this defaults to True.*
314 emptyInvalid Boolean indicating whether an empty value should be considered
315 invalid
316
317 validFunc A function to call of the form: bool = func(candidate_value)
318 which will return True if the candidate_value satisfies some
319 external criteria for the control in addition to the the
320 other validation, or False if not. (This validation is
321 applied last in the chain of validations.)
322
323 validRequired Boolean indicating whether or not keys that are allowed by the
324 mask, but result in an invalid value are allowed to be entered
325 into the control. Setting this to True implies that a valid
326 default value is set for the control.
327
328 retainFieldValidation False by default; if True, this allows individual fields to
329 retain their own validation constraints independently of any
330 subsequent changes to the control's overall parameters.
331 (This is a control-level parameter.)
332
333 validator Validators are not normally needed for masked controls, because
334 of the nature of the validation and control of input. However,
335 you can supply one to provide data transfer routines for the
336 controls.
5fe636c6
RD
337 raiseOnInvalidPaste False by default; normally a bad paste simply is ignored with a bell;
338 if True, this will cause a ValueError exception to be thrown,
339 with the .value attribute of the exception containing the bad value.
f54a36bb
RD
340 ===================== ==================================================================
341
342
343Coloring Behavior
344=================
d14a1e28
RD
345 The following parameters have been provided to allow you to change the default
346 coloring behavior of the control. These can be set at construction, or via
347 the .SetCtrlParameters() function. Pass a color as string e.g. 'Yellow':
348
f54a36bb
RD
349 ======================== =======================================================================
350 emptyBackgroundColour Control Background color when identified as empty. Default=White
351 invalidBackgroundColour Control Background color when identified as Not valid. Default=Yellow
352 validBackgroundColour Control Background color when identified as Valid. Default=white
353 ======================== =======================================================================
d14a1e28
RD
354
355
356 The following parameters control the default foreground color coloring behavior of the
357 control. Pass a color as string e.g. 'Yellow':
f54a36bb
RD
358
359 ======================== ======================================================================
360 foregroundColour Control foreground color when value is not negative. Default=Black
361 signedForegroundColour Control foreground color when value is negative. Default=Red
362 ======================== ======================================================================
d14a1e28
RD
363
364
f54a36bb
RD
365Fields
366======
d14a1e28
RD
367 Each part of the mask that allows user input is considered a field. The fields
368 are represented by their own class instances. You can specify field-specific
369 constraints by constructing or accessing the field instances for the control
370 and then specifying those constraints via parameters.
371
f54a36bb 372fields
d14a1e28
RD
373 This parameter allows you to specify Field instances containing
374 constraints for the individual fields of a control, eg: local
375 choice lists, validation rules, functions, regexps, etc.
376 It can be either an ordered list or a dictionary. If a list,
377 the fields will be applied as fields 0, 1, 2, etc.
378 If a dictionary, it should be keyed by field index.
379 the values should be a instances of maskededit.Field.
380
381 Any field not represented by the list or dictionary will be
382 implicitly created by the control.
383
f54a36bb
RD
384 Eg::
385
d14a1e28 386 fields = [ Field(formatcodes='_r'), Field('choices=['a', 'b', 'c']) ]
f54a36bb
RD
387
388 Or::
389
d14a1e28 390 fields = {
f54a36bb
RD
391 1: ( Field(formatcodes='_R', choices=['a', 'b', 'c']),
392 3: ( Field(choices=['01', '02', '03'], choiceRequired=True)
d14a1e28
RD
393 }
394
395 The following parameters are available for individual fields, with the
396 same semantics as for the whole control but applied to the field in question:
397
f54a36bb
RD
398 ============== =============================================================================
399 fillChar if set for a field, it will override the control's fillChar for that field
400 groupChar if set for a field, it will override the control's default
401 defaultValue sets field-specific default value; overrides any default from control
402 compareNoCase overrides control's settings
403 emptyInvalid determines whether field is required to be filled at all times
404 validRequired if set, requires field to contain valid value
405 ============== =============================================================================
d14a1e28
RD
406
407 If any of the above parameters are subsequently specified for the control as a
408 whole, that new value will be propagated to each field, unless the
409 retainFieldValidation control-level parameter is set.
410
f54a36bb
RD
411 ============== ==============================
412 formatcodes Augments control's settings
413 excludeChars ' ' '
414 includeChars ' ' '
415 validRegex ' ' '
416 validRange ' ' '
417 choices ' ' '
418 choiceRequired ' ' '
419 validFunc ' ' '
420 ============== ==============================
d14a1e28
RD
421
422
423
f54a36bb
RD
424Control Class Functions
425=======================
426.GetPlainValue(value=None)
d14a1e28
RD
427 Returns the value specified (or the control's text value
428 not specified) without the formatting text.
429 In the example above, might return phone no='3522640075',
430 whereas control.GetValue() would return '(352) 264-0075'
f54a36bb 431.ClearValue()
d14a1e28
RD
432 Returns the control's value to its default, and places the
433 cursor at the beginning of the control.
f54a36bb 434.SetValue()
d14a1e28
RD
435 Does "smart replacement" of passed value into the control, as does
436 the .Paste() method. As with other text entry controls, the
437 .SetValue() text replacement begins at left-edge of the control,
438 with missing mask characters inserted as appropriate.
439 .SetValue will also adjust integer, float or date mask entry values,
440 adding commas, auto-completing years, etc. as appropriate.
441 For "right-aligned" numeric controls, it will also now automatically
442 right-adjust any value whose length is less than the width of the
443 control before attempting to set the value.
444 If a value does not follow the format of the control's mask, or will
445 not fit into the control, a ValueError exception will be raised.
f54a36bb
RD
446
447 Eg::
448
d14a1e28
RD
449 mask = '(###) ###-####'
450 .SetValue('1234567890') => '(123) 456-7890'
451 .SetValue('(123)4567890') => '(123) 456-7890'
452 .SetValue('(123)456-7890') => '(123) 456-7890'
453 .SetValue('123/4567-890') => illegal paste; ValueError
454
455 mask = '#{6}.#{2}', formatcodes = '_,-',
456 .SetValue('111') => ' 111 . '
457 .SetValue(' %9.2f' % -111.12345 ) => ' -111.12'
458 .SetValue(' %9.2f' % 1234.00 ) => ' 1,234.00'
459 .SetValue(' %9.2f' % -1234567.12345 ) => insufficient room; ValueError
460
461 mask = '#{6}.#{2}', formatcodes = '_,-R' # will right-adjust value for right-aligned control
462 .SetValue('111') => padded value misalignment ValueError: " 111" will not fit
463 .SetValue('%.2f' % 111 ) => ' 111.00'
464 .SetValue('%.2f' % -111.12345 ) => ' -111.12'
465
466
f54a36bb 467.IsValid(value=None)
d14a1e28
RD
468 Returns True if the value specified (or the value of the control
469 if not specified) passes validation tests
f54a36bb 470.IsEmpty(value=None)
d14a1e28
RD
471 Returns True if the value specified (or the value of the control
472 if not specified) is equal to an "empty value," ie. all
473 editable characters == the fillChar for their respective fields.
f54a36bb 474.IsDefault(value=None)
d14a1e28
RD
475 Returns True if the value specified (or the value of the control
476 if not specified) is equal to the initial value of the control.
477
f54a36bb 478.Refresh()
d14a1e28
RD
479 Recolors the control as appropriate to its current settings.
480
f54a36bb 481.SetCtrlParameters(\*\*kwargs)
d14a1e28
RD
482 This function allows you to set up and/or change the control parameters
483 after construction; it takes a list of key/value pairs as arguments,
484 where the keys can be any of the mask-specific parameters in the constructor.
f54a36bb
RD
485
486 Eg::
487
c878ceea 488 ctl = masked.TextCtrl( self, -1 )
d14a1e28
RD
489 ctl.SetCtrlParameters( mask='###-####',
490 defaultValue='555-1212',
491 formatcodes='F')
492
f54a36bb 493.GetCtrlParameter(parametername)
d14a1e28
RD
494 This function allows you to retrieve the current value of a parameter
495 from the control.
496
f54a36bb 497 *Note:* Each of the control parameters can also be set using its
d14a1e28
RD
498 own Set and Get function. These functions follow a regular form:
499 All of the parameter names start with lower case; for their
500 corresponding Set/Get function, the parameter name is capitalized.
f54a36bb
RD
501
502 Eg::
503
504 ctl.SetMask('###-####')
d14a1e28
RD
505 ctl.SetDefaultValue('555-1212')
506 ctl.GetChoiceRequired()
507 ctl.GetFormatcodes()
508
f54a36bb 509 *Note:* After any change in parameters, the choices for the
fffd96b7
RD
510 control are reevaluated to ensure that they are still legal. If you
511 have large choice lists, it is therefore more efficient to set parameters
512 before setting the choices available.
513
f54a36bb 514.SetFieldParameters(field_index, \*\*kwargs)
d14a1e28
RD
515 This function allows you to specify change individual field
516 parameters after construction. (Indices are 0-based.)
517
f54a36bb 518.GetFieldParameter(field_index, parametername)
d14a1e28
RD
519 Allows the retrieval of field parameters after construction
520
521
522The control detects certain common constructions. In order to use the signed feature
523(negative numbers and coloring), the mask has to be all numbers with optionally one
524decimal point. Without a decimal (e.g. '######', the control will treat it as an integer
525value. With a decimal (e.g. '###.##'), the control will act as a floating point control
526(i.e. press decimal to 'tab' to the decimal position). Pressing decimal in the
fffd96b7 527integer control truncates the value. However, for a true numeric control,
c878ceea 528masked.NumCtrl provides all this, and true numeric input/output support as well.
d14a1e28
RD
529
530
531Check your controls by calling each control's .IsValid() function and the
532.IsEmpty() function to determine which controls have been a) filled in and
533b) filled in properly.
534
535
536Regular expression validations can be used flexibly and creatively.
537Take a look at the demo; the zip-code validation succeeds as long as the
538first five numerals are entered. the last four are optional, but if
539any are entered, there must be 4 to be valid.
540
f54a36bb
RD
541masked.Ctrl Configuration
542=========================
543masked.Ctrl works by looking for a special *controlType*
d14a1e28
RD
544parameter in the variable arguments of the control, to determine
545what kind of instance to return.
f54a36bb 546controlType can be one of::
d14a1e28 547
c878ceea
RD
548 controlTypes.TEXT
549 controlTypes.COMBO
d14a1e28
RD
550 controlTypes.IPADDR
551 controlTypes.TIME
552 controlTypes.NUMBER
553
554These constants are also available individually, ie, you can
f54a36bb 555use either of the following::
d14a1e28 556
c878ceea
RD
557 from wxPython.wx.lib.masked import MaskedCtrl, controlTypes
558 from wxPython.wx.lib.masked import MaskedCtrl, COMBO, TEXT, NUMBER, IPADDR
d14a1e28
RD
559
560If not specified as a keyword argument, the default controlType is
561controlTypes.TEXT.
f54a36bb 562
766abb5b 563"""
d14a1e28
RD
564
565"""
566+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
567DEVELOPER COMMENTS:
568
569Naming Conventions
570------------------
571 All methods of the Mixin that are not meant to be exposed to the external
572 interface are prefaced with '_'. Those functions that are primarily
573 intended to be internal subroutines subsequently start with a lower-case
574 letter; those that are primarily intended to be used and/or overridden
575 by derived subclasses start with a capital letter.
576
577 The following methods must be used and/or defined when deriving a control
c878ceea
RD
578 from MaskedEditMixin. NOTE: if deriving from a *masked edit* control
579 (eg. class IpAddrCtrl(masked.TextCtrl) ), then this is NOT necessary,
d14a1e28
RD
580 as it's already been done for you in the base class.
581
582 ._SetInitialValue()
583 This function must be called after the associated base
584 control has been initialized in the subclass __init__
585 function. It sets the initial value of the control,
586 either to the value specified if non-empty, the
587 default value if specified, or the "template" for
588 the empty control as necessary. It will also set/reset
589 the font if necessary and apply formatting to the
590 control at this time.
591
592 ._GetSelection()
593 REQUIRED
c878ceea 594 Each class derived from MaskedEditMixin must define
d14a1e28
RD
595 the function for getting the start and end of the
596 current text selection. The reason for this is
597 that not all controls have the same function name for
89f9e172 598 doing this; eg. wx.TextCtrl uses .GetSelection(),
d14a1e28
RD
599 whereas we had to write a .GetMark() function for
600 wxComboBox, because .GetSelection() for the control
601 gets the currently selected list item from the combo
602 box, and the control doesn't (yet) natively provide
603 a means of determining the text selection.
604 ._SetSelection()
605 REQUIRED
606 Similarly to _GetSelection, each class derived from
c878ceea 607 MaskedEditMixin must define the function for setting
d14a1e28 608 the start and end of the current text selection.
c878ceea
RD
609 (eg. .SetSelection() for masked.TextCtrl, and .SetMark() for
610 masked.ComboBox.
d14a1e28
RD
611
612 ._GetInsertionPoint()
613 ._SetInsertionPoint()
614 REQUIRED
615 For consistency, and because the mixin shouldn't rely
616 on fixed names for any manipulations it does of any of
617 the base controls, we require each class derived from
c878ceea 618 MaskedEditMixin to define these functions as well.
d14a1e28
RD
619
620 ._GetValue()
621 ._SetValue() REQUIRED
c878ceea 622 Each class derived from MaskedEditMixin must define
d14a1e28
RD
623 the functions used to get and set the raw value of the
624 control.
625 This is necessary so that recursion doesn't take place
626 when setting the value, and so that the mixin can
627 call the appropriate function after doing all its
628 validation and manipulation without knowing what kind
629 of base control it was mixed in with. To handle undo
630 functionality, the ._SetValue() must record the current
631 selection prior to setting the value.
632
633 .Cut()
634 .Paste()
635 .Undo()
636 .SetValue() REQUIRED
c878ceea 637 Each class derived from MaskedEditMixin must redefine
d14a1e28
RD
638 these functions to call the _Cut(), _Paste(), _Undo()
639 and _SetValue() methods, respectively for the control,
640 so as to prevent programmatic corruption of the control's
641 value. This must be done in each derivation, as the
642 mixin cannot itself override a member of a sibling class.
643
644 ._Refresh() REQUIRED
c878ceea 645 Each class derived from MaskedEditMixin must define
d14a1e28
RD
646 the function used to refresh the base control.
647
648 .Refresh() REQUIRED
c878ceea 649 Each class derived from MaskedEditMixin must redefine
d14a1e28
RD
650 this function so that it checks the validity of the
651 control (via self._CheckValid) and then refreshes
652 control using the base class method.
653
654 ._IsEditable() REQUIRED
c878ceea 655 Each class derived from MaskedEditMixin must define
d14a1e28 656 the function used to determine if the base control is
c878ceea 657 editable or not. (For masked.ComboBox, this has to
d14a1e28
RD
658 be done with code, rather than specifying the proper
659 function in the base control, as there isn't one...)
660 ._CalcSize() REQUIRED
c878ceea 661 Each class derived from MaskedEditMixin must define
d14a1e28
RD
662 the function used to determine how wide the control
663 should be given the mask. (The mixin function
664 ._calcSize() provides a baseline estimate.)
665
666
667Event Handling
668--------------
c878ceea 669 Event handlers are "chained", and MaskedEditMixin usually
d14a1e28
RD
670 swallows most of the events it sees, thereby preventing any other
671 handlers from firing in the chain. It is therefore required that
672 each class derivation using the mixin to have an option to hook up
673 the event handlers itself or forego this operation and let a
674 subclass of the masked control do so. For this reason, each
675 subclass should probably include the following code:
676
677 if setupEventHandling:
678 ## Setup event handlers
679 EVT_SET_FOCUS( self, self._OnFocus ) ## defeat automatic full selection
680 EVT_KILL_FOCUS( self, self._OnKillFocus ) ## run internal validator
681 EVT_LEFT_DCLICK(self, self._OnDoubleClick) ## select field under cursor on dclick
682 EVT_RIGHT_UP(self, self._OnContextMenu ) ## bring up an appropriate context menu
683 EVT_KEY_DOWN( self, self._OnKeyDown ) ## capture control events not normally seen, eg ctrl-tab.
684 EVT_CHAR( self, self._OnChar ) ## handle each keypress
685 EVT_TEXT( self, self.GetId(), self._OnTextChange ) ## color control appropriately & keep
686 ## track of previous value for undo
687
688 where setupEventHandling is an argument to its constructor.
689
c878ceea
RD
690 These 5 handlers must be "wired up" for the masked edit
691 controls to provide default behavior. (The setupEventHandling
692 is an argument to masked.TextCtrl and masked.ComboBox, so
d14a1e28
RD
693 that controls derived from *them* may replace one of these
694 handlers if they so choose.)
695
696 If your derived control wants to preprocess events before
697 taking action, it should then set up the event handling itself,
698 so it can be first in the event handler chain.
699
700
701 The following routines are available to facilitate changing
c878ceea 702 the default behavior of masked edit controls:
d14a1e28
RD
703
704 ._SetKeycodeHandler(keycode, func)
705 ._SetKeyHandler(char, func)
706 Use to replace default handling for any given keycode.
707 func should take the key event as argument and return
708 False if no further action is required to handle the
709 key. Eg:
710 self._SetKeycodeHandler(WXK_UP, self.IncrementValue)
711 self._SetKeyHandler('-', self._OnChangeSign)
712
02b800ce
RD
713 (Setting a func of None removes any keyhandler for the given key.)
714
d14a1e28
RD
715 "Navigation" keys are assumed to change the cursor position, and
716 therefore don't cause automatic motion of the cursor as insertable
717 characters do.
718
719 ._AddNavKeycode(keycode, handler=None)
720 ._AddNavKey(char, handler=None)
721 Allows controls to specify other keys (and optional handlers)
d4b73b1b 722 to be treated as navigational characters. (eg. '.' in IpAddrCtrl)
d14a1e28
RD
723
724 ._GetNavKeycodes() Returns the current list of navigational keycodes.
725
726 ._SetNavKeycodes(key_func_tuples)
727 Allows replacement of the current list of keycode
728 processed as navigation keys, and bind associated
729 optional keyhandlers. argument is a list of key/handler
730 tuples. Passing a value of None for the handler in a
731 given tuple indicates that default processing for the key
732 is desired.
733
734 ._FindField(pos) Returns the Field object associated with this position
735 in the control.
736
737 ._FindFieldExtent(pos, getslice=False, value=None)
738 Returns edit_start, edit_end of the field corresponding
739 to the specified position within the control, and
740 optionally also returns the current contents of that field.
741 If value is specified, it will retrieve the slice the corresponding
742 slice from that value, rather than the current value of the
743 control.
744
745 ._AdjustField(pos)
746 This is, the function that gets called for a given position
747 whenever the cursor is adjusted to leave a given field.
748 By default, it adjusts the year in date fields if mask is a date,
749 It can be overridden by a derived class to
750 adjust the value of the control at that time.
d4b73b1b 751 (eg. IpAddrCtrl reformats the address in this way.)
d14a1e28
RD
752
753 ._Change() Called by internal EVT_TEXT handler. Return False to force
754 skip of the normal class change event.
755 ._Keypress(key) Called by internal EVT_CHAR handler. Return False to force
756 skip of the normal class keypress event.
757 ._LostFocus() Called by internal EVT_KILL_FOCUS handler
758
759 ._OnKeyDown(event)
760 This is the default EVT_KEY_DOWN routine; it just checks for
761 "navigation keys", and if event.ControlDown(), it fires the
762 mixin's _OnChar() routine, as such events are not always seen
763 by the "cooked" EVT_CHAR routine.
764
765 ._OnChar(event) This is the main EVT_CHAR handler for the
c878ceea 766 MaskedEditMixin.
d14a1e28
RD
767
768 The following routines are used to handle standard actions
769 for control keys:
770 _OnArrow(event) used for arrow navigation events
771 _OnCtrl_A(event) 'select all'
772 _OnCtrl_C(event) 'copy' (uses base control function, as copy is non-destructive)
773 _OnCtrl_S(event) 'save' (does nothing)
774 _OnCtrl_V(event) 'paste' - calls _Paste() method, to do smart paste
775 _OnCtrl_X(event) 'cut' - calls _Cut() method, to "erase" selection
776 _OnCtrl_Z(event) 'undo' - resets value to previous value (if any)
777
778 _OnChangeField(event) primarily used for tab events, but can be
d4b73b1b 779 used for other keys (eg. '.' in IpAddrCtrl)
d14a1e28
RD
780
781 _OnErase(event) used for backspace and delete
782 _OnHome(event)
783 _OnEnd(event)
784
fffd96b7
RD
785 The following routine provides a hook back to any class derivations, so that
786 they can react to parameter changes before any value is set/reset as a result of
c878ceea 787 those changes. (eg. masked.ComboBox needs to detect when the choices list is
fffd96b7
RD
788 modified, either implicitly or explicitly, so it can reset the base control
789 to have the appropriate choice list *before* the initial value is reset to match.)
790
791 _OnCtrlParametersChanged()
792
793Accessor Functions
794------------------
795 For convenience, each class derived from MaskedEditMixin should
796 define an accessors mixin, so that it exposes only those parameters
797 that make sense for the derivation. This is done with an intermediate
798 level of inheritance, ie:
799
800 class BaseMaskedTextCtrl( TextCtrl, MaskedEditMixin ):
801
c878ceea
RD
802 class TextCtrl( BaseMaskedTextCtrl, MaskedEditAccessorsMixin ):
803 class ComboBox( BaseMaskedComboBox, MaskedEditAccessorsMixin ):
804 class NumCtrl( BaseMaskedTextCtrl, MaskedNumCtrlAccessorsMixin ):
fffd96b7
RD
805 class IpAddrCtrl( BaseMaskedTextCtrl, IpAddrCtrlAccessorsMixin ):
806 class TimeCtrl( BaseMaskedTextCtrl, TimeCtrlAccessorsMixin ):
807
808 etc.
809
810 Each accessors mixin defines Get/Set functions for the base class parameters
811 that are appropriate for that derivation.
812 This allows the base classes to be "more generic," exposing the widest
813 set of options, while not requiring derived classes to be so general.
d14a1e28
RD
814"""
815
b881fc78
RD
816import copy
817import difflib
818import re
819import string
820import types
821
822import wx
823
824# jmg 12/9/03 - when we cut ties with Py 2.2 and earlier, this would
825# be a good place to implement the 2.3 logger class
c878ceea 826from wx.tools.dbg import Logger
d14a1e28 827
f54a36bb 828##dbg = Logger()
339983ff 829##dbg(enable=1)
d14a1e28
RD
830
831## ---------- ---------- ---------- ---------- ---------- ---------- ----------
832
833## Constants for identifying control keys and classes of keys:
834
835WXK_CTRL_A = (ord('A')+1) - ord('A') ## These keys are not already defined in wx
836WXK_CTRL_C = (ord('C')+1) - ord('A')
837WXK_CTRL_S = (ord('S')+1) - ord('A')
838WXK_CTRL_V = (ord('V')+1) - ord('A')
839WXK_CTRL_X = (ord('X')+1) - ord('A')
840WXK_CTRL_Z = (ord('Z')+1) - ord('A')
841
b881fc78 842nav = (
c878ceea 843 wx.WXK_BACK, wx.WXK_LEFT, wx.WXK_RIGHT, wx.WXK_UP, wx.WXK_DOWN, wx.WXK_TAB,
b881fc78
RD
844 wx.WXK_HOME, wx.WXK_END, wx.WXK_RETURN, wx.WXK_PRIOR, wx.WXK_NEXT
845 )
846
847control = (
35d8bffe 848 wx.WXK_BACK, wx.WXK_DELETE, wx.WXK_INSERT, WXK_CTRL_A, WXK_CTRL_C, WXK_CTRL_S, WXK_CTRL_V,
b881fc78
RD
849 WXK_CTRL_X, WXK_CTRL_Z
850 )
d14a1e28 851
5fe636c6
RD
852# Because unicode can go over the ansi character range, we need to explicitly test
853# for all non-visible keystrokes, rather than just assuming a particular range for
854# visible characters:
855wx_control_keycodes = range(32) + list(nav) + list(control) + [
856 wx.WXK_START, wx.WXK_LBUTTON, wx.WXK_RBUTTON, wx.WXK_CANCEL, wx.WXK_MBUTTON,
857 wx.WXK_CLEAR, wx.WXK_SHIFT, wx.WXK_CONTROL, wx.WXK_MENU, wx.WXK_PAUSE,
858 wx.WXK_CAPITAL, wx.WXK_SELECT, wx.WXK_PRINT, wx.WXK_EXECUTE, wx.WXK_SNAPSHOT,
859 wx.WXK_HELP, wx.WXK_NUMPAD0, wx.WXK_NUMPAD1, wx.WXK_NUMPAD2, wx.WXK_NUMPAD3,
860 wx.WXK_NUMPAD4, wx.WXK_NUMPAD5, wx.WXK_NUMPAD6, wx.WXK_NUMPAD7, wx.WXK_NUMPAD8,
861 wx.WXK_NUMPAD9, wx.WXK_MULTIPLY, wx.WXK_ADD, wx.WXK_SEPARATOR, wx.WXK_SUBTRACT,
862 wx.WXK_DECIMAL, wx.WXK_DIVIDE, wx.WXK_F1, wx.WXK_F2, wx.WXK_F3, wx.WXK_F4,
863 wx.WXK_F5, wx.WXK_F6, wx.WXK_F7, wx.WXK_F8, wx.WXK_F9, wx.WXK_F10, wx.WXK_F11,
864 wx.WXK_F12, wx.WXK_F13, wx.WXK_F14, wx.WXK_F15, wx.WXK_F16, wx.WXK_F17,
865 wx.WXK_F18, wx.WXK_F19, wx.WXK_F20, wx.WXK_F21, wx.WXK_F22, wx.WXK_F23,
866 wx.WXK_F24, wx.WXK_NUMLOCK, wx.WXK_SCROLL, wx.WXK_PAGEUP, wx.WXK_PAGEDOWN,
867 wx.WXK_NUMPAD_SPACE, wx.WXK_NUMPAD_TAB, wx.WXK_NUMPAD_ENTER, wx.WXK_NUMPAD_F1,
868 wx.WXK_NUMPAD_F2, wx.WXK_NUMPAD_F3, wx.WXK_NUMPAD_F4, wx.WXK_NUMPAD_HOME,
869 wx.WXK_NUMPAD_LEFT, wx.WXK_NUMPAD_UP, wx.WXK_NUMPAD_RIGHT, wx.WXK_NUMPAD_DOWN,
870 wx.WXK_NUMPAD_PRIOR, wx.WXK_NUMPAD_PAGEUP, wx.WXK_NUMPAD_NEXT, wx.WXK_NUMPAD_PAGEDOWN,
871 wx.WXK_NUMPAD_END, wx.WXK_NUMPAD_BEGIN, wx.WXK_NUMPAD_INSERT, wx.WXK_NUMPAD_DELETE,
872 wx.WXK_NUMPAD_EQUAL, wx.WXK_NUMPAD_MULTIPLY, wx.WXK_NUMPAD_ADD, wx.WXK_NUMPAD_SEPARATOR,
873 wx.WXK_NUMPAD_SUBTRACT, wx.WXK_NUMPAD_DECIMAL, wx.WXK_NUMPAD_DIVIDE, wx.WXK_WINDOWS_LEFT,
874 wx.WXK_WINDOWS_RIGHT, wx.WXK_WINDOWS_MENU, wx.WXK_COMMAND,
875 # Hardware-specific buttons
876 wx.WXK_SPECIAL1, wx.WXK_SPECIAL2, wx.WXK_SPECIAL3, wx.WXK_SPECIAL4, wx.WXK_SPECIAL5,
877 wx.WXK_SPECIAL6, wx.WXK_SPECIAL7, wx.WXK_SPECIAL8, wx.WXK_SPECIAL9, wx.WXK_SPECIAL10,
878 wx.WXK_SPECIAL11, wx.WXK_SPECIAL12, wx.WXK_SPECIAL13, wx.WXK_SPECIAL14, wx.WXK_SPECIAL15,
879 wx.WXK_SPECIAL16, wx.WXK_SPECIAL17, wx.WXK_SPECIAL18, wx.WXK_SPECIAL19, wx.WXK_SPECIAL20
880 ]
881
d14a1e28
RD
882
883## ---------- ---------- ---------- ---------- ---------- ---------- ----------
884
885## Constants for masking. This is where mask characters
886## are defined.
887## maskchars used to identify valid mask characters from all others
5fe636c6
RD
888## # - allow numeric 0-9 only
889## A - allow uppercase only. Combine with forceupper to force lowercase to upper
890## a - allow lowercase only. Combine with forcelower to force upper to lowercase
891## C - allow any letter, upper or lower
892## X - allow string.letters, string.punctuation, string.digits
893## & - allow string.punctuation only (doesn't include all unicode symbols)
894## * - allow any visible character
895
d14a1e28 896## Note: locale settings affect what "uppercase", lowercase, etc comprise.
5fe636c6
RD
897## Note: '|' is not a maskchar, in that it is a mask processing directive, and so
898## does not appear here.
d14a1e28 899##
f54a36bb
RD
900maskchars = ("#","A","a","X","C","N",'*','&')
901ansichars = ""
902for i in xrange(32, 256):
903 ansichars += chr(i)
d14a1e28
RD
904
905months = '(01|02|03|04|05|06|07|08|09|10|11|12)'
906charmonths = '(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec|JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC|jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)'
907charmonths_dict = {'jan': 1, 'feb': 2, 'mar': 3, 'apr': 4, 'may': 5, 'jun': 6,
908 'jul': 7, 'aug': 8, 'sep': 9, 'oct': 10, 'nov': 11, 'dec': 12}
909
910days = '(01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31)'
911hours = '(0\d| \d|1[012])'
912milhours = '(00|01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|16|17|18|19|20|21|22|23)'
913minutes = """(00|01|02|03|04|05|06|07|08|09|10|11|12|13|14|15|\
91416|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31|32|33|34|35|\
91536|37|38|39|40|41|42|43|44|45|46|47|48|49|50|51|52|53|54|55|\
91656|57|58|59)"""
917seconds = minutes
918am_pm_exclude = 'BCDEFGHIJKLMNOQRSTUVWXYZ\x8a\x8c\x8e\x9f\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd8\xd9\xda\xdb\xdc\xdd\xde'
919
920states = "AL,AK,AZ,AR,CA,CO,CT,DE,DC,FL,GA,GU,HI,ID,IL,IN,IA,KS,KY,LA,MA,ME,MD,MI,MN,MS,MO,MT,NE,NV,NH,NJ,NM,NY,NC,ND,OH,OK,OR,PA,PR,RI,SC,SD,TN,TX,UT,VA,VT,VI,WA,WV,WI,WY".split(',')
921
922state_names = ['Alabama','Alaska','Arizona','Arkansas',
923 'California','Colorado','Connecticut',
924 'Delaware','District of Columbia',
925 'Florida','Georgia','Hawaii',
926 'Idaho','Illinois','Indiana','Iowa',
927 'Kansas','Kentucky','Louisiana',
928 'Maine','Maryland','Massachusetts','Michigan',
929 'Minnesota','Mississippi','Missouri','Montana',
930 'Nebraska','Nevada','New Hampshire','New Jersey',
931 'New Mexico','New York','North Carolina','North Dakokta',
932 'Ohio','Oklahoma','Oregon',
933 'Pennsylvania','Puerto Rico','Rhode Island',
934 'South Carolina','South Dakota',
935 'Tennessee','Texas','Utah',
936 'Vermont','Virginia',
937 'Washington','West Virginia',
938 'Wisconsin','Wyoming']
939
940## ---------- ---------- ---------- ---------- ---------- ---------- ----------
941
942## The following dictionary defines the current set of autoformats:
943
944masktags = {
945 "USPHONEFULLEXT": {
946 'mask': "(###) ###-#### x:###",
947 'formatcodes': 'F^->',
948 'validRegex': "^\(\d{3}\) \d{3}-\d{4}",
949 'description': "Phone Number w/opt. ext"
950 },
951 "USPHONETIGHTEXT": {
952 'mask': "###-###-#### x:###",
953 'formatcodes': 'F^->',
954 'validRegex': "^\d{3}-\d{3}-\d{4}",
955 'description': "Phone Number\n (w/hyphens and opt. ext)"
956 },
957 "USPHONEFULL": {
958 'mask': "(###) ###-####",
959 'formatcodes': 'F^->',
960 'validRegex': "^\(\d{3}\) \d{3}-\d{4}",
961 'description': "Phone Number only"
962 },
963 "USPHONETIGHT": {
964 'mask': "###-###-####",
965 'formatcodes': 'F^->',
966 'validRegex': "^\d{3}-\d{3}-\d{4}",
967 'description': "Phone Number\n(w/hyphens)"
968 },
969 "USSTATE": {
970 'mask': "AA",
971 'formatcodes': 'F!V',
972 'validRegex': "([ACDFGHIKLMNOPRSTUVW] |%s)" % string.join(states,'|'),
973 'choices': states,
974 'choiceRequired': True,
975 'description': "US State Code"
976 },
977 "USSTATENAME": {
978 'mask': "ACCCCCCCCCCCCCCCCCCC",
979 'formatcodes': 'F_',
980 'validRegex': "([ACDFGHIKLMNOPRSTUVW] |%s)" % string.join(state_names,'|'),
981 'choices': state_names,
982 'choiceRequired': True,
983 'description': "US State Name"
984 },
985
986 "USDATETIMEMMDDYYYY/HHMMSS": {
987 'mask': "##/##/#### ##:##:## AM",
988 'excludeChars': am_pm_exclude,
989 'formatcodes': 'DF!',
990 'validRegex': '^' + months + '/' + days + '/' + '\d{4} ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
991 'description': "US Date + Time"
992 },
993 "USDATETIMEMMDDYYYY-HHMMSS": {
994 'mask': "##-##-#### ##:##:## AM",
995 'excludeChars': am_pm_exclude,
996 'formatcodes': 'DF!',
997 'validRegex': '^' + months + '-' + days + '-' + '\d{4} ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
998 'description': "US Date + Time\n(w/hypens)"
999 },
c878ceea 1000 "USDATE24HRTIMEMMDDYYYY/HHMMSS": {
d14a1e28
RD
1001 'mask': "##/##/#### ##:##:##",
1002 'formatcodes': 'DF',
1003 'validRegex': '^' + months + '/' + days + '/' + '\d{4} ' + milhours + ':' + minutes + ':' + seconds,
c878ceea 1004 'description': "US Date + 24Hr (Military) Time"
d14a1e28 1005 },
fffd96b7 1006 "USDATE24HRTIMEMMDDYYYY-HHMMSS": {
d14a1e28
RD
1007 'mask': "##-##-#### ##:##:##",
1008 'formatcodes': 'DF',
1009 'validRegex': '^' + months + '-' + days + '-' + '\d{4} ' + milhours + ':' + minutes + ':' + seconds,
c878ceea 1010 'description': "US Date + 24Hr Time\n(w/hypens)"
d14a1e28
RD
1011 },
1012 "USDATETIMEMMDDYYYY/HHMM": {
1013 'mask': "##/##/#### ##:## AM",
1014 'excludeChars': am_pm_exclude,
1015 'formatcodes': 'DF!',
1016 'validRegex': '^' + months + '/' + days + '/' + '\d{4} ' + hours + ':' + minutes + ' (A|P)M',
1017 'description': "US Date + Time\n(without seconds)"
1018 },
fffd96b7 1019 "USDATE24HRTIMEMMDDYYYY/HHMM": {
d14a1e28
RD
1020 'mask': "##/##/#### ##:##",
1021 'formatcodes': 'DF',
1022 'validRegex': '^' + months + '/' + days + '/' + '\d{4} ' + milhours + ':' + minutes,
c878ceea 1023 'description': "US Date + 24Hr Time\n(without seconds)"
d14a1e28
RD
1024 },
1025 "USDATETIMEMMDDYYYY-HHMM": {
1026 'mask': "##-##-#### ##:## AM",
1027 'excludeChars': am_pm_exclude,
1028 'formatcodes': 'DF!',
1029 'validRegex': '^' + months + '-' + days + '-' + '\d{4} ' + hours + ':' + minutes + ' (A|P)M',
1030 'description': "US Date + Time\n(w/hypens and w/o secs)"
1031 },
fffd96b7 1032 "USDATE24HRTIMEMMDDYYYY-HHMM": {
d14a1e28
RD
1033 'mask': "##-##-#### ##:##",
1034 'formatcodes': 'DF',
1035 'validRegex': '^' + months + '-' + days + '-' + '\d{4} ' + milhours + ':' + minutes,
fffd96b7 1036 'description': "US Date + 24Hr Time\n(w/hyphens and w/o seconds)"
d14a1e28
RD
1037 },
1038 "USDATEMMDDYYYY/": {
1039 'mask': "##/##/####",
1040 'formatcodes': 'DF',
1041 'validRegex': '^' + months + '/' + days + '/' + '\d{4}',
1042 'description': "US Date\n(MMDDYYYY)"
1043 },
1044 "USDATEMMDDYY/": {
1045 'mask': "##/##/##",
1046 'formatcodes': 'DF',
1047 'validRegex': '^' + months + '/' + days + '/\d\d',
1048 'description': "US Date\n(MMDDYY)"
1049 },
1050 "USDATEMMDDYYYY-": {
1051 'mask': "##-##-####",
1052 'formatcodes': 'DF',
1053 'validRegex': '^' + months + '-' + days + '-' +'\d{4}',
1054 'description': "MM-DD-YYYY"
1055 },
1056
1057 "EUDATEYYYYMMDD/": {
1058 'mask': "####/##/##",
1059 'formatcodes': 'DF',
1060 'validRegex': '^' + '\d{4}'+ '/' + months + '/' + days,
1061 'description': "YYYY/MM/DD"
1062 },
1063 "EUDATEYYYYMMDD.": {
1064 'mask': "####.##.##",
1065 'formatcodes': 'DF',
1066 'validRegex': '^' + '\d{4}'+ '.' + months + '.' + days,
1067 'description': "YYYY.MM.DD"
1068 },
1069 "EUDATEDDMMYYYY/": {
1070 'mask': "##/##/####",
1071 'formatcodes': 'DF',
1072 'validRegex': '^' + days + '/' + months + '/' + '\d{4}',
1073 'description': "DD/MM/YYYY"
1074 },
1075 "EUDATEDDMMYYYY.": {
1076 'mask': "##.##.####",
1077 'formatcodes': 'DF',
1078 'validRegex': '^' + days + '.' + months + '.' + '\d{4}',
1079 'description': "DD.MM.YYYY"
1080 },
1081 "EUDATEDDMMMYYYY.": {
1082 'mask': "##.CCC.####",
1083 'formatcodes': 'DF',
1084 'validRegex': '^' + days + '.' + charmonths + '.' + '\d{4}',
1085 'description': "DD.Month.YYYY"
1086 },
1087 "EUDATEDDMMMYYYY/": {
1088 'mask': "##/CCC/####",
1089 'formatcodes': 'DF',
1090 'validRegex': '^' + days + '/' + charmonths + '/' + '\d{4}',
1091 'description': "DD/Month/YYYY"
1092 },
1093
1094 "EUDATETIMEYYYYMMDD/HHMMSS": {
1095 'mask': "####/##/## ##:##:## AM",
1096 'excludeChars': am_pm_exclude,
1097 'formatcodes': 'DF!',
1098 'validRegex': '^' + '\d{4}'+ '/' + months + '/' + days + ' ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
1099 'description': "YYYY/MM/DD HH:MM:SS"
1100 },
1101 "EUDATETIMEYYYYMMDD.HHMMSS": {
1102 'mask': "####.##.## ##:##:## AM",
1103 'excludeChars': am_pm_exclude,
1104 'formatcodes': 'DF!',
1105 'validRegex': '^' + '\d{4}'+ '.' + months + '.' + days + ' ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
1106 'description': "YYYY.MM.DD HH:MM:SS"
1107 },
1108 "EUDATETIMEDDMMYYYY/HHMMSS": {
1109 'mask': "##/##/#### ##:##:## AM",
1110 'excludeChars': am_pm_exclude,
1111 'formatcodes': 'DF!',
1112 'validRegex': '^' + days + '/' + months + '/' + '\d{4} ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
1113 'description': "DD/MM/YYYY HH:MM:SS"
1114 },
1115 "EUDATETIMEDDMMYYYY.HHMMSS": {
1116 'mask': "##.##.#### ##:##:## AM",
1117 'excludeChars': am_pm_exclude,
1118 'formatcodes': 'DF!',
1119 'validRegex': '^' + days + '.' + months + '.' + '\d{4} ' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
1120 'description': "DD.MM.YYYY HH:MM:SS"
1121 },
1122
1123 "EUDATETIMEYYYYMMDD/HHMM": {
1124 'mask': "####/##/## ##:## AM",
1125 'excludeChars': am_pm_exclude,
1126 'formatcodes': 'DF!',
1127 'validRegex': '^' + '\d{4}'+ '/' + months + '/' + days + ' ' + hours + ':' + minutes + ' (A|P)M',
1128 'description': "YYYY/MM/DD HH:MM"
1129 },
1130 "EUDATETIMEYYYYMMDD.HHMM": {
1131 'mask': "####.##.## ##:## AM",
1132 'excludeChars': am_pm_exclude,
1133 'formatcodes': 'DF!',
1134 'validRegex': '^' + '\d{4}'+ '.' + months + '.' + days + ' ' + hours + ':' + minutes + ' (A|P)M',
1135 'description': "YYYY.MM.DD HH:MM"
1136 },
1137 "EUDATETIMEDDMMYYYY/HHMM": {
1138 'mask': "##/##/#### ##:## AM",
1139 'excludeChars': am_pm_exclude,
1140 'formatcodes': 'DF!',
1141 'validRegex': '^' + days + '/' + months + '/' + '\d{4} ' + hours + ':' + minutes + ' (A|P)M',
1142 'description': "DD/MM/YYYY HH:MM"
1143 },
1144 "EUDATETIMEDDMMYYYY.HHMM": {
1145 'mask': "##.##.#### ##:## AM",
1146 'excludeChars': am_pm_exclude,
1147 'formatcodes': 'DF!',
1148 'validRegex': '^' + days + '.' + months + '.' + '\d{4} ' + hours + ':' + minutes + ' (A|P)M',
1149 'description': "DD.MM.YYYY HH:MM"
1150 },
1151
fffd96b7 1152 "EUDATE24HRTIMEYYYYMMDD/HHMMSS": {
d14a1e28
RD
1153 'mask': "####/##/## ##:##:##",
1154 'formatcodes': 'DF',
1155 'validRegex': '^' + '\d{4}'+ '/' + months + '/' + days + ' ' + milhours + ':' + minutes + ':' + seconds,
fffd96b7 1156 'description': "YYYY/MM/DD 24Hr Time"
d14a1e28 1157 },
fffd96b7 1158 "EUDATE24HRTIMEYYYYMMDD.HHMMSS": {
d14a1e28
RD
1159 'mask': "####.##.## ##:##:##",
1160 'formatcodes': 'DF',
1161 'validRegex': '^' + '\d{4}'+ '.' + months + '.' + days + ' ' + milhours + ':' + minutes + ':' + seconds,
fffd96b7 1162 'description': "YYYY.MM.DD 24Hr Time"
d14a1e28 1163 },
fffd96b7 1164 "EUDATE24HRTIMEDDMMYYYY/HHMMSS": {
d14a1e28
RD
1165 'mask': "##/##/#### ##:##:##",
1166 'formatcodes': 'DF',
1167 'validRegex': '^' + days + '/' + months + '/' + '\d{4} ' + milhours + ':' + minutes + ':' + seconds,
fffd96b7 1168 'description': "DD/MM/YYYY 24Hr Time"
d14a1e28 1169 },
fffd96b7 1170 "EUDATE24HRTIMEDDMMYYYY.HHMMSS": {
d14a1e28
RD
1171 'mask': "##.##.#### ##:##:##",
1172 'formatcodes': 'DF',
1173 'validRegex': '^' + days + '.' + months + '.' + '\d{4} ' + milhours + ':' + minutes + ':' + seconds,
fffd96b7 1174 'description': "DD.MM.YYYY 24Hr Time"
d14a1e28 1175 },
fffd96b7 1176 "EUDATE24HRTIMEYYYYMMDD/HHMM": {
d14a1e28
RD
1177 'mask': "####/##/## ##:##",
1178 'formatcodes': 'DF','validRegex': '^' + '\d{4}'+ '/' + months + '/' + days + ' ' + milhours + ':' + minutes,
fffd96b7 1179 'description': "YYYY/MM/DD 24Hr Time\n(w/o seconds)"
d14a1e28 1180 },
fffd96b7 1181 "EUDATE24HRTIMEYYYYMMDD.HHMM": {
d14a1e28
RD
1182 'mask': "####.##.## ##:##",
1183 'formatcodes': 'DF',
1184 'validRegex': '^' + '\d{4}'+ '.' + months + '.' + days + ' ' + milhours + ':' + minutes,
fffd96b7 1185 'description': "YYYY.MM.DD 24Hr Time\n(w/o seconds)"
d14a1e28 1186 },
fffd96b7 1187 "EUDATE24HRTIMEDDMMYYYY/HHMM": {
d14a1e28
RD
1188 'mask': "##/##/#### ##:##",
1189 'formatcodes': 'DF',
1190 'validRegex': '^' + days + '/' + months + '/' + '\d{4} ' + milhours + ':' + minutes,
fffd96b7 1191 'description': "DD/MM/YYYY 24Hr Time\n(w/o seconds)"
d14a1e28 1192 },
fffd96b7 1193 "EUDATE24HRTIMEDDMMYYYY.HHMM": {
d14a1e28
RD
1194 'mask': "##.##.#### ##:##",
1195 'formatcodes': 'DF',
1196 'validRegex': '^' + days + '.' + months + '.' + '\d{4} ' + milhours + ':' + minutes,
fffd96b7 1197 'description': "DD.MM.YYYY 24Hr Time\n(w/o seconds)"
d14a1e28
RD
1198 },
1199
1200 "TIMEHHMMSS": {
1201 'mask': "##:##:## AM",
1202 'excludeChars': am_pm_exclude,
1203 'formatcodes': 'TF!',
1204 'validRegex': '^' + hours + ':' + minutes + ':' + seconds + ' (A|P)M',
d4b73b1b 1205 'description': "HH:MM:SS (A|P)M\n(see TimeCtrl)"
d14a1e28
RD
1206 },
1207 "TIMEHHMM": {
1208 'mask': "##:## AM",
1209 'excludeChars': am_pm_exclude,
1210 'formatcodes': 'TF!',
1211 'validRegex': '^' + hours + ':' + minutes + ' (A|P)M',
d4b73b1b 1212 'description': "HH:MM (A|P)M\n(see TimeCtrl)"
d14a1e28 1213 },
fffd96b7 1214 "24HRTIMEHHMMSS": {
d14a1e28
RD
1215 'mask': "##:##:##",
1216 'formatcodes': 'TF',
1217 'validRegex': '^' + milhours + ':' + minutes + ':' + seconds,
fffd96b7 1218 'description': "24Hr HH:MM:SS\n(see TimeCtrl)"
d14a1e28 1219 },
fffd96b7 1220 "24HRTIMEHHMM": {
d14a1e28
RD
1221 'mask': "##:##",
1222 'formatcodes': 'TF',
1223 'validRegex': '^' + milhours + ':' + minutes,
fffd96b7 1224 'description': "24Hr HH:MM\n(see TimeCtrl)"
d14a1e28
RD
1225 },
1226 "USSOCIALSEC": {
1227 'mask': "###-##-####",
1228 'formatcodes': 'F',
1229 'validRegex': "\d{3}-\d{2}-\d{4}",
1230 'description': "Social Sec#"
1231 },
1232 "CREDITCARD": {
1233 'mask': "####-####-####-####",
1234 'formatcodes': 'F',
1235 'validRegex': "\d{4}-\d{4}-\d{4}-\d{4}",
1236 'description': "Credit Card"
1237 },
1238 "EXPDATEMMYY": {
1239 'mask': "##/##",
1240 'formatcodes': "F",
1241 'validRegex': "^" + months + "/\d\d",
1242 'description': "Expiration MM/YY"
1243 },
1244 "USZIP": {
1245 'mask': "#####",
1246 'formatcodes': 'F',
1247 'validRegex': "^\d{5}",
1248 'description': "US 5-digit zip code"
1249 },
1250 "USZIPPLUS4": {
1251 'mask': "#####-####",
1252 'formatcodes': 'F',
1253 'validRegex': "\d{5}-(\s{4}|\d{4})",
1254 'description': "US zip+4 code"
1255 },
1256 "PERCENT": {
1257 'mask': "0.##",
1258 'formatcodes': 'F',
1259 'validRegex': "^0.\d\d",
1260 'description': "Percentage"
1261 },
1262 "AGE": {
1263 'mask': "###",
1264 'formatcodes': "F",
1265 'validRegex': "^[1-9]{1} |[1-9][0-9] |1[0|1|2][0-9]",
1266 'description': "Age"
1267 },
1268 "EMAIL": {
1269 'mask': "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
1270 'excludeChars': " \\/*&%$#!+='\"",
1271 'formatcodes': "F>",
1272 'validRegex': "^\w+([\-\.]\w+)*@((([a-zA-Z0-9]+(\-[a-zA-Z0-9]+)*\.)+)[a-zA-Z]{2,4}|\[(\d|\d\d|(1\d\d|2[0-4]\d|25[0-5]))(\.(\d|\d\d|(1\d\d|2[0-4]\d|25[0-5]))){3}\]) *$",
1273 'description': "Email address"
1274 },
1275 "IPADDR": {
1276 'mask': "###.###.###.###",
1277 'formatcodes': 'F_Sr',
1278 'validRegex': "( \d| \d\d|(1\d\d|2[0-4]\d|25[0-5]))(\.( \d| \d\d|(1\d\d|2[0-4]\d|25[0-5]))){3}",
d4b73b1b 1279 'description': "IP Address\n(see IpAddrCtrl)"
d14a1e28
RD
1280 }
1281 }
1282
1283# build demo-friendly dictionary of descriptions of autoformats
1284autoformats = []
1285for key, value in masktags.items():
1286 autoformats.append((key, value['description']))
1287autoformats.sort()
1288
1289## ---------- ---------- ---------- ---------- ---------- ---------- ----------
1290
1291class Field:
f54a36bb
RD
1292 """
1293 This class manages the individual fields in a masked edit control.
1294 Each field has a zero-based index, indicating its position in the
1295 control, an extent, an associated mask, and a plethora of optional
1296 parameters. Fields can be instantiated and then associated with
1297 parent masked controls, in order to provide field-specific configuration.
1298 Alternatively, fields will be implicitly created by the parent control
1299 if not provided at construction, at which point, the fields can then
1300 manipulated by the controls .SetFieldParameters() method.
1301 """
d14a1e28
RD
1302 valid_params = {
1303 'index': None, ## which field of mask; set by parent control.
1304 'mask': "", ## mask chars for this field
1305 'extent': (), ## (edit start, edit_end) of field; set by parent control.
1306 'formatcodes': "", ## codes indicating formatting options for the control
1307 'fillChar': ' ', ## used as initial value for each mask position if initial value is not given
1308 'groupChar': ',', ## used with numeric fields; indicates what char groups 3-tuple digits
1309 'decimalChar': '.', ## used with numeric fields; indicates what char separates integer from fraction
1310 'shiftDecimalChar': '>', ## used with numeric fields, indicates what is above the decimal point char on keyboard
1311 'useParensForNegatives': False, ## used with numeric fields, indicates that () should be used vs. - to show negative numbers.
1312 'defaultValue': "", ## use if you want different positional defaults vs. all the same fillChar
1313 'excludeChars': "", ## optional string of chars to exclude even if main mask type does
1314 'includeChars': "", ## optional string of chars to allow even if main mask type doesn't
1315 'validRegex': "", ## optional regular expression to use to validate the control
1316 'validRange': (), ## Optional hi-low range for numerics
1317 'choices': [], ## Optional list for character expressions
1318 'choiceRequired': False, ## If choices supplied this specifies if valid value must be in the list
1319 'compareNoCase': False, ## Optional flag to indicate whether or not to use case-insensitive list search
1320 'autoSelect': False, ## Set to True to try auto-completion on each keystroke:
1321 'validFunc': None, ## Optional function for defining additional, possibly dynamic validation constraints on contrl
1322 'validRequired': False, ## Set to True to disallow input that results in an invalid value
1323 'emptyInvalid': False, ## Set to True to make EMPTY = INVALID
1324 'description': "", ## primarily for autoformats, but could be useful elsewhere
5fe636c6 1325 'raiseOnInvalidPaste': False, ## if True, paste into field will cause ValueError
d14a1e28
RD
1326 }
1327
1328 # This list contains all parameters that when set at the control level should
1329 # propagate down to each field:
1330 propagating_params = ('fillChar', 'groupChar', 'decimalChar','useParensForNegatives',
5fe636c6 1331 'compareNoCase', 'emptyInvalid', 'validRequired', 'raiseOnInvalidPaste')
d14a1e28
RD
1332
1333 def __init__(self, **kwargs):
1334 """
1335 This is the "constructor" for setting up parameters for fields.
1336 a field_index of -1 is used to indicate "the entire control."
1337 """
fffd96b7 1338#### dbg('Field::Field', indent=1)
d14a1e28
RD
1339 # Validate legitimate set of parameters:
1340 for key in kwargs.keys():
1341 if key not in Field.valid_params.keys():
fffd96b7 1342#### dbg(indent=0)
5fe636c6
RD
1343 ae = AttributeError('invalid parameter "%s"' % (key))
1344 ae.attribute = key
1345 raise ae
d14a1e28
RD
1346
1347 # Set defaults for each parameter for this instance, and fully
1348 # populate initial parameter list for configuration:
1349 for key, value in Field.valid_params.items():
1350 setattr(self, '_' + key, copy.copy(value))
1351 if not kwargs.has_key(key):
1352 kwargs[key] = copy.copy(value)
1353
1354 self._autoCompleteIndex = -1
1355 self._SetParameters(**kwargs)
1356 self._ValidateParameters(**kwargs)
1357
fffd96b7 1358#### dbg(indent=0)
d14a1e28
RD
1359
1360
1361 def _SetParameters(self, **kwargs):
1362 """
1363 This function can be used to set individual or multiple parameters for
1364 a masked edit field parameter after construction.
1365 """
fffd96b7
RD
1366## dbg(suspend=1)
1367## dbg('maskededit.Field::_SetParameters', indent=1)
d14a1e28
RD
1368 # Validate keyword arguments:
1369 for key in kwargs.keys():
1370 if key not in Field.valid_params.keys():
fffd96b7 1371## dbg(indent=0, suspend=0)
5fe636c6
RD
1372 ae = AttributeError('invalid keyword argument "%s"' % key)
1373 ae.attribute = key
1374 raise ae
d14a1e28 1375
f54a36bb 1376## if self._index is not None: dbg('field index:', self._index)
fffd96b7 1377## dbg('parameters:', indent=1)
d14a1e28 1378 for key, value in kwargs.items():
fffd96b7
RD
1379## dbg('%s:' % key, value)
1380 pass
1381## dbg(indent=0)
1382
d14a1e28
RD
1383
1384 old_fillChar = self._fillChar # store so we can change choice lists accordingly if it changes
1385
1386 # First, Assign all parameters specified:
1387 for key in Field.valid_params.keys():
1388 if kwargs.has_key(key):
1389 setattr(self, '_' + key, kwargs[key] )
1390
1391 if kwargs.has_key('formatcodes'): # (set/changed)
1392 self._forceupper = '!' in self._formatcodes
1393 self._forcelower = '^' in self._formatcodes
1394 self._groupdigits = ',' in self._formatcodes
1395 self._okSpaces = '_' in self._formatcodes
1396 self._padZero = '0' in self._formatcodes
1397 self._autofit = 'F' in self._formatcodes
1398 self._insertRight = 'r' in self._formatcodes
1399 self._allowInsert = '>' in self._formatcodes
1400 self._alignRight = 'R' in self._formatcodes or 'r' in self._formatcodes
1401 self._moveOnFieldFull = not '<' in self._formatcodes
1402 self._selectOnFieldEntry = 'S' in self._formatcodes
1403
1404 if kwargs.has_key('groupChar'):
1405 self._groupChar = kwargs['groupChar']
1406 if kwargs.has_key('decimalChar'):
1407 self._decimalChar = kwargs['decimalChar']
1408 if kwargs.has_key('shiftDecimalChar'):
1409 self._shiftDecimalChar = kwargs['shiftDecimalChar']
1410
1411 if kwargs.has_key('formatcodes') or kwargs.has_key('validRegex'):
1412 self._regexMask = 'V' in self._formatcodes and self._validRegex
1413
1414 if kwargs.has_key('fillChar'):
1415 self._old_fillChar = old_fillChar
fffd96b7 1416#### dbg("self._old_fillChar: '%s'" % self._old_fillChar)
d14a1e28
RD
1417
1418 if kwargs.has_key('mask') or kwargs.has_key('validRegex'): # (set/changed)
f54a36bb 1419 self._isInt = _isInteger(self._mask)
fffd96b7 1420## dbg('isInt?', self._isInt, 'self._mask:"%s"' % self._mask)
d14a1e28 1421
fffd96b7 1422## dbg(indent=0, suspend=0)
d14a1e28
RD
1423
1424
1425 def _ValidateParameters(self, **kwargs):
1426 """
1427 This function can be used to validate individual or multiple parameters for
1428 a masked edit field parameter after construction.
1429 """
fffd96b7
RD
1430## dbg(suspend=1)
1431## dbg('maskededit.Field::_ValidateParameters', indent=1)
f54a36bb 1432## if self._index is not None: dbg('field index:', self._index)
fffd96b7 1433#### dbg('parameters:', indent=1)
d14a1e28 1434## for key, value in kwargs.items():
fffd96b7
RD
1435#### dbg('%s:' % key, value)
1436#### dbg(indent=0)
1437#### dbg("self._old_fillChar: '%s'" % self._old_fillChar)
d14a1e28
RD
1438
1439 # Verify proper numeric format params:
1440 if self._groupdigits and self._groupChar == self._decimalChar:
fffd96b7 1441## dbg(indent=0, suspend=0)
5fe636c6
RD
1442 ae = AttributeError("groupChar '%s' cannot be the same as decimalChar '%s'" % (self._groupChar, self._decimalChar))
1443 ae.attribute = self._groupChar
1444 raise ae
d14a1e28
RD
1445
1446
1447 # Now go do validation, semantic and inter-dependency parameter processing:
1448 if kwargs.has_key('choices') or kwargs.has_key('compareNoCase') or kwargs.has_key('choiceRequired'): # (set/changed)
1449
1450 self._compareChoices = [choice.strip() for choice in self._choices]
1451
1452 if self._compareNoCase and self._choices:
1453 self._compareChoices = [item.lower() for item in self._compareChoices]
1454
1455 if kwargs.has_key('choices'):
1456 self._autoCompleteIndex = -1
1457
1458
1459 if kwargs.has_key('validRegex'): # (set/changed)
1460 if self._validRegex:
1461 try:
1462 if self._compareNoCase:
1463 self._filter = re.compile(self._validRegex, re.IGNORECASE)
1464 else:
1465 self._filter = re.compile(self._validRegex)
1466 except:
fffd96b7 1467## dbg(indent=0, suspend=0)
d14a1e28
RD
1468 raise TypeError('%s: validRegex "%s" not a legal regular expression' % (str(self._index), self._validRegex))
1469 else:
1470 self._filter = None
1471
1472 if kwargs.has_key('validRange'): # (set/changed)
1473 self._hasRange = False
1474 self._rangeHigh = 0
1475 self._rangeLow = 0
1476 if self._validRange:
1477 if type(self._validRange) != types.TupleType or len( self._validRange )!= 2 or self._validRange[0] > self._validRange[1]:
fffd96b7 1478## dbg(indent=0, suspend=0)
d14a1e28
RD
1479 raise TypeError('%s: validRange %s parameter must be tuple of form (a,b) where a <= b'
1480 % (str(self._index), repr(self._validRange)) )
1481
1482 self._hasRange = True
1483 self._rangeLow = self._validRange[0]
1484 self._rangeHigh = self._validRange[1]
1485
1486 if kwargs.has_key('choices') or (len(self._choices) and len(self._choices[0]) != len(self._mask)): # (set/changed)
1487 self._hasList = False
1488 if self._choices and type(self._choices) not in (types.TupleType, types.ListType):
fffd96b7 1489## dbg(indent=0, suspend=0)
d14a1e28
RD
1490 raise TypeError('%s: choices must be a sequence of strings' % str(self._index))
1491 elif len( self._choices) > 0:
1492 for choice in self._choices:
1493 if type(choice) not in (types.StringType, types.UnicodeType):
fffd96b7 1494## dbg(indent=0, suspend=0)
d14a1e28
RD
1495 raise TypeError('%s: choices must be a sequence of strings' % str(self._index))
1496
1497 length = len(self._mask)
fffd96b7 1498## dbg('len(%s)' % self._mask, length, 'len(self._choices):', len(self._choices), 'length:', length, 'self._alignRight?', self._alignRight)
d14a1e28
RD
1499 if len(self._choices) and length:
1500 if len(self._choices[0]) > length:
1501 # changed mask without respecifying choices; readjust the width as appropriate:
1502 self._choices = [choice.strip() for choice in self._choices]
1503 if self._alignRight:
1504 self._choices = [choice.rjust( length ) for choice in self._choices]
1505 else:
1506 self._choices = [choice.ljust( length ) for choice in self._choices]
fffd96b7 1507## dbg('aligned choices:', self._choices)
d14a1e28
RD
1508
1509 if hasattr(self, '_template'):
1510 # Verify each choice specified is valid:
1511 for choice in self._choices:
1512 if self.IsEmpty(choice) and not self._validRequired:
1513 # allow empty values even if invalid, (just colored differently)
1514 continue
1515 if not self.IsValid(choice):
fffd96b7 1516## dbg(indent=0, suspend=0)
5fe636c6
RD
1517 ve = ValueError('%s: "%s" is not a valid value for the control as specified.' % (str(self._index), choice))
1518 ve.value = choice
1519 raise ve
d14a1e28
RD
1520 self._hasList = True
1521
fffd96b7
RD
1522#### dbg("kwargs.has_key('fillChar')?", kwargs.has_key('fillChar'), "len(self._choices) > 0?", len(self._choices) > 0)
1523#### dbg("self._old_fillChar:'%s'" % self._old_fillChar, "self._fillChar: '%s'" % self._fillChar)
d14a1e28
RD
1524 if kwargs.has_key('fillChar') and len(self._choices) > 0:
1525 if kwargs['fillChar'] != ' ':
1526 self._choices = [choice.replace(' ', self._fillChar) for choice in self._choices]
1527 else:
1528 self._choices = [choice.replace(self._old_fillChar, self._fillChar) for choice in self._choices]
fffd96b7 1529## dbg('updated choices:', self._choices)
d14a1e28
RD
1530
1531
1532 if kwargs.has_key('autoSelect') and kwargs['autoSelect']:
1533 if not self._hasList:
fffd96b7 1534## dbg('no list to auto complete; ignoring "autoSelect=True"')
d14a1e28
RD
1535 self._autoSelect = False
1536
1537 # reset field validity assumption:
1538 self._valid = True
fffd96b7 1539## dbg(indent=0, suspend=0)
d14a1e28
RD
1540
1541
1542 def _GetParameter(self, paramname):
1543 """
1544 Routine for retrieving the value of any given parameter
1545 """
1546 if Field.valid_params.has_key(paramname):
1547 return getattr(self, '_' + paramname)
1548 else:
1549 TypeError('Field._GetParameter: invalid parameter "%s"' % key)
1550
1551
1552 def IsEmpty(self, slice):
1553 """
1554 Indicates whether the specified slice is considered empty for the
1555 field.
1556 """
fffd96b7 1557## dbg('Field::IsEmpty("%s")' % slice, indent=1)
d14a1e28 1558 if not hasattr(self, '_template'):
fffd96b7 1559## dbg(indent=0)
d14a1e28
RD
1560 raise AttributeError('_template')
1561
fffd96b7
RD
1562## dbg('self._template: "%s"' % self._template)
1563## dbg('self._defaultValue: "%s"' % str(self._defaultValue))
d14a1e28 1564 if slice == self._template and not self._defaultValue:
fffd96b7 1565## dbg(indent=0)
d14a1e28
RD
1566 return True
1567
1568 elif slice == self._template:
1569 empty = True
1570 for pos in range(len(self._template)):
fffd96b7 1571#### dbg('slice[%(pos)d] != self._fillChar?' %locals(), slice[pos] != self._fillChar[pos])
d14a1e28
RD
1572 if slice[pos] not in (' ', self._fillChar):
1573 empty = False
1574 break
fffd96b7 1575## dbg("IsEmpty? %(empty)d (do all mask chars == fillChar?)" % locals(), indent=0)
d14a1e28
RD
1576 return empty
1577 else:
fffd96b7 1578## dbg("IsEmpty? 0 (slice doesn't match template)", indent=0)
d14a1e28
RD
1579 return False
1580
1581
1582 def IsValid(self, slice):
1583 """
1584 Indicates whether the specified slice is considered a valid value for the
1585 field.
1586 """
fffd96b7
RD
1587## dbg(suspend=1)
1588## dbg('Field[%s]::IsValid("%s")' % (str(self._index), slice), indent=1)
d14a1e28
RD
1589 valid = True # assume true to start
1590
1591 if self.IsEmpty(slice):
fffd96b7 1592## dbg(indent=0, suspend=0)
d14a1e28
RD
1593 if self._emptyInvalid:
1594 return False
1595 else:
1596 return True
1597
1598 elif self._hasList and self._choiceRequired:
fffd96b7 1599## dbg("(member of list required)")
d14a1e28
RD
1600 # do case-insensitive match on list; strip surrounding whitespace from slice (already done for choices):
1601 if self._fillChar != ' ':
1602 slice = slice.replace(self._fillChar, ' ')
fffd96b7 1603## dbg('updated slice:"%s"' % slice)
d14a1e28
RD
1604 compareStr = slice.strip()
1605
1606 if self._compareNoCase:
1607 compareStr = compareStr.lower()
1608 valid = compareStr in self._compareChoices
1609
1610 elif self._hasRange and not self.IsEmpty(slice):
fffd96b7 1611## dbg('validating against range')
d14a1e28
RD
1612 try:
1613 # allow float as well as int ranges (int comparisons for free.)
1614 valid = self._rangeLow <= float(slice) <= self._rangeHigh
1615 except:
1616 valid = False
1617
1618 elif self._validRegex and self._filter:
fffd96b7 1619## dbg('validating against regex')
d14a1e28
RD
1620 valid = (re.match( self._filter, slice) is not None)
1621
1622 if valid and self._validFunc:
fffd96b7 1623## dbg('validating against supplied function')
d14a1e28 1624 valid = self._validFunc(slice)
fffd96b7 1625## dbg('valid?', valid, indent=0, suspend=0)
d14a1e28
RD
1626 return valid
1627
1628
1629 def _AdjustField(self, slice):
1630 """ 'Fixes' an integer field. Right or left-justifies, as required."""
fffd96b7 1631## dbg('Field::_AdjustField("%s")' % slice, indent=1)
d14a1e28 1632 length = len(self._mask)
fffd96b7
RD
1633#### dbg('length(self._mask):', length)
1634#### dbg('self._useParensForNegatives?', self._useParensForNegatives)
d14a1e28
RD
1635 if self._isInt:
1636 if self._useParensForNegatives:
1637 signpos = slice.find('(')
1638 right_signpos = slice.find(')')
1639 intStr = slice.replace('(', '').replace(')', '') # drop sign, if any
1640 else:
1641 signpos = slice.find('-')
1642 intStr = slice.replace( '-', '' ) # drop sign, if any
1643 right_signpos = -1
1644
1645 intStr = intStr.replace(' ', '') # drop extra spaces
1646 intStr = string.replace(intStr,self._fillChar,"") # drop extra fillchars
1647 intStr = string.replace(intStr,"-","") # drop sign, if any
1648 intStr = string.replace(intStr, self._groupChar, "") # lose commas/dots
fffd96b7 1649#### dbg('intStr:"%s"' % intStr)
d14a1e28
RD
1650 start, end = self._extent
1651 field_len = end - start
1652 if not self._padZero and len(intStr) != field_len and intStr.strip():
1653 intStr = str(long(intStr))
fffd96b7
RD
1654#### dbg('raw int str: "%s"' % intStr)
1655#### dbg('self._groupdigits:', self._groupdigits, 'self._formatcodes:', self._formatcodes)
d14a1e28
RD
1656 if self._groupdigits:
1657 new = ''
1658 cnt = 1
1659 for i in range(len(intStr)-1, -1, -1):
1660 new = intStr[i] + new
1661 if (cnt) % 3 == 0:
1662 new = self._groupChar + new
1663 cnt += 1
1664 if new and new[0] == self._groupChar:
1665 new = new[1:]
1666 if len(new) <= length:
1667 # expanded string will still fit and leave room for sign:
1668 intStr = new
1669 # else... leave it without the commas...
1670
fffd96b7
RD
1671## dbg('padzero?', self._padZero)
1672## dbg('len(intStr):', len(intStr), 'field length:', length)
d14a1e28
RD
1673 if self._padZero and len(intStr) < length:
1674 intStr = '0' * (length - len(intStr)) + intStr
1675 if signpos != -1: # we had a sign before; restore it
1676 if self._useParensForNegatives:
1677 intStr = '(' + intStr[1:]
1678 if right_signpos != -1:
1679 intStr += ')'
1680 else:
1681 intStr = '-' + intStr[1:]
1682 elif signpos != -1 and slice[0:signpos].strip() == '': # - was before digits
1683 if self._useParensForNegatives:
1684 intStr = '(' + intStr
1685 if right_signpos != -1:
1686 intStr += ')'
1687 else:
1688 intStr = '-' + intStr
1689 elif right_signpos != -1:
1690 # must have had ')' but '(' was before field; re-add ')'
1691 intStr += ')'
1692 slice = intStr
1693
1694 slice = slice.strip() # drop extra spaces
1695
1696 if self._alignRight: ## Only if right-alignment is enabled
1697 slice = slice.rjust( length )
1698 else:
1699 slice = slice.ljust( length )
1700 if self._fillChar != ' ':
1701 slice = slice.replace(' ', self._fillChar)
fffd96b7 1702## dbg('adjusted slice: "%s"' % slice, indent=0)
d14a1e28
RD
1703 return slice
1704
1705
1706## ---------- ---------- ---------- ---------- ---------- ---------- ----------
1707
d4b73b1b 1708class MaskedEditMixin:
d14a1e28
RD
1709 """
1710 This class allows us to abstract the masked edit functionality that could
89f9e172 1711 be associated with any text entry control. (eg. wx.TextCtrl, wx.ComboBox, etc.)
f54a36bb 1712 It forms the basis for all of the lib.masked controls.
d14a1e28
RD
1713 """
1714 valid_ctrl_params = {
1715 'mask': 'XXXXXXXXXXXXX', ## mask string for formatting this control
1716 'autoformat': "", ## optional auto-format code to set format from masktags dictionary
1717 'fields': {}, ## optional list/dictionary of maskededit.Field class instances, indexed by position in mask
1718 'datestyle': 'MDY', ## optional date style for date-type values. Can trigger autocomplete year
1719 'autoCompleteKeycodes': [], ## Optional list of additional keycodes which will invoke field-auto-complete
1720 'useFixedWidthFont': True, ## Use fixed-width font instead of default for base control
f54a36bb 1721 'defaultEncoding': 'latin1', ## optional argument to indicate unicode codec to use (unicode ctrls only)
d14a1e28
RD
1722 'retainFieldValidation': False, ## Set this to true if setting control-level parameters independently,
1723 ## from field validation constraints
1724 'emptyBackgroundColour': "White",
1725 'validBackgroundColour': "White",
1726 'invalidBackgroundColour': "Yellow",
1727 'foregroundColour': "Black",
1728 'signedForegroundColour': "Red",
1729 'demo': False}
1730
1731
c878ceea 1732 def __init__(self, name = 'MaskedEdit', **kwargs):
d14a1e28
RD
1733 """
1734 This is the "constructor" for setting up the mixin variable parameters for the composite class.
1735 """
1736
1737 self.name = name
1738
1739 # set up flag for doing optional things to base control if possible
1740 if not hasattr(self, 'controlInitialized'):
1741 self.controlInitialized = False
1742
1743 # Set internal state var for keeping track of whether or not a character
1744 # action results in a modification of the control, since .SetValue()
1745 # doesn't modify the base control's internal state:
1746 self.modified = False
1747 self._previous_mask = None
1748
1749 # Validate legitimate set of parameters:
1750 for key in kwargs.keys():
d4b73b1b 1751 if key.replace('Color', 'Colour') not in MaskedEditMixin.valid_ctrl_params.keys() + Field.valid_params.keys():
d14a1e28
RD
1752 raise TypeError('%s: invalid parameter "%s"' % (name, key))
1753
1754 ## Set up dictionary that can be used by subclasses to override or add to default
1755 ## behavior for individual characters. Derived subclasses needing to change
1756 ## default behavior for keys can either redefine the default functions for the
1757 ## common keys or add functions for specific keys to this list. Each function
1758 ## added should take the key event as argument, and return False if the key
1759 ## requires no further processing.
1760 ##
1761 ## Initially populated with navigation and function control keys:
1762 self._keyhandlers = {
1763 # default navigation keys and handlers:
b881fc78
RD
1764 wx.WXK_BACK: self._OnErase,
1765 wx.WXK_LEFT: self._OnArrow,
1766 wx.WXK_RIGHT: self._OnArrow,
1767 wx.WXK_UP: self._OnAutoCompleteField,
1768 wx.WXK_DOWN: self._OnAutoCompleteField,
1769 wx.WXK_TAB: self._OnChangeField,
1770 wx.WXK_HOME: self._OnHome,
1771 wx.WXK_END: self._OnEnd,
1772 wx.WXK_RETURN: self._OnReturn,
1773 wx.WXK_PRIOR: self._OnAutoCompleteField,
1774 wx.WXK_NEXT: self._OnAutoCompleteField,
d14a1e28
RD
1775
1776 # default function control keys and handlers:
35d8bffe
RD
1777 wx.WXK_DELETE: self._OnDelete,
1778 wx.WXK_INSERT: self._OnInsert,
d14a1e28
RD
1779 WXK_CTRL_A: self._OnCtrl_A,
1780 WXK_CTRL_C: self._OnCtrl_C,
1781 WXK_CTRL_S: self._OnCtrl_S,
1782 WXK_CTRL_V: self._OnCtrl_V,
1783 WXK_CTRL_X: self._OnCtrl_X,
1784 WXK_CTRL_Z: self._OnCtrl_Z,
1785 }
1786
1787 ## bind standard navigational and control keycodes to this instance,
1788 ## so that they can be augmented and/or changed in derived classes:
1789 self._nav = list(nav)
1790 self._control = list(control)
1791
1792 ## Dynamically evaluate and store string constants for mask chars
1793 ## so that locale settings can be made after this module is imported
1794 ## and the controls created after that is done can allow the
1795 ## appropriate characters:
1796 self.maskchardict = {
1797 '#': string.digits,
1798 'A': string.uppercase,
1799 'a': string.lowercase,
1800 'X': string.letters + string.punctuation + string.digits,
1801 'C': string.letters,
1802 'N': string.letters + string.digits,
f54a36bb 1803 '&': string.punctuation,
5fe636c6 1804 '*': ansichars # to give it a value, but now allows any non-wxcontrol character
d14a1e28
RD
1805 }
1806
d4b73b1b 1807 ## self._ignoreChange is used by MaskedComboBox, because
d14a1e28
RD
1808 ## of the hack necessary to determine the selection; it causes
1809 ## EVT_TEXT messages from the combobox to be ignored if set.
1810 self._ignoreChange = False
1811
1812 # These are used to keep track of previous value, for undo functionality:
1813 self._curValue = None
1814 self._prevValue = None
1815
1816 self._valid = True
1817
1818 # Set defaults for each parameter for this instance, and fully
1819 # populate initial parameter list for configuration:
d4b73b1b 1820 for key, value in MaskedEditMixin.valid_ctrl_params.items():
d14a1e28
RD
1821 setattr(self, '_' + key, copy.copy(value))
1822 if not kwargs.has_key(key):
fffd96b7 1823#### dbg('%s: "%s"' % (key, repr(value)))
d14a1e28
RD
1824 kwargs[key] = copy.copy(value)
1825
1826 # Create a "field" that holds global parameters for control constraints
1827 self._ctrl_constraints = self._fields[-1] = Field(index=-1)
1828 self.SetCtrlParameters(**kwargs)
1829
1830
1831
1832 def SetCtrlParameters(self, **kwargs):
1833 """
1834 This public function can be used to set individual or multiple masked edit
f54a36bb
RD
1835 parameters after construction. (See maskededit module overview for the list
1836 of valid parameters.)
d14a1e28 1837 """
fffd96b7
RD
1838## dbg(suspend=1)
1839## dbg('MaskedEditMixin::SetCtrlParameters', indent=1)
1840#### dbg('kwargs:', indent=1)
d14a1e28 1841## for key, value in kwargs.items():
fffd96b7
RD
1842#### dbg(key, '=', value)
1843#### dbg(indent=0)
d14a1e28
RD
1844
1845 # Validate keyword arguments:
1846 constraint_kwargs = {}
1847 ctrl_kwargs = {}
1848 for key, value in kwargs.items():
1849 key = key.replace('Color', 'Colour') # for b-c, and standard wxPython spelling
d4b73b1b 1850 if key not in MaskedEditMixin.valid_ctrl_params.keys() + Field.valid_params.keys():
fffd96b7 1851## dbg(indent=0, suspend=0)
5fe636c6
RD
1852 ae = AttributeError('Invalid keyword argument "%s" for control "%s"' % (key, self.name))
1853 ae.attribute = key
1854 raise ae
d14a1e28
RD
1855 elif key in Field.valid_params.keys():
1856 constraint_kwargs[key] = value
1857 else:
1858 ctrl_kwargs[key] = value
1859
1860 mask = None
1861 reset_args = {}
1862
1863 if ctrl_kwargs.has_key('autoformat'):
1864 autoformat = ctrl_kwargs['autoformat']
1865 else:
1866 autoformat = None
1867
fffd96b7
RD
1868 # handle "parochial name" backward compatibility:
1869 if autoformat and autoformat.find('MILTIME') != -1 and autoformat not in masktags.keys():
1870 autoformat = autoformat.replace('MILTIME', '24HRTIME')
1871
d14a1e28 1872 if autoformat != self._autoformat and autoformat in masktags.keys():
fffd96b7 1873## dbg('autoformat:', autoformat)
d14a1e28
RD
1874 self._autoformat = autoformat
1875 mask = masktags[self._autoformat]['mask']
1876 # gather rest of any autoformat parameters:
1877 for param, value in masktags[self._autoformat].items():
1878 if param == 'mask': continue # (must be present; already accounted for)
1879 constraint_kwargs[param] = value
1880
1881 elif autoformat and not autoformat in masktags.keys():
5fe636c6
RD
1882 ae = AttributeError('invalid value for autoformat parameter: %s' % repr(autoformat))
1883 ae.attribute = autoformat
1884 raise ae
d14a1e28 1885 else:
fffd96b7 1886## dbg('autoformat not selected')
d14a1e28
RD
1887 if kwargs.has_key('mask'):
1888 mask = kwargs['mask']
fffd96b7 1889## dbg('mask:', mask)
d14a1e28
RD
1890
1891 ## Assign style flags
1892 if mask is None:
fffd96b7 1893## dbg('preserving previous mask')
d14a1e28
RD
1894 mask = self._previous_mask # preserve previous mask
1895 else:
fffd96b7 1896## dbg('mask (re)set')
d14a1e28
RD
1897 reset_args['reset_mask'] = mask
1898 constraint_kwargs['mask'] = mask
1899
1900 # wipe out previous fields; preserve new control-level constraints
1901 self._fields = {-1: self._ctrl_constraints}
1902
1903
1904 if ctrl_kwargs.has_key('fields'):
1905 # do field parameter type validation, and conversion to internal dictionary
1906 # as appropriate:
1907 fields = ctrl_kwargs['fields']
1908 if type(fields) in (types.ListType, types.TupleType):
1909 for i in range(len(fields)):
1910 field = fields[i]
1911 if not isinstance(field, Field):
fffd96b7 1912## dbg(indent=0, suspend=0)
5fe636c6 1913 raise TypeError('invalid type for field parameter: %s' % repr(field))
d14a1e28
RD
1914 self._fields[i] = field
1915
1916 elif type(fields) == types.DictionaryType:
1917 for index, field in fields.items():
1918 if not isinstance(field, Field):
fffd96b7 1919## dbg(indent=0, suspend=0)
5fe636c6 1920 raise TypeError('invalid type for field parameter: %s' % repr(field))
d14a1e28
RD
1921 self._fields[index] = field
1922 else:
fffd96b7 1923## dbg(indent=0, suspend=0)
5fe636c6 1924 raise TypeError('fields parameter must be a list or dictionary; not %s' % repr(fields))
d14a1e28
RD
1925
1926 # Assign constraint parameters for entire control:
fffd96b7 1927#### dbg('control constraints:', indent=1)
d14a1e28 1928## for key, value in constraint_kwargs.items():
fffd96b7
RD
1929#### dbg('%s:' % key, value)
1930#### dbg(indent=0)
d14a1e28
RD
1931
1932 # determine if changing parameters that should affect the entire control:
d4b73b1b 1933 for key in MaskedEditMixin.valid_ctrl_params.keys():
d14a1e28
RD
1934 if key in ( 'mask', 'fields' ): continue # (processed separately)
1935 if ctrl_kwargs.has_key(key):
1936 setattr(self, '_' + key, ctrl_kwargs[key])
1937
1938 # Validate color parameters, converting strings to named colors and validating
1939 # result if appropriate:
1940 for key in ('emptyBackgroundColour', 'invalidBackgroundColour', 'validBackgroundColour',
1941 'foregroundColour', 'signedForegroundColour'):
1942 if ctrl_kwargs.has_key(key):
1943 if type(ctrl_kwargs[key]) in (types.StringType, types.UnicodeType):
b881fc78 1944 c = wx.NamedColour(ctrl_kwargs[key])
d14a1e28
RD
1945 if c.Get() == (-1, -1, -1):
1946 raise TypeError('%s not a legal color specification for %s' % (repr(ctrl_kwargs[key]), key))
1947 else:
1948 # replace attribute with wxColour object:
1949 setattr(self, '_' + key, c)
1950 # attach a python dynamic attribute to wxColour for debug printouts
1951 c._name = ctrl_kwargs[key]
1952
b881fc78 1953 elif type(ctrl_kwargs[key]) != type(wx.BLACK):
d14a1e28
RD
1954 raise TypeError('%s not a legal color specification for %s' % (repr(ctrl_kwargs[key]), key))
1955
1956
fffd96b7 1957## dbg('self._retainFieldValidation:', self._retainFieldValidation)
d14a1e28
RD
1958 if not self._retainFieldValidation:
1959 # Build dictionary of any changing parameters which should be propagated to the
1960 # component fields:
1961 for arg in Field.propagating_params:
fffd96b7
RD
1962#### dbg('kwargs.has_key(%s)?' % arg, kwargs.has_key(arg))
1963#### dbg('getattr(self._ctrl_constraints, _%s)?' % arg, getattr(self._ctrl_constraints, '_'+arg))
d14a1e28 1964 reset_args[arg] = kwargs.has_key(arg) and kwargs[arg] != getattr(self._ctrl_constraints, '_'+arg)
fffd96b7 1965#### dbg('reset_args[%s]?' % arg, reset_args[arg])
d14a1e28
RD
1966
1967 # Set the control-level constraints:
1968 self._ctrl_constraints._SetParameters(**constraint_kwargs)
1969
1970 # This routine does the bulk of the interdependent parameter processing, determining
1971 # the field extents of the mask if changed, resetting parameters as appropriate,
1972 # determining the overall template value for the control, etc.
1973 self._configure(mask, **reset_args)
1974
1975 # now that we've propagated the field constraints and mask portions to the
1976 # various fields, validate the constraints
1977 self._ctrl_constraints._ValidateParameters(**constraint_kwargs)
1978
1979 # Validate that all choices for given fields are at least of the
1980 # necessary length, and that they all would be valid pastes if pasted
1981 # into their respective fields:
fffd96b7 1982#### dbg('validating choices')
d14a1e28
RD
1983 self._validateChoices()
1984
1985
1986 self._autofit = self._ctrl_constraints._autofit
1987 self._isNeg = False
1988
f54a36bb
RD
1989 self._isDate = 'D' in self._ctrl_constraints._formatcodes and _isDateType(mask)
1990 self._isTime = 'T' in self._ctrl_constraints._formatcodes and _isTimeType(mask)
d14a1e28
RD
1991 if self._isDate:
1992 # Set _dateExtent, used in date validation to locate date in string;
1993 # always set as though year will be 4 digits, even if mask only has
1994 # 2 digits, so we can always properly process the intended year for
1995 # date validation (leap years, etc.)
1996 if self._mask.find('CCC') != -1: self._dateExtent = 11
1997 else: self._dateExtent = 10
1998
1999 self._4digityear = len(self._mask) > 8 and self._mask[9] == '#'
2000
2001 if self._isDate and self._autoformat:
2002 # Auto-decide datestyle:
2003 if self._autoformat.find('MDDY') != -1: self._datestyle = 'MDY'
2004 elif self._autoformat.find('YMMD') != -1: self._datestyle = 'YMD'
2005 elif self._autoformat.find('YMMMD') != -1: self._datestyle = 'YMD'
2006 elif self._autoformat.find('DMMY') != -1: self._datestyle = 'DMY'
2007 elif self._autoformat.find('DMMMY') != -1: self._datestyle = 'DMY'
2008
fffd96b7
RD
2009 # Give derived controls a chance to react to parameter changes before
2010 # potentially changing current value of the control.
2011 self._OnCtrlParametersChanged()
d14a1e28
RD
2012
2013 if self.controlInitialized:
2014 # Then the base control is available for configuration;
2015 # take action on base control based on new settings, as appropriate.
2016 if kwargs.has_key('useFixedWidthFont'):
2017 # Set control font - fixed width by default
2018 self._setFont()
2019
2020 if reset_args.has_key('reset_mask'):
fffd96b7 2021## dbg('reset mask')
d14a1e28
RD
2022 curvalue = self._GetValue()
2023 if curvalue.strip():
2024 try:
fffd96b7 2025## dbg('attempting to _SetInitialValue(%s)' % self._GetValue())
d14a1e28
RD
2026 self._SetInitialValue(self._GetValue())
2027 except Exception, e:
fffd96b7
RD
2028## dbg('exception caught:', e)
2029## dbg("current value doesn't work; attempting to reset to template")
d14a1e28
RD
2030 self._SetInitialValue()
2031 else:
fffd96b7 2032## dbg('attempting to _SetInitialValue() with template')
d14a1e28
RD
2033 self._SetInitialValue()
2034
2035 elif kwargs.has_key('useParensForNegatives'):
2036 newvalue = self._getSignedValue()[0]
2037
2038 if newvalue is not None:
2039 # Adjust for new mask:
2040 if len(newvalue) < len(self._mask):
2041 newvalue += ' '
2042 elif len(newvalue) > len(self._mask):
2043 if newvalue[-1] in (' ', ')'):
2044 newvalue = newvalue[:-1]
2045
fffd96b7 2046## dbg('reconfiguring value for parens:"%s"' % newvalue)
d14a1e28
RD
2047 self._SetValue(newvalue)
2048
2049 if self._prevValue != newvalue:
2050 self._prevValue = newvalue # disallow undo of sign type
2051
2052 if self._autofit:
339983ff 2053## dbg('calculated size:', self._CalcSize())
3d7d51fa 2054 self.SetClientSize(self._CalcSize())
339983ff
RD
2055 width = self.GetSize().width
2056 height = self.GetBestSize().height
2057## dbg('setting client size to:', (width, height))
170acdc9 2058 self.SetInitialSize((width, height))
d14a1e28
RD
2059
2060 # Set value/type-specific formatting
2061 self._applyFormatting()
fffd96b7 2062## dbg(indent=0, suspend=0)
d14a1e28
RD
2063
2064 def SetMaskParameters(self, **kwargs):
f54a36bb 2065 """ old name for the SetCtrlParameters function (DEPRECATED)"""
d14a1e28
RD
2066 return self.SetCtrlParameters(**kwargs)
2067
2068
2069 def GetCtrlParameter(self, paramname):
2070 """
2071 Routine for retrieving the value of any given parameter
2072 """
d4b73b1b 2073 if MaskedEditMixin.valid_ctrl_params.has_key(paramname.replace('Color','Colour')):
d14a1e28
RD
2074 return getattr(self, '_' + paramname.replace('Color', 'Colour'))
2075 elif Field.valid_params.has_key(paramname):
2076 return self._ctrl_constraints._GetParameter(paramname)
2077 else:
2078 TypeError('"%s".GetCtrlParameter: invalid parameter "%s"' % (self.name, paramname))
2079
2080 def GetMaskParameter(self, paramname):
f54a36bb 2081 """ old name for the GetCtrlParameters function (DEPRECATED)"""
d14a1e28
RD
2082 return self.GetCtrlParameter(paramname)
2083
2084
fffd96b7
RD
2085## This idea worked, but Boa was unable to use this solution...
2086## def _attachMethod(self, func):
2087## import new
2088## setattr(self, func.__name__, new.instancemethod(func, self, self.__class__))
2089##
2090##
2091## def _DefinePropertyFunctions(exposed_params):
2092## for param in exposed_params:
2093## propname = param[0].upper() + param[1:]
2094##
2095## exec('def Set%s(self, value): self.SetCtrlParameters(%s=value)' % (propname, param))
2096## exec('def Get%s(self): return self.GetCtrlParameter("%s")''' % (propname, param))
2097## self._attachMethod(locals()['Set%s' % propname])
2098## self._attachMethod(locals()['Get%s' % propname])
2099##
2100## if param.find('Colour') != -1:
2101## # add non-british spellings, for backward-compatibility
2102## propname.replace('Colour', 'Color')
2103##
2104## exec('def Set%s(self, value): self.SetCtrlParameters(%s=value)' % (propname, param))
2105## exec('def Get%s(self): return self.GetCtrlParameter("%s")''' % (propname, param))
2106## self._attachMethod(locals()['Set%s' % propname])
2107## self._attachMethod(locals()['Get%s' % propname])
2108##
d14a1e28
RD
2109
2110
2111 def SetFieldParameters(self, field_index, **kwargs):
2112 """
2113 Routine provided to modify the parameters of a given field.
2114 Because changes to fields can affect the overall control,
2115 direct access to the fields is prevented, and the control
2116 is always "reconfigured" after setting a field parameter.
f54a36bb
RD
2117 (See maskededit module overview for the list of valid field-level
2118 parameters.)
d14a1e28
RD
2119 """
2120 if field_index not in self._field_indices:
5fe636c6
RD
2121 ie = IndexError('%s is not a valid field for control "%s".' % (str(field_index), self.name))
2122 ie.index = field_index
2123 raise ie
d14a1e28
RD
2124 # set parameters as requested:
2125 self._fields[field_index]._SetParameters(**kwargs)
2126
2127 # Possibly reprogram control template due to resulting changes, and ensure
2128 # control-level params are still propagated to fields:
2129 self._configure(self._previous_mask)
2130 self._fields[field_index]._ValidateParameters(**kwargs)
2131
2132 if self.controlInitialized:
2133 if kwargs.has_key('fillChar') or kwargs.has_key('defaultValue'):
2134 self._SetInitialValue()
2135
2136 if self._autofit:
339983ff
RD
2137 # this is tricky, because, as Robin explains:
2138 # "Basically there are two sizes to deal with, that are potentially
2139 # different. The client size is the inside size and may, depending
2140 # on platform, exclude the borders and such. The normal size is
2141 # the outside size that does include the borders. What you are
2142 # calculating (in _CalcSize) is the client size, but the sizers
2143 # deal with the full size and so that is the minimum size that
170acdc9 2144 # we need to set with SetInitialSize. The root of the problem is
339983ff
RD
2145 # that in _calcSize the current client size height is returned,
2146 # instead of a height based on the current font. So I suggest using
2147 # _calcSize to just get the width, and then use GetBestSize to
2148 # get the height."
3d7d51fa 2149 self.SetClientSize(self._CalcSize())
339983ff
RD
2150 width = self.GetSize().width
2151 height = self.GetBestSize().height
170acdc9 2152 self.SetInitialSize((width, height))
339983ff 2153
d14a1e28
RD
2154
2155 # Set value/type-specific formatting
2156 self._applyFormatting()
2157
2158
2159 def GetFieldParameter(self, field_index, paramname):
2160 """
2161 Routine provided for getting a parameter of an individual field.
2162 """
2163 if field_index not in self._field_indices:
5fe636c6
RD
2164 ie = IndexError('%s is not a valid field for control "%s".' % (str(field_index), self.name))
2165 ie.index = field_index
2166 raise ie
d14a1e28
RD
2167 elif Field.valid_params.has_key(paramname):
2168 return self._fields[field_index]._GetParameter(paramname)
2169 else:
5fe636c6
RD
2170 ae = AttributeError('"%s".GetFieldParameter: invalid parameter "%s"' % (self.name, paramname))
2171 ae.attribute = paramname
2172 raise ae
d14a1e28
RD
2173
2174
2175 def _SetKeycodeHandler(self, keycode, func):
2176 """
2177 This function adds and/or replaces key event handling functions
2178 used by the control. <func> should take the event as argument
2179 and return False if no further action on the key is necessary.
2180 """
02b800ce
RD
2181 if func:
2182 self._keyhandlers[keycode] = func
2183 elif self._keyhandlers.has_key(keycode):
2184 del self._keyhandlers[keycode]
d14a1e28
RD
2185
2186
2187 def _SetKeyHandler(self, char, func):
2188 """
2189 This function adds and/or replaces key event handling functions
2190 for ascii characters. <func> should take the event as argument
2191 and return False if no further action on the key is necessary.
2192 """
2193 self._SetKeycodeHandler(ord(char), func)
2194
2195
2196 def _AddNavKeycode(self, keycode, handler=None):
2197 """
2198 This function allows a derived subclass to augment the list of
2199 keycodes that are considered "navigational" keys.
2200 """
2201 self._nav.append(keycode)
2202 if handler:
2203 self._keyhandlers[keycode] = handler
02b800ce
RD
2204 elif self.keyhandlers.has_key(keycode):
2205 del self._keyhandlers[keycode]
2206
d14a1e28
RD
2207
2208
2209 def _AddNavKey(self, char, handler=None):
2210 """
2211 This function is a convenience function so you don't have to
2212 remember to call ord() for ascii chars to be used for navigation.
2213 """
2214 self._AddNavKeycode(ord(char), handler)
2215
2216
2217 def _GetNavKeycodes(self):
2218 """
2219 This function retrieves the current list of navigational keycodes for
2220 the control.
2221 """
2222 return self._nav
2223
2224
2225 def _SetNavKeycodes(self, keycode_func_tuples):
2226 """
2227 This function allows you to replace the current list of keycode processed
2228 as navigation keys, and bind associated optional keyhandlers.
2229 """
2230 self._nav = []
2231 for keycode, func in keycode_func_tuples:
2232 self._nav.append(keycode)
2233 if func:
2234 self._keyhandlers[keycode] = func
02b800ce
RD
2235 elif self.keyhandlers.has_key(keycode):
2236 del self._keyhandlers[keycode]
d14a1e28
RD
2237
2238
2239 def _processMask(self, mask):
2240 """
2241 This subroutine expands {n} syntax in mask strings, and looks for escaped
2242 special characters and returns the expanded mask, and an dictionary
2243 of booleans indicating whether or not a given position in the mask is
2244 a mask character or not.
2245 """
fffd96b7 2246## dbg('_processMask: mask', mask, indent=1)
d14a1e28
RD
2247 # regular expression for parsing c{n} syntax:
2248 rex = re.compile('([' +string.join(maskchars,"") + '])\{(\d+)\}')
2249 s = mask
2250 match = rex.search(s)
2251 while match: # found an(other) occurrence
2252 maskchr = s[match.start(1):match.end(1)] # char to be repeated
2253 repcount = int(s[match.start(2):match.end(2)]) # the number of times
2254 replacement = string.join( maskchr * repcount, "") # the resulting substr
2255 s = s[:match.start(1)] + replacement + s[match.end(2)+1:] #account for trailing '}'
2256 match = rex.search(s) # look for another such entry in mask
2257
2258 self._decimalChar = self._ctrl_constraints._decimalChar
2259 self._shiftDecimalChar = self._ctrl_constraints._shiftDecimalChar
2260
f54a36bb
RD
2261 self._isFloat = _isFloatingPoint(s) and not self._ctrl_constraints._validRegex
2262 self._isInt = _isInteger(s) and not self._ctrl_constraints._validRegex
d14a1e28
RD
2263 self._signOk = '-' in self._ctrl_constraints._formatcodes and (self._isFloat or self._isInt)
2264 self._useParens = self._ctrl_constraints._useParensForNegatives
2265 self._isNeg = False
fffd96b7 2266#### dbg('self._signOk?', self._signOk, 'self._useParens?', self._useParens)
f54a36bb 2267#### dbg('isFloatingPoint(%s)?' % (s), _isFloatingPoint(s),
d14a1e28
RD
2268## 'ctrl regex:', self._ctrl_constraints._validRegex)
2269
2270 if self._signOk and s[0] != ' ':
2271 s = ' ' + s
2272 if self._ctrl_constraints._defaultValue and self._ctrl_constraints._defaultValue[0] != ' ':
2273 self._ctrl_constraints._defaultValue = ' ' + self._ctrl_constraints._defaultValue
2274 self._signpos = 0
2275
2276 if self._useParens:
2277 s += ' '
2278 self._ctrl_constraints._defaultValue += ' '
2279
5fe636c6 2280
d14a1e28 2281 # Now, go build up a dictionary of booleans, indexed by position,
5fe636c6
RD
2282 # indicating whether or not a given position is masked or not.
2283 # Also, strip out any '|' chars, adjusting the mask as necessary,
2284 # marking the appropriate positions for field boundaries:
d14a1e28 2285 ismasked = {}
5fe636c6 2286 explicit_field_boundaries = []
d14a1e28
RD
2287 i = 0
2288 while i < len(s):
2289 if s[i] == '\\': # if escaped character:
2290 ismasked[i] = False # mark position as not a mask char
2291 if i+1 < len(s): # if another char follows...
2292 s = s[:i] + s[i+1:] # elide the '\'
2293 if i+2 < len(s) and s[i+1] == '\\':
2294 # if next char also a '\', char is a literal '\'
2295 s = s[:i] + s[i+1:] # elide the 2nd '\' as well
5fe636c6
RD
2296 i += 1 # increment to next char
2297 elif s[i] == '|':
2298 s = s[:i] + s[i+1:] # elide the '|'
2299 explicit_field_boundaries.append(i)
2300 # keep index where it is:
d14a1e28
RD
2301 else: # else if special char, mark position accordingly
2302 ismasked[i] = s[i] in maskchars
5fe636c6
RD
2303#### dbg('ismasked[%d]:' % i, ismasked[i], s)
2304 i += 1 # increment to next char
fffd96b7
RD
2305#### dbg('ismasked:', ismasked)
2306## dbg('new mask: "%s"' % s, indent=0)
d14a1e28 2307
5fe636c6 2308 return s, ismasked, explicit_field_boundaries
d14a1e28
RD
2309
2310
2311 def _calcFieldExtents(self):
2312 """
2313 Subroutine responsible for establishing/configuring field instances with
2314 indices and editable extents appropriate to the specified mask, and building
2315 the lookup table mapping each position to the corresponding field.
2316 """
2317 self._lookupField = {}
2318 if self._mask:
2319
2320 ## Create dictionary of positions,characters in mask
2321 self.maskdict = {}
2322 for charnum in range( len( self._mask)):
2323 self.maskdict[charnum] = self._mask[charnum:charnum+1]
2324
2325 # For the current mask, create an ordered list of field extents
2326 # and a dictionary of positions that map to field indices:
2327
2328 if self._signOk: start = 1
2329 else: start = 0
2330
2331 if self._isFloat:
2332 # Skip field "discovery", and just construct a 2-field control with appropriate
2333 # constraints for a floating-point entry.
2334
2335 # .setdefault always constructs 2nd argument even if not needed, so we do this
2336 # the old-fashioned way...
2337 if not self._fields.has_key(0):
2338 self._fields[0] = Field()
2339 if not self._fields.has_key(1):
2340 self._fields[1] = Field()
2341
2342 self._decimalpos = string.find( self._mask, '.')
fffd96b7 2343## dbg('decimal pos =', self._decimalpos)
d14a1e28
RD
2344
2345 formatcodes = self._fields[0]._GetParameter('formatcodes')
2346 if 'R' not in formatcodes: formatcodes += 'R'
2347 self._fields[0]._SetParameters(index=0, extent=(start, self._decimalpos),
2348 mask=self._mask[start:self._decimalpos], formatcodes=formatcodes)
2349 end = len(self._mask)
2350 if self._signOk and self._useParens:
2351 end -= 1
2352 self._fields[1]._SetParameters(index=1, extent=(self._decimalpos+1, end),
2353 mask=self._mask[self._decimalpos+1:end])
2354
2355 for i in range(self._decimalpos+1):
2356 self._lookupField[i] = 0
2357
2358 for i in range(self._decimalpos+1, len(self._mask)+1):
2359 self._lookupField[i] = 1
2360
2361 elif self._isInt:
2362 # Skip field "discovery", and just construct a 1-field control with appropriate
2363 # constraints for a integer entry.
2364 if not self._fields.has_key(0):
2365 self._fields[0] = Field(index=0)
2366 end = len(self._mask)
2367 if self._signOk and self._useParens:
2368 end -= 1
2369 self._fields[0]._SetParameters(index=0, extent=(start, end),
2370 mask=self._mask[start:end])
2371 for i in range(len(self._mask)+1):
2372 self._lookupField[i] = 0
2373 else:
2374 # generic control; parse mask to figure out where the fields are:
2375 field_index = 0
2376 pos = 0
2377 i = self._findNextEntry(pos,adjustInsert=False) # go to 1st entry point:
2378 if i < len(self._mask): # no editable chars!
2379 for j in range(pos, i+1):
2380 self._lookupField[j] = field_index
2381 pos = i # figure out field for 1st editable space:
2382
2383 while i <= len(self._mask):
fffd96b7 2384#### dbg('searching: outer field loop: i = ', i)
d14a1e28 2385 if self._isMaskChar(i):
fffd96b7 2386#### dbg('1st char is mask char; recording edit_start=', i)
d14a1e28
RD
2387 edit_start = i
2388 # Skip to end of editable part of current field:
2389 while i < len(self._mask) and self._isMaskChar(i):
2390 self._lookupField[i] = field_index
2391 i += 1
5fe636c6
RD
2392 if i in self._explicit_field_boundaries:
2393 break
fffd96b7 2394#### dbg('edit_end =', i)
d14a1e28
RD
2395 edit_end = i
2396 self._lookupField[i] = field_index
fffd96b7 2397#### dbg('self._fields.has_key(%d)?' % field_index, self._fields.has_key(field_index))
d14a1e28
RD
2398 if not self._fields.has_key(field_index):
2399 kwargs = Field.valid_params.copy()
2400 kwargs['index'] = field_index
2401 kwargs['extent'] = (edit_start, edit_end)
2402 kwargs['mask'] = self._mask[edit_start:edit_end]
2403 self._fields[field_index] = Field(**kwargs)
2404 else:
2405 self._fields[field_index]._SetParameters(
2406 index=field_index,
2407 extent=(edit_start, edit_end),
2408 mask=self._mask[edit_start:edit_end])
2409 pos = i
2410 i = self._findNextEntry(pos, adjustInsert=False) # go to next field:
5fe636c6 2411#### dbg('next entry:', i)
d14a1e28
RD
2412 if i > pos:
2413 for j in range(pos, i+1):
2414 self._lookupField[j] = field_index
2415 if i >= len(self._mask):
2416 break # if past end, we're done
2417 else:
2418 field_index += 1
fffd96b7 2419#### dbg('next field:', field_index)
d14a1e28
RD
2420
2421 indices = self._fields.keys()
2422 indices.sort()
2423 self._field_indices = indices[1:]
fffd96b7 2424#### dbg('lookupField map:', indent=1)
d14a1e28 2425## for i in range(len(self._mask)):
fffd96b7
RD
2426#### dbg('pos %d:' % i, self._lookupField[i])
2427#### dbg(indent=0)
d14a1e28
RD
2428
2429 # Verify that all field indices specified are valid for mask:
2430 for index in self._fields.keys():
2431 if index not in [-1] + self._lookupField.values():
5fe636c6
RD
2432 ie = IndexError('field %d is not a valid field for mask "%s"' % (index, self._mask))
2433 ie.index = index
2434 raise ie
2435
d14a1e28
RD
2436
2437
2438 def _calcTemplate(self, reset_fillchar, reset_default):
2439 """
2440 Subroutine for processing current fillchars and default values for
2441 whole control and individual fields, constructing the resulting
2442 overall template, and adjusting the current value as necessary.
2443 """
2444 default_set = False
2445 if self._ctrl_constraints._defaultValue:
2446 default_set = True
2447 else:
2448 for field in self._fields.values():
2449 if field._defaultValue and not reset_default:
2450 default_set = True
fffd96b7 2451## dbg('default set?', default_set)
d14a1e28
RD
2452
2453 # Determine overall new template for control, and keep track of previous
2454 # values, so that current control value can be modified as appropriate:
2455 if self.controlInitialized: curvalue = list(self._GetValue())
2456 else: curvalue = None
2457
2458 if hasattr(self, '_fillChar'): old_fillchars = self._fillChar
2459 else: old_fillchars = None
2460
2461 if hasattr(self, '_template'): old_template = self._template
2462 else: old_template = None
2463
2464 self._template = ""
2465
2466 self._fillChar = {}
2467 reset_value = False
2468
2469 for field in self._fields.values():
2470 field._template = ""
2471
2472 for pos in range(len(self._mask)):
fffd96b7 2473#### dbg('pos:', pos)
d14a1e28 2474 field = self._FindField(pos)
fffd96b7 2475#### dbg('field:', field._index)
d14a1e28
RD
2476 start, end = field._extent
2477
2478 if pos == 0 and self._signOk:
2479 self._template = ' ' # always make 1st 1st position blank, regardless of fillchar
2480 elif self._isFloat and pos == self._decimalpos:
2481 self._template += self._decimalChar
2482 elif self._isMaskChar(pos):
2483 if field._fillChar != self._ctrl_constraints._fillChar and not reset_fillchar:
2484 fillChar = field._fillChar
2485 else:
2486 fillChar = self._ctrl_constraints._fillChar
2487 self._fillChar[pos] = fillChar
2488
2489 # Replace any current old fillchar with new one in current value;
2490 # if action required, set reset_value flag so we can take that action
2491 # after we're all done
2492 if self.controlInitialized and old_fillchars and old_fillchars.has_key(pos) and curvalue:
2493 if curvalue[pos] == old_fillchars[pos] and old_fillchars[pos] != fillChar:
2494 reset_value = True
2495 curvalue[pos] = fillChar
2496
2497 if not field._defaultValue and not self._ctrl_constraints._defaultValue:
fffd96b7 2498#### dbg('no default value')
d14a1e28
RD
2499 self._template += fillChar
2500 field._template += fillChar
2501
2502 elif field._defaultValue and not reset_default:
fffd96b7
RD
2503#### dbg('len(field._defaultValue):', len(field._defaultValue))
2504#### dbg('pos-start:', pos-start)
d14a1e28 2505 if len(field._defaultValue) > pos-start:
fffd96b7 2506#### dbg('field._defaultValue[pos-start]: "%s"' % field._defaultValue[pos-start])
d14a1e28
RD
2507 self._template += field._defaultValue[pos-start]
2508 field._template += field._defaultValue[pos-start]
2509 else:
fffd96b7 2510#### dbg('field default not long enough; using fillChar')
d14a1e28
RD
2511 self._template += fillChar
2512 field._template += fillChar
2513 else:
2514 if len(self._ctrl_constraints._defaultValue) > pos:
fffd96b7 2515#### dbg('using control default')
d14a1e28
RD
2516 self._template += self._ctrl_constraints._defaultValue[pos]
2517 field._template += self._ctrl_constraints._defaultValue[pos]
2518 else:
fffd96b7 2519#### dbg('ctrl default not long enough; using fillChar')
d14a1e28
RD
2520 self._template += fillChar
2521 field._template += fillChar
fffd96b7
RD
2522#### dbg('field[%d]._template now "%s"' % (field._index, field._template))
2523#### dbg('self._template now "%s"' % self._template)
d14a1e28
RD
2524 else:
2525 self._template += self._mask[pos]
2526
2527 self._fields[-1]._template = self._template # (for consistency)
2528
2529 if curvalue: # had an old value, put new one back together
2530 newvalue = string.join(curvalue, "")
2531 else:
2532 newvalue = None
2533
2534 if default_set:
2535 self._defaultValue = self._template
fffd96b7 2536## dbg('self._defaultValue:', self._defaultValue)
d14a1e28 2537 if not self.IsEmpty(self._defaultValue) and not self.IsValid(self._defaultValue):
fffd96b7 2538#### dbg(indent=0)
5fe636c6
RD
2539 ve = ValueError('Default value of "%s" is not a valid value for control "%s"' % (self._defaultValue, self.name))
2540 ve.value = self._defaultValue
2541 raise ve
d14a1e28
RD
2542
2543 # if no fillchar change, but old value == old template, replace it:
2544 if newvalue == old_template:
2545 newvalue = self._template
7722248d 2546 reset_value = True
d14a1e28
RD
2547 else:
2548 self._defaultValue = None
2549
2550 if reset_value:
fffd96b7 2551## dbg('resetting value to: "%s"' % newvalue)
d14a1e28
RD
2552 pos = self._GetInsertionPoint()
2553 sel_start, sel_to = self._GetSelection()
2554 self._SetValue(newvalue)
2555 self._SetInsertionPoint(pos)
2556 self._SetSelection(sel_start, sel_to)
2557
2558
2559 def _propagateConstraints(self, **reset_args):
2560 """
2561 Subroutine for propagating changes to control-level constraints and
2562 formatting to the individual fields as appropriate.
2563 """
2564 parent_codes = self._ctrl_constraints._formatcodes
2565 parent_includes = self._ctrl_constraints._includeChars
2566 parent_excludes = self._ctrl_constraints._excludeChars
2567 for i in self._field_indices:
2568 field = self._fields[i]
2569 inherit_args = {}
2570 if len(self._field_indices) == 1:
2571 inherit_args['formatcodes'] = parent_codes
2572 inherit_args['includeChars'] = parent_includes
2573 inherit_args['excludeChars'] = parent_excludes
2574 else:
2575 field_codes = current_codes = field._GetParameter('formatcodes')
2576 for c in parent_codes:
2577 if c not in field_codes: field_codes += c
2578 if field_codes != current_codes:
2579 inherit_args['formatcodes'] = field_codes
2580
2581 include_chars = current_includes = field._GetParameter('includeChars')
2582 for c in parent_includes:
2583 if not c in include_chars: include_chars += c
2584 if include_chars != current_includes:
2585 inherit_args['includeChars'] = include_chars
2586
2587 exclude_chars = current_excludes = field._GetParameter('excludeChars')
2588 for c in parent_excludes:
2589 if not c in exclude_chars: exclude_chars += c
2590 if exclude_chars != current_excludes:
2591 inherit_args['excludeChars'] = exclude_chars
2592
2593 if reset_args.has_key('defaultValue') and reset_args['defaultValue']:
2594 inherit_args['defaultValue'] = "" # (reset for field)
2595
2596 for param in Field.propagating_params:
fffd96b7
RD
2597#### dbg('reset_args.has_key(%s)?' % param, reset_args.has_key(param))
2598#### dbg('reset_args.has_key(%(param)s) and reset_args[%(param)s]?' % locals(), reset_args.has_key(param) and reset_args[param])
d14a1e28
RD
2599 if reset_args.has_key(param):
2600 inherit_args[param] = self.GetCtrlParameter(param)
fffd96b7 2601#### dbg('inherit_args[%s]' % param, inherit_args[param])
d14a1e28
RD
2602
2603 if inherit_args:
2604 field._SetParameters(**inherit_args)
2605 field._ValidateParameters(**inherit_args)
2606
2607
2608 def _validateChoices(self):
2609 """
2610 Subroutine that validates that all choices for given fields are at
2611 least of the necessary length, and that they all would be valid pastes
2612 if pasted into their respective fields.
2613 """
2614 for field in self._fields.values():
2615 if field._choices:
2616 index = field._index
2617 if len(self._field_indices) == 1 and index == 0 and field._choices == self._ctrl_constraints._choices:
fffd96b7 2618## dbg('skipping (duplicate) choice validation of field 0')
d14a1e28 2619 continue
fffd96b7 2620#### dbg('checking for choices for field', field._index)
d14a1e28
RD
2621 start, end = field._extent
2622 field_length = end - start
fffd96b7 2623#### dbg('start, end, length:', start, end, field_length)
d14a1e28 2624 for choice in field._choices:
fffd96b7 2625#### dbg('testing "%s"' % choice)
d14a1e28
RD
2626 valid_paste, ignore, replace_to = self._validatePaste(choice, start, end)
2627 if not valid_paste:
fffd96b7 2628#### dbg(indent=0)
5fe636c6
RD
2629 ve = ValueError('"%s" could not be entered into field %d of control "%s"' % (choice, index, self.name))
2630 ve.value = choice
2631 ve.index = index
2632 raise ve
d14a1e28 2633 elif replace_to > end:
fffd96b7 2634#### dbg(indent=0)
5fe636c6
RD
2635 ve = ValueError('"%s" will not fit into field %d of control "%s"' (choice, index, self.name))
2636 ve.value = choice
2637 ve.index = index
2638 raise ve
2639
fffd96b7 2640#### dbg(choice, 'valid in field', index)
d14a1e28
RD
2641
2642
2643 def _configure(self, mask, **reset_args):
2644 """
2645 This function sets flags for automatic styling options. It is
2646 called whenever a control or field-level parameter is set/changed.
2647
2648 This routine does the bulk of the interdependent parameter processing, determining
2649 the field extents of the mask if changed, resetting parameters as appropriate,
2650 determining the overall template value for the control, etc.
2651
2652 reset_args is supplied if called from control's .SetCtrlParameters()
2653 routine, and indicates which if any parameters which can be
2654 overridden by individual fields have been reset by request for the
2655 whole control.
2656
2657 """
fffd96b7
RD
2658## dbg(suspend=1)
2659## dbg('MaskedEditMixin::_configure("%s")' % mask, indent=1)
d14a1e28
RD
2660
2661 # Preprocess specified mask to expand {n} syntax, handle escaped
2662 # mask characters, etc and build the resulting positionally keyed
2663 # dictionary for which positions are mask vs. template characters:
5fe636c6 2664 self._mask, self._ismasked, self._explicit_field_boundaries = self._processMask(mask)
d14a1e28 2665 self._masklength = len(self._mask)
fffd96b7 2666#### dbg('processed mask:', self._mask)
d14a1e28
RD
2667
2668 # Preserve original mask specified, for subsequent reprocessing
2669 # if parameters change.
fffd96b7 2670## dbg('mask: "%s"' % self._mask, 'previous mask: "%s"' % self._previous_mask)
d14a1e28
RD
2671 self._previous_mask = mask # save unexpanded mask for next time
2672 # Set expanded mask and extent of field -1 to width of entire control:
2673 self._ctrl_constraints._SetParameters(mask = self._mask, extent=(0,self._masklength))
2674
2675 # Go parse mask to determine where each field is, construct field
2676 # instances as necessary, configure them with those extents, and
2677 # build lookup table mapping each position for control to its corresponding
2678 # field.
fffd96b7 2679#### dbg('calculating field extents')
d14a1e28
RD
2680
2681 self._calcFieldExtents()
2682
2683
2684 # Go process defaultValues and fillchars to construct the overall
2685 # template, and adjust the current value as necessary:
2686 reset_fillchar = reset_args.has_key('fillChar') and reset_args['fillChar']
2687 reset_default = reset_args.has_key('defaultValue') and reset_args['defaultValue']
2688
fffd96b7 2689#### dbg('calculating template')
d14a1e28
RD
2690 self._calcTemplate(reset_fillchar, reset_default)
2691
2692 # Propagate control-level formatting and character constraints to each
2693 # field if they don't already have them; if only one field, propagate
2694 # control-level validation constraints to field as well:
fffd96b7 2695#### dbg('propagating constraints')
d14a1e28
RD
2696 self._propagateConstraints(**reset_args)
2697
2698
2699 if self._isFloat and self._fields[0]._groupChar == self._decimalChar:
2700 raise AttributeError('groupChar (%s) and decimalChar (%s) must be distinct.' %
2701 (self._fields[0]._groupChar, self._decimalChar) )
2702
fffd96b7 2703#### dbg('fields:', indent=1)
d14a1e28 2704## for i in [-1] + self._field_indices:
fffd96b7
RD
2705#### dbg('field %d:' % i, self._fields[i].__dict__)
2706#### dbg(indent=0)
d14a1e28
RD
2707
2708 # Set up special parameters for numeric control, if appropriate:
2709 if self._signOk:
2710 self._signpos = 0 # assume it starts here, but it will move around on floats
2711 signkeys = ['-', '+', ' ']
2712 if self._useParens:
2713 signkeys += ['(', ')']
2714 for key in signkeys:
2715 keycode = ord(key)
2716 if not self._keyhandlers.has_key(keycode):
2717 self._SetKeyHandler(key, self._OnChangeSign)
02b800ce
RD
2718 elif self._isInt or self._isFloat:
2719 signkeys = ['-', '+', ' ', '(', ')']
2720 for key in signkeys:
2721 keycode = ord(key)
2722 if self._keyhandlers.has_key(keycode) and self._keyhandlers[keycode] == self._OnChangeSign:
2723 self._SetKeyHandler(key, None)
d14a1e28
RD
2724
2725
2726
2727 if self._isFloat or self._isInt:
2728 if self.controlInitialized:
2729 value = self._GetValue()
fffd96b7 2730#### dbg('value: "%s"' % value, 'len(value):', len(value),
d14a1e28
RD
2731## 'len(self._ctrl_constraints._mask):',len(self._ctrl_constraints._mask))
2732 if len(value) < len(self._ctrl_constraints._mask):
2733 newvalue = value
2734 if self._useParens and len(newvalue) < len(self._ctrl_constraints._mask) and newvalue.find('(') == -1:
2735 newvalue += ' '
2736 if self._signOk and len(newvalue) < len(self._ctrl_constraints._mask) and newvalue.find(')') == -1:
2737 newvalue = ' ' + newvalue
2738 if len(newvalue) < len(self._ctrl_constraints._mask):
2739 if self._ctrl_constraints._alignRight:
2740 newvalue = newvalue.rjust(len(self._ctrl_constraints._mask))
2741 else:
2742 newvalue = newvalue.ljust(len(self._ctrl_constraints._mask))
fffd96b7
RD
2743## dbg('old value: "%s"' % value)
2744## dbg('new value: "%s"' % newvalue)
d14a1e28
RD
2745 try:
2746 self._SetValue(newvalue)
2747 except Exception, e:
fffd96b7 2748## dbg('exception raised:', e, 'resetting to initial value')
d14a1e28
RD
2749 self._SetInitialValue()
2750
2751 elif len(value) > len(self._ctrl_constraints._mask):
2752 newvalue = value
2753 if not self._useParens and newvalue[-1] == ' ':
2754 newvalue = newvalue[:-1]
2755 if not self._signOk and len(newvalue) > len(self._ctrl_constraints._mask):
2756 newvalue = newvalue[1:]
2757 if not self._signOk:
2758 newvalue, signpos, right_signpos = self._getSignedValue(newvalue)
2759
fffd96b7
RD
2760## dbg('old value: "%s"' % value)
2761## dbg('new value: "%s"' % newvalue)
d14a1e28
RD
2762 try:
2763 self._SetValue(newvalue)
2764 except Exception, e:
fffd96b7 2765## dbg('exception raised:', e, 'resetting to initial value')
d14a1e28
RD
2766 self._SetInitialValue()
2767 elif not self._signOk and ('(' in value or '-' in value):
2768 newvalue, signpos, right_signpos = self._getSignedValue(value)
fffd96b7
RD
2769## dbg('old value: "%s"' % value)
2770## dbg('new value: "%s"' % newvalue)
d14a1e28
RD
2771 try:
2772 self._SetValue(newvalue)
2773 except e:
fffd96b7 2774## dbg('exception raised:', e, 'resetting to initial value')
d14a1e28
RD
2775 self._SetInitialValue()
2776
2777 # Replace up/down arrow default handling:
2778 # make down act like tab, up act like shift-tab:
2779
fffd96b7 2780#### dbg('Registering numeric navigation and control handlers (if not already set)')
b881fc78
RD
2781 if not self._keyhandlers.has_key(wx.WXK_DOWN):
2782 self._SetKeycodeHandler(wx.WXK_DOWN, self._OnChangeField)
2783 if not self._keyhandlers.has_key(wx.WXK_UP):
2784 self._SetKeycodeHandler(wx.WXK_UP, self._OnUpNumeric) # (adds "shift" to up arrow, and calls _OnChangeField)
d14a1e28
RD
2785
2786 # On ., truncate contents right of cursor to decimal point (if any)
02b800ce
RD
2787 # leaves cursor after decimal point if floating point, otherwise at 0.
2788 if not self._keyhandlers.has_key(ord(self._decimalChar)) or self._keyhandlers[ord(self._decimalChar)] != self._OnDecimalPoint:
d14a1e28 2789 self._SetKeyHandler(self._decimalChar, self._OnDecimalPoint)
02b800ce
RD
2790
2791 if not self._keyhandlers.has_key(ord(self._shiftDecimalChar)) or self._keyhandlers[ord(self._shiftDecimalChar)] != self._OnChangeField:
d14a1e28
RD
2792 self._SetKeyHandler(self._shiftDecimalChar, self._OnChangeField) # (Shift-'.' == '>' on US keyboards)
2793
2794 # Allow selective insert of groupchar in numbers:
02b800ce 2795 if not self._keyhandlers.has_key(ord(self._fields[0]._groupChar)) or self._keyhandlers[ord(self._fields[0]._groupChar)] != self._OnGroupChar:
d14a1e28
RD
2796 self._SetKeyHandler(self._fields[0]._groupChar, self._OnGroupChar)
2797
fffd96b7 2798## dbg(indent=0, suspend=0)
d14a1e28
RD
2799
2800
2801 def _SetInitialValue(self, value=""):
2802 """
2803 fills the control with the generated or supplied default value.
2804 It will also set/reset the font if necessary and apply
2805 formatting to the control at this time.
2806 """
fffd96b7 2807## dbg('MaskedEditMixin::_SetInitialValue("%s")' % value, indent=1)
d14a1e28
RD
2808 if not value:
2809 self._prevValue = self._curValue = self._template
2810 # don't apply external validation rules in this case, as template may
2811 # not coincide with "legal" value...
2812 try:
2813 self._SetValue(self._curValue) # note the use of "raw" ._SetValue()...
2814 except Exception, e:
fffd96b7 2815## dbg('exception thrown:', e, indent=0)
d14a1e28
RD
2816 raise
2817 else:
2818 # Otherwise apply validation as appropriate to passed value:
fffd96b7 2819#### dbg('value = "%s", length:' % value, len(value))
d14a1e28
RD
2820 self._prevValue = self._curValue = value
2821 try:
2822 self.SetValue(value) # use public (validating) .SetValue()
2823 except Exception, e:
fffd96b7 2824## dbg('exception thrown:', e, indent=0)
d14a1e28
RD
2825 raise
2826
2827
2828 # Set value/type-specific formatting
2829 self._applyFormatting()
fffd96b7 2830## dbg(indent=0)
d14a1e28
RD
2831
2832
2833 def _calcSize(self, size=None):
2834 """ Calculate automatic size if allowed; must be called after the base control is instantiated"""
fffd96b7 2835#### dbg('MaskedEditMixin::_calcSize', indent=1)
b881fc78 2836 cont = (size is None or size == wx.DefaultSize)
d14a1e28
RD
2837
2838 if cont and self._autofit:
2839 sizing_text = 'M' * self._masklength
b881fc78 2840 if wx.Platform != "__WXMSW__": # give it a little extra space
d14a1e28 2841 sizing_text += 'M'
b881fc78 2842 if wx.Platform == "__WXMAC__": # give it even a little more...
d14a1e28 2843 sizing_text += 'M'
fffd96b7 2844#### dbg('len(sizing_text):', len(sizing_text), 'sizing_text: "%s"' % sizing_text)
d14a1e28 2845 w, h = self.GetTextExtent(sizing_text)
339983ff 2846 size = (w+4, self.GetSize().height)
fffd96b7 2847#### dbg('size:', size, indent=0)
d14a1e28
RD
2848 return size
2849
2850
2851 def _setFont(self):
2852 """ Set the control's font typeface -- pass the font name as str."""
fffd96b7 2853#### dbg('MaskedEditMixin::_setFont', indent=1)
d14a1e28 2854 if not self._useFixedWidthFont:
b881fc78 2855 self._font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT)
d14a1e28
RD
2856 else:
2857 font = self.GetFont() # get size, weight, etc from current font
2858
c878ceea 2859 # Set to teletype font (guaranteed to be mappable to all wxWindows
d14a1e28 2860 # platforms:
b881fc78 2861 self._font = wx.Font( font.GetPointSize(), wx.TELETYPE, font.GetStyle(),
d14a1e28 2862 font.GetWeight(), font.GetUnderlined())
fffd96b7 2863#### dbg('font string: "%s"' % font.GetNativeFontInfo().ToString())
d14a1e28
RD
2864
2865 self.SetFont(self._font)
fffd96b7 2866#### dbg(indent=0)
d14a1e28
RD
2867
2868
2869 def _OnTextChange(self, event):
2870 """
2871 Handler for EVT_TEXT event.
2872 self._Change() is provided for subclasses, and may return False to
2873 skip this method logic. This function returns True if the event
2874 detected was a legitimate event, or False if it was a "bogus"
2875 EVT_TEXT event. (NOTE: There is currently an issue with calling
2876 .SetValue from within the EVT_CHAR handler that causes duplicate
2877 EVT_TEXT events for the same change.)
2878 """
2879 newvalue = self._GetValue()
fffd96b7 2880## dbg('MaskedEditMixin::_OnTextChange: value: "%s"' % newvalue, indent=1)
d14a1e28
RD
2881 bValid = False
2882 if self._ignoreChange: # ie. if an "intermediate text change event"
fffd96b7 2883## dbg(indent=0)
d14a1e28
RD
2884 return bValid
2885
89f9e172
RD
2886 ##! WS: For some inexplicable reason, every wx.TextCtrl.SetValue
2887 ## call is generating two (2) EVT_TEXT events. On certain platforms,
2888 ## (eg. linux/GTK) the 1st is an empty string value.
d14a1e28 2889 ## This is the only mechanism I can find to mask this problem:
89f9e172 2890 if newvalue == self._curValue or len(newvalue) == 0:
fffd96b7
RD
2891## dbg('ignoring bogus text change event', indent=0)
2892 pass
d14a1e28 2893 else:
339983ff 2894## dbg('curvalue: "%s", newvalue: "%s", len(newvalue): %d' % (self._curValue, newvalue, len(newvalue)))
d14a1e28
RD
2895 if self._Change():
2896 if self._signOk and self._isNeg and newvalue.find('-') == -1 and newvalue.find('(') == -1:
fffd96b7 2897## dbg('clearing self._isNeg')
d14a1e28
RD
2898 self._isNeg = False
2899 text, self._signpos, self._right_signpos = self._getSignedValue()
2900 self._CheckValid() # Recolor control as appropriate
fffd96b7 2901## dbg('calling event.Skip()')
d14a1e28
RD
2902 event.Skip()
2903 bValid = True
2904 self._prevValue = self._curValue # save for undo
2905 self._curValue = newvalue # Save last seen value for next iteration
fffd96b7 2906## dbg(indent=0)
d14a1e28
RD
2907 return bValid
2908
2909
2910 def _OnKeyDown(self, event):
2911 """
2912 This function allows the control to capture Ctrl-events like Ctrl-tab,
2913 that are not normally seen by the "cooked" EVT_CHAR routine.
2914 """
2915 # Get keypress value, adjusted by control options (e.g. convert to upper etc)
2916 key = event.GetKeyCode()
2917 if key in self._nav and event.ControlDown():
2918 # then this is the only place we will likely see these events;
2919 # process them now:
fffd96b7 2920## dbg('MaskedEditMixin::OnKeyDown: calling _OnChar')
d14a1e28
RD
2921 self._OnChar(event)
2922 return
2923 # else allow regular EVT_CHAR key processing
2924 event.Skip()
2925
2926
2927 def _OnChar(self, event):
2928 """
c878ceea 2929 This is the engine of MaskedEdit controls. It examines each keystroke,
d14a1e28
RD
2930 decides if it's allowed, where it should go or what action to take.
2931 """
fffd96b7 2932## dbg('MaskedEditMixin::_OnChar', indent=1)
d14a1e28
RD
2933
2934 # Get keypress value, adjusted by control options (e.g. convert to upper etc)
2935 key = event.GetKeyCode()
2936 orig_pos = self._GetInsertionPoint()
2937 orig_value = self._GetValue()
fffd96b7
RD
2938## dbg('keycode = ', key)
2939## dbg('current pos = ', orig_pos)
2940## dbg('current selection = ', self._GetSelection())
d14a1e28
RD
2941
2942 if not self._Keypress(key):
fffd96b7 2943## dbg(indent=0)
d14a1e28
RD
2944 return
2945
2946 # If no format string for this control, or the control is marked as "read-only",
2947 # skip the rest of the special processing, and just "do the standard thing:"
2948 if not self._mask or not self._IsEditable():
2949 event.Skip()
fffd96b7 2950## dbg(indent=0)
d14a1e28
RD
2951 return
2952
2953 # Process navigation and control keys first, with
2954 # position/selection unadulterated:
2955 if key in self._nav + self._control:
2956 if self._keyhandlers.has_key(key):
2957 keep_processing = self._keyhandlers[key](event)
2958 if self._GetValue() != orig_value:
2959 self.modified = True
2960 if not keep_processing:
fffd96b7 2961## dbg(indent=0)
d14a1e28
RD
2962 return
2963 self._applyFormatting()
fffd96b7 2964## dbg(indent=0)
d14a1e28
RD
2965 return
2966
2967 # Else... adjust the position as necessary for next input key,
2968 # and determine resulting selection:
2969 pos = self._adjustPos( orig_pos, key ) ## get insertion position, adjusted as needed
2970 sel_start, sel_to = self._GetSelection() ## check for a range of selected text
fffd96b7 2971## dbg("pos, sel_start, sel_to:", pos, sel_start, sel_to)
d14a1e28
RD
2972
2973 keep_processing = True
2974 # Capture user past end of format field
2975 if pos > len(self.maskdict):
fffd96b7 2976## dbg("field length exceeded:",pos)
d14a1e28
RD
2977 keep_processing = False
2978
d14a1e28
RD
2979 key = self._adjustKey(pos, key) # apply formatting constraints to key:
2980
2981 if self._keyhandlers.has_key(key):
2982 # there's an override for default behavior; use override function instead
fffd96b7 2983## dbg('using supplied key handler:', self._keyhandlers[key])
d14a1e28
RD
2984 keep_processing = self._keyhandlers[key](event)
2985 if self._GetValue() != orig_value:
2986 self.modified = True
2987 if not keep_processing:
fffd96b7 2988## dbg(indent=0)
d14a1e28
RD
2989 return
2990 # else skip default processing, but do final formatting
5fe636c6
RD
2991 if key in wx_control_keycodes:
2992## dbg('key in wx_control_keycodes')
2993 event.Skip() # non-printable; let base control handle it
d14a1e28
RD
2994 keep_processing = False
2995 else:
2996 field = self._FindField(pos)
f54a36bb 2997
f54a36bb 2998 if 'unicode' in wx.PlatformInfo:
5fe636c6
RD
2999 if key < 256:
3000 char = chr(key) # (must work if we got this far)
3001 char = char.decode(self._defaultEncoding)
3002 else:
3003 char = unichr(event.GetUnicodeKey())
3004 dbg('unicode char:', char)
f54a36bb
RD
3005 excludes = u''
3006 if type(field._excludeChars) != types.UnicodeType:
3007 excludes += field._excludeChars.decode(self._defaultEncoding)
3008 if type(self._ctrl_constraints) != types.UnicodeType:
3009 excludes += self._ctrl_constraints._excludeChars.decode(self._defaultEncoding)
3010 else:
5fe636c6 3011 char = chr(key) # (must work if we got this far)
f54a36bb 3012 excludes = field._excludeChars + self._ctrl_constraints._excludeChars
d14a1e28 3013
5fe636c6
RD
3014## dbg("key ='%s'" % chr(key))
3015 if chr(key) == ' ':
3016## dbg('okSpaces?', field._okSpaces)
3017 pass
3018
3019
f54a36bb 3020 if char in excludes:
d14a1e28
RD
3021 keep_processing = False
3022
f54a36bb 3023 if keep_processing and self._isCharAllowed( char, pos, checkRegex = True ):
fffd96b7 3024## dbg("key allowed by mask")
d14a1e28
RD
3025 # insert key into candidate new value, but don't change control yet:
3026 oldstr = self._GetValue()
3027 newstr, newpos, new_select_to, match_field, match_index = self._insertKey(
f54a36bb
RD
3028 char, pos, sel_start, sel_to, self._GetValue(), allowAutoSelect = True)
3029## dbg("str with '%s' inserted:" % char, '"%s"' % newstr)
d14a1e28 3030 if self._ctrl_constraints._validRequired and not self.IsValid(newstr):
fffd96b7 3031## dbg('not valid; checking to see if adjusted string is:')
d14a1e28
RD
3032 keep_processing = False
3033 if self._isFloat and newstr != self._template:
3034 newstr = self._adjustFloat(newstr)
fffd96b7 3035## dbg('adjusted str:', newstr)
d14a1e28 3036 if self.IsValid(newstr):
fffd96b7 3037## dbg("it is!")
d14a1e28 3038 keep_processing = True
b881fc78 3039 wx.CallAfter(self._SetInsertionPoint, self._decimalpos)
d14a1e28 3040 if not keep_processing:
fffd96b7 3041## dbg("key disallowed by validation")
b881fc78
RD
3042 if not wx.Validator_IsSilent() and orig_pos == pos:
3043 wx.Bell()
d14a1e28
RD
3044
3045 if keep_processing:
3046 unadjusted = newstr
3047
3048 # special case: adjust date value as necessary:
3049 if self._isDate and newstr != self._template:
3050 newstr = self._adjustDate(newstr)
fffd96b7 3051## dbg('adjusted newstr:', newstr)
d14a1e28
RD
3052
3053 if newstr != orig_value:
3054 self.modified = True
3055
b881fc78 3056 wx.CallAfter(self._SetValue, newstr)
d14a1e28
RD
3057
3058 # Adjust insertion point on date if just entered 2 digit year, and there are now 4 digits:
3059 if not self.IsDefault() and self._isDate and self._4digityear:
3060 year2dig = self._dateExtent - 2
3061 if pos == year2dig and unadjusted[year2dig] != newstr[year2dig]:
3062 newpos = pos+2
3063
281c1054 3064## dbg('queuing insertion point: (%d)' % newpos)
b881fc78 3065 wx.CallAfter(self._SetInsertionPoint, newpos)
d14a1e28
RD
3066
3067 if match_field is not None:
fffd96b7 3068## dbg('matched field')
d14a1e28
RD
3069 self._OnAutoSelect(match_field, match_index)
3070
3071 if new_select_to != newpos:
fffd96b7 3072## dbg('queuing selection: (%d, %d)' % (newpos, new_select_to))
b881fc78 3073 wx.CallAfter(self._SetSelection, newpos, new_select_to)
d14a1e28
RD
3074 else:
3075 newfield = self._FindField(newpos)
3076 if newfield != field and newfield._selectOnFieldEntry:
281c1054
RD
3077## dbg('queuing insertion point: (%d)' % newfield._extent[0])
3078 wx.CallAfter(self._SetInsertionPoint, newfield._extent[0])
fffd96b7 3079## dbg('queuing selection: (%d, %d)' % (newfield._extent[0], newfield._extent[1]))
b881fc78 3080 wx.CallAfter(self._SetSelection, newfield._extent[0], newfield._extent[1])
339983ff
RD
3081 else:
3082 wx.CallAfter(self._SetSelection, newpos, new_select_to)
7722248d 3083 keep_processing = False
d14a1e28
RD
3084
3085 elif keep_processing:
fffd96b7 3086## dbg('char not allowed')
d14a1e28 3087 keep_processing = False
b881fc78
RD
3088 if (not wx.Validator_IsSilent()) and orig_pos == pos:
3089 wx.Bell()
d14a1e28
RD
3090
3091 self._applyFormatting()
3092
3093 # Move to next insertion point
3094 if keep_processing and key not in self._nav:
3095 pos = self._GetInsertionPoint()
3096 next_entry = self._findNextEntry( pos )
3097 if pos != next_entry:
fffd96b7 3098## dbg("moving from %(pos)d to next valid entry: %(next_entry)d" % locals())
b881fc78 3099 wx.CallAfter(self._SetInsertionPoint, next_entry )
d14a1e28
RD
3100
3101 if self._isTemplateChar(pos):
3102 self._AdjustField(pos)
fffd96b7 3103## dbg(indent=0)
d14a1e28
RD
3104
3105
3106 def _FindFieldExtent(self, pos=None, getslice=False, value=None):
3107 """ returns editable extent of field corresponding to
3108 position pos, and, optionally, the contents of that field
3109 in the control or the value specified.
3110 Template chars are bound to the preceding field.
3111 For masks beginning with template chars, these chars are ignored
3112 when calculating the current field.
3113
3114 Eg: with template (###) ###-####,
3115 >>> self._FindFieldExtent(pos=0)
3116 1, 4
3117 >>> self._FindFieldExtent(pos=1)
3118 1, 4
3119 >>> self._FindFieldExtent(pos=5)
3120 1, 4
3121 >>> self._FindFieldExtent(pos=6)
3122 6, 9
3123 >>> self._FindFieldExtent(pos=10)
3124 10, 14
3125 etc.
3126 """
fffd96b7 3127## dbg('MaskedEditMixin::_FindFieldExtent(pos=%s, getslice=%s)' % (str(pos), str(getslice)) ,indent=1)
d14a1e28
RD
3128
3129 field = self._FindField(pos)
3130 if not field:
3131 if getslice:
3132 return None, None, ""
3133 else:
3134 return None, None
3135 edit_start, edit_end = field._extent
3136 if getslice:
3137 if value is None: value = self._GetValue()
3138 slice = value[edit_start:edit_end]
fffd96b7
RD
3139## dbg('edit_start:', edit_start, 'edit_end:', edit_end, 'slice: "%s"' % slice)
3140## dbg(indent=0)
d14a1e28
RD
3141 return edit_start, edit_end, slice
3142 else:
fffd96b7
RD
3143## dbg('edit_start:', edit_start, 'edit_end:', edit_end)
3144## dbg(indent=0)
d14a1e28
RD
3145 return edit_start, edit_end
3146
3147
3148 def _FindField(self, pos=None):
3149 """
3150 Returns the field instance in which pos resides.
3151 Template chars are bound to the preceding field.
3152 For masks beginning with template chars, these chars are ignored
3153 when calculating the current field.
3154
3155 """
fffd96b7 3156#### dbg('MaskedEditMixin::_FindField(pos=%s)' % str(pos) ,indent=1)
d14a1e28
RD
3157 if pos is None: pos = self._GetInsertionPoint()
3158 elif pos < 0 or pos > self._masklength:
3159 raise IndexError('position %s out of range of control' % str(pos))
3160
3161 if len(self._fields) == 0:
fffd96b7 3162## dbg(indent=0)
d14a1e28
RD
3163 return None
3164
3165 # else...
fffd96b7 3166#### dbg(indent=0)
d14a1e28
RD
3167 return self._fields[self._lookupField[pos]]
3168
3169
3170 def ClearValue(self):
3171 """ Blanks the current control value by replacing it with the default value."""
fffd96b7 3172## dbg("MaskedEditMixin::ClearValue - value reset to default value (template)")
d14a1e28
RD
3173 self._SetValue( self._template )
3174 self._SetInsertionPoint(0)
3175 self.Refresh()
3176
3177
3178 def _baseCtrlEventHandler(self, event):
3179 """
3180 This function is used whenever a key should be handled by the base control.
3181 """
3182 event.Skip()
3183 return False
3184
3185
3186 def _OnUpNumeric(self, event):
3187 """
3188 Makes up-arrow act like shift-tab should; ie. take you to start of
3189 previous field.
3190 """
fffd96b7 3191## dbg('MaskedEditMixin::_OnUpNumeric', indent=1)
d14a1e28 3192 event.m_shiftDown = 1
fffd96b7 3193## dbg('event.ShiftDown()?', event.ShiftDown())
d14a1e28 3194 self._OnChangeField(event)
fffd96b7 3195## dbg(indent=0)
d14a1e28
RD
3196
3197
3198 def _OnArrow(self, event):
3199 """
3200 Used in response to left/right navigation keys; makes these actions skip
3201 over mask template chars.
3202 """
fffd96b7 3203## dbg("MaskedEditMixin::_OnArrow", indent=1)
d14a1e28
RD
3204 pos = self._GetInsertionPoint()
3205 keycode = event.GetKeyCode()
3206 sel_start, sel_to = self._GetSelection()
3207 entry_end = self._goEnd(getPosOnly=True)
b881fc78 3208 if keycode in (wx.WXK_RIGHT, wx.WXK_DOWN):
d14a1e28
RD
3209 if( ( not self._isTemplateChar(pos) and pos+1 > entry_end)
3210 or ( self._isTemplateChar(pos) and pos >= entry_end) ):
fffd96b7 3211## dbg("can't advance", indent=0)
d14a1e28
RD
3212 return False
3213 elif self._isTemplateChar(pos):
3214 self._AdjustField(pos)
b881fc78 3215 elif keycode in (wx.WXK_LEFT,wx.WXK_UP) and sel_start == sel_to and pos > 0 and self._isTemplateChar(pos-1):
fffd96b7 3216## dbg('adjusting field')
d14a1e28
RD
3217 self._AdjustField(pos)
3218
3219 # treat as shifted up/down arrows as tab/reverse tab:
b881fc78 3220 if event.ShiftDown() and keycode in (wx.WXK_UP, wx.WXK_DOWN):
d14a1e28
RD
3221 # remove "shifting" and treat as (forward) tab:
3222 event.m_shiftDown = False
3223 keep_processing = self._OnChangeField(event)
3224
3225 elif self._FindField(pos)._selectOnFieldEntry:
b881fc78 3226 if( keycode in (wx.WXK_UP, wx.WXK_LEFT)
d14a1e28
RD
3227 and sel_start != 0
3228 and self._isTemplateChar(sel_start-1)
3229 and sel_start != self._masklength
3230 and not self._signOk and not self._useParens):
3231
3232 # call _OnChangeField to handle "ctrl-shifted event"
3233 # (which moves to previous field and selects it.)
3234 event.m_shiftDown = True
3235 event.m_ControlDown = True
3236 keep_processing = self._OnChangeField(event)
b881fc78 3237 elif( keycode in (wx.WXK_DOWN, wx.WXK_RIGHT)
d14a1e28
RD
3238 and sel_to != self._masklength
3239 and self._isTemplateChar(sel_to)):
3240
3241 # when changing field to the right, ensure don't accidentally go left instead
3242 event.m_shiftDown = False
3243 keep_processing = self._OnChangeField(event)
3244 else:
3245 # treat arrows as normal, allowing selection
3246 # as appropriate:
fffd96b7 3247## dbg('using base ctrl event processing')
d14a1e28
RD
3248 event.Skip()
3249 else:
b881fc78
RD
3250 if( (sel_to == self._fields[0]._extent[0] and keycode == wx.WXK_LEFT)
3251 or (sel_to == self._masklength and keycode == wx.WXK_RIGHT) ):
3252 if not wx.Validator_IsSilent():
3253 wx.Bell()
d14a1e28
RD
3254 else:
3255 # treat arrows as normal, allowing selection
3256 # as appropriate:
fffd96b7 3257## dbg('using base event processing')
d14a1e28
RD
3258 event.Skip()
3259
3260 keep_processing = False
fffd96b7 3261## dbg(indent=0)
d14a1e28
RD
3262 return keep_processing
3263
3264
3265 def _OnCtrl_S(self, event):
3266 """ Default Ctrl-S handler; prints value information if demo enabled. """
fffd96b7 3267## dbg("MaskedEditMixin::_OnCtrl_S")
d14a1e28 3268 if self._demo:
d4b73b1b 3269 print 'MaskedEditMixin.GetValue() = "%s"\nMaskedEditMixin.GetPlainValue() = "%s"' % (self.GetValue(), self.GetPlainValue())
d14a1e28
RD
3270 print "Valid? => " + str(self.IsValid())
3271 print "Current field, start, end, value =", str( self._FindFieldExtent(getslice=True))
3272 return False
3273
3274
3275 def _OnCtrl_X(self, event=None):
3276 """ Handles ctrl-x keypress in control and Cut operation on context menu.
3277 Should return False to skip other processing. """
fffd96b7 3278## dbg("MaskedEditMixin::_OnCtrl_X", indent=1)
d14a1e28 3279 self.Cut()
fffd96b7 3280## dbg(indent=0)
d14a1e28
RD
3281 return False
3282
3283 def _OnCtrl_C(self, event=None):
3284 """ Handles ctrl-C keypress in control and Copy operation on context menu.
3285 Uses base control handling. Should return False to skip other processing."""
3286 self.Copy()
3287 return False
3288
3289 def _OnCtrl_V(self, event=None):
3290 """ Handles ctrl-V keypress in control and Paste operation on context menu.
3291 Should return False to skip other processing. """
fffd96b7 3292## dbg("MaskedEditMixin::_OnCtrl_V", indent=1)
d14a1e28 3293 self.Paste()
8c299153 3294## dbg(indent=0)
35d8bffe
RD
3295 return False
3296
3297 def _OnInsert(self, event=None):
3298 """ Handles shift-insert and control-insert operations (paste and copy, respectively)"""
3299## dbg("MaskedEditMixin::_OnInsert", indent=1)
3300 if event and isinstance(event, wx.KeyEvent):
3301 if event.ShiftDown():
3302 self.Paste()
3303 elif event.ControlDown():
3304 self.Copy()
3305 # (else do nothing)
3306 # (else do nothing)
3307## dbg(indent=0)
3308 return False
3309
3310 def _OnDelete(self, event=None):
3311 """ Handles shift-delete and delete operations (cut and erase, respectively)"""
3312## dbg("MaskedEditMixin::_OnDelete", indent=1)
3313 if event and isinstance(event, wx.KeyEvent):
3314 if event.ShiftDown():
3315 self.Cut()
3316 else:
3317 self._OnErase(event)
3318 else:
3319 self._OnErase(event)
fffd96b7 3320## dbg(indent=0)
d14a1e28
RD
3321 return False
3322
3323 def _OnCtrl_Z(self, event=None):
3324 """ Handles ctrl-Z keypress in control and Undo operation on context menu.
7722248d 3325 Should return False to skip other processing. """
fffd96b7 3326## dbg("MaskedEditMixin::_OnCtrl_Z", indent=1)
d14a1e28 3327 self.Undo()
fffd96b7 3328## dbg(indent=0)
d14a1e28
RD
3329 return False
3330
3331 def _OnCtrl_A(self,event=None):
3332 """ Handles ctrl-a keypress in control. Should return False to skip other processing. """
3333 end = self._goEnd(getPosOnly=True)
e72d7b77 3334 if not event or (isinstance(event, wx.KeyEvent) and event.ShiftDown()):
b881fc78
RD
3335 wx.CallAfter(self._SetInsertionPoint, 0)
3336 wx.CallAfter(self._SetSelection, 0, self._masklength)
d14a1e28 3337 else:
b881fc78
RD
3338 wx.CallAfter(self._SetInsertionPoint, 0)
3339 wx.CallAfter(self._SetSelection, 0, end)
d14a1e28
RD
3340 return False
3341
3342
5f280eaa 3343 def _OnErase(self, event=None, just_return_value=False):
d14a1e28 3344 """ Handles backspace and delete keypress in control. Should return False to skip other processing."""
fffd96b7 3345## dbg("MaskedEditMixin::_OnErase", indent=1)
d14a1e28
RD
3346 sel_start, sel_to = self._GetSelection() ## check for a range of selected text
3347
3348 if event is None: # called as action routine from Cut() operation.
b881fc78 3349 key = wx.WXK_DELETE
d14a1e28
RD
3350 else:
3351 key = event.GetKeyCode()
3352
3353 field = self._FindField(sel_to)
3354 start, end = field._extent
3355 value = self._GetValue()
3356 oldstart = sel_start
3357
3358 # If trying to erase beyond "legal" bounds, disallow operation:
b881fc78
RD
3359 if( (sel_to == 0 and key == wx.WXK_BACK)
3360 or (self._signOk and sel_to == 1 and value[0] == ' ' and key == wx.WXK_BACK)
3361 or (sel_to == self._masklength and sel_start == sel_to and key == wx.WXK_DELETE and not field._insertRight)
d14a1e28
RD
3362 or (self._signOk and self._useParens
3363 and sel_start == sel_to
3364 and sel_to == self._masklength - 1
b881fc78
RD
3365 and value[sel_to] == ' ' and key == wx.WXK_DELETE and not field._insertRight) ):
3366 if not wx.Validator_IsSilent():
3367 wx.Bell()
fffd96b7 3368## dbg(indent=0)
d14a1e28
RD
3369 return False
3370
3371
3372 if( field._insertRight # an insert-right field
3373 and value[start:end] != self._template[start:end] # and field not empty
3374 and sel_start >= start # and selection starts in field
3375 and ((sel_to == sel_start # and no selection
3376 and sel_to == end # and cursor at right edge
b881fc78 3377 and key in (wx.WXK_BACK, wx.WXK_DELETE)) # and either delete or backspace key
d14a1e28 3378 or # or
b881fc78 3379 (key == wx.WXK_BACK # backspacing
d14a1e28
RD
3380 and (sel_to == end # and selection ends at right edge
3381 or sel_to < end and field._allowInsert)) ) ): # or allow right insert at any point in field
3382
fffd96b7 3383## dbg('delete left')
d14a1e28 3384 # if backspace but left of cursor is empty, adjust cursor right before deleting
b881fc78 3385 while( key == wx.WXK_BACK
d14a1e28
RD
3386 and sel_start == sel_to
3387 and sel_start < end
3388 and value[start:sel_start] == self._template[start:sel_start]):
3389 sel_start += 1
3390 sel_to = sel_start
3391
fffd96b7 3392## dbg('sel_start, start:', sel_start, start)
d14a1e28
RD
3393
3394 if sel_start == sel_to:
3395 keep = sel_start -1
3396 else:
3397 keep = sel_start
3398 newfield = value[start:keep] + value[sel_to:end]
3399
3400 # handle sign char moving from outside field into the field:
3401 move_sign_into_field = False
3402 if not field._padZero and self._signOk and self._isNeg and value[0] in ('-', '('):
3403 signchar = value[0]
3404 newfield = signchar + newfield
3405 move_sign_into_field = True
fffd96b7 3406## dbg('cut newfield: "%s"' % newfield)
d14a1e28
RD
3407
3408 # handle what should fill in from the left:
3409 left = ""
3410 for i in range(start, end - len(newfield)):
3411 if field._padZero:
3412 left += '0'
3413 elif( self._signOk and self._isNeg and i == 1
3414 and ((self._useParens and newfield.find('(') == -1)
3415 or (not self._useParens and newfield.find('-') == -1)) ):
3416 left += ' '
3417 else:
3418 left += self._template[i] # this can produce strange results in combination with default values...
3419 newfield = left + newfield
fffd96b7 3420## dbg('filled newfield: "%s"' % newfield)
d14a1e28
RD
3421
3422 newstr = value[:start] + newfield + value[end:]
3423
3424 # (handle sign located in "mask position" in front of field prior to delete)
3425 if move_sign_into_field:
3426 newstr = ' ' + newstr[1:]
3427 pos = sel_to
3428 else:
3429 # handle erasure of (left) sign, moving selection accordingly...
3430 if self._signOk and sel_start == 0:
3431 newstr = value = ' ' + value[1:]
3432 sel_start += 1
3433
3434 if field._allowInsert and sel_start >= start:
3435 # selection (if any) falls within current insert-capable field:
3436 select_len = sel_to - sel_start
3437 # determine where cursor should end up:
b881fc78 3438 if key == wx.WXK_BACK:
d14a1e28
RD
3439 if select_len == 0:
3440 newpos = sel_start -1
3441 else:
3442 newpos = sel_start
3443 erase_to = sel_to
3444 else:
3445 newpos = sel_start
3446 if sel_to == sel_start:
3447 erase_to = sel_to + 1
3448 else:
3449 erase_to = sel_to
3450
3451 if self._isTemplateChar(newpos) and select_len == 0:
3452 if self._signOk:
3453 if value[newpos] in ('(', '-'):
3454 newpos += 1 # don't move cusor
3455 newstr = ' ' + value[newpos:]
3456 elif value[newpos] == ')':
3457 # erase right sign, but don't move cursor; (matching left sign handled later)
3458 newstr = value[:newpos] + ' '
3459 else:
3460 # no deletion; just move cursor
3461 newstr = value
3462 else:
3463 # no deletion; just move cursor
3464 newstr = value
3465 else:
3466 if erase_to > end: erase_to = end
3467 erase_len = erase_to - newpos
3468
3469 left = value[start:newpos]
fffd96b7 3470## dbg("retained ='%s'" % value[erase_to:end], 'sel_to:', sel_to, "fill: '%s'" % self._template[end - erase_len:end])
d14a1e28
RD
3471 right = value[erase_to:end] + self._template[end-erase_len:end]
3472 pos_adjust = 0
3473 if field._alignRight:
3474 rstripped = right.rstrip()
3475 if rstripped != right:
3476 pos_adjust = len(right) - len(rstripped)
3477 right = rstripped
3478
3479 if not field._insertRight and value[-1] == ')' and end == self._masklength - 1:
3480 # need to shift ) into the field:
3481 right = right[:-1] + ')'
3482 value = value[:-1] + ' '
3483
3484 newfield = left+right
3485 if pos_adjust:
3486 newfield = newfield.rjust(end-start)
3487 newpos += pos_adjust
fffd96b7 3488## dbg("left='%s', right ='%s', newfield='%s'" %(left, right, newfield))
d14a1e28
RD
3489 newstr = value[:start] + newfield + value[end:]
3490
3491 pos = newpos
3492
3493 else:
3494 if sel_start == sel_to:
fffd96b7 3495## dbg("current sel_start, sel_to:", sel_start, sel_to)
b881fc78 3496 if key == wx.WXK_BACK:
d14a1e28 3497 sel_start, sel_to = sel_to-1, sel_to-1
fffd96b7 3498## dbg("new sel_start, sel_to:", sel_start, sel_to)
d14a1e28
RD
3499
3500 if field._padZero and not value[start:sel_to].replace('0', '').replace(' ','').replace(field._fillChar, ''):
3501 # preceding chars (if any) are zeros, blanks or fillchar; new char should be 0:
3502 newchar = '0'
3503 else:
3504 newchar = self._template[sel_to] ## get an original template character to "clear" the current char
fffd96b7 3505## dbg('value = "%s"' % value, 'value[%d] = "%s"' %(sel_start, value[sel_start]))
d14a1e28
RD
3506
3507 if self._isTemplateChar(sel_to):
3508 if sel_to == 0 and self._signOk and value[sel_to] == '-': # erasing "template" sign char
3509 newstr = ' ' + value[1:]
3510 sel_to += 1
3511 elif self._signOk and self._useParens and (value[sel_to] == ')' or value[sel_to] == '('):
3512 # allow "change sign" by removing both parens:
3513 newstr = value[:self._signpos] + ' ' + value[self._signpos+1:-1] + ' '
3514 else:
3515 newstr = value
3516 newpos = sel_to
3517 else:
3518 if field._insertRight and sel_start == sel_to:
3519 # force non-insert-right behavior, by selecting char to be replaced:
3520 sel_to += 1
3521 newstr, ignore = self._insertKey(newchar, sel_start, sel_start, sel_to, value)
3522
3523 else:
3524 # selection made
3525 newstr = self._eraseSelection(value, sel_start, sel_to)
3526
3527 pos = sel_start # put cursor back at beginning of selection
3528
3529 if self._signOk and self._useParens:
3530 # account for resultant unbalanced parentheses:
3531 left_signpos = newstr.find('(')
3532 right_signpos = newstr.find(')')
3533
3534 if left_signpos == -1 and right_signpos != -1:
3535 # erased left-sign marker; get rid of right sign marker:
3536 newstr = newstr[:right_signpos] + ' ' + newstr[right_signpos+1:]
3537
3538 elif left_signpos != -1 and right_signpos == -1:
3539 # erased right-sign marker; get rid of left-sign marker:
3540 newstr = newstr[:left_signpos] + ' ' + newstr[left_signpos+1:]
3541
fffd96b7
RD
3542## dbg("oldstr:'%s'" % value, 'oldpos:', oldstart)
3543## dbg("newstr:'%s'" % newstr, 'pos:', pos)
d14a1e28
RD
3544
3545 # if erasure results in an invalid field, disallow it:
fffd96b7
RD
3546## dbg('field._validRequired?', field._validRequired)
3547## dbg('field.IsValid("%s")?' % newstr[start:end], field.IsValid(newstr[start:end]))
d14a1e28 3548 if field._validRequired and not field.IsValid(newstr[start:end]):
b881fc78
RD
3549 if not wx.Validator_IsSilent():
3550 wx.Bell()
fffd96b7 3551## dbg(indent=0)
d14a1e28
RD
3552 return False
3553
3554 # if erasure results in an invalid value, disallow it:
3555 if self._ctrl_constraints._validRequired and not self.IsValid(newstr):
b881fc78
RD
3556 if not wx.Validator_IsSilent():
3557 wx.Bell()
fffd96b7 3558## dbg(indent=0)
d14a1e28
RD
3559 return False
3560
5f280eaa
RD
3561 if just_return_value:
3562## dbg(indent=0)
3563 return newstr
3564
3565 # else...
fffd96b7 3566## dbg('setting value (later) to', newstr)
b881fc78 3567 wx.CallAfter(self._SetValue, newstr)
fffd96b7 3568## dbg('setting insertion point (later) to', pos)
b881fc78 3569 wx.CallAfter(self._SetInsertionPoint, pos)
fffd96b7
RD
3570## dbg(indent=0)
3571 if newstr != value:
3572 self.modified = True
d14a1e28
RD
3573 return False
3574
3575
3576 def _OnEnd(self,event):
3577 """ Handles End keypress in control. Should return False to skip other processing. """
fffd96b7 3578## dbg("MaskedEditMixin::_OnEnd", indent=1)
d14a1e28
RD
3579 pos = self._adjustPos(self._GetInsertionPoint(), event.GetKeyCode())
3580 if not event.ControlDown():
3581 end = self._masklength # go to end of control
3582 if self._signOk and self._useParens:
3583 end = end - 1 # account for reserved char at end
3584 else:
3585 end_of_input = self._goEnd(getPosOnly=True)
3586 sel_start, sel_to = self._GetSelection()
3587 if sel_to < pos: sel_to = pos
3588 field = self._FindField(sel_to)
3589 field_end = self._FindField(end_of_input)
3590
3591 # pick different end point if either:
3592 # - cursor not in same field
3593 # - or at or past last input already
3594 # - or current selection = end of current field:
fffd96b7
RD
3595#### dbg('field != field_end?', field != field_end)
3596#### dbg('sel_to >= end_of_input?', sel_to >= end_of_input)
d14a1e28
RD
3597 if field != field_end or sel_to >= end_of_input:
3598 edit_start, edit_end = field._extent
fffd96b7
RD
3599#### dbg('edit_end:', edit_end)
3600#### dbg('sel_to:', sel_to)
3601#### dbg('sel_to == edit_end?', sel_to == edit_end)
3602#### dbg('field._index < self._field_indices[-1]?', field._index < self._field_indices[-1])
d14a1e28
RD
3603
3604 if sel_to == edit_end and field._index < self._field_indices[-1]:
3605 edit_start, edit_end = self._FindFieldExtent(self._findNextEntry(edit_end)) # go to end of next field:
3606 end = edit_end
fffd96b7 3607## dbg('end moved to', end)
d14a1e28
RD
3608
3609 elif sel_to == edit_end and field._index == self._field_indices[-1]:
3610 # already at edit end of last field; select to end of control:
3611 end = self._masklength
fffd96b7 3612## dbg('end moved to', end)
d14a1e28
RD
3613 else:
3614 end = edit_end # select to end of current field
fffd96b7 3615## dbg('end moved to ', end)
d14a1e28
RD
3616 else:
3617 # select to current end of input
3618 end = end_of_input
3619
3620
fffd96b7 3621#### dbg('pos:', pos, 'end:', end)
d14a1e28
RD
3622
3623 if event.ShiftDown():
3624 if not event.ControlDown():
fffd96b7
RD
3625## dbg("shift-end; select to end of control")
3626 pass
d14a1e28 3627 else:
fffd96b7 3628## dbg("shift-ctrl-end; select to end of non-whitespace")
c878ceea 3629 pass
b881fc78
RD
3630 wx.CallAfter(self._SetInsertionPoint, pos)
3631 wx.CallAfter(self._SetSelection, pos, end)
d14a1e28
RD
3632 else:
3633 if not event.ControlDown():
fffd96b7
RD
3634## dbg('go to end of control:')
3635 pass
b881fc78
RD
3636 wx.CallAfter(self._SetInsertionPoint, end)
3637 wx.CallAfter(self._SetSelection, end, end)
d14a1e28 3638
fffd96b7 3639## dbg(indent=0)
d14a1e28
RD
3640 return False
3641
3642
3643 def _OnReturn(self, event):
3644 """
339983ff
RD
3645 Swallows the return, issues a Navigate event instead, since
3646 masked controls are "single line" by defn.
d14a1e28 3647 """
fffd96b7 3648## dbg('MaskedEditMixin::OnReturn')
339983ff
RD
3649 self.Navigate(True)
3650 return False
d14a1e28
RD
3651
3652
3653 def _OnHome(self,event):
3654 """ Handles Home keypress in control. Should return False to skip other processing."""
fffd96b7 3655## dbg("MaskedEditMixin::_OnHome", indent=1)
d14a1e28
RD
3656 pos = self._adjustPos(self._GetInsertionPoint(), event.GetKeyCode())
3657 sel_start, sel_to = self._GetSelection()
3658
3659 # There are 5 cases here:
3660
3661 # 1) shift: select from start of control to end of current
3662 # selection.
3663 if event.ShiftDown() and not event.ControlDown():
fffd96b7 3664## dbg("shift-home; select to start of control")
d14a1e28
RD
3665 start = 0
3666 end = sel_start
3667
3668 # 2) no shift, no control: move cursor to beginning of control.
3669 elif not event.ControlDown():
fffd96b7 3670## dbg("home; move to start of control")
d14a1e28
RD
3671 start = 0
3672 end = 0
3673
3674 # 3) No shift, control: move cursor back to beginning of field; if
3675 # there already, go to beginning of previous field.
3676 # 4) shift, control, start of selection not at beginning of control:
3677 # move sel_start back to start of field; if already there, go to
3678 # start of previous field.
3679 elif( event.ControlDown()
3680 and (not event.ShiftDown()
3681 or (event.ShiftDown() and sel_start > 0) ) ):
3682 if len(self._field_indices) > 1:
3683 field = self._FindField(sel_start)
3684 start, ignore = field._extent
3685 if sel_start == start and field._index != self._field_indices[0]: # go to start of previous field:
3686 start, ignore = self._FindFieldExtent(sel_start-1)
3687 elif sel_start == start:
3688 start = 0 # go to literal beginning if edit start
3689 # not at that point
3690 end_of_field = True
3691
3692 else:
3693 start = 0
3694
3695 if not event.ShiftDown():
fffd96b7 3696## dbg("ctrl-home; move to beginning of field")
d14a1e28
RD
3697 end = start
3698 else:
fffd96b7 3699## dbg("shift-ctrl-home; select to beginning of field")
d14a1e28
RD
3700 end = sel_to
3701
3702 else:
3703 # 5) shift, control, start of selection at beginning of control:
3704 # unselect by moving sel_to backward to beginning of current field;
3705 # if already there, move to start of previous field.
3706 start = sel_start
3707 if len(self._field_indices) > 1:
3708 # find end of previous field:
3709 field = self._FindField(sel_to)
3710 if sel_to > start and field._index != self._field_indices[0]:
3711 ignore, end = self._FindFieldExtent(field._extent[0]-1)
3712 else:
3713 end = start
3714 end_of_field = True
3715 else:
3716 end = start
3717 end_of_field = False
fffd96b7 3718## dbg("shift-ctrl-home; unselect to beginning of field")
d14a1e28 3719
fffd96b7 3720## dbg('queuing new sel_start, sel_to:', (start, end))
b881fc78
RD
3721 wx.CallAfter(self._SetInsertionPoint, start)
3722 wx.CallAfter(self._SetSelection, start, end)
fffd96b7 3723## dbg(indent=0)
d14a1e28
RD
3724 return False
3725
3726
3727 def _OnChangeField(self, event):
3728 """
3729 Primarily handles TAB events, but can be used for any key that
3730 designer wants to change fields within a masked edit control.
d14a1e28 3731 """
fffd96b7 3732## dbg('MaskedEditMixin::_OnChangeField', indent = 1)
d14a1e28
RD
3733 # determine end of current field:
3734 pos = self._GetInsertionPoint()
fffd96b7 3735## dbg('current pos:', pos)
d14a1e28
RD
3736 sel_start, sel_to = self._GetSelection()
3737
3738 if self._masklength < 0: # no fields; process tab normally
3739 self._AdjustField(pos)
b881fc78 3740 if event.GetKeyCode() == wx.WXK_TAB:
fffd96b7 3741## dbg('tab to next ctrl')
339983ff
RD
3742 # As of 2.5.2, you don't call event.Skip() to do
3743 # this, but instead force explicit navigation, if
3744 # wx.TE_PROCESS_TAB is used (like in the masked edits)
3745 self.Navigate(True)
d14a1e28 3746 #else: do nothing
fffd96b7 3747## dbg(indent=0)
d14a1e28
RD
3748 return False
3749
3750
3751 if event.ShiftDown():
3752
3753 # "Go backward"
3754
3755 # NOTE: doesn't yet work with SHIFT-tab under wx; the control
3756 # never sees this event! (But I've coded for it should it ever work,
d4b73b1b 3757 # and it *does* work for '.' in IpAddrCtrl.)
d14a1e28
RD
3758 field = self._FindField(pos)
3759 index = field._index
3760 field_start = field._extent[0]
3761 if pos < field_start:
fffd96b7 3762## dbg('cursor before 1st field; cannot change to a previous field')
b881fc78
RD
3763 if not wx.Validator_IsSilent():
3764 wx.Bell()
7722248d 3765 return False
d14a1e28
RD
3766
3767 if event.ControlDown():
fffd96b7 3768## dbg('queuing select to beginning of field:', field_start, pos)
b881fc78
RD
3769 wx.CallAfter(self._SetInsertionPoint, field_start)
3770 wx.CallAfter(self._SetSelection, field_start, pos)
fffd96b7 3771## dbg(indent=0)
d14a1e28
RD
3772 return False
3773
3774 elif index == 0:
3775 # We're already in the 1st field; process shift-tab normally:
3776 self._AdjustField(pos)
b881fc78 3777 if event.GetKeyCode() == wx.WXK_TAB:
fffd96b7 3778## dbg('tab to previous ctrl')
339983ff
RD
3779 # As of 2.5.2, you don't call event.Skip() to do
3780 # this, but instead force explicit navigation, if
3781 # wx.TE_PROCESS_TAB is used (like in the masked edits)
3782 self.Navigate(False)
d14a1e28 3783 else:
fffd96b7 3784## dbg('position at beginning')
b881fc78 3785 wx.CallAfter(self._SetInsertionPoint, field_start)
fffd96b7 3786## dbg(indent=0)
d14a1e28
RD
3787 return False
3788 else:
3789 # find beginning of previous field:
3790 begin_prev = self._FindField(field_start-1)._extent[0]
3791 self._AdjustField(pos)
fffd96b7 3792## dbg('repositioning to', begin_prev)
b881fc78 3793 wx.CallAfter(self._SetInsertionPoint, begin_prev)
d14a1e28
RD
3794 if self._FindField(begin_prev)._selectOnFieldEntry:
3795 edit_start, edit_end = self._FindFieldExtent(begin_prev)
fffd96b7 3796## dbg('queuing selection to (%d, %d)' % (edit_start, edit_end))
b881fc78
RD
3797 wx.CallAfter(self._SetInsertionPoint, edit_start)
3798 wx.CallAfter(self._SetSelection, edit_start, edit_end)
fffd96b7 3799## dbg(indent=0)
d14a1e28
RD
3800 return False
3801
3802 else:
3803 # "Go forward"
3804 field = self._FindField(sel_to)
3805 field_start, field_end = field._extent
3806 if event.ControlDown():
fffd96b7 3807## dbg('queuing select to end of field:', pos, field_end)
b881fc78
RD
3808 wx.CallAfter(self._SetInsertionPoint, pos)
3809 wx.CallAfter(self._SetSelection, pos, field_end)
fffd96b7 3810## dbg(indent=0)
d14a1e28
RD
3811 return False
3812 else:
3813 if pos < field_start:
fffd96b7 3814## dbg('cursor before 1st field; go to start of field')
b881fc78 3815 wx.CallAfter(self._SetInsertionPoint, field_start)
d14a1e28 3816 if field._selectOnFieldEntry:
b881fc78 3817 wx.CallAfter(self._SetSelection, field_start, field_end)
d14a1e28 3818 else:
b881fc78 3819 wx.CallAfter(self._SetSelection, field_start, field_start)
d14a1e28
RD
3820 return False
3821 # else...
fffd96b7
RD
3822## dbg('end of current field:', field_end)
3823## dbg('go to next field')
d14a1e28
RD
3824 if field_end == self._fields[self._field_indices[-1]]._extent[1]:
3825 self._AdjustField(pos)
b881fc78 3826 if event.GetKeyCode() == wx.WXK_TAB:
fffd96b7 3827## dbg('tab to next ctrl')
339983ff
RD
3828 # As of 2.5.2, you don't call event.Skip() to do
3829 # this, but instead force explicit navigation, if
3830 # wx.TE_PROCESS_TAB is used (like in the masked edits)
3831 self.Navigate(True)
d14a1e28 3832 else:
fffd96b7 3833## dbg('position at end')
b881fc78 3834 wx.CallAfter(self._SetInsertionPoint, field_end)
fffd96b7 3835## dbg(indent=0)
d14a1e28
RD
3836 return False
3837 else:
3838 # we have to find the start of the next field
3839 next_pos = self._findNextEntry(field_end)
3840 if next_pos == field_end:
fffd96b7 3841## dbg('already in last field')
d14a1e28 3842 self._AdjustField(pos)
b881fc78 3843 if event.GetKeyCode() == wx.WXK_TAB:
fffd96b7 3844## dbg('tab to next ctrl')
339983ff
RD
3845 # As of 2.5.2, you don't call event.Skip() to do
3846 # this, but instead force explicit navigation, if
3847 # wx.TE_PROCESS_TAB is used (like in the masked edits)
3848 self.Navigate(True)
d14a1e28 3849 #else: do nothing
fffd96b7 3850## dbg(indent=0)
d14a1e28
RD
3851 return False
3852 else:
3853 self._AdjustField( pos )
3854
3855 # move cursor to appropriate point in the next field and select as necessary:
3856 field = self._FindField(next_pos)
3857 edit_start, edit_end = field._extent
3858 if field._selectOnFieldEntry:
fffd96b7 3859## dbg('move to ', next_pos)
b881fc78 3860 wx.CallAfter(self._SetInsertionPoint, next_pos)
d14a1e28 3861 edit_start, edit_end = self._FindFieldExtent(next_pos)
fffd96b7 3862## dbg('queuing select', edit_start, edit_end)
b881fc78 3863 wx.CallAfter(self._SetSelection, edit_start, edit_end)
d14a1e28
RD
3864 else:
3865 if field._insertRight:
3866 next_pos = field._extent[1]
fffd96b7 3867## dbg('move to ', next_pos)
b881fc78 3868 wx.CallAfter(self._SetInsertionPoint, next_pos)
fffd96b7 3869## dbg(indent=0)
d14a1e28
RD
3870 return False
3871
3872
3873 def _OnDecimalPoint(self, event):
fffd96b7 3874## dbg('MaskedEditMixin::_OnDecimalPoint', indent=1)
d14a1e28
RD
3875
3876 pos = self._adjustPos(self._GetInsertionPoint(), event.GetKeyCode())
3877
3878 if self._isFloat: ## handle float value, move to decimal place
fffd96b7 3879## dbg('key == Decimal tab; decimal pos:', self._decimalpos)
d14a1e28
RD
3880 value = self._GetValue()
3881 if pos < self._decimalpos:
3882 clipped_text = value[0:pos] + self._decimalChar + value[self._decimalpos+1:]
fffd96b7 3883## dbg('value: "%s"' % self._GetValue(), "clipped_text:'%s'" % clipped_text)
d14a1e28
RD
3884 newstr = self._adjustFloat(clipped_text)
3885 else:
3886 newstr = self._adjustFloat(value)
b881fc78 3887 wx.CallAfter(self._SetValue, newstr)
d14a1e28
RD
3888 fraction = self._fields[1]
3889 start, end = fraction._extent
b881fc78 3890 wx.CallAfter(self._SetInsertionPoint, start)
d14a1e28 3891 if fraction._selectOnFieldEntry:
fffd96b7 3892## dbg('queuing selection after decimal point to:', (start, end))
b881fc78 3893 wx.CallAfter(self._SetSelection, start, end)
339983ff
RD
3894 else:
3895 wx.CallAfter(self._SetSelection, start, start)
d14a1e28
RD
3896 keep_processing = False
3897
3898 if self._isInt: ## handle integer value, truncate from current position
fffd96b7 3899## dbg('key == Integer decimal event')
d14a1e28
RD
3900 value = self._GetValue()
3901 clipped_text = value[0:pos]
fffd96b7 3902## dbg('value: "%s"' % self._GetValue(), "clipped_text:'%s'" % clipped_text)
d14a1e28 3903 newstr = self._adjustInt(clipped_text)
fffd96b7 3904## dbg('newstr: "%s"' % newstr)
b881fc78 3905 wx.CallAfter(self._SetValue, newstr)
d14a1e28
RD
3906 newpos = len(newstr.rstrip())
3907 if newstr.find(')') != -1:
3908 newpos -= 1 # (don't move past right paren)
b881fc78 3909 wx.CallAfter(self._SetInsertionPoint, newpos)
339983ff 3910 wx.CallAfter(self._SetSelection, newpos, newpos)
d14a1e28 3911 keep_processing = False
fffd96b7 3912## dbg(indent=0)
d14a1e28
RD
3913
3914
3915 def _OnChangeSign(self, event):
fffd96b7 3916## dbg('MaskedEditMixin::_OnChangeSign', indent=1)
d14a1e28
RD
3917 key = event.GetKeyCode()
3918 pos = self._adjustPos(self._GetInsertionPoint(), key)
3919 value = self._eraseSelection()
3920 integer = self._fields[0]
3921 start, end = integer._extent
02b800ce 3922 sel_start, sel_to = self._GetSelection()
d14a1e28 3923
fffd96b7 3924#### dbg('adjusted pos:', pos)
d14a1e28
RD
3925 if chr(key) in ('-','+','(', ')') or (chr(key) == " " and pos == self._signpos):
3926 cursign = self._isNeg
fffd96b7 3927## dbg('cursign:', cursign)
d14a1e28 3928 if chr(key) in ('-','(', ')'):
02b800ce
RD
3929 if sel_start <= self._signpos:
3930 self._isNeg = True
3931 else:
3932 self._isNeg = (not self._isNeg) ## flip value
d14a1e28
RD
3933 else:
3934 self._isNeg = False
fffd96b7 3935## dbg('isNeg?', self._isNeg)
d14a1e28
RD
3936
3937 text, self._signpos, self._right_signpos = self._getSignedValue(candidate=value)
fffd96b7 3938## dbg('text:"%s"' % text, 'signpos:', self._signpos, 'right_signpos:', self._right_signpos)
d14a1e28
RD
3939 if text is None:
3940 text = value
3941
3942 if self._isNeg and self._signpos is not None and self._signpos != -1:
3943 if self._useParens and self._right_signpos is not None:
3944 text = text[:self._signpos] + '(' + text[self._signpos+1:self._right_signpos] + ')' + text[self._right_signpos+1:]
3945 else:
3946 text = text[:self._signpos] + '-' + text[self._signpos+1:]
3947 else:
fffd96b7 3948#### dbg('self._isNeg?', self._isNeg, 'self.IsValid(%s)' % text, self.IsValid(text))
d14a1e28
RD
3949 if self._useParens:
3950 text = text[:self._signpos] + ' ' + text[self._signpos+1:self._right_signpos] + ' ' + text[self._right_signpos+1:]
3951 else:
3952 text = text[:self._signpos] + ' ' + text[self._signpos+1:]
fffd96b7 3953## dbg('clearing self._isNeg')
d14a1e28
RD
3954 self._isNeg = False
3955
b881fc78
RD
3956 wx.CallAfter(self._SetValue, text)
3957 wx.CallAfter(self._applyFormatting)
fffd96b7 3958## dbg('pos:', pos, 'signpos:', self._signpos)
d14a1e28 3959 if pos == self._signpos or integer.IsEmpty(text[start:end]):
b881fc78 3960 wx.CallAfter(self._SetInsertionPoint, self._signpos+1)
d14a1e28 3961 else:
b881fc78 3962 wx.CallAfter(self._SetInsertionPoint, pos)
d14a1e28
RD
3963
3964 keep_processing = False
3965 else:
3966 keep_processing = True
fffd96b7 3967## dbg(indent=0)
d14a1e28
RD
3968 return keep_processing
3969
3970
3971 def _OnGroupChar(self, event):
3972 """
3973 This handler is only registered if the mask is a numeric mask.
3974 It allows the insertion of ',' or '.' if appropriate.
3975 """
fffd96b7 3976## dbg('MaskedEditMixin::_OnGroupChar', indent=1)
d14a1e28
RD
3977 keep_processing = True
3978 pos = self._adjustPos(self._GetInsertionPoint(), event.GetKeyCode())
3979 sel_start, sel_to = self._GetSelection()
3980 groupchar = self._fields[0]._groupChar
3981 if not self._isCharAllowed(groupchar, pos, checkRegex=True):
3982 keep_processing = False
b881fc78
RD
3983 if not wx.Validator_IsSilent():
3984 wx.Bell()
d14a1e28
RD
3985
3986 if keep_processing:
3987 newstr, newpos = self._insertKey(groupchar, pos, sel_start, sel_to, self._GetValue() )
fffd96b7 3988## dbg("str with '%s' inserted:" % groupchar, '"%s"' % newstr)
d14a1e28
RD
3989 if self._ctrl_constraints._validRequired and not self.IsValid(newstr):
3990 keep_processing = False
b881fc78
RD
3991 if not wx.Validator_IsSilent():
3992 wx.Bell()
d14a1e28
RD
3993
3994 if keep_processing:
b881fc78
RD
3995 wx.CallAfter(self._SetValue, newstr)
3996 wx.CallAfter(self._SetInsertionPoint, newpos)
d14a1e28 3997 keep_processing = False
fffd96b7 3998## dbg(indent=0)
d14a1e28
RD
3999 return keep_processing
4000
4001
4002 def _findNextEntry(self,pos, adjustInsert=True):
4003 """ Find the insertion point for the next valid entry character position."""
5fe636c6
RD
4004## dbg('MaskedEditMixin::_findNextEntry', indent=1)
4005 if self._isTemplateChar(pos) or pos in self._explicit_field_boundaries: # if changing fields, pay attn to flag
d14a1e28
RD
4006 adjustInsert = adjustInsert
4007 else: # else within a field; flag not relevant
4008 adjustInsert = False
4009
4010 while self._isTemplateChar(pos) and pos < self._masklength:
4011 pos += 1
4012
4013 # if changing fields, and we've been told to adjust insert point,
4014 # look at new field; if empty and right-insert field,
4015 # adjust to right edge:
4016 if adjustInsert and pos < self._masklength:
4017 field = self._FindField(pos)
4018 start, end = field._extent
4019 slice = self._GetValue()[start:end]
4020 if field._insertRight and field.IsEmpty(slice):
4021 pos = end
5fe636c6 4022## dbg('final pos:', pos, indent=0)
d14a1e28
RD
4023 return pos
4024
4025
4026 def _findNextTemplateChar(self, pos):
4027 """ Find the position of the next non-editable character in the mask."""
4028 while not self._isTemplateChar(pos) and pos < self._masklength:
4029 pos += 1
4030 return pos
4031
4032
4033 def _OnAutoCompleteField(self, event):
fffd96b7 4034## dbg('MaskedEditMixin::_OnAutoCompleteField', indent =1)
d14a1e28
RD
4035 pos = self._GetInsertionPoint()
4036 field = self._FindField(pos)
4037 edit_start, edit_end, slice = self._FindFieldExtent(pos, getslice=True)
4038
4039 match_index = None
4040 keycode = event.GetKeyCode()
4041
4042 if field._fillChar != ' ':
4043 text = slice.replace(field._fillChar, '')
4044 else:
4045 text = slice
4046 text = text.strip()
4047 keep_processing = True # (assume True to start)
fffd96b7 4048## dbg('field._hasList?', field._hasList)
d14a1e28 4049 if field._hasList:
fffd96b7
RD
4050## dbg('choices:', field._choices)
4051## dbg('compareChoices:', field._compareChoices)
d14a1e28 4052 choices, choice_required = field._compareChoices, field._choiceRequired
b881fc78 4053 if keycode in (wx.WXK_PRIOR, wx.WXK_UP):
d14a1e28
RD
4054 direction = -1
4055 else:
4056 direction = 1
4057 match_index, partial_match = self._autoComplete(direction, choices, text, compareNoCase=field._compareNoCase, current_index = field._autoCompleteIndex)
4058 if( match_index is None
b881fc78
RD
4059 and (keycode in self._autoCompleteKeycodes + [wx.WXK_PRIOR, wx.WXK_NEXT]
4060 or (keycode in [wx.WXK_UP, wx.WXK_DOWN] and event.ShiftDown() ) ) ):
d14a1e28
RD
4061 # Select the 1st thing from the list:
4062 match_index = 0
4063
4064 if( match_index is not None
b881fc78
RD
4065 and ( keycode in self._autoCompleteKeycodes + [wx.WXK_PRIOR, wx.WXK_NEXT]
4066 or (keycode in [wx.WXK_UP, wx.WXK_DOWN] and event.ShiftDown())
4067 or (keycode == wx.WXK_DOWN and partial_match) ) ):
d14a1e28
RD
4068
4069 # We're allowed to auto-complete:
fffd96b7 4070## dbg('match found')
d14a1e28
RD
4071 value = self._GetValue()
4072 newvalue = value[:edit_start] + field._choices[match_index] + value[edit_end:]
fffd96b7 4073## dbg('setting value to "%s"' % newvalue)
d14a1e28
RD
4074 self._SetValue(newvalue)
4075 self._SetInsertionPoint(min(edit_end, len(newvalue.rstrip())))
4076 self._OnAutoSelect(field, match_index)
4077 self._CheckValid() # recolor as appopriate
4078
4079
b881fc78 4080 if keycode in (wx.WXK_UP, wx.WXK_DOWN, wx.WXK_LEFT, wx.WXK_RIGHT):
d14a1e28
RD
4081 # treat as left right arrow if unshifted, tab/shift tab if shifted.
4082 if event.ShiftDown():
b881fc78 4083 if keycode in (wx.WXK_DOWN, wx.WXK_RIGHT):
d14a1e28
RD
4084 # remove "shifting" and treat as (forward) tab:
4085 event.m_shiftDown = False
4086 keep_processing = self._OnChangeField(event)
4087 else:
4088 keep_processing = self._OnArrow(event)
4089 # else some other key; keep processing the key
4090
fffd96b7 4091## dbg('keep processing?', keep_processing, indent=0)
d14a1e28
RD
4092 return keep_processing
4093
4094
4095 def _OnAutoSelect(self, field, match_index = None):
4096 """
4097 Function called if autoselect feature is enabled and entire control
4098 is selected:
4099 """
fffd96b7 4100## dbg('MaskedEditMixin::OnAutoSelect', field._index)
d14a1e28
RD
4101 if match_index is not None:
4102 field._autoCompleteIndex = match_index
4103
4104
4105 def _autoComplete(self, direction, choices, value, compareNoCase, current_index):
4106 """
4107 This function gets called in response to Auto-complete events.
4108 It attempts to find a match to the specified value against the
4109 list of choices; if exact match, the index of then next
4110 appropriate value in the list, based on the given direction.
4111 If not an exact match, it will return the index of the 1st value from
4112 the choice list for which the partial value can be extended to match.
4113 If no match found, it will return None.
4114 The function returns a 2-tuple, with the 2nd element being a boolean
4115 that indicates if partial match was necessary.
4116 """
fffd96b7 4117## dbg('autoComplete(direction=', direction, 'choices=',choices, 'value=',value,'compareNoCase?', compareNoCase, 'current_index:', current_index, indent=1)
d14a1e28 4118 if value is None:
fffd96b7 4119## dbg('nothing to match against', indent=0)
d14a1e28
RD
4120 return (None, False)
4121
4122 partial_match = False
4123
4124 if compareNoCase:
4125 value = value.lower()
4126
4127 last_index = len(choices) - 1
4128 if value in choices:
fffd96b7 4129## dbg('"%s" in', choices)
d14a1e28
RD
4130 if current_index is not None and choices[current_index] == value:
4131 index = current_index
4132 else:
4133 index = choices.index(value)
4134
fffd96b7 4135## dbg('matched "%s" (%d)' % (choices[index], index))
d14a1e28 4136 if direction == -1:
fffd96b7 4137## dbg('going to previous')
d14a1e28
RD
4138 if index == 0: index = len(choices) - 1
4139 else: index -= 1
4140 else:
4141 if index == len(choices) - 1: index = 0
4142 else: index += 1
fffd96b7 4143## dbg('change value to "%s" (%d)' % (choices[index], index))
d14a1e28
RD
4144 match = index
4145 else:
4146 partial_match = True
4147 value = value.strip()
fffd96b7 4148## dbg('no match; try to auto-complete:')
d14a1e28 4149 match = None
fffd96b7 4150## dbg('searching for "%s"' % value)
d14a1e28
RD
4151 if current_index is None:
4152 indices = range(len(choices))
4153 if direction == -1:
4154 indices.reverse()
4155 else:
4156 if direction == 1:
4157 indices = range(current_index +1, len(choices)) + range(current_index+1)
fffd96b7 4158## dbg('range(current_index+1 (%d), len(choices) (%d)) + range(%d):' % (current_index+1, len(choices), current_index+1), indices)
d14a1e28
RD
4159 else:
4160 indices = range(current_index-1, -1, -1) + range(len(choices)-1, current_index-1, -1)
fffd96b7
RD
4161## dbg('range(current_index-1 (%d), -1) + range(len(choices)-1 (%d)), current_index-1 (%d):' % (current_index-1, len(choices)-1, current_index-1), indices)
4162#### dbg('indices:', indices)
d14a1e28
RD
4163 for index in indices:
4164 choice = choices[index]
4165 if choice.find(value, 0) == 0:
fffd96b7 4166## dbg('match found:', choice)
d14a1e28
RD
4167 match = index
4168 break
281c1054
RD
4169 else:
4170## dbg('choice: "%s" - no match' % choice)
4171 pass
d14a1e28 4172 if match is not None:
fffd96b7
RD
4173## dbg('matched', match)
4174 pass
d14a1e28 4175 else:
fffd96b7
RD
4176## dbg('no match found')
4177 pass
4178## dbg(indent=0)
d14a1e28
RD
4179 return (match, partial_match)
4180
4181
4182 def _AdjustField(self, pos):
4183 """
4184 This function gets called by default whenever the cursor leaves a field.
4185 The pos argument given is the char position before leaving that field.
4186 By default, floating point, integer and date values are adjusted to be
4187 legal in this function. Derived classes may override this function
4188 to modify the value of the control in a different way when changing fields.
4189
4190 NOTE: these change the value immediately, and restore the cursor to
4191 the passed location, so that any subsequent code can then move it
4192 based on the operation being performed.
4193 """
4194 newvalue = value = self._GetValue()
4195 field = self._FindField(pos)
4196 start, end, slice = self._FindFieldExtent(getslice=True)
4197 newfield = field._AdjustField(slice)
4198 newvalue = value[:start] + newfield + value[end:]
4199
4200 if self._isFloat and newvalue != self._template:
4201 newvalue = self._adjustFloat(newvalue)
4202
4203 if self._ctrl_constraints._isInt and value != self._template:
4204 newvalue = self._adjustInt(value)
4205
4206 if self._isDate and value != self._template:
4207 newvalue = self._adjustDate(value, fixcentury=True)
4208 if self._4digityear:
4209 year2dig = self._dateExtent - 2
4210 if pos == year2dig and value[year2dig] != newvalue[year2dig]:
4211 pos = pos+2
4212
4213 if newvalue != value:
339983ff 4214## dbg('old value: "%s"\nnew value: "%s"' % (value, newvalue))
d14a1e28
RD
4215 self._SetValue(newvalue)
4216 self._SetInsertionPoint(pos)
4217
4218
4219 def _adjustKey(self, pos, key):
4220 """ Apply control formatting to the key (e.g. convert to upper etc). """
4221 field = self._FindField(pos)
4222 if field._forceupper and key in range(97,123):
4223 key = ord( chr(key).upper())
4224
4225 if field._forcelower and key in range(97,123):
4226 key = ord( chr(key).lower())
4227
4228 return key
4229
4230
4231 def _adjustPos(self, pos, key):
4232 """
4233 Checks the current insertion point position and adjusts it if
4234 necessary to skip over non-editable characters.
4235 """
fffd96b7 4236## dbg('_adjustPos', pos, key, indent=1)
d14a1e28
RD
4237 sel_start, sel_to = self._GetSelection()
4238 # If a numeric or decimal mask, and negatives allowed, reserve the
4239 # first space for sign, and last one if using parens.
4240 if( self._signOk
4241 and ((pos == self._signpos and key in (ord('-'), ord('+'), ord(' ')) )
02b800ce 4242 or (self._useParens and pos == self._masklength -1))):
fffd96b7 4243## dbg('adjusted pos:', pos, indent=0)
d14a1e28
RD
4244 return pos
4245
4246 if key not in self._nav:
4247 field = self._FindField(pos)
4248
fffd96b7 4249## dbg('field._insertRight?', field._insertRight)
02b800ce 4250## if self._signOk: dbg('self._signpos:', self._signpos)
d14a1e28
RD
4251 if field._insertRight: # if allow right-insert
4252 start, end = field._extent
4253 slice = self._GetValue()[start:end].strip()
4254 field_len = end - start
4255 if pos == end: # if cursor at right edge of field
4256 # if not filled or supposed to stay in field, keep current position
fffd96b7
RD
4257#### dbg('pos==end')
4258#### dbg('len (slice):', len(slice))
4259#### dbg('field_len?', field_len)
4260#### dbg('pos==end; len (slice) < field_len?', len(slice) < field_len)
4261#### dbg('not field._moveOnFieldFull?', not field._moveOnFieldFull)
d14a1e28
RD
4262 if len(slice) == field_len and field._moveOnFieldFull:
4263 # move cursor to next field:
4264 pos = self._findNextEntry(pos)
4265 self._SetInsertionPoint(pos)
4266 if pos < sel_to:
4267 self._SetSelection(pos, sel_to) # restore selection
4268 else:
4269 self._SetSelection(pos, pos) # remove selection
4270 else: # leave cursor alone
4271 pass
4272 else:
4273 # if at start of control, move to right edge
c878ceea
RD
4274 if (sel_to == sel_start
4275 and (self._isTemplateChar(pos) or (pos == start and len(slice)+ 1 < field_len))
4276 and pos != end):
d14a1e28
RD
4277 pos = end # move to right edge
4278## elif sel_start <= start and sel_to == end:
4279## # select to right edge of field - 1 (to replace char)
4280## pos = end - 1
4281## self._SetInsertionPoint(pos)
4282## # restore selection
4283## self._SetSelection(sel_start, pos)
4284
02b800ce
RD
4285 # if selected to beginning and signed, and not changing sign explicitly:
4286 elif self._signOk and sel_start == 0 and key not in (ord('-'), ord('+'), ord(' ')):
d14a1e28
RD
4287 # adjust to past reserved sign position:
4288 pos = self._fields[0]._extent[0]
02b800ce 4289## dbg('adjusting field to ', pos)
d14a1e28 4290 self._SetInsertionPoint(pos)
02b800ce
RD
4291 # but keep original selection, to allow replacement of any sign:
4292 self._SetSelection(0, sel_to)
d14a1e28
RD
4293 else:
4294 pass # leave position/selection alone
4295
4296 # else make sure the user is not trying to type over a template character
4297 # If they are, move them to the next valid entry position
4298 elif self._isTemplateChar(pos):
4299 if( not field._moveOnFieldFull
4300 and (not self._signOk
4301 or (self._signOk
4302 and field._index == 0
4303 and pos > 0) ) ): # don't move to next field without explicit cursor movement
4304 pass
4305 else:
4306 # find next valid position
4307 pos = self._findNextEntry(pos)
4308 self._SetInsertionPoint(pos)
4309 if pos < sel_to: # restore selection
4310 self._SetSelection(pos, sel_to)
339983ff
RD
4311 else:
4312 self._SetSelection(pos, pos)
fffd96b7 4313## dbg('adjusted pos:', pos, indent=0)
d14a1e28
RD
4314 return pos
4315
4316
4317 def _adjustFloat(self, candidate=None):
4318 """
4319 'Fixes' an floating point control. Collapses spaces, right-justifies, etc.
4320 """
fffd96b7 4321## dbg('MaskedEditMixin::_adjustFloat, candidate = "%s"' % candidate, indent=1)
d14a1e28
RD
4322 lenInt,lenFraction = [len(s) for s in self._mask.split('.')] ## Get integer, fraction lengths
4323
4324 if candidate is None: value = self._GetValue()
4325 else: value = candidate
fffd96b7 4326## dbg('value = "%(value)s"' % locals(), 'len(value):', len(value))
d14a1e28
RD
4327 intStr, fracStr = value.split(self._decimalChar)
4328
4329 intStr = self._fields[0]._AdjustField(intStr)
fffd96b7 4330## dbg('adjusted intStr: "%s"' % intStr)
d14a1e28
RD
4331 lenInt = len(intStr)
4332 fracStr = fracStr + ('0'*(lenFraction-len(fracStr))) # add trailing spaces to decimal
4333
fffd96b7
RD
4334## dbg('intStr "%(intStr)s"' % locals())
4335## dbg('lenInt:', lenInt)
d14a1e28
RD
4336
4337 intStr = string.rjust( intStr[-lenInt:], lenInt)
fffd96b7 4338## dbg('right-justifed intStr = "%(intStr)s"' % locals())
d14a1e28
RD
4339 newvalue = intStr + self._decimalChar + fracStr
4340
4341 if self._signOk:
4342 if len(newvalue) < self._masklength:
4343 newvalue = ' ' + newvalue
4344 signedvalue = self._getSignedValue(newvalue)[0]
4345 if signedvalue is not None: newvalue = signedvalue
4346
4347 # Finally, align string with decimal position, left-padding with
4348 # fillChar:
4349 newdecpos = newvalue.find(self._decimalChar)
4350 if newdecpos < self._decimalpos:
4351 padlen = self._decimalpos - newdecpos
4352 newvalue = string.join([' ' * padlen] + [newvalue] ,'')
4353
4354 if self._signOk and self._useParens:
4355 if newvalue.find('(') != -1:
4356 newvalue = newvalue[:-1] + ')'
4357 else:
4358 newvalue = newvalue[:-1] + ' '
4359
fffd96b7 4360## dbg('newvalue = "%s"' % newvalue)
d14a1e28 4361 if candidate is None:
b881fc78 4362 wx.CallAfter(self._SetValue, newvalue)
fffd96b7 4363## dbg(indent=0)
d14a1e28
RD
4364 return newvalue
4365
4366
4367 def _adjustInt(self, candidate=None):
4368 """ 'Fixes' an integer control. Collapses spaces, right or left-justifies."""
fffd96b7 4369## dbg("MaskedEditMixin::_adjustInt", candidate)
d14a1e28
RD
4370 lenInt = self._masklength
4371 if candidate is None: value = self._GetValue()
4372 else: value = candidate
4373
4374 intStr = self._fields[0]._AdjustField(value)
4375 intStr = intStr.strip() # drop extra spaces
fffd96b7 4376## dbg('adjusted field: "%s"' % intStr)
d14a1e28
RD
4377
4378 if self._isNeg and intStr.find('-') == -1 and intStr.find('(') == -1:
4379 if self._useParens:
4380 intStr = '(' + intStr + ')'
4381 else:
4382 intStr = '-' + intStr
4383 elif self._isNeg and intStr.find('-') != -1 and self._useParens:
4384 intStr = intStr.replace('-', '(')
4385
4386 if( self._signOk and ((self._useParens and intStr.find('(') == -1)
4387 or (not self._useParens and intStr.find('-') == -1))):
4388 intStr = ' ' + intStr
4389 if self._useParens:
4390 intStr += ' ' # space for right paren position
4391
4392 elif self._signOk and self._useParens and intStr.find('(') != -1 and intStr.find(')') == -1:
4393 # ensure closing right paren:
4394 intStr += ')'
4395
4396 if self._fields[0]._alignRight: ## Only if right-alignment is enabled
4397 intStr = intStr.rjust( lenInt )
4398 else:
4399 intStr = intStr.ljust( lenInt )
4400
4401 if candidate is None:
b881fc78 4402 wx.CallAfter(self._SetValue, intStr )
d14a1e28
RD
4403 return intStr
4404
4405
4406 def _adjustDate(self, candidate=None, fixcentury=False, force4digit_year=False):
4407 """
4408 'Fixes' a date control, expanding the year if it can.
4409 Applies various self-formatting options.
4410 """
fffd96b7 4411## dbg("MaskedEditMixin::_adjustDate", indent=1)
d14a1e28
RD
4412 if candidate is None: text = self._GetValue()
4413 else: text = candidate
fffd96b7 4414## dbg('text=', text)
d14a1e28
RD
4415 if self._datestyle == "YMD":
4416 year_field = 0
4417 else:
4418 year_field = 2
4419
f54a36bb
RD
4420## dbg('getYear: "%s"' % _getYear(text, self._datestyle))
4421 year = string.replace( _getYear( text, self._datestyle),self._fields[year_field]._fillChar,"") # drop extra fillChars
4422 month = _getMonth( text, self._datestyle)
4423 day = _getDay( text, self._datestyle)
fffd96b7 4424## dbg('self._datestyle:', self._datestyle, 'year:', year, 'Month', month, 'day:', day)
d14a1e28
RD
4425
4426 yearVal = None
4427 yearstart = self._dateExtent - 4
4428 if( len(year) < 4
4429 and (fixcentury
4430 or force4digit_year
4431 or (self._GetInsertionPoint() > yearstart+1 and text[yearstart+2] == ' ')
4432 or (self._GetInsertionPoint() > yearstart+2 and text[yearstart+3] == ' ') ) ):
4433 ## user entered less than four digits and changing fields or past point where we could
4434 ## enter another digit:
4435 try:
4436 yearVal = int(year)
4437 except:
fffd96b7 4438## dbg('bad year=', year)
d14a1e28
RD
4439 year = text[yearstart:self._dateExtent]
4440
4441 if len(year) < 4 and yearVal:
4442 if len(year) == 2:
4443 # Fix year adjustment to be less "20th century" :-) and to adjust heuristic as the
4444 # years pass...
b881fc78 4445 now = wx.DateTime_Now()
d14a1e28
RD
4446 century = (now.GetYear() /100) * 100 # "this century"
4447 twodig_year = now.GetYear() - century # "this year" (2 digits)
4448 # if separation between today's 2-digit year and typed value > 50,
4449 # assume last century,
4450 # else assume this century.
4451 #
4452 # Eg: if 2003 and yearVal == 30, => 2030
4453 # if 2055 and yearVal == 80, => 2080
4454 # if 2010 and yearVal == 96, => 1996
4455 #
4456 if abs(yearVal - twodig_year) > 50:
4457 yearVal = (century - 100) + yearVal
4458 else:
4459 yearVal = century + yearVal
4460 year = str( yearVal )
4461 else: # pad with 0's to make a 4-digit year
4462 year = "%04d" % yearVal
4463 if self._4digityear or force4digit_year:
f54a36bb 4464 text = _makeDate(year, month, day, self._datestyle, text) + text[self._dateExtent:]
fffd96b7 4465## dbg('newdate: "%s"' % text, indent=0)
d14a1e28
RD
4466 return text
4467
4468
4469 def _goEnd(self, getPosOnly=False):
4470 """ Moves the insertion point to the end of user-entry """
fffd96b7 4471## dbg("MaskedEditMixin::_goEnd; getPosOnly:", getPosOnly, indent=1)
d14a1e28 4472 text = self._GetValue()
fffd96b7 4473#### dbg('text: "%s"' % text)
d14a1e28
RD
4474 i = 0
4475 if len(text.rstrip()):
4476 for i in range( min( self._masklength-1, len(text.rstrip())), -1, -1):
fffd96b7 4477#### dbg('i:', i, 'self._isMaskChar(%d)' % i, self._isMaskChar(i))
d14a1e28
RD
4478 if self._isMaskChar(i):
4479 char = text[i]
fffd96b7 4480#### dbg("text[%d]: '%s'" % (i, char))
d14a1e28
RD
4481 if char != ' ':
4482 i += 1
4483 break
4484
4485 if i == 0:
4486 pos = self._goHome(getPosOnly=True)
4487 else:
4488 pos = min(i,self._masklength)
4489
4490 field = self._FindField(pos)
4491 start, end = field._extent
4492 if field._insertRight and pos < end:
4493 pos = end
fffd96b7
RD
4494## dbg('next pos:', pos)
4495## dbg(indent=0)
d14a1e28
RD
4496 if getPosOnly:
4497 return pos
4498 else:
4499 self._SetInsertionPoint(pos)
4500
4501
4502 def _goHome(self, getPosOnly=False):
4503 """ Moves the insertion point to the beginning of user-entry """
fffd96b7 4504## dbg("MaskedEditMixin::_goHome; getPosOnly:", getPosOnly, indent=1)
d14a1e28
RD
4505 text = self._GetValue()
4506 for i in range(self._masklength):
4507 if self._isMaskChar(i):
4508 break
4509 pos = max(i, 0)
fffd96b7 4510## dbg(indent=0)
d14a1e28
RD
4511 if getPosOnly:
4512 return pos
4513 else:
4514 self._SetInsertionPoint(max(i,0))
4515
4516
4517
4518 def _getAllowedChars(self, pos):
4519 """ Returns a string of all allowed user input characters for the provided
4520 mask character plus control options
4521 """
4522 maskChar = self.maskdict[pos]
4523 okchars = self.maskchardict[maskChar] ## entry, get mask approved characters
f54a36bb
RD
4524
4525 # convert okchars to unicode if required; will force subsequent appendings to
4526 # result in unicode strings
4527 if 'unicode' in wx.PlatformInfo and type(okchars) != types.UnicodeType:
4528 okchars = okchars.decode(self._defaultEncoding)
4529
d14a1e28
RD
4530 field = self._FindField(pos)
4531 if okchars and field._okSpaces: ## Allow spaces?
4532 okchars += " "
4533 if okchars and field._includeChars: ## any additional included characters?
4534 okchars += field._includeChars
fffd96b7 4535#### dbg('okchars[%d]:' % pos, okchars)
d14a1e28
RD
4536 return okchars
4537
4538
4539 def _isMaskChar(self, pos):
4540 """ Returns True if the char at position pos is a special mask character (e.g. NCXaA#)
4541 """
4542 if pos < self._masklength:
5fe636c6 4543 return self._ismasked[pos]
d14a1e28
RD
4544 else:
4545 return False
4546
4547
4548 def _isTemplateChar(self,Pos):
4549 """ Returns True if the char at position pos is a template character (e.g. -not- NCXaA#)
4550 """
4551 if Pos < self._masklength:
4552 return not self._isMaskChar(Pos)
4553 else:
4554 return False
4555
4556
4557 def _isCharAllowed(self, char, pos, checkRegex=False, allowAutoSelect=True, ignoreInsertRight=False):
4558 """ Returns True if character is allowed at the specific position, otherwise False."""
fffd96b7 4559## dbg('_isCharAllowed', char, pos, checkRegex, indent=1)
d14a1e28
RD
4560 field = self._FindField(pos)
4561 right_insert = False
4562
4563 if self.controlInitialized:
4564 sel_start, sel_to = self._GetSelection()
4565 else:
4566 sel_start, sel_to = pos, pos
4567
4568 if (field._insertRight or self._ctrl_constraints._insertRight) and not ignoreInsertRight:
4569 start, end = field._extent
4570 field_len = end - start
4571 if self.controlInitialized:
4572 value = self._GetValue()
4573 fstr = value[start:end].strip()
4574 if field._padZero:
4575 while fstr and fstr[0] == '0':
4576 fstr = fstr[1:]
4577 input_len = len(fstr)
4578 if self._signOk and '-' in fstr or '(' in fstr:
4579 input_len -= 1 # sign can move out of field, so don't consider it in length
4580 else:
4581 value = self._template
4582 input_len = 0 # can't get the current "value", so use 0
4583
4584
4585 # if entire field is selected or position is at end and field is not full,
766abb5b
RD
4586 # or if allowed to right-insert at any point in field and field is not full and cursor is not at a fillChar
4587 # or the field is a singleton integer field and is currently 0 and we're at the end:
d14a1e28 4588 if( (sel_start, sel_to) == field._extent
766abb5b
RD
4589 or (pos == end and ((input_len < field_len)
4590 or (field_len == 1
4591 and input_len == field_len
4592 and field._isInt
4593 and value[end-1] == '0'
4594 )
4595 ) ) ):
d14a1e28 4596 pos = end - 1
fffd96b7 4597## dbg('pos = end - 1 = ', pos, 'right_insert? 1')
d14a1e28
RD
4598 right_insert = True
4599 elif( field._allowInsert and sel_start == sel_to
4600 and (sel_to == end or (sel_to < self._masklength and value[sel_start] != field._fillChar))
4601 and input_len < field_len ):
4602 pos = sel_to - 1 # where character will go
fffd96b7 4603## dbg('pos = sel_to - 1 = ', pos, 'right_insert? 1')
d14a1e28
RD
4604 right_insert = True
4605 # else leave pos alone...
4606 else:
fffd96b7
RD
4607## dbg('pos stays ', pos, 'right_insert? 0')
4608 pass
d14a1e28
RD
4609
4610 if self._isTemplateChar( pos ): ## if a template character, return empty
fffd96b7 4611## dbg('%d is a template character; returning False' % pos, indent=0)
d14a1e28
RD
4612 return False
4613
4614 if self._isMaskChar( pos ):
4615 okChars = self._getAllowedChars(pos)
4616
4617 if self._fields[0]._groupdigits and (self._isInt or (self._isFloat and pos < self._decimalpos)):
4618 okChars += self._fields[0]._groupChar
4619
4620 if self._signOk:
4621 if self._isInt or (self._isFloat and pos < self._decimalpos):
4622 okChars += '-'
4623 if self._useParens:
4624 okChars += '('
4625 elif self._useParens and (self._isInt or (self._isFloat and pos > self._decimalpos)):
4626 okChars += ')'
4627
fffd96b7 4628#### dbg('%s in %s?' % (char, okChars), char in okChars)
5fe636c6 4629 approved = (self.maskdict[pos] == '*' or char in okChars)
d14a1e28
RD
4630
4631 if approved and checkRegex:
fffd96b7 4632## dbg("checking appropriate regex's")
d14a1e28
RD
4633 value = self._eraseSelection(self._GetValue())
4634 if right_insert:
766abb5b 4635 # move the position to the right side of the insertion:
d14a1e28
RD
4636 at = pos+1
4637 else:
4638 at = pos
4639 if allowAutoSelect:
4640 newvalue, ignore, ignore, ignore, ignore = self._insertKey(char, at, sel_start, sel_to, value, allowAutoSelect=True)
4641 else:
4642 newvalue, ignore = self._insertKey(char, at, sel_start, sel_to, value)
fffd96b7 4643## dbg('newvalue: "%s"' % newvalue)
d14a1e28
RD
4644
4645 fields = [self._FindField(pos)] + [self._ctrl_constraints]
4646 for field in fields: # includes fields[-1] == "ctrl_constraints"
4647 if field._regexMask and field._filter:
fffd96b7 4648## dbg('checking vs. regex')
d14a1e28
RD
4649 start, end = field._extent
4650 slice = newvalue[start:end]
4651 approved = (re.match( field._filter, slice) is not None)
fffd96b7 4652## dbg('approved?', approved)
d14a1e28 4653 if not approved: break
fffd96b7 4654## dbg(indent=0)
d14a1e28
RD
4655 return approved
4656 else:
fffd96b7 4657## dbg('%d is a !???! character; returning False', indent=0)
d14a1e28
RD
4658 return False
4659
4660
4661 def _applyFormatting(self):
4662 """ Apply formatting depending on the control's state.
4663 Need to find a way to call this whenever the value changes, in case the control's
4664 value has been changed or set programatically.
4665 """
fffd96b7
RD
4666## dbg(suspend=1)
4667## dbg('MaskedEditMixin::_applyFormatting', indent=1)
d14a1e28
RD
4668
4669 # Handle negative numbers
4670 if self._signOk:
4671 text, signpos, right_signpos = self._getSignedValue()
fffd96b7 4672## dbg('text: "%s", signpos:' % text, signpos)
02b800ce
RD
4673 if text and signpos != self._signpos:
4674 self._signpos = signpos
d14a1e28
RD
4675 if not text or text[signpos] not in ('-','('):
4676 self._isNeg = False
fffd96b7 4677## dbg('no valid sign found; new sign:', self._isNeg)
d14a1e28 4678 elif text and self._valid and not self._isNeg and text[signpos] in ('-', '('):
fffd96b7 4679## dbg('setting _isNeg to True')
d14a1e28 4680 self._isNeg = True
fffd96b7 4681## dbg('self._isNeg:', self._isNeg)
d14a1e28
RD
4682
4683 if self._signOk and self._isNeg:
4684 fc = self._signedForegroundColour
4685 else:
4686 fc = self._foregroundColour
4687
4688 if hasattr(fc, '_name'):
4689 c =fc._name
4690 else:
4691 c = fc
fffd96b7 4692## dbg('setting foreground to', c)
d14a1e28
RD
4693 self.SetForegroundColour(fc)
4694
4695 if self._valid:
fffd96b7 4696## dbg('valid')
d14a1e28
RD
4697 if self.IsEmpty():
4698 bc = self._emptyBackgroundColour
4699 else:
4700 bc = self._validBackgroundColour
4701 else:
fffd96b7 4702## dbg('invalid')
d14a1e28
RD
4703 bc = self._invalidBackgroundColour
4704 if hasattr(bc, '_name'):
4705 c =bc._name
4706 else:
4707 c = bc
fffd96b7 4708## dbg('setting background to', c)
d14a1e28
RD
4709 self.SetBackgroundColour(bc)
4710 self._Refresh()
fffd96b7 4711## dbg(indent=0, suspend=0)
d14a1e28
RD
4712
4713
4714 def _getAbsValue(self, candidate=None):
4715 """ Return an unsigned value (i.e. strip the '-' prefix if any), and sign position(s).
4716 """
fffd96b7 4717## dbg('MaskedEditMixin::_getAbsValue; candidate="%s"' % candidate, indent=1)
d14a1e28
RD
4718 if candidate is None: text = self._GetValue()
4719 else: text = candidate
4720 right_signpos = text.find(')')
4721
4722 if self._isInt:
4723 if self._ctrl_constraints._alignRight and self._fields[0]._fillChar == ' ':
4724 signpos = text.find('-')
4725 if signpos == -1:
fffd96b7 4726## dbg('no - found; searching for (')
d14a1e28
RD
4727 signpos = text.find('(')
4728 elif signpos != -1:
fffd96b7
RD
4729## dbg('- found at', signpos)
4730 pass
d14a1e28
RD
4731
4732 if signpos == -1:
fffd96b7
RD
4733## dbg('signpos still -1')
4734## dbg('len(%s) (%d) < len(%s) (%d)?' % (text, len(text), self._mask, self._masklength), len(text) < self._masklength)
d14a1e28
RD
4735 if len(text) < self._masklength:
4736 text = ' ' + text
4737 if len(text) < self._masklength:
4738 text += ' '
4739 if len(text) > self._masklength and text[-1] in (')', ' '):
4740 text = text[:-1]
4741 else:
fffd96b7
RD
4742## dbg('len(%s) (%d), len(%s) (%d)' % (text, len(text), self._mask, self._masklength))
4743## dbg('len(%s) - (len(%s) + 1):' % (text, text.lstrip()) , len(text) - (len(text.lstrip()) + 1))
d14a1e28
RD
4744 signpos = len(text) - (len(text.lstrip()) + 1)
4745
4746 if self._useParens and not text.strip():
4747 signpos -= 1 # empty value; use penultimate space
fffd96b7 4748## dbg('signpos:', signpos)
d14a1e28
RD
4749 if signpos >= 0:
4750 text = text[:signpos] + ' ' + text[signpos+1:]
4751
4752 else:
4753 if self._signOk:
4754 signpos = 0
4755 text = self._template[0] + text[1:]
4756 else:
4757 signpos = -1
4758
4759 if right_signpos != -1:
4760 if self._signOk:
4761 text = text[:right_signpos] + ' ' + text[right_signpos+1:]
4762 elif len(text) > self._masklength:
4763 text = text[:right_signpos] + text[right_signpos+1:]
4764 right_signpos = -1
4765
4766
4767 elif self._useParens and self._signOk:
4768 # figure out where it ought to go:
4769 right_signpos = self._masklength - 1 # initial guess
4770 if not self._ctrl_constraints._alignRight:
fffd96b7 4771## dbg('not right-aligned')
d14a1e28
RD
4772 if len(text.strip()) == 0:
4773 right_signpos = signpos + 1
4774 elif len(text.strip()) < self._masklength:
4775 right_signpos = len(text.rstrip())
fffd96b7 4776## dbg('right_signpos:', right_signpos)
d14a1e28
RD
4777
4778 groupchar = self._fields[0]._groupChar
4779 try:
4780 value = long(text.replace(groupchar,'').replace('(','-').replace(')','').replace(' ', ''))
4781 except:
fffd96b7 4782## dbg('invalid number', indent=0)
d14a1e28
RD
4783 return None, signpos, right_signpos
4784
4785 else: # float value
4786 try:
4787 groupchar = self._fields[0]._groupChar
4788 value = float(text.replace(groupchar,'').replace(self._decimalChar, '.').replace('(', '-').replace(')','').replace(' ', ''))
fffd96b7 4789## dbg('value:', value)
d14a1e28
RD
4790 except:
4791 value = None
4792
4793 if value < 0 and value is not None:
4794 signpos = text.find('-')
4795 if signpos == -1:
4796 signpos = text.find('(')
4797
4798 text = text[:signpos] + self._template[signpos] + text[signpos+1:]
4799 else:
4800 # look forwards up to the decimal point for the 1st non-digit
fffd96b7
RD
4801## dbg('decimal pos:', self._decimalpos)
4802## dbg('text: "%s"' % text)
d14a1e28
RD
4803 if self._signOk:
4804 signpos = self._decimalpos - (len(text[:self._decimalpos].lstrip()) + 1)
fffd96b7 4805 # prevent checking for empty string - Tomo - Wed 14 Jan 2004 03:19:09 PM CET
50940aad 4806 if len(text) >= signpos+1 and text[signpos+1] in ('-','('):
d14a1e28
RD
4807 signpos += 1
4808 else:
4809 signpos = -1
fffd96b7 4810## dbg('signpos:', signpos)
d14a1e28
RD
4811
4812 if self._useParens:
4813 if self._signOk:
4814 right_signpos = self._masklength - 1
4815 text = text[:right_signpos] + ' '
4816 if text[signpos] == '(':
4817 text = text[:signpos] + ' ' + text[signpos+1:]
4818 else:
4819 right_signpos = text.find(')')
4820 if right_signpos != -1:
4821 text = text[:-1]
4822 right_signpos = -1
4823
4824 if value is None:
fffd96b7 4825## dbg('invalid number')
d14a1e28
RD
4826 text = None
4827
fffd96b7
RD
4828## dbg('abstext = "%s"' % text, 'signpos:', signpos, 'right_signpos:', right_signpos)
4829## dbg(indent=0)
d14a1e28
RD
4830 return text, signpos, right_signpos
4831
4832
4833 def _getSignedValue(self, candidate=None):
4834 """ Return a signed value by adding a "-" prefix if the value
4835 is set to negative, or a space if positive.
4836 """
fffd96b7 4837## dbg('MaskedEditMixin::_getSignedValue; candidate="%s"' % candidate, indent=1)
d14a1e28
RD
4838 if candidate is None: text = self._GetValue()
4839 else: text = candidate
4840
4841
4842 abstext, signpos, right_signpos = self._getAbsValue(text)
4843 if self._signOk:
4844 if abstext is None:
fffd96b7 4845## dbg(indent=0)
d14a1e28
RD
4846 return abstext, signpos, right_signpos
4847
4848 if self._isNeg or text[signpos] in ('-', '('):
4849 if self._useParens:
4850 sign = '('
4851 else:
4852 sign = '-'
4853 else:
4854 sign = ' '
4855 if abstext[signpos] not in string.digits:
4856 text = abstext[:signpos] + sign + abstext[signpos+1:]
4857 else:
4858 # this can happen if value passed is too big; sign assumed to be
4859 # in position 0, but if already filled with a digit, prepend sign...
4860 text = sign + abstext
4861 if self._useParens and text.find('(') != -1:
4862 text = text[:right_signpos] + ')' + text[right_signpos+1:]
4863 else:
4864 text = abstext
fffd96b7
RD
4865## dbg('signedtext = "%s"' % text, 'signpos:', signpos, 'right_signpos', right_signpos)
4866## dbg(indent=0)
d14a1e28
RD
4867 return text, signpos, right_signpos
4868
4869
4870 def GetPlainValue(self, candidate=None):
4871 """ Returns control's value stripped of the template text.
d4b73b1b 4872 plainvalue = MaskedEditMixin.GetPlainValue()
d14a1e28 4873 """
fffd96b7 4874## dbg('MaskedEditMixin::GetPlainValue; candidate="%s"' % candidate, indent=1)
d14a1e28
RD
4875
4876 if candidate is None: text = self._GetValue()
4877 else: text = candidate
4878
4879 if self.IsEmpty():
fffd96b7 4880## dbg('returned ""', indent=0)
d14a1e28
RD
4881 return ""
4882 else:
4883 plain = ""
4884 for idx in range( min(len(self._template), len(text)) ):
4885 if self._mask[idx] in maskchars:
4886 plain += text[idx]
4887
4888 if self._isFloat or self._isInt:
fffd96b7 4889## dbg('plain so far: "%s"' % plain)
d14a1e28 4890 plain = plain.replace('(', '-').replace(')', ' ')
fffd96b7 4891## dbg('plain after sign regularization: "%s"' % plain)
d14a1e28
RD
4892
4893 if self._signOk and self._isNeg and plain.count('-') == 0:
4894 # must be in reserved position; add to "plain value"
4895 plain = '-' + plain.strip()
4896
4897 if self._fields[0]._alignRight:
4898 lpad = plain.count(',')
4899 plain = ' ' * lpad + plain.replace(',','')
4900 else:
4901 plain = plain.replace(',','')
fffd96b7 4902## dbg('plain after pad and group:"%s"' % plain)
d14a1e28 4903
fffd96b7 4904## dbg('returned "%s"' % plain.rstrip(), indent=0)
d14a1e28
RD
4905 return plain.rstrip()
4906
4907
4908 def IsEmpty(self, value=None):
4909 """
4910 Returns True if control is equal to an empty value.
4911 (Empty means all editable positions in the template == fillChar.)
4912 """
4913 if value is None: value = self._GetValue()
4914 if value == self._template and not self._defaultValue:
fffd96b7 4915#### dbg("IsEmpty? 1 (value == self._template and not self._defaultValue)")
d14a1e28
RD
4916 return True # (all mask chars == fillChar by defn)
4917 elif value == self._template:
4918 empty = True
4919 for pos in range(len(self._template)):
fffd96b7
RD
4920#### dbg('isMaskChar(%(pos)d)?' % locals(), self._isMaskChar(pos))
4921#### dbg('value[%(pos)d] != self._fillChar?' %locals(), value[pos] != self._fillChar[pos])
d14a1e28
RD
4922 if self._isMaskChar(pos) and value[pos] not in (' ', self._fillChar[pos]):
4923 empty = False
fffd96b7 4924#### dbg("IsEmpty? %(empty)d (do all mask chars == fillChar?)" % locals())
d14a1e28
RD
4925 return empty
4926 else:
fffd96b7 4927#### dbg("IsEmpty? 0 (value doesn't match template)")
d14a1e28
RD
4928 return False
4929
4930
4931 def IsDefault(self, value=None):
4932 """
4933 Returns True if the value specified (or the value of the control if not specified)
4934 is equal to the default value.
4935 """
4936 if value is None: value = self._GetValue()
4937 return value == self._template
4938
4939
4940 def IsValid(self, value=None):
4941 """ Indicates whether the value specified (or the current value of the control
4942 if not specified) is considered valid."""
fffd96b7 4943#### dbg('MaskedEditMixin::IsValid("%s")' % value, indent=1)
d14a1e28
RD
4944 if value is None: value = self._GetValue()
4945 ret = self._CheckValid(value)
fffd96b7 4946#### dbg(indent=0)
d14a1e28
RD
4947 return ret
4948
4949
4950 def _eraseSelection(self, value=None, sel_start=None, sel_to=None):
4951 """ Used to blank the selection when inserting a new character. """
fffd96b7 4952## dbg("MaskedEditMixin::_eraseSelection", indent=1)
d14a1e28
RD
4953 if value is None: value = self._GetValue()
4954 if sel_start is None or sel_to is None:
4955 sel_start, sel_to = self._GetSelection() ## check for a range of selected text
fffd96b7
RD
4956## dbg('value: "%s"' % value)
4957## dbg("current sel_start, sel_to:", sel_start, sel_to)
d14a1e28
RD
4958
4959 newvalue = list(value)
4960 for i in range(sel_start, sel_to):
4961 if self._signOk and newvalue[i] in ('-', '(', ')'):
fffd96b7 4962## dbg('found sign (%s) at' % newvalue[i], i)
d14a1e28
RD
4963
4964 # balance parentheses:
4965 if newvalue[i] == '(':
4966 right_signpos = value.find(')')
4967 if right_signpos != -1:
4968 newvalue[right_signpos] = ' '
4969
4970 elif newvalue[i] == ')':
4971 left_signpos = value.find('(')
4972 if left_signpos != -1:
4973 newvalue[left_signpos] = ' '
4974
4975 newvalue[i] = ' '
4976
4977 elif self._isMaskChar(i):
4978 field = self._FindField(i)
4979 if field._padZero:
4980 newvalue[i] = '0'
4981 else:
4982 newvalue[i] = self._template[i]
4983
4984 value = string.join(newvalue,"")
fffd96b7
RD
4985## dbg('new value: "%s"' % value)
4986## dbg(indent=0)
d14a1e28
RD
4987 return value
4988
4989
4990 def _insertKey(self, char, pos, sel_start, sel_to, value, allowAutoSelect=False):
4991 """ Handles replacement of the character at the current insertion point."""
fffd96b7 4992## dbg('MaskedEditMixin::_insertKey', "\'" + char + "\'", pos, sel_start, sel_to, '"%s"' % value, indent=1)
d14a1e28
RD
4993
4994 text = self._eraseSelection(value)
4995 field = self._FindField(pos)
4996 start, end = field._extent
4997 newtext = ""
4998 newpos = pos
4999
5f280eaa
RD
5000 # if >= 2 chars selected in a right-insert field, do appropriate erase on field,
5001 # then set selection to end, and do usual right insert.
5002 if sel_start != sel_to and sel_to >= sel_start+2:
5003 field = self._FindField(sel_start)
5004 if( field._insertRight # if right-insert
5005 and field._allowInsert # and allow insert at any point in field
5006 and field == self._FindField(sel_to) ): # and selection all in same field
5007 text = self._OnErase(just_return_value=True) # remove selection before insert
5008## dbg('text after (left)erase: "%s"' % text)
5009 pos = sel_start = sel_to
5010
d14a1e28
RD
5011 if pos != sel_start and sel_start == sel_to:
5012 # adjustpos must have moved the position; make selection match:
5013 sel_start = sel_to = pos
5014
fffd96b7 5015## dbg('field._insertRight?', field._insertRight)
5f280eaa
RD
5016## dbg('field._allowInsert?', field._allowInsert)
5017## dbg('sel_start, end', sel_start, end)
5018 if sel_start < end:
5019## dbg('text[sel_start] != field._fillChar?', text[sel_start] != field._fillChar)
5020 pass
5021
d14a1e28
RD
5022 if( field._insertRight # field allows right insert
5023 and ((sel_start, sel_to) == field._extent # and whole field selected
5024 or (sel_start == sel_to # or nothing selected
5025 and (sel_start == end # and cursor at right edge
5026 or (field._allowInsert # or field allows right-insert
5027 and sel_start < end # next to other char in field:
5028 and text[sel_start] != field._fillChar) ) ) ) ):
fffd96b7 5029## dbg('insertRight')
d14a1e28
RD
5030 fstr = text[start:end]
5031 erasable_chars = [field._fillChar, ' ']
5032
766abb5b
RD
5033 # if zero padding field, or a single digit, and currently a value of 0, allow erasure of 0:
5034 if field._padZero or (field._isInt and (end - start == 1) and fstr[0] == '0'):
d14a1e28
RD
5035 erasable_chars.append('0')
5036
5037 erased = ''
fffd96b7
RD
5038#### dbg("fstr[0]:'%s'" % fstr[0])
5039#### dbg('field_index:', field._index)
5040#### dbg("fstr[0] in erasable_chars?", fstr[0] in erasable_chars)
766abb5b 5041#### dbg("self._signOk and field._index == 0 and fstr[0] in ('-','(')?", self._signOk and field._index == 0 and fstr[0] in ('-','('))
d14a1e28
RD
5042 if fstr[0] in erasable_chars or (self._signOk and field._index == 0 and fstr[0] in ('-','(')):
5043 erased = fstr[0]
fffd96b7
RD
5044#### dbg('value: "%s"' % text)
5045#### dbg('fstr: "%s"' % fstr)
5046#### dbg("erased: '%s'" % erased)
d14a1e28
RD
5047 field_sel_start = sel_start - start
5048 field_sel_to = sel_to - start
fffd96b7
RD
5049## dbg('left fstr: "%s"' % fstr[1:field_sel_start])
5050## dbg('right fstr: "%s"' % fstr[field_sel_to:end])
d14a1e28
RD
5051 fstr = fstr[1:field_sel_start] + char + fstr[field_sel_to:end]
5052 if field._alignRight and sel_start != sel_to:
5053 field_len = end - start
5054## pos += (field_len - len(fstr)) # move cursor right by deleted amount
5055 pos = sel_to
fffd96b7 5056## dbg('setting pos to:', pos)
d14a1e28
RD
5057 if field._padZero:
5058 fstr = '0' * (field_len - len(fstr)) + fstr
5059 else:
5060 fstr = fstr.rjust(field_len) # adjust the field accordingly
fffd96b7 5061## dbg('field str: "%s"' % fstr)
d14a1e28
RD
5062
5063 newtext = text[:start] + fstr + text[end:]
5064 if erased in ('-', '(') and self._signOk:
5065 newtext = erased + newtext[1:]
fffd96b7 5066## dbg('newtext: "%s"' % newtext)
d14a1e28
RD
5067
5068 if self._signOk and field._index == 0:
5069 start -= 1 # account for sign position
5070
fffd96b7
RD
5071#### dbg('field._moveOnFieldFull?', field._moveOnFieldFull)
5072#### dbg('len(fstr.lstrip()) == end-start?', len(fstr.lstrip()) == end-start)
d14a1e28
RD
5073 if( field._moveOnFieldFull and pos == end
5074 and len(fstr.lstrip()) == end-start): # if field now full
5075 newpos = self._findNextEntry(end) # go to next field
5076 else:
5077 newpos = pos # else keep cursor at current position
5078
5079 if not newtext:
fffd96b7 5080## dbg('not newtext')
d14a1e28 5081 if newpos != pos:
fffd96b7
RD
5082## dbg('newpos:', newpos)
5083 pass
d14a1e28
RD
5084 if self._signOk and self._useParens:
5085 old_right_signpos = text.find(')')
5086
5087 if field._allowInsert and not field._insertRight and sel_to <= end and sel_start >= start:
281c1054 5088## dbg('inserting within a left-insert-capable field')
d14a1e28
RD
5089 field_len = end - start
5090 before = text[start:sel_start]
5091 after = text[sel_to:end].strip()
fffd96b7
RD
5092#### dbg("current field:'%s'" % text[start:end])
5093#### dbg("before:'%s'" % before, "after:'%s'" % after)
d14a1e28 5094 new_len = len(before) + len(after) + 1 # (for inserted char)
fffd96b7 5095#### dbg('new_len:', new_len)
d14a1e28
RD
5096
5097 if new_len < field_len:
5098 retained = after + self._template[end-(field_len-new_len):end]
5099 elif new_len > end-start:
5100 retained = after[1:]
5101 else:
5102 retained = after
5103
5104 left = text[0:start] + before
fffd96b7 5105#### dbg("left:'%s'" % left, "retained:'%s'" % retained)
d14a1e28
RD
5106 right = retained + text[end:]
5107 else:
5108 left = text[0:pos]
5109 right = text[pos+1:]
5110
f54a36bb
RD
5111 if 'unicode' in wx.PlatformInfo and type(char) != types.UnicodeType:
5112 # convert the keyboard constant to a unicode value, to
5113 # ensure it can be concatenated into the control value:
5114 char = char.decode(self._defaultEncoding)
5115
d14a1e28 5116 newtext = left + char + right
281c1054
RD
5117#### dbg('left: "%s"' % left)
5118#### dbg('right: "%s"' % right)
5119#### dbg('newtext: "%s"' % newtext)
d14a1e28
RD
5120
5121 if self._signOk and self._useParens:
5122 # Balance parentheses:
5123 left_signpos = newtext.find('(')
5124
5125 if left_signpos == -1: # erased '('; remove ')'
5126 right_signpos = newtext.find(')')
5127 if right_signpos != -1:
5128 newtext = newtext[:right_signpos] + ' ' + newtext[right_signpos+1:]
5129
5130 elif old_right_signpos != -1:
5131 right_signpos = newtext.find(')')
5132
5133 if right_signpos == -1: # just replaced right-paren
5134 if newtext[pos] == ' ': # we just erased '); erase '('
5135 newtext = newtext[:left_signpos] + ' ' + newtext[left_signpos+1:]
5136 else: # replaced with digit; move ') over
5137 if self._ctrl_constraints._alignRight or self._isFloat:
5138 newtext = newtext[:-1] + ')'
5139 else:
5140 rstripped_text = newtext.rstrip()
5141 right_signpos = len(rstripped_text)
fffd96b7 5142## dbg('old_right_signpos:', old_right_signpos, 'right signpos now:', right_signpos)
d14a1e28
RD
5143 newtext = newtext[:right_signpos] + ')' + newtext[right_signpos+1:]
5144
5145 if( field._insertRight # if insert-right field (but we didn't start at right edge)
5146 and field._moveOnFieldFull # and should move cursor when full
5147 and len(newtext[start:end].strip()) == end-start): # and field now full
5148 newpos = self._findNextEntry(end) # go to next field
fffd96b7 5149## dbg('newpos = nextentry =', newpos)
d14a1e28 5150 else:
fffd96b7 5151## dbg('pos:', pos, 'newpos:', pos+1)
d14a1e28
RD
5152 newpos = pos+1
5153
5154
5155 if allowAutoSelect:
5156 new_select_to = newpos # (default return values)
5157 match_field = None
5158 match_index = None
5159
5160 if field._autoSelect:
5161 match_index, partial_match = self._autoComplete(1, # (always forward)
5162 field._compareChoices,
5163 newtext[start:end],
5164 compareNoCase=field._compareNoCase,
5165 current_index = field._autoCompleteIndex-1)
5166 if match_index is not None and partial_match:
5167 matched_str = newtext[start:end]
5168 newtext = newtext[:start] + field._choices[match_index] + newtext[end:]
5169 new_select_to = end
5170 match_field = field
5171 if field._insertRight:
5172 # adjust position to just after partial match in field
5173 newpos = end - (len(field._choices[match_index].strip()) - len(matched_str.strip()))
5174
5175 elif self._ctrl_constraints._autoSelect:
5176 match_index, partial_match = self._autoComplete(
5177 1, # (always forward)
5178 self._ctrl_constraints._compareChoices,
5179 newtext,
5180 self._ctrl_constraints._compareNoCase,
5181 current_index = self._ctrl_constraints._autoCompleteIndex - 1)
5182 if match_index is not None and partial_match:
5183 matched_str = newtext
5184 newtext = self._ctrl_constraints._choices[match_index]
5f280eaa 5185 edit_end = self._ctrl_constraints._extent[1]
0297af15 5186 new_select_to = min(edit_end, len(newtext.rstrip()))
d14a1e28
RD
5187 match_field = self._ctrl_constraints
5188 if self._ctrl_constraints._insertRight:
5189 # adjust position to just after partial match in control:
5190 newpos = self._masklength - (len(self._ctrl_constraints._choices[match_index].strip()) - len(matched_str.strip()))
5191
fffd96b7
RD
5192## dbg('newtext: "%s"' % newtext, 'newpos:', newpos, 'new_select_to:', new_select_to)
5193## dbg(indent=0)
d14a1e28
RD
5194 return newtext, newpos, new_select_to, match_field, match_index
5195 else:
fffd96b7
RD
5196## dbg('newtext: "%s"' % newtext, 'newpos:', newpos)
5197## dbg(indent=0)
d14a1e28
RD
5198 return newtext, newpos
5199
5200
5201 def _OnFocus(self,event):
5202 """
5203 This event handler is currently necessary to work around new default
5204 behavior as of wxPython2.3.3;
89f9e172 5205 The TAB key auto selects the entire contents of the wx.TextCtrl *after*
d14a1e28
RD
5206 the EVT_SET_FOCUS event occurs; therefore we can't query/adjust the selection
5207 *here*, because it hasn't happened yet. So to prevent this behavior, and
5208 preserve the correct selection when the focus event is not due to tab,
5209 we need to pull the following trick:
5210 """
fffd96b7 5211## dbg('MaskedEditMixin::_OnFocus')
d2d049f2
RD
5212 if self.IsBeingDeleted() or self.GetParent().IsBeingDeleted():
5213 return
b881fc78 5214 wx.CallAfter(self._fixSelection)
d14a1e28
RD
5215 event.Skip()
5216 self.Refresh()
5217
5218
5219 def _CheckValid(self, candidate=None):
5220 """
5221 This is the default validation checking routine; It verifies that the
5222 current value of the control is a "valid value," and has the side
5223 effect of coloring the control appropriately.
5224 """
fffd96b7
RD
5225## dbg(suspend=1)
5226## dbg('MaskedEditMixin::_CheckValid: candidate="%s"' % candidate, indent=1)
d14a1e28
RD
5227 oldValid = self._valid
5228 if candidate is None: value = self._GetValue()
5229 else: value = candidate
fffd96b7 5230## dbg('value: "%s"' % value)
d14a1e28
RD
5231 oldvalue = value
5232 valid = True # assume True
5233
5234 if not self.IsDefault(value) and self._isDate: ## Date type validation
5235 valid = self._validateDate(value)
fffd96b7 5236## dbg("valid date?", valid)
d14a1e28
RD
5237
5238 elif not self.IsDefault(value) and self._isTime:
5239 valid = self._validateTime(value)
fffd96b7 5240## dbg("valid time?", valid)
d14a1e28
RD
5241
5242 elif not self.IsDefault(value) and (self._isInt or self._isFloat): ## Numeric type
5243 valid = self._validateNumeric(value)
fffd96b7 5244## dbg("valid Number?", valid)
d14a1e28
RD
5245
5246 if valid: # and not self.IsDefault(value): ## generic validation accounts for IsDefault()
5247 ## valid so far; ensure also allowed by any list or regex provided:
5248 valid = self._validateGeneric(value)
fffd96b7 5249## dbg("valid value?", valid)
d14a1e28 5250
fffd96b7 5251## dbg('valid?', valid)
d14a1e28
RD
5252
5253 if not candidate:
5254 self._valid = valid
5255 self._applyFormatting()
5256 if self._valid != oldValid:
fffd96b7
RD
5257## dbg('validity changed: oldValid =',oldValid,'newvalid =', self._valid)
5258## dbg('oldvalue: "%s"' % oldvalue, 'newvalue: "%s"' % self._GetValue())
5259 pass
5260## dbg(indent=0, suspend=0)
d14a1e28
RD
5261 return valid
5262
5263
5264 def _validateGeneric(self, candidate=None):
5265 """ Validate the current value using the provided list or Regex filter (if any).
5266 """
5267 if candidate is None:
5268 text = self._GetValue()
5269 else:
5270 text = candidate
5271
7722248d 5272 valid = True # assume True
d14a1e28
RD
5273 for i in [-1] + self._field_indices: # process global constraints first:
5274 field = self._fields[i]
5275 start, end = field._extent
5276 slice = text[start:end]
5277 valid = field.IsValid(slice)
5278 if not valid:
5279 break
5280
5281 return valid
5282
5283
5284 def _validateNumeric(self, candidate=None):
5285 """ Validate that the value is within the specified range (if specified.)"""
5286 if candidate is None: value = self._GetValue()
5287 else: value = candidate
5288 try:
5289 groupchar = self._fields[0]._groupChar
5290 if self._isFloat:
5291 number = float(value.replace(groupchar, '').replace(self._decimalChar, '.').replace('(', '-').replace(')', ''))
5292 else:
5293 number = long( value.replace(groupchar, '').replace('(', '-').replace(')', ''))
5294 if value.strip():
5295 if self._fields[0]._alignRight:
5296 require_digit_at = self._fields[0]._extent[1]-1
5297 else:
5298 require_digit_at = self._fields[0]._extent[0]
fffd96b7
RD
5299## dbg('require_digit_at:', require_digit_at)
5300## dbg("value[rda]: '%s'" % value[require_digit_at])
d14a1e28
RD
5301 if value[require_digit_at] not in list(string.digits):
5302 valid = False
5303 return valid
5304 # else...
fffd96b7 5305## dbg('number:', number)
d14a1e28
RD
5306 if self._ctrl_constraints._hasRange:
5307 valid = self._ctrl_constraints._rangeLow <= number <= self._ctrl_constraints._rangeHigh
5308 else:
5309 valid = True
5310 groupcharpos = value.rfind(groupchar)
5311 if groupcharpos != -1: # group char present
fffd96b7 5312## dbg('groupchar found at', groupcharpos)
d14a1e28
RD
5313 if self._isFloat and groupcharpos > self._decimalpos:
5314 # 1st one found on right-hand side is past decimal point
fffd96b7 5315## dbg('groupchar in fraction; illegal')
89f9e172 5316 return False
d14a1e28
RD
5317 elif self._isFloat:
5318 integer = value[:self._decimalpos].strip()
5319 else:
5320 integer = value.strip()
fffd96b7 5321## dbg("integer:'%s'" % integer)
d14a1e28
RD
5322 if integer[0] in ('-', '('):
5323 integer = integer[1:]
5324 if integer[-1] == ')':
5325 integer = integer[:-1]
5326
5327 parts = integer.split(groupchar)
fffd96b7 5328## dbg('parts:', parts)
d14a1e28
RD
5329 for i in range(len(parts)):
5330 if i == 0 and abs(int(parts[0])) > 999:
fffd96b7 5331## dbg('group 0 too long; illegal')
d14a1e28
RD
5332 valid = False
5333 break
5334 elif i > 0 and (len(parts[i]) != 3 or ' ' in parts[i]):
fffd96b7 5335## dbg('group %i (%s) not right size; illegal' % (i, parts[i]))
d14a1e28
RD
5336 valid = False
5337 break
5338 except ValueError:
fffd96b7 5339## dbg('value not a valid number')
d14a1e28
RD
5340 valid = False
5341 return valid
5342
5343
5344 def _validateDate(self, candidate=None):
5345 """ Validate the current date value using the provided Regex filter.
5346 Generally used for character types.BufferType
5347 """
fffd96b7 5348## dbg('MaskedEditMixin::_validateDate', indent=1)
d14a1e28
RD
5349 if candidate is None: value = self._GetValue()
5350 else: value = candidate
fffd96b7 5351## dbg('value = "%s"' % value)
d14a1e28 5352 text = self._adjustDate(value, force4digit_year=True) ## Fix the date up before validating it
fffd96b7 5353## dbg('text =', text)
d14a1e28
RD
5354 valid = True # assume True until proven otherwise
5355
5356 try:
5357 # replace fillChar in each field with space:
5358 datestr = text[0:self._dateExtent]
5359 for i in range(3):
5360 field = self._fields[i]
5361 start, end = field._extent
5362 fstr = datestr[start:end]
5363 fstr.replace(field._fillChar, ' ')
5364 datestr = datestr[:start] + fstr + datestr[end:]
5365
f54a36bb 5366 year, month, day = _getDateParts( datestr, self._datestyle)
d14a1e28 5367 year = int(year)
fffd96b7 5368## dbg('self._dateExtent:', self._dateExtent)
d14a1e28
RD
5369 if self._dateExtent == 11:
5370 month = charmonths_dict[month.lower()]
5371 else:
5372 month = int(month)
5373 day = int(day)
fffd96b7 5374## dbg('year, month, day:', year, month, day)
d14a1e28
RD
5375
5376 except ValueError:
fffd96b7 5377## dbg('cannot convert string to integer parts')
d14a1e28
RD
5378 valid = False
5379 except KeyError:
fffd96b7 5380## dbg('cannot convert string to integer month')
d14a1e28
RD
5381 valid = False
5382
5383 if valid:
5384 # use wxDateTime to unambiguously try to parse the date:
5385 # ### Note: because wxDateTime is *brain-dead* and expects months 0-11,
5386 # rather than 1-12, so handle accordingly:
5387 if month > 12:
5388 valid = False
5389 else:
5390 month -= 1
5391 try:
fffd96b7 5392## dbg("trying to create date from values day=%d, month=%d, year=%d" % (day,month,year))
b881fc78 5393 dateHandler = wx.DateTimeFromDMY(day,month,year)
fffd96b7 5394## dbg("succeeded")
d14a1e28
RD
5395 dateOk = True
5396 except:
fffd96b7 5397## dbg('cannot convert string to valid date')
d14a1e28
RD
5398 dateOk = False
5399 if not dateOk:
5400 valid = False
5401
5402 if valid:
5403 # wxDateTime doesn't take kindly to leading/trailing spaces when parsing,
5404 # so we eliminate them here:
5405 timeStr = text[self._dateExtent+1:].strip() ## time portion of the string
5406 if timeStr:
fffd96b7 5407## dbg('timeStr: "%s"' % timeStr)
d14a1e28
RD
5408 try:
5409 checkTime = dateHandler.ParseTime(timeStr)
5410 valid = checkTime == len(timeStr)
5411 except:
5412 valid = False
5413 if not valid:
fffd96b7 5414## dbg('cannot convert string to valid time')
c878ceea 5415 pass
b50732d9 5416## if valid: dbg('valid date')
fffd96b7 5417## dbg(indent=0)
d14a1e28
RD
5418 return valid
5419
5420
5421 def _validateTime(self, candidate=None):
5422 """ Validate the current time value using the provided Regex filter.
5423 Generally used for character types.BufferType
5424 """
fffd96b7 5425## dbg('MaskedEditMixin::_validateTime', indent=1)
d14a1e28
RD
5426 # wxDateTime doesn't take kindly to leading/trailing spaces when parsing,
5427 # so we eliminate them here:
5428 if candidate is None: value = self._GetValue().strip()
5429 else: value = candidate.strip()
fffd96b7 5430## dbg('value = "%s"' % value)
d14a1e28
RD
5431 valid = True # assume True until proven otherwise
5432
b881fc78 5433 dateHandler = wx.DateTime_Today()
d14a1e28
RD
5434 try:
5435 checkTime = dateHandler.ParseTime(value)
fffd96b7 5436## dbg('checkTime:', checkTime, 'len(value)', len(value))
d14a1e28
RD
5437 valid = checkTime == len(value)
5438 except:
5439 valid = False
5440
5441 if not valid:
fffd96b7
RD
5442## dbg('cannot convert string to valid time')
5443 pass
f54a36bb 5444## if valid: dbg('valid time')
fffd96b7 5445## dbg(indent=0)
d14a1e28
RD
5446 return valid
5447
5448
5449 def _OnKillFocus(self,event):
5450 """ Handler for EVT_KILL_FOCUS event.
5451 """
fffd96b7 5452## dbg('MaskedEditMixin::_OnKillFocus', 'isDate=',self._isDate, indent=1)
29ea653e
RD
5453 if self.IsBeingDeleted() or self.GetParent().IsBeingDeleted():
5454 return
d14a1e28
RD
5455 if self._mask and self._IsEditable():
5456 self._AdjustField(self._GetInsertionPoint())
5457 self._CheckValid() ## Call valid handler
5458
5459 self._LostFocus() ## Provided for subclass use
5460 event.Skip()
fffd96b7 5461## dbg(indent=0)
d14a1e28
RD
5462
5463
5464 def _fixSelection(self):
5465 """
5466 This gets called after the TAB traversal selection is made, if the
5467 focus event was due to this, but before the EVT_LEFT_* events if
5468 the focus shift was due to a mouse event.
5469
5470 The trouble is that, a priori, there's no explicit notification of
5471 why the focus event we received. However, the whole reason we need to
89f9e172 5472 do this is because the default behavior on TAB traveral in a wx.TextCtrl is
d14a1e28
RD
5473 now to select the entire contents of the window, something we don't want.
5474 So we can *now* test the selection range, and if it's "the whole text"
5475 we can assume the cause, change the insertion point to the start of
5476 the control, and deselect.
5477 """
fffd96b7 5478## dbg('MaskedEditMixin::_fixSelection', indent=1)
339983ff
RD
5479 # can get here if called with wx.CallAfter after underlying
5480 # control has been destroyed on close, but after focus
5481 # events
5482 if not self or not self._mask or not self._IsEditable():
fffd96b7 5483## dbg(indent=0)
d14a1e28
RD
5484 return
5485
5486 sel_start, sel_to = self._GetSelection()
fffd96b7 5487## dbg('sel_start, sel_to:', sel_start, sel_to, 'self.IsEmpty()?', self.IsEmpty())
d14a1e28
RD
5488
5489 if( sel_start == 0 and sel_to >= len( self._mask ) #(can be greater in numeric controls because of reserved space)
5490 and (not self._ctrl_constraints._autoSelect or self.IsEmpty() or self.IsDefault() ) ):
5491 # This isn't normally allowed, and so assume we got here by the new
5492 # "tab traversal" behavior, so we need to reset the selection
5493 # and insertion point:
fffd96b7 5494## dbg('entire text selected; resetting selection to start of control')
d14a1e28
RD
5495 self._goHome()
5496 field = self._FindField(self._GetInsertionPoint())
5497 edit_start, edit_end = field._extent
5498 if field._selectOnFieldEntry:
02b800ce
RD
5499 if self._isFloat or self._isInt and field == self._fields[0]:
5500 edit_start = 0
d14a1e28
RD
5501 self._SetInsertionPoint(edit_start)
5502 self._SetSelection(edit_start, edit_end)
5503
5504 elif field._insertRight:
5505 self._SetInsertionPoint(edit_end)
5506 self._SetSelection(edit_end, edit_end)
5507
5508 elif (self._isFloat or self._isInt):
5509
5510 text, signpos, right_signpos = self._getAbsValue()
5511 if text is None or text == self._template:
5512 integer = self._fields[0]
5513 edit_start, edit_end = integer._extent
5514
5515 if integer._selectOnFieldEntry:
fffd96b7 5516## dbg('select on field entry:')
02b800ce
RD
5517 self._SetInsertionPoint(0)
5518 self._SetSelection(0, edit_end)
d14a1e28
RD
5519
5520 elif integer._insertRight:
fffd96b7 5521## dbg('moving insertion point to end')
d14a1e28
RD
5522 self._SetInsertionPoint(edit_end)
5523 self._SetSelection(edit_end, edit_end)
5524 else:
fffd96b7 5525## dbg('numeric ctrl is empty; start at beginning after sign')
d14a1e28
RD
5526 self._SetInsertionPoint(signpos+1) ## Move past minus sign space if signed
5527 self._SetSelection(signpos+1, signpos+1)
5528
5529 elif sel_start > self._goEnd(getPosOnly=True):
fffd96b7 5530## dbg('cursor beyond the end of the user input; go to end of it')
d14a1e28
RD
5531 self._goEnd()
5532 else:
fffd96b7
RD
5533## dbg('sel_start, sel_to:', sel_start, sel_to, 'self._masklength:', self._masklength)
5534 pass
5535## dbg(indent=0)
d14a1e28
RD
5536
5537
5538 def _Keypress(self,key):
5539 """ Method provided to override OnChar routine. Return False to force
5540 a skip of the 'normal' OnChar process. Called before class OnChar.
5541 """
5542 return True
5543
5544
5545 def _LostFocus(self):
5546 """ Method provided for subclasses. _LostFocus() is called after
5547 the class processes its EVT_KILL_FOCUS event code.
5548 """
5549 pass
5550
5551
5552 def _OnDoubleClick(self, event):
5553 """ selects field under cursor on dclick."""
5554 pos = self._GetInsertionPoint()
5555 field = self._FindField(pos)
5556 start, end = field._extent
5557 self._SetInsertionPoint(start)
5558 self._SetSelection(start, end)
5559
5560
5561 def _Change(self):
5562 """ Method provided for subclasses. Called by internal EVT_TEXT
5563 handler. Return False to override the class handler, True otherwise.
5564 """
5565 return True
5566
5567
5568 def _Cut(self):
5569 """
5570 Used to override the default Cut() method in base controls, instead
5571 copying the selection to the clipboard and then blanking the selection,
5572 leaving only the mask in the selected area behind.
5573 Note: _Cut (read "undercut" ;-) must be called from a Cut() override in the
5574 derived control because the mixin functions can't override a method of
5575 a sibling class.
5576 """
fffd96b7 5577## dbg("MaskedEditMixin::_Cut", indent=1)
d14a1e28 5578 value = self._GetValue()
fffd96b7 5579## dbg('current value: "%s"' % value)
d14a1e28 5580 sel_start, sel_to = self._GetSelection() ## check for a range of selected text
fffd96b7 5581## dbg('selected text: "%s"' % value[sel_start:sel_to].strip())
89f9e172 5582 do = wx.TextDataObject()
d14a1e28 5583 do.SetText(value[sel_start:sel_to].strip())
89f9e172
RD
5584 wx.TheClipboard.Open()
5585 wx.TheClipboard.SetData(do)
5586 wx.TheClipboard.Close()
d14a1e28
RD
5587
5588 if sel_to - sel_start != 0:
5589 self._OnErase()
fffd96b7 5590## dbg(indent=0)
d14a1e28
RD
5591
5592
5593# WS Note: overriding Copy is no longer necessary given that you
5594# can no longer select beyond the last non-empty char in the control.
5595#
5596## def _Copy( self ):
5597## """
89f9e172 5598## Override the wx.TextCtrl's .Copy function, with our own
d14a1e28
RD
5599## that does validation. Need to strip trailing spaces.
5600## """
5601## sel_start, sel_to = self._GetSelection()
5602## select_len = sel_to - sel_start
89f9e172 5603## textval = wx.TextCtrl._GetValue(self)
d14a1e28 5604##
89f9e172 5605## do = wx.TextDataObject()
d14a1e28 5606## do.SetText(textval[sel_start:sel_to].strip())
89f9e172
RD
5607## wx.TheClipboard.Open()
5608## wx.TheClipboard.SetData(do)
5609## wx.TheClipboard.Close()
d14a1e28
RD
5610
5611
5612 def _getClipboardContents( self ):
5613 """ Subroutine for getting the current contents of the clipboard.
5614 """
89f9e172
RD
5615 do = wx.TextDataObject()
5616 wx.TheClipboard.Open()
5617 success = wx.TheClipboard.GetData(do)
5618 wx.TheClipboard.Close()
d14a1e28
RD
5619
5620 if not success:
5621 return None
5622 else:
5623 # Remove leading and trailing spaces before evaluating contents
5624 return do.GetText().strip()
5625
5626
5627 def _validatePaste(self, paste_text, sel_start, sel_to, raise_on_invalid=False):
5628 """
5629 Used by paste routine and field choice validation to see
5630 if a given slice of paste text is legal for the area in question:
5631 returns validity, replacement text, and extent of paste in
5632 template.
5633 """
fffd96b7
RD
5634## dbg(suspend=1)
5635## dbg('MaskedEditMixin::_validatePaste("%(paste_text)s", %(sel_start)d, %(sel_to)d), raise_on_invalid? %(raise_on_invalid)d' % locals(), indent=1)
d14a1e28
RD
5636 select_length = sel_to - sel_start
5637 maxlength = select_length
fffd96b7 5638## dbg('sel_to - sel_start:', maxlength)
d14a1e28
RD
5639 if maxlength == 0:
5640 maxlength = self._masklength - sel_start
5641 item = 'control'
5642 else:
5643 item = 'selection'
fffd96b7 5644## dbg('maxlength:', maxlength)
f54a36bb
RD
5645 if 'unicode' in wx.PlatformInfo and type(paste_text) != types.UnicodeType:
5646 paste_text = paste_text.decode(self._defaultEncoding)
5647
d14a1e28
RD
5648 length_considered = len(paste_text)
5649 if length_considered > maxlength:
fffd96b7 5650## dbg('paste text will not fit into the %s:' % item, indent=0)
d14a1e28 5651 if raise_on_invalid:
fffd96b7 5652## dbg(indent=0, suspend=0)
d14a1e28 5653 if item == 'control':
5fe636c6
RD
5654 ve = ValueError('"%s" will not fit into the control "%s"' % (paste_text, self.name))
5655 ve.value = paste_text
5656 raise ve
d14a1e28 5657 else:
5fe636c6
RD
5658 ve = ValueError('"%s" will not fit into the selection' % paste_text)
5659 ve.value = paste_text
5660 raise ve
d14a1e28 5661 else:
fffd96b7 5662## dbg(indent=0, suspend=0)
d14a1e28
RD
5663 return False, None, None
5664
5665 text = self._template
fffd96b7 5666## dbg('length_considered:', length_considered)
d14a1e28
RD
5667
5668 valid_paste = True
5669 replacement_text = ""
5670 replace_to = sel_start
5671 i = 0
5672 while valid_paste and i < length_considered and replace_to < self._masklength:
5673 if paste_text[i:] == self._template[replace_to:length_considered]:
5674 # remainder of paste matches template; skip char-by-char analysis
fffd96b7 5675## dbg('remainder paste_text[%d:] (%s) matches template[%d:%d]' % (i, paste_text[i:], replace_to, length_considered))
d14a1e28
RD
5676 replacement_text += paste_text[i:]
5677 replace_to = i = length_considered
5678 continue
5679 # else:
5680 char = paste_text[i]
5681 field = self._FindField(replace_to)
5682 if not field._compareNoCase:
5683 if field._forceupper: char = char.upper()
5684 elif field._forcelower: char = char.lower()
5685
fffd96b7
RD
5686## dbg('char:', "'"+char+"'", 'i =', i, 'replace_to =', replace_to)
5687## dbg('self._isTemplateChar(%d)?' % replace_to, self._isTemplateChar(replace_to))
d14a1e28
RD
5688 if not self._isTemplateChar(replace_to) and self._isCharAllowed( char, replace_to, allowAutoSelect=False, ignoreInsertRight=True):
5689 replacement_text += char
fffd96b7
RD
5690## dbg("not template(%(replace_to)d) and charAllowed('%(char)s',%(replace_to)d)" % locals())
5691## dbg("replacement_text:", '"'+replacement_text+'"')
d14a1e28
RD
5692 i += 1
5693 replace_to += 1
5694 elif( char == self._template[replace_to]
5695 or (self._signOk and
5696 ( (i == 0 and (char == '-' or (self._useParens and char == '(')))
5697 or (i == self._masklength - 1 and self._useParens and char == ')') ) ) ):
5698 replacement_text += char
fffd96b7
RD
5699## dbg("'%(char)s' == template(%(replace_to)d)" % locals())
5700## dbg("replacement_text:", '"'+replacement_text+'"')
d14a1e28
RD
5701 i += 1
5702 replace_to += 1
5703 else:
5704 next_entry = self._findNextEntry(replace_to, adjustInsert=False)
5705 if next_entry == replace_to:
5706 valid_paste = False
5707 else:
5708 replacement_text += self._template[replace_to:next_entry]
fffd96b7
RD
5709## dbg("skipping template; next_entry =", next_entry)
5710## dbg("replacement_text:", '"'+replacement_text+'"')
d14a1e28
RD
5711 replace_to = next_entry # so next_entry will be considered on next loop
5712
5713 if not valid_paste and raise_on_invalid:
fffd96b7 5714## dbg('raising exception', indent=0, suspend=0)
5fe636c6
RD
5715 ve = ValueError('"%s" cannot be inserted into the control "%s"' % (paste_text, self.name))
5716 ve.value = paste_text
5717 raise ve
5718
d14a1e28
RD
5719
5720 elif i < len(paste_text):
5721 valid_paste = False
5722 if raise_on_invalid:
fffd96b7 5723## dbg('raising exception', indent=0, suspend=0)
5fe636c6
RD
5724 ve = ValueError('"%s" will not fit into the control "%s"' % (paste_text, self.name))
5725 ve.value = paste_text
5726 raise ve
d14a1e28 5727
fffd96b7 5728## dbg('valid_paste?', valid_paste)
d14a1e28 5729 if valid_paste:
fffd96b7
RD
5730## dbg('replacement_text: "%s"' % replacement_text, 'replace to:', replace_to)
5731 pass
5732## dbg(indent=0, suspend=0)
d14a1e28
RD
5733 return valid_paste, replacement_text, replace_to
5734
5735
5736 def _Paste( self, value=None, raise_on_invalid=False, just_return_value=False ):
5737 """
5738 Used to override the base control's .Paste() function,
5739 with our own that does validation.
5740 Note: _Paste must be called from a Paste() override in the
5741 derived control because the mixin functions can't override a
5742 method of a sibling class.
5743 """
fffd96b7 5744## dbg('MaskedEditMixin::_Paste (value = "%s")' % value, indent=1)
d14a1e28
RD
5745 if value is None:
5746 paste_text = self._getClipboardContents()
5747 else:
5748 paste_text = value
5749
5750 if paste_text is not None:
f54a36bb
RD
5751
5752 if 'unicode' in wx.PlatformInfo and type(paste_text) != types.UnicodeType:
5753 paste_text = paste_text.decode(self._defaultEncoding)
5754
fffd96b7 5755## dbg('paste text: "%s"' % paste_text)
d14a1e28
RD
5756 # (conversion will raise ValueError if paste isn't legal)
5757 sel_start, sel_to = self._GetSelection()
fffd96b7 5758## dbg('selection:', (sel_start, sel_to))
d14a1e28
RD
5759
5760 # special case: handle allowInsert fields properly
5761 field = self._FindField(sel_start)
5762 edit_start, edit_end = field._extent
5763 new_pos = None
5f280eaa
RD
5764 if field._allowInsert and sel_to <= edit_end and (sel_start + len(paste_text) < edit_end or field._insertRight):
5765 if field._insertRight:
5766 # want to paste to the left; see if it will fit:
5767 left_text = self._GetValue()[edit_start:sel_start].lstrip()
5768## dbg('len(left_text):', len(left_text))
5769## dbg('len(paste_text):', len(paste_text))
5770## dbg('sel_start - (len(left_text) + len(paste_text)) >= edit_start?', sel_start - (len(left_text) + len(paste_text)) >= edit_start)
5771 if sel_start - (len(left_text) - (sel_to - sel_start) + len(paste_text)) >= edit_start:
5772 # will fit! create effective paste text, and move cursor back to do so:
5773 paste_text = left_text + paste_text
5774 sel_start -= len(left_text)
5775 paste_text = paste_text.rjust(sel_to - sel_start)
5776## dbg('modified paste_text to be: "%s"' % paste_text)
5777## dbg('modified selection to:', (sel_start, sel_to))
5778 else:
5779## dbg("won't fit left;", 'paste text remains: "%s"' % paste_text)
5780 pass
5781 else:
5782 paste_text = paste_text + self._GetValue()[sel_to:edit_end].rstrip()
5783## dbg("allow insert, but not insert right;", 'paste text set to: "%s"' % paste_text)
5784
5785
d14a1e28 5786 new_pos = sel_start + len(paste_text) # store for subsequent positioning
fffd96b7 5787## dbg('paste within insertable field; adjusted paste_text: "%s"' % paste_text, 'end:', edit_end)
5f280eaa 5788## dbg('expanded selection to:', (sel_start, sel_to))
d14a1e28
RD
5789
5790 # Another special case: paste won't fit, but it's a right-insert field where entire
5791 # non-empty value is selected, and there's room if the selection is expanded leftward:
5792 if( len(paste_text) > sel_to - sel_start
5793 and field._insertRight
5794 and sel_start > edit_start
5795 and sel_to >= edit_end
5796 and not self._GetValue()[edit_start:sel_start].strip() ):
5797 # text won't fit within selection, but left of selection is empty;
34621cc5 5798 # check to see if we can expand selection to accommodate the value:
d14a1e28
RD
5799 empty_space = sel_start - edit_start
5800 amount_needed = len(paste_text) - (sel_to - sel_start)
5801 if amount_needed <= empty_space:
5802 sel_start -= amount_needed
fffd96b7 5803## dbg('expanded selection to:', (sel_start, sel_to))
d14a1e28
RD
5804
5805
5806 # another special case: deal with signed values properly:
5807 if self._signOk:
5808 signedvalue, signpos, right_signpos = self._getSignedValue()
5809 paste_signpos = paste_text.find('-')
5810 if paste_signpos == -1:
5811 paste_signpos = paste_text.find('(')
5812
5813 # if paste text will result in signed value:
fffd96b7
RD
5814#### dbg('paste_signpos != -1?', paste_signpos != -1)
5815#### dbg('sel_start:', sel_start, 'signpos:', signpos)
5816#### dbg('field._insertRight?', field._insertRight)
5817#### dbg('sel_start - len(paste_text) >= signpos?', sel_start - len(paste_text) <= signpos)
d14a1e28
RD
5818 if paste_signpos != -1 and (sel_start <= signpos
5819 or (field._insertRight and sel_start - len(paste_text) <= signpos)):
5820 signed = True
5821 else:
5822 signed = False
5823 # remove "sign" from paste text, so we can auto-adjust for sign type after paste:
5824 paste_text = paste_text.replace('-', ' ').replace('(',' ').replace(')','')
fffd96b7 5825## dbg('unsigned paste text: "%s"' % paste_text)
d14a1e28
RD
5826 else:
5827 signed = False
5828
5829 # another special case: deal with insert-right fields when selection is empty and
5830 # cursor is at end of field:
fffd96b7
RD
5831#### dbg('field._insertRight?', field._insertRight)
5832#### dbg('sel_start == edit_end?', sel_start == edit_end)
5833#### dbg('sel_start', sel_start, 'sel_to', sel_to)
d14a1e28
RD
5834 if field._insertRight and sel_start == edit_end and sel_start == sel_to:
5835 sel_start -= len(paste_text)
5836 if sel_start < 0:
5837 sel_start = 0
fffd96b7 5838## dbg('adjusted selection:', (sel_start, sel_to))
d14a1e28 5839
5fe636c6 5840 raise_on_invalid = raise_on_invalid or field._raiseOnInvalidPaste
d14a1e28
RD
5841 try:
5842 valid_paste, replacement_text, replace_to = self._validatePaste(paste_text, sel_start, sel_to, raise_on_invalid)
5843 except:
fffd96b7 5844## dbg('exception thrown', indent=0)
d14a1e28
RD
5845 raise
5846
5847 if not valid_paste:
fffd96b7 5848## dbg('paste text not legal for the selection or portion of the control following the cursor;')
b881fc78
RD
5849 if not wx.Validator_IsSilent():
5850 wx.Bell()
fffd96b7 5851## dbg(indent=0)
5f280eaa 5852 return None, -1
d14a1e28
RD
5853 # else...
5854 text = self._eraseSelection()
5855
5856 new_text = text[:sel_start] + replacement_text + text[replace_to:]
5857 if new_text:
5858 new_text = string.ljust(new_text,self._masklength)
5859 if signed:
5860 new_text, signpos, right_signpos = self._getSignedValue(candidate=new_text)
5861 if new_text:
5862 if self._useParens:
5863 new_text = new_text[:signpos] + '(' + new_text[signpos+1:right_signpos] + ')' + new_text[right_signpos+1:]
5864 else:
5865 new_text = new_text[:signpos] + '-' + new_text[signpos+1:]
5866 if not self._isNeg:
5867 self._isNeg = 1
5868
fffd96b7 5869## dbg("new_text:", '"'+new_text+'"')
d14a1e28
RD
5870
5871 if not just_return_value:
fffd96b7
RD
5872 if new_text != self._GetValue():
5873 self.modified = True
d14a1e28
RD
5874 if new_text == '':
5875 self.ClearValue()
5876 else:
b881fc78 5877 wx.CallAfter(self._SetValue, new_text)
d14a1e28
RD
5878 if new_pos is None:
5879 new_pos = sel_start + len(replacement_text)
b881fc78 5880 wx.CallAfter(self._SetInsertionPoint, new_pos)
d14a1e28 5881 else:
fffd96b7 5882## dbg(indent=0)
5f280eaa 5883 return new_text, replace_to
d14a1e28 5884 elif just_return_value:
fffd96b7 5885## dbg(indent=0)
5f280eaa 5886 return self._GetValue(), sel_to
fffd96b7 5887## dbg(indent=0)
d14a1e28 5888
5f280eaa 5889 def _Undo(self, value=None, prev=None, just_return_results=False):
d14a1e28 5890 """ Provides an Undo() method in base controls. """
fffd96b7 5891## dbg("MaskedEditMixin::_Undo", indent=1)
5f280eaa
RD
5892 if value is None:
5893 value = self._GetValue()
5894 if prev is None:
5895 prev = self._prevValue
fffd96b7
RD
5896## dbg('current value: "%s"' % value)
5897## dbg('previous value: "%s"' % prev)
d14a1e28 5898 if prev is None:
fffd96b7 5899## dbg('no previous value', indent=0)
d14a1e28
RD
5900 return
5901
5902 elif value != prev:
5903 # Determine what to select: (relies on fixed-length strings)
5904 # (This is a lot harder than it would first appear, because
5905 # of mask chars that stay fixed, and so break up the "diff"...)
5906
5907 # Determine where they start to differ:
5908 i = 0
5909 length = len(value) # (both are same length in masked control)
5910
5911 while( value[:i] == prev[:i] ):
5912 i += 1
5913 sel_start = i - 1
5914
5915
5916 # handle signed values carefully, so undo from signed to unsigned or vice-versa
5917 # works properly:
5918 if self._signOk:
5919 text, signpos, right_signpos = self._getSignedValue(candidate=prev)
5920 if self._useParens:
5921 if prev[signpos] == '(' and prev[right_signpos] == ')':
5922 self._isNeg = True
5923 else:
5924 self._isNeg = False
5925 # eliminate source of "far-end" undo difference if using balanced parens:
5926 value = value.replace(')', ' ')
5927 prev = prev.replace(')', ' ')
5928 elif prev[signpos] == '-':
5929 self._isNeg = True
5930 else:
5931 self._isNeg = False
5932
5933 # Determine where they stop differing in "undo" result:
5934 sm = difflib.SequenceMatcher(None, a=value, b=prev)
5935 i, j, k = sm.find_longest_match(sel_start, length, sel_start, length)
fffd96b7 5936## dbg('i,j,k = ', (i,j,k), 'value[i:i+k] = "%s"' % value[i:i+k], 'prev[j:j+k] = "%s"' % prev[j:j+k] )
d14a1e28
RD
5937
5938 if k == 0: # no match found; select to end
5939 sel_to = length
5940 else:
5941 code_5tuples = sm.get_opcodes()
5942 for op, i1, i2, j1, j2 in code_5tuples:
fffd96b7
RD
5943## dbg("%7s value[%d:%d] (%s) prev[%d:%d] (%s)" % (op, i1, i2, value[i1:i2], j1, j2, prev[j1:j2]))
5944 pass
d14a1e28
RD
5945
5946 diff_found = False
5947 # look backward through operations needed to produce "previous" value;
5948 # first change wins:
5949 for next_op in range(len(code_5tuples)-1, -1, -1):
5950 op, i1, i2, j1, j2 = code_5tuples[next_op]
fffd96b7 5951## dbg('value[i1:i2]: "%s"' % value[i1:i2], 'template[i1:i2] "%s"' % self._template[i1:i2])
5f280eaa 5952 field = self._FindField(i2)
d14a1e28 5953 if op == 'insert' and prev[j1:j2] != self._template[j1:j2]:
fffd96b7 5954## dbg('insert found: selection =>', (j1, j2))
d14a1e28
RD
5955 sel_start = j1
5956 sel_to = j2
5957 diff_found = True
5958 break
5959 elif op == 'delete' and value[i1:i2] != self._template[i1:i2]:
d14a1e28 5960 edit_start, edit_end = field._extent
5f280eaa 5961 if field._insertRight and (field._allowInsert or i2 == edit_end):
d14a1e28
RD
5962 sel_start = i2
5963 sel_to = i2
5964 else:
5965 sel_start = i1
5966 sel_to = j1
fffd96b7 5967## dbg('delete found: selection =>', (sel_start, sel_to))
d14a1e28
RD
5968 diff_found = True
5969 break
5970 elif op == 'replace':
5f280eaa
RD
5971 if not prev[i1:i2].strip() and field._insertRight:
5972 sel_start = sel_to = j2
5973 else:
5974 sel_start = j1
5975 sel_to = j2
5976## dbg('replace found: selection =>', (sel_start, sel_to))
d14a1e28
RD
5977 diff_found = True
5978 break
5979
5980
5981 if diff_found:
5982 # now go forwards, looking for earlier changes:
5f280eaa 5983## dbg('searching forward...')
d14a1e28
RD
5984 for next_op in range(len(code_5tuples)):
5985 op, i1, i2, j1, j2 = code_5tuples[next_op]
5986 field = self._FindField(i1)
5987 if op == 'equal':
5988 continue
5989 elif op == 'replace':
5f280eaa
RD
5990 if field._insertRight:
5991 # if replace with spaces in an insert-right control, ignore "forward" replace
5992 if not prev[i1:i2].strip():
5993 continue
5994 elif j1 < i1:
5995## dbg('setting sel_start to', j1)
5996 sel_start = j1
5997 else:
5998## dbg('setting sel_start to', i1)
5999 sel_start = i1
6000 else:
6001## dbg('setting sel_start to', i1)
6002 sel_start = i1
6003## dbg('saw replace; breaking')
d14a1e28
RD
6004 break
6005 elif op == 'insert' and not value[i1:i2]:
fffd96b7 6006## dbg('forward %s found' % op)
d14a1e28 6007 if prev[j1:j2].strip():
fffd96b7 6008## dbg('item to insert non-empty; setting sel_start to', j1)
d14a1e28
RD
6009 sel_start = j1
6010 break
6011 elif not field._insertRight:
fffd96b7 6012## dbg('setting sel_start to inserted space:', j1)
d14a1e28
RD
6013 sel_start = j1
6014 break
5f280eaa
RD
6015 elif op == 'delete':
6016## dbg('delete; field._insertRight?', field._insertRight, 'value[%d:%d].lstrip: "%s"' % (i1,i2,value[i1:i2].lstrip()))
6017 if field._insertRight:
6018 if value[i1:i2].lstrip():
6019## dbg('setting sel_start to ', j1)
6020 sel_start = j1
6021## dbg('breaking loop')
6022 break
6023 else:
6024 continue
6025 else:
6026## dbg('saw delete; breaking')
6027 break
d14a1e28 6028 else:
5f280eaa 6029## dbg('unknown code!')
d14a1e28
RD
6030 # we've got what we need
6031 break
6032
6033
6034 if not diff_found:
fffd96b7 6035## dbg('no insert,delete or replace found (!)')
d14a1e28
RD
6036 # do "left-insert"-centric processing of difference based on l.c.s.:
6037 if i == j and j != sel_start: # match starts after start of selection
6038 sel_to = sel_start + (j-sel_start) # select to start of match
6039 else:
6040 sel_to = j # (change ends at j)
6041
6042
6043 # There are several situations where the calculated difference is
6044 # not what we want to select. If changing sign, or just adding
6045 # group characters, we really don't want to highlight the characters
6046 # changed, but instead leave the cursor where it is.
6047 # Also, there a situations in which the difference can be ambiguous;
6048 # Consider:
6049 #
6050 # current value: 11234
6051 # previous value: 1111234
6052 #
6053 # Where did the cursor actually lie and which 1s were selected on the delete
6054 # operation?
6055 #
6056 # Also, difflib can "get it wrong;" Consider:
6057 #
6058 # current value: " 128.66"
6059 # previous value: " 121.86"
6060 #
6061 # difflib produces the following opcodes, which are sub-optimal:
6062 # equal value[0:9] ( 12) prev[0:9] ( 12)
6063 # insert value[9:9] () prev[9:11] (1.)
6064 # equal value[9:10] (8) prev[11:12] (8)
6065 # delete value[10:11] (.) prev[12:12] ()
6066 # equal value[11:12] (6) prev[12:13] (6)
6067 # delete value[12:13] (6) prev[13:13] ()
6068 #
6069 # This should have been:
6070 # equal value[0:9] ( 12) prev[0:9] ( 12)
6071 # replace value[9:11] (8.6) prev[9:11] (1.8)
6072 # equal value[12:13] (6) prev[12:13] (6)
6073 #
6074 # But it didn't figure this out!
6075 #
6076 # To get all this right, we use the previous selection recorded to help us...
6077
6078 if (sel_start, sel_to) != self._prevSelection:
fffd96b7 6079## dbg('calculated selection', (sel_start, sel_to), "doesn't match previous", self._prevSelection)
d14a1e28
RD
6080
6081 prev_sel_start, prev_sel_to = self._prevSelection
6082 field = self._FindField(sel_start)
5f280eaa
RD
6083 if( self._signOk
6084 and sel_start < self._masklength
6085 and (prev[sel_start] in ('-', '(', ')')
6086 or value[sel_start] in ('-', '(', ')')) ):
d14a1e28 6087 # change of sign; leave cursor alone...
5f280eaa
RD
6088## dbg("prev[sel_start] in ('-', '(', ')')?", prev[sel_start] in ('-', '(', ')'))
6089## dbg("value[sel_start] in ('-', '(', ')')?", value[sel_start] in ('-', '(', ')'))
6090## dbg('setting selection to previous one')
d14a1e28
RD
6091 sel_start, sel_to = self._prevSelection
6092
5f280eaa
RD
6093 elif field._groupdigits and (value[sel_start:sel_to] == field._groupChar
6094 or prev[sel_start:sel_to] == field._groupChar):
d14a1e28 6095 # do not highlight grouping changes
5f280eaa
RD
6096## dbg('value[sel_start:sel_to] == field._groupChar?', value[sel_start:sel_to] == field._groupChar)
6097## dbg('prev[sel_start:sel_to] == field._groupChar?', prev[sel_start:sel_to] == field._groupChar)
6098## dbg('setting selection to previous one')
d14a1e28
RD
6099 sel_start, sel_to = self._prevSelection
6100
6101 else:
6102 calc_select_len = sel_to - sel_start
6103 prev_select_len = prev_sel_to - prev_sel_start
6104
fffd96b7
RD
6105## dbg('sel_start == prev_sel_start', sel_start == prev_sel_start)
6106## dbg('sel_to > prev_sel_to', sel_to > prev_sel_to)
d14a1e28
RD
6107
6108 if prev_select_len >= calc_select_len:
6109 # old selection was bigger; trust it:
5f280eaa
RD
6110## dbg('prev_select_len >= calc_select_len?', prev_select_len >= calc_select_len)
6111 if not field._insertRight:
6112## dbg('setting selection to previous one')
6113 sel_start, sel_to = self._prevSelection
6114 else:
6115 sel_to = self._prevSelection[1]
6116## dbg('setting selection to', (sel_start, sel_to))
d14a1e28
RD
6117
6118 elif( sel_to > prev_sel_to # calculated select past last selection
6119 and prev_sel_to < len(self._template) # and prev_sel_to not at end of control
6120 and sel_to == len(self._template) ): # and calculated selection goes to end of control
6121
6122 i, j, k = sm.find_longest_match(prev_sel_to, length, prev_sel_to, length)
fffd96b7 6123## dbg('i,j,k = ', (i,j,k), 'value[i:i+k] = "%s"' % value[i:i+k], 'prev[j:j+k] = "%s"' % prev[j:j+k] )
d14a1e28
RD
6124 if k > 0:
6125 # difflib must not have optimized opcodes properly;
6126 sel_to = j
6127
6128 else:
6129 # look for possible ambiguous diff:
6130
6131 # if last change resulted in no selection, test from resulting cursor position:
6132 if prev_sel_start == prev_sel_to:
6133 calc_select_len = sel_to - sel_start
6134 field = self._FindField(prev_sel_start)
6135
6136 # determine which way to search from last cursor position for ambiguous change:
6137 if field._insertRight:
6138 test_sel_start = prev_sel_start
6139 test_sel_to = prev_sel_start + calc_select_len
6140 else:
6141 test_sel_start = prev_sel_start - calc_select_len
6142 test_sel_to = prev_sel_start
6143 else:
6144 test_sel_start, test_sel_to = prev_sel_start, prev_sel_to
6145
fffd96b7 6146## dbg('test selection:', (test_sel_start, test_sel_to))
5f280eaa
RD
6147## dbg('calc change: "%s"' % prev[sel_start:sel_to])
6148## dbg('test change: "%s"' % prev[test_sel_start:test_sel_to])
d14a1e28
RD
6149
6150 # if calculated selection spans characters, and same characters
6151 # "before" the previous insertion point are present there as well,
6152 # select the ones related to the last known selection instead.
6153 if( sel_start != sel_to
6154 and test_sel_to < len(self._template)
5f280eaa 6155 and prev[test_sel_start:test_sel_to] == prev[sel_start:sel_to] ):
d14a1e28
RD
6156
6157 sel_start, sel_to = test_sel_start, test_sel_to
6158
5f280eaa
RD
6159 # finally, make sure that the old and new values are
6160 # different where we say they're different:
6161 while( sel_to - 1 > 0
6162 and sel_to > sel_start
6163 and value[sel_to-1:] == prev[sel_to-1:]):
6164 sel_to -= 1
6165 while( sel_start + 1 < self._masklength
6166 and sel_start < sel_to
6167 and value[:sel_start+1] == prev[:sel_start+1]):
6168 sel_start += 1
6169
fffd96b7 6170## dbg('sel_start, sel_to:', sel_start, sel_to)
5f280eaa
RD
6171## dbg('previous value: "%s"' % prev)
6172## dbg(indent=0)
6173 if just_return_results:
6174 return prev, (sel_start, sel_to)
6175 # else...
6176 self._SetValue(prev)
d14a1e28
RD
6177 self._SetInsertionPoint(sel_start)
6178 self._SetSelection(sel_start, sel_to)
5f280eaa 6179
d14a1e28 6180 else:
fffd96b7 6181## dbg('no difference between previous value')
5f280eaa
RD
6182## dbg(indent=0)
6183 if just_return_results:
6184 return prev, self._GetSelection()
d14a1e28
RD
6185
6186
6187 def _OnClear(self, event):
6188 """ Provides an action for context menu delete operation """
6189 self.ClearValue()
6190
6191
6192 def _OnContextMenu(self, event):
fffd96b7 6193## dbg('MaskedEditMixin::OnContextMenu()', indent=1)
ebc89b9f
RD
6194 menu = wx.Menu()
6195 menu.Append(wx.ID_UNDO, "Undo", "")
d14a1e28 6196 menu.AppendSeparator()
ebc89b9f
RD
6197 menu.Append(wx.ID_CUT, "Cut", "")
6198 menu.Append(wx.ID_COPY, "Copy", "")
6199 menu.Append(wx.ID_PASTE, "Paste", "")
6200 menu.Append(wx.ID_CLEAR, "Delete", "")
d14a1e28 6201 menu.AppendSeparator()
ebc89b9f 6202 menu.Append(wx.ID_SELECTALL, "Select All", "")
d14a1e28 6203
ebc89b9f
RD
6204 wx.EVT_MENU(menu, wx.ID_UNDO, self._OnCtrl_Z)
6205 wx.EVT_MENU(menu, wx.ID_CUT, self._OnCtrl_X)
6206 wx.EVT_MENU(menu, wx.ID_COPY, self._OnCtrl_C)
6207 wx.EVT_MENU(menu, wx.ID_PASTE, self._OnCtrl_V)
6208 wx.EVT_MENU(menu, wx.ID_CLEAR, self._OnClear)
6209 wx.EVT_MENU(menu, wx.ID_SELECTALL, self._OnCtrl_A)
d14a1e28
RD
6210
6211 # ## WSS: The base control apparently handles
5f280eaa
RD
6212 # enable/disable of wx.ID_CUT, wx.ID_COPY, wx.ID_PASTE
6213 # and wx.ID_CLEAR menu items even if the menu is one
d14a1e28
RD
6214 # we created. However, it doesn't do undo properly,
6215 # so we're keeping track of previous values ourselves.
6216 # Therefore, we have to override the default update for
6217 # that item on the menu:
ebc89b9f 6218 wx.EVT_UPDATE_UI(self, wx.ID_UNDO, self._UndoUpdateUI)
d14a1e28
RD
6219 self._contextMenu = menu
6220
6221 self.PopupMenu(menu, event.GetPosition())
6222 menu.Destroy()
6223 self._contextMenu = None
fffd96b7 6224## dbg(indent=0)
d14a1e28
RD
6225
6226 def _UndoUpdateUI(self, event):
6227 if self._prevValue is None or self._prevValue == self._curValue:
ebc89b9f 6228 self._contextMenu.Enable(wx.ID_UNDO, False)
d14a1e28 6229 else:
ebc89b9f 6230 self._contextMenu.Enable(wx.ID_UNDO, True)
d14a1e28
RD
6231
6232
fffd96b7
RD
6233 def _OnCtrlParametersChanged(self):
6234 """
6235 Overridable function to allow derived classes to take action as a
6236 result of parameter changes prior to possibly changing the value
6237 of the control.
6238 """
6239 pass
6240
6241 ## ---------- ---------- ---------- ---------- ---------- ---------- ----------
fffd96b7 6242class MaskedEditAccessorsMixin:
f54a36bb
RD
6243 """
6244 To avoid a ton of boiler-plate, and to automate the getter/setter generation
6245 for each valid control parameter so we never forget to add the functions when
6246 adding parameters, this class programmatically adds the masked edit mixin
6247 parameters to itself.
6248 (This makes it easier for Designers like Boa to deal with masked controls.)
6249
6250 To further complicate matters, this is done with an extra level of inheritance,
6251 so that "general" classes like masked.TextCtrl can have all possible attributes,
6252 while derived classes, like masked.TimeCtrl and masked.NumCtrl can prevent
6253 exposure of those optional attributes of their base class that do not make
6254 sense for their derivation.
6255
6256 Therefore, we define:
6257 BaseMaskedTextCtrl(TextCtrl, MaskedEditMixin)
6258 and
6259 masked.TextCtrl(BaseMaskedTextCtrl, MaskedEditAccessorsMixin).
6260
6261 This allows us to then derive:
6262 masked.NumCtrl( BaseMaskedTextCtrl )
6263
6264 and not have to expose all the same accessor functions for the
6265 derived control when they don't all make sense for it.
6266
6267 """
fffd96b7
RD
6268
6269 # Define the default set of attributes exposed by the most generic masked controls:
6270 exposed_basectrl_params = MaskedEditMixin.valid_ctrl_params.keys() + Field.valid_params.keys()
6271 exposed_basectrl_params.remove('index')
6272 exposed_basectrl_params.remove('extent')
6273 exposed_basectrl_params.remove('foregroundColour') # (base class already has this)
6274
6275 for param in exposed_basectrl_params:
6276 propname = param[0].upper() + param[1:]
6277 exec('def Set%s(self, value): self.SetCtrlParameters(%s=value)' % (propname, param))
6278 exec('def Get%s(self): return self.GetCtrlParameter("%s")''' % (propname, param))
6279
6280 if param.find('Colour') != -1:
6281 # add non-british spellings, for backward-compatibility
6282 propname.replace('Colour', 'Color')
6283
6284 exec('def Set%s(self, value): self.SetCtrlParameters(%s=value)' % (propname, param))
6285 exec('def Get%s(self): return self.GetCtrlParameter("%s")''' % (propname, param))
6286
d14a1e28 6287
fffd96b7
RD
6288
6289
d14a1e28
RD
6290## ---------- ---------- ---------- ---------- ---------- ---------- ----------
6291## these are helper subroutines:
6292
f54a36bb 6293def _movetofloat( origvalue, fmtstring, neg, addseparators=False, sepchar = ',',fillchar=' '):
d14a1e28
RD
6294 """ addseparators = add separator character every three numerals if True
6295 """
6296 fmt0 = fmtstring.split('.')
6297 fmt1 = fmt0[0]
6298 fmt2 = fmt0[1]
6299 val = origvalue.split('.')[0].strip()
6300 ret = fillchar * (len(fmt1)-len(val)) + val + "." + "0" * len(fmt2)
6301 if neg:
6302 ret = '-' + ret[1:]
6303 return (ret,len(fmt1))
6304
6305
f54a36bb 6306def _isDateType( fmtstring ):
d14a1e28
RD
6307 """ Checks the mask and returns True if it fits an allowed
6308 date or datetime format.
6309 """
6310 dateMasks = ("^##/##/####",
6311 "^##-##-####",
6312 "^##.##.####",
6313 "^####/##/##",
6314 "^####-##-##",
6315 "^####.##.##",
6316 "^##/CCC/####",
6317 "^##.CCC.####",
6318 "^##/##/##$",
6319 "^##/##/## ",
6320 "^##/CCC/##$",
6321 "^##.CCC.## ",)
6322 reString = "|".join(dateMasks)
6323 filter = re.compile( reString)
6324 if re.match(filter,fmtstring): return True
6325 return False
6326
f54a36bb 6327def _isTimeType( fmtstring ):
d14a1e28
RD
6328 """ Checks the mask and returns True if it fits an allowed
6329 time format.
6330 """
6331 reTimeMask = "^##:##(:##)?( (AM|PM))?"
6332 filter = re.compile( reTimeMask )
6333 if re.match(filter,fmtstring): return True
6334 return False
6335
6336
f54a36bb 6337def _isFloatingPoint( fmtstring):
d14a1e28
RD
6338 filter = re.compile("[ ]?[#]+\.[#]+\n")
6339 if re.match(filter,fmtstring+"\n"): return True
6340 return False
6341
6342
f54a36bb 6343def _isInteger( fmtstring ):
d14a1e28
RD
6344 filter = re.compile("[#]+\n")
6345 if re.match(filter,fmtstring+"\n"): return True
6346 return False
6347
6348
f54a36bb 6349def _getDateParts( dateStr, dateFmt ):
d14a1e28
RD
6350 if len(dateStr) > 11: clip = dateStr[0:11]
6351 else: clip = dateStr
6352 if clip[-2] not in string.digits:
6353 clip = clip[:-1] # (got part of time; drop it)
6354
6355 dateSep = (('/' in clip) * '/') + (('-' in clip) * '-') + (('.' in clip) * '.')
6356 slices = clip.split(dateSep)
6357 if dateFmt == "MDY":
6358 y,m,d = (slices[2],slices[0],slices[1]) ## year, month, date parts
6359 elif dateFmt == "DMY":
6360 y,m,d = (slices[2],slices[1],slices[0]) ## year, month, date parts
6361 elif dateFmt == "YMD":
6362 y,m,d = (slices[0],slices[1],slices[2]) ## year, month, date parts
6363 else:
6364 y,m,d = None, None, None
6365 if not y:
6366 return None
6367 else:
6368 return y,m,d
6369
6370
f54a36bb 6371def _getDateSepChar(dateStr):
d14a1e28
RD
6372 clip = dateStr[0:10]
6373 dateSep = (('/' in clip) * '/') + (('-' in clip) * '-') + (('.' in clip) * '.')
6374 return dateSep
6375
6376
f54a36bb
RD
6377def _makeDate( year, month, day, dateFmt, dateStr):
6378 sep = _getDateSepChar( dateStr)
d14a1e28
RD
6379 if dateFmt == "MDY":
6380 return "%s%s%s%s%s" % (month,sep,day,sep,year) ## year, month, date parts
6381 elif dateFmt == "DMY":
6382 return "%s%s%s%s%s" % (day,sep,month,sep,year) ## year, month, date parts
6383 elif dateFmt == "YMD":
6384 return "%s%s%s%s%s" % (year,sep,month,sep,day) ## year, month, date parts
6385 else:
6386 return none
6387
6388
f54a36bb
RD
6389def _getYear(dateStr,dateFmt):
6390 parts = _getDateParts( dateStr, dateFmt)
d14a1e28
RD
6391 return parts[0]
6392
f54a36bb
RD
6393def _getMonth(dateStr,dateFmt):
6394 parts = _getDateParts( dateStr, dateFmt)
d14a1e28
RD
6395 return parts[1]
6396
f54a36bb
RD
6397def _getDay(dateStr,dateFmt):
6398 parts = _getDateParts( dateStr, dateFmt)
d14a1e28
RD
6399 return parts[2]
6400
6401## ---------- ---------- ---------- ---------- ---------- ---------- ----------
f54a36bb 6402class __test(wx.PySimpleApp):
d14a1e28 6403 def OnInit(self):
b881fc78 6404 from wx.lib.rcsizer import RowColSizer
d4b73b1b 6405 self.frame = wx.Frame( None, -1, "MaskedEditMixin 0.0.7 Demo Page #1", size = (700,600))
b881fc78 6406 self.panel = wx.Panel( self.frame, -1)
d14a1e28
RD
6407 self.sizer = RowColSizer()
6408 self.labels = []
6409 self.editList = []
6410 rowcount = 4
6411
b881fc78
RD
6412 id, id1 = wx.NewId(), wx.NewId()
6413 self.command1 = wx.Button( self.panel, id, "&Close" )
6414 self.command2 = wx.Button( self.panel, id1, "&AutoFormats" )
6415 self.sizer.Add(self.command1, row=0, col=0, flag=wx.ALL, border = 5)
6416 self.sizer.Add(self.command2, row=0, col=1, colspan=2, flag=wx.ALL, border = 5)
6417 self.panel.Bind(wx.EVT_BUTTON, self.onClick, self.command1 )
d14a1e28 6418## self.panel.SetDefaultItem(self.command1 )
b881fc78 6419 self.panel.Bind(wx.EVT_BUTTON, self.onClickPage, self.command2)
d14a1e28 6420
b881fc78
RD
6421 self.check1 = wx.CheckBox( self.panel, -1, "Disallow Empty" )
6422 self.check2 = wx.CheckBox( self.panel, -1, "Highlight Empty" )
6423 self.sizer.Add( self.check1, row=0,col=3, flag=wx.ALL,border=5 )
6424 self.sizer.Add( self.check2, row=0,col=4, flag=wx.ALL,border=5 )
6425 self.panel.Bind(wx.EVT_CHECKBOX, self._onCheck1, self.check1 )
6426 self.panel.Bind(wx.EVT_CHECKBOX, self._onCheck2, self.check2 )
d14a1e28
RD
6427
6428
6429 label = """Press ctrl-s in any field to output the value and plain value. Press ctrl-x to clear and re-set any field.
6430Note that all controls have been auto-sized by including F in the format code.
6431Try entering nonsensical or partial values in validated fields to see what happens (use ctrl-s to test the valid status)."""
6432 label2 = "\nNote that the State and Last Name fields are list-limited (Name:Smith,Jones,Williams)."
6433
b881fc78
RD
6434 self.label1 = wx.StaticText( self.panel, -1, label)
6435 self.label2 = wx.StaticText( self.panel, -1, "Description")
6436 self.label3 = wx.StaticText( self.panel, -1, "Mask Value")
6437 self.label4 = wx.StaticText( self.panel, -1, "Format")
6438 self.label5 = wx.StaticText( self.panel, -1, "Reg Expr Val. (opt)")
c878ceea 6439 self.label6 = wx.StaticText( self.panel, -1, "MaskedEdit Ctrl")
b881fc78 6440 self.label7 = wx.StaticText( self.panel, -1, label2)
d14a1e28
RD
6441 self.label7.SetForegroundColour("Blue")
6442 self.label1.SetForegroundColour("Blue")
b881fc78
RD
6443 self.label2.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6444 self.label3.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6445 self.label4.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6446 self.label5.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6447 self.label6.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6448
6449 self.sizer.Add( self.label1, row=1,col=0,colspan=7, flag=wx.ALL,border=5)
6450 self.sizer.Add( self.label7, row=2,col=0,colspan=7, flag=wx.ALL,border=5)
6451 self.sizer.Add( self.label2, row=3,col=0, flag=wx.ALL,border=5)
6452 self.sizer.Add( self.label3, row=3,col=1, flag=wx.ALL,border=5)
6453 self.sizer.Add( self.label4, row=3,col=2, flag=wx.ALL,border=5)
6454 self.sizer.Add( self.label5, row=3,col=3, flag=wx.ALL,border=5)
6455 self.sizer.Add( self.label6, row=3,col=4, flag=wx.ALL,border=5)
d14a1e28
RD
6456
6457 # The following list is of the controls for the demo. Feel free to play around with
6458 # the options!
6459 controls = [
6460 #description mask excl format regexp range,list,initial
6461 ("Phone No", "(###) ###-#### x:###", "", 'F!^-R', "^\(\d\d\d\) \d\d\d-\d\d\d\d", (),[],''),
6462 ("Last Name Only", "C{14}", "", 'F {list}', '^[A-Z][a-zA-Z]+', (),('Smith','Jones','Williams'),''),
6463 ("Full Name", "C{14}", "", 'F_', '^[A-Z][a-zA-Z]+ [A-Z][a-zA-Z]+', (),[],''),
6464 ("Social Sec#", "###-##-####", "", 'F', "\d{3}-\d{2}-\d{4}", (),[],''),
6465 ("U.S. Zip+4", "#{5}-#{4}", "", 'F', "\d{5}-(\s{4}|\d{4})",(),[],''),
6466 ("U.S. State (2 char)\n(with default)","AA", "", 'F!', "[A-Z]{2}", (),states, 'AZ'),
6467 ("Customer No", "\CAA-###", "", 'F!', "C[A-Z]{2}-\d{3}", (),[],''),
6468 ("Date (MDY) + Time\n(with default)", "##/##/#### ##:## AM", 'BCDEFGHIJKLMNOQRSTUVWXYZ','DFR!',"", (),[], r'03/05/2003 12:00 AM'),
6469 ("Invoice Total", "#{9}.##", "", 'F-R,', "", (),[], ''),
6470 ("Integer (signed)\n(with default)", "#{6}", "", 'F-R', "", (),[], '0 '),
6471 ("Integer (unsigned)\n(with default), 1-399", "######", "", 'F', "", (1,399),[], '1 '),
6472 ("Month selector", "XXX", "", 'F', "", (),
6473 ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],""),
6474 ("fraction selector","#/##", "", 'F', "^\d\/\d\d?", (),
6475 ['2/3', '3/4', '1/2', '1/4', '1/8', '1/16', '1/32', '1/64'], "")
6476 ]
6477
6478 for control in controls:
b881fc78
RD
6479 self.sizer.Add( wx.StaticText( self.panel, -1, control[0]),row=rowcount, col=0,border=5,flag=wx.ALL)
6480 self.sizer.Add( wx.StaticText( self.panel, -1, control[1]),row=rowcount, col=1,border=5, flag=wx.ALL)
6481 self.sizer.Add( wx.StaticText( self.panel, -1, control[3]),row=rowcount, col=2,border=5, flag=wx.ALL)
6482 self.sizer.Add( wx.StaticText( self.panel, -1, control[4][:20]),row=rowcount, col=3,border=5, flag=wx.ALL)
d14a1e28
RD
6483
6484 if control in controls[:]:#-2]:
d4b73b1b 6485 newControl = MaskedTextCtrl( self.panel, -1, "",
d14a1e28
RD
6486 mask = control[1],
6487 excludeChars = control[2],
6488 formatcodes = control[3],
6489 includeChars = "",
6490 validRegex = control[4],
6491 validRange = control[5],
6492 choices = control[6],
6493 defaultValue = control[7],
6494 demo = True)
6495 if control[6]: newControl.SetCtrlParameters(choiceRequired = True)
6496 else:
d4b73b1b 6497 newControl = MaskedComboBox( self.panel, -1, "",
d14a1e28
RD
6498 choices = control[7],
6499 choiceRequired = True,
6500 mask = control[1],
6501 formatcodes = control[3],
6502 excludeChars = control[2],
6503 includeChars = "",
6504 validRegex = control[4],
6505 validRange = control[5],
6506 demo = True)
6507 self.editList.append( newControl )
6508
b881fc78 6509 self.sizer.Add( newControl, row=rowcount,col=4,flag=wx.ALL,border=5)
d14a1e28
RD
6510 rowcount += 1
6511
6512 self.sizer.AddGrowableCol(4)
6513
6514 self.panel.SetSizer(self.sizer)
6515 self.panel.SetAutoLayout(1)
6516
6517 self.frame.Show(1)
6518 self.MainLoop()
6519
6520 return True
6521
6522 def onClick(self, event):
6523 self.frame.Close()
6524
6525 def onClickPage(self, event):
f54a36bb 6526 self.page2 = __test2(self.frame,-1,"")
d14a1e28
RD
6527 self.page2.Show(True)
6528
6529 def _onCheck1(self,event):
6530 """ Set required value on/off """
b881fc78 6531 value = event.IsChecked()
d14a1e28
RD
6532 if value:
6533 for control in self.editList:
6534 control.SetCtrlParameters(emptyInvalid=True)
6535 control.Refresh()
6536 else:
6537 for control in self.editList:
6538 control.SetCtrlParameters(emptyInvalid=False)
6539 control.Refresh()
6540 self.panel.Refresh()
6541
6542 def _onCheck2(self,event):
6543 """ Highlight empty values"""
b881fc78 6544 value = event.IsChecked()
d14a1e28
RD
6545 if value:
6546 for control in self.editList:
6547 control.SetCtrlParameters( emptyBackgroundColour = 'Aquamarine')
6548 control.Refresh()
6549 else:
6550 for control in self.editList:
6551 control.SetCtrlParameters( emptyBackgroundColour = 'White')
6552 control.Refresh()
6553 self.panel.Refresh()
6554
6555
6556## ---------- ---------- ---------- ---------- ---------- ---------- ----------
6557
f54a36bb 6558class __test2(wx.Frame):
d14a1e28 6559 def __init__(self, parent, id, caption):
c878ceea 6560 wx.Frame.__init__( self, parent, id, "MaskedEdit control 0.0.7 Demo Page #2 -- AutoFormats", size = (550,600))
b881fc78
RD
6561 from wx.lib.rcsizer import RowColSizer
6562 self.panel = wx.Panel( self, -1)
d14a1e28
RD
6563 self.sizer = RowColSizer()
6564 self.labels = []
6565 self.texts = []
6566 rowcount = 4
6567
6568 label = """\
6569All these controls have been created by passing a single parameter, the AutoFormat code.
6570The class contains an internal dictionary of types and formats (autoformats).
6571To see a great example of validations in action, try entering a bad email address, then tab out."""
6572
b881fc78
RD
6573 self.label1 = wx.StaticText( self.panel, -1, label)
6574 self.label2 = wx.StaticText( self.panel, -1, "Description")
6575 self.label3 = wx.StaticText( self.panel, -1, "AutoFormat Code")
c878ceea 6576 self.label4 = wx.StaticText( self.panel, -1, "MaskedEdit Control")
d14a1e28 6577 self.label1.SetForegroundColour("Blue")
b881fc78
RD
6578 self.label2.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6579 self.label3.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6580 self.label4.SetFont(wx.Font(9,wx.SWISS,wx.NORMAL,wx.BOLD))
6581
6582 self.sizer.Add( self.label1, row=1,col=0,colspan=3, flag=wx.ALL,border=5)
6583 self.sizer.Add( self.label2, row=3,col=0, flag=wx.ALL,border=5)
6584 self.sizer.Add( self.label3, row=3,col=1, flag=wx.ALL,border=5)
6585 self.sizer.Add( self.label4, row=3,col=2, flag=wx.ALL,border=5)
6586
6587 id, id1 = wx.NewId(), wx.NewId()
6588 self.command1 = wx.Button( self.panel, id, "&Close")
6589 self.command2 = wx.Button( self.panel, id1, "&Print Formats")
6590 self.panel.Bind(wx.EVT_BUTTON, self.onClick, self.command1)
d14a1e28 6591 self.panel.SetDefaultItem(self.command1)
b881fc78 6592 self.panel.Bind(wx.EVT_BUTTON, self.onClickPrint, self.command2)
d14a1e28
RD
6593
6594 # The following list is of the controls for the demo. Feel free to play around with
6595 # the options!
6596 controls = [
6597 ("Phone No","USPHONEFULLEXT"),
6598 ("US Date + Time","USDATETIMEMMDDYYYY/HHMM"),
6599 ("US Date MMDDYYYY","USDATEMMDDYYYY/"),
6600 ("Time (with seconds)","TIMEHHMMSS"),
fffd96b7 6601 ("Military Time\n(without seconds)","24HRTIMEHHMM"),
d14a1e28
RD
6602 ("Social Sec#","USSOCIALSEC"),
6603 ("Credit Card","CREDITCARD"),
6604 ("Expiration MM/YY","EXPDATEMMYY"),
6605 ("Percentage","PERCENT"),
6606 ("Person's Age","AGE"),
6607 ("US Zip Code","USZIP"),
6608 ("US Zip+4","USZIPPLUS4"),
6609 ("Email Address","EMAIL"),
d4b73b1b 6610 ("IP Address", "(derived control IpAddrCtrl)")
d14a1e28
RD
6611 ]
6612
6613 for control in controls:
b881fc78
RD
6614 self.sizer.Add( wx.StaticText( self.panel, -1, control[0]),row=rowcount, col=0,border=5,flag=wx.ALL)
6615 self.sizer.Add( wx.StaticText( self.panel, -1, control[1]),row=rowcount, col=1,border=5, flag=wx.ALL)
d14a1e28 6616 if control in controls[:-1]:
d4b73b1b 6617 self.sizer.Add( MaskedTextCtrl( self.panel, -1, "",
d14a1e28
RD
6618 autoformat = control[1],
6619 demo = True),
b881fc78 6620 row=rowcount,col=2,flag=wx.ALL,border=5)
d14a1e28 6621 else:
d4b73b1b 6622 self.sizer.Add( IpAddrCtrl( self.panel, -1, "", demo=True ),
b881fc78 6623 row=rowcount,col=2,flag=wx.ALL,border=5)
d14a1e28
RD
6624 rowcount += 1
6625
b881fc78
RD
6626 self.sizer.Add(self.command1, row=0, col=0, flag=wx.ALL, border = 5)
6627 self.sizer.Add(self.command2, row=0, col=1, flag=wx.ALL, border = 5)
d14a1e28
RD
6628 self.sizer.AddGrowableCol(3)
6629
6630 self.panel.SetSizer(self.sizer)
6631 self.panel.SetAutoLayout(1)
6632
6633 def onClick(self, event):
6634 self.Close()
6635
6636 def onClickPrint(self, event):
6637 for format in masktags.keys():
6638 sep = "+------------------------+"
6639 print "%s\n%s \n Mask: %s \n RE Validation string: %s\n" % (sep,format, masktags[format]['mask'], masktags[format]['validRegex'])
6640
6641## ---------- ---------- ---------- ---------- ---------- ---------- ----------
6642
6643if __name__ == "__main__":
f54a36bb 6644 app = __test(False)
d14a1e28 6645
f54a36bb 6646__i=0
d14a1e28
RD
6647##
6648## Current Issues:
6649## ===================================
6650##
6651## 1. WS: For some reason I don't understand, the control is generating two (2)
6652## EVT_TEXT events for every one (1) .SetValue() of the underlying control.
6653## I've been unsuccessful in determining why or in my efforts to make just one
6654## occur. So, I've added a hack to save the last seen value from the
6655## control in the EVT_TEXT handler, and if *different*, call event.Skip()
6656## to propagate it down the event chain, and let the application see it.
6657##
d4b73b1b 6658## 2. WS: MaskedComboBox is deficient in several areas, all having to do with the
d14a1e28
RD
6659## behavior of the underlying control that I can't fix. The problems are:
6660## a) The background coloring doesn't work in the text field of the control;
6661## instead, there's a only border around it that assumes the correct color.
6662## b) The control will not pass WXK_TAB to the event handler, no matter what
6663## I do, and there's no style wxCB_PROCESS_TAB like wxTE_PROCESS_TAB to
d4b73b1b
RD
6664## indicate that we want these events. As a result, MaskedComboBox
6665## doesn't do the nice field-tabbing that MaskedTextCtrl does.
d14a1e28
RD
6666## c) Auto-complete had to be reimplemented for the control because programmatic
6667## setting of the value of the text field does not set up the auto complete
6668## the way that the control processing keystrokes does. (But I think I've
6669## implemented a fairly decent approximation.) Because of this the control
6670## also won't auto-complete on dropdown, and there's no event I can catch
6671## to work around this problem.
6672## d) There is no method provided for getting the selection; the hack I've
6673## implemented has its flaws, not the least of which is that due to the
6674## strategy that I'm using, the paste buffer is always replaced by the
6675## contents of the control's selection when in focus, on each keystroke;
d4b73b1b 6676## this makes it impossible to paste anything into a MaskedComboBox
d14a1e28
RD
6677## at the moment... :-(
6678## e) The other deficient behavior, likely induced by the workaround for (d),
6679## is that you can can't shift-left to select more than one character
6680## at a time.
6681##
6682##
6683## 3. WS: Controls on wxPanels don't seem to pass Shift-WXK_TAB to their
6684## EVT_KEY_DOWN or EVT_CHAR event handlers. Until this is fixed in
c878ceea 6685## wxWindows, shift-tab won't take you backwards through the fields of
d4b73b1b 6686## a MaskedTextCtrl like it should. Until then Shifted arrow keys will
d14a1e28
RD
6687## work like shift-tab and tab ought to.
6688##
6689
6690## To-Do's:
6691## =============================##
6692## 1. Add Popup list for auto-completable fields that simulates combobox on individual
6693## fields. Example: City validates against list of cities, or zip vs zip code list.
6694## 2. Allow optional monetary symbols (eg. $, pounds, etc.) at front of a "decimal"
6695## control.
d4b73b1b 6696## 3. Fix shift-left selection for MaskedComboBox.
d14a1e28
RD
6697## 5. Transform notion of "decimal control" to be less "entire control"-centric,
6698## so that monetary symbols can be included and still have the appropriate
6699## semantics. (Big job, as currently written, but would make control even
6700## more useful for business applications.)
6701
6702
6703## CHANGELOG:
6704## ====================
5fe636c6
RD
6705## Version 1.11
6706## 1. Added value member to ValueError exceptions, so that people can catch them
6707## and then display their own errors, and added attribute raiseOnInvalidPaste,
6708## so one doesn't have to subclass the controls simply to force generation of
6709## a ValueError on a bad paste operation.
6710## 2. Fixed handling of unicode charsets by converting to explicit control char
6711## set testing for passing those keystrokes to the base control, and then
6712## changing the semantics of the * maskchar to indicate any visible char.
6713## 3. Added '|' mask specification character, which allows splitting of contiguous
6714## mask characters into separate fields, allowing finer control of behavior
6715## of a control.
6716##
6717##
35d8bffe
RD
6718## Version 1.10
6719## 1. Added handling for WXK_DELETE and WXK_INSERT, such that shift-delete
6720## cuts, shift-insert pastes, and ctrl-insert copies.
6721##
02b800ce
RD
6722## Version 1.9
6723## 1. Now ignores kill focus events when being destroyed.
6724## 2. Added missing call to set insertion point on changing fields.
6725## 3. Modified SetKeyHandler() to accept None as means of removing one.
6726## 4. Fixed keyhandler processing for group and decimal character changes.
6727## 5. Fixed a problem that prevented input into the integer digit of a
6728## integerwidth=1 numctrl, if the current value was 0.
6729## 6. Fixed logic involving processing of "_signOk" flag, to remove default
6730## sign key handlers if false, so that SetAllowNegative(False) in the
6731## NumCtrl works properly.
6732## 7. Fixed selection logic for numeric controls so that if selectOnFieldEntry
6733## is true, and the integer portion of an integer format control is selected
6734## and the sign position is selected, the sign keys will always result in a
6735## negative value, rather than toggling the previous sign.
6736##
6737##
f54a36bb
RD
6738## Version 1.8
6739## 1. Fixed bug involving incorrect variable name, causing combobox autocomplete to fail.
6740## 2. Added proper support for unicode version of wxPython
6741## 3. Added * as mask char meaning "all ansi chars" (ordinals 32-255).
6742## 4. Converted doc strings to use reST format, for ePyDoc documentation.
6743## 5. Renamed helper functions, classes, etc. not intended to be visible in public
6744## interface to code.
6745##
5f280eaa
RD
6746## Version 1.7
6747## 1. Fixed intra-right-insert-field erase, such that it doesn't leave a hole, but instead
6748## shifts the text to the left accordingly.
6749## 2. Fixed _SetValue() to place cursor after last character inserted, rather than end of
6750## mask.
6751## 3. Fixed some incorrect undo behavior for right-insert fields, and allowed derived classes
6752## (eg. numctrl) to pass modified values for undo processing (to handle/ignore grouping
6753## chars properly.)
6754## 4. Fixed autoselect behavior to work similarly to (2) above, so that combobox
6755## selection will only select the non-empty text, as per request.
339983ff
RD
6756## 5. Fixed tabbing to work with 2.5.2 semantics.
6757## 6. Fixed size calculation to handle changing fonts
5f280eaa 6758##
c878ceea
RD
6759## Version 1.6
6760## 1. Reorganized masked controls into separate package, renamed things accordingly
6761## 2. Split actual controls out of this file into their own files.
fffd96b7
RD
6762## Version 1.5
6763## (Reported) bugs fixed:
6764## 1. Crash ensues if you attempt to change the mask of a read-only
6765## MaskedComboBox after initial construction.
6766## 2. Changed strategy of defining Get/Set property functions so that
6767## these are now generated dynamically at runtime, rather than as
6768## part of the class definition. (This makes it possible to have
6769## more general base classes that have many more options for configuration
6770## without requiring that derivations support the same options.)
6771## 3. Fixed IsModified for _Paste() and _OnErase().
6772##
6773## Enhancements:
6774## 1. Fixed "attribute function inheritance," since base control is more
6775## generic than subsequent derivations, not all property functions of a
6776## generic control should be exposed in those derivations. New strategy
6777## uses base control classes (eg. BaseMaskedTextCtrl) that should be
6778## used to derive new class types, and mixed with their own mixins to
6779## only expose those attributes from the generic masked controls that
6780## make sense for the derivation. (This makes Boa happier.)
6781## 2. Renamed (with b-c) MILTIME autoformats to 24HRTIME, so as to be less
6782## "parochial."
6783##
d14a1e28
RD
6784## Version 1.4
6785## (Reported) bugs fixed:
6786## 1. Right-click menu allowed "cut" operation that destroyed mask
6787## (was implemented by base control)
d4b73b1b 6788## 2. MaskedComboBox didn't allow .Append() of mixed-case values; all
d14a1e28 6789## got converted to lower case.
d4b73b1b 6790## 3. MaskedComboBox selection didn't deal with spaces in values
d14a1e28
RD
6791## properly when autocompleting, and didn't have a concept of "next"
6792## match for handling choice list duplicates.
d4b73b1b 6793## 4. Size of MaskedComboBox was always default.
d14a1e28
RD
6794## 5. Email address regexp allowed some "non-standard" things, and wasn't
6795## general enough.
d4b73b1b 6796## 6. Couldn't easily reset MaskedComboBox contents programmatically.
d14a1e28
RD
6797## 7. Couldn't set emptyInvalid during construction.
6798## 8. Under some versions of wxPython, readonly comboboxes can apparently
6799## return a GetInsertionPoint() result (655535), causing masked control
6800## to fail.
6801## 9. Specifying an empty mask caused the controls to traceback.
6802## 10. Can't specify float ranges for validRange.
6803## 11. '.' from within a the static portion of a restricted IP address
6804## destroyed the mask from that point rightward; tab when cursor is
6805## before 1st field takes cursor past that field.
6806##
6807## Enhancements:
6808## 12. Added Ctrl-Z/Undo handling, (and implemented context-menu properly.)
6809## 13. Added auto-select option on char input for masked controls with
6810## choice lists.
6811## 14. Added '>' formatcode, allowing insert within a given or each field
6812## as appropriate, rather than requiring "overwrite". This makes single
6813## field controls that just have validation rules (eg. EMAIL) much more
6814## friendly. The same flag controls left shift when deleting vs just
6815## blanking the value, and for right-insert fields, allows right-insert
6816## at any non-blank (non-sign) position in the field.
6817## 15. Added option to use to indicate negative values for numeric controls.
6818## 16. Improved OnFocus handling of numeric controls.
6819## 17. Enhanced Home/End processing to allow operation on a field level,
6820## using ctrl key.
6821## 18. Added individual Get/Set functions for control parameters, for
6822## simplified integration with Boa Constructor.
6823## 19. Standardized "Colour" parameter names to match wxPython, with
6824## non-british spellings still supported for backward-compatibility.
6825## 20. Added '&' mask specification character for punctuation only (no letters
6826## or digits).
89f9e172 6827## 21. Added (in a separate file) wx.MaskedCtrl() factory function to provide
d14a1e28
RD
6828## unified interface to the masked edit subclasses.
6829##
6830##
6831## Version 1.3
6832## 1. Made it possible to configure grouping, decimal and shift-decimal characters,
6833## to make controls more usable internationally.
6834## 2. Added code to smart "adjust" value strings presented to .SetValue()
6835## for right-aligned numeric format controls if they are shorter than
6836## than the control width, prepending the missing portion, prepending control
6837## template left substring for the missing characters, so that setting
6838## numeric values is easier.
6839## 3. Renamed SetMaskParameters SetCtrlParameters() (with old name preserved
6840## for b-c), as this makes more sense.
6841##
6842## Version 1.2
6843## 1. Fixed .SetValue() to replace the current value, rather than the current
6844## selection. Also changed it to generate ValueError if presented with
6845## either a value which doesn't follow the format or won't fit. Also made
6846## set value adjust numeric and date controls as if user entered the value.
6847## Expanded doc explaining how SetValue() works.
6848## 2. Fixed EUDATE* autoformats, fixed IsDateType mask list, and added ability to
6849## use 3-char months for dates, and EUDATETIME, and EUDATEMILTIME autoformats.
6850## 3. Made all date autoformats automatically pick implied "datestyle".
89f9e172 6851## 4. Added IsModified override, since base wx.TextCtrl never reports modified if
d14a1e28
RD
6852## .SetValue used to change the value, which is what the masked edit controls
6853## use internally.
6854## 5. Fixed bug in date position adjustment on 2 to 4 digit date conversion when
6855## using tab to "leave field" and auto-adjust.
6856## 6. Fixed bug in _isCharAllowed() for negative number insertion on pastes,
6857## and bug in ._Paste() that didn't account for signs in signed masks either.
6858## 7. Fixed issues with _adjustPos for right-insert fields causing improper
6859## selection/replacement of values
6860## 8. Fixed _OnHome handler to properly handle extending current selection to
6861## beginning of control.
6862## 9. Exposed all (valid) autoformats to demo, binding descriptions to
6863## autoformats.
6864## 10. Fixed a couple of bugs in email regexp.
6865## 11. Made maskchardict an instance var, to make mask chars to be more
6866## amenable to international use.
6867## 12. Clarified meaning of '-' formatcode in doc.
6868## 13. Fixed a couple of coding bugs being flagged by Python2.1.
6869## 14. Fixed several issues with sign positioning, erasure and validity
6870## checking for "numeric" masked controls.
d4b73b1b 6871## 15. Added validation to IpAddrCtrl.SetValue().
d14a1e28
RD
6872##
6873## Version 1.1
6874## 1. Changed calling interface to use boolean "useFixedWidthFont" (True by default)
6875## vs. literal font facename, and use wxTELETYPE as the font family
6876## if so specified.
6877## 2. Switched to use of dbg module vs. locally defined version.
6878## 3. Revamped entire control structure to use Field classes to hold constraint
6879## and formatting data, to make code more hierarchical, allow for more
6880## sophisticated masked edit construction.
6881## 4. Better strategy for managing options, and better validation on keywords.
6882## 5. Added 'V' format code, which requires that in order for a character
6883## to be accepted, it must result in a string that passes the validRegex.
6884## 6. Added 'S' format code which means "select entire field when navigating
6885## to new field."
6886## 7. Added 'r' format code to allow "right-insert" fields. (implies 'R'--right-alignment)
6887## 8. Added '<' format code to allow fields to require explicit cursor movement
6888## to leave field.
6889## 9. Added validFunc option to other validation mechanisms, that allows derived
6890## classes to add dynamic validation constraints to the control.
6891## 10. Fixed bug in validatePaste code causing possible IndexErrors, and also
6892## fixed failure to obey case conversion codes when pasting.
6893## 11. Implemented '0' (zero-pad) formatting code, as it wasn't being done anywhere...
6894## 12. Removed condition from OnDecimalPoint, so that it always truncates right on '.'
d4b73b1b 6895## 13. Enhanced IpAddrCtrl to use right-insert fields, selection on field traversal,
d14a1e28
RD
6896## individual field validation to prevent field values > 255, and require explicit
6897## tab/. to change fields.
6898## 14. Added handler for left double-click to select field under cursor.
6899## 15. Fixed handling for "Read-only" styles.
6900## 16. Separated signedForegroundColor from 'R' style, and added foregroundColor
6901## attribute, for more consistent and controllable coloring.
6902## 17. Added retainFieldValidation parameter, allowing top-level constraints
6903## such as "validRequired" to be set independently of field-level equivalent.
d4b73b1b 6904## (needed in TimeCtrl for bounds constraints.)
d14a1e28
RD
6905## 18. Refactored code a bit, cleaned up and commented code more heavily, fixed
6906## some of the logic for setting/resetting parameters, eg. fillChar, defaultValue,
6907## etc.
6908## 19. Fixed maskchar setting for upper/lowercase, to work in all locales.
6909##
6910##
6911## Version 1.0
6912## 1. Decimal point behavior restored for decimal and integer type controls:
6913## decimal point now trucates the portion > 0.
6914## 2. Return key now works like the tab character and moves to the next field,
6915## provided no default button is set for the form panel on which the control
6916## resides.
6917## 3. Support added in _FindField() for subclasses controls (like timecontrol)
6918## to determine where the current insertion point is within the mask (i.e.
6919## which sub-'field'). See method documentation for more info and examples.
6920## 4. Added Field class and support for all constraints to be field-specific
6921## in addition to being globally settable for the control.
6922## Choices for each field are validated for length and pastability into
6923## the field in question, raising ValueError if not appropriate for the control.
6924## Also added selective additional validation based on individual field constraints.
6925## By default, SHIFT-WXK_DOWN, SHIFT-WXK_UP, WXK_PRIOR and WXK_NEXT all
6926## auto-complete fields with choice lists, supplying the 1st entry in
6927## the choice list if the field is empty, and cycling through the list in
6928## the appropriate direction if already a match. WXK_DOWN will also auto-
6929## complete if the field is partially completed and a match can be made.
6930## SHIFT-WXK_UP/DOWN will also take you to the next field after any
6931## auto-completion performed.
6932## 5. Added autoCompleteKeycodes=[] parameters for allowing further
6933## customization of the control. Any keycode supplied as a member
6934## of the _autoCompleteKeycodes list will be treated like WXK_NEXT. If
6935## requireFieldChoice is set, then a valid value from each non-empty
6936## choice list will be required for the value of the control to validate.
6937## 6. Fixed "auto-sizing" to be relative to the font actually used, rather
6938## than making assumptions about character width.
6939## 7. Fixed GetMaskParameter(), which was non-functional in previous version.
6940## 8. Fixed exceptions raised to provide info on which control had the error.
d4b73b1b
RD
6941## 9. Fixed bug in choice management of MaskedComboBox.
6942## 10. Fixed bug in IpAddrCtrl causing traceback if field value was of
6943## the form '# #'. Modified control code for IpAddrCtrl so that '.'
d14a1e28
RD
6944## in the middle of a field clips the rest of that field, similar to
6945## decimal and integer controls.
6946##
6947##
6948## Version 0.0.7
6949## 1. "-" is a toggle for sign; "+" now changes - signed numerics to positive.
6950## 2. ',' in formatcodes now causes numeric values to be comma-delimited (e.g.333,333).
6951## 3. New support for selecting text within the control.(thanks Will Sadkin!)
6952## Shift-End and Shift-Home now select text as you would expect
6953## Control-Shift-End selects to the end of the mask string, even if value not entered.
6954## Control-A selects all *entered* text, Shift-Control-A selects everything in the control.
6955## 4. event.Skip() added to onKillFocus to correct remnants when running in Linux (contributed-
6956## for some reason I couldn't find the original email but thanks!!!)
6957## 5. All major key-handling code moved to their own methods for easier subclassing: OnHome,
6958## OnErase, OnEnd, OnCtrl_X, OnCtrl_A, etc.
6959## 6. Email and autoformat validations corrected using regex provided by Will Sadkin (thanks!).
6960## (The rest of the changes in this version were done by Will Sadkin with permission from Jeff...)
6961## 7. New mechanism for replacing default behavior for any given key, using
6962## ._SetKeycodeHandler(keycode, func) and ._SetKeyHandler(char, func) now available
6963## for easier subclassing of the control.
6964## 8. Reworked the delete logic, cut, paste and select/replace logic, as well as some bugs
6965## with insertion point/selection modification. Changed Ctrl-X to use standard "cut"
6966## semantics, erasing the selection, rather than erasing the entire control.
6967## 9. Added option for an "default value" (ie. the template) for use when a single fillChar
6968## is not desired in every position. Added IsDefault() function to mean "does the value
6969## equal the template?" and modified .IsEmpty() to mean "do all of the editable
6970## positions in the template == the fillChar?"
d4b73b1b 6971## 10. Extracted mask logic into mixin, so we can have both MaskedTextCtrl and MaskedComboBox,
d14a1e28 6972## now included.
d4b73b1b 6973## 11. MaskedComboBox now adds the capability to validate from list of valid values.
d14a1e28
RD
6974## Example: City validates against list of cities, or zip vs zip code list.
6975## 12. Fixed oversight in EVT_TEXT handler that prevented the events from being
6976## passed to the next handler in the event chain, causing updates to the
6977## control to be invisible to the parent code.
d4b73b1b 6978## 13. Added IPADDR autoformat code, and subclass IpAddrCtrl for controlling tabbing within
d14a1e28
RD
6979## the control, that auto-reformats as you move between cells.
6980## 14. Mask characters [A,a,X,#] can now appear in the format string as literals, by using '\'.
6981## 15. It is now possible to specify repeating masks, e.g. #{3}-#{3}-#{14}
6982## 16. Fixed major bugs in date validation, due to the fact that
6983## wxDateTime.ParseDate is too liberal, and will accept any form that
6984## makes any kind of sense, regardless of the datestyle you specified
6985## for the control. Unfortunately, the strategy used to fix it only
6986## works for versions of wxPython post 2.3.3.1, as a C++ assert box
6987## seems to show up on an invalid date otherwise, instead of a catchable
6988## exception.
6989## 17. Enhanced date adjustment to automatically adjust heuristic based on
6990## current year, making last century/this century determination on
6991## 2-digit year based on distance between today's year and value;
6992## if > 50 year separation, assume last century (and don't assume last
6993## century is 20th.)
6994## 18. Added autoformats and support for including HHMMSS as well as HHMM for
6995## date times, and added similar time, and militaray time autoformats.
6996## 19. Enhanced tabbing logic so that tab takes you to the next field if the
6997## control is a multi-field control.
6998## 20. Added stub method called whenever the control "changes fields", that
d4b73b1b 6999## can be overridden by subclasses (eg. IpAddrCtrl.)
d14a1e28
RD
7000## 21. Changed a lot of code to be more functionally-oriented so side-effects
7001## aren't as problematic when maintaining code and/or adding features.
7002## Eg: IsValid() now does not have side-effects; it merely reflects the
7003## validity of the value of the control; to determine validity AND recolor
7004## the control, _CheckValid() should be used with a value argument of None.
7005## Similarly, made most reformatting function take an optional candidate value
7006## rather than just using the current value of the control, and only
7007## have them change the value of the control if a candidate is not specified.
7008## In this way, you can do validation *before* changing the control.
7009## 22. Changed validRequired to mean "disallow chars that result in invalid
7010## value." (Old meaning now represented by emptyInvalid.) (This was
7011## possible once I'd made the changes in (19) above.)
7012## 23. Added .SetMaskParameters and .GetMaskParameter methods, so they
7013## can be set/modified/retrieved after construction. Removed individual
7014## parameter setting functions, in favor of this mechanism, so that
7015## all adjustment of the control based on changing parameter values can
7016## be handled in one place with unified mechanism.
7017## 24. Did a *lot* of testing and fixing re: numeric values. Added ability
7018## to type "grouping char" (ie. ',') and validate as appropriate.
7019## 25. Fixed ZIPPLUS4 to allow either 5 or 4, but if > 5 must be 9.
7020## 26. Fixed assumption about "decimal or integer" masks so that they're only
7021## made iff there's no validRegex associated with the field. (This
7022## is so things like zipcodes which look like integers can have more
7023## restrictive validation (ie. must be 5 digits.)
7024## 27. Added a ton more doc strings to explain use and derivation requirements
7025## and did regularization of the naming conventions.
7026## 28. Fixed a range bug in _adjustKey preventing z from being handled properly.
7027## 29. Changed behavior of '.' (and shift-.) in numeric controls to move to
7028## reformat the value and move the next field as appropriate. (shift-'.',
7029## ie. '>' moves to the previous field.
7030
7031## Version 0.0.6
7032## 1. Fixed regex bug that caused autoformat AGE to invalidate any age ending
7033## in '0'.
7034## 2. New format character 'D' to trigger date type. If the user enters 2 digits in the
7035## year position, the control will expand the value to four digits, using numerals below
7036## 50 as 21st century (20+nn) and less than 50 as 20th century (19+nn).
7037## Also, new optional parameter datestyle = set to one of {MDY|DMY|YDM}
7038## 3. revalid parameter renamed validRegex to conform to standard for all validation
7039## parameters (see 2 new ones below).
7040## 4. New optional init parameter = validRange. Used only for int/dec (numeric) types.
7041## Allows the developer to specify a valid low/high range of values.
7042## 5. New optional init parameter = validList. Used for character types. Allows developer
7043## to send a list of values to the control to be used for specific validation.
7044## See the Last Name Only example - it is list restricted to Smith/Jones/Williams.
7045## 6. Date type fields now use wxDateTime's parser to validate the date and time.
7046## This works MUCH better than my kludgy regex!! Thanks to Robin Dunn for pointing
7047## me toward this solution!
7048## 7. Date fields now automatically expand 2-digit years when it can. For example,
7049## if the user types "03/10/67", then "67" will auto-expand to "1967". If a two-year
7050## date is entered it will be expanded in any case when the user tabs out of the
7051## field.
7052## 8. New class functions: SetValidBackgroundColor, SetInvalidBackgroundColor, SetEmptyBackgroundColor,
7053## SetSignedForeColor allow accessto override default class coloring behavior.
7054## 9. Documentation updated and improved.
7055## 10. Demo - page 2 is now a wxFrame class instead of a wxPyApp class. Works better.
7056## Two new options (checkboxes) - test highlight empty and disallow empty.
7057## 11. Home and End now work more intuitively, moving to the first and last user-entry
7058## value, respectively.
7059## 12. New class function: SetRequired(bool). Sets the control's entry required flag
7060## (i.e. disallow empty values if True).
7061##
7062## Version 0.0.5
c878ceea 7063## 1. get_plainValue method renamed to GetPlainValue following the wxWindows
d14a1e28
RD
7064## StudlyCaps(tm) standard (thanks Paul Moore). ;)
7065## 2. New format code 'F' causes the control to auto-fit (auto-size) itself
7066## based on the length of the mask template.
7067## 3. Class now supports "autoformat" codes. These can be passed to the class
7068## on instantiation using the parameter autoformat="code". If the code is in
7069## the dictionary, it will self set the mask, formatting, and validation string.
7070## I have included a number of samples, but I am hoping that someone out there
7071## can help me to define a whole bunch more.
7072## 4. I have added a second page to the demo (as well as a second demo class, test2)
7073## to showcase how autoformats work. The way they self-format and self-size is,
7074## I must say, pretty cool.
7075## 5. Comments added and some internal cosmetic revisions re: matching the code
7076## standards for class submission.
7077## 6. Regex validation is now done in real time - field turns yellow immediately
7078## and stays yellow until the entered value is valid
7079## 7. Cursor now skips over template characters in a more intuitive way (before the
7080## next keypress).
7081## 8. Change, Keypress and LostFocus methods added for convenience of subclasses.
7082## Developer may use these methods which will be called after EVT_TEXT, EVT_CHAR,
7083## and EVT_KILL_FOCUS, respectively.
7084## 9. Decimal and numeric handlers have been rewritten and now work more intuitively.
7085##
7086## Version 0.0.4
7087## 1. New .IsEmpty() method returns True if the control's value is equal to the
7088## blank template string
7089## 2. Control now supports a new init parameter: revalid. Pass a regular expression
7090## that the value will have to match when the control loses focus. If invalid,
7091## the control's BackgroundColor will turn yellow, and an internal flag is set (see next).
7092## 3. Demo now shows revalid functionality. Try entering a partial value, such as a
7093## partial social security number.
7094## 4. New .IsValid() value returns True if the control is empty, or if the value matches
7095## the revalid expression. If not, .IsValid() returns False.
7096## 5. Decimal values now collapse to decimal with '.00' on losefocus if the user never
7097## presses the decimal point.
7098## 6. Cursor now goes to the beginning of the field if the user clicks in an
7099## "empty" field intead of leaving the insertion point in the middle of the
7100## field.
7101## 7. New "N" mask type includes upper and lower chars plus digits. a-zA-Z0-9.
7102## 8. New formatcodes init parameter replaces other init params and adds functions.
7103## String passed to control on init controls:
7104## _ Allow spaces
7105## ! Force upper
7106## ^ Force lower
7107## R Show negative #s in red
7108## , Group digits
7109## - Signed numerals
7110## 0 Numeric fields get leading zeros
7111## 9. Ctrl-X in any field clears the current value.
7112## 10. Code refactored and made more modular (esp in OnChar method). Should be more
7113## easy to read and understand.
7114## 11. Demo enhanced.
7115## 12. Now has _doc_.
7116##
7117## Version 0.0.3
7118## 1. GetPlainValue() now returns the value without the template characters;
7119## so, for example, a social security number (123-33-1212) would return as
7120## 123331212; also removes white spaces from numeric/decimal values, so
7121## "- 955.32" is returned "-955.32". Press ctrl-S to see the plain value.
7122## 2. Press '.' in an integer style masked control and truncate any trailing digits.
7123## 3. Code moderately refactored. Internal names improved for clarity. Additional
7124## internal documentation.
7125## 4. Home and End keys now supported to move cursor to beginning or end of field.
7126## 5. Un-signed integers and decimals now supported.
7127## 6. Cosmetic improvements to the demo.
d4b73b1b 7128## 7. Class renamed to MaskedTextCtrl.
d14a1e28
RD
7129## 8. Can now specify include characters that will override the basic
7130## controls: for example, includeChars = "@." for email addresses
7131## 9. Added mask character 'C' -> allow any upper or lowercase character
7132## 10. .SetSignColor(str:color) sets the foreground color for negative values
7133## in signed controls (defaults to red)
7134## 11. Overview documentation written.
7135##
7136## Version 0.0.2
7137## 1. Tab now works properly when pressed in last position
7138## 2. Decimal types now work (e.g. #####.##)
7139## 3. Signed decimal or numeric values supported (i.e. negative numbers)
7140## 4. Negative decimal or numeric values now can show in red.
7141## 5. Can now specify an "exclude list" with the excludeChars parameter.
7142## See date/time formatted example - you can only enter A or P in the
7143## character mask space (i.e. AM/PM).
7144## 6. Backspace now works properly, including clearing data from a selected
7145## region but leaving template characters intact. Also delete key.
7146## 7. Left/right arrows now work properly.
7147## 8. Removed EventManager call from test so demo should work with wxPython 2.3.3
7148##