2019-12-24 20:57:54 +01:00
|
|
|
#include <LibDraw/Palette.h>
|
2019-12-23 20:24:26 +01:00
|
|
|
#include <LibDraw/SystemTheme.h>
|
2019-06-07 11:46:02 +02:00
|
|
|
#include <LibGUI/GAction.h>
|
|
|
|
#include <LibGUI/GApplication.h>
|
2019-09-14 09:19:05 +02:00
|
|
|
#include <LibGUI/GClipboard.h>
|
2019-06-07 11:46:02 +02:00
|
|
|
#include <LibGUI/GDesktop.h>
|
2019-12-08 16:50:23 +01:00
|
|
|
#include <LibGUI/GDragOperation.h>
|
2019-11-08 11:39:45 +01:00
|
|
|
#include <LibGUI/GEvent.h>
|
2019-06-07 11:46:02 +02:00
|
|
|
#include <LibGUI/GMenu.h>
|
|
|
|
#include <LibGUI/GWidget.h>
|
2019-11-08 11:39:45 +01:00
|
|
|
#include <LibGUI/GWindow.h>
|
|
|
|
#include <LibGUI/GWindowServerConnection.h>
|
2018-10-10 15:12:38 +02:00
|
|
|
|
2019-01-20 07:03:38 +01:00
|
|
|
//#define GEVENTLOOP_DEBUG
|
|
|
|
|
2019-07-17 20:57:27 +02:00
|
|
|
GWindowServerConnection& GWindowServerConnection::the()
|
|
|
|
{
|
|
|
|
static GWindowServerConnection* s_connection = nullptr;
|
2019-12-02 09:33:37 +01:00
|
|
|
if (!s_connection)
|
|
|
|
s_connection = new GWindowServerConnection;
|
2019-07-17 20:57:27 +02:00
|
|
|
return *s_connection;
|
|
|
|
}
|
|
|
|
|
2019-12-23 20:24:26 +01:00
|
|
|
static void set_system_theme_from_shared_buffer_id(int id)
|
|
|
|
{
|
|
|
|
auto system_theme = SharedBuffer::create_from_shared_buffer_id(id);
|
|
|
|
ASSERT(system_theme);
|
|
|
|
set_system_theme(*system_theme);
|
2019-12-24 20:57:54 +01:00
|
|
|
GApplication::the().set_system_palette(*system_theme);
|
2019-12-23 20:24:26 +01:00
|
|
|
}
|
|
|
|
|
2019-07-17 18:28:30 +02:00
|
|
|
void GWindowServerConnection::handshake()
|
2018-10-10 15:12:38 +02:00
|
|
|
{
|
2019-12-06 18:39:59 +01:00
|
|
|
auto response = send_sync<WindowServer::Greet>();
|
2019-12-02 09:33:37 +01:00
|
|
|
set_my_client_id(response->client_id());
|
2019-12-23 20:24:26 +01:00
|
|
|
set_system_theme_from_shared_buffer_id(response->system_theme_buffer_id());
|
2019-12-02 09:33:37 +01:00
|
|
|
GDesktop::the().did_receive_screen_rect({}, response->screen_rect());
|
2019-03-09 17:34:09 +01:00
|
|
|
}
|
|
|
|
|
2019-12-23 20:24:26 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::UpdateSystemTheme& message)
|
|
|
|
{
|
|
|
|
set_system_theme_from_shared_buffer_id(message.system_theme_buffer_id());
|
|
|
|
GWindow::update_all_windows({});
|
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::Paint& message)
|
2019-01-20 05:48:43 +01:00
|
|
|
{
|
2019-01-26 21:44:13 +01:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
2019-12-02 09:33:37 +01:00
|
|
|
dbgprintf("WID=%d Paint\n", message.window_id());
|
2019-01-26 21:44:13 +01:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id())) {
|
|
|
|
Vector<Rect, 32> rects;
|
|
|
|
for (auto& r : message.rects()) {
|
|
|
|
rects.append(r);
|
|
|
|
}
|
|
|
|
CEventLoop::current().post_event(*window, make<GMultiPaintEvent>(rects, message.window_size()));
|
2019-04-22 01:15:47 +02:00
|
|
|
}
|
2019-01-20 05:48:43 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowResized& message)
|
2019-02-20 15:34:55 +01:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id())) {
|
|
|
|
CEventLoop::current().post_event(*window, make<GResizeEvent>(message.old_rect().size(), message.new_rect().size()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowActivated& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("(%d) WID=%d WindowActivated\n", getpid(), message.window_id());
|
|
|
|
#endif
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GEvent>(GEvent::WindowBecameActive));
|
2019-02-20 15:34:55 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowDeactivated& message)
|
2019-01-26 21:58:43 +01:00
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
2019-12-02 09:33:37 +01:00
|
|
|
dbgprintf("(%d) WID=%d WindowDeactivated\n", getpid(), message.window_id());
|
2019-01-26 21:58:43 +01:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GEvent>(GEvent::WindowBecameInactive));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowCloseRequest& message)
|
|
|
|
{
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GEvent>(GEvent::WindowCloseRequest));
|
2019-01-26 21:58:43 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowEntered& message)
|
2019-02-05 10:31:37 +01:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GEvent>(GEvent::WindowEntered));
|
2019-02-05 10:31:37 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::WindowLeft& message)
|
2019-02-20 10:12:19 +01:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GEvent>(GEvent::WindowLeft));
|
2019-02-20 10:12:19 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::KeyDown& message)
|
2019-01-26 06:39:13 +01:00
|
|
|
{
|
2019-01-26 21:44:13 +01:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
2019-12-02 09:33:37 +01:00
|
|
|
dbgprintf("WID=%d KeyDown character=0x%02x\n", message.window_id(), message.character());
|
2019-01-26 21:44:13 +01:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
auto* window = GWindow::from_window_id(message.window_id());
|
|
|
|
if (!window)
|
|
|
|
return;
|
2019-04-20 21:56:56 +02:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
auto key_event = make<GKeyEvent>(GEvent::KeyDown, message.key(), message.modifiers());
|
|
|
|
if (message.character() != '\0') {
|
|
|
|
char ch = message.character();
|
|
|
|
key_event->m_text = String(&ch, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto* focused_widget = window->focused_widget()) {
|
|
|
|
if (auto* action = focused_widget->action_for_key_event(*key_event)) {
|
2019-04-12 02:53:27 +02:00
|
|
|
if (action->is_enabled()) {
|
|
|
|
action->activate();
|
|
|
|
return;
|
|
|
|
}
|
2019-03-08 01:59:07 +01:00
|
|
|
}
|
2019-03-02 10:04:49 +01:00
|
|
|
}
|
2019-12-02 09:33:37 +01:00
|
|
|
|
|
|
|
if (auto* action = GApplication::the().action_for_key_event(*key_event)) {
|
|
|
|
if (action->is_enabled()) {
|
|
|
|
action->activate();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CEventLoop::current().post_event(*window, move(key_event));
|
2019-01-26 06:39:13 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::KeyUp& message)
|
2019-01-20 05:48:43 +01:00
|
|
|
{
|
2019-01-26 21:44:13 +01:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
2019-12-02 09:33:37 +01:00
|
|
|
dbgprintf("WID=%d KeyUp character=0x%02x\n", message.window_id(), message.character());
|
2019-01-26 21:44:13 +01:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
auto* window = GWindow::from_window_id(message.window_id());
|
|
|
|
if (!window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto key_event = make<GKeyEvent>(GEvent::KeyUp, message.key(), message.modifiers());
|
|
|
|
if (message.character() != '\0') {
|
|
|
|
char ch = message.character();
|
|
|
|
key_event->m_text = String(&ch, 1);
|
2019-01-20 05:48:43 +01:00
|
|
|
}
|
2019-12-02 09:33:37 +01:00
|
|
|
|
|
|
|
CEventLoop::current().post_event(*window, move(key_event));
|
|
|
|
}
|
|
|
|
|
|
|
|
GMouseButton to_gmousebutton(u32 button)
|
|
|
|
{
|
|
|
|
switch (button) {
|
|
|
|
case 0:
|
|
|
|
return GMouseButton::None;
|
|
|
|
case 1:
|
|
|
|
return GMouseButton::Left;
|
|
|
|
case 2:
|
|
|
|
return GMouseButton::Right;
|
|
|
|
case 4:
|
|
|
|
return GMouseButton::Middle;
|
2019-06-07 11:46:02 +02:00
|
|
|
default:
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
break;
|
2019-01-20 05:48:43 +01:00
|
|
|
}
|
2019-01-10 23:19:29 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MouseDown& message)
|
2019-02-12 10:08:35 +01:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("WID=%d MouseDown %d,%d,%d\n", message.window_id(), message.mouse_position().x(), message.mouse_position().y(), message.wheel_delta();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GMouseEvent>(GEvent::MouseDown, message.mouse_position(), message.buttons(), to_gmousebutton(message.button()), message.modifiers(), message.wheel_delta()));
|
2019-02-12 10:08:35 +01:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MouseUp& message)
|
2019-04-04 01:44:35 +02:00
|
|
|
{
|
2019-04-04 16:23:23 +02:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
2019-12-02 09:33:37 +01:00
|
|
|
dbgprintf("WID=%d MouseUp %d,%d,%d\n", message.window_id(), message.mouse_position().x(), message.mouse_position().y(), message.wheel_delta();
|
2019-04-04 16:23:23 +02:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GMouseEvent>(GEvent::MouseUp, message.mouse_position(), message.buttons(), to_gmousebutton(message.button()), message.modifiers(), message.wheel_delta()));
|
2019-04-04 01:44:35 +02:00
|
|
|
}
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MouseMove& message)
|
2019-02-20 21:59:13 +01:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("WID=%d MouseMove %d,%d,%d\n", message.window_id(), message.mouse_position().x(), message.mouse_position().y(), message.wheel_delta();
|
2019-04-10 15:39:28 +02:00
|
|
|
#endif
|
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GMouseEvent>(GEvent::MouseMove, message.mouse_position(), message.buttons(), to_gmousebutton(message.button()), message.modifiers(), message.wheel_delta()));
|
|
|
|
}
|
2019-04-03 17:22:14 +02:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MouseDoubleClick& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("WID=%d MouseDoubleClick %d,%d,%d\n", message.window_id(), message.mouse_position().x(), message.mouse_position().y(), message.wheel_delta();
|
|
|
|
#endif
|
2019-02-14 09:32:34 +01:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GMouseEvent>(GEvent::MouseDoubleClick, message.mouse_position(), message.buttons(), to_gmousebutton(message.button()), message.modifiers(), message.wheel_delta()));
|
|
|
|
}
|
2019-09-14 09:19:05 +02:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MouseWheel& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("WID=%d MouseWheel %d,%d,%d\n", message.window_id(), message.mouse_position().x(), message.mouse_position().y(), message.wheel_delta();
|
|
|
|
#endif
|
2019-02-14 09:32:34 +01:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GMouseEvent>(GEvent::MouseWheel, message.mouse_position(), message.buttons(), to_gmousebutton(message.button()), message.modifiers(), message.wheel_delta()));
|
|
|
|
}
|
2019-02-12 10:08:35 +01:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::MenuItemActivated& message)
|
|
|
|
{
|
|
|
|
auto* menu = GMenu::from_menu_id(message.menu_id());
|
|
|
|
if (!menu) {
|
|
|
|
dbgprintf("GEventLoop received event for invalid menu ID %d\n", message.menu_id());
|
|
|
|
return;
|
2019-01-20 05:48:43 +01:00
|
|
|
}
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* action = menu->action_at(message.identifier()))
|
2019-12-09 21:25:48 +01:00
|
|
|
action->activate(menu);
|
2019-12-02 09:33:37 +01:00
|
|
|
}
|
2019-02-20 21:59:13 +01:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::WM_WindowStateChanged& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("GEventLoop: handle_wm_event: %d\n", (int)event.type);
|
|
|
|
#endif
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GWMWindowStateChangedEvent>(message.client_id(), message.window_id(), message.title(), message.rect(), message.is_active(), (GWindowType)message.window_type(), message.is_minimized()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::WM_WindowRectChanged& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("GEventLoop: handle_wm_event: %d\n", (int)event.type);
|
|
|
|
#endif
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GWMWindowRectChangedEvent>(message.client_id(), message.window_id(), message.rect()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::WM_WindowIconBitmapChanged& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("GEventLoop: handle_wm_event: %d\n", (int)event.type);
|
|
|
|
#endif
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GWMWindowIconBitmapChangedEvent>(message.client_id(), message.window_id(), message.icon_buffer_id(), message.icon_size()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::WM_WindowRemoved& message)
|
|
|
|
{
|
|
|
|
#ifdef GEVENTLOOP_DEBUG
|
|
|
|
dbgprintf("GEventLoop: handle_wm_event: %d\n", (int)event.type);
|
2019-04-10 15:39:28 +02:00
|
|
|
#endif
|
2019-12-02 09:33:37 +01:00
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
|
|
|
CEventLoop::current().post_event(*window, make<GWMWindowRemovedEvent>(message.client_id(), message.window_id()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::ScreenRectChanged& message)
|
|
|
|
{
|
|
|
|
GDesktop::the().did_receive_screen_rect({}, message.rect());
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::ClipboardContentsChanged& message)
|
|
|
|
{
|
|
|
|
GClipboard::the().did_receive_clipboard_contents_changed({}, message.content_type());
|
2018-10-10 15:12:38 +02:00
|
|
|
}
|
2019-02-01 03:50:06 +01:00
|
|
|
|
2019-12-02 09:33:37 +01:00
|
|
|
void GWindowServerConnection::handle(const WindowClient::AsyncSetWallpaperFinished&)
|
2019-05-03 01:38:24 +02:00
|
|
|
{
|
2019-12-02 09:33:37 +01:00
|
|
|
// This is handled manually by GDesktop::set_wallpaper().
|
2019-05-03 01:38:24 +02:00
|
|
|
}
|
2019-12-08 16:50:23 +01:00
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::DragDropped& message)
|
|
|
|
{
|
|
|
|
if (auto* window = GWindow::from_window_id(message.window_id()))
|
2019-12-19 20:09:31 +01:00
|
|
|
CEventLoop::current().post_event(*window, make<GDropEvent>(message.mouse_position(), message.text(), message.data_type(), message.data()));
|
2019-12-08 16:50:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::DragAccepted&)
|
|
|
|
{
|
|
|
|
GDragOperation::notify_accepted({});
|
|
|
|
}
|
|
|
|
|
|
|
|
void GWindowServerConnection::handle(const WindowClient::DragCancelled&)
|
|
|
|
{
|
|
|
|
GDragOperation::notify_cancelled({});
|
|
|
|
}
|