Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'terry': 0.07; '__name__': 0.09; 'bind': 0.09; 'handler.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'tkinter': 0.09; 'am,': 0.13; 'wrote:': 0.15; '"__main__":': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:t-dialin.net': 0.16; 'reedy': 0.16; 'stupid,': 0.16; 'text):': 0.16; '>>>': 0.16; 'def': 0.16; 'string,': 0.19; 'insert': 0.19; 'work,': 0.20; "doesn't": 0.22; 'string': 0.26; "i'm": 0.27; 'pass': 0.28; 'import': 0.29; 'skip:( 20': 0.30; 'fact': 0.30; 'cmd': 0.30; 'from:addr:web.de': 0.30; 'rather': 0.33; 'entry': 0.33; 'to:addr :python-list': 0.34; 'header:X-Complaints-To:1': 0.34; 'probably': 0.35; 'accepted': 0.36; 'skip:" 10': 0.36; 'unless': 0.37; 'listed': 0.37; 'received:org': 0.38; 'user': 0.38; 'subject:: ': 0.38; 'something': 0.38; 'else': 0.38; 'header:Mime-Version:1': 0.39; 'skip:v 20': 0.39; 'skip:e 20': 0.39; 'event': 0.39; 'to:addr:python.org': 0.39; 'might': 0.39; 'format': 0.40; 'peter': 0.62; 'url:4': 0.66; 'validate': 0.67; '"1":': 0.84; 'otten': 0.84; 'url:tk': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Validating Entry in tkinter Date: Mon, 25 Jul 2011 21:08:08 +0200 Organization: None References: <745ebc09-7233-4718-8a01-d49d2075c4d9@glegroupsg2000goo.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084b8ef.dip.t-dialin.net X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 72 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1311620897 news.xs4all.nl 23886 [2001:888:2000:d::a6]:60468 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10298 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 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) entry.pack() entry.focus_set() root.mainloop()