blob: 3356e4ef23ec979f1de9f931fc87368bb8f15117 [file] [log] [blame]
Georg Brandl6634bf22008-05-20 07:13:37 +00001:mod:`Tkinter` --- Python interface to Tcl/Tk
Georg Brandl8ec7f652007-08-15 14:28:01 +00002=============================================
3
4.. module:: Tkinter
5 :synopsis: Interface to Tcl/Tk for graphical user interfaces
6.. moduleauthor:: Guido van Rossum <guido@Python.org>
7
8
Georg Brandl6634bf22008-05-20 07:13:37 +00009The :mod:`Tkinter` module ("Tk interface") is the standard Python interface to
10the Tk GUI toolkit. Both Tk and :mod:`Tkinter` are available on most Unix
Georg Brandl9af94982008-09-13 17:41:16 +000011platforms, as well as on Windows systems. (Tk itself is not part of Python; it
12is maintained at ActiveState.)
Georg Brandl8ec7f652007-08-15 14:28:01 +000013
Andrés Delfino1c6c8512018-04-26 10:50:07 -030014Running ``python -m Tkinter`` from the command line should open a window
15demonstrating a simple Tk interface, letting you know that :mod:`Tkinter` is
16properly installed on your system, and also showing what version of Tcl/Tk is
17installed, so you can read the Tcl/Tk documentation specific to that version.
18
Georg Brandl5a42ca62008-05-20 07:20:12 +000019.. note::
20
Ezio Melotti510ff542012-05-03 19:21:40 +030021 :mod:`Tkinter` has been renamed to :mod:`tkinter` in Python 3. The
Georg Brandl5a42ca62008-05-20 07:20:12 +000022 :term:`2to3` tool will automatically adapt imports when converting your
Ezio Melotti510ff542012-05-03 19:21:40 +030023 sources to Python 3.
Georg Brandl8ec7f652007-08-15 14:28:01 +000024
25.. seealso::
26
Andrés Delfino1c6c8512018-04-26 10:50:07 -030027 Tkinter documentation:
28
Zachary Ware5c1d3dd2014-03-18 09:18:53 -050029 `Python Tkinter Resources <https://wiki.python.org/moin/TkInter>`_
Georg Brandl8ec7f652007-08-15 14:28:01 +000030 The Python Tkinter Topic Guide provides a great deal of information on using Tk
31 from Python and links to other sources of information on Tk.
32
Andrew Svetlov15fc2202012-07-26 17:19:40 +030033 `TKDocs <http://www.tkdocs.com/>`_
34 Extensive tutorial plus friendlier widget pages for some of the widgets.
35
Serhiy Storchakab4905ef2016-05-07 10:50:12 +030036 `Tkinter reference: a GUI for Python <https://infohost.nmt.edu/tcc/help/pubs/tkinter/web/index.html>`_
Andrew Svetlov15fc2202012-07-26 17:19:40 +030037 On-line reference material.
38
39 `Tkinter docs from effbot <http://effbot.org/tkinterbook/>`_
40 Online reference for tkinter supported by effbot.org.
41
Andrés Delfino1c6c8512018-04-26 10:50:07 -030042 `Programming Python <http://learning-python.com/about-pp4e.html>`_
Andrew Svetlov15fc2202012-07-26 17:19:40 +030043 Book by Mark Lutz, has excellent coverage of Tkinter.
44
Andrés Delfino1c6c8512018-04-26 10:50:07 -030045 `Modern Tkinter for Busy Python Developers <https://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/>`_
Andrew Svetlov15fc2202012-07-26 17:19:40 +030046 Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter.
47
Georg Brandl6e0b44e2016-02-26 19:37:12 +010048 `Python and Tkinter Programming <https://www.manning.com/books/python-and-tkinter-programming>`_
Andrés Delfino1c6c8512018-04-26 10:50:07 -030049 Book by John Grayson (ISBN 1-884777-81-3).
50
51 Tcl/Tk documentation:
52
53 `Tk commands <https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm>`_
54 Most commands are available as :mod:`Tkinter` or :mod:`Tkinter.ttk` classes.
55 Change '8.6' to match the version of your Tcl/Tk installation.
56
57 `Tcl/Tk recent man pages <https://www.tcl.tk/doc/>`_
58 Recent Tcl/Tk manuals on www.tcl.tk.
59
60 `ActiveState Tcl Home Page <http://tcl.activestate.com/>`_
61 The Tk/Tcl development is largely taking place at ActiveState.
62
63 `Tcl and the Tk Toolkit <https://www.amazon.com/exec/obidos/ASIN/020163337X>`_
64 Book by John Ousterhout, the inventor of Tcl.
65
66 `Practical Programming in Tcl and Tk <http://www.beedub.com/book/>`_
67 Brent Welch's encyclopedic book.
Georg Brandl8ec7f652007-08-15 14:28:01 +000068
69
70Tkinter Modules
71---------------
72
Georg Brandl6634bf22008-05-20 07:13:37 +000073Most of the time, the :mod:`Tkinter` module is all you really need, but a number
Georg Brandl8ec7f652007-08-15 14:28:01 +000074of additional modules are available as well. The Tk interface is located in a
75binary module named :mod:`_tkinter`. This module contains the low-level
76interface to Tk, and should never be used directly by application programmers.
77It is usually a shared library (or DLL), but might in some cases be statically
78linked with the Python interpreter.
79
Georg Brandl6634bf22008-05-20 07:13:37 +000080In addition to the Tk interface module, :mod:`Tkinter` includes a number of
81Python modules. The two most important modules are the :mod:`Tkinter` module
82itself, and a module called :mod:`Tkconstants`. The former automatically imports
83the latter, so to use Tkinter, all you need to do is to import one module::
Georg Brandl8ec7f652007-08-15 14:28:01 +000084
Georg Brandl6634bf22008-05-20 07:13:37 +000085 import Tkinter
Georg Brandl8ec7f652007-08-15 14:28:01 +000086
87Or, more often::
88
Georg Brandl6634bf22008-05-20 07:13:37 +000089 from Tkinter import *
Georg Brandl8ec7f652007-08-15 14:28:01 +000090
91
92.. class:: Tk(screenName=None, baseName=None, className='Tk', useTk=1)
93
94 The :class:`Tk` class is instantiated without arguments. This creates a toplevel
95 widget of Tk which usually is the main window of an application. Each instance
96 has its own associated Tcl interpreter.
97
Georg Brandlb19be572007-12-29 10:57:00 +000098 .. FIXME: The following keyword arguments are currently recognized:
Georg Brandl8ec7f652007-08-15 14:28:01 +000099
100 .. versionchanged:: 2.4
101 The *useTk* parameter was added.
102
103
104.. function:: Tcl(screenName=None, baseName=None, className='Tk', useTk=0)
105
106 The :func:`Tcl` function is a factory function which creates an object much like
107 that created by the :class:`Tk` class, except that it does not initialize the Tk
108 subsystem. This is most often useful when driving the Tcl interpreter in an
109 environment where one doesn't want to create extraneous toplevel windows, or
110 where one cannot (such as Unix/Linux systems without an X server). An object
111 created by the :func:`Tcl` object can have a Toplevel window created (and the Tk
112 subsystem initialized) by calling its :meth:`loadtk` method.
113
114 .. versionadded:: 2.4
115
116Other modules that provide Tk support include:
117
Georg Brandl6634bf22008-05-20 07:13:37 +0000118:mod:`ScrolledText`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000119 Text widget with a vertical scroll bar built in.
120
Georg Brandl6634bf22008-05-20 07:13:37 +0000121:mod:`tkColorChooser`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000122 Dialog to let the user choose a color.
123
Georg Brandl6634bf22008-05-20 07:13:37 +0000124:mod:`tkCommonDialog`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000125 Base class for the dialogs defined in the other modules listed here.
126
Georg Brandl6634bf22008-05-20 07:13:37 +0000127:mod:`tkFileDialog`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000128 Common dialogs to allow the user to specify a file to open or save.
129
Georg Brandl6634bf22008-05-20 07:13:37 +0000130:mod:`tkFont`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000131 Utilities to help work with fonts.
132
Georg Brandl6634bf22008-05-20 07:13:37 +0000133:mod:`tkMessageBox`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000134 Access to standard Tk dialog boxes.
135
Georg Brandl6634bf22008-05-20 07:13:37 +0000136:mod:`tkSimpleDialog`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000137 Basic dialogs and convenience functions.
138
Georg Brandl6634bf22008-05-20 07:13:37 +0000139:mod:`Tkdnd`
140 Drag-and-drop support for :mod:`Tkinter`. This is experimental and should become
141 deprecated when it is replaced with the Tk DND.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000142
Georg Brandl6634bf22008-05-20 07:13:37 +0000143:mod:`turtle`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000144 Turtle graphics in a Tk window.
145
Ezio Melotti510ff542012-05-03 19:21:40 +0300146These have been renamed as well in Python 3; they were all made submodules of
Georg Brandl5a42ca62008-05-20 07:20:12 +0000147the new ``tkinter`` package.
148
Georg Brandl8ec7f652007-08-15 14:28:01 +0000149
150Tkinter Life Preserver
151----------------------
152
153.. sectionauthor:: Matt Conway
154
Georg Brandl6634bf22008-05-20 07:13:37 +0000155
Georg Brandl8ec7f652007-08-15 14:28:01 +0000156This section is not designed to be an exhaustive tutorial on either Tk or
157Tkinter. Rather, it is intended as a stop gap, providing some introductory
158orientation on the system.
159
Georg Brandl8ec7f652007-08-15 14:28:01 +0000160Credits:
161
162* Tkinter was written by Steen Lumholt and Guido van Rossum.
163
164* Tk was written by John Ousterhout while at Berkeley.
165
166* This Life Preserver was written by Matt Conway at the University of Virginia.
167
168* The html rendering, and some liberal editing, was produced from a FrameMaker
169 version by Ken Manheimer.
170
171* Fredrik Lundh elaborated and revised the class interface descriptions, to get
172 them current with Tk 4.2.
173
174* Mike Clarkson converted the documentation to LaTeX, and compiled the User
175 Interface chapter of the reference manual.
176
177
178How To Use This Section
179^^^^^^^^^^^^^^^^^^^^^^^
180
181This section is designed in two parts: the first half (roughly) covers
182background material, while the second half can be taken to the keyboard as a
183handy reference.
184
185When trying to answer questions of the form "how do I do blah", it is often best
Mariatta12fa6b12017-12-04 21:15:57 -0800186to find out how to do "blah" in straight Tk, and then convert this back into the
Georg Brandl6634bf22008-05-20 07:13:37 +0000187corresponding :mod:`Tkinter` call. Python programmers can often guess at the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000188correct Python command by looking at the Tk documentation. This means that in
189order to use Tkinter, you will have to know a little bit about Tk. This document
190can't fulfill that role, so the best we can do is point you to the best
191documentation that exists. Here are some hints:
192
193* The authors strongly suggest getting a copy of the Tk man pages. Specifically,
194 the man pages in the ``mann`` directory are most useful. The ``man3`` man pages
195 describe the C interface to the Tk library and thus are not especially helpful
196 for script writers.
197
198* Addison-Wesley publishes a book called Tcl and the Tk Toolkit by John
199 Ousterhout (ISBN 0-201-63337-X) which is a good introduction to Tcl and Tk for
200 the novice. The book is not exhaustive, and for many details it defers to the
201 man pages.
202
Georg Brandl6634bf22008-05-20 07:13:37 +0000203* :file:`Tkinter.py` is a last resort for most, but can be a good place to go
204 when nothing else makes sense.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000205
206
Georg Brandl8ec7f652007-08-15 14:28:01 +0000207A Simple Hello World Program
208^^^^^^^^^^^^^^^^^^^^^^^^^^^^
209
Georg Brandl8ec7f652007-08-15 14:28:01 +0000210::
211
Georg Brandl6634bf22008-05-20 07:13:37 +0000212 from Tkinter import *
Georg Brandl8ec7f652007-08-15 14:28:01 +0000213
214 class Application(Frame):
215 def say_hi(self):
216 print "hi there, everyone!"
217
218 def createWidgets(self):
219 self.QUIT = Button(self)
220 self.QUIT["text"] = "QUIT"
221 self.QUIT["fg"] = "red"
222 self.QUIT["command"] = self.quit
223
224 self.QUIT.pack({"side": "left"})
225
226 self.hi_there = Button(self)
227 self.hi_there["text"] = "Hello",
228 self.hi_there["command"] = self.say_hi
229
230 self.hi_there.pack({"side": "left"})
231
232 def __init__(self, master=None):
233 Frame.__init__(self, master)
234 self.pack()
235 self.createWidgets()
236
237 root = Tk()
238 app = Application(master=root)
239 app.mainloop()
240 root.destroy()
241
242
243A (Very) Quick Look at Tcl/Tk
244-----------------------------
245
246The class hierarchy looks complicated, but in actual practice, application
247programmers almost always refer to the classes at the very bottom of the
248hierarchy.
249
Georg Brandl8ec7f652007-08-15 14:28:01 +0000250Notes:
251
252* These classes are provided for the purposes of organizing certain functions
253 under one namespace. They aren't meant to be instantiated independently.
254
255* The :class:`Tk` class is meant to be instantiated only once in an application.
256 Application programmers need not instantiate one explicitly, the system creates
257 one whenever any of the other classes are instantiated.
258
259* The :class:`Widget` class is not meant to be instantiated, it is meant only
260 for subclassing to make "real" widgets (in C++, this is called an 'abstract
261 class').
262
263To make use of this reference material, there will be times when you will need
264to know how to read short passages of Tk and how to identify the various parts
265of a Tk command. (See section :ref:`tkinter-basic-mapping` for the
Georg Brandl6634bf22008-05-20 07:13:37 +0000266:mod:`Tkinter` equivalents of what's below.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000267
268Tk scripts are Tcl programs. Like all Tcl programs, Tk scripts are just lists
269of tokens separated by spaces. A Tk widget is just its *class*, the *options*
270that help configure it, and the *actions* that make it do useful things.
271
272To make a widget in Tk, the command is always of the form::
273
274 classCommand newPathname options
275
276*classCommand*
277 denotes which kind of widget to make (a button, a label, a menu...)
278
279*newPathname*
280 is the new name for this widget. All names in Tk must be unique. To help
281 enforce this, widgets in Tk are named with *pathnames*, just like files in a
282 file system. The top level widget, the *root*, is called ``.`` (period) and
283 children are delimited by more periods. For example,
284 ``.myApp.controlPanel.okButton`` might be the name of a widget.
285
286*options*
287 configure the widget's appearance and in some cases, its behavior. The options
288 come in the form of a list of flags and values. Flags are preceded by a '-',
289 like Unix shell command flags, and values are put in quotes if they are more
290 than one word.
291
292For example::
293
294 button .fred -fg red -text "hi there"
295 ^ ^ \_____________________/
296 | | |
297 class new options
298 command widget (-opt val -opt val ...)
299
300Once created, the pathname to the widget becomes a new command. This new
301*widget command* is the programmer's handle for getting the new widget to
302perform some *action*. In C, you'd express this as someAction(fred,
303someOptions), in C++, you would express this as fred.someAction(someOptions),
304and in Tk, you say::
305
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000306 .fred someAction someOptions
Georg Brandl8ec7f652007-08-15 14:28:01 +0000307
308Note that the object name, ``.fred``, starts with a dot.
309
310As you'd expect, the legal values for *someAction* will depend on the widget's
311class: ``.fred disable`` works if fred is a button (fred gets greyed out), but
312does not work if fred is a label (disabling of labels is not supported in Tk).
313
314The legal values of *someOptions* is action dependent. Some actions, like
315``disable``, require no arguments, others, like a text-entry box's ``delete``
316command, would need arguments to specify what range of text to delete.
317
318
319.. _tkinter-basic-mapping:
320
321Mapping Basic Tk into Tkinter
322-----------------------------
323
324Class commands in Tk correspond to class constructors in Tkinter. ::
325
326 button .fred =====> fred = Button()
327
328The master of an object is implicit in the new name given to it at creation
329time. In Tkinter, masters are specified explicitly. ::
330
331 button .panel.fred =====> fred = Button(panel)
332
333The configuration options in Tk are given in lists of hyphened tags followed by
334values. In Tkinter, options are specified as keyword-arguments in the instance
335constructor, and keyword-args for configure calls or as instance indices, in
336dictionary style, for established instances. See section
337:ref:`tkinter-setting-options` on setting options. ::
338
339 button .fred -fg red =====> fred = Button(panel, fg = "red")
340 .fred configure -fg red =====> fred["fg"] = red
341 OR ==> fred.config(fg = "red")
342
343In Tk, to perform an action on a widget, use the widget name as a command, and
344follow it with an action name, possibly with arguments (options). In Tkinter,
345you call methods on the class instance to invoke actions on the widget. The
346actions (methods) that a given widget can perform are listed in the Tkinter.py
347module. ::
348
349 .fred invoke =====> fred.invoke()
350
351To give a widget to the packer (geometry manager), you call pack with optional
352arguments. In Tkinter, the Pack class holds all this functionality, and the
353various forms of the pack command are implemented as methods. All widgets in
Georg Brandl6634bf22008-05-20 07:13:37 +0000354:mod:`Tkinter` are subclassed from the Packer, and so inherit all the packing
355methods. See the :mod:`Tix` module documentation for additional information on
356the Form geometry manager. ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000357
358 pack .fred -side left =====> fred.pack(side = "left")
359
360
361How Tk and Tkinter are Related
362------------------------------
363
Georg Brandl8ec7f652007-08-15 14:28:01 +0000364From the top down:
365
366Your App Here (Python)
Georg Brandl6634bf22008-05-20 07:13:37 +0000367 A Python application makes a :mod:`Tkinter` call.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000368
Georg Brandl6634bf22008-05-20 07:13:37 +0000369Tkinter (Python Module)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000370 This call (say, for example, creating a button widget), is implemented in the
Georg Brandl6634bf22008-05-20 07:13:37 +0000371 *Tkinter* module, which is written in Python. This Python function will parse
Georg Brandl8ec7f652007-08-15 14:28:01 +0000372 the commands and the arguments and convert them into a form that makes them look
373 as if they had come from a Tk script instead of a Python script.
374
375tkinter (C)
376 These commands and their arguments will be passed to a C function in the
377 *tkinter* - note the lowercase - extension module.
378
379Tk Widgets (C and Tcl)
380 This C function is able to make calls into other C modules, including the C
381 functions that make up the Tk library. Tk is implemented in C and some Tcl.
382 The Tcl part of the Tk widgets is used to bind certain default behaviors to
Georg Brandl6634bf22008-05-20 07:13:37 +0000383 widgets, and is executed once at the point where the Python :mod:`Tkinter`
384 module is imported. (The user never sees this stage).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000385
386Tk (C)
387 The Tk part of the Tk Widgets implement the final mapping to ...
388
389Xlib (C)
390 the Xlib library to draw graphics on the screen.
391
392
393Handy Reference
394---------------
395
396
397.. _tkinter-setting-options:
398
399Setting Options
400^^^^^^^^^^^^^^^
401
402Options control things like the color and border width of a widget. Options can
403be set in three ways:
404
405At object creation time, using keyword arguments
406 ::
407
408 fred = Button(self, fg = "red", bg = "blue")
409
410After object creation, treating the option name like a dictionary index
411 ::
412
413 fred["fg"] = "red"
414 fred["bg"] = "blue"
415
416Use the config() method to update multiple attrs subsequent to object creation
417 ::
418
419 fred.config(fg = "red", bg = "blue")
420
421For a complete explanation of a given option and its behavior, see the Tk man
422pages for the widget in question.
423
424Note that the man pages list "STANDARD OPTIONS" and "WIDGET SPECIFIC OPTIONS"
425for each widget. The former is a list of options that are common to many
426widgets, the latter are the options that are idiosyncratic to that particular
427widget. The Standard Options are documented on the :manpage:`options(3)` man
428page.
429
430No distinction between standard and widget-specific options is made in this
431document. Some options don't apply to some kinds of widgets. Whether a given
432widget responds to a particular option depends on the class of the widget;
433buttons have a ``command`` option, labels do not.
434
435The options supported by a given widget are listed in that widget's man page, or
436can be queried at runtime by calling the :meth:`config` method without
437arguments, or by calling the :meth:`keys` method on that widget. The return
438value of these calls is a dictionary whose key is the name of the option as a
439string (for example, ``'relief'``) and whose values are 5-tuples.
440
441Some options, like ``bg`` are synonyms for common options with long names
442(``bg`` is shorthand for "background"). Passing the ``config()`` method the name
443of a shorthand option will return a 2-tuple, not 5-tuple. The 2-tuple passed
444back will contain the name of the synonym and the "real" option (such as
445``('bg', 'background')``).
446
447+-------+---------------------------------+--------------+
448| Index | Meaning | Example |
449+=======+=================================+==============+
450| 0 | option name | ``'relief'`` |
451+-------+---------------------------------+--------------+
452| 1 | option name for database lookup | ``'relief'`` |
453+-------+---------------------------------+--------------+
454| 2 | option class for database | ``'Relief'`` |
455| | lookup | |
456+-------+---------------------------------+--------------+
457| 3 | default value | ``'raised'`` |
458+-------+---------------------------------+--------------+
459| 4 | current value | ``'groove'`` |
460+-------+---------------------------------+--------------+
461
462Example::
463
464 >>> print fred.config()
Serhiy Storchakab7128732013-12-24 11:04:06 +0200465 {'relief': ('relief', 'relief', 'Relief', 'raised', 'groove')}
Georg Brandl8ec7f652007-08-15 14:28:01 +0000466
467Of course, the dictionary printed will include all the options available and
468their values. This is meant only as an example.
469
470
471The Packer
472^^^^^^^^^^
473
474.. index:: single: packing (widgets)
475
Georg Brandl8ec7f652007-08-15 14:28:01 +0000476The packer is one of Tk's geometry-management mechanisms. Geometry managers
477are used to specify the relative positioning of the positioning of widgets
478within their container - their mutual *master*. In contrast to the more
479cumbersome *placer* (which is used less commonly, and we do not cover here), the
480packer takes qualitative relationship specification - *above*, *to the left of*,
481*filling*, etc - and works everything out to determine the exact placement
482coordinates for you.
483
Georg Brandl8ec7f652007-08-15 14:28:01 +0000484The size of any *master* widget is determined by the size of the "slave widgets"
485inside. The packer is used to control where slave widgets appear inside the
486master into which they are packed. You can pack widgets into frames, and frames
487into other frames, in order to achieve the kind of layout you desire.
488Additionally, the arrangement is dynamically adjusted to accommodate incremental
489changes to the configuration, once it is packed.
490
491Note that widgets do not appear until they have had their geometry specified
492with a geometry manager. It's a common early mistake to leave out the geometry
493specification, and then be surprised when the widget is created but nothing
494appears. A widget will appear only after it has had, for example, the packer's
495:meth:`pack` method applied to it.
496
497The pack() method can be called with keyword-option/value pairs that control
498where the widget is to appear within its container, and how it is to behave when
499the main application window is resized. Here are some examples::
500
501 fred.pack() # defaults to side = "top"
502 fred.pack(side = "left")
503 fred.pack(expand = 1)
504
505
506Packer Options
507^^^^^^^^^^^^^^
508
509For more extensive information on the packer and the options that it can take,
510see the man pages and page 183 of John Ousterhout's book.
511
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000512anchor
Georg Brandl8ec7f652007-08-15 14:28:01 +0000513 Anchor type. Denotes where the packer is to place each slave in its parcel.
514
515expand
516 Boolean, ``0`` or ``1``.
517
518fill
519 Legal values: ``'x'``, ``'y'``, ``'both'``, ``'none'``.
520
521ipadx and ipady
522 A distance - designating internal padding on each side of the slave widget.
523
524padx and pady
525 A distance - designating external padding on each side of the slave widget.
526
527side
528 Legal values are: ``'left'``, ``'right'``, ``'top'``, ``'bottom'``.
529
530
531Coupling Widget Variables
532^^^^^^^^^^^^^^^^^^^^^^^^^
533
534The current-value setting of some widgets (like text entry widgets) can be
535connected directly to application variables by using special options. These
536options are ``variable``, ``textvariable``, ``onvalue``, ``offvalue``, and
537``value``. This connection works both ways: if the variable changes for any
538reason, the widget it's connected to will be updated to reflect the new value.
539
Georg Brandl6634bf22008-05-20 07:13:37 +0000540Unfortunately, in the current implementation of :mod:`Tkinter` it is not
Georg Brandl8ec7f652007-08-15 14:28:01 +0000541possible to hand over an arbitrary Python variable to a widget through a
542``variable`` or ``textvariable`` option. The only kinds of variables for which
543this works are variables that are subclassed from a class called Variable,
Georg Brandl6634bf22008-05-20 07:13:37 +0000544defined in the :mod:`Tkinter` module.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000545
546There are many useful subclasses of Variable already defined:
547:class:`StringVar`, :class:`IntVar`, :class:`DoubleVar`, and
548:class:`BooleanVar`. To read the current value of such a variable, call the
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000549:meth:`get` method on it, and to change its value you call the :meth:`!set`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000550method. If you follow this protocol, the widget will always track the value of
551the variable, with no further intervention on your part.
552
553For example::
554
555 class App(Frame):
556 def __init__(self, master=None):
557 Frame.__init__(self, master)
558 self.pack()
559
560 self.entrythingy = Entry()
561 self.entrythingy.pack()
562
563 # here is the application variable
564 self.contents = StringVar()
565 # set it to some value
566 self.contents.set("this is a variable")
567 # tell the entry widget to watch this variable
568 self.entrythingy["textvariable"] = self.contents
569
570 # and here we get a callback when the user hits return.
571 # we will have the program print out the value of the
572 # application variable when the user hits return
573 self.entrythingy.bind('<Key-Return>',
574 self.print_contents)
575
576 def print_contents(self, event):
577 print "hi. contents of entry is now ---->", \
578 self.contents.get()
579
580
581The Window Manager
582^^^^^^^^^^^^^^^^^^
583
584.. index:: single: window manager (widgets)
585
Georg Brandl8ec7f652007-08-15 14:28:01 +0000586In Tk, there is a utility command, ``wm``, for interacting with the window
587manager. Options to the ``wm`` command allow you to control things like titles,
Georg Brandl6634bf22008-05-20 07:13:37 +0000588placement, icon bitmaps, and the like. In :mod:`Tkinter`, these commands have
Georg Brandl8ec7f652007-08-15 14:28:01 +0000589been implemented as methods on the :class:`Wm` class. Toplevel widgets are
590subclassed from the :class:`Wm` class, and so can call the :class:`Wm` methods
591directly.
592
593To get at the toplevel window that contains a given widget, you can often just
594refer to the widget's master. Of course if the widget has been packed inside of
595a frame, the master won't represent a toplevel window. To get at the toplevel
596window that contains an arbitrary widget, you can call the :meth:`_root` method.
597This method begins with an underscore to denote the fact that this function is
598part of the implementation, and not an interface to Tk functionality.
599
Georg Brandl8ec7f652007-08-15 14:28:01 +0000600Here are some examples of typical usage::
601
Georg Brandl6634bf22008-05-20 07:13:37 +0000602 from Tkinter import *
Georg Brandl8ec7f652007-08-15 14:28:01 +0000603 class App(Frame):
604 def __init__(self, master=None):
605 Frame.__init__(self, master)
606 self.pack()
607
608
609 # create the application
610 myapp = App()
611
612 #
613 # here are method calls to the window manager class
614 #
615 myapp.master.title("My Do-Nothing Application")
616 myapp.master.maxsize(1000, 400)
617
618 # start the program
619 myapp.mainloop()
620
621
622Tk Option Data Types
623^^^^^^^^^^^^^^^^^^^^
624
625.. index:: single: Tk Option Data Types
626
Georg Brandl8ec7f652007-08-15 14:28:01 +0000627anchor
628 Legal values are points of the compass: ``"n"``, ``"ne"``, ``"e"``, ``"se"``,
629 ``"s"``, ``"sw"``, ``"w"``, ``"nw"``, and also ``"center"``.
630
631bitmap
632 There are eight built-in, named bitmaps: ``'error'``, ``'gray25'``,
633 ``'gray50'``, ``'hourglass'``, ``'info'``, ``'questhead'``, ``'question'``,
634 ``'warning'``. To specify an X bitmap filename, give the full path to the file,
635 preceded with an ``@``, as in ``"@/usr/contrib/bitmap/gumby.bit"``.
636
637boolean
Serhiy Storchaka610f84a2013-12-23 18:19:34 +0200638 You can pass integers 0 or 1 or the strings ``"yes"`` or ``"no"``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000639
640callback
641 This is any Python function that takes no arguments. For example::
642
643 def print_it():
644 print "hi there"
645 fred["command"] = print_it
646
647color
648 Colors can be given as the names of X colors in the rgb.txt file, or as strings
649 representing RGB values in 4 bit: ``"#RGB"``, 8 bit: ``"#RRGGBB"``, 12 bit"
650 ``"#RRRGGGBBB"``, or 16 bit ``"#RRRRGGGGBBBB"`` ranges, where R,G,B here
651 represent any legal hex digit. See page 160 of Ousterhout's book for details.
652
653cursor
654 The standard X cursor names from :file:`cursorfont.h` can be used, without the
655 ``XC_`` prefix. For example to get a hand cursor (:const:`XC_hand2`), use the
656 string ``"hand2"``. You can also specify a bitmap and mask file of your own.
657 See page 179 of Ousterhout's book.
658
659distance
660 Screen distances can be specified in either pixels or absolute distances.
661 Pixels are given as numbers and absolute distances as strings, with the trailing
662 character denoting units: ``c`` for centimetres, ``i`` for inches, ``m`` for
663 millimetres, ``p`` for printer's points. For example, 3.5 inches is expressed
664 as ``"3.5i"``.
665
666font
667 Tk uses a list font name format, such as ``{courier 10 bold}``. Font sizes with
668 positive numbers are measured in points; sizes with negative numbers are
669 measured in pixels.
670
671geometry
672 This is a string of the form ``widthxheight``, where width and height are
673 measured in pixels for most widgets (in characters for widgets displaying text).
674 For example: ``fred["geometry"] = "200x100"``.
675
676justify
677 Legal values are the strings: ``"left"``, ``"center"``, ``"right"``, and
678 ``"fill"``.
679
680region
681 This is a string with four space-delimited elements, each of which is a legal
682 distance (see above). For example: ``"2 3 4 5"`` and ``"3i 2i 4.5i 2i"`` and
683 ``"3c 2c 4c 10.43c"`` are all legal regions.
684
685relief
686 Determines what the border style of a widget will be. Legal values are:
687 ``"raised"``, ``"sunken"``, ``"flat"``, ``"groove"``, and ``"ridge"``.
688
689scrollcommand
Georg Brandl9fa61bb2009-07-26 14:19:57 +0000690 This is almost always the :meth:`!set` method of some scrollbar widget, but can
Georg Brandl8ec7f652007-08-15 14:28:01 +0000691 be any widget method that takes a single argument. Refer to the file
692 :file:`Demo/tkinter/matt/canvas-with-scrollbars.py` in the Python source
693 distribution for an example.
694
695wrap:
696 Must be one of: ``"none"``, ``"char"``, or ``"word"``.
697
698
699Bindings and Events
700^^^^^^^^^^^^^^^^^^^
701
702.. index::
703 single: bind (widgets)
704 single: events (widgets)
705
Georg Brandl8ec7f652007-08-15 14:28:01 +0000706The bind method from the widget command allows you to watch for certain events
707and to have a callback function trigger when that event type occurs. The form
708of the bind method is::
709
710 def bind(self, sequence, func, add=''):
711
712where:
713
714sequence
715 is a string that denotes the target kind of event. (See the bind man page and
716 page 201 of John Ousterhout's book for details).
717
718func
719 is a Python function, taking one argument, to be invoked when the event occurs.
720 An Event instance will be passed as the argument. (Functions deployed this way
721 are commonly known as *callbacks*.)
722
723add
724 is optional, either ``''`` or ``'+'``. Passing an empty string denotes that
725 this binding is to replace any other bindings that this event is associated
726 with. Passing a ``'+'`` means that this function is to be added to the list
727 of functions bound to this event type.
728
729For example::
730
731 def turnRed(self, event):
732 event.widget["activeforeground"] = "red"
733
734 self.button.bind("<Enter>", self.turnRed)
735
736Notice how the widget field of the event is being accessed in the
737:meth:`turnRed` callback. This field contains the widget that caught the X
738event. The following table lists the other event fields you can access, and how
739they are denoted in Tk, which can be useful when referring to the Tk man pages.
740::
741
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000742 Tk Tkinter Event Field Tk Tkinter Event Field
Georg Brandl8ec7f652007-08-15 14:28:01 +0000743 -- ------------------- -- -------------------
744 %f focus %A char
745 %h height %E send_event
746 %k keycode %K keysym
747 %s state %N keysym_num
748 %t time %T type
749 %w width %W widget
750 %x x %X x_root
751 %y y %Y y_root
752
753
754The index Parameter
755^^^^^^^^^^^^^^^^^^^
756
757A number of widgets require"index" parameters to be passed. These are used to
758point at a specific place in a Text widget, or to particular characters in an
759Entry widget, or to particular menu items in a Menu widget.
760
Georg Brandl8ec7f652007-08-15 14:28:01 +0000761Entry widget indexes (index, view index, etc.)
762 Entry widgets have options that refer to character positions in the text being
Georg Brandl6634bf22008-05-20 07:13:37 +0000763 displayed. You can use these :mod:`Tkinter` functions to access these special
Georg Brandl8ec7f652007-08-15 14:28:01 +0000764 points in text widgets:
765
766 AtEnd()
767 refers to the last position in the text
768
769 AtInsert()
770 refers to the point where the text cursor is
771
772 AtSelFirst()
773 indicates the beginning point of the selected text
774
775 AtSelLast()
776 denotes the last point of the selected text and finally
777
778 At(x[, y])
779 refers to the character at pixel location *x*, *y* (with *y* not used in the
780 case of a text entry widget, which contains a single line of text).
781
782Text widget indexes
783 The index notation for Text widgets is very rich and is best described in the Tk
784 man pages.
785
786Menu indexes (menu.invoke(), menu.entryconfig(), etc.)
787 Some options and methods for menus manipulate specific menu entries. Anytime a
788 menu index is needed for an option or a parameter, you may pass in:
789
790 * an integer which refers to the numeric position of the entry in the widget,
791 counted from the top, starting with 0;
792
793 * the string ``'active'``, which refers to the menu position that is currently
794 under the cursor;
795
796 * the string ``"last"`` which refers to the last menu item;
797
798 * An integer preceded by ``@``, as in ``@6``, where the integer is interpreted
799 as a y pixel coordinate in the menu's coordinate system;
800
801 * the string ``"none"``, which indicates no menu entry at all, most often used
802 with menu.activate() to deactivate all entries, and finally,
803
804 * a text string that is pattern matched against the label of the menu entry, as
805 scanned from the top of the menu to the bottom. Note that this index type is
806 considered after all the others, which means that matches for menu items
807 labelled ``last``, ``active``, or ``none`` may be interpreted as the above
808 literals, instead.
809
810
811Images
812^^^^^^
813
Andrés Delfino7a45eb92018-04-20 03:15:01 -0300814Images of different formats can be created through the corresponding subclass
815of :class:`Tkinter.Image`:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000816
Andrés Delfino7a45eb92018-04-20 03:15:01 -0300817* :class:`BitmapImage` for images in XBM format.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000818
Andrés Delfino7a45eb92018-04-20 03:15:01 -0300819* :class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter
820 is supported starting with Tk 8.6.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000821
822Either type of image is created through either the ``file`` or the ``data``
823option (other options are available as well).
824
825The image object can then be used wherever an ``image`` option is supported by
826some widget (e.g. labels, buttons, menus). In these cases, Tk will not keep a
827reference to the image. When the last Python reference to the image object is
828deleted, the image data is deleted as well, and Tk will display an empty box
829wherever the image was used.
830
Andrés Delfinob9827b72018-04-21 13:06:40 -0300831.. seealso::
832
833 The `Pillow <http://python-pillow.org/>`_ package adds support for
834 formats such as BMP, JPEG, TIFF, and WebP, among others.
Terry Jan Reedy84924e62015-05-17 14:49:20 -0400835
836.. _tkinter-file-handlers:
837
838File Handlers
839-------------
840
841Tk allows you to register and unregister a callback function which will be
842called from the Tk mainloop when I/O is possible on a file descriptor.
843Only one handler may be registered per file descriptor. Example code::
844
845 import Tkinter
846 widget = Tkinter.Tk()
847 mask = Tkinter.READABLE | Tkinter.WRITABLE
848 widget.tk.createfilehandler(file, mask, callback)
849 ...
850 widget.tk.deletefilehandler(file)
851
852This feature is not available on Windows.
853
854Since you don't know how many bytes are available for reading, you may not
855want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase`
856:meth:`~io.BufferedIOBase.read` or :meth:`~io.IOBase.readline` methods,
857since these will insist on reading a predefined number of bytes.
858For sockets, the :meth:`~socket.socket.recv` or
859:meth:`~socket.socket.recvfrom` methods will work fine; for other files,
860use raw reads or ``os.read(file.fileno(), maxbytecount)``.
861
862
863.. method:: Widget.tk.createfilehandler(file, mask, func)
864
865 Registers the file handler callback function *func*. The *file* argument
866 may either be an object with a :meth:`~io.IOBase.fileno` method (such as
867 a file or socket object), or an integer file descriptor. The *mask*
868 argument is an ORed combination of any of the three constants below.
869 The callback is called as follows::
870
871 callback(file, mask)
872
873
874.. method:: Widget.tk.deletefilehandler(file)
875
876 Unregisters a file handler.
877
878
879.. data:: READABLE
880 WRITABLE
881 EXCEPTION
882
883 Constants used in the *mask* arguments.
884