Book Image

Tkinter GUI Application Development Cookbook

By : Alejandro Rodas de Paz
Book Image

Tkinter GUI Application Development Cookbook

By: Alejandro Rodas de Paz

Overview of this book

As one of the more versatile programming languages, Python is well-known for its batteries-included philosophy, which includes a rich set of modules in its standard library; Tkinter is the library included for building desktop applications. Due to this, Tkinter is a common choice for rapid GUI development, and more complex applications can benefit from the full capabilities of this library. This book covers all of your Tkinter and Python GUI development problems and solutions. Tkinter GUI Application Development Cookbook starts with an overview of Tkinter classes and at the same time provides recipes for basic topics, such as layout patterns and event handling. Next, we cover how to develop common GUI patterns, such as entering and saving data, navigating through menus and dialogs, and performing long-running actions in the background.You can then make your apps leverage network resources effectively and perform graphical operations on a canvas and related tasks such as detecting collisions between items. Finally, this book covers using themed widgets, an extension of Tk widgets that have a more native look and feel. Finally, this book covers using the canvas and themed widgets. By the end of the book, you will have an in-depth knowledge of Tkinter classes, and will know how to use them to build efficient and rich GUI applications.
Table of Contents (10 chapters)

Introduction

Tk-themed widgets are a separate collection of Tk widgets, which have a native look and feel, and their style can be highly customized using a specific API.

These classes are defined in the tkinter.ttk module. Apart from defining new widgets such as Treeview and Notebook, this module redefines the implementation of classic Tk widgets such as Button, Label, and Frame.

In this chapter, we will cover not only how to change our application Tk widgets for themed widgets, but also how to style them and use the new widget classes.

The themed Tk widget set was introduced in Tk 8.5, which should not be a problem since Python 3.6 installers let you include version 8.6 of the Tcl/Tk interpreter.

However, you can verify it on any platform by running python -m tkinter from the command line, which starts the following program that outputs the Tcl/Tk version:

...