Tkinter
Tkinter is a Python binding to the Tk GUI toolkit. It is the standard Python interface to the Tk GUI toolkit[1] and is Python's de-facto standard GUI,[2] and is included with the standard Windows install of Python.
The name Tkinter comes from Tk interface. Tkinter was written by Fredrik Lundh.[3]
As with most other modern Tk bindings, Tkinter is implemented as a Python wrapper around a complete Tcl interpreter embedded in the Python interpreter. Tkinter calls are translated into Tcl commands which are fed to this embedded interpreter, thus making it possible to mix Python and Tcl in a single application.
Python 2.7 and Python 3.1 incorporate the "themed Tk" ("ttk") functionality of Tk 8.5.[4][5] This allows Tk widgets to be easily themed to look like the native desktop environment in which the application is running, thereby addressing a long-standing criticism of Tk (and hence of Tkinter).
There are several popular GUI library alternatives available, such as wxPython, PyQt and PyGTK.
[edit] References
- ^ "Tkinter — Python interface to Tcl/Tk — Python v2.6.1 documentation". http://docs.python.org/library/tkinter.html. Retrieved 2009-03-12.
- ^ "Tkinter - Pythoninfo Wiki". http://wiki.python.org/moin/TkInter.
- ^ Shipman, John W. (2010-12-12), Tkinter reference: a GUI for Python, New Mexico Tech Computer Center, http://infohost.nmt.edu/tcc/help/pubs/tkinter/, retrieved 2012-01-11
- ^ "Python issue #2983, “Ttk support for Tkinter”". http://bugs.python.org/issue2983.
- ^ "Python subversion revision 69051, which resolves issue #2983 by adding the ttk module". http://svn.python.org/view?view=rev&revision=69051.
[edit] External links
- "TkInter", Python Wiki, http://wiki.python.org/moin/TkInter
- Lundh, Fredrik (1999), An Introduction to Tkinter, http://www.pythonware.com/library/tkinter/introduction/
- TkDocs: includes language-neutral and Python-specific information and a tutorial
- Ferg, Stephen, Thinking in Tkinter, http://www.ferg.org/thinking_in_tkinter/index.html
- PAGE - Python Automatic GUI Generator
- Visual Tkinter : A Tkinter based GUI builder for Python.
- Rapyd-Tk : A graphical development environment for writing applications in Tkinter.
|
| This free software-related article is a stub. You can help Wikipedia by expanding it. |

