mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
5bb79ea0a7
This updates all existing code to use the auto-generated client methods instead of post_message/send_sync.
37 lines
996 B
C++
37 lines
996 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <Clipboard/ClipboardClientEndpoint.h>
|
|
#include <Clipboard/ClipboardServerEndpoint.h>
|
|
#include <LibIPC/ClientConnection.h>
|
|
|
|
namespace Clipboard {
|
|
|
|
class ClientConnection final
|
|
: public IPC::ClientConnection<ClipboardClientEndpoint, ClipboardServerEndpoint> {
|
|
C_OBJECT(ClientConnection);
|
|
|
|
public:
|
|
explicit ClientConnection(NonnullRefPtr<Core::LocalSocket>, int client_id);
|
|
virtual ~ClientConnection() override;
|
|
|
|
virtual void die() override;
|
|
|
|
static void for_each_client(Function<void(ClientConnection&)>);
|
|
|
|
void notify_about_clipboard_change();
|
|
|
|
private:
|
|
virtual void greet() override;
|
|
virtual Messages::ClipboardServer::GetClipboardDataResponse get_clipboard_data() override;
|
|
virtual void set_clipboard_data(Core::AnonymousBuffer const&, String const&, IPC::Dictionary const&) override;
|
|
};
|
|
|
|
}
|