├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE ├── README.md ├── cmake ├── build_client_libraries.cmake ├── build_server_libraries.cmake └── waylandpp_helper_functions.cmake ├── example ├── CMakeLists.txt ├── Makefile ├── clipboard.cpp ├── decor.cpp ├── dump.cpp ├── egl.cpp ├── foreign_display.cpp ├── pingpong.cpp ├── pingpong.xml ├── proxy_wrapper.cpp ├── shm.cpp ├── shm_common.cpp └── shm_common.hpp ├── include ├── wayland-client.hpp ├── wayland-cursor.hpp ├── wayland-egl.hpp ├── wayland-server.hpp ├── wayland-util.hpp └── wayland-version.hpp.in ├── protocols ├── experimental │ ├── xx-input-method-v2.xml │ └── xx-session-management-v1.xml ├── extra │ ├── linux-dmabuf-v1.xml │ ├── presentation-time.xml │ ├── tablet-v2.xml │ ├── viewporter.xml │ └── xdg-shell.xml ├── staging │ ├── alpha-modifier-v1.xml │ ├── color-management-v1.xml │ ├── color-representation-v1.xml │ ├── commit-timing-v1.xml │ ├── content-type-v1.xml │ ├── cursor-shape-v1.xml │ ├── drm-lease-v1.xml │ ├── ext-background-effect-v1.xml │ ├── ext-data-control-v1.xml │ ├── ext-foreign-toplevel-list-v1.xml │ ├── ext-idle-notify-v1.xml │ ├── ext-image-capture-source-v1.xml │ ├── ext-image-copy-capture-v1.xml │ ├── ext-session-lock-v1.xml │ ├── ext-transient-seat-v1.xml │ ├── ext-workspace-v1.xml │ ├── fifo-v1.xml │ ├── fractional-scale-v1.xml │ ├── linux-drm-syncobj-v1.xml │ ├── pointer-warp-v1.xml │ ├── security-context-v1.xml │ ├── single-pixel-buffer-v1.xml │ ├── tearing-control-v1.xml │ ├── xdg-activation-v1.xml │ ├── xdg-dialog-v1.xml │ ├── xdg-system-bell-v1.xml │ ├── xdg-toplevel-drag-v1.xml │ ├── xdg-toplevel-icon-v1.xml │ ├── xdg-toplevel-tag-v1.xml │ └── xwayland-shell-v1.xml ├── unstable │ ├── fullscreen-shell-unstable-v1.xml │ ├── idle-inhibit-unstable-v1.xml │ ├── input-method-unstable-v1.xml │ ├── input-timestamps-unstable-v1.xml │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ ├── linux-explicit-synchronization-unstable-v1.xml │ ├── pointer-constraints-unstable-v1.xml │ ├── pointer-gestures-unstable-v1.xml │ ├── primary-selection-unstable-v1.xml │ ├── relative-pointer-unstable-v1.xml │ ├── tablet-unstable-v1.xml │ ├── text-input-unstable-v1.xml │ ├── text-input-unstable-v3.xml │ ├── xdg-activation-v1.xml │ ├── xdg-decoration-unstable-v1.xml │ ├── xdg-foreign-unstable-v1.xml │ ├── xdg-foreign-unstable-v2.xml │ ├── xdg-output-unstable-v1.xml │ ├── xdg-shell-unstable-v6.xml │ └── xwayland-keyboard-grab-unstable-v1.xml └── wayland.xml ├── scanner ├── gpl-3.0.txt └── scanner.cpp ├── src ├── wayland-client.cpp ├── wayland-cursor.cpp ├── wayland-egl.cpp ├── wayland-server.cpp └── wayland-util.cpp ├── wayland-client++.pc.in ├── wayland-client-experimental++.pc.in ├── wayland-client-extra++.pc.in ├── wayland-client-plasma++.pc.in ├── wayland-client-staging++.pc.in ├── wayland-client-unstable++.pc.in ├── wayland-client-wlr++.pc.in ├── wayland-cursor++.pc.in ├── wayland-egl++.pc.in ├── wayland-scanner++.pc.in ├── wayland-server++.pc.in ├── wayland-server-experimental++.pc.in ├── wayland-server-extra++.pc.in ├── wayland-server-plasma++.pc.in ├── wayland-server-staging++.pc.in ├── wayland-server-unstable++.pc.in ├── wayland-server-wlr++.pc.in └── waylandpp-config.cmake.in /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/README.md -------------------------------------------------------------------------------- /cmake/build_client_libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/cmake/build_client_libraries.cmake -------------------------------------------------------------------------------- /cmake/build_server_libraries.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/cmake/build_server_libraries.cmake -------------------------------------------------------------------------------- /cmake/waylandpp_helper_functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/cmake/waylandpp_helper_functions.cmake -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/clipboard.cpp -------------------------------------------------------------------------------- /example/decor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/decor.cpp -------------------------------------------------------------------------------- /example/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/dump.cpp -------------------------------------------------------------------------------- /example/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/egl.cpp -------------------------------------------------------------------------------- /example/foreign_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/foreign_display.cpp -------------------------------------------------------------------------------- /example/pingpong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/pingpong.cpp -------------------------------------------------------------------------------- /example/pingpong.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/pingpong.xml -------------------------------------------------------------------------------- /example/proxy_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/proxy_wrapper.cpp -------------------------------------------------------------------------------- /example/shm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/shm.cpp -------------------------------------------------------------------------------- /example/shm_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/shm_common.cpp -------------------------------------------------------------------------------- /example/shm_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/example/shm_common.hpp -------------------------------------------------------------------------------- /include/wayland-client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-client.hpp -------------------------------------------------------------------------------- /include/wayland-cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-cursor.hpp -------------------------------------------------------------------------------- /include/wayland-egl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-egl.hpp -------------------------------------------------------------------------------- /include/wayland-server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-server.hpp -------------------------------------------------------------------------------- /include/wayland-util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-util.hpp -------------------------------------------------------------------------------- /include/wayland-version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/include/wayland-version.hpp.in -------------------------------------------------------------------------------- /protocols/experimental/xx-input-method-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/experimental/xx-input-method-v2.xml -------------------------------------------------------------------------------- /protocols/experimental/xx-session-management-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/experimental/xx-session-management-v1.xml -------------------------------------------------------------------------------- /protocols/extra/linux-dmabuf-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/extra/linux-dmabuf-v1.xml -------------------------------------------------------------------------------- /protocols/extra/presentation-time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/extra/presentation-time.xml -------------------------------------------------------------------------------- /protocols/extra/tablet-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/extra/tablet-v2.xml -------------------------------------------------------------------------------- /protocols/extra/viewporter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/extra/viewporter.xml -------------------------------------------------------------------------------- /protocols/extra/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/extra/xdg-shell.xml -------------------------------------------------------------------------------- /protocols/staging/alpha-modifier-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/alpha-modifier-v1.xml -------------------------------------------------------------------------------- /protocols/staging/color-management-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/color-management-v1.xml -------------------------------------------------------------------------------- /protocols/staging/color-representation-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/color-representation-v1.xml -------------------------------------------------------------------------------- /protocols/staging/commit-timing-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/commit-timing-v1.xml -------------------------------------------------------------------------------- /protocols/staging/content-type-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/content-type-v1.xml -------------------------------------------------------------------------------- /protocols/staging/cursor-shape-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/cursor-shape-v1.xml -------------------------------------------------------------------------------- /protocols/staging/drm-lease-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/drm-lease-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-background-effect-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-background-effect-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-data-control-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-data-control-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-foreign-toplevel-list-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-foreign-toplevel-list-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-idle-notify-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-idle-notify-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-image-capture-source-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-image-capture-source-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-image-copy-capture-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-image-copy-capture-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-session-lock-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-session-lock-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-transient-seat-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-transient-seat-v1.xml -------------------------------------------------------------------------------- /protocols/staging/ext-workspace-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/ext-workspace-v1.xml -------------------------------------------------------------------------------- /protocols/staging/fifo-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/fifo-v1.xml -------------------------------------------------------------------------------- /protocols/staging/fractional-scale-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/fractional-scale-v1.xml -------------------------------------------------------------------------------- /protocols/staging/linux-drm-syncobj-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/linux-drm-syncobj-v1.xml -------------------------------------------------------------------------------- /protocols/staging/pointer-warp-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/pointer-warp-v1.xml -------------------------------------------------------------------------------- /protocols/staging/security-context-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/security-context-v1.xml -------------------------------------------------------------------------------- /protocols/staging/single-pixel-buffer-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/single-pixel-buffer-v1.xml -------------------------------------------------------------------------------- /protocols/staging/tearing-control-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/tearing-control-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-activation-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-activation-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-dialog-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-dialog-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-system-bell-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-system-bell-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-toplevel-drag-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-toplevel-drag-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-toplevel-icon-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-toplevel-icon-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xdg-toplevel-tag-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xdg-toplevel-tag-v1.xml -------------------------------------------------------------------------------- /protocols/staging/xwayland-shell-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/staging/xwayland-shell-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/fullscreen-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/fullscreen-shell-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/idle-inhibit-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/idle-inhibit-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/input-method-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/input-method-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/input-timestamps-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/input-timestamps-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/keyboard-shortcuts-inhibit-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/keyboard-shortcuts-inhibit-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/linux-explicit-synchronization-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/linux-explicit-synchronization-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/pointer-constraints-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/pointer-constraints-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/pointer-gestures-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/pointer-gestures-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/primary-selection-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/primary-selection-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/relative-pointer-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/relative-pointer-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/tablet-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/tablet-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/text-input-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/text-input-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/text-input-unstable-v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/text-input-unstable-v3.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-activation-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-activation-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-decoration-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-decoration-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-foreign-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-foreign-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-foreign-unstable-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-foreign-unstable-v2.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-output-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-output-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/unstable/xdg-shell-unstable-v6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xdg-shell-unstable-v6.xml -------------------------------------------------------------------------------- /protocols/unstable/xwayland-keyboard-grab-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/unstable/xwayland-keyboard-grab-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/wayland.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/protocols/wayland.xml -------------------------------------------------------------------------------- /scanner/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/scanner/gpl-3.0.txt -------------------------------------------------------------------------------- /scanner/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/scanner/scanner.cpp -------------------------------------------------------------------------------- /src/wayland-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/src/wayland-client.cpp -------------------------------------------------------------------------------- /src/wayland-cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/src/wayland-cursor.cpp -------------------------------------------------------------------------------- /src/wayland-egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/src/wayland-egl.cpp -------------------------------------------------------------------------------- /src/wayland-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/src/wayland-server.cpp -------------------------------------------------------------------------------- /src/wayland-util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/src/wayland-util.cpp -------------------------------------------------------------------------------- /wayland-client++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client++.pc.in -------------------------------------------------------------------------------- /wayland-client-experimental++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-experimental++.pc.in -------------------------------------------------------------------------------- /wayland-client-extra++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-extra++.pc.in -------------------------------------------------------------------------------- /wayland-client-plasma++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-plasma++.pc.in -------------------------------------------------------------------------------- /wayland-client-staging++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-staging++.pc.in -------------------------------------------------------------------------------- /wayland-client-unstable++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-unstable++.pc.in -------------------------------------------------------------------------------- /wayland-client-wlr++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-client-wlr++.pc.in -------------------------------------------------------------------------------- /wayland-cursor++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-cursor++.pc.in -------------------------------------------------------------------------------- /wayland-egl++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-egl++.pc.in -------------------------------------------------------------------------------- /wayland-scanner++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-scanner++.pc.in -------------------------------------------------------------------------------- /wayland-server++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server++.pc.in -------------------------------------------------------------------------------- /wayland-server-experimental++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-experimental++.pc.in -------------------------------------------------------------------------------- /wayland-server-extra++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-extra++.pc.in -------------------------------------------------------------------------------- /wayland-server-plasma++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-plasma++.pc.in -------------------------------------------------------------------------------- /wayland-server-staging++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-staging++.pc.in -------------------------------------------------------------------------------- /wayland-server-unstable++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-unstable++.pc.in -------------------------------------------------------------------------------- /wayland-server-wlr++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/wayland-server-wlr++.pc.in -------------------------------------------------------------------------------- /waylandpp-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilsBrause/waylandpp/HEAD/waylandpp-config.cmake.in --------------------------------------------------------------------------------