mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 08:45:59 +01:00
046ad79d11
Implements the `hyprland-global-shortcuts-v1` protocol --------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
9 lines
No EOL
527 B
C++
9 lines
No EOL
527 B
C++
#include "ProtocolManager.hpp"
|
|
|
|
CProtocolManager::CProtocolManager() {
|
|
m_pToplevelExportProtocolManager = std::make_unique<CToplevelExportProtocolManager>();
|
|
m_pFractionalScaleProtocolManager = std::make_unique<CFractionalScaleProtocolManager>();
|
|
m_pTextInputV1ProtocolManager = std::make_unique<CTextInputV1ProtocolManager>();
|
|
m_pGlobalShortcutsProtocolManager = std::make_unique<CGlobalShortcutsProtocolManager>();
|
|
m_pScreencopyProtocolManager = std::make_unique<CScreencopyProtocolManager>();
|
|
} |