🎉 Let's go
A minimalistic but working X XM POC.
This commit is contained in:
commit
cb31369947
14 changed files with 227 additions and 0 deletions
3
include/configure.h
Normal file
3
include/configure.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnConfigureRequest(const XConfigureRequestEvent*);
|
||||
3
include/create.h
Normal file
3
include/create.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnCreateNotify(const XCreateWindowEvent*);
|
||||
3
include/destroy.h
Normal file
3
include/destroy.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnDestroyNotify(const XDestroyWindowEvent* e);
|
||||
3
include/map.h
Normal file
3
include/map.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnMapRequest(Window root, const XMapRequestEvent* e);
|
||||
3
include/reparent.h
Normal file
3
include/reparent.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnReparentNotify(const XReparentEvent*);
|
||||
3
include/unmap.h
Normal file
3
include/unmap.h
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#include <X11/Xlib.h>
|
||||
|
||||
void OnUnmapRequest(Window root, const XMapRequestEvent* e);
|
||||
Loading…
Add table
Add a link
Reference in a new issue