2022-12-05 17:05:15 +00:00
|
|
|
#include "ProtocolManager.hpp"
|
|
|
|
|
|
2023-07-18 15:30:28 +02:00
|
|
|
#include "xdg-output-unstable-v1-protocol.h"
|
|
|
|
|
|
2022-12-05 17:05:15 +00:00
|
|
|
CProtocolManager::CProtocolManager() {
|
2023-01-20 19:44:30 +01:00
|
|
|
m_pToplevelExportProtocolManager = std::make_unique<CToplevelExportProtocolManager>();
|
|
|
|
|
m_pFractionalScaleProtocolManager = std::make_unique<CFractionalScaleProtocolManager>();
|
2023-03-14 12:57:50 +00:00
|
|
|
m_pTextInputV1ProtocolManager = std::make_unique<CTextInputV1ProtocolManager>();
|
2023-04-09 13:48:20 +01:00
|
|
|
m_pGlobalShortcutsProtocolManager = std::make_unique<CGlobalShortcutsProtocolManager>();
|
2023-04-03 17:01:05 +01:00
|
|
|
m_pScreencopyProtocolManager = std::make_unique<CScreencopyProtocolManager>();
|
2023-07-18 15:30:28 +02:00
|
|
|
|
|
|
|
|
m_pXDGOutputProtocol = std::make_unique<CXDGOutputProtocol>(&zxdg_output_manager_v1_interface, 3, "XDGOutput");
|
|
|
|
|
}
|