mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 11:45:59 +01:00
32 lines
No EOL
726 B
C++
32 lines
No EOL
726 B
C++
#pragma once
|
|
#include "../defines.hpp"
|
|
|
|
namespace Events {
|
|
LISTENER(activate);
|
|
LISTENER(change);
|
|
LISTENER(newOutput);
|
|
LISTENER(newLayerSurface);
|
|
LISTENER(destroyLayerSurface);
|
|
LISTENER(mapLayerSurface);
|
|
LISTENER(unmapLayerSurface);
|
|
LISTENER(commitLayerSurface);
|
|
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);
|
|
|
|
LISTENER(monitorFrame);
|
|
LISTENER(monitorDestroy);
|
|
}; |