- Package:
- python-xlib
- Source:
- python-xlib
- Submitter:
- Daniel Watkins
- Date:
- 2022-07-08 19:12:09 UTC
- Severity:
- wishlist
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]
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
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
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
Thanks Emmanuel