From 2f976c11362b7b011b6067b76516ca9f75242172 Mon Sep 17 00:00:00 2001 From: Mark Roseman Date: Thu, 19 Aug 2021 07:44:25 -0700 Subject: [PATCH] rework external references --- Doc/library/tkinter.rst | 48 ++++++++++++++++------------------------- 1 file changed, 19 insertions(+), 29 deletions(-) diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 39766486f64f91b..45bcab644798bb9 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -32,44 +32,34 @@ details that are unchanged. .. seealso:: - Tkinter documentation: + * `TkDocs `_ + Extensive tutorial on creating user interfaces with Tkinter. Explains key concepts, + and illustrates recommended approaches using the modern API. - `Python Tkinter Resources `_ - The Python Tkinter Topic Guide provides a great deal of information on using Tk - from Python and links to other sources of information on Tk. + * `Tkinter 8.5 reference: a GUI for Python `_ + Reference documentation for Tkinter 8.5 detailing available classes, methods, and options. - `TKDocs `_ - Extensive tutorial plus friendlier widget pages for some of the widgets. + Tcl/Tk Resources: - `Tkinter 8.5 reference: a GUI for Python `_ - On-line reference material. + * `Tk commands `_ + Comprehensive reference to each of the underlying Tcl/Tk commands used by Tkinter. - `Programming Python `_ - Book by Mark Lutz, has excellent coverage of Tkinter. + * `Tcl/Tk Home Page `_ + Additional documentation, and links to Tcl/Tk core development. - `Modern Tkinter for Busy Python Developers `_ - Book by Mark Roseman about building attractive and modern graphical user interfaces with Python and Tkinter. + Books: - `Python and Tkinter Programming `_ - Book by John Grayson (ISBN 1-884777-81-3). + * `Modern Tkinter for Busy Python Developers `_ + By Mark Roseman. (ISBN 978-1999149567) - Tcl/Tk documentation: + * `Python and Tkinter Programming `_ + By Alan Moore. (ISBN 978-1788835886) - `Tk commands `_ - Most commands are available as :mod:`tkinter` or :mod:`tkinter.ttk` classes. - Change '8.6' to match the version of your Tcl/Tk installation. + * `Programming Python `_ + By Mark Lutz; has excellent coverage of Tkinter. (ISBN 978-0596158101) - `Tcl/Tk recent man pages `_ - Recent Tcl/Tk manuals on www.tcl.tk. - - `ActiveState Tcl Home Page `_ - The Tk/Tcl development is largely taking place at ActiveState. - - `Tcl and the Tk Toolkit `_ - Book by John Ousterhout, the inventor of Tcl. - - `Practical Programming in Tcl and Tk `_ - Brent Welch's encyclopedic book. + * `Tcl and the Tk Toolkit (2nd edition) `_ + By John Ousterhout, inventor of Tcl/Tk, and Ken Jones; does not cover Tkinter. (ISBN 978-0321336330) Architecture