2011-08-07 17:52:40 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-07 17:52:40 +04:00
|
|
|
* X11 Event Handling
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2012-02-18 02:43:00 +04:00
|
|
|
#include <freerdp/locale/keyboard.h>
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-22 07:39:56 +04:00
|
|
|
#include "xf_rail.h"
|
2011-12-03 02:51:30 +04:00
|
|
|
#include "xf_window.h"
|
2011-09-23 07:37:17 +04:00
|
|
|
#include "xf_cliprdr.h"
|
2011-08-22 07:39:56 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
#include "xf_event.h"
|
|
|
|
|
2012-03-23 00:30:15 +04:00
|
|
|
#ifdef WITH_DEBUG_X11
|
2011-12-01 04:21:04 +04:00
|
|
|
static const char* const X11_EVENT_STRINGS[] =
|
2011-08-19 19:12:30 +04:00
|
|
|
{
|
|
|
|
"", "",
|
|
|
|
"KeyPress",
|
|
|
|
"KeyRelease",
|
|
|
|
"ButtonPress",
|
|
|
|
"ButtonRelease",
|
|
|
|
"MotionNotify",
|
|
|
|
"EnterNotify",
|
|
|
|
"LeaveNotify",
|
|
|
|
"FocusIn",
|
|
|
|
"FocusOut",
|
|
|
|
"KeymapNotify",
|
|
|
|
"Expose",
|
|
|
|
"GraphicsExpose",
|
|
|
|
"NoExpose",
|
|
|
|
"VisibilityNotify",
|
|
|
|
"CreateNotify",
|
|
|
|
"DestroyNotify",
|
|
|
|
"UnmapNotify",
|
|
|
|
"MapNotify",
|
|
|
|
"MapRequest",
|
|
|
|
"ReparentNotify",
|
|
|
|
"ConfigureNotify",
|
|
|
|
"ConfigureRequest",
|
|
|
|
"GravityNotify",
|
|
|
|
"ResizeRequest",
|
|
|
|
"CirculateNotify",
|
|
|
|
"CirculateRequest",
|
|
|
|
"PropertyNotify",
|
|
|
|
"SelectionClear",
|
|
|
|
"SelectionRequest",
|
|
|
|
"SelectionNotify",
|
|
|
|
"ColormapNotify",
|
|
|
|
"ClientMessage",
|
|
|
|
"MappingNotify",
|
|
|
|
"GenericEvent",
|
|
|
|
};
|
2012-03-23 00:30:15 +04:00
|
|
|
#endif
|
2011-08-19 19:12:30 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_Expose(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 09:16:49 +04:00
|
|
|
int x, y;
|
2011-09-23 05:23:01 +04:00
|
|
|
int w, h;
|
|
|
|
|
|
|
|
x = event->xexpose.x;
|
|
|
|
y = event->xexpose.y;
|
|
|
|
w = event->xexpose.width;
|
|
|
|
h = event->xexpose.height;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-09-23 05:23:01 +04:00
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window->handle, xfi->gc, x, y, w, h, x, y);
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xfWindow* xfw;
|
|
|
|
rdpWindow* window;
|
2011-10-16 08:50:10 +04:00
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
2011-08-18 09:16:49 +04:00
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xexpose.window);
|
2011-08-18 09:16:49 +04:00
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xfw = (xfWindow*) window->extra;
|
2011-09-23 05:23:01 +04:00
|
|
|
xf_UpdateWindowArea(xfi, xfw, x, y, w, h);
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_VisibilityNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-19 19:12:30 +04:00
|
|
|
xfi->unobscured = event->xvisibility.state == VisibilityUnobscured;
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_MotionNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
rdpInput* input;
|
2012-05-07 23:50:47 +04:00
|
|
|
int x, y;
|
|
|
|
Window childWindow;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
input = xfi->instance->input;
|
2012-05-07 23:50:47 +04:00
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (xfi->mouse_motion != TRUE)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2012-05-07 23:50:47 +04:00
|
|
|
if ((event->xmotion.state & (Button1Mask | Button2Mask | Button3Mask)) == 0)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-05-07 23:50:47 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-05-07 23:50:47 +04:00
|
|
|
if (app)
|
2011-08-25 01:41:45 +04:00
|
|
|
{
|
2012-09-19 02:57:19 +04:00
|
|
|
/* make sure window exists */
|
|
|
|
if (xf_rdpWindowFromWindow(xfi, event->xmotion.window) == 0)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-09-19 02:57:19 +04:00
|
|
|
}
|
2013-03-29 07:09:28 +04:00
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Translate to desktop coordinates */
|
2012-05-07 23:50:47 +04:00
|
|
|
XTranslateCoordinates(xfi->display, event->xmotion.window,
|
|
|
|
RootWindowOfScreen(xfi->screen),
|
|
|
|
x, y, &x, &y, &childWindow);
|
|
|
|
}
|
2011-10-16 08:50:10 +04:00
|
|
|
|
2012-05-07 23:50:47 +04:00
|
|
|
input->MouseEvent(input, PTR_FLAGS_MOVE, x, y);
|
2011-08-25 01:41:45 +04:00
|
|
|
|
2012-05-07 23:50:47 +04:00
|
|
|
if (xfi->fullscreen)
|
|
|
|
{
|
|
|
|
XSetInputFocus(xfi->display, xfi->window->handle, RevertToPointerRoot, CurrentTime);
|
2011-08-25 01:41:45 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_ButtonPress(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2012-05-07 23:50:47 +04:00
|
|
|
int x, y;
|
|
|
|
int flags;
|
|
|
|
Window childWindow;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL wheel;
|
|
|
|
BOOL extended;
|
2011-08-07 21:41:54 +04:00
|
|
|
rdpInput* input;
|
|
|
|
|
|
|
|
input = xfi->instance->input;
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
flags = 0;
|
2012-10-09 10:31:28 +04:00
|
|
|
wheel = FALSE;
|
|
|
|
extended = FALSE;
|
2011-08-18 00:00:09 +04:00
|
|
|
|
|
|
|
switch (event->xbutton.button)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
case 1:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
2012-10-09 10:31:28 +04:00
|
|
|
wheel = TRUE;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_WHEEL | 0x0078;
|
|
|
|
break;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
case 5:
|
2012-10-09 10:31:28 +04:00
|
|
|
wheel = TRUE;
|
2011-08-23 05:22:05 +04:00
|
|
|
flags = PTR_FLAGS_WHEEL | PTR_FLAGS_WHEEL_NEGATIVE | 0x0088;
|
2011-08-18 00:00:09 +04:00
|
|
|
break;
|
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
case 6: /* wheel left or back */
|
|
|
|
case 8: /* back */
|
|
|
|
case 97: /* Xming */
|
2012-10-09 10:31:28 +04:00
|
|
|
extended = TRUE;
|
2012-04-01 17:35:11 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
|
|
|
flags = PTR_XFLAGS_DOWN | PTR_XFLAGS_BUTTON1;
|
|
|
|
break;
|
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
case 7: /* wheel right or forward */
|
|
|
|
case 9: /* forward */
|
|
|
|
case 112: /* Xming */
|
2012-10-09 10:31:28 +04:00
|
|
|
extended = TRUE;
|
2012-04-01 17:35:11 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
|
|
|
flags = PTR_XFLAGS_DOWN | PTR_XFLAGS_BUTTON2;
|
|
|
|
break;
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
default:
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
flags = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags != 0)
|
|
|
|
{
|
|
|
|
if (wheel)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
input->MouseEvent(input, flags, 0, 0);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
2011-08-18 00:00:09 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (app)
|
|
|
|
{
|
2012-09-19 02:57:19 +04:00
|
|
|
/* make sure window exists */
|
|
|
|
if (xf_rdpWindowFromWindow(xfi, event->xbutton.window) == 0)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-09-19 02:57:19 +04:00
|
|
|
}
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Translate to desktop coordinates */
|
2012-09-19 02:57:19 +04:00
|
|
|
XTranslateCoordinates(xfi->display, event->xbutton.window,
|
2012-05-07 23:50:47 +04:00
|
|
|
RootWindowOfScreen(xfi->screen),
|
|
|
|
x, y, &x, &y, &childWindow);
|
2011-08-18 00:00:09 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-04-01 17:35:11 +04:00
|
|
|
if (extended)
|
|
|
|
input->ExtendedMouseEvent(input, flags, x, y);
|
|
|
|
else
|
|
|
|
input->MouseEvent(input, flags, x, y);
|
2011-08-18 00:00:09 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_ButtonRelease(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2012-05-07 23:50:47 +04:00
|
|
|
int x, y;
|
|
|
|
int flags;
|
|
|
|
Window childWindow;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL extended;
|
2011-08-07 21:41:54 +04:00
|
|
|
rdpInput* input;
|
|
|
|
|
|
|
|
input = xfi->instance->input;
|
|
|
|
|
2011-08-18 00:45:09 +04:00
|
|
|
x = 0;
|
|
|
|
y = 0;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = 0;
|
2012-10-09 10:31:28 +04:00
|
|
|
extended = FALSE;
|
2011-08-18 00:00:09 +04:00
|
|
|
|
|
|
|
switch (event->xbutton.button)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
case 1:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_BUTTON1;
|
|
|
|
break;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
case 2:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_BUTTON3;
|
|
|
|
break;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
case 3:
|
2011-09-23 05:23:01 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_BUTTON2;
|
|
|
|
break;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-04-01 17:35:11 +04:00
|
|
|
case 6:
|
|
|
|
case 8:
|
|
|
|
case 97:
|
2012-10-09 10:31:28 +04:00
|
|
|
extended = TRUE;
|
2012-04-01 17:35:11 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
|
|
|
flags = PTR_XFLAGS_BUTTON1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
case 9:
|
|
|
|
case 112:
|
2012-10-09 10:31:28 +04:00
|
|
|
extended = TRUE;
|
2012-04-01 17:35:11 +04:00
|
|
|
x = event->xbutton.x;
|
|
|
|
y = event->xbutton.y;
|
|
|
|
flags = PTR_XFLAGS_BUTTON2;
|
|
|
|
break;
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
default:
|
|
|
|
flags = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags != 0)
|
|
|
|
{
|
|
|
|
if (app)
|
|
|
|
{
|
2012-09-19 02:57:19 +04:00
|
|
|
/* make sure window exists */
|
|
|
|
if (xf_rdpWindowFromWindow(xfi, event->xbutton.window) == NULL)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-09-19 02:57:19 +04:00
|
|
|
}
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Translate to desktop coordinates */
|
2012-09-19 02:57:19 +04:00
|
|
|
XTranslateCoordinates(xfi->display, event->xbutton.window,
|
2012-05-07 23:50:47 +04:00
|
|
|
RootWindowOfScreen(xfi->screen),
|
|
|
|
x, y, &x, &y, &childWindow);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-04-01 17:35:11 +04:00
|
|
|
if (extended)
|
|
|
|
input->ExtendedMouseEvent(input, flags, x, y);
|
|
|
|
else
|
|
|
|
input->MouseEvent(input, flags, x, y);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_KeyPress(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
KeySym keysym;
|
|
|
|
char str[256];
|
|
|
|
|
|
|
|
XLookupString((XKeyEvent*) event, str, sizeof(str), &keysym, NULL);
|
|
|
|
|
|
|
|
xf_kbd_set_keypress(xfi, event->xkey.keycode, keysym);
|
|
|
|
|
|
|
|
if (xfi->fullscreen_toggle && xf_kbd_handle_special_keys(xfi, keysym))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
xf_kbd_send_key(xfi, TRUE, event->xkey.keycode);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_KeyRelease(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
XEvent next_event;
|
|
|
|
|
|
|
|
if (XPending(xfi->display))
|
|
|
|
{
|
2013-02-07 06:57:49 +04:00
|
|
|
ZeroMemory(&next_event, sizeof(next_event));
|
2011-08-07 21:41:54 +04:00
|
|
|
XPeekEvent(xfi->display, &next_event);
|
|
|
|
|
|
|
|
if (next_event.type == KeyPress)
|
|
|
|
{
|
|
|
|
if (next_event.xkey.keycode == event->xkey.keycode)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xf_kbd_unset_keypress(xfi, event->xkey.keycode);
|
2012-10-09 10:31:28 +04:00
|
|
|
xf_kbd_send_key(xfi, FALSE, event->xkey.keycode);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_FocusIn(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xfocus.mode == NotifyGrab)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
xfi->focused = TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2013-02-12 05:38:19 +04:00
|
|
|
if (xfi->mouse_active && (!app))
|
2012-10-09 10:31:28 +04:00
|
|
|
XGrabKeyboard(xfi->display, xfi->window->handle, TRUE, GrabModeAsync, GrabModeAsync, CurrentTime);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-12-20 23:51:44 +04:00
|
|
|
if (app)
|
2012-08-04 02:35:17 +04:00
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
xf_rail_send_activate(xfi, event->xany.window, TRUE);
|
2012-08-04 02:35:17 +04:00
|
|
|
|
|
|
|
rdpWindow* window;
|
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
|
|
|
|
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xany.window);
|
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Update the server with any window changes that occured while the window was not focused. */
|
2012-08-04 02:35:17 +04:00
|
|
|
if (window != NULL)
|
|
|
|
xf_rail_adjust_position(xfi, window);
|
|
|
|
}
|
2013-02-12 05:38:19 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xf_kbd_focus_in(xfi);
|
|
|
|
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-09-23 18:49:59 +04:00
|
|
|
xf_cliprdr_check_owner(xfi);
|
2011-09-23 07:37:17 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_FocusOut(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xfocus.mode == NotifyUngrab)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
xfi->focused = FALSE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
|
|
|
if (event->xfocus.mode == NotifyWhileGrabbed)
|
|
|
|
XUngrabKeyboard(xfi->display, CurrentTime);
|
|
|
|
|
2012-08-03 00:45:03 +04:00
|
|
|
xf_kbd_clear(xfi);
|
|
|
|
|
2011-12-20 23:51:44 +04:00
|
|
|
if (app)
|
2012-10-09 10:31:28 +04:00
|
|
|
xf_rail_send_activate(xfi, event->xany.window, FALSE);
|
2011-08-25 02:22:06 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_MappingNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xmapping.request == MappingModifier)
|
|
|
|
{
|
|
|
|
XFreeModifiermap(xfi->modifier_map);
|
|
|
|
xfi->modifier_map = XGetModifierMapping(xfi->display);
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_ClientMessage(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-09-21 16:36:49 +04:00
|
|
|
if ((event->xclient.message_type == xfi->WM_PROTOCOLS)
|
|
|
|
&& ((Atom) event->xclient.data.l[0] == xfi->WM_DELETE_WINDOW))
|
|
|
|
{
|
|
|
|
if (app)
|
|
|
|
{
|
2012-03-23 00:30:15 +04:00
|
|
|
DEBUG_X11("RAIL window closed");
|
2011-09-21 16:36:49 +04:00
|
|
|
rdpWindow* window;
|
2011-10-16 08:50:10 +04:00
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xclient.window);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-09-21 16:36:49 +04:00
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xf_rail_send_client_system_command(xfi, window->windowId, SC_CLOSE);
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-21 16:36:49 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-23 00:30:15 +04:00
|
|
|
DEBUG_X11("Main window closed");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-21 16:36:49 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_EnterNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-08-18 09:16:49 +04:00
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
xfi->mouse_active = TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->fullscreen)
|
|
|
|
XSetInputFocus(xfi->display, xfi->window->handle, RevertToPointerRoot, CurrentTime);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->focused)
|
2012-10-09 10:31:28 +04:00
|
|
|
XGrabKeyboard(xfi->display, xfi->window->handle, TRUE, GrabModeAsync, GrabModeAsync, CurrentTime);
|
2011-12-20 23:42:22 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* keep track of which window has focus so that we can apply pointer updates */
|
|
|
|
|
2011-11-15 02:36:25 +04:00
|
|
|
xfWindow* xfw;
|
|
|
|
rdpWindow* window;
|
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xexpose.window);
|
2011-12-20 23:42:22 +04:00
|
|
|
|
2011-11-15 02:36:25 +04:00
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
xfi->window = xfw;
|
|
|
|
}
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_LeaveNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-08-19 19:12:30 +04:00
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
xfi->mouse_active = FALSE;
|
2011-08-19 19:12:30 +04:00
|
|
|
XUngrabKeyboard(xfi->display, CurrentTime);
|
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
2011-08-18 00:00:09 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_ConfigureNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-18 09:16:49 +04:00
|
|
|
{
|
2011-11-19 03:46:22 +04:00
|
|
|
rdpWindow* window;
|
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
|
|
|
|
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xconfigure.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xfWindow* xfw;
|
2011-12-20 23:51:44 +04:00
|
|
|
Window childWindow;
|
2011-11-19 03:46:22 +04:00
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
|
2011-12-20 23:51:44 +04:00
|
|
|
/*
|
|
|
|
* ConfigureNotify coordinates are expressed relative to the window parent.
|
|
|
|
* Translate these to root window coordinates.
|
|
|
|
*/
|
|
|
|
|
2011-12-08 01:49:37 +04:00
|
|
|
XTranslateCoordinates(xfi->display, xfw->handle,
|
|
|
|
RootWindowOfScreen(xfi->screen),
|
2011-11-19 03:46:22 +04:00
|
|
|
0, 0, &xfw->left, &xfw->top, &childWindow);
|
|
|
|
|
|
|
|
xfw->width = event->xconfigure.width;
|
|
|
|
xfw->height = event->xconfigure.height;
|
|
|
|
xfw->right = xfw->left + xfw->width - 1;
|
|
|
|
xfw->bottom = xfw->top + xfw->height - 1;
|
|
|
|
|
2011-12-17 01:09:21 +04:00
|
|
|
DEBUG_X11_LMS("window=0x%X rc={l=%d t=%d r=%d b=%d} w=%u h=%u send_event=%d",
|
2012-10-09 11:26:39 +04:00
|
|
|
(UINT32) xfw->handle, xfw->left, xfw->top, xfw->right, xfw->bottom,
|
2011-12-17 01:09:21 +04:00
|
|
|
xfw->width, xfw->height, event->xconfigure.send_event);
|
2011-11-29 01:50:08 +04:00
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
/*
|
|
|
|
* Additonal checks for not in a local move and not ignoring configure to send
|
2012-09-19 02:57:19 +04:00
|
|
|
* position update to server, also should the window not be focused then do not
|
|
|
|
* send to server yet(ie. resizing using window decoration).
|
2012-11-21 04:34:52 +04:00
|
|
|
* The server will be updated when the window gets refocused.
|
|
|
|
*/
|
2012-09-19 02:57:19 +04:00
|
|
|
if (app && xfw->decorations)
|
|
|
|
{
|
|
|
|
/* moving resizing using window decoration */
|
2011-12-17 01:09:21 +04:00
|
|
|
xf_rail_adjust_position(xfi, window);
|
2012-09-19 02:57:19 +04:00
|
|
|
window->windowOffsetX = xfw->left;
|
|
|
|
window->visibleOffsetX = window->windowOffsetX;
|
|
|
|
window->windowOffsetY = xfw->top;
|
|
|
|
window->visibleOffsetY = window->windowOffsetY;
|
|
|
|
window->windowWidth = xfw->width;
|
|
|
|
window->windowHeight = xfw->height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (app && (!event->xconfigure.send_event || xfi->window->local_move.state == LMS_NOT_ACTIVE)
|
|
|
|
&& !xfw->rail_ignore_configure && xfi->focused)
|
|
|
|
xf_rail_adjust_position(xfi, window);
|
|
|
|
}
|
|
|
|
|
2011-11-19 03:46:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_MapNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-08-22 07:15:19 +04:00
|
|
|
{
|
2012-05-28 16:21:56 +04:00
|
|
|
RECTANGLE_16 rect;
|
2011-08-22 07:15:19 +04:00
|
|
|
rdpWindow* window;
|
2013-02-15 02:43:37 +04:00
|
|
|
rdpUpdate* update = xfi->instance->update;
|
2011-10-16 08:50:10 +04:00
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
2011-08-22 07:15:19 +04:00
|
|
|
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-08-22 07:15:19 +04:00
|
|
|
{
|
2013-02-12 05:38:19 +04:00
|
|
|
rect.left = 0;
|
|
|
|
rect.top = 0;
|
|
|
|
rect.right = xfi->width;
|
|
|
|
rect.bottom = xfi->height;
|
|
|
|
|
2013-02-15 02:43:37 +04:00
|
|
|
update->SuppressOutput((rdpContext*) xfi->context, 1, &rect);
|
2012-05-28 16:21:56 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xany.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
/* local restore event */
|
2012-11-21 04:34:52 +04:00
|
|
|
|
|
|
|
/* This is now handled as part of the PropertyNotify
|
|
|
|
* Doing this here would inhibit the ability to restore a maximized window
|
|
|
|
* that is minimized back to the maximized state
|
|
|
|
*/
|
|
|
|
|
2012-08-04 02:35:17 +04:00
|
|
|
//xf_rail_send_client_system_command(xfi, window->windowId, SC_RESTORE);
|
2013-03-29 07:09:28 +04:00
|
|
|
xfWindow* xfw = (xfWindow*) window->extra;
|
2012-10-09 10:31:28 +04:00
|
|
|
xfw->is_mapped = TRUE;
|
2012-05-28 16:21:56 +04:00
|
|
|
}
|
2011-11-29 01:50:08 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-11-29 01:50:08 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_UnmapNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-11-29 01:50:08 +04:00
|
|
|
{
|
|
|
|
rdpWindow* window;
|
2013-02-15 02:43:37 +04:00
|
|
|
rdpUpdate* update = xfi->instance->update;
|
2011-11-29 01:50:08 +04:00
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
|
|
|
|
2012-04-11 08:37:47 +04:00
|
|
|
xf_kbd_release_all_keypress(xfi);
|
|
|
|
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-11-29 01:50:08 +04:00
|
|
|
{
|
2013-02-15 02:43:37 +04:00
|
|
|
update->SuppressOutput((rdpContext*) xfi->context, 0, NULL);
|
2012-05-28 16:21:56 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xany.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
2013-02-12 05:38:19 +04:00
|
|
|
xfWindow* xfw = (xfWindow*) window->extra;
|
2012-10-09 10:31:28 +04:00
|
|
|
xfw->is_mapped = FALSE;
|
2012-05-28 16:21:56 +04:00
|
|
|
}
|
2011-08-22 07:15:19 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-08-22 07:15:19 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_SelectionNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-09-23 07:37:17 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-09-23 18:49:59 +04:00
|
|
|
{
|
|
|
|
if (xf_cliprdr_process_selection_notify(xfi, event))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 18:49:59 +04:00
|
|
|
}
|
2011-09-23 07:37:17 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 07:37:17 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_SelectionRequest(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-09-23 07:37:17 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-09-23 18:49:59 +04:00
|
|
|
{
|
|
|
|
if (xf_cliprdr_process_selection_request(xfi, event))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 18:49:59 +04:00
|
|
|
}
|
2011-09-23 07:37:17 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 07:37:17 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_SelectionClear(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-09-23 07:37:17 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!app)
|
2011-09-23 18:49:59 +04:00
|
|
|
{
|
|
|
|
if (xf_cliprdr_process_selection_clear(xfi, event))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 18:49:59 +04:00
|
|
|
}
|
2011-09-23 07:37:17 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 07:37:17 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_PropertyNotify(xfInfo* xfi, XEvent* event, BOOL app)
|
2011-09-23 07:37:17 +04:00
|
|
|
{
|
2012-11-21 04:34:52 +04:00
|
|
|
/*
|
|
|
|
* This section handles sending the appropriate commands to the rail server
|
|
|
|
* when the window has been minimized, maximized, restored locally
|
|
|
|
* ie. not using the buttons on the rail window itself
|
|
|
|
*/
|
|
|
|
|
2013-02-12 05:38:19 +04:00
|
|
|
if (app)
|
2012-08-04 02:35:17 +04:00
|
|
|
{
|
|
|
|
rdpWindow* window;
|
2012-09-19 02:57:19 +04:00
|
|
|
|
|
|
|
window = xf_rdpWindowFromWindow(xfi, event->xproperty.window);
|
2013-02-10 22:17:08 +04:00
|
|
|
|
2012-09-19 02:57:19 +04:00
|
|
|
if (window == NULL)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2012-08-04 02:35:17 +04:00
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
if ((((Atom) event->xproperty.atom == xfi->_NET_WM_STATE) && (event->xproperty.state != PropertyDelete)) ||
|
|
|
|
(((Atom) event->xproperty.atom == xfi->WM_STATE) && (event->xproperty.state != PropertyDelete)))
|
2012-08-04 02:35:17 +04:00
|
|
|
{
|
2013-03-29 07:09:28 +04:00
|
|
|
int i;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL status;
|
|
|
|
BOOL maxVert = FALSE;
|
|
|
|
BOOL maxHorz = FALSE;
|
|
|
|
BOOL minimized = FALSE;
|
2012-08-04 02:35:17 +04:00
|
|
|
unsigned long nitems;
|
|
|
|
unsigned long bytes;
|
|
|
|
unsigned char* prop;
|
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
if ((Atom) event->xproperty.atom == xfi->_NET_WM_STATE)
|
2013-02-10 22:17:08 +04:00
|
|
|
{
|
2013-03-29 07:09:28 +04:00
|
|
|
status = xf_GetWindowProperty(xfi, event->xproperty.window,
|
|
|
|
xfi->_NET_WM_STATE, 12, &nitems, &bytes, &prop);
|
2012-08-04 02:35:17 +04:00
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
if (!status)
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("No return _NET_WM_STATE, window is not maximized");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nitems; i++)
|
|
|
|
{
|
|
|
|
if ((Atom) ((UINT16**) prop)[i] == XInternAtom(xfi->display, "_NET_WM_STATE_MAXIMIZED_VERT", False))
|
|
|
|
{
|
|
|
|
maxVert = TRUE;
|
|
|
|
}
|
2012-08-04 02:35:17 +04:00
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
if ((Atom) ((UINT16**) prop)[i] == XInternAtom(xfi->display, "_NET_WM_STATE_MAXIMIZED_HORZ", False))
|
|
|
|
{
|
|
|
|
maxHorz = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2012-08-04 02:35:17 +04:00
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
XFree(prop);
|
2012-08-04 02:35:17 +04:00
|
|
|
}
|
2013-03-29 07:09:28 +04:00
|
|
|
|
|
|
|
if ((Atom) event->xproperty.atom == xfi->WM_STATE)
|
2012-08-04 02:35:17 +04:00
|
|
|
{
|
2013-03-29 07:09:28 +04:00
|
|
|
status = xf_GetWindowProperty(xfi, event->xproperty.window, xfi->WM_STATE, 1, &nitems, &bytes, &prop);
|
|
|
|
|
|
|
|
if (!status)
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("No return WM_STATE, window is not minimized");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If the window is in the iconic state */
|
|
|
|
if (((UINT32) *prop == 3))
|
|
|
|
minimized = TRUE;
|
|
|
|
else
|
|
|
|
minimized = FALSE;
|
|
|
|
|
|
|
|
XFree(prop);
|
|
|
|
}
|
|
|
|
}
|
2012-08-04 02:35:17 +04:00
|
|
|
|
|
|
|
|
2013-03-29 07:09:28 +04:00
|
|
|
if (maxVert && maxHorz && !minimized && (xfi->window->rail_state != WINDOW_SHOW_MAXIMIZED))
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("Send SC_MAXIMIZE command to rail server.");
|
|
|
|
xfi->window->rail_state = WINDOW_SHOW_MAXIMIZED;
|
|
|
|
xf_rail_send_client_system_command(xfi, window->windowId, SC_MAXIMIZE);
|
|
|
|
}
|
|
|
|
else if (minimized && (xfi->window->rail_state != WINDOW_SHOW_MINIMIZED))
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("Send SC_MINIMIZE command to rail server.");
|
|
|
|
xfi->window->rail_state = WINDOW_SHOW_MINIMIZED;
|
|
|
|
xf_rail_send_client_system_command(xfi, window->windowId, SC_MINIMIZE);
|
|
|
|
}
|
|
|
|
else if (!minimized && !maxVert && !maxHorz && (xfi->window->rail_state != WINDOW_SHOW))
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("Send SC_RESTORE command to rail server");
|
|
|
|
xfi->window->rail_state = WINDOW_SHOW;
|
|
|
|
xf_rail_send_client_system_command(xfi, window->windowId, SC_RESTORE);
|
|
|
|
}
|
2012-08-04 02:35:17 +04:00
|
|
|
}
|
|
|
|
}
|
2013-02-12 05:38:19 +04:00
|
|
|
else
|
2011-09-23 18:49:59 +04:00
|
|
|
{
|
|
|
|
if (xf_cliprdr_process_property_notify(xfi, event))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 18:49:59 +04:00
|
|
|
}
|
2011-09-23 07:37:17 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-23 07:37:17 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL xf_event_suppress_events(xfInfo *xfi, rdpWindow *window, XEvent*event)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2013-02-10 22:17:08 +04:00
|
|
|
if (!xfi->remote_app)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-12-07 03:42:58 +04:00
|
|
|
switch (xfi->window->local_move.state)
|
2011-08-18 09:16:49 +04:00
|
|
|
{
|
2011-12-07 03:42:58 +04:00
|
|
|
case LMS_NOT_ACTIVE:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* No local move in progress, nothing to do */
|
|
|
|
|
|
|
|
/* Prevent Configure from happening during indeterminant state of Horz or Vert Max only */
|
2012-08-04 02:35:17 +04:00
|
|
|
|
|
|
|
if ( (event->type == ConfigureNotify) && xfi->window->rail_ignore_configure)
|
|
|
|
{
|
|
|
|
DEBUG_X11_LMS("ConfigureNotify Event Ignored");
|
2012-10-09 10:31:28 +04:00
|
|
|
xfi->window->rail_ignore_configure = FALSE;
|
|
|
|
return TRUE;
|
2012-08-04 02:35:17 +04:00
|
|
|
}
|
|
|
|
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
2012-11-21 04:34:52 +04:00
|
|
|
|
2011-12-07 03:42:58 +04:00
|
|
|
case LMS_STARTING:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Local move initiated by RDP server, but we have not yet seen any updates from the X server */
|
2011-12-07 03:42:58 +04:00
|
|
|
switch(event->type)
|
2011-12-03 02:51:30 +04:00
|
|
|
{
|
2011-12-07 03:42:58 +04:00
|
|
|
case ConfigureNotify:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Starting to see move events from the X server. Local move is now in progress. */
|
2011-12-07 03:42:58 +04:00
|
|
|
xfi->window->local_move.state = LMS_ACTIVE;
|
|
|
|
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Allow these events to be processed during move to keep our state up to date. */
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
2011-12-03 02:51:30 +04:00
|
|
|
case ButtonPress:
|
|
|
|
case ButtonRelease:
|
|
|
|
case KeyPress:
|
|
|
|
case KeyRelease:
|
|
|
|
case UnmapNotify:
|
2012-11-21 04:34:52 +04:00
|
|
|
/*
|
|
|
|
* A button release event means the X window server did not grab the
|
|
|
|
* mouse before the user released it. In this case we must cancel the
|
|
|
|
* local move. The event will be processed below as normal, below.
|
|
|
|
*/
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
2011-12-03 02:51:30 +04:00
|
|
|
case VisibilityNotify:
|
2011-12-07 03:42:58 +04:00
|
|
|
case PropertyNotify:
|
2011-12-10 00:25:56 +04:00
|
|
|
case Expose:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Allow these events to pass */
|
2011-12-10 00:25:56 +04:00
|
|
|
break;
|
2011-12-07 03:42:58 +04:00
|
|
|
default:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Eat any other events */
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-12-07 03:42:58 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LMS_ACTIVE:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Local move is in progress */
|
2011-12-07 03:42:58 +04:00
|
|
|
switch(event->type)
|
|
|
|
{
|
2011-12-03 02:51:30 +04:00
|
|
|
case ConfigureNotify:
|
2011-12-07 03:42:58 +04:00
|
|
|
case VisibilityNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
case PropertyNotify:
|
2011-12-10 00:25:56 +04:00
|
|
|
case Expose:
|
2012-08-04 02:35:17 +04:00
|
|
|
case GravityNotify:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Keep us up to date on position */
|
2011-12-03 02:51:30 +04:00
|
|
|
break;
|
|
|
|
default:
|
2012-08-04 02:35:17 +04:00
|
|
|
DEBUG_X11_LMS("Event Type to break LMS: %s", X11_EVENT_STRINGS[event->type]);
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Any other event terminates move */
|
2011-12-03 02:51:30 +04:00
|
|
|
xf_rail_end_local_move(xfi, window);
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
2011-12-03 02:51:30 +04:00
|
|
|
}
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LMS_TERMINATING:
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Already sent RDP end move to server. Allow events to pass. */
|
2011-12-07 03:42:58 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-12-07 03:42:58 +04:00
|
|
|
}
|
|
|
|
|
2011-12-03 02:51:30 +04:00
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL xf_event_process(freerdp* instance, XEvent* event)
|
2011-12-07 03:42:58 +04:00
|
|
|
{
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL status = TRUE;
|
2011-12-07 03:42:58 +04:00
|
|
|
xfInfo* xfi = ((xfContext*) instance->context)->xfi;
|
|
|
|
rdpRail* rail = ((rdpContext*) xfi->context)->rail;
|
|
|
|
rdpWindow* window;
|
|
|
|
|
|
|
|
if (xfi->remote_app)
|
|
|
|
{
|
2012-11-21 04:34:52 +04:00
|
|
|
window = window_list_get_by_extra_id(rail->list, (void*) event->xexpose.window);
|
|
|
|
|
2011-12-07 03:42:58 +04:00
|
|
|
if (window)
|
|
|
|
{
|
2012-11-21 04:34:52 +04:00
|
|
|
/* Update "current" window for cursor change orders */
|
2013-02-12 05:38:19 +04:00
|
|
|
xfi->window = (xfWindow*) window->extra;
|
2011-12-07 03:42:58 +04:00
|
|
|
|
|
|
|
if (xf_event_suppress_events(xfi, window, event))
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-12-03 02:51:30 +04:00
|
|
|
}
|
|
|
|
}
|
2011-09-03 20:50:26 +04:00
|
|
|
|
2011-08-19 19:12:30 +04:00
|
|
|
if (event->type != MotionNotify)
|
2012-10-09 11:26:39 +04:00
|
|
|
DEBUG_X11("%s Event(%d): wnd=0x%04X", X11_EVENT_STRINGS[event->type], event->type, (UINT32) event->xany.window);
|
2011-08-19 19:12:30 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case Expose:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_Expose(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VisibilityNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_VisibilityNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MotionNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_MotionNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonPress:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_ButtonPress(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonRelease:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_ButtonRelease(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KeyPress:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_KeyPress(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KeyRelease:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_KeyRelease(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FocusIn:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_FocusIn(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FocusOut:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_FocusOut(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EnterNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_EnterNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LeaveNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_LeaveNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NoExpose:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GraphicsExpose:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ConfigureNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_ConfigureNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MapNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_MapNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
2011-11-29 01:50:08 +04:00
|
|
|
case UnmapNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_UnmapNotify(xfi, event, xfi->remote_app);
|
2011-11-29 01:50:08 +04:00
|
|
|
break;
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
case ReparentNotify:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MappingNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_MappingNotify(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ClientMessage:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_ClientMessage(xfi, event, xfi->remote_app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
2011-09-23 07:37:17 +04:00
|
|
|
case SelectionNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_SelectionNotify(xfi, event, xfi->remote_app);
|
2011-09-23 07:37:17 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SelectionRequest:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_SelectionRequest(xfi, event, xfi->remote_app);
|
2011-09-23 07:37:17 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SelectionClear:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_SelectionClear(xfi, event, xfi->remote_app);
|
2011-09-23 07:37:17 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PropertyNotify:
|
2011-12-03 02:51:30 +04:00
|
|
|
status = xf_event_PropertyNotify(xfi, event, xfi->remote_app);
|
2011-09-23 07:37:17 +04:00
|
|
|
break;
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2013-02-11 20:40:35 +04:00
|
|
|
XSync(xfi->display, FALSE);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
return status;
|
|
|
|
}
|