projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Compilation fix for wxCStrData handling.
[wxWidgets.git]
/
wxPython
/
demo
/
Validator.py
diff --git
a/wxPython/demo/Validator.py
b/wxPython/demo/Validator.py
index d31296c7be9c0a18746d54d74fd2ecff09b39ff7..0b83c95595ca323423c8afdd519bc567b8b0712c 100644
(file)
--- a/
wxPython/demo/Validator.py
+++ b/
wxPython/demo/Validator.py
@@
-34,7
+34,7
@@
class MyValidator(wx.PyValidator):
def OnChar(self, event):
def OnChar(self, event):
- key = event.KeyCode()
+ key = event.
Get
KeyCode()
if key < wx.WXK_SPACE or key == wx.WXK_DELETE or key > 255:
event.Skip()
if key < wx.WXK_SPACE or key == wx.WXK_DELETE or key > 255:
event.Skip()
@@
-188,11
+188,12
@@
class TestValidateDialog(wx.Dialog):
fgs.Add(wx.TextCtrl(self, -1, "", validator = TextObjectValidator()))
fgs.Add(wx.TextCtrl(self, -1, "", validator = TextObjectValidator()))
- buttons = wx.BoxSizer(wx.HORIZONTAL)
- b = wx.Button(self, wx.ID_OK, "O
kay
")
+ buttons = wx.
StdDialogButtonSizer() #wx.
BoxSizer(wx.HORIZONTAL)
+ b = wx.Button(self, wx.ID_OK, "O
K
")
b.SetDefault()
b.SetDefault()
- buttons.Add(b, 0, wx.ALL, 10)
- buttons.Add(wx.Button(self, wx.ID_CANCEL, "Cancel"), 0, wx.ALL, 10)
+ buttons.AddButton(b)
+ buttons.AddButton(wx.Button(self, wx.ID_CANCEL, "Cancel"))
+ buttons.Realize()
border = wx.BoxSizer(wx.VERTICAL)
border.Add(fgs, 1, wx.GROW|wx.ALL, 25)
border = wx.BoxSizer(wx.VERTICAL)
border.Add(fgs, 1, wx.GROW|wx.ALL, 25)