mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 11:25:59 +01:00
25 lines
534 B
C++
25 lines
534 B
C++
|
#pragma once
|
||
|
#include "../defines.hpp"
|
||
|
|
||
|
namespace Events {
|
||
|
LISTENER(activate);
|
||
|
LISTENER(change);
|
||
|
LISTENER(newOutput);
|
||
|
LISTENER(newLayerSurface);
|
||
|
LISTENER(newXDGSurface);
|
||
|
|
||
|
LISTENER(mouseMove);
|
||
|
LISTENER(mouseMoveAbsolute);
|
||
|
LISTENER(mouseButton);
|
||
|
LISTENER(mouseAxis);
|
||
|
LISTENER(mouseFrame);
|
||
|
LISTENER(newInput);
|
||
|
LISTENER(newKeyboard);
|
||
|
|
||
|
LISTENER(requestMouse);
|
||
|
LISTENER(requestSetSel);
|
||
|
LISTENER(requestSetPrimarySel);
|
||
|
|
||
|
LISTENER(outputMgrApply);
|
||
|
LISTENER(outputMgrTest);
|
||
|
};
|