FreeRDP/server/shadow/shadow_input.c

115 lines
3.3 KiB
C
Raw Normal View History

2014-07-11 01:20:41 +04:00
/**
* FreeRDP: A Remote Desktop Protocol Implementation
*
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-02-16 13:20:38 +03:00
#include <freerdp/config.h>
2014-07-11 01:20:41 +04:00
#include "shadow.h"
2018-09-25 16:17:19 +03:00
static BOOL shadow_input_synchronize_event(rdpInput* input, UINT32 flags)
2014-07-11 01:20:41 +04:00
{
2019-11-06 17:24:51 +03:00
rdpShadowClient* client = (rdpShadowClient*)input->context;
2014-07-12 09:18:08 +04:00
rdpShadowSubsystem* subsystem = client->server->subsystem;
2014-07-11 01:20:41 +04:00
2014-07-15 02:01:29 +04:00
if (!client->mayInteract)
return TRUE;
2014-07-15 02:01:29 +04:00
2018-09-25 16:17:19 +03:00
return IFCALLRESULT(TRUE, subsystem->SynchronizeEvent, subsystem, client, flags);
2014-07-11 01:20:41 +04:00
}
static BOOL shadow_input_keyboard_event(rdpInput* input, UINT16 flags, UINT8 code)
2014-07-11 01:20:41 +04:00
{
2019-11-06 17:24:51 +03:00
rdpShadowClient* client = (rdpShadowClient*)input->context;
2014-07-12 09:18:08 +04:00
rdpShadowSubsystem* subsystem = client->server->subsystem;
2014-07-11 01:20:41 +04:00
2014-07-15 02:01:29 +04:00
if (!client->mayInteract)
return TRUE;
2018-09-25 16:17:19 +03:00
return IFCALLRESULT(TRUE, subsystem->KeyboardEvent, subsystem, client, flags, code);
2014-07-11 01:20:41 +04:00
}
2018-09-25 16:17:19 +03:00
static BOOL shadow_input_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code)
2014-07-11 01:20:41 +04:00
{
2019-11-06 17:24:51 +03:00
rdpShadowClient* client = (rdpShadowClient*)input->context;
2014-07-12 09:18:08 +04:00
rdpShadowSubsystem* subsystem = client->server->subsystem;
2014-07-11 01:20:41 +04:00
2014-07-15 02:01:29 +04:00
if (!client->mayInteract)
return TRUE;
2014-07-15 02:01:29 +04:00
2018-09-25 16:17:19 +03:00
return IFCALLRESULT(TRUE, subsystem->UnicodeKeyboardEvent, subsystem, client, flags, code);
2014-07-11 01:20:41 +04:00
}
2018-09-25 16:17:19 +03:00
static BOOL shadow_input_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2014-07-11 01:20:41 +04:00
{
2019-11-06 17:24:51 +03:00
rdpShadowClient* client = (rdpShadowClient*)input->context;
2014-07-12 09:18:08 +04:00
rdpShadowSubsystem* subsystem = client->server->subsystem;
2014-07-11 01:20:41 +04:00
if (client->server->shareSubRect)
{
x += client->server->subRect.left;
y += client->server->subRect.top;
}
2014-11-07 21:51:10 +03:00
if (!(flags & PTR_FLAGS_WHEEL))
{
client->pointerX = x;
client->pointerY = y;
2019-11-06 17:24:51 +03:00
if ((client->pointerX == subsystem->pointerX) && (client->pointerY == subsystem->pointerY))
2014-11-07 21:51:10 +03:00
{
flags &= ~PTR_FLAGS_MOVE;
if (!(flags & (PTR_FLAGS_BUTTON1 | PTR_FLAGS_BUTTON2 | PTR_FLAGS_BUTTON3)))
return TRUE;
2014-11-07 21:51:10 +03:00
}
}
2014-07-15 02:01:29 +04:00
if (!client->mayInteract)
return TRUE;
2014-07-15 02:01:29 +04:00
2018-09-25 16:17:19 +03:00
return IFCALLRESULT(TRUE, subsystem->MouseEvent, subsystem, client, flags, x, y);
2014-07-11 01:20:41 +04:00
}
2018-09-25 16:17:19 +03:00
static BOOL shadow_input_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2014-07-11 01:20:41 +04:00
{
2019-11-06 17:24:51 +03:00
rdpShadowClient* client = (rdpShadowClient*)input->context;
2014-07-12 09:18:08 +04:00
rdpShadowSubsystem* subsystem = client->server->subsystem;
2014-07-11 01:20:41 +04:00
if (client->server->shareSubRect)
{
x += client->server->subRect.left;
y += client->server->subRect.top;
}
2014-11-07 21:51:10 +03:00
client->pointerX = x;
client->pointerY = y;
2014-07-15 02:01:29 +04:00
if (!client->mayInteract)
return TRUE;
2014-07-15 02:01:29 +04:00
2018-09-25 16:17:19 +03:00
return IFCALLRESULT(TRUE, subsystem->ExtendedMouseEvent, subsystem, client, flags, x, y);
2014-07-11 01:20:41 +04:00
}
void shadow_input_register_callbacks(rdpInput* input)
{
input->SynchronizeEvent = shadow_input_synchronize_event;
input->KeyboardEvent = shadow_input_keyboard_event;
input->UnicodeKeyboardEvent = shadow_input_unicode_keyboard_event;
input->MouseEvent = shadow_input_mouse_event;
input->ExtendedMouseEvent = shadow_input_extended_mouse_event;
}