mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "server/ClientProxy1_1.h"
|
|
#include "deskflow/AppUtil.h"
|
|
|
|
#include "base/Log.h"
|
|
#include "deskflow/ProtocolUtil.h"
|
|
|
|
#include <cstring>
|
|
|
|
//
|
|
// ClientProxy1_1
|
|
//
|
|
|
|
ClientProxy1_1::ClientProxy1_1(const std::string &name, deskflow::IStream *stream, IEventQueue *events)
|
|
: ClientProxy1_0(name, stream, events)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
void ClientProxy1_1::keyDown(KeyID key, KeyModifierMask mask, KeyButton button, const std::string &)
|
|
{
|
|
LOG((CLOG_DEBUG1 "send key down to \"%s\" id=%d, mask=0x%04x, button=0x%04x", getName().c_str(), key, mask, button));
|
|
ProtocolUtil::writef(getStream(), kMsgDKeyDown, key, mask, button);
|
|
}
|
|
|
|
void ClientProxy1_1::keyRepeat(
|
|
KeyID key, KeyModifierMask mask, int32_t count, KeyButton button, const std::string &lang
|
|
)
|
|
{
|
|
LOG(
|
|
(CLOG_DEBUG1 "send key repeat to \"%s\" id=%d, mask=0x%04x, count=%d, "
|
|
"button=0x%04x, lang=\"%s\"",
|
|
getName().c_str(), key, mask, count, button, lang.c_str())
|
|
);
|
|
ProtocolUtil::writef(getStream(), kMsgDKeyRepeat, key, mask, count, button, &lang);
|
|
}
|
|
|
|
void ClientProxy1_1::keyUp(KeyID key, KeyModifierMask mask, KeyButton button)
|
|
{
|
|
LOG((CLOG_DEBUG1 "send key up to \"%s\" id=%d, mask=0x%04x, button=0x%04x", getName().c_str(), key, mask, button));
|
|
ProtocolUtil::writef(getStream(), kMsgDKeyUp, key, mask, button);
|
|
}
|