"""
    Demo_Close_Attempted_Event

    Catches if a window close was tried by user (click "X") and confirms with a popup.
    Requires PySimpleGUI 4.33.0 and later

    Copyright 2021 PySimpleGUI Inc.
"""

import PySimpleGUI as sg

layout = [[sg.Text('Close confirmation demo')],
          [sg.Text('Try closing window with the "X"')],
          [sg.Button('Go'), sg.Button('Exit')]]

window = sg.Window('Window Title', layout, enable_close_attempted_event=True)

while True:
    event, values = window.read()
    print(event, values)
    if (event == sg.WINDOW_CLOSE_ATTEMPTED_EVENT or event == 'Exit') and sg.popup_yes_no('Do you really want to exit?') == 'Yes':
        break

window.close()