How to control Progress bar size PySimpleGUI

Question:

I want to create a progress bar using PySimpleGUI but I want the user to put the maximum of the progress bar.
this is my code:

import PySimpleGUI as sg
import random, time

sg.theme("LightBlue")
progress_value=input()
layout = [[sg.Text("Enter a number out of 50", font='Lucida'),
           sg.InputText(key='-PROGRESS_VALUE-', font='Lucida, 20', size=(20, 40))],
          [sg.ProgressBar(progress_value, orientation='h', size=(100, 20), border_width=4, key='-PROGRESS_BAR-',
                          bar_color=("Blue", "Yellow"))],
          [sg.Button('Change Progress'), sg.Exit(),sg.Button('Stop Progress')]]

window = sg.Window("Progress Bar", layout)

while True:
    event, values = window.read()
    if event == 'Exit' or event == sg.WIN_CLOSED:
        break
    progress_value = int(values['-PROGRESS_VALUE-'])
    if event == "Change Progress":
        for i in range(progress_value):
            event, values = window.read(1000)
            if event == "Stop Progress":
                window['-PROGRESS_BAR-'].update(i-1)
                break
            window['-PROGRESS_BAR-'].update(max=progress_value)
            window['-PROGRESS_BAR-'].update(i+1)


window.close()

as you can see the maximum which is "progress_value" is given by an input (progress_value=input())
but i want it to come from the input text of the user (sg.InputText(key='-PROGRESS_VALUE-', font='Lucida, 20', size=(20, 40))) and that value will be set to progress_value

Asked By: Slim skhab

||

Answers:

Here’s one way of doing what you’re after using a single event loop

When changing the max value of a ProgressBar, you must set a current value too (in the same update call).

import PySimpleGUI as sg

sg.theme("LightBlue")
progress_value = 50
layout = [[sg.Text("Enter a number out of 50", font='Lucida'),
           sg.InputText(key='-PROGRESS_VALUE-', font='Lucida, 20', size=(20, 40))],
          [sg.ProgressBar(progress_value, orientation='h', size=(100, 20), border_width=4, key='-PROGRESS_BAR-',
                          bar_color=("Blue", "Yellow"))],
          [sg.Button('Change Progress'), sg.Button('Start Progress'), sg.Button('Stop Progress')]]

window = sg.Window("Progress Bar", layout)
progress_started, counter, timeout = False, 0, None
while True:
    event, values = window.read(timeout=timeout)
    if event == 'Exit' or event == sg.WIN_CLOSED:
        break
    if event == "Change Progress":
        progress_value = int(values['-PROGRESS_VALUE-'])
        # NOTE - must set a current count when changing the max value
        window['-PROGRESS_BAR-'].update(current_count= 0, max=progress_value)
    elif event == 'Start Progress':
        progress_started = True
        counter = 0
        timeout = 1000
    elif event == 'Stop Progress':
        progress_started = False
        timeout = None
    if progress_started:
        window['-PROGRESS_BAR-'].update(counter)
        counter += 1
        if counter > progress_value:
            progress_started = False

window.close()
Answered By: Mike from PSG