2011-08-16 08:22:00 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-16 08:22:00 +04:00
|
|
|
* X11 RAIL
|
|
|
|
*
|
|
|
|
* Copyright 2011 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.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:20:53 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-10-27 21:29:16 +04:00
|
|
|
#include <X11/Xlib.h>
|
xfreerdp: set _NET_WM_ICON to RAIL app icon
Icons on X11 windows are configured using the _NET_WM_ICON property
described in Extended Window Manager Hints. Here we implement converison
from DIB bitmaps used by RAIL to the format expected by _NET_WM_ICON,
and actually set the icon for RAIL app windows.
Both DIB format and _NET_WM_ICON (or rather, Xlib) are weird. Let's
start with RAIL's format. That's the one used in BMP and ICO formats
on Windows. It has some strange properties but thankfully FreeRDP's
freerdp_image_copy() can handle most of them for us. (With an exception
of monochrome and 16-color formats that it does not support. Sorry, but
I'm too lazy to fix them. They are not seem to be used by any real
application either.) The one thing that it can't do is to apply the
alpha transparency bitmask so we have to do it manually. This instantly
reminds us that DIB format has HISTORY: it's vertically flipped and
each must be padded to 4 bytes. Both these quirks having reasonable
(for a certain definition of 'reason') explanations. Such is life.
(Also, 8-bit images require a color palette which we must fill in.)
So okay, now comes _NET_WM_ICON. It is more sane (or rather, easier to
deal with). The bitmap is represented with a tiny [width, height] header
followed by an array of pixels in ARGB format. There is no padding, no
weird color formats. But here's a catch: you can't simply take the
output of freerdp_image_copy() and cast to (unsigned char*) of colors.
We have to allocate an array of C's longs and copy the pixels there,
because that's what Xlib expects (and this is mentioned in the spec).
Simply casting an array of bytes causes crashes on 64-bit systems.
So don't try to cheat or "optimize" and read the docs, kids.
Note that XFlush() call after XChangeProperty(). It's there because it
seems to helps see the icon quicker with Unity on Ubuntu 14.04. I don't
know why. (And Unity does not support _NET_WM_ICON officially. But it
sorta kinda works sometimes.)
Oh, and while we're here, delete some old, unused, and commented out
code that was setting window icons in the past. It's not needed anymore.
2018-11-10 15:43:36 +03:00
|
|
|
#include <X11/Xatom.h>
|
2011-10-27 21:29:16 +04:00
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2014-08-18 19:23:13 +04:00
|
|
|
#include <winpr/wlog.h>
|
2012-12-14 08:54:54 +04:00
|
|
|
#include <winpr/print.h>
|
2014-11-12 02:32:18 +03:00
|
|
|
|
2011-08-20 02:46:10 +04:00
|
|
|
#include "xf_window.h"
|
2011-08-16 08:22:00 +04:00
|
|
|
#include "xf_rail.h"
|
|
|
|
|
2014-09-12 19:13:01 +04:00
|
|
|
#define TAG CLIENT_TAG("x11")
|
2014-08-18 19:23:13 +04:00
|
|
|
|
2017-03-28 12:47:46 +03:00
|
|
|
static const char* error_code_names[] =
|
2014-11-12 00:35:30 +03:00
|
|
|
{
|
|
|
|
"RAIL_EXEC_S_OK",
|
|
|
|
"RAIL_EXEC_E_HOOK_NOT_LOADED",
|
|
|
|
"RAIL_EXEC_E_DECODE_FAILED",
|
|
|
|
"RAIL_EXEC_E_NOT_IN_ALLOWLIST",
|
|
|
|
"RAIL_EXEC_E_FILE_NOT_FOUND",
|
|
|
|
"RAIL_EXEC_E_FAIL",
|
|
|
|
"RAIL_EXEC_E_SESSION_LOCKED"
|
|
|
|
};
|
|
|
|
|
2017-05-12 12:11:41 +03:00
|
|
|
#ifdef WITH_DEBUG_RAIL
|
2017-03-28 12:47:46 +03:00
|
|
|
static const char* movetype_names[] =
|
2014-11-12 00:35:30 +03:00
|
|
|
{
|
|
|
|
"(invalid)",
|
|
|
|
"RAIL_WMSZ_LEFT",
|
|
|
|
"RAIL_WMSZ_RIGHT",
|
|
|
|
"RAIL_WMSZ_TOP",
|
|
|
|
"RAIL_WMSZ_TOPLEFT",
|
|
|
|
"RAIL_WMSZ_TOPRIGHT",
|
|
|
|
"RAIL_WMSZ_BOTTOM",
|
|
|
|
"RAIL_WMSZ_BOTTOMLEFT",
|
|
|
|
"RAIL_WMSZ_BOTTOMRIGHT",
|
|
|
|
"RAIL_WMSZ_MOVE",
|
|
|
|
"RAIL_WMSZ_KEYMOVE",
|
|
|
|
"RAIL_WMSZ_KEYSIZE"
|
|
|
|
};
|
2017-05-12 12:11:41 +03:00
|
|
|
#endif
|
2014-11-12 00:35:30 +03:00
|
|
|
|
2018-11-10 12:51:30 +03:00
|
|
|
struct xf_rail_icon
|
|
|
|
{
|
|
|
|
long *data;
|
|
|
|
int length;
|
|
|
|
};
|
|
|
|
typedef struct xf_rail_icon xfRailIcon;
|
|
|
|
|
|
|
|
struct xf_rail_icon_cache
|
|
|
|
{
|
|
|
|
xfRailIcon* entries;
|
|
|
|
UINT32 numCaches;
|
|
|
|
UINT32 numCacheEntries;
|
|
|
|
xfRailIcon scratch;
|
|
|
|
};
|
|
|
|
typedef struct xf_rail_icon_cache xfRailIconCache;
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
void xf_rail_enable_remoteapp_mode(xfContext* xfc)
|
2012-01-02 13:27:04 +04:00
|
|
|
{
|
2013-06-13 02:57:25 +04:00
|
|
|
if (!xfc->remote_app)
|
2012-01-02 13:27:04 +04:00
|
|
|
{
|
2013-06-13 02:57:25 +04:00
|
|
|
xfc->remote_app = TRUE;
|
2016-08-18 21:14:52 +03:00
|
|
|
xfc->drawable = xf_CreateDummyWindow(xfc);
|
2014-11-12 06:27:33 +03:00
|
|
|
xf_DestroyDesktopWindow(xfc, xfc->window);
|
2013-06-13 02:57:25 +04:00
|
|
|
xfc->window = NULL;
|
2012-01-02 13:27:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-18 21:34:47 +04:00
|
|
|
void xf_rail_disable_remoteapp_mode(xfContext* xfc)
|
2012-08-04 02:35:17 +04:00
|
|
|
{
|
2013-06-13 02:57:25 +04:00
|
|
|
if (xfc->remote_app)
|
2012-08-14 23:59:11 +04:00
|
|
|
{
|
2013-06-13 02:57:25 +04:00
|
|
|
xfc->remote_app = FALSE;
|
2016-08-18 21:14:52 +03:00
|
|
|
xf_DestroyDummyWindow(xfc, xfc->drawable);
|
2013-06-13 02:57:25 +04:00
|
|
|
xf_create_window(xfc);
|
2012-08-14 23:59:11 +04:00
|
|
|
}
|
2012-08-04 02:35:17 +04:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
void xf_rail_send_activate(xfContext* xfc, Window xwindow, BOOL enabled)
|
|
|
|
{
|
2014-11-13 01:00:57 +03:00
|
|
|
xfAppWindow* appWindow;
|
|
|
|
RAIL_ACTIVATE_ORDER activate;
|
|
|
|
appWindow = xf_AppWindowFromX11Window(xfc, xwindow);
|
|
|
|
|
|
|
|
if (!appWindow)
|
|
|
|
return;
|
|
|
|
|
2018-09-26 12:27:57 +03:00
|
|
|
if (enabled)
|
|
|
|
xf_SetWindowStyle(xfc, appWindow, appWindow->dwStyle, appWindow->dwExStyle);
|
|
|
|
else
|
|
|
|
xf_SetWindowStyle(xfc, appWindow, 0, 0);
|
|
|
|
|
2014-11-13 01:00:57 +03:00
|
|
|
activate.windowId = appWindow->windowId;
|
|
|
|
activate.enabled = enabled;
|
|
|
|
xfc->rail->ClientActivate(xfc->rail, &activate);
|
2014-11-13 00:42:32 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
void xf_rail_send_client_system_command(xfContext* xfc, UINT32 windowId,
|
2016-10-04 10:00:00 +03:00
|
|
|
UINT16 command)
|
2014-11-13 00:42:32 +03:00
|
|
|
{
|
|
|
|
RAIL_SYSCOMMAND_ORDER syscommand;
|
|
|
|
syscommand.windowId = windowId;
|
|
|
|
syscommand.command = command;
|
|
|
|
xfc->rail->ClientSystemCommand(xfc->rail, &syscommand);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The position of the X window can become out of sync with the RDP window
|
|
|
|
* if the X window is moved locally by the window manager. In this event
|
|
|
|
* send an update to the RDP server informing it of the new window position
|
|
|
|
* and size.
|
|
|
|
*/
|
|
|
|
void xf_rail_adjust_position(xfContext* xfc, xfAppWindow* appWindow)
|
|
|
|
{
|
|
|
|
RAIL_WINDOW_MOVE_ORDER windowMove;
|
|
|
|
|
|
|
|
if (!appWindow->is_mapped || appWindow->local_move.state != LMS_NOT_ACTIVE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If current window position disagrees with RDP window position, send update to RDP server */
|
2015-10-16 02:41:55 +03:00
|
|
|
if (appWindow->x != appWindow->windowOffsetX ||
|
2016-08-03 15:16:20 +03:00
|
|
|
appWindow->y != appWindow->windowOffsetY ||
|
|
|
|
appWindow->width != appWindow->windowWidth ||
|
|
|
|
appWindow->height != appWindow->windowHeight)
|
2014-11-13 00:42:32 +03:00
|
|
|
{
|
|
|
|
windowMove.windowId = appWindow->windowId;
|
|
|
|
/*
|
2015-02-12 02:24:06 +03:00
|
|
|
* Calculate new size/position for the rail window(new values for windowOffsetX/windowOffsetY/windowWidth/windowHeight) on the server
|
2014-11-13 00:42:32 +03:00
|
|
|
*/
|
2015-10-16 02:41:55 +03:00
|
|
|
windowMove.left = appWindow->x;
|
|
|
|
windowMove.top = appWindow->y;
|
2014-11-13 00:42:32 +03:00
|
|
|
windowMove.right = windowMove.left + appWindow->width;
|
|
|
|
windowMove.bottom = windowMove.top + appWindow->height;
|
|
|
|
xfc->rail->ClientWindowMove(xfc->rail, &windowMove);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_rail_end_local_move(xfContext* xfc, xfAppWindow* appWindow)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
int child_x;
|
|
|
|
int child_y;
|
|
|
|
unsigned int mask;
|
|
|
|
Window root_window;
|
|
|
|
Window child_window;
|
|
|
|
RAIL_WINDOW_MOVE_ORDER windowMove;
|
2016-08-03 15:16:20 +03:00
|
|
|
rdpInput* input = xfc->context.input;
|
2014-11-13 00:42:32 +03:00
|
|
|
/*
|
|
|
|
* For keyboard moves send and explicit update to RDP server
|
|
|
|
*/
|
|
|
|
windowMove.windowId = appWindow->windowId;
|
|
|
|
/*
|
2015-02-12 02:24:06 +03:00
|
|
|
* Calculate new size/position for the rail window(new values for windowOffsetX/windowOffsetY/windowWidth/windowHeight) on the server
|
|
|
|
*
|
2014-11-13 00:42:32 +03:00
|
|
|
*/
|
2015-10-16 02:41:55 +03:00
|
|
|
windowMove.left = appWindow->x;
|
|
|
|
windowMove.top = appWindow->y;
|
2016-08-03 15:16:20 +03:00
|
|
|
windowMove.right = windowMove.left +
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->width; /* In the update to RDP the position is one past the window */
|
2014-11-13 00:42:32 +03:00
|
|
|
windowMove.bottom = windowMove.top + appWindow->height;
|
|
|
|
xfc->rail->ClientWindowMove(xfc->rail, &windowMove);
|
|
|
|
/*
|
|
|
|
* Simulate button up at new position to end the local move (per RDP spec)
|
|
|
|
*/
|
|
|
|
XQueryPointer(xfc->display, appWindow->handle,
|
2016-10-04 10:00:00 +03:00
|
|
|
&root_window, &child_window, &x, &y, &child_x, &child_y, &mask);
|
2014-11-13 00:42:32 +03:00
|
|
|
|
|
|
|
/* only send the mouse coordinates if not a keyboard move or size */
|
|
|
|
if ((appWindow->local_move.direction != _NET_WM_MOVERESIZE_MOVE_KEYBOARD) &&
|
2016-08-03 15:16:20 +03:00
|
|
|
(appWindow->local_move.direction != _NET_WM_MOVERESIZE_SIZE_KEYBOARD))
|
2014-11-13 00:42:32 +03:00
|
|
|
{
|
|
|
|
input->MouseEvent(input, PTR_FLAGS_BUTTON1, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Proactively update the RAIL window dimensions. There is a race condition where
|
|
|
|
* we can start to receive GDI orders for the new window dimensions before we
|
|
|
|
* receive the RAIL ORDER for the new window size. This avoids that race condition.
|
|
|
|
*/
|
2015-10-16 02:41:55 +03:00
|
|
|
appWindow->windowOffsetX = appWindow->x;
|
|
|
|
appWindow->windowOffsetY = appWindow->y;
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->windowWidth = appWindow->width;
|
|
|
|
appWindow->windowHeight = appWindow->height;
|
|
|
|
appWindow->local_move.state = LMS_TERMINATING;
|
|
|
|
}
|
|
|
|
|
2018-03-01 14:39:29 +03:00
|
|
|
static void xf_rail_invalidate_region(xfContext* xfc, REGION16* invalidRegion)
|
2014-11-12 02:32:18 +03:00
|
|
|
{
|
|
|
|
int index;
|
|
|
|
int count;
|
|
|
|
RECTANGLE_16 updateRect;
|
|
|
|
RECTANGLE_16 windowRect;
|
|
|
|
ULONG_PTR* pKeys = NULL;
|
2014-11-12 06:27:33 +03:00
|
|
|
xfAppWindow* appWindow;
|
2014-11-12 02:32:18 +03:00
|
|
|
const RECTANGLE_16* extents;
|
|
|
|
REGION16 windowInvalidRegion;
|
|
|
|
region16_init(&windowInvalidRegion);
|
|
|
|
count = HashTable_GetKeys(xfc->railWindows, &pKeys);
|
|
|
|
|
|
|
|
for (index = 0; index < count; index++)
|
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
appWindow = (xfAppWindow*) HashTable_GetItemValue(xfc->railWindows,
|
2016-10-04 10:00:00 +03:00
|
|
|
(void*) pKeys[index]);
|
2014-11-12 02:32:18 +03:00
|
|
|
|
2014-11-12 06:27:33 +03:00
|
|
|
if (appWindow)
|
2014-11-12 02:32:18 +03:00
|
|
|
{
|
2015-09-04 01:42:53 +03:00
|
|
|
windowRect.left = MAX(appWindow->x, 0);
|
|
|
|
windowRect.top = MAX(appWindow->y, 0);
|
|
|
|
windowRect.right = MAX(appWindow->x + appWindow->width, 0);
|
|
|
|
windowRect.bottom = MAX(appWindow->y + appWindow->height, 0);
|
2014-11-12 02:32:18 +03:00
|
|
|
region16_clear(&windowInvalidRegion);
|
|
|
|
region16_intersect_rect(&windowInvalidRegion, invalidRegion, &windowRect);
|
|
|
|
|
|
|
|
if (!region16_is_empty(&windowInvalidRegion))
|
|
|
|
{
|
|
|
|
extents = region16_extents(&windowInvalidRegion);
|
2014-11-12 06:27:33 +03:00
|
|
|
updateRect.left = extents->left - appWindow->x;
|
|
|
|
updateRect.top = extents->top - appWindow->y;
|
|
|
|
updateRect.right = extents->right - appWindow->x;
|
|
|
|
updateRect.bottom = extents->bottom - appWindow->y;
|
2017-01-31 12:10:58 +03:00
|
|
|
xf_UpdateWindowArea(xfc, appWindow, updateRect.left, updateRect.top,
|
|
|
|
updateRect.right - updateRect.left,
|
|
|
|
updateRect.bottom - updateRect.top);
|
2014-11-12 02:32:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-13 11:49:51 +03:00
|
|
|
free(pKeys);
|
2014-11-12 02:32:18 +03:00
|
|
|
region16_uninit(&windowInvalidRegion);
|
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
void xf_rail_paint(xfContext* xfc, INT32 uleft, INT32 utop, UINT32 uright,
|
2016-10-04 10:00:00 +03:00
|
|
|
UINT32 ubottom)
|
2011-08-17 10:14:02 +04:00
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
REGION16 invalidRegion;
|
|
|
|
RECTANGLE_16 invalidRect;
|
|
|
|
invalidRect.left = uleft;
|
|
|
|
invalidRect.top = utop;
|
|
|
|
invalidRect.right = uright;
|
|
|
|
invalidRect.bottom = ubottom;
|
|
|
|
region16_init(&invalidRegion);
|
|
|
|
region16_union_rect(&invalidRegion, &invalidRegion, &invalidRect);
|
|
|
|
xf_rail_invalidate_region(xfc, &invalidRegion);
|
|
|
|
region16_uninit(&invalidRegion);
|
2011-08-20 06:21:09 +04:00
|
|
|
}
|
|
|
|
|
2014-11-12 04:26:47 +03:00
|
|
|
/* RemoteApp Core Protocol Extension */
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_window_common(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, WINDOW_STATE_ORDER* windowState)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
xfAppWindow* appWindow = NULL;
|
2014-11-12 04:26:47 +03:00
|
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
UINT32 fieldFlags = orderInfo->fieldFlags;
|
2015-10-16 02:41:55 +03:00
|
|
|
BOOL position_or_size_updated = FALSE;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_STATE_NEW)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow = (xfAppWindow*) calloc(1, sizeof(xfAppWindow));
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (!appWindow)
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->xfc = xfc;
|
|
|
|
appWindow->windowId = orderInfo->windowId;
|
|
|
|
appWindow->dwStyle = windowState->style;
|
|
|
|
appWindow->dwExStyle = windowState->extendedStyle;
|
|
|
|
appWindow->x = appWindow->windowOffsetX = windowState->windowOffsetX;
|
|
|
|
appWindow->y = appWindow->windowOffsetY = windowState->windowOffsetY;
|
|
|
|
appWindow->width = appWindow->windowWidth = windowState->windowWidth;
|
|
|
|
appWindow->height = appWindow->windowHeight = windowState->windowHeight;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2015-10-15 22:35:07 +03:00
|
|
|
/* Ensure window always gets a window title */
|
2014-11-12 04:26:47 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_TITLE)
|
|
|
|
{
|
|
|
|
char* title = NULL;
|
|
|
|
|
2016-03-03 18:21:12 +03:00
|
|
|
if (windowState->titleInfo.length == 0)
|
|
|
|
{
|
|
|
|
if (!(title = _strdup("")))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to duplicate empty window title string");
|
|
|
|
/* error handled below */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ConvertFromUnicode(CP_UTF8, 0, (WCHAR*) windowState->titleInfo.string,
|
2016-10-04 10:00:00 +03:00
|
|
|
windowState->titleInfo.length / 2, &title, 0, NULL, NULL) < 1)
|
2016-03-03 18:21:12 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to convert window title");
|
|
|
|
/* error handled below */
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->title = title;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-03-03 18:21:12 +03:00
|
|
|
if (!(appWindow->title = _strdup("RdpRailWindow")))
|
|
|
|
WLog_ERR(TAG, "failed to duplicate default window title string");
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
2016-03-03 18:21:12 +03:00
|
|
|
|
2015-06-17 23:08:02 +03:00
|
|
|
if (!appWindow->title)
|
|
|
|
{
|
|
|
|
free(appWindow);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
HashTable_Add(xfc->railWindows, (void*)(UINT_PTR) orderInfo->windowId,
|
2016-10-04 10:00:00 +03:00
|
|
|
(void*) appWindow);
|
2014-11-13 01:00:57 +03:00
|
|
|
xf_AppWindowInit(xfc, appWindow);
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow = (xfAppWindow*) HashTable_GetItemValue(xfc->railWindows,
|
2016-10-04 10:00:00 +03:00
|
|
|
(void*)(UINT_PTR) orderInfo->windowId);
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (!appWindow)
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
/* Keep track of any position/size update so that we can force a refresh of the window */
|
2014-11-12 04:26:47 +03:00
|
|
|
if ((fieldFlags & WINDOW_ORDER_FIELD_WND_OFFSET) ||
|
2016-08-03 15:16:20 +03:00
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_WND_SIZE) ||
|
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_CLIENT_AREA_OFFSET) ||
|
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_CLIENT_AREA_SIZE) ||
|
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_WND_CLIENT_DELTA) ||
|
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_VIS_OFFSET) ||
|
|
|
|
(fieldFlags & WINDOW_ORDER_FIELD_VISIBILITY))
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-10-16 02:41:55 +03:00
|
|
|
position_or_size_updated = TRUE;
|
2016-08-03 15:16:20 +03:00
|
|
|
}
|
2015-02-12 02:24:06 +03:00
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
/* Update Parameters */
|
2015-02-12 02:24:06 +03:00
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_WND_OFFSET)
|
|
|
|
{
|
|
|
|
appWindow->windowOffsetX = windowState->windowOffsetX;
|
|
|
|
appWindow->windowOffsetY = windowState->windowOffsetY;
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_WND_SIZE)
|
|
|
|
{
|
|
|
|
appWindow->windowWidth = windowState->windowWidth;
|
|
|
|
appWindow->windowHeight = windowState->windowHeight;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_OWNER)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->ownerWindowId = windowState->ownerWindowId;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_STYLE)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->dwStyle = windowState->style;
|
|
|
|
appWindow->dwExStyle = windowState->extendedStyle;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_SHOW)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->showState = windowState->showState;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_TITLE)
|
|
|
|
{
|
|
|
|
char* title = NULL;
|
|
|
|
|
2016-03-03 18:21:12 +03:00
|
|
|
if (windowState->titleInfo.length == 0)
|
|
|
|
{
|
|
|
|
if (!(title = _strdup("")))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to duplicate empty window title string");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (ConvertFromUnicode(CP_UTF8, 0, (WCHAR*) windowState->titleInfo.string,
|
2016-10-04 10:00:00 +03:00
|
|
|
windowState->titleInfo.length / 2, &title, 0, NULL, NULL) < 1)
|
2016-03-03 18:21:12 +03:00
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to convert window title");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2016-08-03 15:16:20 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
free(appWindow->title);
|
|
|
|
appWindow->title = title;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_CLIENT_AREA_OFFSET)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->clientOffsetX = windowState->clientOffsetX;
|
|
|
|
appWindow->clientOffsetY = windowState->clientOffsetY;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_CLIENT_AREA_SIZE)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->clientAreaWidth = windowState->clientAreaWidth;
|
|
|
|
appWindow->clientAreaHeight = windowState->clientAreaHeight;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_WND_CLIENT_DELTA)
|
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->windowClientDeltaX = windowState->windowClientDeltaX;
|
|
|
|
appWindow->windowClientDeltaY = windowState->windowClientDeltaY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_WND_RECTS)
|
|
|
|
{
|
|
|
|
if (appWindow->windowRects)
|
|
|
|
{
|
|
|
|
free(appWindow->windowRects);
|
|
|
|
appWindow->windowRects = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
appWindow->numWindowRects = windowState->numWindowRects;
|
|
|
|
|
|
|
|
if (appWindow->numWindowRects)
|
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
appWindow->windowRects = (RECTANGLE_16*) calloc(appWindow->numWindowRects,
|
2016-10-04 10:00:00 +03:00
|
|
|
sizeof(RECTANGLE_16));
|
2014-11-13 00:42:32 +03:00
|
|
|
|
|
|
|
if (!appWindow->windowRects)
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2014-11-13 00:42:32 +03:00
|
|
|
|
|
|
|
CopyMemory(appWindow->windowRects, windowState->windowRects,
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->numWindowRects * sizeof(RECTANGLE_16));
|
2014-11-13 00:42:32 +03:00
|
|
|
}
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_VIS_OFFSET)
|
|
|
|
{
|
|
|
|
appWindow->visibleOffsetX = windowState->visibleOffsetX;
|
|
|
|
appWindow->visibleOffsetY = windowState->visibleOffsetY;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_VISIBILITY)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
if (appWindow->visibilityRects)
|
|
|
|
{
|
|
|
|
free(appWindow->visibilityRects);
|
|
|
|
appWindow->visibilityRects = NULL;
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
appWindow->numVisibilityRects = windowState->numVisibilityRects;
|
|
|
|
|
|
|
|
if (appWindow->numVisibilityRects)
|
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
appWindow->visibilityRects = (RECTANGLE_16*) calloc(
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->numVisibilityRects, sizeof(RECTANGLE_16));
|
2014-11-13 00:42:32 +03:00
|
|
|
|
|
|
|
if (!appWindow->visibilityRects)
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2014-11-13 00:42:32 +03:00
|
|
|
|
|
|
|
CopyMemory(appWindow->visibilityRects, windowState->visibilityRects,
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->numVisibilityRects * sizeof(RECTANGLE_16));
|
2014-11-13 00:42:32 +03:00
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
/* Update Window */
|
|
|
|
|
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_STYLE)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_SHOW)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2014-11-13 00:42:32 +03:00
|
|
|
xf_ShowWindow(xfc, appWindow, appWindow->showState);
|
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (fieldFlags & WINDOW_ORDER_FIELD_TITLE)
|
|
|
|
{
|
2015-05-27 16:13:43 +03:00
|
|
|
if (appWindow->title)
|
|
|
|
xf_SetWindowText(xfc, appWindow, appWindow->title);
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
if (position_or_size_updated)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
UINT32 visibilityRectsOffsetX = (appWindow->visibleOffsetX -
|
2016-10-04 10:00:00 +03:00
|
|
|
(appWindow->clientOffsetX - appWindow->windowClientDeltaX));
|
2016-08-03 15:16:20 +03:00
|
|
|
UINT32 visibilityRectsOffsetY = (appWindow->visibleOffsetY -
|
2016-10-04 10:00:00 +03:00
|
|
|
(appWindow->clientOffsetY - appWindow->windowClientDeltaY));
|
2015-10-16 02:41:55 +03:00
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
/*
|
|
|
|
* The rail server like to set the window to a small size when it is minimized even though it is hidden
|
|
|
|
* in some cases this can cause the window not to restore back to its original size. Therefore we don't
|
|
|
|
* update our local window when that rail window state is minimized
|
|
|
|
*/
|
2015-10-16 02:41:55 +03:00
|
|
|
if (appWindow->rail_state != WINDOW_SHOW_MINIMIZED)
|
|
|
|
{
|
|
|
|
/* Redraw window area if already in the correct position */
|
|
|
|
if (appWindow->x == appWindow->windowOffsetX &&
|
2016-08-03 15:16:20 +03:00
|
|
|
appWindow->y == appWindow->windowOffsetY &&
|
|
|
|
appWindow->width == appWindow->windowWidth &&
|
|
|
|
appWindow->height == appWindow->windowHeight)
|
2015-10-16 02:41:55 +03:00
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
xf_UpdateWindowArea(xfc, appWindow, 0, 0, appWindow->windowWidth,
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->windowHeight);
|
2015-10-16 02:41:55 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-08-03 15:16:20 +03:00
|
|
|
xf_MoveWindow(xfc, appWindow, appWindow->windowOffsetX,
|
2016-10-04 10:00:00 +03:00
|
|
|
appWindow->windowOffsetY,
|
|
|
|
appWindow->windowWidth, appWindow->windowHeight);
|
2015-10-16 02:41:55 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
xf_SetWindowVisibilityRects(xfc, appWindow, visibilityRectsOffsetX,
|
2016-10-04 10:00:00 +03:00
|
|
|
visibilityRectsOffsetY, appWindow->visibilityRects,
|
|
|
|
appWindow->numVisibilityRects);
|
2015-09-11 01:15:55 +03:00
|
|
|
}
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2015-10-16 02:41:55 +03:00
|
|
|
/* We should only be using the visibility rects for shaping the window */
|
|
|
|
/*if (fieldFlags & WINDOW_ORDER_FIELD_WND_RECTS)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-10-16 02:41:55 +03:00
|
|
|
xf_SetWindowRects(xfc, appWindow, appWindow->windowRects, appWindow->numWindowRects);
|
|
|
|
}*/
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_window_delete(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
|
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
|
2018-02-09 11:35:26 +03:00
|
|
|
if (!xfc)
|
|
|
|
return FALSE;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
HashTable_Remove(xfc->railWindows, (void*)(UINT_PTR) orderInfo->windowId);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2018-11-10 12:51:30 +03:00
|
|
|
static xfRailIconCache* RailIconCache_New(rdpSettings* settings)
|
|
|
|
{
|
|
|
|
xfRailIconCache* cache;
|
|
|
|
|
|
|
|
cache = calloc(1, sizeof(*cache));
|
|
|
|
if (!cache)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cache->numCaches = settings->RemoteAppNumIconCaches;
|
|
|
|
cache->numCacheEntries = settings->RemoteAppNumIconCacheEntries;
|
|
|
|
|
|
|
|
cache->entries = calloc(cache->numCaches * cache->numCacheEntries,
|
|
|
|
sizeof(*cache->entries));
|
|
|
|
if (!cache->entries)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "failed to allocate icon cache %d x %d entries",
|
|
|
|
cache->numCaches, cache->numCacheEntries);
|
|
|
|
free(cache);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void RailIconCache_Free(xfRailIconCache* cache)
|
|
|
|
{
|
|
|
|
UINT32 i;
|
|
|
|
|
|
|
|
if (cache)
|
|
|
|
{
|
|
|
|
for (i = 0; i < cache->numCaches * cache->numCacheEntries; i++)
|
|
|
|
{
|
|
|
|
free(cache->entries[i].data);
|
|
|
|
}
|
|
|
|
free(cache->scratch.data);
|
|
|
|
free(cache->entries);
|
|
|
|
free(cache);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static xfRailIcon* RailIconCache_Lookup(xfRailIconCache* cache,
|
|
|
|
UINT8 cacheId, UINT16 cacheEntry)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* MS-RDPERP 2.2.1.2.3 Icon Info (TS_ICON_INFO)
|
|
|
|
*
|
|
|
|
* CacheId (1 byte):
|
|
|
|
* If the value is 0xFFFF, the icon SHOULD NOT be cached.
|
|
|
|
*
|
|
|
|
* Yes, the spec says "0xFFFF" in the 2018-03-16 revision,
|
|
|
|
* but the actual protocol field is 1-byte wide.
|
|
|
|
*/
|
|
|
|
if (cacheId == 0xFF)
|
|
|
|
return &cache->scratch;
|
|
|
|
|
|
|
|
if (cacheId >= cache->numCaches)
|
|
|
|
return NULL;
|
|
|
|
if (cacheEntry >= cache->numCacheEntries)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return &cache->entries[cache->numCacheEntries * cacheId + cacheEntry];
|
|
|
|
}
|
|
|
|
|
xfreerdp: set _NET_WM_ICON to RAIL app icon
Icons on X11 windows are configured using the _NET_WM_ICON property
described in Extended Window Manager Hints. Here we implement converison
from DIB bitmaps used by RAIL to the format expected by _NET_WM_ICON,
and actually set the icon for RAIL app windows.
Both DIB format and _NET_WM_ICON (or rather, Xlib) are weird. Let's
start with RAIL's format. That's the one used in BMP and ICO formats
on Windows. It has some strange properties but thankfully FreeRDP's
freerdp_image_copy() can handle most of them for us. (With an exception
of monochrome and 16-color formats that it does not support. Sorry, but
I'm too lazy to fix them. They are not seem to be used by any real
application either.) The one thing that it can't do is to apply the
alpha transparency bitmask so we have to do it manually. This instantly
reminds us that DIB format has HISTORY: it's vertically flipped and
each must be padded to 4 bytes. Both these quirks having reasonable
(for a certain definition of 'reason') explanations. Such is life.
(Also, 8-bit images require a color palette which we must fill in.)
So okay, now comes _NET_WM_ICON. It is more sane (or rather, easier to
deal with). The bitmap is represented with a tiny [width, height] header
followed by an array of pixels in ARGB format. There is no padding, no
weird color formats. But here's a catch: you can't simply take the
output of freerdp_image_copy() and cast to (unsigned char*) of colors.
We have to allocate an array of C's longs and copy the pixels there,
because that's what Xlib expects (and this is mentioned in the spec).
Simply casting an array of bytes causes crashes on 64-bit systems.
So don't try to cheat or "optimize" and read the docs, kids.
Note that XFlush() call after XChangeProperty(). It's there because it
seems to helps see the icon quicker with Unity on Ubuntu 14.04. I don't
know why. (And Unity does not support _NET_WM_ICON officially. But it
sorta kinda works sometimes.)
Oh, and while we're here, delete some old, unused, and commented out
code that was setting window icons in the past. It's not needed anymore.
2018-11-10 15:43:36 +03:00
|
|
|
static inline UINT32 read_color_quad(const BYTE* pixels)
|
|
|
|
{
|
|
|
|
return (((UINT32) pixels[0]) << 24)
|
|
|
|
| (((UINT32) pixels[1]) << 16)
|
|
|
|
| (((UINT32) pixels[2]) << 8)
|
|
|
|
| (((UINT32) pixels[3]) << 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DIB color palettes are arrays of RGBQUAD structs with colors in BGRX format.
|
|
|
|
* They are used only by 1, 2, 4, and 8-bit bitmaps.
|
|
|
|
*/
|
|
|
|
static void fill_gdi_palette_for_icon(ICON_INFO* iconInfo, gdiPalette *palette)
|
|
|
|
{
|
|
|
|
UINT32 i;
|
|
|
|
|
|
|
|
palette->format = PIXEL_FORMAT_BGRX32;
|
|
|
|
ZeroMemory(palette->palette, sizeof(palette->palette));
|
|
|
|
|
|
|
|
if (!iconInfo->cbColorTable)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((iconInfo->cbColorTable % 4 != 0) || (iconInfo->cbColorTable / 4 > 256))
|
|
|
|
{
|
|
|
|
WLog_WARN(TAG, "weird palette size: %u", iconInfo->cbColorTable);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < iconInfo->cbColorTable / 4; i++)
|
|
|
|
{
|
|
|
|
palette->palette[i] = read_color_quad(&iconInfo->colorTable[4 * i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL convert_icon_color_to_argb(ICON_INFO* iconInfo, BYTE* argbPixels)
|
|
|
|
{
|
|
|
|
DWORD format;
|
|
|
|
gdiPalette palette;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Color formats used by icons are DIB bitmap formats (2-bit format
|
|
|
|
* is not used by MS-RDPERP). Note that 16-bit is RGB555, not RGB565,
|
|
|
|
* and that 32-bit format uses BGRA order.
|
|
|
|
*/
|
|
|
|
switch (iconInfo->bpp)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
case 4:
|
|
|
|
/*
|
|
|
|
* These formats are not supported by freerdp_image_copy().
|
|
|
|
* PIXEL_FORMAT_MONO and PIXEL_FORMAT_A4 are *not* correct
|
|
|
|
* color formats for this. Please fix freerdp_image_copy()
|
|
|
|
* if you came here to fix a broken icon of some weird app
|
|
|
|
* that still uses 1 or 4bpp format in the 21st century.
|
|
|
|
*/
|
|
|
|
WLog_WARN(TAG, "1bpp and 4bpp icons are not supported");
|
|
|
|
return FALSE;
|
|
|
|
case 8:
|
|
|
|
format = PIXEL_FORMAT_RGB8;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
format = PIXEL_FORMAT_RGB15;
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
format = PIXEL_FORMAT_RGB24;
|
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
format = PIXEL_FORMAT_BGRA32;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WLog_WARN(TAG, "invalid icon bpp: %d", iconInfo->bpp);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
fill_gdi_palette_for_icon(iconInfo, &palette);
|
|
|
|
|
|
|
|
return freerdp_image_copy(
|
|
|
|
argbPixels,
|
|
|
|
PIXEL_FORMAT_ARGB32,
|
|
|
|
0, 0, 0,
|
|
|
|
iconInfo->width,
|
|
|
|
iconInfo->height,
|
|
|
|
iconInfo->bitsColor,
|
|
|
|
format,
|
|
|
|
0, 0, 0,
|
|
|
|
&palette,
|
|
|
|
FREERDP_FLIP_VERTICAL
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline UINT32 div_ceil(UINT32 a, UINT32 b)
|
|
|
|
{
|
|
|
|
return (a + (b - 1)) / b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline UINT32 round_up(UINT32 a, UINT32 b)
|
|
|
|
{
|
|
|
|
return b * div_ceil(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apply_icon_alpha_mask(ICON_INFO* iconInfo, BYTE* argbPixels)
|
|
|
|
{
|
|
|
|
BYTE nextBit;
|
|
|
|
BYTE* maskByte;
|
|
|
|
UINT32 x, y;
|
|
|
|
UINT32 stride;
|
|
|
|
|
|
|
|
if (!iconInfo->cbBitsMask)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each byte encodes 8 adjacent pixels (with LSB padding as needed).
|
|
|
|
* And due to hysterical raisins, stride of DIB bitmaps must be
|
|
|
|
* a multiple of 4 bytes.
|
|
|
|
*/
|
|
|
|
stride = round_up(div_ceil(iconInfo->width, 8), 4);
|
|
|
|
|
|
|
|
for (y = 0; y < iconInfo->height; y++)
|
|
|
|
{
|
|
|
|
/* ɐᴉlɐɹʇsn∀ uᴉ ǝɹ,ǝʍ ʇɐɥʇ ʇǝƃɹoɟ ʇ,uop */
|
|
|
|
maskByte = &iconInfo->bitsMask[stride * (iconInfo->height - 1 - y)];
|
|
|
|
nextBit = 0x80;
|
|
|
|
|
|
|
|
for (x = 0; x < iconInfo->width; x++)
|
|
|
|
{
|
|
|
|
BYTE alpha = (*maskByte & nextBit) ? 0x00 : 0xFF;
|
|
|
|
argbPixels[4 * (x + y * iconInfo->width)] &= alpha;
|
|
|
|
|
|
|
|
nextBit >>= 1;
|
|
|
|
if (!nextBit)
|
|
|
|
{
|
|
|
|
nextBit = 0x80;
|
|
|
|
maskByte++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* _NET_WM_ICON format is defined as "array of CARDINAL" values which for
|
|
|
|
* Xlib must be represented with an array of C's "long" values. Note that
|
|
|
|
* "long" != "INT32" on 64-bit systems. Therefore we can't simply cast
|
|
|
|
* the bitmap data as (unsigned char*), we have to copy all the pixels.
|
|
|
|
*
|
|
|
|
* The first two values are width and height followed by actual color data
|
|
|
|
* in ARGB format (e.g., 0xFFFF0000L is opaque red), pixels are in normal,
|
|
|
|
* left-to-right top-down order.
|
|
|
|
*/
|
2018-11-10 12:51:30 +03:00
|
|
|
static BOOL convert_rail_icon(ICON_INFO* iconInfo, xfRailIcon *railIcon)
|
|
|
|
{
|
xfreerdp: set _NET_WM_ICON to RAIL app icon
Icons on X11 windows are configured using the _NET_WM_ICON property
described in Extended Window Manager Hints. Here we implement converison
from DIB bitmaps used by RAIL to the format expected by _NET_WM_ICON,
and actually set the icon for RAIL app windows.
Both DIB format and _NET_WM_ICON (or rather, Xlib) are weird. Let's
start with RAIL's format. That's the one used in BMP and ICO formats
on Windows. It has some strange properties but thankfully FreeRDP's
freerdp_image_copy() can handle most of them for us. (With an exception
of monochrome and 16-color formats that it does not support. Sorry, but
I'm too lazy to fix them. They are not seem to be used by any real
application either.) The one thing that it can't do is to apply the
alpha transparency bitmask so we have to do it manually. This instantly
reminds us that DIB format has HISTORY: it's vertically flipped and
each must be padded to 4 bytes. Both these quirks having reasonable
(for a certain definition of 'reason') explanations. Such is life.
(Also, 8-bit images require a color palette which we must fill in.)
So okay, now comes _NET_WM_ICON. It is more sane (or rather, easier to
deal with). The bitmap is represented with a tiny [width, height] header
followed by an array of pixels in ARGB format. There is no padding, no
weird color formats. But here's a catch: you can't simply take the
output of freerdp_image_copy() and cast to (unsigned char*) of colors.
We have to allocate an array of C's longs and copy the pixels there,
because that's what Xlib expects (and this is mentioned in the spec).
Simply casting an array of bytes causes crashes on 64-bit systems.
So don't try to cheat or "optimize" and read the docs, kids.
Note that XFlush() call after XChangeProperty(). It's there because it
seems to helps see the icon quicker with Unity on Ubuntu 14.04. I don't
know why. (And Unity does not support _NET_WM_ICON officially. But it
sorta kinda works sometimes.)
Oh, and while we're here, delete some old, unused, and commented out
code that was setting window icons in the past. It's not needed anymore.
2018-11-10 15:43:36 +03:00
|
|
|
BYTE* argbPixels;
|
|
|
|
BYTE* nextPixel;
|
|
|
|
long* pixels;
|
|
|
|
int i;
|
|
|
|
int nelements;
|
|
|
|
|
|
|
|
argbPixels = calloc(iconInfo->width * iconInfo->height, 4);
|
|
|
|
if (!argbPixels)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (!convert_icon_color_to_argb(iconInfo, argbPixels))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
apply_icon_alpha_mask(iconInfo, argbPixels);
|
|
|
|
|
|
|
|
nelements = 2 + iconInfo->width * iconInfo->height;
|
|
|
|
pixels = realloc(railIcon->data, nelements * sizeof(*pixels));
|
|
|
|
if (!pixels)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
railIcon->data = pixels;
|
|
|
|
railIcon->length = nelements;
|
|
|
|
|
|
|
|
pixels[0] = iconInfo->width;
|
|
|
|
pixels[1] = iconInfo->height;
|
|
|
|
|
|
|
|
nextPixel = argbPixels;
|
|
|
|
for (i = 2; i < nelements; i++)
|
|
|
|
{
|
|
|
|
pixels[i] = read_color_quad(nextPixel);
|
|
|
|
nextPixel += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(argbPixels);
|
|
|
|
|
2018-11-10 12:51:30 +03:00
|
|
|
return TRUE;
|
xfreerdp: set _NET_WM_ICON to RAIL app icon
Icons on X11 windows are configured using the _NET_WM_ICON property
described in Extended Window Manager Hints. Here we implement converison
from DIB bitmaps used by RAIL to the format expected by _NET_WM_ICON,
and actually set the icon for RAIL app windows.
Both DIB format and _NET_WM_ICON (or rather, Xlib) are weird. Let's
start with RAIL's format. That's the one used in BMP and ICO formats
on Windows. It has some strange properties but thankfully FreeRDP's
freerdp_image_copy() can handle most of them for us. (With an exception
of monochrome and 16-color formats that it does not support. Sorry, but
I'm too lazy to fix them. They are not seem to be used by any real
application either.) The one thing that it can't do is to apply the
alpha transparency bitmask so we have to do it manually. This instantly
reminds us that DIB format has HISTORY: it's vertically flipped and
each must be padded to 4 bytes. Both these quirks having reasonable
(for a certain definition of 'reason') explanations. Such is life.
(Also, 8-bit images require a color palette which we must fill in.)
So okay, now comes _NET_WM_ICON. It is more sane (or rather, easier to
deal with). The bitmap is represented with a tiny [width, height] header
followed by an array of pixels in ARGB format. There is no padding, no
weird color formats. But here's a catch: you can't simply take the
output of freerdp_image_copy() and cast to (unsigned char*) of colors.
We have to allocate an array of C's longs and copy the pixels there,
because that's what Xlib expects (and this is mentioned in the spec).
Simply casting an array of bytes causes crashes on 64-bit systems.
So don't try to cheat or "optimize" and read the docs, kids.
Note that XFlush() call after XChangeProperty(). It's there because it
seems to helps see the icon quicker with Unity on Ubuntu 14.04. I don't
know why. (And Unity does not support _NET_WM_ICON officially. But it
sorta kinda works sometimes.)
Oh, and while we're here, delete some old, unused, and commented out
code that was setting window icons in the past. It's not needed anymore.
2018-11-10 15:43:36 +03:00
|
|
|
|
|
|
|
error:
|
|
|
|
free(argbPixels);
|
|
|
|
return FALSE;
|
2018-11-10 12:51:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xf_rail_set_window_icon(xfContext* xfc,
|
|
|
|
xfAppWindow* railWindow, xfRailIcon *icon,
|
|
|
|
BOOL replace)
|
|
|
|
{
|
xfreerdp: set _NET_WM_ICON to RAIL app icon
Icons on X11 windows are configured using the _NET_WM_ICON property
described in Extended Window Manager Hints. Here we implement converison
from DIB bitmaps used by RAIL to the format expected by _NET_WM_ICON,
and actually set the icon for RAIL app windows.
Both DIB format and _NET_WM_ICON (or rather, Xlib) are weird. Let's
start with RAIL's format. That's the one used in BMP and ICO formats
on Windows. It has some strange properties but thankfully FreeRDP's
freerdp_image_copy() can handle most of them for us. (With an exception
of monochrome and 16-color formats that it does not support. Sorry, but
I'm too lazy to fix them. They are not seem to be used by any real
application either.) The one thing that it can't do is to apply the
alpha transparency bitmask so we have to do it manually. This instantly
reminds us that DIB format has HISTORY: it's vertically flipped and
each must be padded to 4 bytes. Both these quirks having reasonable
(for a certain definition of 'reason') explanations. Such is life.
(Also, 8-bit images require a color palette which we must fill in.)
So okay, now comes _NET_WM_ICON. It is more sane (or rather, easier to
deal with). The bitmap is represented with a tiny [width, height] header
followed by an array of pixels in ARGB format. There is no padding, no
weird color formats. But here's a catch: you can't simply take the
output of freerdp_image_copy() and cast to (unsigned char*) of colors.
We have to allocate an array of C's longs and copy the pixels there,
because that's what Xlib expects (and this is mentioned in the spec).
Simply casting an array of bytes causes crashes on 64-bit systems.
So don't try to cheat or "optimize" and read the docs, kids.
Note that XFlush() call after XChangeProperty(). It's there because it
seems to helps see the icon quicker with Unity on Ubuntu 14.04. I don't
know why. (And Unity does not support _NET_WM_ICON officially. But it
sorta kinda works sometimes.)
Oh, and while we're here, delete some old, unused, and commented out
code that was setting window icons in the past. It's not needed anymore.
2018-11-10 15:43:36 +03:00
|
|
|
XChangeProperty(xfc->display, railWindow->handle, xfc->_NET_WM_ICON,
|
|
|
|
XA_CARDINAL, 32, replace ? PropModeReplace : PropModeAppend,
|
|
|
|
(unsigned char*) icon->data, icon->length);
|
|
|
|
XFlush(xfc->display);
|
2018-11-10 12:51:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static xfAppWindow* xf_rail_get_window_by_id(xfContext* xfc, UINT32 windowId)
|
|
|
|
{
|
|
|
|
return (xfAppWindow*) HashTable_GetItemValue(xfc->railWindows,
|
|
|
|
(void*)(UINT_PTR) windowId);
|
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_window_icon(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, WINDOW_ICON_ORDER* windowIcon)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
|
|
|
xfContext* xfc = (xfContext*) context;
|
2018-11-10 12:51:30 +03:00
|
|
|
xfAppWindow* railWindow;
|
|
|
|
xfRailIcon *icon;
|
|
|
|
BOOL replaceIcon;
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2018-11-10 12:51:30 +03:00
|
|
|
railWindow = xf_rail_get_window_by_id(xfc, orderInfo->windowId);
|
2014-11-12 04:26:47 +03:00
|
|
|
if (!railWindow)
|
2018-11-10 12:51:30 +03:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
icon = RailIconCache_Lookup(xfc->railIconCache,
|
|
|
|
windowIcon->iconInfo->cacheId,
|
|
|
|
windowIcon->iconInfo->cacheEntry);
|
|
|
|
if (!icon)
|
|
|
|
{
|
|
|
|
WLog_DBG(TAG, "failed to get icon from cache %02X:%04X",
|
|
|
|
windowIcon->iconInfo->cacheId,
|
|
|
|
windowIcon->iconInfo->cacheEntry);
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2018-11-10 12:51:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!convert_rail_icon(windowIcon->iconInfo, icon))
|
|
|
|
{
|
|
|
|
WLog_DBG(TAG, "failed to convert icon for window %08X", orderInfo->windowId);
|
|
|
|
}
|
|
|
|
|
|
|
|
replaceIcon = !!(orderInfo->fieldFlags & WINDOW_ORDER_STATE_NEW);
|
|
|
|
xf_rail_set_window_icon(xfc, railWindow, icon, replaceIcon);
|
2014-11-12 04:26:47 +03:00
|
|
|
|
2017-03-28 12:47:46 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_window_cached_icon(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, WINDOW_CACHED_ICON_ORDER* windowCachedIcon)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2018-11-10 12:51:30 +03:00
|
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xfAppWindow* railWindow;
|
|
|
|
xfRailIcon *icon;
|
|
|
|
BOOL replaceIcon;
|
|
|
|
|
|
|
|
railWindow = xf_rail_get_window_by_id(xfc, orderInfo->windowId);
|
|
|
|
if (!railWindow)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
icon = RailIconCache_Lookup(xfc->railIconCache,
|
|
|
|
windowCachedIcon->cachedIcon.cacheId,
|
|
|
|
windowCachedIcon->cachedIcon.cacheEntry);
|
|
|
|
if (!icon)
|
|
|
|
{
|
|
|
|
WLog_DBG(TAG, "failed to get icon from cache %02X:%04X",
|
|
|
|
windowCachedIcon->cachedIcon.cacheId,
|
|
|
|
windowCachedIcon->cachedIcon.cacheEntry);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
replaceIcon = !!(orderInfo->fieldFlags & WINDOW_ORDER_STATE_NEW);
|
|
|
|
xf_rail_set_window_icon(xfc, railWindow, icon, replaceIcon);
|
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_notify_icon_common(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, NOTIFY_ICON_STATE_ORDER* notifyIconState)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_FIELD_NOTIFY_VERSION)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_FIELD_NOTIFY_TIP)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_FIELD_NOTIFY_INFO_TIP)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_FIELD_NOTIFY_STATE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_ICON)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orderInfo->fieldFlags & WINDOW_ORDER_CACHED_ICON)
|
|
|
|
{
|
|
|
|
}
|
2016-08-03 15:16:20 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_notify_icon_create(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, NOTIFY_ICON_STATE_ORDER* notifyIconState)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-04-14 11:14:23 +03:00
|
|
|
return xf_rail_notify_icon_common(context, orderInfo, notifyIconState);
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_notify_icon_update(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, NOTIFY_ICON_STATE_ORDER* notifyIconState)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-04-14 11:14:23 +03:00
|
|
|
return xf_rail_notify_icon_common(context, orderInfo, notifyIconState);
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_notify_icon_delete(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_monitored_desktop(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo, MONITORED_DESKTOP_ORDER* monitoredDesktop)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2015-04-21 15:15:53 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2016-08-03 15:16:20 +03:00
|
|
|
static BOOL xf_rail_non_monitored_desktop(rdpContext* context,
|
2016-10-04 10:00:00 +03:00
|
|
|
WINDOW_ORDER_INFO* orderInfo)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
2014-11-13 01:00:57 +03:00
|
|
|
xfContext* xfc = (xfContext*) context;
|
|
|
|
xf_rail_disable_remoteapp_mode(xfc);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2014-11-12 04:26:47 +03:00
|
|
|
}
|
|
|
|
|
2018-03-01 14:39:29 +03:00
|
|
|
static void xf_rail_register_update_callbacks(rdpUpdate* update)
|
2014-11-12 04:26:47 +03:00
|
|
|
{
|
|
|
|
rdpWindowUpdate* window = update->window;
|
|
|
|
window->WindowCreate = xf_rail_window_common;
|
|
|
|
window->WindowUpdate = xf_rail_window_common;
|
|
|
|
window->WindowDelete = xf_rail_window_delete;
|
|
|
|
window->WindowIcon = xf_rail_window_icon;
|
|
|
|
window->WindowCachedIcon = xf_rail_window_cached_icon;
|
|
|
|
window->NotifyIconCreate = xf_rail_notify_icon_create;
|
|
|
|
window->NotifyIconUpdate = xf_rail_notify_icon_update;
|
|
|
|
window->NotifyIconDelete = xf_rail_notify_icon_delete;
|
|
|
|
window->MonitoredDesktop = xf_rail_monitored_desktop;
|
|
|
|
window->NonMonitoredDesktop = xf_rail_non_monitored_desktop;
|
|
|
|
}
|
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
/* RemoteApp Virtual Channel Extension */
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_execute_result(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_EXEC_RESULT_ORDER* execResult)
|
2011-08-19 18:10:08 +04:00
|
|
|
{
|
2014-11-12 01:49:29 +03:00
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
2011-08-19 18:10:08 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
if (execResult->execResult != RAIL_EXEC_S_OK)
|
2011-08-19 18:10:08 +04:00
|
|
|
{
|
2014-09-12 19:13:01 +04:00
|
|
|
WLog_ERR(TAG, "RAIL exec error: execResult=%s NtError=0x%X\n",
|
2016-10-04 10:00:00 +03:00
|
|
|
error_code_names[execResult->execResult], execResult->rawResult);
|
2016-09-13 10:53:16 +03:00
|
|
|
freerdp_abort_connect(xfc->context.instance);
|
2012-01-02 13:27:04 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-13 02:57:25 +04:00
|
|
|
xf_rail_enable_remoteapp_mode(xfc);
|
2011-08-19 18:10:08 +04:00
|
|
|
}
|
2014-11-12 01:49:29 +03:00
|
|
|
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2011-08-19 18:10:08 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_system_param(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_SYSPARAM_ORDER* sysparam)
|
2011-08-20 02:46:10 +04:00
|
|
|
{
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2011-08-20 02:46:10 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_handshake(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_HANDSHAKE_ORDER* handshake)
|
2011-08-20 02:46:10 +04:00
|
|
|
{
|
2014-11-12 01:49:29 +03:00
|
|
|
RAIL_EXEC_ORDER exec;
|
|
|
|
RAIL_SYSPARAM_ORDER sysparam;
|
|
|
|
RAIL_HANDSHAKE_ORDER clientHandshake;
|
|
|
|
RAIL_CLIENT_STATUS_ORDER clientStatus;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
2016-08-03 15:16:20 +03:00
|
|
|
rdpSettings* settings = xfc->context.settings;
|
2014-11-12 01:49:29 +03:00
|
|
|
clientHandshake.buildNumber = 0x00001DB0;
|
|
|
|
context->ClientHandshake(context, &clientHandshake);
|
|
|
|
ZeroMemory(&clientStatus, sizeof(RAIL_CLIENT_STATUS_ORDER));
|
|
|
|
clientStatus.flags = RAIL_CLIENTSTATUS_ALLOWLOCALMOVESIZE;
|
|
|
|
context->ClientInformation(context, &clientStatus);
|
2011-09-01 02:02:22 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
if (settings->RemoteAppLanguageBarSupported)
|
2011-09-01 02:02:22 +04:00
|
|
|
{
|
2014-11-12 01:49:29 +03:00
|
|
|
RAIL_LANGBAR_INFO_ORDER langBarInfo;
|
|
|
|
langBarInfo.languageBarStatus = 0x00000008; /* TF_SFT_HIDDEN */
|
|
|
|
context->ClientLanguageBarInfo(context, &langBarInfo);
|
2011-09-01 02:02:22 +04:00
|
|
|
}
|
2011-08-20 02:46:10 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
ZeroMemory(&sysparam, sizeof(RAIL_SYSPARAM_ORDER));
|
|
|
|
sysparam.params = 0;
|
|
|
|
sysparam.params |= SPI_MASK_SET_HIGH_CONTRAST;
|
|
|
|
sysparam.highContrast.colorScheme.string = NULL;
|
|
|
|
sysparam.highContrast.colorScheme.length = 0;
|
|
|
|
sysparam.highContrast.flags = 0x7E;
|
|
|
|
sysparam.params |= SPI_MASK_SET_MOUSE_BUTTON_SWAP;
|
|
|
|
sysparam.mouseButtonSwap = FALSE;
|
|
|
|
sysparam.params |= SPI_MASK_SET_KEYBOARD_PREF;
|
|
|
|
sysparam.keyboardPref = FALSE;
|
|
|
|
sysparam.params |= SPI_MASK_SET_DRAG_FULL_WINDOWS;
|
|
|
|
sysparam.dragFullWindows = FALSE;
|
|
|
|
sysparam.params |= SPI_MASK_SET_KEYBOARD_CUES;
|
|
|
|
sysparam.keyboardCues = FALSE;
|
|
|
|
sysparam.params |= SPI_MASK_SET_WORK_AREA;
|
|
|
|
sysparam.workArea.left = 0;
|
|
|
|
sysparam.workArea.top = 0;
|
|
|
|
sysparam.workArea.right = settings->DesktopWidth;
|
|
|
|
sysparam.workArea.bottom = settings->DesktopHeight;
|
|
|
|
sysparam.dragFullWindows = FALSE;
|
|
|
|
context->ClientSystemParam(context, &sysparam);
|
|
|
|
ZeroMemory(&exec, sizeof(RAIL_EXEC_ORDER));
|
|
|
|
exec.RemoteApplicationProgram = settings->RemoteApplicationProgram;
|
|
|
|
exec.RemoteApplicationWorkingDir = settings->ShellWorkingDirectory;
|
|
|
|
exec.RemoteApplicationArguments = settings->RemoteApplicationCmdLine;
|
|
|
|
context->ClientExecute(context, &exec);
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2011-08-20 02:46:10 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_handshake_ex(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_HANDSHAKE_EX_ORDER* handshakeEx)
|
2011-08-20 02:46:10 +04:00
|
|
|
{
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2011-08-20 02:46:10 +04:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_local_move_size(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_LOCALMOVESIZE_ORDER* localMoveSize)
|
2011-08-18 05:33:22 +04:00
|
|
|
{
|
2014-11-12 01:49:29 +03:00
|
|
|
int x = 0, y = 0;
|
|
|
|
int direction = 0;
|
|
|
|
Window child_window;
|
2014-11-13 01:00:57 +03:00
|
|
|
xfAppWindow* appWindow = NULL;
|
2014-11-12 01:49:29 +03:00
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
2014-11-13 01:00:57 +03:00
|
|
|
appWindow = (xfAppWindow*) HashTable_GetItemValue(xfc->railWindows,
|
2016-10-04 10:00:00 +03:00
|
|
|
(void*)(UINT_PTR) localMoveSize->windowId);
|
2014-11-13 01:00:57 +03:00
|
|
|
|
|
|
|
if (!appWindow)
|
2015-06-08 19:04:05 +03:00
|
|
|
return ERROR_INTERNAL_ERROR;
|
2014-11-12 01:49:29 +03:00
|
|
|
|
|
|
|
switch (localMoveSize->moveSizeType)
|
2011-08-18 05:33:22 +04:00
|
|
|
{
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_LEFT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_LEFT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAIL_WMSZ_RIGHT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_RIGHT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-18 05:33:22 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_TOP:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_TOP;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-19 18:10:08 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_TOPLEFT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_TOPLEFT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-20 02:46:10 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_TOPRIGHT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_TOPRIGHT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-20 02:46:10 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_BOTTOM:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_BOTTOM;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-20 02:46:10 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_BOTTOMLEFT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-20 02:46:10 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_BOTTOMRIGHT:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
2011-08-20 02:46:10 +04:00
|
|
|
break;
|
2014-08-18 21:34:47 +04:00
|
|
|
|
2014-11-12 01:49:29 +03:00
|
|
|
case RAIL_WMSZ_MOVE:
|
|
|
|
direction = _NET_WM_MOVERESIZE_MOVE;
|
2014-11-12 06:27:33 +03:00
|
|
|
XTranslateCoordinates(xfc->display, appWindow->handle,
|
2016-10-04 10:00:00 +03:00
|
|
|
RootWindowOfScreen(xfc->screen),
|
|
|
|
localMoveSize->posX, localMoveSize->posY, &x, &y, &child_window);
|
2011-08-18 05:33:22 +04:00
|
|
|
break;
|
2014-11-12 01:49:29 +03:00
|
|
|
|
|
|
|
case RAIL_WMSZ_KEYMOVE:
|
|
|
|
direction = _NET_WM_MOVERESIZE_MOVE_KEYBOARD;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
|
|
|
/* FIXME: local keyboard moves not working */
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2014-11-12 01:49:29 +03:00
|
|
|
|
|
|
|
case RAIL_WMSZ_KEYSIZE:
|
|
|
|
direction = _NET_WM_MOVERESIZE_SIZE_KEYBOARD;
|
|
|
|
x = localMoveSize->posX;
|
|
|
|
y = localMoveSize->posY;
|
|
|
|
/* FIXME: local keyboard moves not working */
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2014-11-12 01:49:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (localMoveSize->isMoveSizeStart)
|
2014-11-12 06:27:33 +03:00
|
|
|
xf_StartLocalMoveSize(xfc, appWindow, direction, x, y);
|
2014-11-12 01:49:29 +03:00
|
|
|
else
|
2014-11-12 06:27:33 +03:00
|
|
|
xf_EndLocalMoveSize(xfc, appWindow);
|
2014-11-12 01:49:29 +03:00
|
|
|
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2014-11-12 01:49:29 +03:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_min_max_info(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_MINMAXINFO_ORDER* minMaxInfo)
|
2014-11-12 01:49:29 +03:00
|
|
|
{
|
2014-11-13 01:00:57 +03:00
|
|
|
xfAppWindow* appWindow = NULL;
|
|
|
|
xfContext* xfc = (xfContext*) context->custom;
|
|
|
|
appWindow = (xfAppWindow*) HashTable_GetItemValue(xfc->railWindows,
|
2016-10-04 10:00:00 +03:00
|
|
|
(void*)(UINT_PTR) minMaxInfo->windowId);
|
2014-11-13 01:00:57 +03:00
|
|
|
|
2018-02-08 18:53:09 +03:00
|
|
|
if (appWindow)
|
|
|
|
{
|
|
|
|
xf_SetWindowMinMaxInfo(xfc, appWindow,
|
|
|
|
minMaxInfo->maxWidth, minMaxInfo->maxHeight,
|
|
|
|
minMaxInfo->maxPosX, minMaxInfo->maxPosY,
|
|
|
|
minMaxInfo->minTrackWidth, minMaxInfo->minTrackHeight,
|
|
|
|
minMaxInfo->maxTrackWidth, minMaxInfo->maxTrackHeight);
|
|
|
|
}
|
2014-11-12 01:49:29 +03:00
|
|
|
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2014-11-12 01:49:29 +03:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_language_bar_info(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_LANGBAR_INFO_ORDER* langBarInfo)
|
2014-11-12 01:49:29 +03:00
|
|
|
{
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2014-11-12 01:49:29 +03:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:25:09 +03:00
|
|
|
/**
|
|
|
|
* Function description
|
|
|
|
*
|
|
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
|
|
*/
|
2016-08-03 15:16:20 +03:00
|
|
|
static UINT xf_rail_server_get_appid_response(RailClientContext* context,
|
2018-09-14 11:07:22 +03:00
|
|
|
const RAIL_GET_APPID_RESP_ORDER* getAppIdResp)
|
2014-11-12 01:49:29 +03:00
|
|
|
{
|
2015-06-08 19:04:05 +03:00
|
|
|
return CHANNEL_RC_OK;
|
2011-08-16 08:22:00 +04:00
|
|
|
}
|
2014-11-12 00:35:30 +03:00
|
|
|
|
2018-02-09 11:35:26 +03:00
|
|
|
static void rail_window_free(void* value)
|
|
|
|
{
|
|
|
|
xfAppWindow* appWindow = (xfAppWindow*) value;
|
|
|
|
|
|
|
|
if (!appWindow)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xf_DestroyWindow(appWindow->xfc, appWindow);
|
|
|
|
}
|
|
|
|
|
2014-11-12 00:35:30 +03:00
|
|
|
int xf_rail_init(xfContext* xfc, RailClientContext* rail)
|
|
|
|
{
|
|
|
|
rdpContext* context = (rdpContext*) xfc;
|
2018-02-09 11:35:26 +03:00
|
|
|
|
|
|
|
if (!xfc || !rail)
|
|
|
|
return 0;
|
|
|
|
|
2014-11-12 00:35:30 +03:00
|
|
|
xfc->rail = rail;
|
2014-11-13 00:42:32 +03:00
|
|
|
xf_rail_register_update_callbacks(context->update);
|
2014-11-12 04:26:47 +03:00
|
|
|
rail->custom = (void*) xfc;
|
|
|
|
rail->ServerExecuteResult = xf_rail_server_execute_result;
|
|
|
|
rail->ServerSystemParam = xf_rail_server_system_param;
|
|
|
|
rail->ServerHandshake = xf_rail_server_handshake;
|
|
|
|
rail->ServerHandshakeEx = xf_rail_server_handshake_ex;
|
|
|
|
rail->ServerLocalMoveSize = xf_rail_server_local_move_size;
|
|
|
|
rail->ServerMinMaxInfo = xf_rail_server_min_max_info;
|
|
|
|
rail->ServerLanguageBarInfo = xf_rail_server_language_bar_info;
|
|
|
|
rail->ServerGetAppIdResponse = xf_rail_server_get_appid_response;
|
2014-11-13 00:42:32 +03:00
|
|
|
xfc->railWindows = HashTable_New(TRUE);
|
2016-08-03 15:16:20 +03:00
|
|
|
|
2015-05-18 12:28:00 +03:00
|
|
|
if (!xfc->railWindows)
|
|
|
|
return 0;
|
2014-11-13 00:42:32 +03:00
|
|
|
|
2018-02-09 11:35:26 +03:00
|
|
|
xfc->railWindows->valueFree = rail_window_free;
|
2018-11-10 12:51:30 +03:00
|
|
|
|
|
|
|
xfc->railIconCache = RailIconCache_New(xfc->context.settings);
|
|
|
|
|
|
|
|
if (!xfc->railIconCache)
|
|
|
|
{
|
|
|
|
HashTable_Free(xfc->railWindows);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-12 00:35:30 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int xf_rail_uninit(xfContext* xfc, RailClientContext* rail)
|
|
|
|
{
|
|
|
|
if (xfc->rail)
|
|
|
|
{
|
|
|
|
xfc->rail->custom = NULL;
|
|
|
|
xfc->rail = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-13 00:42:32 +03:00
|
|
|
if (xfc->railWindows)
|
|
|
|
{
|
|
|
|
HashTable_Free(xfc->railWindows);
|
|
|
|
xfc->railWindows = NULL;
|
|
|
|
}
|
|
|
|
|
2018-11-10 12:51:30 +03:00
|
|
|
if (xfc->railIconCache)
|
|
|
|
{
|
|
|
|
RailIconCache_Free(xfc->railIconCache);
|
|
|
|
xfc->railIconCache = NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-12 00:35:30 +03:00
|
|
|
return 1;
|
|
|
|
}
|