2022-03-16 21:37:21 +01:00
|
|
|
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
|
|
|
|
|
|
namespace Events {
|
|
|
|
LISTENER(activate);
|
|
|
|
LISTENER(change);
|
|
|
|
LISTENER(newOutput);
|
2022-03-17 20:22:29 +01:00
|
|
|
|
2022-03-16 21:37:21 +01:00
|
|
|
LISTENER(newLayerSurface);
|
2022-03-17 18:25:16 +01:00
|
|
|
LISTENER(destroyLayerSurface);
|
|
|
|
LISTENER(mapLayerSurface);
|
|
|
|
LISTENER(unmapLayerSurface);
|
|
|
|
LISTENER(commitLayerSurface);
|
2022-03-17 20:22:29 +01:00
|
|
|
|
2022-03-16 21:37:21 +01:00
|
|
|
LISTENER(newXDGSurface);
|
|
|
|
|
2022-03-17 20:22:29 +01:00
|
|
|
LISTENER(commitWindow);
|
|
|
|
LISTENER(mapWindow);
|
|
|
|
LISTENER(unmapWindow);
|
|
|
|
LISTENER(destroyWindow);
|
|
|
|
LISTENER(setTitleWindow);
|
|
|
|
LISTENER(fullscreenWindow);
|
|
|
|
|
2022-03-16 21:37:21 +01:00
|
|
|
LISTENER(mouseMove);
|
|
|
|
LISTENER(mouseMoveAbsolute);
|
|
|
|
LISTENER(mouseButton);
|
|
|
|
LISTENER(mouseAxis);
|
|
|
|
LISTENER(mouseFrame);
|
2022-03-17 20:55:04 +01:00
|
|
|
|
2022-03-16 21:37:21 +01:00
|
|
|
LISTENER(newInput);
|
2022-03-17 20:55:04 +01:00
|
|
|
|
|
|
|
LISTENER(keyboardKey);
|
|
|
|
LISTENER(keyboardMod);
|
|
|
|
LISTENER(keyboardDestroy);
|
2022-03-16 21:37:21 +01:00
|
|
|
|
|
|
|
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
|
|
|
};
|