#502315 No equivalent to XMoveWindow

#502315#5
Date:
2008-10-15 14:34:00 UTC
From:
To:
It's not easy to move a window using python-xlib as it stands, whereas the C API
has XMoveWindow[0].

[Footnote 0: http://tronche.com/gui/x/xlib/window/XMoveWindow.html]

#502315#10
Date:
2009-01-17 11:23:12 UTC
From:
To:
forwarded 502315 https://sourceforge.net/tracker2/?func=detail&aid=2515543&group_id=10350&atid=360350
thanks

You can still use XConfigureWindow[0] by obtaining other necessary
information before the call. Anyway it would be a good feature to have.
Forwarding upstream[1]. Notice that XMoveWindow it's not the only convenient
function that's missing in the wrapper.

[0] http://tronche.com/gui/x/xlib/window/XConfigureWindow.html
[1] https://sourceforge.net/tracker2/?func=detail&aid=2515543&group_id=10350&atid=360350

#502315#15
Date:
2009-01-17 11:23:12 UTC
From:
To:
forwarded 502315 https://sourceforge.net/tracker2/?func=detail&aid=2515543&group_id=10350&atid=360350
thanks

You can still use XConfigureWindow[0] by obtaining other necessary
information before the call. Anyway it would be a good feature to have.
Forwarding upstream[1]. Notice that XMoveWindow it's not the only convenient
function that's missing in the wrapper.

[0] http://tronche.com/gui/x/xlib/window/XConfigureWindow.html
[1] https://sourceforge.net/tracker2/?func=detail&aid=2515543&group_id=10350&atid=360350

#502315#22
Date:
2022-07-08 19:09:01 UTC
From:
To:
Hi,

Please take a look to https://github.com/python-xlib/python-xlib/issues/197

You can use configure for that
https://github.com/python-xlib/python-xlib/blob/master/Xlib/xobject/drawable.py#L407

Cheers,
Emmanuel

#502315#27
Date:
2022-07-08 19:09:35 UTC
From:
To:
Thanks
Emmanuel