使用Tk.protocol参数时可以 “WM_DELETE_WINDOW”,“WM_SAVE_YOURSELF”和“WM_TAKE_FOCUS”
但还有别的吗?
具体来说,在我的程序中,我想创建一个跟随另一个窗口的窗口
root = Tk()
root.config(width = 100, height = 100
a = Tk()
a.overredirect()
#here I just make window stand below bottom left corner of original window
#I succeded in doing that, but it is not ellegant at all and partially functional
#does anybody knows how to do it better
#note: this is not the main problem
a.geometry('%ix40+%s+%s' % (180,
int(g[g.index('+')+1:g.rindex('+')]) + 8,
int(g[g.rindex('+')+1:]) + 51 +
int(g[g.index('x')+1:g.index('+')])))
在这里,如果root在屏幕上移动,我应该让“a”跟随“root”
我的实际问题是其他协议是什么,或者我在哪里可以找到它们
答案 0 :(得分:1)
以下是您正在寻找的答案:
Q值。有没有办法获取wm的可用协议列表 协议?手册页仅列出了明显/常见的 (WM_DELETE_WINDOW,WM_SAVE_YOURSELF和WM_TAKE_FOCUS)。
一个。这是ICCCM定义的唯一三个; freedesktop.org [EWMH]规范还定义了_NET_WM_PING。
请注意,不推荐使用WM_SAVE_YOURSELF,并且Tk应用无法实现 WM_TAKE_FOCUS或_NET_WM_PING正确,所以WM_DELETE_WINDOW是 只有一个应该使用。
DKF:Tk现在以正确的方式为您自己处理_NET_WM_PING; 你永远不会在脚本级别看到这个。 (目的) 协议是让其他客户端 - 尤其是窗口管理器或 会话管理器 - 确定应用程序是否正确 处理事件。这使其实施正确地埋没了 Tk的内脏。)