示例#1
0
 def set_location(self, x, y):
     # Assume the window manager has reparented our top-level window
     # only once, in which case attributes.x/y give the offset from
     # the frame to the content window.  Better solution would be
     # to use _NET_FRAME_EXTENTS, where supported.
     attributes = xlib.XWindowAttributes()
     xlib.XGetWindowAttributes(self._x_display, self._window,
                               byref(attributes))
     # XXX at least under KDE's WM these attrs are both 0
     x -= attributes.x
     y -= attributes.y
     xlib.XMoveWindow(self._x_display, self._window, x, y)
示例#2
0
 def _get_root(self):
     attributes = xlib.XWindowAttributes()
     xlib.XGetWindowAttributes(self._x_display, self._window,
                               byref(attributes))
     return attributes.root