I've written a Python utility that uses tkinter. I'm running it on a Macintosh. When it is executed, it runs within an apple-supplied Python launcher program (/Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app).

My code installs its own menus and I bind to the usual Macintosh command-key equivalents for my edit menu (Command-x, command-c, command-x, command-a, command-z) and for quitting (command-q). My problem is that the Python launcher program is responding to the command key bindings. This is inconvenient for things like pasting because it gets done twice. It's a real problem with quitting because the launcher program kills my program before I can save changed files.

Is there some way I can stop the Python launcher program from acting on command key equivalents? I attempted this: "rootWindow.unbind ('<Command-Key-q>')", but to no avail. The launcher program quits before my code can clean up.

I'm using CPython 3.2 on OS X 10.6.6.

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

Instead of overriding Tkinter's default key bindings, consider re-mapping Tcl's "exit" command to a custom function. (This is called every time you hit command-q or use the "quit" menu item.)

def save_and_exit():
    save_changed_files()
    sys.exit()

self.createcommand('exit', save_and_exit)

Besides that, I would recommend removing your copy/paste custom keybinds and letting the library do the work for you. If you're still hell-bent on overriding the defaults, Effbot has a nice tutorial on Tkinter events and bindings.

link|improve this answer
Thank you, Cody. This works as advertised. By the way, The Tck/TkAqua FAQ is now located at link. – david193 Mar 22 '11 at 2:17
Let me clarify that. The Tck/TkAqua FAQ which gets referenced in the liked-to discussion is now located at New Tcl/TkAqua FAQ. – david193 Mar 22 '11 at 2:24
Awesome! Good luck with your app. Would you mind voting up and/or accepting my answer? I'm trying to collect enough reputation to vote up other answers I found helpful. – Cody Hess Mar 22 '11 at 2:43
feedback

Is there a specific reason why you are using Python.app for launching? This .app is most likely the reason for misbehaving shortcuts.

If I have understood correctly, this launcher is just a wrapper for default python (/usr/bin/python) with special imports.

If you run from terminal (-v is the key here):

/Library/Frameworks/Python.framework/Versions/5.1.1/Resources/Python.app/Contents/MacOS/Python -v

You will see what it imports at the beginning. Adding these lines to your main file should make the command line launching the same as with the .app.

Note also that python.app is in version 5.1.1.

br,

Juha

link|improve this answer
Hey Juha. It's a bit of a mystery to me how the launcher gets involved, but it happens automatically when I open a window with tkinter. Viewing the list of modules that are imported doesn't seem to shed any light on how the launcher/wrapper program gets involved. I can't find any documentation for it. I do agree, however, that it is the culprit for snatching my command key events. I'm not sure about version 5.1.1. Do you mean 3.1.1? – david193 Mar 22 '11 at 2:48
feedback

First off, /Library/Frameworks/Python.framework/Versions/3.2/Resources/Python.app is not Apple-supplied. Most likely you installed Python 3.2 using one of the python.org installers here or from some third-party distributor or possibly you built a framework version from source. In any case, Python.app is a dummy application bundle included in each framework version. Its purpose is to ensure that when you invoke python, even from a command line, it is seen by OS X as a full-fledged GUI application. This is particularly important when using tkinter. The default menus and keybindings you see are supplied by Tcl/Tk, not tkinter. As you've discovered, the right way to go about changing these are to remap the default menus. Be aware that there are currently at least three major variants of Tk available on Mac OS X: Aqua Carbon Tk, Aqua Cocoa Tk, and X11 Tk. There are important details, especially with regards to Mac OS X 10.6, about Python and Tcl/Tk on Mac OS X at the python.org website.

link|improve this answer
Hey Ned. Thank you for your thoughtful answer. I stand corrected that the shell program doesn't come from apple. – david193 Mar 23 '11 at 4:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.