kodi
xbmc
interfaces
json-rpc
InputOperations.h
1
/*
2
* Copyright (C) 2005-2018 Team Kodi
3
* This file is part of Kodi - https://kodi.tv
4
*
5
* SPDX-License-Identifier: GPL-2.0-or-later
6
* See LICENSES/README.md for more information.
7
*/
8
9
#pragma once
10
11
#include "JSONRPC.h"
12
13
class
CVariant
;
14
15
namespace
JSONRPC
16
{
17
class
CInputOperations
18
{
19
public
:
20
static
JSONRPC_STATUS
SendText(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
21
static
JSONRPC_STATUS
ExecuteAction(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
22
23
static
JSONRPC_STATUS
ButtonEvent(
const
std::string& method,
24
ITransportLayer
* transport,
25
IClient
* client,
26
const
CVariant
& parameterObject,
27
CVariant
& result);
28
29
static
JSONRPC_STATUS
Left(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
30
static
JSONRPC_STATUS
Right(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
31
static
JSONRPC_STATUS
Down(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
32
static
JSONRPC_STATUS
Up(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
33
34
static
JSONRPC_STATUS
Select(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
35
static
JSONRPC_STATUS
Back(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
36
static
JSONRPC_STATUS
ContextMenu(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
37
static
JSONRPC_STATUS
Info(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
38
static
JSONRPC_STATUS
Home(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
39
40
static
JSONRPC_STATUS
ShowCodec(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
41
static
JSONRPC_STATUS
ShowOSD(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
42
static
JSONRPC_STATUS
ShowPlayerProcessInfo(
const
std::string &method,
ITransportLayer
*transport,
IClient
*client,
const
CVariant
¶meterObject,
CVariant
&result);
43
44
static
JSONRPC_STATUS
SendAction(
int
actionID,
bool
wakeScreensaver =
true
,
bool
waitResult =
false
);
45
46
private
:
47
static
JSONRPC_STATUS
activateWindow(
int
windowID);
48
static
bool
handleScreenSaver();
49
};
50
}
JSONRPC
Definition:
AddonsOperations.h:23
CVariant
Definition:
Variant.h:31
JSONRPC::JSONRPC_STATUS
JSONRPC_STATUS
Possible statuc codes of a response to a JSON-RPC request.
Definition:
JSONRPCUtils.h:29
JSONRPC::CInputOperations
Definition:
InputOperations.h:17
JSONRPC::ITransportLayer
Definition:
ITransportLayer.h:27
JSONRPC::IClient
Definition:
IClient.h:13
Generated by
1.8.13