1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 12:17:45 +00:00

Kernel: Remove GUIEventDevice.

It's no longer used since all communication now happens across sockets. :^)
This commit is contained in:
Andreas Kling 2019-02-15 08:58:03 +01:00
parent e9d6fbfb47
commit 18210c606d
9 changed files with 3 additions and 70 deletions

View file

@ -4,6 +4,7 @@
#include "WSMessage.h"
#include "WSMessageLoop.h"
#include "WSWindowManager.h"
#include <Kernel/GUITypes.h>
#include <WindowServer/WSClientConnection.h>
#include <SharedGraphics/Painter.h>
#include <SharedGraphics/Font.h>

View file

@ -6,6 +6,7 @@
#include <WindowServer/WSClientConnection.h>
#include "PS2MouseDevice.h"
#include <Kernel/Keyboard.h>
#include <Kernel/GUITypes.h>
#include <AK/Bitmap.h>
#include "Process.h"

View file

@ -2,6 +2,7 @@
#include "WSWindowManager.h"
#include "WSMessage.h"
#include "WSMessageLoop.h"
#include <Kernel/GUITypes.h>
#include <WindowServer/WSClientConnection.h>
WSWindow::WSWindow(WSMenu& menu)