Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can i find a list of all the window manager protocol atoms?

Where can i find a list of all the window manager protocol atoms?

I have these few:

  • WM_DELETE_WINDOW
  • WM_SAVE_YOURSELF
  • WM_TAKE_FOCUS

They are commonly used when incepting window manager events in Python's Tkinter in the style of:

widget.protocol("WM_DELETE_WINDOW", handler)

Where can i get a complete list of these?

like image 681
Gary Willoughby Avatar asked Nov 11 '22 10:11

Gary Willoughby


1 Answers

See Extended Window Manager Hints.

(based on Andrey Sidorov's comment)

like image 194
PR1 Avatar answered Nov 14 '22 22:11

PR1