diff options
author | Vaxry <[email protected]> | 2024-05-12 15:55:46 +0100 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-05-14 23:13:35 +0100 |
commit | eed1361f390590d406450c0747e4e2ce40a548fb (patch) | |
tree | d9fc6ef7fc2f4a78de8c8c80a957f3e812222b28 /src/managers/ProtocolManager.cpp | |
parent | 7eeee2c94e882a5df1914234df0571b221f9aa35 (diff) | |
download | Hyprland-eed1361f390590d406450c0747e4e2ce40a548fb.tar.gz Hyprland-eed1361f390590d406450c0747e4e2ce40a548fb.zip |
wlr-data-device: move to hyprland impl
Diffstat (limited to 'src/managers/ProtocolManager.cpp')
-rw-r--r-- | src/managers/ProtocolManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/managers/ProtocolManager.cpp b/src/managers/ProtocolManager.cpp index 8167103f..4b03263b 100644 --- a/src/managers/ProtocolManager.cpp +++ b/src/managers/ProtocolManager.cpp @@ -29,6 +29,7 @@ #include "../protocols/LayerShell.hpp" #include "../protocols/PresentationTime.hpp" #include "../protocols/XDGShell.hpp" +#include "../protocols/DataDeviceWlr.hpp" #include "../protocols/core/Seat.hpp" #include "../protocols/core/DataDevice.hpp" @@ -69,6 +70,7 @@ CProtocolManager::CProtocolManager() { PROTO::layerShell = std::make_unique<CLayerShellProtocol>(&zwlr_layer_shell_v1_interface, 5, "LayerShell"); PROTO::presentation = std::make_unique<CPresentationProtocol>(&wp_presentation_interface, 1, "Presentation"); PROTO::xdgShell = std::make_unique<CXDGShellProtocol>(&xdg_wm_base_interface, 6, "XDGShell"); + PROTO::dataWlr = std::make_unique<CDataDeviceWLRProtocol>(&zwlr_data_control_manager_v1_interface, 2, "DataDeviceWlr"); // Old protocol implementations. // TODO: rewrite them to use hyprwayland-scanner. |