Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #10298
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Subject | Re: Validating Entry in tkinter |
| Date | 2011-07-25 21:08 +0200 |
| Organization | None |
| References | <745ebc09-7233-4718-8a01-d49d2075c4d9@glegroupsg2000goo.googlegroups.com> <j0jnmc$r8j$1@solani.org> <j0k8sg$lrp$1@dough.gmane.org> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1469.1311620897.1164.python-list@python.org> (permalink) |
Terry Reedy wrote:
> On 7/25/2011 8:31 AM, Peter Otten wrote:
>> Saul Spatz wrote:
>>
>>> That doesn't work, I'm being stupid, The user might type anywhere in
>>> the
>>> string, not just at the end. I need
>>>
>>> return all([c in '1234567890abcdefABCDEF ' for c in after])
>
> If one wants to validate keystrokes, rather than the entire field after
> the fact,
It's not really after the fact as the user will not see the new contents
unless they are accepted by the validatecommand handler.
> is it possible to set an onkey handler, that will pass on
> valid keys?
With validatecommand you can have tkinter provide the string that is being
inserted:
import tkinter as tk
MESSAGE = ("about to insert {text!r} at position {index} "
"({resolution})")
def validate(action, index, text):
if action == "1":
accept = text.isdigit()
print(
MESSAGE.format(
resolution="OK" if accept else "rejected",
text=text,
index=index))
return accept
return True
if __name__ == "__main__":
root = tk.Tk()
cmd = (root.register(validate), "%d", "%i", "%S")
entry = tk.Entry(root, validate="all", validatecommand=cmd)
entry.pack()
entry.focus_set()
root.mainloop()
The available format codes are listed at
http://www.tcl.tk/man/tcl8.4/TkCmd/entry.htm#M16
If you need something more specific you'd probably have to bind the
<KeyPress> event to a custom handler:
import tkinter as tk
def keypress(event):
print(event.char)
if event.char:
if not event.char.isdigit() and event.char != "\b":
return "break"
else:
print("Don't know what to do with key #", event.keycode)
if __name__ == "__main__":
root = tk.Tk()
entry = tk.Entry(root)
entry.bind("<KeyPress>", keypress)
entry.pack()
entry.focus_set()
root.mainloop()
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: Validating Entry in tkinter Saul Spatz <saul.spatz@gmail.com> - 2011-07-25 05:12 -0700
Re: Validating Entry in tkinter Peter Otten <__peter__@web.de> - 2011-07-25 14:31 +0200
Re: Validating Entry in tkinter Terry Reedy <tjreedy@udel.edu> - 2011-07-25 13:24 -0400
Re: Validating Entry in tkinter Peter Otten <__peter__@web.de> - 2011-07-25 21:08 +0200
Re: Validating Entry in tkinter rantingrick <rantingrick@gmail.com> - 2011-07-25 12:55 -0700
Re: Validating Entry in tkinter python@bdurham.com - 2011-07-25 16:26 -0400
Re: Validating Entry in tkinter Peter Otten <__peter__@web.de> - 2011-07-25 23:03 +0200
Re: Validating Entry in tkinter "Malcolm Greene" <mgreene@bdurham.com> - 2011-07-25 17:54 -0400
csiph-web