blob: 034771bba6c9595857b4ade4dd4d2cffd55ecdb1 [file] [log] [blame]
Fred Drake10cd3152001-11-30 18:17:24 +00001\chapter{Graphical User Interfaces with Tk \label{tkinter}}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00002
3\index{GUI}
4\index{Graphical User Interface}
5\index{Tkinter}
6\index{Tk}
7
8Tk/Tcl has long been an integral part of Python. It provides a robust
9and platform independent windowing toolkit, that is available to
10Python programmers using the \refmodule{Tkinter} module, and its
11extension, the \refmodule{Tix} module.
12
Fred Drake666ca802001-11-16 06:02:55 +000013The \refmodule{Tkinter} module is a thin object--oriented layer on top of
Fred Drake7cf4e5b2001-11-15 17:22:04 +000014Tcl/Tk. To use \refmodule{Tkinter}, you don't need to write Tcl code,
15but you will need to consult the Tk documentation, and occasionally
16the Tcl documentation. \refmodule{Tkinter} is a set of wrappers that
17implement the Tk widgets as Python classes. In addition, the internal
18module \module{\_tkinter} provides a threadsafe mechanism which allows
19Python and Tcl to interact.
20
Fred Drake666ca802001-11-16 06:02:55 +000021Tk is not the only GUI for Python, but is however the most commonly
22used one; see section~\ref{other-gui-modules}, ``Other User Interface
23Modules and Packages,'' for more information on other GUI toolkits for
24Python.
Fred Drake7cf4e5b2001-11-15 17:22:04 +000025
26% Other sections I have in mind are
27% Tkinter internals
28% Freezing Tkinter applications
29
30\localmoduletable
31
32
Fred Drakec66ff202001-11-16 01:05:27 +000033\section{\module{Tkinter} ---
34 Python interface to Tcl/Tk}
Fred Drake7cf4e5b2001-11-15 17:22:04 +000035
36\declaremodule{standard}{Tkinter}
37\modulesynopsis{Interface to Tcl/Tk for graphical user interfaces}
38\moduleauthor{Guido van Rossum}{guido@Python.org}
39
40The \module{Tkinter} module (``Tk interface'') is the standard Python
41interface to the Tk GUI toolkit, now maintained at ActiveState. Both
Fred Drakec37b65e2001-11-28 07:26:15 +000042Tk and \module{Tkinter} are available on most \UNIX{} platforms, as well
Fred Drake7cf4e5b2001-11-15 17:22:04 +000043as on Windows and Macintosh systems.
44
45\begin{seealso}
46\seetitle[http://www.python.org/topics/tkinter/]
47 {Python Tkinter Resources}
48 {The Python Tkinter Topic Guide provides a great
49 deal of information on using Tk from Python and links to
50 other sources of information on Tk.}
51
52\seetitle[http://www.pythonware.com/library/an-introduction-to-tkinter.htm]
53 {An Introduction to Tkinter}
54 {Fredrik Lundh's on-line reference material.}
55
56\seetitle[http://www.nmt.edu/tcc/help/pubs/lang.html]
57 {Tkinter reference: a GUI for Python}
58 {On-line reference material.}
59
60\seetitle[http://jtkinter.sourceforge.net]
61 {Tkinter for JPython}
62 {The Jython interface to Tkinter.}
63
64\seetitle[http://www.amazon.com/exec/obidos/ASIN/1884777813]
65 {Python and Tkinter Programming}
66 {The book by John Grayson (ISBN 1-884777-81-3).}
67\end{seealso}
68
69
70\subsection{Tkinter Modules}
71
Fred Drake666ca802001-11-16 06:02:55 +000072Most of the time, the \refmodule{Tkinter} module is all you really
73need, but a number of additional modules are available as well. The
74Tk interface is located in a binary module named \module{_tkinter}.
75This module contains the low-level interface to Tk, and should never
76be used directly by application programmers. It is usually a shared
77library (or DLL), but might in some cases be statically linked with
78the Python interpreter.
Fred Drake7cf4e5b2001-11-15 17:22:04 +000079
80In addition to the Tk interface module, \refmodule{Tkinter} includes a
81number of Python modules. The two most important modules are the
82\refmodule{Tkinter} module itself, and a module called
83\module{Tkconstants}. The former automatically imports the latter, so
84to use Tkinter, all you need to do is to import one module:
85
86\begin{verbatim}
87import Tkinter
88\end{verbatim}
89
90Or, more often:
91
92\begin{verbatim}
93from Tkinter import *
94\end{verbatim}
95
96\begin{classdesc}{Tk}{screenName=None, baseName=None, className='Tk'}
97The \class{Tk} class is instantiated without arguments.
98This creates a toplevel widget of Tk which usually is the main window
99of an appliation. Each instance has its own associated Tcl interpreter.
100% FIXME: The following keyword arguments are currently recognized:
101\end{classdesc}
102
103Other modules that provide Tk support include:
104
105\begin{description}
106% \declaremodule{standard}{Tkconstants}
107% \modulesynopsis{Constants used by Tkinter}
108% FIXME
109
Fred Drake1a763862001-12-03 21:18:30 +0000110\item[\refmodule{ScrolledText}]
111Text widget with a vertical scroll bar built in.
112
Fred Drakec66ff202001-11-16 01:05:27 +0000113\item[\module{tkColorChooser}]
114Dialog to let the user choose a color.
115
116\item[\module{tkCommonDialog}]
Fred Drake04677752001-11-30 19:24:49 +0000117Base class for the dialogs defined in the other modules listed here.
Fred Drakec66ff202001-11-16 01:05:27 +0000118
119\item[\module{tkFileDialog}]
120Common dialogs to allow the user to specify a file to open or save.
121
122\item[\module{tkFont}]
123Utilities to help work with fonts.
124
125\item[\module{tkMessageBox}]
126Access to standard Tk dialog boxes.
127
128\item[\module{tkSimpleDialog}]
129Basic dialogs and convenience functions.
130
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000131\item[\module{Tkdnd}]
132Drag-and-drop support for \refmodule{Tkinter}.
133This is experimental and should become deprecated when it is replaced
134with the Tk DND.
135
136\item[\refmodule{turtle}]
137Turtle graphics in a Tk window.
138
139\end{description}
140
141\subsection{Tkinter Life Preserver}
Fred Drakec66ff202001-11-16 01:05:27 +0000142\sectionauthor{Matt Conway}{}
143% Converted to LaTeX by Mike Clarkson.
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000144
145This section is not designed to be an exhaustive tutorial on either
146Tk or Tkinter. Rather, it is intended as a stop gap, providing some
147introductory orientation on the system.
148
149Credits:
150\begin{itemize}
151\item Tkinter was written by Steen Lumholt and Guido van Rossum.
152\item Tk was written by John Ousterhout while at Berkeley.
153\item This Life Preserver was written by Matt Conway at
154the University of Virginia.
155\item The html rendering, and some liberal editing, was
156produced from a FrameMaker version by Ken Manheimer.
157\item Fredrik Lundh elaborated and revised the class interface descriptions,
158to get them current with Tk 4.2.
159\item Mike Clarkson converted the documentation to \LaTeX, and compiled the
160User Interface chapter of the reference manual.
161\end{itemize}
162
163
164\subsubsection{How To Use This Section}
165
166This section is designed in two parts: the first half (roughly) covers
167background material, while the second half can be taken to the
168keyboard as a handy reference.
169
170When trying to answer questions of the form ``how do I do blah'', it
171is often best to find out how to do``blah'' in straight Tk, and then
172convert this back into the corresponding \refmodule{Tkinter} call.
173Python programmers can often guess at the correct Python command by
174looking at the Tk documentation. This means that in order to use
175Tkinter, you will have to know a little bit about Tk. This document
176can't fulfill that role, so the best we can do is point you to the
177best documentation that exists. Here are some hints:
178
179\begin{itemize}
180\item The authors strongly suggest getting a copy of the Tk man
181pages. Specifically, the man pages in the \code{mann} directory are most
182useful. The \code{man3} man pages describe the C interface to the Tk
183library and thus are not especially helpful for script writers.
184
185\item Addison-Wesley publishes a book called \citetitle{Tcl and the
186Tk Toolkit} by John Ousterhout (ISBN 0-201-63337-X) which is a good
187introduction to Tcl and Tk for the novice. The book is not
188exhaustive, and for many details it defers to the man pages.
189
190\item \file{Tkinter.py} is a last resort for most, but can be a good
191place to go when nothing else makes sense.
192\end{itemize}
193
194\begin{seealso}
195\seetitle[http://tcl.activestate.com/]
196 {ActiveState Tcl Home Page}
197 {The Tk/Tcl development is largely taking place at
198 ActiveState.}
199\seetitle[http://www.amazon.com/exec/obidos/ASIN/020163337X]
200 {Tcl and the Tk Toolkit}
201 {The book by John Ousterhout, the inventor of Tcl .}
202\seetitle[http://www.amazon.com/exec/obidos/ASIN/0130220280]
203 {Practical Programming in Tcl and Tk}
204 {Brent Welch's encyclopedic book.}
205\end{seealso}
206
207
208\subsubsection{A Simple Hello World Program} % HelloWorld.html
209
210%begin{latexonly}
211%\begin{figure}[hbtp]
212%\centerline{\epsfig{file=HelloWorld.gif,width=.9\textwidth}}
213%\vspace{.5cm}
214%\caption{HelloWorld gadget image}
215%\end{figure}
216%See also the hello-world \ulink{notes}{classes/HelloWorld-notes.html} and
217%\ulink{summary}{classes/HelloWorld-summary.html}.
218%end{latexonly}
219
220
221\begin{verbatim}
222from Tkinter import * 1
223 2
224class Application(Frame): 3
225 def say_hi(self): 4
226 print "hi there, everyone!" 5
227 6
228 def createWidgets(self): 7
229 self.QUIT = Button(self) 8
230 self.QUIT["text"] = "QUIT" 9
231 self.QUIT["fg"] = "red" 10
232 self.QUIT["command"] = self.quit 11
233 12
234 self.QUIT.pack({"side": "left"}) 13
235 14
236 self.hi_there = Button(self) 15
237 self.hi_there["text"] = "Hello", 16
238 self.hi_there["command"] = self.say_hi 17
239 18
240 self.hi_there.pack({"side": "left"}) 19
241 20
242 21
243 def __init__(self, master=None): 22
244 Frame.__init__(self, master) 23
Fred Drake5e74d362002-01-05 03:56:54 +0000245 self.pack() 24
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000246 self.createWidgets() 25
247 26
248app = Application() 27
249app.mainloop() 28
250\end{verbatim}
251
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000252
Fred Drakeb22c6722001-12-03 06:12:23 +0000253\subsection{A (Very) Quick Look at Tcl/Tk} % BriefTclTk.html
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000254
255The class hierarchy looks complicated, but in actual practice,
256application programmers almost always refer to the classes at the very
257bottom of the hierarchy.
258
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000259Notes:
260\begin{itemize}
261\item These classes are provided for the purposes of
262organizing certain functions under one namespace. They aren't meant to
263be instantiated independently.
Fred Drakeb22c6722001-12-03 06:12:23 +0000264
265\item The \class{Tk} class is meant to be instantiated only once in
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000266an application. Application programmers need not instantiate one
267explicitly, the system creates one whenever any of the other classes
268are instantiated.
Fred Drakeb22c6722001-12-03 06:12:23 +0000269
270\item The \class{Widget} class is not meant to be instantiated, it
271is meant only for subclassing to make ``real'' widgets (in \Cpp, this
272is called an `abstract class').
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000273\end{itemize}
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000274
275To make use of this reference material, there will be times when you
276will need to know how to read short passages of Tk and how to identify
277the various parts of a Tk command.
Fred Drake666ca802001-11-16 06:02:55 +0000278(See section~\ref{tkinter-basic-mapping} for the
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000279\refmodule{Tkinter} equivalents of what's below.)
280
281Tk scripts are Tcl programs. Like all Tcl programs, Tk scripts are
282just lists of tokens separated by spaces. A Tk widget is just its
283\emph{class}, the \emph{options} that help configure it, and the
284\emph{actions} that make it do useful things.
285
286To make a widget in Tk, the command is always of the form:
287
288\begin{verbatim}
289 classCommand newPathname options
290\end{verbatim}
291
292\begin{description}
293\item[\var{classCommand}]
294denotes which kind of widget to make (a button, a label, a menu...)
295
296\item[\var{newPathname}]
297is the new name for this widget. All names in Tk must be unique. To
298help enforce this, widgets in Tk are named with \emph{pathnames}, just
299like files in a file system. The top level widget, the \emph{root},
300is called \code{.} (period) and children are delimited by more
301periods. For example, \code{.myApp.controlPanel.okButton} might be
302the name of a widget.
303
304\item[\var{options} ]
305configure the widget's appearance and in some cases, its
306behavior. The options come in the form of a list of flags and values.
307Flags are proceeded by a `-', like unix shell command flags, and
308values are put in quotes if they are more than one word.
309\end{description}
310
311For example:
312
313\begin{verbatim}
314 button .fred -fg red -text "hi there"
315 ^ ^ \_____________________/
316 | | |
317 class new options
318 command widget (-opt val -opt val ...)
319\end{verbatim}
320
321Once created, the pathname to the widget becomes a new command. This
322new \var{widget command} is the programmer's handle for getting the new
323widget to perform some \var{action}. In C, you'd express this as
Fred Drakec66ff202001-11-16 01:05:27 +0000324someAction(fred, someOptions), in \Cpp, you would express this as
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000325fred.someAction(someOptions), and in Tk, you say:
326
327\begin{verbatim}
328 .fred someAction someOptions
329\end{verbatim}
330
331Note that the object name, \code{.fred}, starts with a dot.
332
333As you'd expect, the legal values for \var{someAction} will depend on
334the widget's class: \code{.fred disable} works if fred is a
335button (fred gets greyed out), but does not work if fred is a label
336(disabling of labels is not supported in Tk).
337
338The legal values of \var{someOptions} is action dependent. Some
339actions, like \code{disable}, require no arguments, others, like
340a text-entry box's \code{delete} command, would need arguments
341to specify what range of text to delete.
342
343
344\subsection{Mapping Basic Tk into Tkinter
345 \label{tkinter-basic-mapping}}
346
347Class commands in Tk correspond to class constructors in Tkinter.
348
349\begin{verbatim}
350 button .fred =====> fred = Button()
351\end{verbatim}
352
353The master of an object is implicit in the new name given to it at
354creation time. In Tkinter, masters are specified explicitly.
355
356\begin{verbatim}
357 button .panel.fred =====> fred = Button(panel)
358\end{verbatim}
359
360The configuration options in Tk are given in lists of hyphened tags
361followed by values. In Tkinter, options are specified as
362keyword-arguments in the instance constructor, and keyword-args for
363configure calls or as instance indices, in dictionary style, for
Fred Drake666ca802001-11-16 06:02:55 +0000364established instances. See section~\ref{tkinter-setting-options} on
365setting options.
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000366
367\begin{verbatim}
368 button .fred -fg red =====> fred = Button(panel, fg = "red")
369 .fred configure -fg red =====> fred["fg"] = red
370 OR ==> fred.config(fg = "red")
371\end{verbatim}
372
373In Tk, to perform an action on a widget, use the widget name as a
374command, and follow it with an action name, possibly with arguments
375(options). In Tkinter, you call methods on the class instance to
376invoke actions on the widget. The actions (methods) that a given
377widget can perform are listed in the Tkinter.py module.
378
379\begin{verbatim}
380 .fred invoke =====> fred.invoke()
381\end{verbatim}
382
383To give a widget to the packer (geometry manager), you call pack with
384optional arguments. In Tkinter, the Pack class holds all this
385functionality, and the various forms of the pack command are
386implemented as methods. All widgets in \refmodule{Tkinter} are
387subclassed from the Packer, and so inherit all the packing
388methods. See the \refmodule{Tix} module documentation for additional
389information on the Form geometry manager.
390
391\begin{verbatim}
392 pack .fred -side left =====> fred.pack(side = "left")
393\end{verbatim}
394
395
396\subsection{How Tk and Tkinter are Related} % Relationship.html
397
Fred Drake666ca802001-11-16 06:02:55 +0000398\note{This was derived from a graphical image; the image will be used
399 more directly in a subsequent version of this document.}
400
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000401From the top down:
402\begin{description}
403\item[\b{Your App Here (Python)}]
404A Python application makes a \refmodule{Tkinter} call.
405
406\item[\b{Tkinter (Python Module)}]
407This call (say, for example, creating a button widget), is
408implemented in the \emph{Tkinter} module, which is written in
409Python. This Python function will parse the commands and the
410arguments and convert them into a form that makes them look as if they
411had come from a Tk script instead of a Python script.
412
413\item[\b{tkinter (C)}]
414These commands and their arguments will be passed to a C function
415in the \emph{tkinter} - note the lowercase - extension module.
416
417\item[\b{Tk Widgets} (C and Tcl)]
418This C function is able to make calls into other C modules,
419including the C functions that make up the Tk library. Tk is
420implemented in C and some Tcl. The Tcl part of the Tk widgets is used
421to bind certain default behaviors to widgets, and is executed once at
422the point where the Python \refmodule{Tkinter} module is
423imported. (The user never sees this stage).
424
425\item[\b{Tk (C)}]
426The Tk part of the Tk Widgets implement the final mapping to ...
427
428\item[\b{Xlib (C)}]
429the Xlib library to draw graphics on the screen.
430\end{description}
431
432
433\subsection{Handy Reference}
434
435\subsubsection{Setting Options
436 \label{tkinter-setting-options}}
437
438Options control things like the color and border width of a widget.
439Options can be set in three ways:
440
441\begin{description}
442\item[At object creation time, using keyword arguments]:
443\begin{verbatim}
444fred = Button(self, fg = "red", bg = "blue")
445\end{verbatim}
446\item[After object creation, treating the option name like a dictionary index]:
447\begin{verbatim}
448fred["fg"] = "red"
449fred["bg"] = "blue"
450\end{verbatim}
451\item[Use the config() method to update multiple attrs subesequent to
452object creation]:
453\begin{verbatim}
454fred.config(fg = "red", bg = "blue")
455\end{verbatim}
456\end{description}
457
458For a complete explanation of a given option and its behavior, see the
459Tk man pages for the widget in question.
460
461Note that the man pages list "STANDARD OPTIONS" and "WIDGET SPECIFIC
462OPTIONS" for each widget. The former is a list of options that are
463common to many widgets, the latter are the options that are
464ideosyncratic to that particular widget. The Standard Options are
465documented on the \manpage{options}{3} man page.
466
467No distinction between standard and widget-specific options is made in
468this document. Some options don't apply to some kinds of widgets.
469Whether a given widget responds to a particular option depends on the
470class of the widget; buttons have a \code{command} option, labels do not.
471
472The options supported by a given widget are listed in that widget's
473man page, or can be queried at runtime by calling the
474\kbd{config()} method with arguments, or by calling the keys()
475method on that widget. The return value of these calls is a dictionary
476whose key is the name of the option (e.g. \kbd{relief}) and whose
477values are 5 tuples.
478
479(Some options, like \kbd{bg} are synonyms for common options with
480hard-to-type names (\kbd{bg} is shorthand for "background").
481Passing the \kbd{config()} method the name of a
482shorthand option will return a 2-tuple, not 5-tuple. The 2-tuple
483passed back will contain the name of the synonym ``real''
484option. (\kbd{bg}, \kbd{background}))
485
486\begin{tableiii}{c|l|l}{textrm}{Index}{Meaning}{Example}
487 \lineiii{0}{option name} {\code{'relief'}}
488 \lineiii{1}{option name for database lookup} {\code{'relief'}}
489 \lineiii{2}{option class for database lookup} {\code{'Relief'}}
490 \lineiii{3}{default value} {\code{'raised'}}
491 \lineiii{4}{current value} {\code{'groove'}}
492\end{tableiii}
493
494
495Example:
496
497\begin{verbatim}
498>>> print fred.config()
499{'relief' : ('relief', 'relief', 'Relief', 'raised', 'groove')}
500\end{verbatim}
501
502Of course, the dictionary printed will include all the options
503available and their values. This is meant only as an example.
504
505
506\subsubsection{The Packer} % Packer.html
507\index{packing (widgets)}
508
509The packer is one of Tk's geometry-management mechanisms. See also
510\citetitle[classes/ClassPacker.html]{the Packer class interface}.
511
512Geometry managers are used to specify the relative positioning of the
513positioning of widgets within their container - their mutual
514\emph{master}. In contrast to the more cumbersome \emph{placer}
515(which is used less commonly, and we do not cover here), the packer
516takes qualitative relationship specification - \emph{above}, \emph{to
517the left of}, \emph{filling}, etc - and works everything out to
518determine the exact placement coordinates for you.
519
520The size of any \emph{master} widget is determined by the size of
521the "slave widgets" inside. The packer is used to control where slave
522widgets appear inside the master into which they are packed. You can
523pack widgets into frames, and frames into other frames, in order to
524achieve the kind of layout you desire. Additionally, the arrangement
525is dynamically adjusted to accomodate incremental changes to the
526configuration, once it is packed.
527
528Note that widgets do not appear until they have had their geometry
529specified with a geometry manager. It's a common early mistake to
530leave out the geometry specification, and then be surprised when the
531widget is created but nothing appears. A widget will appear only
532after it has had, for example, the packer's \method{pack()} method
533applied to it.
534
535The pack() method can be called with keyword-option/value pairs that
536control where the widget is to appear within its container, and how it
537is to behave when the main application window is resized. Here are
538some examples:
539
540\begin{verbatim}
541 fred.pack() # defaults to side = "top"
542 fred.pack(side = "left")
543 fred.pack(expand = 1)
544\end{verbatim}
545
546
547\subsubsection{Packer Options}
548
549For more extensive information on the packer and the options that it
550can take, see the man pages and page 183 of John Ousterhout's book.
551
552\begin{description}
553\item[\b{anchor }]
554Anchor type. Denotes where the packer is to place each slave in its
555parcel.
556
557\item[\b{expand}]
558Boolean, \code{0} or \code{1}.
559
560\item[\b{fill}]
561Legal values: \code{'x'}, \code{'y'}, \code{'both'}, \code{'none'}.
562
563\item[\b{ipadx} and \b{ipady}]
564A distance - designating internal padding on each side of the slave
565widget.
566
567\item[\b{padx} and \b{pady}]
568A distance - designating external padding on each side of the slave
569widget.
570
571\item[\b{side}]
572Legal values are: \code{'left'}, \code{'right'}, \code{'top'},
573\code{'bottom'}.
574\end{description}
575
576
577\subsubsection{Coupling Widget Variables} % VarCouplings.html
578
579The current-value setting of some widgets (like text entry widgets)
580can be connected directly to application variables by using special
581options. These options are \code{variable}, \code{textvariable},
582\code{onvalue}, \code{offvalue}, and \code{value}. This
583connection works both ways: if the variable changes for any reason,
584the widget it's connected to will be updated to reflect the new value.
585
586Unfortunately, in the current implementation of \refmodule{Tkinter} it is
587not possible to hand over an arbitrary Python variable to a widget
588through a \code{variable} or \code{textvariable} option. The only
589kinds of variables for which this works are variables that are
590subclassed from a class called Variable, defined in the
591\refmodule{Tkinter} module.
592
593There are many useful subclasses of Variable already defined:
594\class{StringVar}, \class{IntVar}, \class{DoubleVar}, and
595\class{BooleanVar}. To read the current value of such a variable,
596call the \method{get()} method on
597it, and to change its value you call the \method{set()} method. If
598you follow this protocol, the widget will always track the value of
599the variable, with no further intervention on your part.
600
601For example:
602\begin{verbatim}
603class App(Frame):
604 def __init__(self, master=None):
605 Frame.__init__(self, master)
606 self.pack()
607
608 self.entrythingy = Entry()
609 self.entrythingy.pack()
610
611 self.button.pack()
612 # here is the application variable
613 self.contents = StringVar()
614 # set it to some value
615 self.contents.set("this is a variable")
616 # tell the entry widget to watch this variable
617 self.entrythingy["textvariable"] = self.contents
618
619 # and here we get a callback when the user hits return.
620 # we will have the program print out the value of the
621 # application variable when the user hits return
622 self.entrythingy.bind('<Key-Return>',
623 self.print_contents)
624
625 def print_contents(self, event):
626 print "hi. contents of entry is now ---->", \
627 self.contents.get()
628\end{verbatim}
629
630
631\subsubsection{The Window Manager} % WindowMgr.html
632\index{window manager (widgets)}
633
634In Tk, there is a utility command, \code{wm}, for interacting with the
635window manager. Options to the \code{wm} command allow you to control
636things like titles, placement, icon bitmaps, and the like. In
637\refmodule{Tkinter}, these commands have been implemented as methods
638on the \class{Wm} class. Toplevel widgets are subclassed from the
639\class{Wm} class, and so can call the \class{Wm} methods directly.
640
641%See also \citetitle[classes/ClassWm.html]{the Wm class interface}.
642
643To get at the toplevel window that contains a given widget, you can
644often just refer to the widget's master. Of course if the widget has
645been packed inside of a frame, the master won't represent a toplevel
646window. To get at the toplevel window that contains an arbitrary
647widget, you can call the \method{_root()} method. This
648method begins with an underscore to denote the fact that this function
649is part of the implementation, and not an interface to Tk functionality.
650
651Here are some examples of typical usage:
652
653\begin{verbatim}
654import Tkinter
655class App(Frame):
656 def __init__(self, master=None):
657 Frame.__init__(self, master)
658 self.pack()
659
660
661# create the application
662myapp = App()
663
664#
665# here are method calls to the window manager class
666#
667myapp.master.title("My Do-Nothing Application")
668myapp.master.maxsize(1000, 400)
669
670# start the program
671myapp.mainloop()
672\end{verbatim}
673
674
675\subsubsection{Tk Option Data Types} % OptionTypes.html
676
677\index{Tk Option Data Types}
678
679\begin{description}
680\item[anchor]
681Legal values are points of the compass: \code{"n"},
682\code{"ne"}, \code{"e"}, \code{"se"}, \code{"s"},
683\code{"sw"}, \code{"w"}, \code{"nw"}, and also
684\code{"center"}.
685
686\item[bitmap]
687There are eight built-in, named bitmaps: \code{'error'}, \code{'gray25'},
688\code{'gray50'}, \code{'hourglass'}, \code{'info'}, \code{'questhead'},
689\code{'question'}, \code{'warning'}. To specify an X bitmap
690filename, give the full path to the file, preceded with an \code{@},
691as in \code{"@/usr/contrib/bitmap/gumby.bit"}.
692
693\item[boolean]
694You can pass integers 0 or 1 or the stings \code{"yes"} or \code{"no"} .
695
696\item[callback]
697This is any Python function that takes no arguments. For example:
698\begin{verbatim}
699 def print_it():
700 print "hi there"
701 fred["command"] = print_it
702\end{verbatim}
703
704\item[color]
705Colors can be given as the names of X colors in the rgb.txt file,
706or as strings representing RGB values in 4 bit: \code{"\#RGB"}, 8
707bit: \code{"\#RRGGBB"}, 12 bit" \code{"\#RRRGGGBBB"}, or 16 bit
708\code{"\#RRRRGGGGBBBB"} ranges, where R,G,B here represent any
709legal hex digit. See page 160 of Ousterhout's book for details.
710
711\item[cursor]
712The standard X cursor names from \file{cursorfont.h} can be used,
713without the \code{XC_} prefix. For example to get a hand cursor
714(\constant{XC_hand2}), use the string \code{"hand2"}. You can also
715specify a bitmap and mask file of your own. See page 179 of
716Ousterhout's book.
717
718\item[distance]
719Screen distances can be specified in either pixels or absolute
720distances. Pixels are given as numbers and absolute distances as
721strings, with the trailing character denoting units: \code{c}
722for centimeters, \code{i} for inches, \code{m} for millimeters,
723\code{p} for printer's points. For example, 3.5 inches is expressed
724as \code{"3.5i"}.
725
726\item[font]
727Tk uses a list font name format, such as \code{\{courier 10 bold\}}.
728Font sizes with positive numbers are measured in points;
729sizes with negative numbers are measured in pixels.
730
731\item[geometry]
732This is a string of the form \samp{\var{width}x\var{height}}, where
733width and height are measured in pixels for most widgets (in
734characters for widgets displaying text). For example:
735\code{fred["geometry"] = "200x100"}.
736
737\item[justify]
738Legal values are the strings: \code{"left"},
739\code{"center"}, \code{"right"}, and \code{"fill"}.
740
741\item[region]
742This is a string with four space-delimited elements, each of
743which is a legal distance (see above). For example: \code{"2 3 4
7445"} and \code{"3i 2i 4.5i 2i"} and \code{"3c 2c 4c 10.43c"}
745are all legal regions.
746
747\item[relief]
748Determines what the border style of a widget will be. Legal
749values are: \code{"raised"}, \code{"sunken"},
750\code{"flat"}, \code{"groove"}, and \code{"ridge"}.
751
752\item[scrollcommand]
753This is almost always the \method{set()} method of some scrollbar
754widget, but can be any widget method that takes a single argument.
755Refer to the file \file{Demo/tkinter/matt/canvas-with-scrollbars.py}
756in the Python source distribution for an example.
757
758\item[wrap:]
759Must be one of: \code{"none"}, \code{"char"}, or \code{"word"}.
760\end{description}
761
762
763\subsubsection{Bindings and Events} % Bindings.html
764
765\index{bind (widgets)}
766\index{events (widgets)}
767
768The bind method from the widget command allows you to watch for
769certain events and to have a callback function trigger when that event
770type occurs. The form of the bind method is:
771
772\begin{verbatim}
773 def bind(self, sequence, func, add=''):
774\end{verbatim}
775where:
776
777\begin{description}
778\item[sequence]
779is a string that denotes the target kind of event. (See the bind
780man page and page 201 of John Ousterhout's book for details).
781
782\item[func]
783is a Python function, taking one argument, to be invoked when the
784event occurs. An Event instance will be passed as the argument.
785(Functions deployed this way are commonly known as \var{callbacks}.)
786
787\item[add]
788is optional, either \samp{} or \samp{+}. Passing an empty string
789denotes that this binding is to replace any other bindings that this
790event is associated with. Preceeding with a \samp{+} means that this
791function is to be added to the list of functions bound to this event type.
792\end{description}
793
794For example:
795\begin{verbatim}
796 def turnRed(self, event):
797 event.widget["activeforeground"] = "red"
798
799 self.button.bind("<Enter>", self.turnRed)
800\end{verbatim}
801
802Notice how the widget field of the event is being accesed in the
803\method{turnRed()} callback. This field contains the widget that
804caught the X event. The following table lists the other event fields
805you can access, and how they are denoted in Tk, which can be useful
806when referring to the Tk man pages.
807
808\begin{verbatim}
809Tk Tkinter Event Field Tk Tkinter Event Field
810-- ------------------- -- -------------------
811%f focus %A char
812%h height %E send_event
813%k keycode %K keysym
814%s state %N keysym_num
815%t time %T type
816%w width %W widget
817%x x %X x_root
818%y y %Y y_root
819\end{verbatim}
820
821
822\subsubsection{The index Parameter} % Index.html
823
824A number of widgets require``index'' parameters to be passed. These
825are used to point at a specific place in a Text widget, or to
826particular characters in an Entry widget, or to particular menu items
827in a Menu widget.
828
829\begin{description}
830\item[\b{Entry widget indexes (index, view index, etc.)}]
831Entry widgets have options that refer to character positions in the
832text being displayed. You can use these \refmodule{Tkinter} functions
833to access these special points in text widgets:
Fred Drake666ca802001-11-16 06:02:55 +0000834
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000835\begin{description}
836\item[AtEnd()]
837refers to the last position in the text
Fred Drake666ca802001-11-16 06:02:55 +0000838
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000839\item[AtInsert()]
840refers to the point where the text cursor is
Fred Drake666ca802001-11-16 06:02:55 +0000841
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000842\item[AtSelFirst()]
843indicates the beginning point of the selected text
Fred Drake666ca802001-11-16 06:02:55 +0000844
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000845\item[AtSelLast()]
846denotes the last point of the selected text and finally
Fred Drake666ca802001-11-16 06:02:55 +0000847
848\item[At(x\optional{, y})]
849refers to the character at pixel location \var{x}, \var{y} (with
850\var{y} not used in the case of a text entry widget, which contains a
851single line of text).
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000852\end{description}
853
854\item[\b{Text widget indexes}]
855The index notation for Text widgets is very rich and is best described
856in the Tk man pages.
857
858\item[\b{Menu indexes (menu.invoke(), menu.entryconfig(), etc.)}]
859
860Some options and methods for menus manipulate specific menu entries.
861Anytime a menu index is needed for an option or a parameter, you may
862pass in:
863\begin{itemize}
864\item an integer which refers to the numeric position of the entry in
865the widget, counted from the top, starting with 0;
866\item the string \code{'active'}, which refers to the menu position that is
867currently under the cursor;
868\item the string \code{"last"} which refers to the last menu
869item;
870\item An integer preceded by \code{@}, as in \code{@6}, where the integer is
871interpreted as a y pixel coordinate in the menu's coordinate system;
872\item the string \code{"none"}, which indicates no menu entry at all, most
873often used with menu.activate() to deactivate all entries, and
874finally,
875\item a text string that is pattern matched against the label of the
876menu entry, as scanned from the top of the menu to the bottom. Note
877that this index type is considered after all the others, which means
878that matches for menu items labelled \code{last}, \code{active}, or
879\code{none} may be interpreted as the above literals, instead.
880\end{itemize}
881\end{description}
882
883
Fred Drakec66ff202001-11-16 01:05:27 +0000884\section{\module{Tix} ---
885 Extension widgets for Tk}
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000886
887\declaremodule{standard}{Tix}
888\modulesynopsis{Tk Extension Widgets for Tkinter}
889\sectionauthor{Mike Clarkson}{mikeclarkson@users.sourceforge.net}
890
Fred Drakec66ff202001-11-16 01:05:27 +0000891\index{Tix}
892
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000893The \module{Tix} (Tk Interface Extension) module provides an
894additional rich set of widgets. Although the standard Tk library has
895many useful widgets, they are far from complete. The \module{Tix}
896library provides most of the commonly needed widgets that are missing
897from standard Tk: \class{HList}, \class{ComboBox}, \class{Control}
898(a.k.a. SpinBox) and an assortment of scrollable widgets. \module{Tix}
899also includes many more widgets that are generally useful in a wide
900range of applications: \class{NoteBook}, \class{FileEntry},
901\class{PanedWindow}, etc; there are more than 40 of them.
902
903With all these new widgets, you can introduce new interaction
904techniques into applications, creating more useful and more intuitive
905user interfaces. You can design your application by choosing the most
906appropriate widgets to match the special needs of your application and
907users.
908
909\begin{seealso}
910\seetitle[http://tix.sourceforge.net/]
911 {Tix Homepage}
Fred Drakea0b76762001-12-13 04:25:37 +0000912 {The home page for \module{Tix}. This includes links to
913 additional documentation and downloads.}
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000914\seetitle[http://tix.sourceforge.net/dist/current/man/]
915 {Tix Man Pages}
916 {On-line version of the man pages and reference material.}
917\seetitle[http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html]
918 {Tix Programming Guide}
919 {On-line version of the programmer's reference material.}
920\seetitle[http://tix.sourceforge.net/Tide/]
921 {Tix Development Applications}
922 {Tix applications for development of Tix and Tkinter programs.
923 Tide applications work under Tk or Tkinter, and include
924 \program{TixInspect}, an inspector to remotely modify and
925 debug Tix/Tk/Tkinter applications.}
926\end{seealso}
927
928
929\subsection{Using Tix}
930
Fred Drake666ca802001-11-16 06:02:55 +0000931\begin{classdesc}{Tix}{screenName\optional{, baseName\optional{, className}}}
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000932 Toplevel widget of Tix which represents mostly the main window
933 of an application. It has an associated Tcl interpreter.
934
Fred Drake666ca802001-11-16 06:02:55 +0000935Classes in the \refmodule{Tix} module subclasses the classes in the
936\refmodule{Tkinter} module. The former imports the latter, so to use
937\refmodule{Tix} with Tkinter, all you need to do is to import one
938module. In general, you can just import \refmodule{Tix}, and replace
939the toplevel call to \class{Tkinter.Tk} with \class{Tix.Tk}:
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000940\begin{verbatim}
941import Tix
942from Tkconstants import *
943root = Tix.Tk()
944\end{verbatim}
945\end{classdesc}
946
947To use \refmodule{Tix}, you must have the \refmodule{Tix} widgets installed,
948usually alongside your installation of the Tk widgets.
949To test your installation, try the following:
950\begin{verbatim}
951import Tix
952root = Tix.Tk()
953root.tk.eval('package require Tix')
954\end{verbatim}
955
956If this fails, you have a Tk installation problem which must be
957resolved before proceeding. Use the environment variable \envvar{TIX_LIBRARY}
958to point to the installed \refmodule{Tix} library directory, and
959make sure you have the dynamic object library (\file{tix8183.dll} or
960\file{libtix8183.so}) in the same directory that contains your Tk
961dynamic object library (\file{tk8183.dll} or \file{libtk8183.so}). The
962directory with the dynamic object library should also have a file
963called \file{pkgIndex.tcl} (case sensitive), which contains the line:
964
965\begin{verbatim}
966package ifneeded Tix 8.1 [list load "[file join $dir tix8183.dll]" Tix]
967\end{verbatim} % $ <-- bow to font-lock
968
969
970\subsection{Tix Widgets}
971
972\ulink{Tix}
973{http://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm}
974introduces over 40 widget classes to the \refmodule{Tkinter}
975repertoire. There is a demo of all the \refmodule{Tix} widgets in the
976\file{Demo/tix} directory of the standard distribution.
977
978
979% The Python sample code is still being added to Python, hence commented out
980
981
982\subsubsection{Basic Widgets}
983
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000984\begin{classdesc}{Balloon}{}
985A \ulink{Balloon}
Fred Drakec66ff202001-11-16 01:05:27 +0000986{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixBalloon.htm}
987that pops up over a widget to provide help. When the user moves the
988cursor inside a widget to which a Balloon widget has been bound, a
989small pop-up window with a descriptive message will be shown on the
990screen.
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000991\end{classdesc}
992
Fred Drakec66ff202001-11-16 01:05:27 +0000993% Python Demo of:
994% \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000995
Fred Drake7cf4e5b2001-11-15 17:22:04 +0000996\begin{classdesc}{ButtonBox}{}
997The \ulink{ButtonBox}
Fred Drakec66ff202001-11-16 01:05:27 +0000998{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixButtonBox.htm}
999widget creates a box of buttons, such as is commonly used for \code{Ok
1000Cancel}.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001001\end{classdesc}
1002
Fred Drakec66ff202001-11-16 01:05:27 +00001003% Python Demo of:
1004% \ulink{ButtonBox}{http://tix.sourceforge.net/dist/current/demos/samples/BtnBox.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001005
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001006\begin{classdesc}{ComboBox}{}
1007The \ulink{ComboBox}
Fred Drakec66ff202001-11-16 01:05:27 +00001008{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixComboBox.htm}
1009widget is similar to the combo box control in MS Windows. The user can
1010select a choice by either typing in the entry subwdget or selecting
1011from the listbox subwidget.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001012\end{classdesc}
1013
Fred Drakec66ff202001-11-16 01:05:27 +00001014% Python Demo of:
1015% \ulink{ComboBox}{http://tix.sourceforge.net/dist/current/demos/samples/ComboBox.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001016
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001017\begin{classdesc}{Control}{}
1018The \ulink{Control}
Fred Drakec66ff202001-11-16 01:05:27 +00001019{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixControl.htm}
1020widget is also known as the \class{SpinBox} widget. The user can
1021adjust the value by pressing the two arrow buttons or by entering the
1022value directly into the entry. The new value will be checked against
1023the user-defined upper and lower limits.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001024\end{classdesc}
1025
Fred Drakec66ff202001-11-16 01:05:27 +00001026% Python Demo of:
1027% \ulink{Control}{http://tix.sourceforge.net/dist/current/demos/samples/Control.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001028
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001029\begin{classdesc}{LabelEntry}{}
1030The \ulink{LabelEntry}
Fred Drakec66ff202001-11-16 01:05:27 +00001031{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixLabelEntry.htm}
1032widget packages an entry widget and a label into one mega widget. It
1033can be used be used to simplify the creation of ``entry-form'' type of
1034interface.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001035\end{classdesc}
1036
1037% Python Demo of:
1038% \ulink{LabelEntry}{http://tix.sourceforge.net/dist/current/demos/samples/LabEntry.tcl}
1039
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001040\begin{classdesc}{LabelFrame}{}
1041The \ulink{LabelFrame}
Fred Drakec66ff202001-11-16 01:05:27 +00001042{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixLabelFrame.htm}
1043widget packages a frame widget and a label into one mega widget. To
1044create widgets inside a LabelFrame widget, one creates the new widgets
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001045relative to the \member{frame} subwidget and manage them inside the
1046\member{frame} subwidget.
1047\end{classdesc}
1048
1049% Python Demo of:
1050% \ulink{LabelFrame}{http://tix.sourceforge.net/dist/current/demos/samples/LabFrame.tcl}
1051
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001052\begin{classdesc}{Meter}{}
1053The \ulink{Meter}
Fred Drakec66ff202001-11-16 01:05:27 +00001054{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixMeter.htm}
1055widget can be used to show the progress of a background job which may
1056take a long time to execute.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001057\end{classdesc}
1058
1059% Python Demo of:
1060% \ulink{Meter}{http://tix.sourceforge.net/dist/current/demos/samples/Meter.tcl}
1061
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001062\begin{classdesc}{OptionMenu}{}
1063The \ulink{OptionMenu}
Fred Drakec66ff202001-11-16 01:05:27 +00001064{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixOptionMenu.htm}
1065creates a menu button of options.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001066\end{classdesc}
1067
Fred Drakec66ff202001-11-16 01:05:27 +00001068% Python Demo of:
1069% \ulink{OptionMenu}{http://tix.sourceforge.net/dist/current/demos/samples/OptMenu.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001070
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001071\begin{classdesc}{PopupMenu}{}
1072The \ulink{PopupMenu}
Fred Drakec66ff202001-11-16 01:05:27 +00001073{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixPopupMenu.htm}
1074widget can be used as a replacement of the \code{tk_popup}
1075command. The advantage of the \refmodule{Tix} \class{PopupMenu} widget
1076is it requires less application code to manipulate.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001077\end{classdesc}
1078
Fred Drakec66ff202001-11-16 01:05:27 +00001079% Python Demo of:
1080% \ulink{PopupMenu}{http://tix.sourceforge.net/dist/current/demos/samples/PopMenu.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001081
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001082\begin{classdesc}{Select}{}
1083The \ulink{Select}
Fred Drakec66ff202001-11-16 01:05:27 +00001084{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixSelect.htm}
1085widget is a container of button subwidgets. It can be used to provide
1086radio-box or check-box style of selection options for the user.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001087\end{classdesc}
1088
Fred Drakec66ff202001-11-16 01:05:27 +00001089% Python Demo of:
1090% \ulink{Select}{http://tix.sourceforge.net/dist/current/demos/samples/Select.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001091
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001092\begin{classdesc}{StdButtonBox}{}
1093The \ulink{StdButtonBox}
Fred Drakec66ff202001-11-16 01:05:27 +00001094{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixStdButtonBox.htm}
1095widget is a group of standard buttons for Motif-like dialog boxes.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001096\end{classdesc}
1097
Fred Drakec66ff202001-11-16 01:05:27 +00001098% Python Demo of:
1099% \ulink{StdButtonBox}{http://tix.sourceforge.net/dist/current/demos/samples/StdBBox.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001100
1101
1102\subsubsection{File Selectors}
1103
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001104\begin{classdesc}{DirList}{}
1105The \ulink{DirList}
1106{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixDirList.htm} widget
1107displays a list view of a directory, its previous directories and its
1108sub-directories. The user can choose one of the directories displayed
1109in the list or change to another directory.
1110\end{classdesc}
1111
Fred Drakec66ff202001-11-16 01:05:27 +00001112% Python Demo of:
1113% \ulink{DirList}{http://tix.sourceforge.net/dist/current/demos/samples/DirList.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001114
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001115\begin{classdesc}{DirTree}{}
1116The \ulink{DirTree}
Fred Drakec66ff202001-11-16 01:05:27 +00001117{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixDirTree.htm}
1118widget displays a tree view of a directory, its previous directories
1119and its sub-directories. The user can choose one of the directories
1120displayed in the list or change to another directory.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001121\end{classdesc}
1122
Fred Drakec66ff202001-11-16 01:05:27 +00001123% Python Demo of:
1124% \ulink{DirTree}{http://tix.sourceforge.net/dist/current/demos/samples/DirTree.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001125
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001126\begin{classdesc}{DirSelectDialog}{}
1127The \ulink{DirSelectDialog}
Fred Drakec66ff202001-11-16 01:05:27 +00001128{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixDirSelectDialog.htm}
1129widget presents the directories in the file system in a dialog
1130window. The user can use this dialog window to navigate through the
1131file system to select the desired directory.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001132\end{classdesc}
1133
Fred Drakec66ff202001-11-16 01:05:27 +00001134% Python Demo of:
1135% \ulink{DirSelectDialog}{http://tix.sourceforge.net/dist/current/demos/samples/DirDlg.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001136
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001137\begin{classdesc}{DirSelectBox}{}
1138The \class{DirSelectBox} is similar
1139to the standard Motif(TM) directory-selection box. It is generally used for
1140the user to choose a directory. DirSelectBox stores the directories mostly
1141recently selected into a ComboBox widget so that they can be quickly
1142selected again.
1143\end{classdesc}
1144
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001145\begin{classdesc}{ExFileSelectBox}{}
1146The \ulink{ExFileSelectBox}
Fred Drakec66ff202001-11-16 01:05:27 +00001147{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixExFileSelectBox.htm}
1148widget is usually embedded in a tixExFileSelectDialog widget. It
1149provides an convenient method for the user to select files. The style
1150of the \class{ExFileSelectBox} widget is very similar to the standard
1151file dialog on MS Windows 3.1.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001152\end{classdesc}
1153
Fred Drakec66ff202001-11-16 01:05:27 +00001154% Python Demo of:
1155%\ulink{ExFileSelectDialog}{http://tix.sourceforge.net/dist/current/demos/samples/EFileDlg.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001156
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001157\begin{classdesc}{FileSelectBox}{}
1158The \ulink{FileSelectBox}
Fred Drakec66ff202001-11-16 01:05:27 +00001159{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixFileSelectBox.htm}
1160is similar to the standard Motif(TM) file-selection box. It is
1161generally used for the user to choose a file. FileSelectBox stores the
1162files mostly recently selected into a \class{ComboBox} widget so that
1163they can be quickly selected again.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001164\end{classdesc}
1165
Fred Drakec66ff202001-11-16 01:05:27 +00001166% Python Demo of:
1167% \ulink{FileSelectDialog}{http://tix.sourceforge.net/dist/current/demos/samples/FileDlg.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001168
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001169\begin{classdesc}{FileEntry}{}
1170The \ulink{FileEntry}
Fred Drakec66ff202001-11-16 01:05:27 +00001171{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixFileEntry.htm}
1172widget can be used to input a filename. The user can type in the
1173filename manually. Alternatively, the user can press the button widget
1174that sits next to the entry, which will bring up a file selection
1175dialog.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001176\end{classdesc}
1177
Fred Drakec66ff202001-11-16 01:05:27 +00001178% Python Demo of:
1179% \ulink{FileEntry}{http://tix.sourceforge.net/dist/current/demos/samples/FileEnt.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001180
1181
1182\subsubsection{Hierachical ListBox}
1183
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001184\begin{classdesc}{HList}{}
1185The \ulink{HList}
Fred Drakec66ff202001-11-16 01:05:27 +00001186{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixHList.htm}
1187widget can be used to display any data that have a hierarchical
1188structure, for example, file system directory trees. The list entries
1189are indented and connected by branch lines according to their places
1190in the hierachy.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001191\end{classdesc}
1192
Fred Drakec66ff202001-11-16 01:05:27 +00001193% Python Demo of:
1194% \ulink{HList}{http://tix.sourceforge.net/dist/current/demos/samples/HList1.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001195
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001196\begin{classdesc}{CheckList}{}
1197The \ulink{CheckList}
Fred Drakec66ff202001-11-16 01:05:27 +00001198{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixCheckList.htm}
1199widget displays a list of items to be selected by the user. CheckList
1200acts similarly to the Tk checkbutton or radiobutton widgets, except it
1201is capable of handling many more items than checkbuttons or
1202radiobuttons.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001203\end{classdesc}
1204
Fred Drakec66ff202001-11-16 01:05:27 +00001205% Python Demo of:
1206% \ulink{ CheckList}{http://tix.sourceforge.net/dist/current/demos/samples/ChkList.tcl}
1207% Python Demo of:
1208% \ulink{ScrolledHList (1)}{http://tix.sourceforge.net/dist/current/demos/samples/SHList.tcl}
1209% Python Demo of:
1210% \ulink{ScrolledHList (2)}{http://tix.sourceforge.net/dist/current/demos/samples/SHList2.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001211
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001212\begin{classdesc}{Tree}{}
1213The \ulink{Tree}
Fred Drakec66ff202001-11-16 01:05:27 +00001214{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixTree.htm}
1215widget can be used to display hierachical data in a tree form. The
1216user can adjust the view of the tree by opening or closing parts of
1217the tree.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001218\end{classdesc}
1219
Fred Drakec66ff202001-11-16 01:05:27 +00001220% Python Demo of:
1221% \ulink{Tree}{http://tix.sourceforge.net/dist/current/demos/samples/Tree.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001222
Fred Drakec66ff202001-11-16 01:05:27 +00001223% Python Demo of:
1224% \ulink{Tree (Dynamic)}{http://tix.sourceforge.net/dist/current/demos/samples/DynTree.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001225
1226
1227\subsubsection{Tabular ListBox}
1228
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001229\begin{classdesc}{TList}{}
1230The \ulink{TList}
Fred Drakec66ff202001-11-16 01:05:27 +00001231{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixTList.htm}
1232widget can be used to display data in a tabular format. The list
1233entries of a \class{TList} widget are similar to the entries in the Tk
1234listbox widget. The main differences are (1) the \class{TList} widget
1235can display the list entries in a two dimensional format and (2) you
1236can use graphical images as well as multiple colors and fonts for the
1237list entries.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001238\end{classdesc}
1239
Fred Drakec66ff202001-11-16 01:05:27 +00001240% Python Demo of:
1241% \ulink{ScrolledTList (1)}{http://tix.sourceforge.net/dist/current/demos/samples/STList1.tcl}
1242% Python Demo of:
1243% \ulink{ScrolledTList (2)}{http://tix.sourceforge.net/dist/current/demos/samples/STList2.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001244
1245% Grid has yet to be added to Python
1246% \subsubsection{Grid Widget}
Fred Drakec66ff202001-11-16 01:05:27 +00001247% Python Demo of:
1248% \ulink{Simple Grid}{http://tix.sourceforge.net/dist/current/demos/samples/SGrid0.tcl}
1249% Python Demo of:
1250% \ulink{ScrolledGrid}{http://tix.sourceforge.net/dist/current/demos/samples/SGrid1.tcl}
1251% Python Demo of:
1252% \ulink{Editable Grid}{http://tix.sourceforge.net/dist/current/demos/samples/EditGrid.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001253
1254
1255\subsubsection{Manager Widgets}
1256
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001257\begin{classdesc}{PanedWindow}{}
1258The \ulink{PanedWindow}
Fred Drakec66ff202001-11-16 01:05:27 +00001259{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixPanedWindow.htm}
1260widget allows the user to interactively manipulate the sizes of
1261several panes. The panes can be arranged either vertically or
1262horizontally. The user changes the sizes of the panes by dragging the
1263resize handle between two panes.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001264\end{classdesc}
1265
Fred Drakec66ff202001-11-16 01:05:27 +00001266% Python Demo of:
1267% \ulink{PanedWindow}{http://tix.sourceforge.net/dist/current/demos/samples/PanedWin.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001268
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001269\begin{classdesc}{ListNoteBook}{}
1270The \ulink{ListNoteBook}
Fred Drakec66ff202001-11-16 01:05:27 +00001271{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixListNoteBook.htm}
1272widget is very similar to the \class{TixNoteBook} widget: it can be
1273used to display many windows in a limited space using a notebook
1274metaphor. The notebook is divided into a stack of pages (windows). At
1275one time only one of these pages can be shown. The user can navigate
1276through these pages by choosing the name of the desired page in the
1277\member{hlist} subwidget.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001278\end{classdesc}
1279
Fred Drakec66ff202001-11-16 01:05:27 +00001280% Python Demo of:
1281% \ulink{ListNoteBook}{http://tix.sourceforge.net/dist/current/demos/samples/ListNBK.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001282
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001283\begin{classdesc}{NoteBook}{}
1284The \ulink{NoteBook}
Fred Drakec66ff202001-11-16 01:05:27 +00001285{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixNoteBook.htm}
1286widget can be used to display many windows in a limited space using a
1287notebook metaphor. The notebook is divided into a stack of pages. At
1288one time only one of these pages can be shown. The user can navigate
1289through these pages by choosing the visual ``tabs'' at the top of the
1290NoteBook widget.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001291\end{classdesc}
1292
Fred Drakec66ff202001-11-16 01:05:27 +00001293% Python Demo of:
1294% \ulink{NoteBook}{http://tix.sourceforge.net/dist/current/demos/samples/NoteBook.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001295
1296
1297% \subsubsection{Scrolled Widgets}
Fred Drakec66ff202001-11-16 01:05:27 +00001298% Python Demo of:
1299% \ulink{ScrolledListBox}{http://tix.sourceforge.net/dist/current/demos/samples/SListBox.tcl}
1300% Python Demo of:
1301% \ulink{ScrolledText}{http://tix.sourceforge.net/dist/current/demos/samples/SText.tcl}
1302% Python Demo of:
1303% \ulink{ScrolledWindow}{http://tix.sourceforge.net/dist/current/demos/samples/SWindow.tcl}
1304% Python Demo of:
1305% \ulink{Canvas Object View}{http://tix.sourceforge.net/dist/current/demos/samples/CObjView.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001306
1307
1308\subsubsection{Image Types}
1309
1310The \refmodule{Tix} module adds:
1311\begin{itemize}
1312\item
1313\ulink{pixmap}
Fred Drake666ca802001-11-16 06:02:55 +00001314{http://tix.sourceforge.net/dist/current/man/html/TixCmd/pixmap.htm}
1315capabilities to all \refmodule{Tix} and \refmodule{Tkinter} widgets to
1316create color images from XPM files.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001317
Fred Drakea0b76762001-12-13 04:25:37 +00001318% Python Demo of:
1319% \ulink{XPM Image In Button}{http://tix.sourceforge.net/dist/current/demos/samples/Xpm.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001320
Fred Drakea0b76762001-12-13 04:25:37 +00001321% Python Demo of:
1322% \ulink{XPM Image In Menu}{http://tix.sourceforge.net/dist/current/demos/samples/Xpm1.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001323
1324\item
1325\ulink{Compound}
Fred Drake666ca802001-11-16 06:02:55 +00001326{http://tix.sourceforge.net/dist/current/man/html/TixCmd/compound.html}
1327image types can be used to create images that consists of multiple
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001328horizontal lines; each line is composed of a series of items (texts,
1329bitmaps, images or spaces) arranged from left to right. For example, a
1330compound image can be used to display a bitmap and a text string
1331simutaneously in a Tk \class{Button} widget.
1332
Fred Drake666ca802001-11-16 06:02:55 +00001333% Python Demo of:
1334% \ulink{Compound Image In Buttons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001335
Fred Drake666ca802001-11-16 06:02:55 +00001336% Python Demo of:
1337% \ulink{Compound Image In NoteBook}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg2.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001338
Fred Drake666ca802001-11-16 06:02:55 +00001339% Python Demo of:
1340% \ulink{Compound Image Notebook Color Tabs}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg4.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001341
Fred Drake666ca802001-11-16 06:02:55 +00001342% Python Demo of:
1343% \ulink{Compound Image Icons}{http://tix.sourceforge.net/dist/current/demos/samples/CmpImg3.tcl}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001344\end{itemize}
1345
1346
1347\subsubsection{Miscellaneous Widgets}
1348
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001349\begin{classdesc}{InputOnly}{}
1350The \ulink{InputOnly}
Fred Drake666ca802001-11-16 06:02:55 +00001351{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixInputOnly.htm}
1352widgets are to accept inputs from the user, which can be done with the
1353\code{bind} command (\UNIX{} only).
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001354\end{classdesc}
1355
1356\subsubsection{Form Geometry Manager}
1357
1358In addition, \refmodule{Tix} augments \refmodule{Tkinter} by providing:
Fred Drake666ca802001-11-16 06:02:55 +00001359
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001360\begin{classdesc}{Form}{}
1361The \ulink{Form}
Fred Drake666ca802001-11-16 06:02:55 +00001362{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixForm.htm}
1363geometry manager based on attachment rules for all Tk widgets.
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001364\end{classdesc}
1365
1366
1367%begin{latexonly}
1368%\subsection{Tix Class Structure}
1369%
1370%\begin{figure}[hbtp]
1371%\centerline{\epsfig{file=hierarchy.png,width=.9\textwidth}}
1372%\vspace{.5cm}
1373%\caption{The Class Hierarchy of Tix Widgets}
1374%\end{figure}
1375%end{latexonly}
1376
Fred Drake44b6f842001-11-29 21:09:08 +00001377\subsection{Tix Commands}
1378
1379\begin{classdesc}{tixCommand}{}
1380The \ulink{tix commands}
1381{http://tix.sourceforge.net/dist/current/man/html/TixCmd/tix.htm}
1382provide access to miscellaneous elements of \refmodule{Tix}'s internal
1383state and the \refmodule{Tix} application context. Most of the information
1384manipulated by these methods pertains to the application as a whole,
1385or to a screen or display, rather than to a particular window.
1386
1387To view the current settings, the common usage is:
1388\begin{verbatim}
1389import Tix
1390root = Tix.Tk()
1391print root.tix_configure()
1392\end{verbatim}
1393\end{classdesc}
1394
1395\begin{methoddesc}{tix_configure}{\optional{cnf,} **kw}
1396Query or modify the configuration options of the Tix application
1397context. If no option is specified, returns a dictionary all of the
1398available options. If option is specified with no value, then the
1399method returns a list describing the one named option (this list will
1400be identical to the corresponding sublist of the value returned if no
1401option is specified). If one or more option-value pairs are
1402specified, then the method modifies the given option(s) to have the
1403given value(s); in this case the method returns an empty string.
1404Option may be any of the configuration options.
1405\end{methoddesc}
1406
1407\begin{methoddesc}{tix_cget}{option}
1408Returns the current value of the configuration option given by
1409\var{option}. Option may be any of the configuration options.
1410\end{methoddesc}
1411
1412\begin{methoddesc}{tix_getbitmap}{name}
1413Locates a bitmap file of the name \code{name.xpm} or \code{name} in
1414one of the bitmap directories (see the \method{tix_addbitmapdir()}
1415method). By using \method{tix_getbitmap()}, you can avoid hard
1416coding the pathnames of the bitmap files in your application. When
1417successful, it returns the complete pathname of the bitmap file,
1418prefixed with the character \samp{@}. The returned value can be used to
1419configure the \code{bitmap} option of the Tk and Tix widgets.
1420\end{methoddesc}
1421
1422\begin{methoddesc}{tix_addbitmapdir}{directory}
1423Tix maintains a list of directories under which the
1424\method{tix_getimage()} and \method{tix_getbitmap()} methods will
1425search for image files. The standard bitmap directory is
1426\file{\$TIX_LIBRARY/bitmaps}. The \method{tix_addbitmapdir()} method
1427adds \var{directory} into this list. By using this method, the image
1428files of an applications can also be located using the
1429\method{tix_getimage()} or \method{tix_getbitmap()} method.
1430\end{methoddesc}
1431
1432\begin{methoddesc}{tix_filedialog}{\optional{dlgclass}}
1433Returns the file selection dialog that may be shared among different
1434calls from this application. This method will create a file selection
1435dialog widget when it is called the first time. This dialog will be
1436returned by all subsequent calls to \method{tix_filedialog()}. An
1437optional dlgclass parameter can be passed as a string to specified
1438what type of file selection dialog widget is desired. Possible
1439options are \code{tix}, \code{FileSelectDialog} or
1440\code{tixExFileSelectDialog}.
1441\end{methoddesc}
1442
1443
1444\begin{methoddesc}{tix_getimage}{self, name}
1445Locates an image file of the name \file{name.xpm}, \file{name.xbm} or
1446\file{name.ppm} in one of the bitmap directories (see the
1447\method{tix_addbitmapdir()} method above). If more than one file with
1448the same name (but different extensions) exist, then the image type is
1449chosen according to the depth of the X display: xbm images are chosen
1450on monochrome displays and color images are chosen on color
1451displays. By using \method{tix_getimage()}, you can avoid hard coding
1452the pathnames of the image files in your application. When successful,
1453this method returns the name of the newly created image, which can be
1454used to configure the \code{image} option of the Tk and Tix widgets.
1455\end{methoddesc}
1456
1457\begin{methoddesc}{tix_option_get}{name}
1458Gets the options manitained by the Tix scheme mechanism.
1459\end{methoddesc}
1460
1461\begin{methoddesc}{tix_resetoptions}{newScheme, newFontSet\optional{,
1462 newScmPrio}}
1463Resets the scheme and fontset of the Tix application to
1464\var{newScheme} and \var{newFontSet}, respectively. This affects only
1465those widgets created after this call. Therefore, it is best to call
1466the resetoptions method before the creation of any widgets in a Tix
1467application.
1468
1469The optional parameter \var{newScmPrio} can be given to reset the
1470priority level of the Tk options set by the Tix schemes.
1471
1472Because of the way Tk handles the X option database, after Tix has
1473been has imported and inited, it is not possible to reset the color
1474schemes and font sets using the \method{tix_config()} method.
1475Instead, the \method{tix_resetoptions()} method must be used.
1476\end{methoddesc}
1477
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001478
Fred Drake1a763862001-12-03 21:18:30 +00001479
1480\section{\module{ScrolledText} ---
1481 Scrolled Text Widget}
1482
1483\declaremodule{standard}{ScrolledText}
1484 \platform{Tk}
1485\modulesynopsis{Text widget with a vertical scroll bar.}
1486\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
1487
1488The \module{ScrolledText} module provides a class of the same name
1489which implements a basic text widget which has a vertical scroll bar
1490configured to do the ``right thing.'' Using the \class{ScrolledText}
1491class is a lot easier than setting up a text widget and scroll bar
1492directly. The constructor is the same as that of the
1493\class{Tkinter.Text} class.
1494
1495The text widget and scrollbar are packed together in a \class{Frame},
Fred Drakea0b76762001-12-13 04:25:37 +00001496and the methods of the \class{Grid} and \class{Pack} geometry managers
1497are acquired from the \class{Frame} object. This allows the
1498\class{ScrolledText} widget to be used directly to achieve most normal
1499geometry management behavior.
Fred Drake1a763862001-12-03 21:18:30 +00001500
1501Should more specific control be necessary, the following attributes
1502are available:
1503
1504\begin{memberdesc}[ScrolledText]{frame}
1505 The frame which surrounds the text and scroll bar widgets.
1506\end{memberdesc}
1507
1508\begin{memberdesc}[ScrolledText]{vbar}
1509 The scroll bar widget.
1510\end{memberdesc}
1511
1512
Fred Drakec66ff202001-11-16 01:05:27 +00001513\input{libturtle}
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001514
1515
1516\section{Idle \label{idle}}
1517
1518%\declaremodule{standard}{idle}
1519%\modulesynopsis{A Python Integrated Developement Environment}
1520\moduleauthor{Guido van Rossum}{guido@Python.org}
1521
1522Idle is the Python IDE built with the \refmodule{Tkinter} GUI toolkit.
1523\index{Idle}
1524\index{Python Editor}
1525\index{Integrated Developement Environment}
1526
1527
1528IDLE has the following features:
1529
1530\begin{itemize}
1531\item coded in 100\% pure Python, using the \refmodule{Tkinter} GUI toolkit
1532
1533\item cross-platform: works on Windows and \UNIX{} (on Mac OS, there are
1534currently problems with Tcl/Tk)
1535
1536\item multi-window text editor with multiple undo, Python colorizing
1537and many other features, e.g. smart indent and call tips
1538
1539\item Python shell window (a.k.a. interactive interpreter)
1540
1541\item debugger (not complete, but you can set breakpoints, view and step)
1542\end{itemize}
1543
1544
1545\subsection{Menus}
1546
1547\subsubsection{File menu}
1548
1549\begin{description}
1550\item[New window] create a new editing window
1551\item[Open...] open an existing file
1552\item[Open module...] open an existing module (searches sys.path)
1553\item[Class browser] show classes and methods in current file
1554\item[Path browser] show sys.path directories, modules, classes and methods
1555\end{description}
1556\index{Class browser}
1557\index{Path browser}
1558
1559\begin{description}
1560\item[Save] save current window to the associated file (unsaved
1561windows have a * before and after the window title)
1562
1563\item[Save As...] save current window to new file, which becomes
1564the associated file
1565\item[Save Copy As...] save current window to different file
1566without changing the associated file
1567\end{description}
1568
1569\begin{description}
1570\item[Close] close current window (asks to save if unsaved)
1571\item[Exit] close all windows and quit IDLE (asks to save if unsaved)
1572\end{description}
1573
1574
1575\subsubsection{Edit menu}
1576
1577\begin{description}
1578\item[Undo] Undo last change to current window (max 1000 changes)
1579\item[Redo] Redo last undone change to current window
1580\end{description}
1581
1582\begin{description}
1583\item[Cut] Copy selection into system-wide clipboard; then delete selection
1584\item[Copy] Copy selection into system-wide clipboard
1585\item[Paste] Insert system-wide clipboard into window
1586\item[Select All] Select the entire contents of the edit buffer
1587\end{description}
1588
1589\begin{description}
1590\item[Find...] Open a search dialog box with many options
1591\item[Find again] Repeat last search
1592\item[Find selection] Search for the string in the selection
1593\item[Find in Files...] Open a search dialog box for searching files
1594\item[Replace...] Open a search-and-replace dialog box
1595\item[Go to line] Ask for a line number and show that line
1596\end{description}
1597
1598\begin{description}
1599\item[Indent region] Shift selected lines right 4 spaces
1600\item[Dedent region] Shift selected lines left 4 spaces
1601\item[Comment out region] Insert \#\# in front of selected lines
1602\item[Uncomment region] Remove leading \# or \#\# from selected lines
1603\item[Tabify region] Turns \emph{leading} stretches of spaces into tabs
1604\item[Untabify region] Turn \emph{all} tabs into the right number of spaces
1605\item[Expand word] Expand the word you have typed to match another
1606 word in the same buffer; repeat to get a different expansion
1607\item[Format Paragraph] Reformat the current blank-line-separated paragraph
1608\end{description}
1609
1610\begin{description}
1611\item[Import module] Import or reload the current module
1612\item[Run script] Execute the current file in the __main__ namespace
1613\end{description}
1614
1615\index{Import module}
1616\index{Run script}
1617
1618
1619\subsubsection{Windows menu}
1620
1621\begin{description}
1622\item[Zoom Height] toggles the window between normal size (24x80)
1623 and maximum height.
1624\end{description}
1625
1626The rest of this menu lists the names of all open windows; select one
1627to bring it to the foreground (deiconifying it if necessary).
1628
1629
1630\subsubsection{Debug menu (in the Python Shell window only)}
1631
1632\begin{description}
1633\item[Go to file/line] look around the insert point for a filename
1634 and linenumber, open the file, and show the line.
1635\item[Open stack viewer] show the stack traceback of the last exception
1636\item[Debugger toggle] Run commands in the shell under the debugger
1637\item[JIT Stack viewer toggle] Open stack viewer on traceback
1638\end{description}
1639
1640\index{stack viewer}
1641\index{debugger}
1642
1643
1644\subsection{Basic editing and navigation}
1645
1646\begin{itemize}
1647\item \kbd{Backspace} deletes to the left; \kbd{Del} deletes to the right
1648\item Arrow keys and \kbd{Page Up}/\kbd{Page Down} to move around
1649\item \kbd{Home}/\kbd{End} go to begin/end of line
1650\item \kbd{C-Home}/\kbd{C-End} go to begin/end of file
1651\item Some \program{Emacs} bindings may also work, including \kbd{C-B},
1652 \kbd{C-P}, \kbd{C-A}, \kbd{C-E}, \kbd{C-D}, \kbd{C-L}
1653\end{itemize}
1654
1655
1656\subsubsection{Automatic indentation}
1657
1658After a block-opening statement, the next line is indented by 4 spaces
1659(in the Python Shell window by one tab). After certain keywords
1660(break, return etc.) the next line is dedented. In leading
1661indentation, \kbd{Backspace} deletes up to 4 spaces if they are there.
1662\kbd{Tab} inserts 1-4 spaces (in the Python Shell window one tab).
1663See also the indent/dedent region commands in the edit menu.
1664
1665
1666\subsubsection{Python Shell window}
1667
1668\begin{itemize}
1669\item \kbd{C-C} interrupts executing command
1670\item \kbd{C-D} sends end-of-file; closes window if typed at
1671a \samp{>>>~} prompt
1672\end{itemize}
1673
1674\begin{itemize}
Fred Drake666ca802001-11-16 06:02:55 +00001675\item \kbd{Alt-p} retrieves previous command matching what you have typed
1676\item \kbd{Alt-n} retrieves next
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001677\item \kbd{Return} while on any previous command retrieves that command
Fred Drake666ca802001-11-16 06:02:55 +00001678\item \kbd{Alt-/} (Expand word) is also useful here
Fred Drake7cf4e5b2001-11-15 17:22:04 +00001679\end{itemize}
1680
1681\index{indentation}
1682
1683
1684\subsection{Syntax colors}
1685
1686The coloring is applied in a background ``thread,'' so you may
1687occasionally see uncolorized text. To change the color
1688scheme, edit the \code{[Colors]} section in \file{config.txt}.
1689
1690\begin{description}
1691\item[Python syntax colors:]
1692
1693\begin{description}
1694\item[Keywords] orange
1695\item[Strings ] green
1696\item[Comments] red
1697\item[Definitions] blue
1698\end{description}
1699
1700\item[Shell colors:]
1701\begin{description}
1702\item[Console output] brown
1703\item[stdout] blue
1704\item[stderr] dark green
1705\item[stdin] black
1706\end{description}
1707\end{description}
1708
1709
1710\subsubsection{Command line usage}
1711
1712\begin{verbatim}
1713idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ...
1714
1715-c command run this command
1716-d enable debugger
1717-e edit mode; arguments are files to be edited
1718-s run $IDLESTARTUP or $PYTHONSTARTUP first
1719-t title set title of shell window
1720\end{verbatim}
1721
1722If there are arguments:
1723
1724\begin{enumerate}
1725\item If \programopt{-e} is used, arguments are files opened for
1726 editing and \code{sys.argv} reflects the arguments passed to
1727 IDLE itself.
1728
1729\item Otherwise, if \programopt{-c} is used, all arguments are
1730 placed in \code{sys.argv[1:...]}, with \code{sys.argv[0]} set
1731 to \code{'-c'}.
1732
1733\item Otherwise, if neither \programopt{-e} nor \programopt{-c} is
1734 used, the first argument is a script which is executed with
1735 the remaining arguments in \code{sys.argv[1:...]} and
1736 \code{sys.argv[0]} set to the script name. If the script name
1737 is '-', no script is executed but an interactive Python
1738 session is started; the arguments are still available in
1739 \code{sys.argv}.
1740\end{enumerate}
Fred Drakec66ff202001-11-16 01:05:27 +00001741
1742
1743\section{Other Graphical User Interface Packages
1744 \label{other-gui-packages}}
1745
1746
1747There are an number of extension widget sets to \refmodule{Tkinter}.
1748
Fred Drake10cd3152001-11-30 18:17:24 +00001749\begin{seealso*}
Fred Drakec66ff202001-11-16 01:05:27 +00001750\seetitle[http://pmw.sourceforge.net/]{Python megawidgets}{is a
1751toolkit for building high-level compound widgets in Python using the
1752\refmodule{Tkinter} module. It consists of a set of base classes and
1753a library of flexible and extensible megawidgets built on this
1754foundation. These megawidgets include notebooks, comboboxes, selection
1755widgets, paned widgets, scrolled widgets, dialog windows, etc. Also,
1756with the Pmw.Blt interface to BLT, the busy, graph, stripchart, tabset
1757and vector commands are be available.
1758
1759The initial ideas for Pmw were taken from the Tk \code{itcl}
1760extensions \code{[incr Tk]} by Michael McLennan and \code{[incr
1761Widgets]} by Mark Ulferts. Several of the megawidgets are direct
1762translations from the itcl to Python. It offers most of the range of
1763widgets that \code{[incr Widgets]} does, and is almost as complete as
1764Tix, lacking however Tix's fast \class{HList} widget for drawing trees.
1765}
1766\seetitle[http://tkinter.effbot.org]{Tkinter3000}{
1767is a Widget Construction Kit that allows you to write new Tkinter
1768widgets in Python using Mixins. It is built on top of Tkinter,
1769and does not offer the extended range of widgets that \refmodule{Tix} does,
1770but does allow a form of building mega-widgets. The project is
1771still in the early stages.
1772}
Fred Drake10cd3152001-11-30 18:17:24 +00001773\end{seealso*}
Fred Drakec66ff202001-11-16 01:05:27 +00001774
1775
Fred Drake666ca802001-11-16 06:02:55 +00001776Tk is not the only GUI for Python, but is however the
Fred Drakec66ff202001-11-16 01:05:27 +00001777most commonly used one.
1778
Fred Drake10cd3152001-11-30 18:17:24 +00001779\begin{seealso*}
Fred Drakec66ff202001-11-16 01:05:27 +00001780\seetitle[http://www.wxwindows.org]{wxWindows}{
1781is a GUI toolkit that combines the most attractive attributes of Qt,
1782Tk, Motif, and GTK+ in one powerful and efficient package. It is
Fred Drakec37b65e2001-11-28 07:26:15 +00001783implemented in \Cpp. wxWindows supports two flavors of \UNIX{}
Fred Drakec66ff202001-11-16 01:05:27 +00001784implementation: GTK+ and Motif, and under Windows, it has a standard
1785Microsoft Foundation Classes (MFC) appearance, because it uses Win32
1786widgets. There is a Python class wrapper, independent of Tkinter.
1787
1788wxWindows is much richer in widgets than \refmodule{Tkinter}, with its
1789help system, sophisticated HTML and image viewers, and other
1790specialized widgets, extensive documentation, and printing capabilities.
1791}
1792\seetitle[http://www.thekompany.com]{PyKDE}{
1793PyKDE is a SIP wrapped interface to the Qt toolkit.
1794The Qt \Cpp{} toolkit lies at the heart of the KDE desktop, and the
1795Qt toolkit allows very tight integration with KDE, and also Windows
1796portability. SIP is a tool for generating bindings for \Cpp{} libraries
1797as Python classes, and is specifically designed for Python.
1798}
1799\seetitle[http://fxpy.sourceforge.net/]{FXPy}{
1800is a Python extension module which provides an interface to the
1801\citetitle[http://www.cfdrc.com/FOX/fox.html]{FOX} GUI.
1802FOX is a \Cpp{} based Toolkit for developing Graphical User Interfaces
1803easily and effectively. It offers a wide, and growing, collection of
1804Controls, and provides state of the art facilities such as drag and
1805drop, selection, as well as OpenGL widgets for 3D graphical
1806manipulation. FOX also implements icons, images, and user-convenience
1807features such as status line help, and tooltips.
1808
1809Even though FOX offers a large collection of controls already, FOX
1810leverages \Cpp{} to allow programmers to easily build additional Controls
1811and GUI elements, simply by taking existing controls, and creating a
1812derived class which simply adds or redefines the desired behavior.
1813}
1814\seetitle[http://www.daa.com.au/\~james/pygtk/]{PyGTK}{
1815is a set of bindings for the \ulink{GTK}{http://www.gtk.org/} widget set.
1816It provides an object oriented interface that is slightly higher
1817level than the C one. It automatically does all the type casting and
1818reference counting that you would have to do normally with the C
1819API. There are also \ulink{bindings}{http://www.daa.com.au/\~james/gnome/}
1820to \ulink{GNOME}{http://www.gnome.org}, and a
1821\ulink{tutorial}
1822{http://laguna.fmedic.unam.mx/\~daniel/pygtutorial/pygtutorial/index.html}
1823is available.
1824}
Fred Drake10cd3152001-11-30 18:17:24 +00001825\end{seealso*}
Fred Drakec66ff202001-11-16 01:05:27 +00001826
1827% XXX Reference URLs that compare the different UI packages