blob: 9b6c2e7a39192f9b5a936462459997e8c2afc197 (
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
|
/*********************************************************************************************************************
* Copyright 2013-2014 Tobii Technology AB. All rights reserved.
* Query.inl
*********************************************************************************************************************/
#if !defined(__TOBII_TX_CLIENT_CPPBINDINGS_Query__INL__)
#define __TOBII_TX_CLIENT_CPPBINDINGS_Query__INL__
/*********************************************************************************************************************/
TX_NAMESPACE_BEGIN
/*********************************************************************************************************************/
inline Query::Query(const std::shared_ptr<const Context>& spContext, TX_HANDLE hQuery)
: InteractionObject(spContext, hQuery)
{}
/*********************************************************************************************************************/
inline std::shared_ptr<Bounds> Query::GetBounds() const
{
Tx::Utils::ScopedHandle hBounds;
TX_VALIDATE(txGetQueryBounds(_hObject, &hBounds));
auto spBounds = _spContext->CreateObject<Bounds>(hBounds);
return spBounds;
}
/*********************************************************************************************************************/
inline std::vector<std::string> Query::GetWindowIds() const
{
TX_SIZE windowIdCount;
TX_VALIDATE(txGetQueryWindowIdCount(_hObject, &windowIdCount));
std::vector<std::string> windowIds;
for (int i = 0; i < windowIdCount; i++)
{
std::string windowId;
TX_VALIDATE(Tx::Utils::GetString(&windowId, [i, this](TX_CHAR* pBuf, TX_SIZE* pSize)
{
return txGetQueryWindowId(_hObject, i, pBuf, pSize);
}));
windowIds.push_back(windowId);
}
return windowIds;
}
/*********************************************************************************************************************/
TX_NAMESPACE_END
/*********************************************************************************************************************/
#endif // !defined(__TOBII_TX_CLIENT_CPPBINDINGS_Query__INL__)
/*********************************************************************************************************************/
|