Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Tkinter GUI Application Development Blueprints
  • Table Of Contents Toc
  • Feedback & Rating feedback
Tkinter GUI Application Development Blueprints

Tkinter GUI Application Development Blueprints

By : Chaudhary
4 (28)
close
close
Tkinter GUI Application Development Blueprints

Tkinter GUI Application Development Blueprints

4 (28)
By: Chaudhary

Overview of this book

Tkinter is the built-in GUI package that comes with standard Python distributions. It is a cross-platform package, which means you build once and deploy everywhere. It is simple to use and intuitive in nature, making it suitable for programmers and non-programmers alike. This book will help you master the art of GUI programming. It delivers the bigger picture of GUI programming by building real-world, productive, and fun applications such as a text editor, drum machine, game of chess, media player, drawing application, chat application, screen saver, port scanner, and many more. In every project, you will build on the skills acquired in the previous project and gain more expertise. You will learn to write multithreaded programs, network programs, database driven programs and more. You will also get to know the modern best practices involved in writing GUI apps. With its rich source of sample code, you can build upon the knowledge gained with this book and use it in your own projects in the discipline of your choice.
Table of Contents (10 chapters)
close
close
9
Index

Managing continuous updates


Next, we will update the position of the seek bar knob and the elapsed play duration, as shown in the following screenshot:

This is nothing but a simple form of Tkinter-based animation.

The most common pattern of animating with Tkinter involves drawing a single frame and then calling the same method using the after method of Tkinter, as follows:

    def animate(self):
       self.draw_frame()
       self.after(500, self.animate)

Note

Once called, this function will keep updating frames once every 500 milliseconds. You can also add some conditions to break out of the animation loop.

Now that we know how to manage animations in Tkinter, let's use the pattern to define a method that takes care of these periodic updates.

Define a method named manage_periodic_updates_during_play, which calls itself every one second to update the timer and the seek bar, as follows (see code 5.07view.py):

def manage_periodic_updates_during_play(self):
        self.update_clock()
      ...
Visually different images
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Tkinter GUI Application Development Blueprints
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon