blob: 953687fb6bfa85db7e6038725f669e616497e9c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/*********************************************************************************************************************
* Copyright 2013-2014 Tobii Technology AB. All rights reserved.
* Command.inl
*********************************************************************************************************************/
#if !defined(__TOBII_TX_CLIENT_CPPBINDINGS_Command__INL__)
#define __TOBII_TX_CLIENT_CPPBINDINGS_Command__INL__
/*********************************************************************************************************************/
TX_NAMESPACE_BEGIN
/*********************************************************************************************************************/
inline Command::Command(const std::shared_ptr<const Context>& spContext, TX_HANDLE hCommand)
: InteractionObject(spContext, hCommand)
{}
/*********************************************************************************************************************/
inline TX_COMMANDTYPE Command::GetType() const
{
TX_COMMANDTYPE commandType;
TX_VALIDATE(txGetCommandType(_hObject, &commandType));
return commandType;
}
/*********************************************************************************************************************/
inline void Command::ExecuteAsync(AsyncDataHandler fnHandler)
{
auto spThis = shared_from_this();
auto fnProxy = [&, spThis, fnHandler](TX_CONSTHANDLE hAsyncData)
{
GetContext()->InvokeAsyncDataHandler(hAsyncData, fnHandler);
};
TX_VALIDATE(Tx::ExecuteCommandAsync(_hObject, fnProxy));
}
/*********************************************************************************************************************/
inline std::shared_ptr<InteractionObject> Command::GetData() const
{
auto spProperty = GetProperty(TX_LITERAL_DATA);
std::shared_ptr<InteractionObject> spData;
if(spProperty->TryGetValue(&spData))
return spData;
return nullptr;
}
/*********************************************************************************************************************/
inline void Command::SetData(const std::shared_ptr<InteractionObject>& spData)
{
auto spProperty = GetProperty(TX_LITERAL_DATA);
spProperty->SetValue(spData);
}
/*********************************************************************************************************************/
TX_NAMESPACE_END
/*********************************************************************************************************************/
#endif // !defined(__TOBII_TX_CLIENT_CPPBINDINGS_Command__INL__)
/*********************************************************************************************************************/
|