2022-12-05 18:05:15 +01:00
|
|
|
#include "ProtocolManager.hpp"
|
|
|
|
|
2024-04-19 23:16:35 +02:00
|
|
|
#include "../protocols/TearingControl.hpp"
|
2024-04-20 15:14:54 +02:00
|
|
|
#include "../protocols/FractionalScale.hpp"
|
2024-04-20 20:34:18 +02:00
|
|
|
#include "../protocols/XDGOutput.hpp"
|
2024-04-21 02:47:38 +02:00
|
|
|
#include "../protocols/CursorShape.hpp"
|
2024-04-21 17:29:30 +02:00
|
|
|
#include "../protocols/IdleInhibit.hpp"
|
2024-04-19 23:16:35 +02:00
|
|
|
|
2024-04-20 14:25:29 +02:00
|
|
|
#include "tearing-control-v1.hpp"
|
2024-04-20 15:14:54 +02:00
|
|
|
#include "fractional-scale-v1.hpp"
|
2024-04-20 20:34:18 +02:00
|
|
|
#include "xdg-output-unstable-v1.hpp"
|
2024-04-21 02:47:38 +02:00
|
|
|
#include "cursor-shape-v1.hpp"
|
2024-04-21 17:29:30 +02:00
|
|
|
#include "idle-inhibit-unstable-v1.hpp"
|
2023-07-18 15:30:28 +02:00
|
|
|
|
2022-12-05 18:05:15 +01:00
|
|
|
CProtocolManager::CProtocolManager() {
|
2024-04-20 20:34:18 +02:00
|
|
|
|
2024-04-21 02:47:38 +02:00
|
|
|
PROTO::tearing = std::make_unique<CTearingControlProtocol>(&wp_tearing_control_manager_v1_interface, 1, "TearingControl");
|
|
|
|
PROTO::fractional = std::make_unique<CFractionalScaleProtocol>(&wp_fractional_scale_manager_v1_interface, 1, "FractionalScale");
|
|
|
|
PROTO::xdgOutput = std::make_unique<CXDGOutputProtocol>(&zxdg_output_manager_v1_interface, 3, "XDGOutput");
|
|
|
|
PROTO::cursorShape = std::make_unique<CCursorShapeProtocol>(&wp_cursor_shape_manager_v1_interface, 1, "CursorShape");
|
2024-04-21 17:29:30 +02:00
|
|
|
PROTO::idleInhibit = std::make_unique<CIdleInhibitProtocol>(&zwp_idle_inhibit_manager_v1_interface, 1, "IdleInhibit");
|
2024-04-20 20:34:18 +02:00
|
|
|
|
|
|
|
// Old protocol implementations.
|
|
|
|
// TODO: rewrite them to use hyprwayland-scanner.
|
2023-01-20 19:44:30 +01:00
|
|
|
m_pToplevelExportProtocolManager = std::make_unique<CToplevelExportProtocolManager>();
|
2023-03-14 13:57:50 +01:00
|
|
|
m_pTextInputV1ProtocolManager = std::make_unique<CTextInputV1ProtocolManager>();
|
2023-04-09 14:48:20 +02:00
|
|
|
m_pGlobalShortcutsProtocolManager = std::make_unique<CGlobalShortcutsProtocolManager>();
|
2023-04-03 18:01:05 +02:00
|
|
|
m_pScreencopyProtocolManager = std::make_unique<CScreencopyProtocolManager>();
|
2023-07-18 15:30:28 +02:00
|
|
|
}
|