How to use design patterns successfully

In this recipe, we will create widgets for our Python GUI by using the factory design pattern.

In previous recipes, we created our widgets either manually one at a time or dynamically in a loop.

Using the factory design pattern, we will use the factory to create our widgets.

Getting ready

We will create a Python GUI which has three buttons each having different styles.

How to do it...

Towards the top of our Python GUI module, just below the import statements, we create several classes:

import tkinter as tk from tkinter import ttk from tkinter import scrolledtext from tkinter import Menu class ButtonFactory(): def createButton(self, type_): return buttonTypes[type_]() class ButtonBase(): relief ='flat' foreground ...

Get Python GUI Programming Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.