2011-08-07 17:52:40 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/kbd/kbd.h>
|
|
|
|
#include <freerdp/kbd/vkcodes.h>
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-22 07:39:56 +04:00
|
|
|
#include "xf_rail.h"
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
#include "xf_event.h"
|
|
|
|
|
2011-08-19 19:12:30 +04:00
|
|
|
uint8 X11_EVENT_STRINGS[][20] =
|
|
|
|
{
|
|
|
|
"", "",
|
|
|
|
"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",
|
|
|
|
};
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
void xf_send_mouse_motion_event(rdpInput* input, boolean down, uint32 button, uint16 x, uint16 y)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
input->MouseEvent(input, PTR_FLAGS_MOVE, x, y);
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_Expose(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 09:16:49 +04:00
|
|
|
int x, y;
|
|
|
|
int cx, cy;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (app != True)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
x = event->xexpose.x;
|
|
|
|
y = event->xexpose.y;
|
|
|
|
cx = event->xexpose.width;
|
|
|
|
cy = event->xexpose.height;
|
2011-08-18 09:16:49 +04:00
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window->handle, xfi->gc, x, y, cx, cy, x, y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-23 05:33:10 +04:00
|
|
|
#if 0
|
2011-08-18 09:16:49 +04:00
|
|
|
xfWindow* xfw;
|
|
|
|
rdpWindow* window;
|
|
|
|
|
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*) event->xany.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
|
|
|
|
XPutImage(xfi->display, xfi->primary, xfw->gc, xfi->image,
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw->left, xfw->top, xfw->left, xfw->top, xfw->width, xfw->height);
|
2011-08-18 09:16:49 +04:00
|
|
|
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfw->handle, xfw->gc,
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw->left, xfw->top, xfw->width, xfw->height, 0, 0);
|
2011-08-19 19:12:30 +04:00
|
|
|
|
|
|
|
XFlush(xfi->display);
|
2011-08-23 05:22:05 +04:00
|
|
|
|
|
|
|
xfw = (xfWindow*) window->extra;
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
2011-08-23 05:33:10 +04:00
|
|
|
#endif
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_VisibilityNotify(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-19 19:12:30 +04:00
|
|
|
xfi->unobscured = event->xvisibility.state == VisibilityUnobscured;
|
2011-08-07 21:41:54 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_MotionNotify(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
rdpInput* input;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
input = xfi->instance->input;
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (app != True)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (xfi->mouse_motion != True)
|
|
|
|
{
|
|
|
|
if ((event->xmotion.state & (Button1Mask | Button2Mask | Button3Mask)) == 0)
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
input->MouseEvent(input, PTR_FLAGS_MOVE, event->xmotion.x, event->xmotion.y);
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->fullscreen)
|
|
|
|
XSetInputFocus(xfi->display, xfi->window->handle, RevertToPointerRoot, CurrentTime);
|
|
|
|
}
|
2011-08-25 23:05:07 +04:00
|
|
|
else if (xfi->mouse_motion == True)
|
2011-08-25 01:41:45 +04:00
|
|
|
{
|
|
|
|
xfWindow* xfw;
|
|
|
|
rdpWindow* window;
|
|
|
|
int x = event->xmotion.x;
|
|
|
|
int y = event->xmotion.y;
|
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*)event->xmotion.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
x += xfw->left;
|
|
|
|
y += xfw->top;
|
|
|
|
|
2011-09-04 00:38:01 +04:00
|
|
|
if (!xfw->isLocalMoveSizeModeEnabled)
|
|
|
|
input->MouseEvent(input, PTR_FLAGS_MOVE, x, y);
|
2011-08-25 01:41:45 +04:00
|
|
|
}
|
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
|
|
|
return True;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_ButtonPress(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
uint16 x, y;
|
2011-08-07 17:52:40 +04:00
|
|
|
uint16 flags;
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean wheel;
|
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;
|
|
|
|
wheel = False;
|
|
|
|
|
|
|
|
switch (event->xbutton.button)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
case 1:
|
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
|
|
|
flags = PTR_FLAGS_DOWN | PTR_FLAGS_BUTTON2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
wheel = True;
|
|
|
|
flags = PTR_FLAGS_WHEEL | 0x0078;
|
|
|
|
break;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
case 5:
|
|
|
|
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;
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2011-08-23 05:22:05 +04:00
|
|
|
xfWindow* xfw;
|
2011-08-18 00:45:09 +04:00
|
|
|
rdpWindow* window;
|
2011-08-18 07:46:08 +04:00
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*) event->xbutton.window);
|
2011-08-18 00:45:09 +04:00
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
x += xfw->left;
|
|
|
|
y += xfw->top;
|
2011-08-18 00:45:09 +04:00
|
|
|
}
|
2011-08-18 00:00:09 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
|
|
|
input->MouseEvent(input, flags, x, y);
|
2011-08-18 00:00:09 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_ButtonRelease(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2011-08-18 00:45:09 +04:00
|
|
|
uint16 x, y;
|
2011-08-07 17:52:40 +04:00
|
|
|
uint16 flags;
|
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;
|
|
|
|
|
|
|
|
switch (event->xbutton.button)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
case 1:
|
2011-08-18 00:45:09 +04:00
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.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-08-18 00:45:09 +04:00
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.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-08-18 00:45:09 +04:00
|
|
|
x = event->xmotion.x;
|
|
|
|
y = event->xmotion.y;
|
2011-08-18 00:00:09 +04:00
|
|
|
flags = PTR_FLAGS_BUTTON2;
|
|
|
|
break;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
default:
|
|
|
|
flags = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags != 0)
|
|
|
|
{
|
|
|
|
if (app)
|
|
|
|
{
|
2011-08-23 05:22:05 +04:00
|
|
|
xfWindow* xfw;
|
2011-08-18 00:45:09 +04:00
|
|
|
rdpWindow* window;
|
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*) event->xany.window);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 00:45:09 +04:00
|
|
|
if (window != NULL)
|
|
|
|
{
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
x += xfw->left;
|
|
|
|
y += xfw->top;
|
2011-08-18 00:45:09 +04:00
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 00:45:09 +04:00
|
|
|
input->MouseEvent(input, flags, x, y);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_KeyPress(xfInfo* xfi, XEvent* event, boolean 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))
|
|
|
|
return True;
|
|
|
|
|
|
|
|
xf_kbd_send_key(xfi, True, event->xkey.keycode);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_KeyRelease(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
XEvent next_event;
|
|
|
|
|
|
|
|
if (XPending(xfi->display))
|
|
|
|
{
|
|
|
|
memset(&next_event, 0, sizeof(next_event));
|
|
|
|
XPeekEvent(xfi->display, &next_event);
|
|
|
|
|
|
|
|
if (next_event.type == KeyPress)
|
|
|
|
{
|
|
|
|
if (next_event.xkey.keycode == event->xkey.keycode)
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
xf_kbd_unset_keypress(xfi, event->xkey.keycode);
|
|
|
|
xf_kbd_send_key(xfi, False, event->xkey.keycode);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_FocusIn(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xfocus.mode == NotifyGrab)
|
|
|
|
return True;
|
|
|
|
|
|
|
|
xfi->focused = True;
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->mouse_active && (app != True))
|
2011-08-09 06:24:12 +04:00
|
|
|
XGrabKeyboard(xfi->display, xfi->window->handle, True, GrabModeAsync, GrabModeAsync, CurrentTime);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-30 22:21:16 +04:00
|
|
|
//xf_rail_send_activate(xfi, event->xany.window, True);
|
2011-08-07 21:41:54 +04:00
|
|
|
xf_kbd_focus_in(xfi);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_FocusOut(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xfocus.mode == NotifyUngrab)
|
|
|
|
return True;
|
|
|
|
|
|
|
|
xfi->focused = False;
|
|
|
|
|
|
|
|
if (event->xfocus.mode == NotifyWhileGrabbed)
|
|
|
|
XUngrabKeyboard(xfi->display, CurrentTime);
|
|
|
|
|
2011-08-30 22:21:16 +04:00
|
|
|
//xf_rail_send_activate(xfi, event->xany.window, False);
|
2011-08-25 02:22:06 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_MappingNotify(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
if (event->xmapping.request == MappingModifier)
|
|
|
|
{
|
|
|
|
XFreeModifiermap(xfi->modifier_map);
|
|
|
|
xfi->modifier_map = XGetModifierMapping(xfi->display);
|
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_ClientMessage(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
|
|
|
Atom kill_atom;
|
|
|
|
Atom protocol_atom;
|
|
|
|
|
|
|
|
protocol_atom = XInternAtom(xfi->display, "WM_PROTOCOLS", True);
|
|
|
|
kill_atom = XInternAtom(xfi->display, "WM_DELETE_WINDOW", True);
|
|
|
|
|
|
|
|
if ((event->xclient.message_type == protocol_atom)
|
|
|
|
&& ((Atom) event->xclient.data.l[0] == kill_atom))
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_EnterNotify(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2011-08-18 09:16:49 +04:00
|
|
|
if (app != True)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
XGrabKeyboard(xfi->display, xfi->window->handle, True, GrabModeAsync, GrabModeAsync, CurrentTime);
|
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
return True;
|
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean xf_event_LeaveNotify(xfInfo* xfi, XEvent* event, boolean app)
|
2011-08-07 21:41:54 +04:00
|
|
|
{
|
2011-08-19 19:12:30 +04:00
|
|
|
if (app != True)
|
|
|
|
{
|
|
|
|
xfi->mouse_active = False;
|
|
|
|
XUngrabKeyboard(xfi->display, CurrentTime);
|
|
|
|
}
|
2011-08-07 21:41:54 +04:00
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
2011-08-18 00:00:09 +04:00
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
boolean xf_event_ConfigureNotify(xfInfo* xfi, XEvent* event, boolean app)
|
|
|
|
{
|
2011-08-19 19:12:30 +04:00
|
|
|
rdpWindow* window;
|
|
|
|
|
2011-09-02 02:08:53 +04:00
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*) event->xconfigure.window);
|
2011-08-19 19:12:30 +04:00
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
2011-09-02 02:08:53 +04:00
|
|
|
xfWindow* xfw;
|
2011-08-19 19:12:30 +04:00
|
|
|
xfw = (xfWindow*) window->extra;
|
|
|
|
|
2011-09-04 00:38:01 +04:00
|
|
|
DEBUG_X11_LMS("ConfigureNotify: send_event=%d eventWindow=0x%X window=0x%X above=0x%X rc={l=%d t=%d r=%d b=%d} "
|
|
|
|
"w=%d h=%d override_redirect=%d",
|
|
|
|
event->xconfigure.send_event,
|
|
|
|
(uint32)event->xconfigure.event,
|
|
|
|
(uint32)event->xconfigure.window,
|
|
|
|
(uint32)event->xconfigure.above,
|
|
|
|
event->xconfigure.x,
|
|
|
|
event->xconfigure.y,
|
|
|
|
event->xconfigure.x + event->xconfigure.width - 1,
|
|
|
|
event->xconfigure.y + event->xconfigure.height - 1,
|
|
|
|
event->xconfigure.width,
|
|
|
|
event->xconfigure.height,
|
|
|
|
event->xconfigure.override_redirect);
|
|
|
|
|
|
|
|
if (xfw->isLocalMoveSizeModeEnabled && event->xconfigure.above != 0)
|
2011-09-02 02:08:53 +04:00
|
|
|
{
|
|
|
|
uint32 left = event->xconfigure.x;
|
|
|
|
uint32 top = event->xconfigure.y;
|
2011-09-04 00:38:01 +04:00
|
|
|
uint32 right = event->xconfigure.x + event->xconfigure.width;
|
2011-09-02 02:08:53 +04:00
|
|
|
uint32 bottom = event->xconfigure.y + event->xconfigure.height - 1;
|
|
|
|
|
2011-09-04 00:38:01 +04:00
|
|
|
DEBUG_X11_LMS("MoveSendToServer: windowId=0x%X rc={l=%d t=%d r=%d b=%d} w=%d h=%d \n",
|
|
|
|
(uint32)xfw->handle, left, top, right, bottom, event->xconfigure.width,
|
|
|
|
event->xconfigure.height);
|
|
|
|
|
2011-09-02 02:08:53 +04:00
|
|
|
xf_rail_send_windowmove(xfi, window->windowId, left, top, right, bottom);
|
|
|
|
}
|
2011-09-02 20:39:56 +04:00
|
|
|
|
2011-08-19 19:12:30 +04:00
|
|
|
XPutImage(xfi->display, xfi->primary, xfw->gc, xfi->image,
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw->left, xfw->top, xfw->left, xfw->top, xfw->width, xfw->height);
|
2011-08-19 19:12:30 +04:00
|
|
|
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfw->handle, xfw->gc,
|
2011-08-23 05:22:05 +04:00
|
|
|
xfw->left, xfw->top, xfw->width, xfw->height, 0, 0);
|
2011-08-19 19:12:30 +04:00
|
|
|
|
|
|
|
XFlush(xfi->display);
|
|
|
|
}
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-22 07:15:19 +04:00
|
|
|
boolean xf_event_MapNotify(xfInfo* xfi, XEvent* event, boolean app)
|
|
|
|
{
|
|
|
|
rdpWindow* window;
|
|
|
|
|
|
|
|
if (app != True)
|
|
|
|
return True;
|
|
|
|
|
|
|
|
window = window_list_get_by_extra_id(xfi->rail->list, (void*) event->xany.window);
|
|
|
|
|
|
|
|
if (window != NULL)
|
|
|
|
{
|
2011-08-22 07:39:56 +04:00
|
|
|
/* local restore event */
|
|
|
|
xf_rail_send_client_system_command(xfi, window->windowId, SC_RESTORE);
|
2011-08-22 07:15:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
boolean xf_event_process(freerdp* instance, XEvent* event)
|
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
boolean app = False;
|
2011-08-07 21:41:54 +04:00
|
|
|
boolean status = True;
|
|
|
|
xfInfo* xfi = GET_XFI(instance);
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->remote_app == True)
|
|
|
|
{
|
2011-08-18 00:00:09 +04:00
|
|
|
app = True;
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (event->xany.window != xfi->window->handle)
|
|
|
|
app = True;
|
|
|
|
}
|
2011-08-18 00:00:09 +04:00
|
|
|
|
2011-09-03 20:50:26 +04:00
|
|
|
|
2011-08-19 19:12:30 +04:00
|
|
|
if (event->type != MotionNotify)
|
2011-09-02 21:29:17 +04:00
|
|
|
DEBUG_X11("%s Event: wnd=0x%04X", X11_EVENT_STRINGS[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-08-18 00:00:09 +04:00
|
|
|
status = xf_event_Expose(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VisibilityNotify:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_VisibilityNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MotionNotify:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_MotionNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonPress:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_ButtonPress(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonRelease:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_ButtonRelease(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KeyPress:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_KeyPress(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KeyRelease:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_KeyRelease(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FocusIn:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_FocusIn(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FocusOut:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_FocusOut(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EnterNotify:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_EnterNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LeaveNotify:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_LeaveNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NoExpose:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GraphicsExpose:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ConfigureNotify:
|
2011-08-18 09:16:49 +04:00
|
|
|
status = xf_event_ConfigureNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MapNotify:
|
2011-08-22 07:15:19 +04:00
|
|
|
status = xf_event_MapNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ReparentNotify:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MappingNotify:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_MappingNotify(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ClientMessage:
|
2011-08-18 00:00:09 +04:00
|
|
|
status = xf_event_ClientMessage(xfi, event, app);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-09-02 21:29:17 +04:00
|
|
|
DEBUG_X11("xf_event_process unknown event %d", event->type);
|
2011-08-07 21:41:54 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|