mirror of
https://github.com/vale981/Hyprland
synced 2025-03-11 21:26:40 -04: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);
|
||
|
};
|