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