FreeRDP/server/Mac/mf_input.c

262 lines
6.1 KiB
C
Raw Normal View History

2013-02-21 04:20:49 +04:00
/**
* FreeRDP: A Remote Desktop Protocol Implementation
* FreeRDP Mac OS X Server (Input)
*
* Copyright 2013 Corey Clayton <can.of.tuna@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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2013-02-22 04:56:32 +04:00
#include <ApplicationServices/ApplicationServices.h>
2013-02-21 04:20:49 +04:00
#include <winpr/windows.h>
2013-02-22 04:56:32 +04:00
#include "mf_input.h"
#include "mf_info.h"
2013-02-21 04:20:49 +04:00
2013-02-22 04:56:32 +04:00
void mf_input_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code)
2013-02-21 04:20:49 +04:00
{
2013-02-22 04:56:32 +04:00
/*
2013-02-21 04:20:49 +04:00
INPUT keyboard_event;
keyboard_event.type = INPUT_KEYBOARD;
keyboard_event.ki.wVk = 0;
keyboard_event.ki.wScan = code;
keyboard_event.ki.dwFlags = KEYEVENTF_SCANCODE;
keyboard_event.ki.dwExtraInfo = 0;
keyboard_event.ki.time = 0;
if (flags & KBD_FLAGS_RELEASE)
keyboard_event.ki.dwFlags |= KEYEVENTF_KEYUP;
if (flags & KBD_FLAGS_EXTENDED)
keyboard_event.ki.dwFlags |= KEYEVENTF_EXTENDEDKEY;
SendInput(1, &keyboard_event, sizeof(INPUT));
2013-02-22 04:56:32 +04:00
*/
2013-02-21 04:20:49 +04:00
}
2013-02-22 04:56:32 +04:00
void mf_input_unicode_keyboard_event(rdpInput* input, UINT16 flags, UINT16 code)
2013-02-21 04:20:49 +04:00
{
2013-02-22 04:56:32 +04:00
/*
2013-02-21 04:20:49 +04:00
INPUT keyboard_event;
keyboard_event.type = INPUT_KEYBOARD;
keyboard_event.ki.wVk = 0;
keyboard_event.ki.wScan = code;
keyboard_event.ki.dwFlags = KEYEVENTF_UNICODE;
keyboard_event.ki.dwExtraInfo = 0;
keyboard_event.ki.time = 0;
if (flags & KBD_FLAGS_RELEASE)
keyboard_event.ki.dwFlags |= KEYEVENTF_KEYUP;
SendInput(1, &keyboard_event, sizeof(INPUT));
2013-02-22 04:56:32 +04:00
*/
2013-02-21 04:20:49 +04:00
}
2013-02-22 04:56:32 +04:00
void mf_input_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2013-02-21 04:20:49 +04:00
{
float width, height;
if (flags & PTR_FLAGS_WHEEL)
{
2013-02-22 04:56:32 +04:00
/*
2013-02-21 04:20:49 +04:00
mouse_event.mi.dwFlags = MOUSEEVENTF_WHEEL;
mouse_event.mi.mouseData = flags & WheelRotationMask;
if (flags & PTR_FLAGS_WHEEL_NEGATIVE)
mouse_event.mi.mouseData *= -1;
SendInput(1, &mouse_event, sizeof(INPUT));
2013-02-22 04:56:32 +04:00
*/
2013-02-21 04:20:49 +04:00
}
else
{
2013-02-22 04:56:32 +04:00
mfInfo * mfi;
2013-02-22 22:13:18 +04:00
CGEventSourceRef source = CGEventSourceCreate (kCGEventSourceStateHIDSystemState);
2013-02-22 04:56:32 +04:00
CGEventType mouseType = kCGEventNull;
CGMouseButton mouseButton = kCGMouseButtonLeft;
2013-02-21 04:20:49 +04:00
2013-02-22 04:56:32 +04:00
mfi = mf_info_get_instance();
2013-02-21 04:20:49 +04:00
2013-02-22 04:56:32 +04:00
//width and height of primary screen (even in multimon setups
width = (float) mfi->servscreen_width;
height = (float) mfi->servscreen_height;
x += mfi->servscreen_xoffset;
y += mfi->servscreen_yoffset;
2013-02-21 04:20:49 +04:00
if (flags & PTR_FLAGS_MOVE)
{
if (mfi->mouse_down_left == TRUE)
{
mouseType = kCGEventLeftMouseDragged;
}
else if (mfi->mouse_down_right == TRUE)
{
mouseType = kCGEventRightMouseDragged;
}
else if (mfi->mouse_down_other == TRUE)
{
mouseType = kCGEventOtherMouseDragged;
}
else
{
mouseType = kCGEventMouseMoved;
}
2013-02-22 04:56:32 +04:00
2013-02-22 22:13:18 +04:00
CGEventRef move = CGEventCreateMouseEvent(source,
mouseType,
CGPointMake(x, y),
mouseButton // ignored for just movement
);
2013-02-22 04:56:32 +04:00
CGEventPost(kCGHIDEventTap, move);
CFRelease(move);
2013-02-21 04:20:49 +04:00
}
2013-02-22 04:56:32 +04:00
2013-02-21 04:20:49 +04:00
if (flags & PTR_FLAGS_BUTTON1)
{
2013-02-22 04:56:32 +04:00
mouseButton = kCGMouseButtonLeft;
2013-02-21 04:20:49 +04:00
if (flags & PTR_FLAGS_DOWN)
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventLeftMouseDown;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_left = TRUE;
}
2013-02-21 04:20:49 +04:00
else
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventLeftMouseUp;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_right = FALSE;
}
2013-02-21 04:20:49 +04:00
}
else if (flags & PTR_FLAGS_BUTTON2)
{
2013-02-22 04:56:32 +04:00
mouseButton = kCGMouseButtonRight;
2013-02-21 04:20:49 +04:00
if (flags & PTR_FLAGS_DOWN)
2013-02-22 22:13:18 +04:00
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventRightMouseDown;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_right = TRUE;
}
2013-02-21 04:20:49 +04:00
else
2013-02-22 22:13:18 +04:00
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventRightMouseUp;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_right = FALSE;
}
2013-02-22 04:56:32 +04:00
2013-02-21 04:20:49 +04:00
}
else if (flags & PTR_FLAGS_BUTTON3)
{
2013-02-22 04:56:32 +04:00
mouseButton = kCGMouseButtonCenter;
2013-02-21 04:20:49 +04:00
if (flags & PTR_FLAGS_DOWN)
2013-02-22 22:13:18 +04:00
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventOtherMouseDown;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_other = TRUE;
}
2013-02-21 04:20:49 +04:00
else
2013-02-22 22:13:18 +04:00
{
2013-02-22 04:56:32 +04:00
mouseType = kCGEventOtherMouseUp;
2013-02-22 22:13:18 +04:00
mfi->mouse_down_other = FALSE;
}
2013-02-22 04:56:32 +04:00
}
2013-02-22 04:56:32 +04:00
2013-02-22 22:13:18 +04:00
CGEventRef mouseEvent = CGEventCreateMouseEvent(source,
mouseType,
CGPointMake(x, y),
mouseButton
);
2013-02-22 04:56:32 +04:00
CGEventPost(kCGHIDEventTap, mouseEvent);
CFRelease(mouseEvent);
2013-02-22 22:13:18 +04:00
CFRelease(source);
2013-02-21 04:20:49 +04:00
}
}
2013-02-22 04:56:32 +04:00
void mf_input_extended_mouse_event(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2013-02-21 04:20:49 +04:00
{
2013-02-22 04:56:32 +04:00
/*
2013-02-21 04:20:49 +04:00
if ((flags & PTR_XFLAGS_BUTTON1) || (flags & PTR_XFLAGS_BUTTON2))
{
INPUT mouse_event;
ZeroMemory(&mouse_event, sizeof(INPUT));
mouse_event.type = INPUT_MOUSE;
if (flags & PTR_FLAGS_MOVE)
{
float width, height;
wfInfo * wfi;
wfi = wf_info_get_instance();
//width and height of primary screen (even in multimon setups
width = (float) GetSystemMetrics(SM_CXSCREEN);
height = (float) GetSystemMetrics(SM_CYSCREEN);
x += wfi->servscreen_xoffset;
y += wfi->servscreen_yoffset;
//mouse_event.mi.dx = x * (0xFFFF / width);
//mouse_event.mi.dy = y * (0xFFFF / height);
mouse_event.mi.dx = (LONG) ((float) x * (65535.0f / width));
mouse_event.mi.dy = (LONG) ((float) y * (65535.0f / height));
mouse_event.mi.dwFlags = MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE;
SendInput(1, &mouse_event, sizeof(INPUT));
}
mouse_event.mi.dx = mouse_event.mi.dy = mouse_event.mi.dwFlags = 0;
if (flags & PTR_XFLAGS_DOWN)
mouse_event.mi.dwFlags |= MOUSEEVENTF_XDOWN;
else
mouse_event.mi.dwFlags |= MOUSEEVENTF_XUP;
if (flags & PTR_XFLAGS_BUTTON1)
mouse_event.mi.mouseData = XBUTTON1;
else if (flags & PTR_XFLAGS_BUTTON2)
mouse_event.mi.mouseData = XBUTTON2;
SendInput(1, &mouse_event, sizeof(INPUT));
}
else
{
2013-02-22 04:56:32 +04:00
mf_input_mouse_event(input, flags, x, y);
2013-02-21 04:20:49 +04:00
}
2013-02-22 04:56:32 +04:00
*/
2013-02-21 04:20:49 +04:00
}
2013-02-22 04:56:32 +04:00
void mf_input_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code)
2013-02-21 04:20:49 +04:00
{
}
2013-02-22 04:56:32 +04:00
void mf_input_unicode_keyboard_event_dummy(rdpInput* input, UINT16 flags, UINT16 code)
2013-02-21 04:20:49 +04:00
{
}
2013-02-22 04:56:32 +04:00
void mf_input_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2013-02-21 04:20:49 +04:00
{
}
2013-02-22 04:56:32 +04:00
void mf_input_extended_mouse_event_dummy(rdpInput* input, UINT16 flags, UINT16 x, UINT16 y)
2013-02-21 04:20:49 +04:00
{
}