You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, is this usable for making a Wayland compositor with Qt?
I am looking for a way to write a minimalistic tiling window manager using wlroots that uses Qt6 Widgets to draw window decorations (title, close button, minimize/maximize buttons). I want it to support all Wayland protocols that wlroots is supporting without having much work on my side every time a new protocol is added.
Can this be done using qwlroots? Is there even an example maybe?
I want to make window decorations like this (see the window title and buttons):
And a drop shadow.
The text was updated successfully, but these errors were encountered:
You may need to rely on waylib. qwlroots is just a Qt-style binding of wlroots, which simplifies the way to call wlroots API in Qt projects. https://github.com/vioken/waylib
Thanks, but isn't wlroots for making a Wayland compositor?
Yes. you can use qwlroots like as the wlroots to make a Wayland compositor, but you can't using QtWidgets with qwlroots. https://github.com/vioken/qwlroots/blob/master/examples/tinywl/main.cpp this is an example of qwlroots, you can using QtCore with qwlroots, eg: use the Qt style signals to connect the wayland signals.
Hello, is this usable for making a Wayland compositor with Qt?
I am looking for a way to write a minimalistic tiling window manager using wlroots that uses Qt6 Widgets to draw window decorations (title, close button, minimize/maximize buttons). I want it to support all Wayland protocols that wlroots is supporting without having much work on my side every time a new protocol is added.
Can this be done using qwlroots? Is there even an example maybe?
I want to make window decorations like this (see the window title and buttons):
And a drop shadow.
The text was updated successfully, but these errors were encountered: