mirror of
https://github.com/vale981/Hyprland
synced 2025-03-11 13:16:40 -04:00
25 lines
No EOL
534 B
C++
25 lines
No EOL
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);
|
|
}; |