some basic startup code

This commit is contained in:
vaxerski
2022-03-16 21:37:21 +01:00
parent de4c836e97
commit ffd309ca2a
6 changed files with 195 additions and 3 deletions

25
src/events/Events.hpp Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
#include "../defines.hpp"
namespace Events {
LISTENER(activate);
LISTENER(change);
LISTENER(newOutput);
LISTENER(newLayerSurface);
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);
};