Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Python GUI Programming Cookbook. - Third Edition

You're reading from  Python GUI Programming Cookbook. - Third Edition

Product type Book
Published in Oct 2019
Publisher
ISBN-13 9781838827540
Pages 486 pages
Edition 3rd Edition
Languages
Author (1):
Burkhard Meier Burkhard Meier
Profile icon Burkhard Meier

Table of Contents (13) Chapters

Preface Creating the GUI Form and Adding Widgets Layout Management Look and Feel Customization Data and Classes Matplotlib Charts Threads and Networking Storing Data in Our MySQL Database via Our GUI Internationalization and Testing Extending Our GUI with the wxPython Library Building GUIs with PyQt5 Best Practices Other Books You May Enjoy

Mixing fall-down and OOP coding

Python is an OOP language, yet it does not always make sense to use OOP. For simple scripting tasks, the legacy waterfall coding style is still appropriate.

In this recipe, we will create a new GUI that mixes both the fall-down coding style with the more modern OOP coding style.

We will create an OOP-style class that will display a tooltip when we hover the mouse over a widget in a Python GUI, which we will create using the waterfall style.

Fall-down and waterfall coding styles are the same. It means that we have to physically place code above code before we can call it from the code below. In this paradigm, the code literally falls down from the top of our program to the bottom of our program when we execute the code.

Getting ready

...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}