60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
#include "windowManager/WindowManager.hpp"
|
|
#include <string.h>
|
|
#include <X11/Xutil.h>
|
|
#include <iostream>
|
|
#include <X11/Xlib.h>
|
|
|
|
WindowManager::WindowManager(int width, int height) :
|
|
WindowX(0), WindowY(0),
|
|
WindowWidth(width), WindowHeight(height),
|
|
BorderWidth(0),
|
|
WindowDepth(CopyFromParent),
|
|
WindowClass(CopyFromParent),
|
|
WindowVisual(CopyFromParent),
|
|
AttributeValueMask(CWBackPixel | CWEventMask)
|
|
{
|
|
MainDisplay = XOpenDisplay(0);
|
|
RootWindow = XDefaultRootWindow(MainDisplay);
|
|
bzero(&WindowAttributes, sizeof(XSetWindowAttributes));
|
|
WindowAttributes.background_pixel = 0xffafe9af;
|
|
WindowAttributes.event_mask = StructureNotifyMask | KeyPressMask | KeyReleaseMask | ExposureMask;
|
|
|
|
MainWindow = XCreateWindow(MainDisplay, RootWindow,
|
|
WindowX, WindowY, WindowWidth, WindowHeight,
|
|
BorderWidth, WindowDepth, WindowClass, WindowVisual,
|
|
AttributeValueMask, &WindowAttributes);
|
|
XMapWindow(MainDisplay, MainWindow);
|
|
wmDelete = XInternAtom(MainDisplay, "WM_DELETE_WINDOW", false);
|
|
XSetWMProtocols(MainDisplay, MainWindow, &wmDelete, 1);
|
|
|
|
isWindowOpen = true;
|
|
}
|
|
|
|
WindowManager::~WindowManager() {
|
|
XUnmapWindow(this->MainDisplay, this->MainWindow);
|
|
XDestroyWindow(this->MainDisplay, this->MainWindow);
|
|
XCloseDisplay(this->MainDisplay);
|
|
}
|
|
|
|
void WindowManager::loop() {
|
|
while (isWindowOpen) {
|
|
XEvent GeneralEvent = {};
|
|
XNextEvent(this->MainDisplay, &GeneralEvent);
|
|
|
|
switch(GeneralEvent.type) {
|
|
case KeyPress:
|
|
case KeyRelease:
|
|
{
|
|
XKeyPressedEvent *event = (XKeyPressedEvent *)&GeneralEvent;
|
|
if (event->keycode == XKeysymToKeycode(this->MainDisplay, XK_Escape)) {
|
|
this->isWindowOpen = false;
|
|
}
|
|
} break;
|
|
case ClientMessage: {
|
|
if (static_cast<Atom>(GeneralEvent.xclient.data.l[0]) == this->wmDelete) {
|
|
this->isWindowOpen = false;
|
|
}
|
|
} break;
|
|
}
|
|
}
|
|
}
|