2a5192b027
Conflicts: client/Windows/wf_cliprdr.h client/Windows/wf_event.h client/X11/xf_client.c client/X11/xf_gdi.c libfreerdp/gdi/gdi.c server/Mac/mf_input.c
1524 lines
40 KiB
Objective-C
1524 lines
40 KiB
Objective-C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* MacFreeRDP
|
|
*
|
|
* Copyright 2012 Thomas Goddard
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <winpr/windows.h>
|
|
|
|
#include "mf_client.h"
|
|
#import "mfreerdp.h"
|
|
#import "MRDPView.h"
|
|
#import "MRDPCursor.h"
|
|
#import "PasswordDialog.h"
|
|
|
|
#include <winpr/crt.h>
|
|
#include <winpr/input.h>
|
|
#include <winpr/synch.h>
|
|
#include <winpr/sysinfo.h>
|
|
|
|
#include <freerdp/constants.h>
|
|
|
|
#import "freerdp/freerdp.h"
|
|
#import "freerdp/types.h"
|
|
#import "freerdp/channels/channels.h"
|
|
#import "freerdp/gdi/gdi.h"
|
|
#import "freerdp/gdi/dc.h"
|
|
#import "freerdp/gdi/region.h"
|
|
#import "freerdp/graphics.h"
|
|
#import "freerdp/utils/event.h"
|
|
#import "freerdp/client/cliprdr.h"
|
|
#import "freerdp/client/file.h"
|
|
#import "freerdp/client/cmdline.h"
|
|
#import "freerdp/log.h"
|
|
|
|
#define TAG CLIENT_TAG("mac")
|
|
|
|
void mf_Pointer_New(rdpContext* context, rdpPointer* pointer);
|
|
void mf_Pointer_Free(rdpContext* context, rdpPointer* pointer);
|
|
void mf_Pointer_Set(rdpContext* context, rdpPointer* pointer);
|
|
void mf_Pointer_SetNull(rdpContext* context);
|
|
void mf_Pointer_SetDefault(rdpContext* context);
|
|
|
|
void mac_begin_paint(rdpContext* context);
|
|
void mac_end_paint(rdpContext* context);
|
|
void mac_desktop_resize(rdpContext* context);
|
|
|
|
static void update_activity_cb(freerdp* instance);
|
|
static void input_activity_cb(freerdp* instance);
|
|
static void channel_activity_cb(freerdp* instance);
|
|
|
|
int process_plugin_args(rdpSettings* settings, const char* name, RDP_PLUGIN_DATA* plugin_data, void* user_data);
|
|
int receive_channel_data(freerdp* instance, int chan_id, BYTE* data, int size, int flags, int total_size);
|
|
|
|
void process_cliprdr_event(freerdp* instance, wMessage* event);
|
|
void cliprdr_process_cb_format_list_event(freerdp* instance, RDP_CB_FORMAT_LIST_EVENT* event);
|
|
void cliprdr_send_data_request(freerdp* instance, UINT32 format);
|
|
void cliprdr_process_cb_monitor_ready_event(freerdp* inst);
|
|
void cliprdr_process_cb_data_response_event(freerdp* instance, RDP_CB_DATA_RESPONSE_EVENT* event);
|
|
void cliprdr_process_text(freerdp* instance, BYTE* data, int len);
|
|
void cliprdr_send_supported_format_list(freerdp* instance);
|
|
int register_channel_fds(int* fds, int count, freerdp* instance);
|
|
|
|
DWORD mac_client_thread(void* param);
|
|
|
|
struct cursor
|
|
{
|
|
rdpPointer* pointer;
|
|
BYTE* cursor_data;
|
|
void* bmiRep; /* NSBitmapImageRep */
|
|
void* nsCursor; /* NSCursor */
|
|
void* nsImage; /* NSImage */
|
|
};
|
|
|
|
struct rgba_data
|
|
{
|
|
char red;
|
|
char green;
|
|
char blue;
|
|
char alpha;
|
|
};
|
|
|
|
@implementation MRDPView
|
|
|
|
@synthesize is_connected;
|
|
|
|
- (int) rdpStart:(rdpContext*) rdp_context
|
|
{
|
|
rdpSettings* settings;
|
|
EmbedWindowEventArgs e;
|
|
|
|
[self initializeView];
|
|
|
|
context = rdp_context;
|
|
mfc = (mfContext*) rdp_context;
|
|
instance = context->instance;
|
|
settings = context->settings;
|
|
|
|
EventArgsInit(&e, "mfreerdp");
|
|
e.embed = TRUE;
|
|
e.handle = (void*) self;
|
|
PubSub_OnEmbedWindow(context->pubSub, context, &e);
|
|
|
|
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
|
|
NSRect screenFrame = [screen frame];
|
|
|
|
if (instance->settings->Fullscreen)
|
|
{
|
|
instance->settings->DesktopWidth = screenFrame.size.width;
|
|
instance->settings->DesktopHeight = screenFrame.size.height;
|
|
}
|
|
|
|
mfc->client_height = instance->settings->DesktopHeight;
|
|
mfc->client_width = instance->settings->DesktopWidth;
|
|
|
|
mfc->thread = CreateThread(NULL, 0, mac_client_thread, (void*) context, 0, &mfc->mainThreadId);
|
|
|
|
return 0;
|
|
}
|
|
|
|
DWORD mac_client_update_thread(void* param)
|
|
{
|
|
int status;
|
|
wMessage message;
|
|
wMessageQueue* queue;
|
|
rdpContext* context = (rdpContext*) param;
|
|
|
|
status = 1;
|
|
queue = freerdp_get_message_queue(context->instance, FREERDP_UPDATE_MESSAGE_QUEUE);
|
|
|
|
while (MessageQueue_Wait(queue))
|
|
{
|
|
while (MessageQueue_Peek(queue, &message, TRUE))
|
|
{
|
|
status = freerdp_message_queue_process_message(context->instance, FREERDP_UPDATE_MESSAGE_QUEUE, &message);
|
|
|
|
if (!status)
|
|
break;
|
|
}
|
|
|
|
if (!status)
|
|
break;
|
|
}
|
|
|
|
ExitThread(0);
|
|
return 0;
|
|
}
|
|
|
|
DWORD mac_client_input_thread(void* param)
|
|
{
|
|
int status;
|
|
wMessage message;
|
|
wMessageQueue* queue;
|
|
rdpContext* context = (rdpContext*) param;
|
|
|
|
status = 1;
|
|
queue = freerdp_get_message_queue(context->instance, FREERDP_INPUT_MESSAGE_QUEUE);
|
|
|
|
while (MessageQueue_Wait(queue))
|
|
{
|
|
while (MessageQueue_Peek(queue, &message, TRUE))
|
|
{
|
|
status = freerdp_message_queue_process_message(context->instance, FREERDP_INPUT_MESSAGE_QUEUE, &message);
|
|
|
|
if (!status)
|
|
break;
|
|
}
|
|
}
|
|
|
|
ExitThread(0);
|
|
return 0;
|
|
}
|
|
|
|
DWORD mac_client_channels_thread(void* param)
|
|
{
|
|
int status;
|
|
wMessage* event;
|
|
HANDLE channelsEvent;
|
|
rdpChannels* channels;
|
|
rdpContext* context = (rdpContext*) param;
|
|
|
|
channels = context->channels;
|
|
channelsEvent = freerdp_channels_get_event_handle(context->instance);
|
|
|
|
while (WaitForSingleObject(channelsEvent, INFINITE) == WAIT_OBJECT_0)
|
|
{
|
|
status = freerdp_channels_process_pending_messages(context->instance);
|
|
|
|
if (!status)
|
|
break;
|
|
|
|
event = freerdp_channels_pop_event(context->channels);
|
|
|
|
if (event)
|
|
{
|
|
switch (GetMessageClass(event->id))
|
|
{
|
|
case CliprdrChannel_Class:
|
|
process_cliprdr_event(context->instance, event);
|
|
break;
|
|
}
|
|
|
|
freerdp_event_free(event);
|
|
}
|
|
}
|
|
|
|
ExitThread(0);
|
|
return 0;
|
|
}
|
|
|
|
DWORD mac_client_thread(void* param)
|
|
{
|
|
@autoreleasepool
|
|
{
|
|
int status;
|
|
HANDLE events[4];
|
|
HANDLE inputEvent;
|
|
HANDLE inputThread;
|
|
HANDLE updateEvent;
|
|
HANDLE updateThread;
|
|
HANDLE channelsEvent;
|
|
HANDLE channelsThread;
|
|
|
|
DWORD nCount;
|
|
rdpContext* context = (rdpContext*) param;
|
|
mfContext* mfc = (mfContext*) context;
|
|
freerdp* instance = context->instance;
|
|
MRDPView* view = mfc->view;
|
|
rdpSettings* settings = context->settings;
|
|
|
|
status = freerdp_connect(context->instance);
|
|
|
|
if (!status)
|
|
{
|
|
[view setIs_connected:0];
|
|
return 0;
|
|
}
|
|
|
|
[view setIs_connected:1];
|
|
|
|
nCount = 0;
|
|
|
|
events[nCount++] = mfc->stopEvent;
|
|
|
|
if (settings->AsyncUpdate)
|
|
{
|
|
updateThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) mac_client_update_thread, context, 0, NULL);
|
|
}
|
|
else
|
|
{
|
|
events[nCount++] = updateEvent = freerdp_get_message_queue_event_handle(instance, FREERDP_UPDATE_MESSAGE_QUEUE);
|
|
}
|
|
|
|
if (settings->AsyncInput)
|
|
{
|
|
inputThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) mac_client_input_thread, context, 0, NULL);
|
|
}
|
|
else
|
|
{
|
|
events[nCount++] = inputEvent = freerdp_get_message_queue_event_handle(instance, FREERDP_INPUT_MESSAGE_QUEUE);
|
|
}
|
|
|
|
if (settings->AsyncChannels)
|
|
{
|
|
channelsThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) mac_client_channels_thread, context, 0, NULL);
|
|
}
|
|
else
|
|
{
|
|
events[nCount++] = channelsEvent = freerdp_channels_get_event_handle(instance);
|
|
}
|
|
|
|
while (1)
|
|
{
|
|
status = WaitForMultipleObjects(nCount, events, FALSE, INFINITE);
|
|
|
|
if (WaitForSingleObject(mfc->stopEvent, 0) == WAIT_OBJECT_0)
|
|
{
|
|
freerdp_disconnect(instance);
|
|
break;
|
|
}
|
|
|
|
if (!settings->AsyncUpdate)
|
|
{
|
|
if (WaitForSingleObject(updateEvent, 0) == WAIT_OBJECT_0)
|
|
{
|
|
update_activity_cb(instance);
|
|
}
|
|
}
|
|
|
|
if (!settings->AsyncInput)
|
|
{
|
|
if (WaitForSingleObject(inputEvent, 0) == WAIT_OBJECT_0)
|
|
{
|
|
input_activity_cb(instance);
|
|
}
|
|
}
|
|
|
|
if (!settings->AsyncChannels)
|
|
{
|
|
if (WaitForSingleObject(channelsEvent, 0) == WAIT_OBJECT_0)
|
|
{
|
|
channel_activity_cb(instance);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (settings->AsyncUpdate)
|
|
{
|
|
wMessageQueue* updateQueue = freerdp_get_message_queue(instance, FREERDP_UPDATE_MESSAGE_QUEUE);
|
|
MessageQueue_PostQuit(updateQueue, 0);
|
|
WaitForSingleObject(updateThread, INFINITE);
|
|
CloseHandle(updateThread);
|
|
}
|
|
|
|
if (settings->AsyncInput)
|
|
{
|
|
wMessageQueue* inputQueue = freerdp_get_message_queue(instance, FREERDP_INPUT_MESSAGE_QUEUE);
|
|
MessageQueue_PostQuit(inputQueue, 0);
|
|
WaitForSingleObject(inputThread, INFINITE);
|
|
CloseHandle(inputThread);
|
|
}
|
|
|
|
if (settings->AsyncChannels)
|
|
{
|
|
WaitForSingleObject(channelsThread, INFINITE);
|
|
CloseHandle(channelsThread);
|
|
}
|
|
|
|
ExitThread(0);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
- (id)initWithFrame:(NSRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
|
|
if (self)
|
|
{
|
|
// Initialization code here.
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void) viewDidLoad
|
|
{
|
|
[self initializeView];
|
|
}
|
|
|
|
- (void) initializeView
|
|
{
|
|
if (!initialized)
|
|
{
|
|
cursors = [[NSMutableArray alloc] initWithCapacity:10];
|
|
|
|
// setup a mouse tracking area
|
|
NSTrackingArea * trackingArea = [[NSTrackingArea alloc] initWithRect:[self visibleRect] options:NSTrackingMouseEnteredAndExited | NSTrackingMouseMoved | NSTrackingCursorUpdate | NSTrackingEnabledDuringMouseDrag | NSTrackingActiveWhenFirstResponder owner:self userInfo:nil];
|
|
|
|
[self addTrackingArea:trackingArea];
|
|
|
|
// Set the default cursor
|
|
currentCursor = [NSCursor arrowCursor];
|
|
|
|
initialized = YES;
|
|
}
|
|
}
|
|
|
|
- (void) setCursor: (NSCursor*) cursor
|
|
{
|
|
self->currentCursor = cursor;
|
|
[[self window] invalidateCursorRectsForView:self];
|
|
}
|
|
|
|
- (void) resetCursorRects
|
|
{
|
|
[self addCursorRect:[self visibleRect] cursor:currentCursor];
|
|
}
|
|
|
|
- (BOOL)acceptsFirstResponder
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (void) mouseMoved:(NSEvent *)event
|
|
{
|
|
[super mouseMoved:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_MOVE, x, y);
|
|
}
|
|
|
|
- (void)mouseDown:(NSEvent *) event
|
|
{
|
|
[super mouseDown:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON1, x, y);
|
|
}
|
|
|
|
- (void) mouseUp:(NSEvent *) event
|
|
{
|
|
[super mouseUp:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_BUTTON1, x, y);
|
|
}
|
|
|
|
- (void) rightMouseDown:(NSEvent *)event
|
|
{
|
|
[super rightMouseDown:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON2, x, y);
|
|
}
|
|
|
|
- (void) rightMouseUp:(NSEvent *)event
|
|
{
|
|
[super rightMouseUp:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_BUTTON2, x, y);
|
|
}
|
|
|
|
- (void) otherMouseDown:(NSEvent *)event
|
|
{
|
|
[super otherMouseDown:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON3, x, y);
|
|
}
|
|
|
|
- (void) otherMouseUp:(NSEvent *)event
|
|
{
|
|
[super otherMouseUp:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_BUTTON3, x, y);
|
|
}
|
|
|
|
- (void) scrollWheel:(NSEvent *)event
|
|
{
|
|
UINT16 flags;
|
|
|
|
[super scrollWheel:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
flags = PTR_FLAGS_WHEEL;
|
|
|
|
/* 1 event = 120 units */
|
|
int units = [event deltaY] * 120;
|
|
|
|
/* send out all accumulated rotations */
|
|
while(units != 0)
|
|
{
|
|
/* limit to maximum value in WheelRotationMask (9bit signed value) */
|
|
int step = MIN(MAX(-256, units), 255);
|
|
|
|
mf_scale_mouse_event(context, instance->input, flags | ((UINT16)step & WheelRotationMask), x, y);
|
|
units -= step;
|
|
}
|
|
}
|
|
|
|
- (void) mouseDragged:(NSEvent *)event
|
|
{
|
|
[super mouseDragged:event];
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
NSPoint loc = [event locationInWindow];
|
|
int x = (int) loc.x;
|
|
int y = (int) loc.y;
|
|
|
|
// send mouse motion event to RDP server
|
|
mf_scale_mouse_event(context, instance->input, PTR_FLAGS_MOVE, x, y);
|
|
}
|
|
|
|
DWORD fixKeyCode(DWORD keyCode, unichar keyChar, enum APPLE_KEYBOARD_TYPE type)
|
|
{
|
|
/**
|
|
* In 99% of cases, the given key code is truly keyboard independent.
|
|
* This function handles the remaining 1% of edge cases.
|
|
*
|
|
* Hungarian Keyboard: This is 'QWERTZ' and not 'QWERTY'.
|
|
* The '0' key is on the left of the '1' key, where '~' is on a US keyboard.
|
|
* A special 'i' letter key with acute is found on the right of the left shift key.
|
|
* On the hungarian keyboard, the 'i' key is at the left of the 'Y' key
|
|
* Some international keyboards have a corresponding key which would be at
|
|
* the left of the 'Z' key when using a QWERTY layout.
|
|
*
|
|
* The Apple Hungarian keyboard sends inverted key codes for the '0' and 'i' keys.
|
|
* When using the US keyboard layout, key codes are left as-is (inverted).
|
|
* When using the Hungarian keyboard layout, key codes are swapped (non-inverted).
|
|
* This means that when using the Hungarian keyboard layout with a US keyboard,
|
|
* the keys corresponding to '0' and 'i' will effectively be inverted.
|
|
*
|
|
* To fix the '0' and 'i' key inversion, we use the corresponding output character
|
|
* provided by OS X and check for a character to key code mismatch: for instance,
|
|
* when the output character is '0' for the key code corresponding to the 'i' key.
|
|
*/
|
|
|
|
#if 0
|
|
switch (keyChar)
|
|
{
|
|
case '0':
|
|
case 0x00A7: /* section sign */
|
|
if (keyCode == APPLE_VK_ISO_Section)
|
|
keyCode = APPLE_VK_ANSI_Grave;
|
|
break;
|
|
|
|
case 0x00ED: /* latin small letter i with acute */
|
|
case 0x00CD: /* latin capital letter i with acute */
|
|
if (keyCode == APPLE_VK_ANSI_Grave)
|
|
keyCode = APPLE_VK_ISO_Section;
|
|
break;
|
|
}
|
|
#endif
|
|
|
|
/* Perform keycode correction for all ISO keyboards */
|
|
|
|
if (type == APPLE_KEYBOARD_TYPE_ISO)
|
|
{
|
|
if (keyCode == APPLE_VK_ANSI_Grave)
|
|
keyCode = APPLE_VK_ISO_Section;
|
|
else if (keyCode == APPLE_VK_ISO_Section)
|
|
keyCode = APPLE_VK_ANSI_Grave;
|
|
}
|
|
|
|
return keyCode;
|
|
}
|
|
|
|
- (void) keyDown:(NSEvent *) event
|
|
{
|
|
DWORD keyCode;
|
|
DWORD keyFlags;
|
|
DWORD vkcode;
|
|
DWORD scancode;
|
|
unichar keyChar;
|
|
NSString* characters;
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
keyFlags = KBD_FLAGS_DOWN;
|
|
keyCode = [event keyCode];
|
|
|
|
characters = [event charactersIgnoringModifiers];
|
|
|
|
if ([characters length] > 0)
|
|
{
|
|
keyChar = [characters characterAtIndex:0];
|
|
keyCode = fixKeyCode(keyCode, keyChar, mfc->appleKeyboardType);
|
|
}
|
|
|
|
vkcode = GetVirtualKeyCodeFromKeycode(keyCode + 8, KEYCODE_TYPE_APPLE);
|
|
scancode = GetVirtualScanCodeFromVirtualKeyCode(vkcode, 4);
|
|
keyFlags |= (scancode & KBDEXT) ? KBDEXT : 0;
|
|
scancode &= 0xFF;
|
|
vkcode &= 0xFF;
|
|
|
|
#if 0
|
|
WLog_ERR(TAG, "keyDown: keyCode: 0x%04X scancode: 0x%04X vkcode: 0x%04X keyFlags: %d name: %s",
|
|
keyCode, scancode, vkcode, keyFlags, GetVirtualKeyName(vkcode));
|
|
#endif
|
|
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags, scancode);
|
|
}
|
|
|
|
- (void) keyUp:(NSEvent *) event
|
|
{
|
|
DWORD keyCode;
|
|
DWORD keyFlags;
|
|
DWORD vkcode;
|
|
DWORD scancode;
|
|
unichar keyChar;
|
|
NSString* characters;
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
keyFlags = KBD_FLAGS_RELEASE;
|
|
keyCode = [event keyCode];
|
|
|
|
characters = [event charactersIgnoringModifiers];
|
|
|
|
if ([characters length] > 0)
|
|
{
|
|
keyChar = [characters characterAtIndex:0];
|
|
keyCode = fixKeyCode(keyCode, keyChar, mfc->appleKeyboardType);
|
|
}
|
|
|
|
vkcode = GetVirtualKeyCodeFromKeycode(keyCode + 8, KEYCODE_TYPE_APPLE);
|
|
scancode = GetVirtualScanCodeFromVirtualKeyCode(vkcode, 4);
|
|
keyFlags |= (scancode & KBDEXT) ? KBDEXT : 0;
|
|
scancode &= 0xFF;
|
|
vkcode &= 0xFF;
|
|
|
|
#if 0
|
|
WLog_DBG(TAG, "keyUp: key: 0x%04X scancode: 0x%04X vkcode: 0x%04X keyFlags: %d name: %s",
|
|
keyCode, scancode, vkcode, keyFlags, GetVirtualKeyName(vkcode));
|
|
#endif
|
|
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags, scancode);
|
|
}
|
|
|
|
- (void) flagsChanged:(NSEvent*) event
|
|
{
|
|
int key;
|
|
DWORD keyFlags;
|
|
DWORD vkcode;
|
|
DWORD scancode;
|
|
DWORD modFlags;
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
keyFlags = 0;
|
|
key = [event keyCode] + 8;
|
|
modFlags = [event modifierFlags] & NSDeviceIndependentModifierFlagsMask;
|
|
|
|
vkcode = GetVirtualKeyCodeFromKeycode(key, KEYCODE_TYPE_APPLE);
|
|
scancode = GetVirtualScanCodeFromVirtualKeyCode(vkcode, 4);
|
|
keyFlags |= (scancode & KBDEXT) ? KBDEXT : 0;
|
|
scancode &= 0xFF;
|
|
vkcode &= 0xFF;
|
|
|
|
#if 0
|
|
WLog_DBG(TAG, "flagsChanged: key: 0x%04X scancode: 0x%04X vkcode: 0x%04X extended: %d name: %s modFlags: 0x%04X",
|
|
key - 8, scancode, vkcode, keyFlags, GetVirtualKeyName(vkcode), modFlags);
|
|
|
|
if (modFlags & NSAlphaShiftKeyMask)
|
|
WLog_DBG(TAG, "NSAlphaShiftKeyMask");
|
|
|
|
if (modFlags & NSShiftKeyMask)
|
|
WLog_DBG(TAG, "NSShiftKeyMask");
|
|
|
|
if (modFlags & NSControlKeyMask)
|
|
WLog_DBG(TAG, "NSControlKeyMask");
|
|
|
|
if (modFlags & NSAlternateKeyMask)
|
|
WLog_DBG(TAG, "NSAlternateKeyMask");
|
|
|
|
if (modFlags & NSCommandKeyMask)
|
|
WLog_DBG(TAG, "NSCommandKeyMask");
|
|
|
|
if (modFlags & NSNumericPadKeyMask)
|
|
WLog_DBG(TAG, "NSNumericPadKeyMask");
|
|
|
|
if (modFlags & NSHelpKeyMask)
|
|
WLog_DBG(TAG, "NSHelpKeyMask");
|
|
#endif
|
|
|
|
if ((modFlags & NSAlphaShiftKeyMask) && !(kbdModFlags & NSAlphaShiftKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSAlphaShiftKeyMask) && (kbdModFlags & NSAlphaShiftKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSShiftKeyMask) && !(kbdModFlags & NSShiftKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSShiftKeyMask) && (kbdModFlags & NSShiftKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSControlKeyMask) && !(kbdModFlags & NSControlKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSControlKeyMask) && (kbdModFlags & NSControlKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSAlternateKeyMask) && !(kbdModFlags & NSAlternateKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSAlternateKeyMask) && (kbdModFlags & NSAlternateKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSCommandKeyMask) && !(kbdModFlags & NSCommandKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSCommandKeyMask) && (kbdModFlags & NSCommandKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSNumericPadKeyMask) && !(kbdModFlags & NSNumericPadKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSNumericPadKeyMask) && (kbdModFlags & NSNumericPadKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
if ((modFlags & NSHelpKeyMask) && !(kbdModFlags & NSHelpKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_DOWN, scancode);
|
|
else if (!(modFlags & NSHelpKeyMask) && (kbdModFlags & NSHelpKeyMask))
|
|
freerdp_input_send_keyboard_event(instance->input, keyFlags | KBD_FLAGS_RELEASE, scancode);
|
|
|
|
kbdModFlags = modFlags;
|
|
}
|
|
|
|
- (void) releaseResources
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < argc; i++)
|
|
{
|
|
if (argv[i])
|
|
free(argv[i]);
|
|
}
|
|
|
|
if (!is_connected)
|
|
return;
|
|
|
|
gdi_free(context->instance);
|
|
|
|
if (pixel_data)
|
|
free(pixel_data);
|
|
}
|
|
|
|
- (void) drawRect:(NSRect)rect
|
|
{
|
|
if (!context)
|
|
return;
|
|
|
|
if (self->bitmap_context)
|
|
{
|
|
CGContextRef cgContext = [[NSGraphicsContext currentContext] graphicsPort];
|
|
CGImageRef cgImage = CGBitmapContextCreateImage(self->bitmap_context);
|
|
|
|
CGContextSaveGState(cgContext);
|
|
|
|
CGContextClipToRect(cgContext, CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height));
|
|
|
|
CGContextDrawImage(cgContext, CGRectMake(0, 0, [self bounds].size.width, [self bounds].size.height), cgImage);
|
|
|
|
CGContextRestoreGState(cgContext);
|
|
|
|
CGImageRelease(cgImage);
|
|
}
|
|
else
|
|
{
|
|
/* Fill the screen with black */
|
|
[[NSColor blackColor] set];
|
|
NSRectFill([self bounds]);
|
|
}
|
|
}
|
|
|
|
- (void) onPasteboardTimerFired :(NSTimer*) timer
|
|
{
|
|
int i;
|
|
NSArray* types;
|
|
|
|
i = (int) [pasteboard_rd changeCount];
|
|
|
|
if (i != pasteboard_changecount)
|
|
{
|
|
pasteboard_changecount = i;
|
|
types = [NSArray arrayWithObject:NSStringPboardType];
|
|
NSString *str = [pasteboard_rd availableTypeFromArray:types];
|
|
if (str != nil)
|
|
{
|
|
cliprdr_send_supported_format_list(instance);
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void) setScrollOffset:(int)xOffset y:(int)yOffset w:(int)width h:(int)height
|
|
{
|
|
mfc->yCurrentScroll = yOffset;
|
|
mfc->xCurrentScroll = xOffset;
|
|
mfc->client_height = height;
|
|
mfc->client_width = width;
|
|
}
|
|
|
|
void mac_OnChannelConnectedEventHandler(rdpContext* context, ChannelConnectedEventArgs* e)
|
|
{
|
|
rdpSettings* settings = context->settings;
|
|
|
|
if (strcmp(e->name, RDPEI_DVC_CHANNEL_NAME) == 0)
|
|
{
|
|
|
|
}
|
|
else if (strcmp(e->name, RDPGFX_DVC_CHANNEL_NAME) == 0)
|
|
{
|
|
if (settings->SoftwareGdi)
|
|
gdi_graphics_pipeline_init(context->gdi, (RdpgfxClientContext*) e->pInterface);
|
|
}
|
|
else if (strcmp(e->name, ENCOMSP_SVC_CHANNEL_NAME) == 0)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
void mac_OnChannelDisconnectedEventHandler(rdpContext* context, ChannelDisconnectedEventArgs* e)
|
|
{
|
|
rdpSettings* settings = context->settings;
|
|
|
|
if (strcmp(e->name, RDPEI_DVC_CHANNEL_NAME) == 0)
|
|
{
|
|
|
|
}
|
|
else if (strcmp(e->name, RDPGFX_DVC_CHANNEL_NAME) == 0)
|
|
{
|
|
if (settings->SoftwareGdi)
|
|
gdi_graphics_pipeline_uninit(context->gdi, (RdpgfxClientContext*) e->pInterface);
|
|
}
|
|
else if (strcmp(e->name, ENCOMSP_SVC_CHANNEL_NAME) == 0)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
BOOL mac_pre_connect(freerdp* instance)
|
|
{
|
|
rdpSettings* settings;
|
|
|
|
instance->update->BeginPaint = mac_begin_paint;
|
|
instance->update->EndPaint = mac_end_paint;
|
|
instance->update->DesktopResize = mac_desktop_resize;
|
|
|
|
settings = instance->settings;
|
|
|
|
if (!settings->ServerHostname)
|
|
{
|
|
WLog_ERR(TAG, "error: server hostname was not specified with /v:<server>[:port]");
|
|
[NSApp terminate:nil];
|
|
return -1;
|
|
}
|
|
|
|
settings->SoftwareGdi = TRUE;
|
|
|
|
settings->OsMajorType = OSMAJORTYPE_MACINTOSH;
|
|
settings->OsMinorType = OSMINORTYPE_MACINTOSH;
|
|
|
|
ZeroMemory(settings->OrderSupport, 32);
|
|
settings->OrderSupport[NEG_DSTBLT_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_PATBLT_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_SCRBLT_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_OPAQUE_RECT_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_DRAWNINEGRID_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_MULTIDSTBLT_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_MULTIPATBLT_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_MULTISCRBLT_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_MULTIOPAQUERECT_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_MULTI_DRAWNINEGRID_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_LINETO_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_POLYLINE_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_MEMBLT_INDEX] = settings->BitmapCacheEnabled;
|
|
settings->OrderSupport[NEG_MEM3BLT_INDEX] = (settings->SoftwareGdi) ? TRUE : FALSE;
|
|
settings->OrderSupport[NEG_MEMBLT_V2_INDEX] = settings->BitmapCacheEnabled;
|
|
settings->OrderSupport[NEG_MEM3BLT_V2_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_SAVEBITMAP_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_GLYPH_INDEX_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_FAST_INDEX_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_FAST_GLYPH_INDEX] = TRUE;
|
|
settings->OrderSupport[NEG_POLYGON_SC_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_POLYGON_CB_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_ELLIPSE_SC_INDEX] = FALSE;
|
|
settings->OrderSupport[NEG_ELLIPSE_CB_INDEX] = FALSE;
|
|
|
|
PubSub_SubscribeChannelConnected(instance->context->pubSub,
|
|
(pChannelConnectedEventHandler) mac_OnChannelConnectedEventHandler);
|
|
|
|
PubSub_SubscribeChannelDisconnected(instance->context->pubSub,
|
|
(pChannelDisconnectedEventHandler) mac_OnChannelDisconnectedEventHandler);
|
|
|
|
freerdp_client_load_addins(instance->context->channels, instance->settings);
|
|
|
|
freerdp_channels_pre_connect(instance->context->channels, instance);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL mac_post_connect(freerdp* instance)
|
|
{
|
|
rdpGdi* gdi;
|
|
UINT32 flags;
|
|
rdpSettings* settings;
|
|
rdpPointer rdp_pointer;
|
|
mfContext* mfc = (mfContext*) instance->context;
|
|
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
ZeroMemory(&rdp_pointer, sizeof(rdpPointer));
|
|
rdp_pointer.size = sizeof(rdpPointer);
|
|
rdp_pointer.New = mf_Pointer_New;
|
|
rdp_pointer.Free = mf_Pointer_Free;
|
|
rdp_pointer.Set = mf_Pointer_Set;
|
|
rdp_pointer.SetNull = mf_Pointer_SetNull;
|
|
rdp_pointer.SetDefault = mf_Pointer_SetDefault;
|
|
|
|
settings = instance->settings;
|
|
|
|
flags = CLRCONV_ALPHA | CLRCONV_RGB555;
|
|
|
|
if (settings->ColorDepth > 16)
|
|
flags |= CLRBUF_32BPP;
|
|
else
|
|
flags |= CLRBUF_16BPP;
|
|
|
|
gdi_init(instance, flags, NULL);
|
|
gdi = instance->context->gdi;
|
|
|
|
view->bitmap_context = mac_create_bitmap_context(instance->context);
|
|
|
|
pointer_cache_register_callbacks(instance->update);
|
|
graphics_register_pointer(instance->context->graphics, &rdp_pointer);
|
|
|
|
freerdp_channels_post_connect(instance->context->channels, instance);
|
|
|
|
/* setup pasteboard (aka clipboard) for copy operations (write only) */
|
|
view->pasteboard_wr = [NSPasteboard generalPasteboard];
|
|
|
|
/* setup pasteboard for read operations */
|
|
view->pasteboard_rd = [NSPasteboard generalPasteboard];
|
|
view->pasteboard_changecount = (int) [view->pasteboard_rd changeCount];
|
|
view->pasteboard_timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:mfc->view selector:@selector(onPasteboardTimerFired:) userInfo:nil repeats:YES];
|
|
|
|
mfc->appleKeyboardType = mac_detect_keyboard_type();
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL mac_authenticate(freerdp* instance, char** username, char** password, char** domain)
|
|
{
|
|
PasswordDialog* dialog = [PasswordDialog new];
|
|
|
|
dialog.serverHostname = [NSString stringWithCString:instance->settings->ServerHostname encoding:NSUTF8StringEncoding];
|
|
|
|
if (*username)
|
|
dialog.username = [NSString stringWithCString:*username encoding:NSUTF8StringEncoding];
|
|
|
|
if (*password)
|
|
dialog.password = [NSString stringWithCString:*password encoding:NSUTF8StringEncoding];
|
|
|
|
BOOL ok = [dialog runModal];
|
|
|
|
if (ok)
|
|
{
|
|
const char* submittedUsername = [dialog.username cStringUsingEncoding:NSUTF8StringEncoding];
|
|
*username = malloc((strlen(submittedUsername) + 1) * sizeof(char));
|
|
strcpy(*username, submittedUsername);
|
|
|
|
const char* submittedPassword = [dialog.password cStringUsingEncoding:NSUTF8StringEncoding];
|
|
*password = malloc((strlen(submittedPassword) + 1) * sizeof(char));
|
|
strcpy(*password, submittedPassword);
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
void mf_Pointer_New(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
NSRect rect;
|
|
NSImage* image;
|
|
NSPoint hotSpot;
|
|
NSCursor* cursor;
|
|
BYTE* cursor_data;
|
|
NSMutableArray* ma;
|
|
NSBitmapImageRep* bmiRep;
|
|
MRDPCursor* mrdpCursor = [[MRDPCursor alloc] init];
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
rect.size.width = pointer->width;
|
|
rect.size.height = pointer->height;
|
|
rect.origin.x = pointer->xPos;
|
|
rect.origin.y = pointer->yPos;
|
|
|
|
cursor_data = (BYTE*) malloc(rect.size.width * rect.size.height * 4);
|
|
mrdpCursor->cursor_data = cursor_data;
|
|
|
|
if (pointer->xorBpp > 24)
|
|
{
|
|
freerdp_image_swap_color_order(pointer->xorMaskData, pointer->width, pointer->height);
|
|
}
|
|
|
|
freerdp_alpha_cursor_convert(cursor_data, pointer->xorMaskData, pointer->andMaskData,
|
|
pointer->width, pointer->height, pointer->xorBpp, context->gdi->clrconv);
|
|
|
|
/* store cursor bitmap image in representation - required by NSImage */
|
|
bmiRep = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes:(unsigned char **) &cursor_data
|
|
pixelsWide:rect.size.width
|
|
pixelsHigh:rect.size.height
|
|
bitsPerSample:8
|
|
samplesPerPixel:4
|
|
hasAlpha:YES
|
|
isPlanar:NO
|
|
colorSpaceName:NSDeviceRGBColorSpace
|
|
bitmapFormat:0
|
|
bytesPerRow:rect.size.width * 4
|
|
bitsPerPixel:0];
|
|
mrdpCursor->bmiRep = bmiRep;
|
|
|
|
/* create an image using above representation */
|
|
image = [[NSImage alloc] initWithSize:[bmiRep size]];
|
|
[image addRepresentation: bmiRep];
|
|
[image setFlipped:NO];
|
|
mrdpCursor->nsImage = image;
|
|
|
|
/* need hotspot to create cursor */
|
|
hotSpot.x = pointer->xPos;
|
|
hotSpot.y = pointer->yPos;
|
|
|
|
cursor = [[NSCursor alloc] initWithImage: image hotSpot:hotSpot];
|
|
mrdpCursor->nsCursor = cursor;
|
|
mrdpCursor->pointer = pointer;
|
|
|
|
/* save cursor for later use in mf_Pointer_Set() */
|
|
ma = view->cursors;
|
|
[ma addObject:mrdpCursor];
|
|
}
|
|
|
|
void mf_Pointer_Free(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
NSMutableArray* ma = view->cursors;
|
|
|
|
for (MRDPCursor* cursor in ma)
|
|
{
|
|
if (cursor->pointer == pointer)
|
|
{
|
|
cursor->nsImage = nil;
|
|
cursor->nsCursor = nil;
|
|
cursor->bmiRep = nil;
|
|
free(cursor->cursor_data);
|
|
[ma removeObject:cursor];
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void mf_Pointer_Set(rdpContext* context, rdpPointer* pointer)
|
|
{
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
NSMutableArray* ma = view->cursors;
|
|
|
|
for (MRDPCursor* cursor in ma)
|
|
{
|
|
if (cursor->pointer == pointer)
|
|
{
|
|
[view setCursor:cursor->nsCursor];
|
|
return;
|
|
}
|
|
}
|
|
|
|
NSLog(@"Cursor not found");
|
|
}
|
|
|
|
void mf_Pointer_SetNull(rdpContext* context)
|
|
{
|
|
|
|
}
|
|
|
|
void mf_Pointer_SetDefault(rdpContext* context)
|
|
{
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
[view setCursor:[NSCursor arrowCursor]];
|
|
}
|
|
|
|
CGContextRef mac_create_bitmap_context(rdpContext* context)
|
|
{
|
|
CGContextRef bitmap_context;
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
|
|
|
|
if (gdi->dstBpp == 16)
|
|
{
|
|
bitmap_context = CGBitmapContextCreate(gdi->primary_buffer,
|
|
gdi->width, gdi->height, 5, gdi->width * 2, colorSpace,
|
|
kCGBitmapByteOrder16Little | kCGImageAlphaNoneSkipFirst);
|
|
}
|
|
else
|
|
{
|
|
bitmap_context = CGBitmapContextCreate(gdi->primary_buffer,
|
|
gdi->width, gdi->height, 8, gdi->width * 4, colorSpace,
|
|
kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst);
|
|
}
|
|
|
|
CGColorSpaceRelease(colorSpace);
|
|
|
|
return bitmap_context;
|
|
}
|
|
|
|
void mac_begin_paint(rdpContext* context)
|
|
{
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
if (!gdi)
|
|
return;
|
|
|
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
|
}
|
|
|
|
void mac_end_paint(rdpContext* context)
|
|
{
|
|
rdpGdi* gdi;
|
|
HGDI_RGN invalid;
|
|
NSRect newDrawRect;
|
|
int ww, wh, dw, dh;
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
gdi = context->gdi;
|
|
|
|
if (!gdi)
|
|
return;
|
|
|
|
ww = mfc->client_width;
|
|
wh = mfc->client_height;
|
|
dw = mfc->context.settings->DesktopWidth;
|
|
dh = mfc->context.settings->DesktopHeight;
|
|
|
|
if ((!context) || (!context->gdi))
|
|
return;
|
|
|
|
if (context->gdi->primary->hdc->hwnd->invalid->null)
|
|
return;
|
|
|
|
invalid = gdi->primary->hdc->hwnd->invalid;
|
|
|
|
newDrawRect.origin.x = invalid->x;
|
|
newDrawRect.origin.y = invalid->y;
|
|
newDrawRect.size.width = invalid->w;
|
|
newDrawRect.size.height = invalid->h;
|
|
|
|
if (mfc->context.settings->SmartSizing && (ww != dw || wh != dh))
|
|
{
|
|
newDrawRect.origin.y = newDrawRect.origin.y * wh / dh - 1;
|
|
newDrawRect.size.height = newDrawRect.size.height * wh / dh + 1;
|
|
newDrawRect.origin.x = newDrawRect.origin.x * ww / dw - 1;
|
|
newDrawRect.size.width = newDrawRect.size.width * ww / dw + 1;
|
|
}
|
|
else
|
|
{
|
|
newDrawRect.origin.y = newDrawRect.origin.y - 1;
|
|
newDrawRect.size.height = newDrawRect.size.height + 1;
|
|
newDrawRect.origin.x = newDrawRect.origin.x - 1;
|
|
newDrawRect.size.width = newDrawRect.size.width + 1;
|
|
}
|
|
|
|
windows_to_apple_cords(mfc->view, &newDrawRect);
|
|
|
|
[view setNeedsDisplayInRect:newDrawRect];
|
|
|
|
gdi->primary->hdc->hwnd->ninvalid = 0;
|
|
}
|
|
|
|
void mac_desktop_resize(rdpContext* context)
|
|
{
|
|
mfContext* mfc = (mfContext*) context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
rdpSettings* settings = context->settings;
|
|
|
|
/**
|
|
* TODO: Fix resizing race condition. We should probably implement a message to be
|
|
* put on the update message queue to be able to properly flush pending updates,
|
|
* resize, and then continue with post-resizing graphical updates.
|
|
*/
|
|
|
|
CGContextRef old_context = view->bitmap_context;
|
|
view->bitmap_context = NULL;
|
|
CGContextRelease(old_context);
|
|
|
|
mfc->width = settings->DesktopWidth;
|
|
mfc->height = settings->DesktopHeight;
|
|
|
|
gdi_resize(context->gdi, mfc->width, mfc->height);
|
|
|
|
view->bitmap_context = mac_create_bitmap_context(context);
|
|
}
|
|
|
|
static void update_activity_cb(freerdp* instance)
|
|
{
|
|
int status;
|
|
wMessage message;
|
|
wMessageQueue* queue;
|
|
|
|
status = 1;
|
|
queue = freerdp_get_message_queue(instance, FREERDP_UPDATE_MESSAGE_QUEUE);
|
|
|
|
if (queue)
|
|
{
|
|
while (MessageQueue_Peek(queue, &message, TRUE))
|
|
{
|
|
status = freerdp_message_queue_process_message(instance, FREERDP_UPDATE_MESSAGE_QUEUE, &message);
|
|
|
|
if (!status)
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
WLog_ERR(TAG, "update_activity_cb: No queue!");
|
|
}
|
|
}
|
|
|
|
static void input_activity_cb(freerdp* instance)
|
|
{
|
|
int status;
|
|
wMessage message;
|
|
wMessageQueue* queue;
|
|
|
|
status = 1;
|
|
queue = freerdp_get_message_queue(instance, FREERDP_INPUT_MESSAGE_QUEUE);
|
|
|
|
if (queue)
|
|
{
|
|
while (MessageQueue_Peek(queue, &message, TRUE))
|
|
{
|
|
status = freerdp_message_queue_process_message(instance, FREERDP_INPUT_MESSAGE_QUEUE, &message);
|
|
|
|
if (!status)
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
WLog_ERR(TAG, "input_activity_cb: No queue!");
|
|
}
|
|
}
|
|
|
|
static void channel_activity_cb(freerdp* instance)
|
|
{
|
|
wMessage* event;
|
|
|
|
freerdp_channels_process_pending_messages(instance);
|
|
event = freerdp_channels_pop_event(instance->context->channels);
|
|
|
|
if (event)
|
|
{
|
|
WLog_DBG(TAG, "channel_activity_cb: message %d", event->id);
|
|
|
|
switch (GetMessageClass(event->id))
|
|
{
|
|
case CliprdrChannel_Class:
|
|
process_cliprdr_event(instance, event);
|
|
break;
|
|
}
|
|
|
|
freerdp_event_free(event);
|
|
}
|
|
}
|
|
|
|
int process_plugin_args(rdpSettings* settings, const char* name, RDP_PLUGIN_DATA* plugin_data, void* user_data)
|
|
{
|
|
rdpChannels* channels = (rdpChannels*) user_data;
|
|
|
|
freerdp_channels_load_plugin(channels, settings, name, plugin_data);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* stuff related to clipboard redirection
|
|
*/
|
|
|
|
void cliprdr_process_cb_data_request_event(freerdp* instance)
|
|
{
|
|
int len;
|
|
NSArray* types;
|
|
RDP_CB_DATA_RESPONSE_EVENT* event;
|
|
mfContext* mfc = (mfContext*) instance->context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
event = (RDP_CB_DATA_RESPONSE_EVENT*) freerdp_event_new(CliprdrChannel_Class, CliprdrChannel_DataResponse, NULL, NULL);
|
|
|
|
types = [NSArray arrayWithObject:NSStringPboardType];
|
|
NSString* str = [view->pasteboard_rd availableTypeFromArray:types];
|
|
|
|
if (str == nil)
|
|
{
|
|
event->data = NULL;
|
|
event->size = 0;
|
|
}
|
|
else
|
|
{
|
|
NSString* data = [view->pasteboard_rd stringForType:NSStringPboardType];
|
|
len = (int) ([data length] * 2 + 2);
|
|
event->data = malloc(len);
|
|
[data getCString:(char *) event->data maxLength:len encoding:NSUnicodeStringEncoding];
|
|
event->size = len;
|
|
}
|
|
|
|
freerdp_channels_send_event(instance->context->channels, (wMessage*) event);
|
|
}
|
|
|
|
void cliprdr_send_data_request(freerdp* instance, UINT32 format)
|
|
{
|
|
RDP_CB_DATA_REQUEST_EVENT* event;
|
|
|
|
event = (RDP_CB_DATA_REQUEST_EVENT*) freerdp_event_new(CliprdrChannel_Class, CliprdrChannel_DataRequest, NULL, NULL);
|
|
|
|
event->format = format;
|
|
freerdp_channels_send_event(instance->context->channels, (wMessage*) event);
|
|
}
|
|
|
|
/**
|
|
* at the moment, only the following formats are supported
|
|
* CB_FORMAT_TEXT
|
|
* CB_FORMAT_UNICODETEXT
|
|
*/
|
|
|
|
void cliprdr_process_cb_data_response_event(freerdp* instance, RDP_CB_DATA_RESPONSE_EVENT* event)
|
|
{
|
|
NSString* str;
|
|
NSArray* types;
|
|
mfContext* mfc = (mfContext*) instance->context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
if (event->size == 0)
|
|
return;
|
|
|
|
if (view->pasteboard_format == CB_FORMAT_TEXT || view->pasteboard_format == CB_FORMAT_UNICODETEXT)
|
|
{
|
|
str = [[NSString alloc] initWithCharacters:(unichar *) event->data length:event->size / 2];
|
|
types = [[NSArray alloc] initWithObjects:NSStringPboardType, nil];
|
|
[view->pasteboard_wr declareTypes:types owner:mfc->view];
|
|
[view->pasteboard_wr setString:str forType:NSStringPboardType];
|
|
}
|
|
}
|
|
|
|
void cliprdr_process_cb_monitor_ready_event(freerdp* instance)
|
|
{
|
|
wMessage* event;
|
|
RDP_CB_FORMAT_LIST_EVENT* format_list_event;
|
|
|
|
event = freerdp_event_new(CliprdrChannel_Class, CliprdrChannel_FormatList, NULL, NULL);
|
|
|
|
format_list_event = (RDP_CB_FORMAT_LIST_EVENT*) event;
|
|
format_list_event->num_formats = 0;
|
|
|
|
freerdp_channels_send_event(instance->context->channels, event);
|
|
}
|
|
|
|
/**
|
|
* list of supported clipboard formats; currently only the following are supported
|
|
* CB_FORMAT_TEXT
|
|
* CB_FORMAT_UNICODETEXT
|
|
*/
|
|
|
|
void cliprdr_process_cb_format_list_event(freerdp* instance, RDP_CB_FORMAT_LIST_EVENT* event)
|
|
{
|
|
int i;
|
|
mfContext* mfc = (mfContext*) instance->context;
|
|
MRDPView* view = (MRDPView*) mfc->view;
|
|
|
|
if (event->num_formats == 0)
|
|
return;
|
|
|
|
for (i = 0; i < event->num_formats; i++)
|
|
{
|
|
switch (event->formats[i])
|
|
{
|
|
case CB_FORMAT_RAW:
|
|
WLog_ERR(TAG, "CB_FORMAT_RAW: not yet supported");
|
|
break;
|
|
|
|
case CB_FORMAT_TEXT:
|
|
case CB_FORMAT_UNICODETEXT:
|
|
view->pasteboard_format = CB_FORMAT_UNICODETEXT;
|
|
cliprdr_send_data_request(instance, CB_FORMAT_UNICODETEXT);
|
|
return;
|
|
break;
|
|
|
|
case CB_FORMAT_DIB:
|
|
WLog_ERR(TAG, "CB_FORMAT_DIB: not yet supported");
|
|
break;
|
|
|
|
case CB_FORMAT_HTML:
|
|
WLog_ERR(TAG, "CB_FORMAT_HTML");
|
|
break;
|
|
|
|
case CB_FORMAT_PNG:
|
|
WLog_ERR(TAG, "CB_FORMAT_PNG: not yet supported");
|
|
break;
|
|
|
|
case CB_FORMAT_JPEG:
|
|
WLog_ERR(TAG, "CB_FORMAT_JPEG: not yet supported");
|
|
break;
|
|
|
|
case CB_FORMAT_GIF:
|
|
WLog_ERR(TAG, "CB_FORMAT_GIF: not yet supported");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void process_cliprdr_event(freerdp* instance, wMessage* event)
|
|
{
|
|
if (event)
|
|
{
|
|
switch (GetMessageType(event->id))
|
|
{
|
|
/*
|
|
* Monitor Ready PDU is sent by server to indicate that it has been
|
|
* initialized and is ready. This PDU is transmitted by the server after it has sent
|
|
* Clipboard Capabilities PDU
|
|
*/
|
|
case CliprdrChannel_MonitorReady:
|
|
cliprdr_process_cb_monitor_ready_event(instance);
|
|
break;
|
|
|
|
/*
|
|
* The Format List PDU is sent either by the client or the server when its
|
|
* local system clipboard is updated with new clipboard data. This PDU
|
|
* contains the Clipboard Format ID and name pairs of the new Clipboard
|
|
* Formats on the clipboard
|
|
*/
|
|
case CliprdrChannel_FormatList:
|
|
cliprdr_process_cb_format_list_event(instance, (RDP_CB_FORMAT_LIST_EVENT*) event);
|
|
break;
|
|
|
|
/*
|
|
* The Format Data Request PDU is sent by the receipient of the Format List PDU.
|
|
* It is used to request the data for one of the formats that was listed in the
|
|
* Format List PDU
|
|
*/
|
|
case CliprdrChannel_DataRequest:
|
|
cliprdr_process_cb_data_request_event(instance);
|
|
break;
|
|
|
|
/*
|
|
* The Format Data Response PDU is sent as a reply to the Format Data Request PDU.
|
|
* It is used to indicate whether processing of the Format Data Request PDU
|
|
* was successful. If the processing was successful, the Format Data Response PDU
|
|
* includes the contents of the requested clipboard data
|
|
*/
|
|
case CliprdrChannel_DataResponse:
|
|
cliprdr_process_cb_data_response_event(instance, (RDP_CB_DATA_RESPONSE_EVENT*) event);
|
|
break;
|
|
|
|
default:
|
|
WLog_ERR(TAG, "process_cliprdr_event: unknown event type %d", GetMessageType(event->id));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void cliprdr_send_supported_format_list(freerdp* instance)
|
|
{
|
|
RDP_CB_FORMAT_LIST_EVENT* event;
|
|
|
|
event = (RDP_CB_FORMAT_LIST_EVENT*) freerdp_event_new(CliprdrChannel_Class, CliprdrChannel_FormatList, NULL, NULL);
|
|
|
|
event->formats = (UINT32*) malloc(sizeof(UINT32) * 1);
|
|
event->num_formats = 1;
|
|
event->formats[0] = CB_FORMAT_UNICODETEXT;
|
|
|
|
freerdp_channels_send_event(instance->context->channels, (wMessage*) event);
|
|
}
|
|
|
|
/**
|
|
* given a rect with 0,0 at the top left (windows cords)
|
|
* convert it to a rect with 0,0 at the bottom left (apple cords)
|
|
*
|
|
* Note: the formula works for conversions in both directions.
|
|
*
|
|
*/
|
|
|
|
void windows_to_apple_cords(MRDPView* view, NSRect* r)
|
|
{
|
|
r->origin.y = [view frame].size.height - (r->origin.y + r->size.height);
|
|
}
|
|
|
|
|
|
@end
|