PySimpleGUI / PySimpleGUI/PySimpleGUI

[Bug] Grabbing a window by the Title bar and moving it around focuses without the <FocusIn> event

Aberta
#6,282 2 comentários 0 reações 0 responsáveis Ver no GitHub

Ninguém assumiu esta issue ainda.

Bug Port - TK
Linguagem predominante
Python
Estrelas
13.8k
Forks
1.8k
Métricas de merge de PRs
Nenhum PR com merge em 30d

Descrição

Type of Issue

Bug


Operating System

Windows 10

PySimpleGUI Port

tkinter


Versions

Python version

Python 3.10.6

PySimpleGUI Version

PySimpleGUI 4.60.4

GUI Version

tkinter 8.6.12


Your Experience In Months or Years (optional)

4 Years Python programming experience

5 Years Programming experience overall

Have used another Python GUI Framework? (tkinter, Qt, etc) (yes/no is fine)
No, i have not

Anything else you think would be helpful?


Troubleshooting

These items may solve your problem. Please check those you've done by changing - [ ] to - [X]

  • Searched main docs for your problem www.PySimpleGUI.org
  • Looked for Demo Programs that are similar to your goal. It is recommend you use the Demo Browser! Demos.PySimpleGUI.org
  • If not tkinter - looked for Demo Programs for specific port
  • For non tkinter - Looked at readme for your specific port if not PySimpleGUI (Qt, WX, Remi)
  • Run your program outside of your debugger (from a command line)
  • Searched through Issues (open and closed) to see if already reported Issues.PySimpleGUI.org
  • Have upgraded to the latest release of PySimpleGUI on PyPI (lastest official version)
  • Tried using the PySimpleGUI.py file on GitHub. Your problem may have already been fixed but not released
Detailed Description

When dealing with multiple windows, i tracked the focused window using the and events. When clicking a window, these events get called normally. When grabbing a window by the Title bar and moving it around however, it is then focused without the events. Simply clicking on the Title Bar however focuses it with the events.

Code To Duplicate

A short program that isolates and demonstrates the problem


import PySimpleGUI as sg


#create two layouts
win1Layout = [
    [sg.Text('Win1')],
]
win2Layout = [
    [sg.Text('Win2')],
]

#size is important to make aenough room on the title bar to grab the windows
win1 = sg.Window('Win1', layout=win1Layout, size=(300, 100), finalize=True)
win2 = sg.Window('Win2', layout=win2Layout, size=(300, 100), finalize=True)

#bind the events to the windows
win1.bind('<FocusIn>', "WIN1FocusIn")
win1.bind('<FocusOut>', "WIN1FocusOut")
win2.bind('<FocusIn>', "WIN2FocusIn")
win2.bind('<FocusOut>', "WIN2FocusOut")


while True:
    activeWindow, event, values = sg.read_all_windows(timeout=500)

    if event == sg.WIN_CLOSED:
        break

    if not event == "__TIMEOUT__":
        print(event)

Screenshot, Sketch, or Drawing

Watcha Makin?

Im a Student working in a company between semesters and have been tasked with creating a program to write certain Tables to the EEPROM of the devices we are selling

Guia de contribuição

Abrir o guia de contribuição

Primeiros passos

  1. Leia a issue inteira e depois o guia de contribuição do projeto.
  2. Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
  3. Faça um fork do repositório e trabalhe em uma branch.
  4. Abra um pull request que referencie o número da issue.

Direção de pesquisa

Comece executando a reprodução mínima fornecida no Windows 10 e inspecione o tratamento do foco da janela e da vinculação de eventos pelo port de tkinter. Considera-se concluído quando arrastar uma janela pela barra de título produz consistentemente os eventos FocusIn e FocusOut esperados, preservando ao mesmo tempo o comportamento dos cliques comuns na barra de título.

Escrita pelo modelo de indexação a partir do texto da issue.

Avaliação

Stack de tecnologia
python
Domínio
desktop
Tipo de issue
Bug
Dificuldade
4/5
Tempo estimado
3-5 dias
Status de atividade
Estagnada
Clareza
Razoavelmente clara
Facilidade para iniciantes
35/100

Receba novas issues na sua caixa de entrada

Um resumo curto de issues do GitHub para quem está começando.