Analyzed 12 months ago
Wrapland is a Qt/C++ library that wraps and mediates the libwayland client and server API for its consumers. Wrapland is an independent part of the KWinFT project with that project's window manager being Wrapland's first and most prominent user.
Wrapland provides two libraries: Wrapland::Client
... [More]
and Wrapland::Server
As the names suggest, they implement Client and Server APIs, respectively, for the Wayland protocol. The API is Qt-styled, removing the need for a Qt developer uncomfortable with low-level C-APIs to interact with the protocols directly. For example, the callback mechanism from the Wayland API is replaced by signals; data types are adjusted to be what a Qt developer expects, e.g. two arguments of int are represented by a QPoint or a QSize. [Less]