mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-07-31 12:11:56 -07:00
32 lines
726 B
C++
32 lines
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);
|
|
}; |