Hyprland/src/events/Events.hpp

28 lines
593 B
C++
Raw Normal View History

2022-03-16 21:37:21 +01:00
#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);
2022-03-17 16:56:33 +01:00
LISTENER(monitorFrame);
LISTENER(monitorDestroy);
2022-03-16 21:37:21 +01:00
};