-
Notifications
You must be signed in to change notification settings - Fork 6
/
mouse.cpp
127 lines (112 loc) · 3.64 KB
/
mouse.cpp
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* This file is part of libvbox
* Copyright (C) 2019 Michael Hansen
*
* libvbox is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* libvbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with libvbox; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "libvbox_p.h"
COM_WRAP_IFC(IMouse)
bool VBox::IMouse::absoluteSupported() const
{
COM_Bool result;
COM_GetValue(get_IFC(), AbsoluteSupported, result);
return static_cast<bool>(result);
}
bool VBox::IMouse::relativeSupported() const
{
COM_Bool result;
COM_GetValue(get_IFC(), RelativeSupported, result);
return result;
}
#if VirtualBoxSDK_VERSION < VBox_MAKE_VERSION(7, 0, 0)
bool VBox::IMouse::multiTouchSupported() const
{
COM_Bool result;
COM_GetValue(get_IFC(), MultiTouchSupported, result);
return result;
}
#else
bool VBox::IMouse::touchScreenSupported() const
{
COM_Bool result;
COM_GetValue(get_IFC(), TouchScreenSupported, result);
return result;
}
bool VBox::IMouse::touchPadSupported() const
{
COM_Bool result;
COM_GetValue(get_IFC(), TouchPadSupported, result);
return result;
}
#endif
bool VBox::IMouse::needsHostCursor() const
{
COM_Bool result;
COM_GetValue(get_IFC(), NeedsHostCursor, result);
return result;
}
VBox::COMPtr<VBox::IMousePointerShape> VBox::IMouse::pointerShape() const
{
COMPtr<IMousePointerShape> result;
COM_GetValue_Wrap(get_IFC(), PointerShape, result);
return result;
}
VBox::COMPtr<VBox::IEventSource> VBox::IMouse::eventSource() const
{
COMPtr<IEventSource> result;
COM_GetValue_Wrap(get_IFC(), EventSource, result);
return result;
}
void VBox::IMouse::putMouseEvent(int32_t dx, int32_t dy, int32_t dz,
int32_t dw, int32_t buttonState)
{
auto rc = get_IFC()->PutMouseEvent(dx, dy, dz, dw, buttonState);
COM_ERROR_CHECK(rc);
}
void VBox::IMouse::putMouseEventAbsolute(int32_t x, int32_t y, int32_t dz,
int32_t dw, int32_t buttonState)
{
auto rc = get_IFC()->PutMouseEventAbsolute(x, y, dz, dw, buttonState);
COM_ERROR_CHECK(rc);
}
void VBox::IMouse::putEventMultiTouch(int32_t count,
const std::vector<int64_t> &contacts,
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
bool isTouchScreen,
#endif
uint32_t scanTime)
{
COM_ArrayProxy<COM_Long64> pContacts(contacts);
auto rc = get_IFC()->PutEventMultiTouch(count, COM_ArrayParameter(pContacts),
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
isTouchScreen,
#endif
scanTime);
COM_ERROR_CHECK(rc);
}
void VBox::IMouse::putEventMultiTouchString(int32_t count,
const std::u16string &contacts,
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
bool isTouchScreen,
#endif
uint32_t scanTime)
{
COM_StringProxy pContacts(contacts);
auto rc = get_IFC()->PutEventMultiTouchString(count, pContacts.m_text,
#if VirtualBoxSDK_VERSION >= VBox_MAKE_VERSION(7, 0, 0)
isTouchScreen,
#endif
scanTime);
COM_ERROR_CHECK(rc);
}