Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ClientArgs.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2014 - 2016 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
9#include "ArgsBase.h"
10
11namespace deskflow {
13{
14 Normal = 1,
16};
17
18class ClientArgs : public ArgsBase
19{
20
22public:
23 ClientArgs();
24
25 ~ClientArgs() override = default;
26
27public:
28 int m_yscroll = 0;
29 bool m_enableLangSync = false;
30
36
40 std::string m_serverAddress;
41};
42} // namespace deskflow
std::string m_serverAddress
m_serverAddress stores deskflow server address
Definition ClientArgs.h:40
int m_yscroll
Definition ClientArgs.h:28
~ClientArgs() override=default
bool m_enableLangSync
Definition ClientArgs.h:29
ClientScrollDirection m_clientScrollDirection
Should keyboard input be in same language as on server.
Definition ClientArgs.h:35
ClientArgs()
Public functions.
Definition ClientArgs.cpp:11
Definition EventTypes.h:11
ClientScrollDirection
Definition ClientArgs.h:13
@ Normal
Same direction as the server.
Definition ClientArgs.h:14
@ Inverted
Inverted scroll direction from the server.
Definition ClientArgs.h:15