我想用窗格(分隔符)对象调整无边框窗口的大小,如果您知道终端应用程序 guake 会使用 motion-notify-event
这是代码:
self.resizer.connect('motion-notify-event', self.on_resizer_drag)
def on_resizer_drag(self, widget, event):
"""Method that handles the resize drag. It does not actuall
moves the main window. It just set the new window size in
gconf.
"""
(x, y), mod = event.device.get_state(widget.window)
if not 'GDK_BUTTON1_MASK' in mod.value_names:
return
max_height = self.window.get_screen().get_height()
percent = y / (max_height / 100)
if percent < 1:
percent = 1
self.client.set_int(KEY('/general/window_height'), int(percent))
Resizer 是窗格对象,但此代码使用 pygtk (gtk2) 我正在使用带有 gtk3 event.device.get_state(window) 方法的 python-gobject 已弃用或更改。这对我不起作用,关于使用对象拖动调整窗口无边框窗口大小的任何建议或解决方案?