some basic startup code
This commit is contained in:
parent
de4c836e97
commit
ffd309ca2a
6 changed files with 195 additions and 3 deletions
5
src/events/Events.cpp
Normal file
5
src/events/Events.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include "Events.hpp"
|
||||
|
||||
void Events::listener_activate(wl_listener* listener, void* data) {
|
||||
|
||||
}
|
||||
25
src/events/Events.hpp
Normal file
25
src/events/Events.hpp
Normal 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);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue