mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 20:05:06 +00:00

This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
40 lines
880 B
C++
40 lines
880 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "ConnectionFromClient.h"
|
|
#include "WMConnectionFromClient.h"
|
|
#include <AK/ByteBuffer.h>
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibCore/Notifier.h>
|
|
#include <LibIPC/MultiServer.h>
|
|
|
|
namespace WindowServer {
|
|
|
|
class ConnectionFromClient;
|
|
|
|
class EventLoop {
|
|
public:
|
|
EventLoop();
|
|
virtual ~EventLoop();
|
|
|
|
int exec() { return m_event_loop.exec(); }
|
|
|
|
private:
|
|
void drain_mouse();
|
|
void drain_keyboard();
|
|
|
|
Core::EventLoop m_event_loop;
|
|
int m_keyboard_fd { -1 };
|
|
RefPtr<Core::Notifier> m_keyboard_notifier;
|
|
int m_mouse_fd { -1 };
|
|
RefPtr<Core::Notifier> m_mouse_notifier;
|
|
OwnPtr<IPC::MultiServer<ConnectionFromClient>> m_window_server;
|
|
OwnPtr<IPC::MultiServer<WMConnectionFromClient>> m_wm_server;
|
|
};
|
|
|
|
}
|