Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ClientProxy1_8.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2015 - 2021 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
10
12{
13public:
14 ClientProxy1_8(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
15 ~ClientProxy1_8() override = default;
16
17 void keyDown(KeyID, KeyModifierMask, KeyButton, const std::string &) override;
18
19private:
20 void synchronizeLanguages() const;
21};
static const struct sockaddr FAR * name
Definition ArchNetworkWinsock.cpp:27
uint32_t KeyID
Key ID.
Definition KeyTypes.h:22
uint16_t KeyButton
Key Code.
Definition KeyTypes.h:35
uint32_t KeyModifierMask
Modifier key mask.
Definition KeyTypes.h:45
ClientProxy1_7(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events)
Definition ClientProxy1_7.cpp:17
ClientProxy1_8(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events)
Definition ClientProxy1_8.cpp:13
~ClientProxy1_8() override=default
void keyDown(KeyID, KeyModifierMask, KeyButton, const std::string &) override
Notify of key press.
Definition ClientProxy1_8.cpp:33
Event queue interface.
Definition IEventQueue.h:32
Deskflow server.
Definition Server.h:44
Bidirectional stream interface.
Definition IStream.h:24