mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-19 00:20:23 -07:00
117 lines
2.6 KiB
C++
117 lines
2.6 KiB
C++
#pragma once
|
|
#include "../defines.hpp"
|
|
|
|
//
|
|
// LISTEN_NAME -> the wl_listener
|
|
//
|
|
// LISTENER_NAME -> the wl_listener.notify function
|
|
//
|
|
|
|
namespace Events {
|
|
// Monitor events
|
|
LISTENER(change);
|
|
LISTENER(newOutput);
|
|
|
|
// DRM events
|
|
LISTENER(leaseRequest);
|
|
|
|
// Layer events
|
|
LISTENER(newLayerSurface);
|
|
|
|
// Surface XDG (window)
|
|
LISTENER(newXDGToplevel);
|
|
|
|
// Window events
|
|
DYNLISTENFUNC(commitWindow);
|
|
DYNLISTENFUNC(mapWindow);
|
|
DYNLISTENFUNC(unmapWindow);
|
|
DYNLISTENFUNC(destroyWindow);
|
|
DYNLISTENFUNC(setTitleWindow);
|
|
DYNLISTENFUNC(fullscreenWindow);
|
|
DYNLISTENFUNC(activateX11);
|
|
DYNLISTENFUNC(configureX11);
|
|
DYNLISTENFUNC(unmanagedSetGeometry);
|
|
DYNLISTENFUNC(requestMove);
|
|
DYNLISTENFUNC(requestResize);
|
|
DYNLISTENFUNC(requestMinimize);
|
|
DYNLISTENFUNC(requestMaximize);
|
|
DYNLISTENFUNC(setOverrideRedirect);
|
|
DYNLISTENFUNC(associateX11);
|
|
DYNLISTENFUNC(dissociateX11);
|
|
DYNLISTENFUNC(ackConfigure);
|
|
|
|
// Window subsurfaces
|
|
// LISTENER(newSubsurfaceWindow);
|
|
|
|
// Input events
|
|
LISTENER(mouseMove);
|
|
LISTENER(mouseMoveAbsolute);
|
|
LISTENER(mouseButton);
|
|
LISTENER(mouseAxis);
|
|
LISTENER(mouseFrame);
|
|
|
|
LISTENER(newInput);
|
|
|
|
// Virt Ptr
|
|
LISTENER(newVirtPtr);
|
|
DYNLISTENFUNC(destroyMouse);
|
|
|
|
DYNLISTENFUNC(keyboardKey);
|
|
DYNLISTENFUNC(keyboardMod);
|
|
DYNLISTENFUNC(keyboardDestroy);
|
|
|
|
// Various
|
|
LISTENER(requestMouse);
|
|
LISTENER(requestSetSel);
|
|
LISTENER(requestSetPrimarySel);
|
|
|
|
// Monitor part 2 the sequel
|
|
DYNLISTENFUNC(monitorFrame);
|
|
DYNLISTENFUNC(monitorDestroy);
|
|
DYNLISTENFUNC(monitorStateRequest);
|
|
DYNLISTENFUNC(monitorDamage);
|
|
DYNLISTENFUNC(monitorNeedsFrame);
|
|
DYNLISTENFUNC(monitorCommit);
|
|
DYNLISTENFUNC(monitorBind);
|
|
|
|
// XWayland
|
|
LISTENER(readyXWayland);
|
|
LISTENER(surfaceXWayland);
|
|
|
|
// Drag & Drop
|
|
LISTENER(requestDrag);
|
|
LISTENER(startDrag);
|
|
DYNLISTENFUNC(destroyDrag);
|
|
|
|
DYNLISTENFUNC(mapDragIcon);
|
|
DYNLISTENFUNC(unmapDragIcon);
|
|
DYNLISTENFUNC(destroyDragIcon);
|
|
DYNLISTENFUNC(commitDragIcon);
|
|
|
|
// Renderer destroy
|
|
LISTENER(RendererDestroy);
|
|
|
|
// session
|
|
LISTENER(sessionActive);
|
|
|
|
// Touchpad shit
|
|
LISTENER(swipeBegin);
|
|
LISTENER(swipeEnd);
|
|
LISTENER(swipeUpdate);
|
|
LISTENER(pinchBegin);
|
|
LISTENER(pinchUpdate);
|
|
LISTENER(pinchEnd);
|
|
|
|
// Touch
|
|
LISTENER(touchBegin);
|
|
LISTENER(touchEnd);
|
|
LISTENER(touchUpdate);
|
|
LISTENER(touchFrame);
|
|
|
|
LISTENER(holdBegin);
|
|
LISTENER(holdEnd);
|
|
|
|
// Session Lock
|
|
LISTENER(newSessionLock);
|
|
};
|