diff options
author | vaxerski <[email protected]> | 2022-03-21 16:13:43 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-03-21 16:13:43 +0100 |
commit | bcb02b9307d09918a11fa377065d7f2c6e506754 (patch) | |
tree | 83d2c280a30fdfa2da5c7d999de093615d2b6fcb /src/events/Events.hpp | |
parent | d06423c9d1fcf908a485b8654d13dd1b154613a4 (diff) | |
download | Hyprland-bcb02b9307d09918a11fa377065d7f2c6e506754.tar.gz Hyprland-bcb02b9307d09918a11fa377065d7f2c6e506754.zip |
handle subsurfaces
Diffstat (limited to 'src/events/Events.hpp')
-rw-r--r-- | src/events/Events.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/events/Events.hpp b/src/events/Events.hpp index 9ac805fe..4313d8d1 100644 --- a/src/events/Events.hpp +++ b/src/events/Events.hpp @@ -13,6 +13,13 @@ namespace Events { LISTENER(unmapLayerSurface); LISTENER(commitLayerSurface); + // Subsurfaces + LISTENER(newSubsurface); + LISTENER(mapSubsurface); + LISTENER(unmapSubsurface); + LISTENER(destroySubsurface); + LISTENER(commitSubsurface); + // Popups LISTENER(newPopup); LISTENER(newPopupFromPopup); @@ -41,6 +48,9 @@ namespace Events { LISTENER(activateX11); LISTENER(configureX11); + // Window subsurfaces + LISTENER(newSubsurfaceWindow); + // Input events LISTENER(mouseMove); LISTENER(mouseMoveAbsolute); |