I am using PySimpleGui to create an interface with a few input boxes, buttons, text, and some images that get displayed. I am trying to bind number keys to other actions for button presses. However, the default focus is in the input box so anytime the number keys I set bindings to are pressed the numbers will be input in the input box. I would like to remove the focus from the input box and not enter the keyboard input unless I have specifically selected the input box. This is the behavior of nearly every other application I can think of. For example, if I click outside of this text entry box I'm currently typing in, the cursor will no longer be present and nothing I type will get entered).
I have tried setting the focus to another text box which is not visible every time the mouse button is clicked, but that then immediately moves focus away from the input box if I do want to type in it.
Is there a way to do this?
window.bind('<Button-1>', "-OUTFOCUS-")
if event =="-OUTFOCUS-":
window['-FOCUSOUT-'].set_focus()
I have tried numerous iterations of finding where the focus is and setting it elsewhere, but nothing has worked.
Edit: I also found another solution which involves knowing the mouse position and comparing it to the element positions, but it's for tkinter. Is there an equivalent method for getting element positions in PySimpleGUI? I found a way to get the mouse position.
def click_event(event):
x,y = root.winfo_pointerxy() # get the mouse position on screen
widget = root.winfo_containing(x,y) # identify the widget at this location
if (widget == ".text_widget") == False: # if the mouse is not over the text widget
root.focus() # focus on root
text_widget = tk.Text(root, name="text_widget")
text_widget.pack()
root.bind("<Button-1>", click_event)
You can call
window.Tkroot.focus_set()
to remove focus from other elements.