diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:47:19 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:47:19 +0200 |
commit | 8358833bc8eb15d36086d41707ca107eb89a36ab (patch) | |
tree | ba5130de8f752fba1043a6e2423a7709b14e6aaf /Servers/WindowServer/WSEventLoop.cpp | |
parent | 76b333749899c666dee522fd064234d8b94d9cfd (diff) | |
download | serenity-8358833bc8eb15d36086d41707ca107eb89a36ab.zip |
WindowServer: Run clang-format on everything.
Diffstat (limited to 'Servers/WindowServer/WSEventLoop.cpp')
-rw-r--r-- | Servers/WindowServer/WSEventLoop.cpp | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/Servers/WindowServer/WSEventLoop.cpp b/Servers/WindowServer/WSEventLoop.cpp index ab59c03afd..479b7defac 100644 --- a/Servers/WindowServer/WSEventLoop.cpp +++ b/Servers/WindowServer/WSEventLoop.cpp @@ -1,21 +1,21 @@ -#include <WindowServer/WSEventLoop.h> -#include <WindowServer/WSEvent.h> +#include <Kernel/KeyCode.h> +#include <Kernel/MousePacket.h> #include <LibCore/CObject.h> -#include <WindowServer/WSWindowManager.h> -#include <WindowServer/WSScreen.h> -#include <WindowServer/WSClientConnection.h> #include <WindowServer/WSAPITypes.h> +#include <WindowServer/WSClientConnection.h> #include <WindowServer/WSCursor.h> -#include <Kernel/KeyCode.h> -#include <Kernel/MousePacket.h> -#include <sys/socket.h> +#include <WindowServer/WSEvent.h> +#include <WindowServer/WSEventLoop.h> +#include <WindowServer/WSScreen.h> +#include <WindowServer/WSWindowManager.h> +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> #include <sys/select.h> +#include <sys/socket.h> #include <sys/time.h> #include <time.h> #include <unistd.h> -#include <fcntl.h> -#include <stdio.h> -#include <errno.h> //#define WSMESSAGELOOP_DEBUG @@ -104,7 +104,7 @@ static Vector<Rect, 32> get_rects(const WSAPI_ClientMessage& message, const Byte { Vector<Rect, 32> rects; if (message.rect_count > (WSAPI_ClientMessage::max_inline_rect_count + extra_data.size() / sizeof(WSAPI_Rect))) { - return { }; + return {}; } for (int i = 0; i < min(WSAPI_ClientMessage::max_inline_rect_count, message.rect_count); ++i) rects.append(message.rects[i]); @@ -217,19 +217,19 @@ bool WSEventLoop::on_receive_from_client(int client_id, const WSAPI_ClientMessag } post_event(client, - make<WSAPICreateWindowRequest>(client_id, - message.window.rect, - String(message.text, message.text_length), - message.window.has_alpha_channel, - message.window.modal, - message.window.resizable, - message.window.fullscreen, - message.window.show_titlebar, - message.window.opacity, - message.window.base_size, - message.window.size_increment, - ws_window_type, - Color::from_rgba(message.window.background_color))); + make<WSAPICreateWindowRequest>(client_id, + message.window.rect, + String(message.text, message.text_length), + message.window.has_alpha_channel, + message.window.modal, + message.window.resizable, + message.window.fullscreen, + message.window.show_titlebar, + message.window.opacity, + message.window.base_size, + message.window.size_increment, + ws_window_type, + Color::from_rgba(message.window.background_color))); break; } case WSAPI_ClientMessage::Type::DestroyWindow: @@ -320,7 +320,7 @@ bool WSEventLoop::on_receive_from_client(int client_id, const WSAPI_ClientMessag void WSEventLoop::add_file_descriptors_for_select(fd_set& fds, int& max_fd_added) { - auto add_fd_to_set = [&max_fd_added] (int fd, auto& set) { + auto add_fd_to_set = [&max_fd_added](int fd, auto& set) { FD_SET(fd, &set); if (fd > max_fd_added) max_fd_added = fd; @@ -328,7 +328,7 @@ void WSEventLoop::add_file_descriptors_for_select(fd_set& fds, int& max_fd_added add_fd_to_set(m_keyboard_fd, fds); add_fd_to_set(m_mouse_fd, fds); add_fd_to_set(m_server_fd, fds); - WSClientConnection::for_each_client([&] (WSClientConnection& client) { + WSClientConnection::for_each_client([&](WSClientConnection& client) { add_fd_to_set(client.fd(), fds); }); } @@ -341,7 +341,7 @@ void WSEventLoop::process_file_descriptors_after_select(const fd_set& fds) drain_keyboard(); if (FD_ISSET(m_mouse_fd, &fds)) drain_mouse(); - WSClientConnection::for_each_client([&] (WSClientConnection& client) { + WSClientConnection::for_each_client([&](WSClientConnection& client) { if (FD_ISSET(client.fd(), &fds)) drain_client(client); }); |