Hyprland/src/events/Events.hpp
2022-03-18 20:07:36 +01:00

59 lines
No EOL
1.2 KiB
C++

#pragma once
#include "../defines.hpp"
namespace Events {
// Monitor events
LISTENER(change);
LISTENER(newOutput);
// Layer events
LISTENER(newLayerSurface);
LISTENER(destroyLayerSurface);
LISTENER(mapLayerSurface);
LISTENER(unmapLayerSurface);
LISTENER(commitLayerSurface);
// Surface XDG (window)
LISTENER(newXDGSurface);
// Window events
LISTENER(commitWindow);
LISTENER(mapWindow);
LISTENER(unmapWindow);
LISTENER(destroyWindow);
LISTENER(setTitleWindow);
LISTENER(fullscreenWindow);
LISTENER(activateX11);
LISTENER(configureX11);
// Input events
LISTENER(mouseMove);
LISTENER(mouseMoveAbsolute);
LISTENER(mouseButton);
LISTENER(mouseAxis);
LISTENER(mouseFrame);
LISTENER(newInput);
LISTENER(keyboardKey);
LISTENER(keyboardMod);
LISTENER(keyboardDestroy);
// Various
LISTENER(requestMouse);
LISTENER(requestSetSel);
LISTENER(requestSetPrimarySel);
LISTENER(activate);
// outputMgr
LISTENER(outputMgrApply);
LISTENER(outputMgrTest);
// Monitor part 2 the sequel
LISTENER(monitorFrame);
LISTENER(monitorDestroy);
// XWayland
LISTENER(readyXWayland);
LISTENER(surfaceXWayland);
};