build files and documentation: MIT images / sources: GPL-2.0-only breeze icons: LGPL-2.0-only Microsoft MSM file, vc redist license
22 lines
580 B
C++
22 lines
580 B
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2015 - 2021 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "server/ClientProxy1_7.h"
|
|
|
|
class ClientProxy1_8 : public ClientProxy1_7
|
|
{
|
|
public:
|
|
ClientProxy1_8(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
|
|
~ClientProxy1_8() override = default;
|
|
|
|
void keyDown(KeyID, KeyModifierMask, KeyButton, const std::string &) override;
|
|
|
|
private:
|
|
void synchronizeLanguages() const;
|
|
};
|