Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 1 | :tocdepth: 2 |
| 2 | |
| 3 | ========================== |
| 4 | Graphic User Interface FAQ |
| 5 | ========================== |
| 6 | |
| 7 | .. contents:: |
| 8 | |
Georg Brandl | 62423cb | 2009-12-19 17:59:59 +0000 | [diff] [blame] | 9 | .. XXX need review for Python 3. |
| 10 | |
| 11 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 12 | General GUI Questions |
| 13 | ===================== |
| 14 | |
| 15 | What platform-independent GUI toolkits exist for Python? |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 16 | ======================================================== |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 17 | |
Antoine Pitrou | eb50ba5 | 2011-02-05 10:43:57 +0000 | [diff] [blame] | 18 | Depending on what platform(s) you are aiming at, there are several. Some |
| 19 | of them haven't been ported to Python 3 yet. At least `Tkinter`_ and `Qt`_ |
| 20 | are known to be Python 3-compatible. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 21 | |
| 22 | .. XXX check links |
| 23 | |
| 24 | Tkinter |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 25 | ------- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 26 | |
| 27 | Standard builds of Python include an object-oriented interface to the Tcl/Tk |
Antoine Pitrou | eb50ba5 | 2011-02-05 10:43:57 +0000 | [diff] [blame] | 28 | widget set, called :ref:`tkinter <Tkinter>`. This is probably the easiest to |
| 29 | install (since it comes included with most |
| 30 | `binary distributions <http://www.python.org/download/>`_ of Python) and use. |
| 31 | For more info about Tk, including pointers to the source, see the |
| 32 | `Tcl/Tk home page <http://www.tcl.tk>`_. Tcl/Tk is fully portable to the |
| 33 | MacOS, Windows, and Unix platforms. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 34 | |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 35 | wxWidgets |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 36 | --------- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 37 | |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 38 | wxWidgets (http://www.wxwidgets.org) is a free, portable GUI class |
| 39 | library written in C++ that provides a native look and feel on a |
| 40 | number of platforms, with Windows, MacOS X, GTK, X11, all listed as |
| 41 | current stable targets. Language bindings are available for a number |
| 42 | of languages including Python, Perl, Ruby, etc. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 43 | |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 44 | wxPython (http://www.wxpython.org) is the Python binding for |
| 45 | wxwidgets. While it often lags slightly behind the official wxWidgets |
| 46 | releases, it also offers a number of features via pure Python |
| 47 | extensions that are not available in other language bindings. There |
| 48 | is an active wxPython user and developer community. |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 49 | |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 50 | Both wxWidgets and wxPython are free, open source, software with |
| 51 | permissive licences that allow their use in commercial products as |
| 52 | well as in freeware or shareware. |
| 53 | |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 54 | |
| 55 | Qt |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 56 | --- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 57 | |
Antoine Pitrou | eb50ba5 | 2011-02-05 10:43:57 +0000 | [diff] [blame] | 58 | There are bindings available for the Qt toolkit (using either `PyQt |
| 59 | <http://www.riverbankcomputing.co.uk/software/pyqt/>`_ or `PySide |
| 60 | <http://www.pyside.org/>`_) and for KDE (`PyKDE <http://www.riverbankcomputing.co.uk/software/pykde/intro>`__). |
| 61 | PyQt is currently more mature than PySide, but you must buy a PyQt license from |
| 62 | `Riverbank Computing <http://www.riverbankcomputing.co.uk/software/pyqt/license>`_ |
| 63 | if you want to write proprietary applications. PySide is free for all applications. |
| 64 | |
| 65 | Qt 4.5 upwards is licensed under the LGPL license; also, commercial licenses |
| 66 | are available from `Nokia <http://qt.nokia.com/>`_. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 67 | |
| 68 | Gtk+ |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 69 | ---- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 70 | |
Antoine Pitrou | 7462e87 | 2011-12-03 20:59:24 +0100 | [diff] [blame] | 71 | The `GObject introspection bindings <https://live.gnome.org/PyGObject>`_ |
| 72 | for Python allow you to write GTK+ 3 applications. There is also a |
| 73 | `Python GTK+ 3 Tutorial <http://python-gtk-3-tutorial.readthedocs.org/en/latest/>`_. |
| 74 | |
| 75 | The older PyGtk bindings for the `Gtk+ 2 toolkit <http://www.gtk.org>`_ have |
| 76 | been implemented by James Henstridge; see <http://www.pygtk.org>. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 77 | |
| 78 | FLTK |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 79 | ---- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 80 | |
| 81 | Python bindings for `the FLTK toolkit <http://www.fltk.org>`_, a simple yet |
| 82 | powerful and mature cross-platform windowing system, are available from `the |
| 83 | PyFLTK project <http://pyfltk.sourceforge.net>`_. |
| 84 | |
| 85 | |
| 86 | FOX |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 87 | ---- |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 88 | |
| 89 | A wrapper for `the FOX toolkit <http://www.fox-toolkit.org/>`_ called `FXpy |
| 90 | <http://fxpy.sourceforge.net/>`_ is available. FOX supports both Unix variants |
| 91 | and Windows. |
| 92 | |
| 93 | |
| 94 | OpenGL |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 95 | ------ |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 96 | |
| 97 | For OpenGL bindings, see `PyOpenGL <http://pyopengl.sourceforge.net>`_. |
| 98 | |
| 99 | |
| 100 | What platform-specific GUI toolkits exist for Python? |
Benjamin Peterson | d7c3ed5 | 2010-06-27 22:32:30 +0000 | [diff] [blame] | 101 | ======================================================== |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 102 | |
| 103 | `The Mac port <http://python.org/download/mac>`_ by Jack Jansen has a rich and |
| 104 | ever-growing set of modules that support the native Mac toolbox calls. The port |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 105 | supports MacOS X's Carbon libraries. |
| 106 | |
| 107 | By installing the `PyObjc Objective-C bridge |
| 108 | <http://pyobjc.sourceforge.net>`_, Python programs can use MacOS X's |
| 109 | Cocoa libraries. See the documentation that comes with the Mac port. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 110 | |
| 111 | :ref:`Pythonwin <windows-faq>` by Mark Hammond includes an interface to the |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 112 | Microsoft Foundation Classes and a Python programming environment |
| 113 | that's written mostly in Python using the MFC classes. |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 114 | |
| 115 | |
| 116 | Tkinter questions |
| 117 | ================= |
| 118 | |
| 119 | How do I freeze Tkinter applications? |
| 120 | ------------------------------------- |
| 121 | |
| 122 | Freeze is a tool to create stand-alone applications. When freezing Tkinter |
| 123 | applications, the applications will not be truly stand-alone, as the application |
| 124 | will still need the Tcl and Tk libraries. |
| 125 | |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 126 | One solution is to ship the application with the Tcl and Tk libraries, and point |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 127 | to them at run-time using the :envvar:`TCL_LIBRARY` and :envvar:`TK_LIBRARY` |
| 128 | environment variables. |
| 129 | |
| 130 | To get truly stand-alone applications, the Tcl scripts that form the library |
| 131 | have to be integrated into the application as well. One tool supporting that is |
| 132 | SAM (stand-alone modules), which is part of the Tix distribution |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 133 | (http://tix.sourceforge.net/). |
| 134 | |
| 135 | Build Tix with SAM enabled, perform the appropriate call to |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 136 | :c:func:`Tclsam_init`, etc. inside Python's |
Benjamin Peterson | f6489f9 | 2009-11-25 17:46:26 +0000 | [diff] [blame] | 137 | :file:`Modules/tkappinit.c`, and link with libtclsam and libtksam (you |
| 138 | might include the Tix libraries as well). |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 139 | |
| 140 | |
| 141 | Can I have Tk events handled while waiting for I/O? |
| 142 | --------------------------------------------------- |
| 143 | |
| 144 | Yes, and you don't even need threads! But you'll have to restructure your I/O |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 145 | code a bit. Tk has the equivalent of Xt's :c:func:`XtAddInput()` call, which allows you |
Georg Brandl | d741315 | 2009-10-11 21:25:26 +0000 | [diff] [blame] | 146 | to register a callback function which will be called from the Tk mainloop when |
| 147 | I/O is possible on a file descriptor. Here's what you need:: |
| 148 | |
| 149 | from Tkinter import tkinter |
| 150 | tkinter.createfilehandler(file, mask, callback) |
| 151 | |
| 152 | The file may be a Python file or socket object (actually, anything with a |
| 153 | fileno() method), or an integer file descriptor. The mask is one of the |
| 154 | constants tkinter.READABLE or tkinter.WRITABLE. The callback is called as |
| 155 | follows:: |
| 156 | |
| 157 | callback(file, mask) |
| 158 | |
| 159 | You must unregister the callback when you're done, using :: |
| 160 | |
| 161 | tkinter.deletefilehandler(file) |
| 162 | |
| 163 | Note: since you don't know *how many bytes* are available for reading, you can't |
| 164 | use the Python file object's read or readline methods, since these will insist |
| 165 | on reading a predefined number of bytes. For sockets, the :meth:`recv` or |
| 166 | :meth:`recvfrom` methods will work fine; for other files, use |
| 167 | ``os.read(file.fileno(), maxbytecount)``. |
| 168 | |
| 169 | |
| 170 | I can't get key bindings to work in Tkinter: why? |
| 171 | ------------------------------------------------- |
| 172 | |
| 173 | An often-heard complaint is that event handlers bound to events with the |
| 174 | :meth:`bind` method don't get handled even when the appropriate key is pressed. |
| 175 | |
| 176 | The most common cause is that the widget to which the binding applies doesn't |
| 177 | have "keyboard focus". Check out the Tk documentation for the focus command. |
| 178 | Usually a widget is given the keyboard focus by clicking in it (but not for |
| 179 | labels; see the takefocus option). |