🎉 Let's go

A minimalistic but working X XM POC.
This commit is contained in:
Paul Breugnot 2024-12-07 10:13:17 +01:00
commit cb31369947
14 changed files with 227 additions and 0 deletions

3
include/configure.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnConfigureRequest(const XConfigureRequestEvent*);

3
include/create.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnCreateNotify(const XCreateWindowEvent*);

3
include/destroy.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnDestroyNotify(const XDestroyWindowEvent* e);

3
include/map.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnMapRequest(Window root, const XMapRequestEvent* e);

3
include/reparent.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnReparentNotify(const XReparentEvent*);

3
include/unmap.h Normal file
View file

@ -0,0 +1,3 @@
#include <X11/Xlib.h>
void OnUnmapRequest(Window root, const XMapRequestEvent* e);