DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Process Mining Key Elements
  • Functional Programming Principles Powering Python’s itertools Module
  • Code Search Using Retrieval Augmented Generation
  • Enumerate and Zip in Python

Trending

  • Building Enterprise-Grade Real-Time IoT Dashboards with Vue 3, MQTT, and Kafka
  • The Network Attach Problem Nobody Warns You About
  • Integrating AI-Driven Decision-Making in Agile Frameworks: A Deep Dive into Real-World Applications and Challenges
  • Architecting an Embedded Efficiency Layer: A Platform Deep Dive into Day-Two Operational Tuning
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. PySimpleGUI: Working With Multiple Windows

PySimpleGUI: Working With Multiple Windows

Let's give users some choices.

By 
Mike Driscoll user avatar
Mike Driscoll
·
Jan. 31, 21 · Tutorial
Likes (3)
Comment
Save
Tweet
Share
15.1K Views

Join the DZone community and get the full member experience.

Join For Free

When you are creating graphical user interfaces (GUIs), you will often find that you need to create more than one window. In this tutorial, you will learn how to create two windows with PySimpleGUI.

PySimpleGUI is one of the easiest Python GUIs to get started with. It wraps other Python GUIs and gives them a common interface. You can read more about it in my Intro to PySimpleGUI or in my article for Real Python, PySimpleGUI: The Simple Way to Create a GUI With Python.

Getting Started

You will want to install PySimpleGUI to get started using it. You can use pip for that:

Shell
 




xxxxxxxxxx
1


 
1
python -m pip install pysimplegui



Making a Window Modal

PySimpleGUI provides a Window Element that you use to display other Elements in, such as buttons, text, images, and more. These Windows can be made Modal. A Modal Window won’t let you interact with any other Windows in your program until you exit it. This is useful when you want to force the user to read something or ask the user a question. For example, a modal dialog might be used to ask the user if they really want to Exit your program or to display an end-user agreement (EULA) dialog.

You can create two Windows and show them both at the same time in PySimpleGUI like this:

Python
 




xxxxxxxxxx
1
29


 
1
import PySimpleGUI as sg
2

          
3
def open_window():
4
    layout = [[sg.Text("New Window", key="new")]]
5
    window = sg.Window("Second Window", layout, modal=True)
6
    choice = None
7
    while True:
8
        event, values = window.read()
9
        if event == "Exit" or event == sg.WIN_CLOSED:
10
            break
11
        
12
    window.close()
13

          
14

          
15
def main():
16
    layout = [[sg.Button("Open Window", key="open")]]
17
    window = sg.Window("Main Window", layout)
18
    while True:
19
        event, values = window.read()
20
        if event == "Exit" or event == sg.WIN_CLOSED:
21
            break
22
        if event == "open":
23
            open_window()
24
        
25
    window.close()
26

          
27

          
28
if __name__ == "__main__":
29
    main()



When you run this code, you will see a small Main Window that looks like this:

If you click on the “Open Window” button, you will get a new Window that looks like this:

This second window has a parameter named modal in it that is set to True. That means you cannot interact with the first Window until you close the second one.

Now let’s look at a way that you can shorten your code if you are creating a simple Window like the one above.

Creating a New Window In-Line

You don’t have to write a completely separate function for your secondary Window. If you’re not going to have a lot of widgets in the second Window, then you can create the Window as a one or two-liner.

Here is one way to do that:

Python
 




xxxxxxxxxx
1
22


 
1
import PySimpleGUI as sg
2

          
3

          
4
def main():
5
    layout = [[sg.Button("Open Window", key="open")]]
6
    window = sg.Window("Main Window", layout)
7
    while True:
8
        event, values = window.read()
9
        if event == "Exit" or event == sg.WIN_CLOSED:
10
            break
11
        if event == "open":
12
            if sg.Window("Other Window", [[sg.Text("Try Again?")], 
13
                                          [sg.Yes(), sg.No()]]).read(close=True)[0] == "Yes":
14
                print("User chose yes!")
15
            else:
16
                print("User chose no!")
17
        
18
    window.close()
19

          
20

          
21
if __name__ == "__main__":
22
    main()



In this example, when you click the “Open Window” button, it creates the secondary Window in a conditional statement. This Window calls read() directly and closes when the user chooses “Yes”, “No” or exits the Window. Depending on what the user chooses, the conditional will print out something different.

The Traditional Multiple Window Design Pattern

PySimpleGUI has a recommended method for working with multiple windows. It is mentioned in their Cookbook and in their demos on Github. Here is an example from Demo_Design_Pattern_Multiple_Windows.py:

Python
 




x
46


 
1
import PySimpleGUI as sg
2
"""
3
    Demo - 2 simultaneous windows using read_all_window
4

          
5
    Window 1 launches window 2
6
    BOTH remain active in parallel
7

          
8
    Both windows have buttons to launch popups.  The popups are "modal" and thus no other windows will be active
9

          
10
    Copyright 2020 PySimpleGUI.org
11
"""
12

          
13
def make_win1():
14
    layout = [[sg.Text('This is the FIRST WINDOW'), sg.Text('      ', k='-OUTPUT-')],
15
              [sg.Text('Click Popup anytime to see a modal popup')],
16
              [sg.Button('Launch 2nd Window'), sg.Button('Popup'), sg.Button('Exit')]]
17
    return sg.Window('Window Title', layout, location=(800,600), finalize=True)
18

          
19

          
20
def make_win2():
21
    layout = [[sg.Text('The second window')],
22
              [sg.Input(key='-IN-', enable_events=True)],
23
              [sg.Text(size=(25,1), k='-OUTPUT-')],
24
              [sg.Button('Erase'), sg.Button('Popup'), sg.Button('Exit')]]
25
    return sg.Window('Second Window', layout, finalize=True)
26

          
27
window1, window2 = make_win1(), None        # start off with 1 window open
28

          
29
while True:             # Event Loop
30
    window, event, values = sg.read_all_windows()
31
    if event == sg.WIN_CLOSED or event == 'Exit':
32
        window.close()
33
        if window == window2:       # if closing win 2, mark as closed
34
            window2 = None
35
        elif window == window1:     # if closing win 1, exit program
36
            break
37
    elif event == 'Popup':
38
        sg.popup('This is a BLOCKING popup','all windows remain inactive while popup active')
39
    elif event == 'Launch 2nd Window' and not window2:
40
        window2 = make_win2()
41
    elif event == '-IN-':
42
        window['-OUTPUT-'].update(f'You enetered {values["-IN-"]}')
43
    elif event == 'Erase':
44
        window['-OUTPUT-'].update('')
45
        window['-IN-'].update('')
46
window.close()



When you run this code, you can open up several different windows that look like this:

You will want to try out using both of these methods to see which works the best for you. The nice thing about this method is that you have only one event loop, which simplifies things.

Wrapping Up

PySimpleGUI lets you create simple as well as complex user interfaces. While it’s not covered here, you can also use sg.popup() to show a simpler dialog to the user. These dialogs are can be modal too but are not fully customizable like a regular Window is.

Give PySimpleGUI a try and see what you think.

Python (language) Dialog (software) End user Interface (computing) Element GitHub IT

Published at DZone with permission of Mike Driscoll. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Process Mining Key Elements
  • Functional Programming Principles Powering Python’s itertools Module
  • Code Search Using Retrieval Augmented Generation
  • Enumerate and Zip in Python

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook