2001-10-06 14:13:28 +00:00
|
|
|
#include "CXWindowsPrimaryScreen.h"
|
2002-05-27 16:22:59 +00:00
|
|
|
#include "CXWindowsClipboard.h"
|
|
|
|
#include "CXWindowsUtil.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "CServer.h"
|
|
|
|
#include "CThread.h"
|
2001-10-14 14:37:41 +00:00
|
|
|
#include "CLog.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <X11/X.h>
|
2002-04-26 17:38:01 +00:00
|
|
|
#include <X11/Xutil.h>
|
2002-04-26 20:12:55 +00:00
|
|
|
#define XK_MISCELLANY
|
|
|
|
#include <X11/keysymdef.h>
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// CXWindowsPrimaryScreen
|
|
|
|
//
|
|
|
|
|
|
|
|
CXWindowsPrimaryScreen::CXWindowsPrimaryScreen() :
|
|
|
|
m_server(NULL),
|
2001-11-11 21:15:30 +00:00
|
|
|
m_active(false),
|
|
|
|
m_window(None)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
CXWindowsPrimaryScreen::~CXWindowsPrimaryScreen()
|
|
|
|
{
|
2001-11-19 00:33:36 +00:00
|
|
|
assert(m_window == None);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::run()
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
// wait for and get the next event
|
|
|
|
XEvent xevent;
|
|
|
|
if (!getEvent(&xevent)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle event
|
|
|
|
switch (xevent.type) {
|
2002-04-29 14:40:01 +00:00
|
|
|
case CreateNotify: {
|
2001-11-19 00:33:36 +00:00
|
|
|
// select events on new window
|
|
|
|
CDisplayLock display(this);
|
|
|
|
selectEvents(display, xevent.xcreatewindow.window);
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case MappingNotify: {
|
2002-04-26 17:38:01 +00:00
|
|
|
// keyboard mapping changed
|
|
|
|
CDisplayLock display(this);
|
|
|
|
XRefreshKeyboardMapping(&xevent.xmapping);
|
2002-04-30 17:48:11 +00:00
|
|
|
updateModifierMap(display);
|
2002-04-26 17:38:01 +00:00
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case KeyPress: {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "event: KeyPress code=%d, state=0x%04x", xevent.xkey.keycode, xevent.xkey.state));
|
2001-11-19 00:33:36 +00:00
|
|
|
const KeyModifierMask mask = mapModifier(xevent.xkey.state);
|
2002-04-26 17:38:01 +00:00
|
|
|
const KeyID key = mapKey(&xevent.xkey);
|
2001-11-19 00:33:36 +00:00
|
|
|
if (key != kKeyNone) {
|
|
|
|
m_server->onKeyDown(key, mask);
|
2002-05-04 18:33:48 +00:00
|
|
|
if (key == XK_Caps_Lock && m_capsLockHalfDuplex) {
|
2002-04-26 20:12:55 +00:00
|
|
|
m_server->onKeyUp(key, mask | KeyModifierCapsLock);
|
2002-05-04 18:33:48 +00:00
|
|
|
}
|
|
|
|
else if (key == XK_Num_Lock && m_numLockHalfDuplex) {
|
|
|
|
m_server->onKeyUp(key, mask | KeyModifierNumLock);
|
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case KeyRelease: {
|
2001-11-19 00:33:36 +00:00
|
|
|
const KeyModifierMask mask = mapModifier(xevent.xkey.state);
|
2002-04-26 17:38:01 +00:00
|
|
|
const KeyID key = mapKey(&xevent.xkey);
|
2001-11-19 00:33:36 +00:00
|
|
|
if (key != kKeyNone) {
|
2002-05-03 11:26:44 +00:00
|
|
|
// check if this is a key repeat by getting the next
|
|
|
|
// KeyPress event that has the same key and time as
|
|
|
|
// this release event, if any. first prepare the
|
|
|
|
// filter info.
|
|
|
|
CKeyEventInfo filter;
|
|
|
|
filter.m_event = KeyPress;
|
|
|
|
filter.m_window = xevent.xkey.window;
|
|
|
|
filter.m_time = xevent.xkey.time;
|
|
|
|
filter.m_keycode = xevent.xkey.keycode;
|
|
|
|
|
|
|
|
// now check for event
|
|
|
|
XEvent xevent2;
|
|
|
|
CDisplayLock display(this);
|
|
|
|
if (XCheckIfEvent(display, &xevent2,
|
|
|
|
&CXWindowsPrimaryScreen::findKeyEvent,
|
|
|
|
(XPointer)&filter) != True) {
|
|
|
|
// no press event follows so it's a plain release
|
|
|
|
log((CLOG_DEBUG1 "event: KeyRelease code=%d, state=0x%04x", xevent.xkey.keycode, xevent.xkey.state));
|
2002-05-04 18:33:48 +00:00
|
|
|
if (key == XK_Caps_Lock && m_capsLockHalfDuplex) {
|
|
|
|
m_server->onKeyDown(key, mask);
|
|
|
|
}
|
|
|
|
else if (key == XK_Num_Lock && m_numLockHalfDuplex) {
|
2002-05-03 11:26:44 +00:00
|
|
|
m_server->onKeyDown(key, mask);
|
2002-05-04 18:33:48 +00:00
|
|
|
}
|
2002-05-03 11:26:44 +00:00
|
|
|
m_server->onKeyUp(key, mask);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// found a press event following so it's a repeat.
|
|
|
|
// we could attempt to count the already queued
|
|
|
|
// repeats but we'll just send a repeat of 1.
|
|
|
|
// note that we discard the press event.
|
|
|
|
log((CLOG_DEBUG1 "event: repeat code=%d, state=0x%04x", xevent.xkey.keycode, xevent.xkey.state));
|
|
|
|
m_server->onKeyRepeat(key, mask, 1);
|
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case ButtonPress: {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "event: ButtonPress button=%d", xevent.xbutton.button));
|
2001-11-19 00:33:36 +00:00
|
|
|
const ButtonID button = mapButton(xevent.xbutton.button);
|
|
|
|
if (button != kButtonNone) {
|
|
|
|
m_server->onMouseDown(button);
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case ButtonRelease: {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "event: ButtonRelease button=%d", xevent.xbutton.button));
|
2001-11-19 00:33:36 +00:00
|
|
|
const ButtonID button = mapButton(xevent.xbutton.button);
|
|
|
|
if (button != kButtonNone) {
|
|
|
|
m_server->onMouseUp(button);
|
|
|
|
}
|
2002-05-23 15:50:38 +00:00
|
|
|
else if (xevent.xbutton.button == 4) {
|
|
|
|
// wheel forward (away from user)
|
|
|
|
m_server->onMouseWheel(120);
|
|
|
|
}
|
|
|
|
else if (xevent.xbutton.button == 5) {
|
|
|
|
// wheel backward (toward user)
|
|
|
|
m_server->onMouseWheel(-120);
|
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
case MotionNotify: {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "event: MotionNotify %d,%d", xevent.xmotion.x_root, xevent.xmotion.y_root));
|
2001-11-19 00:33:36 +00:00
|
|
|
SInt32 x, y;
|
|
|
|
if (!m_active) {
|
|
|
|
x = xevent.xmotion.x_root;
|
|
|
|
y = xevent.xmotion.y_root;
|
|
|
|
m_server->onMouseMovePrimary(x, y);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// FIXME -- slurp up all remaining motion events?
|
|
|
|
// probably not since key strokes may go to wrong place.
|
|
|
|
|
|
|
|
// get mouse deltas
|
|
|
|
{
|
|
|
|
CDisplayLock display(this);
|
|
|
|
Window root, window;
|
|
|
|
int xRoot, yRoot, xWindow, yWindow;
|
|
|
|
unsigned int mask;
|
|
|
|
if (!XQueryPointer(display, m_window, &root, &window,
|
|
|
|
&xRoot, &yRoot, &xWindow, &yWindow, &mask))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// compute position of center of window
|
|
|
|
SInt32 w, h;
|
|
|
|
getScreenSize(&w, &h);
|
|
|
|
x = xRoot - (w >> 1);
|
|
|
|
y = yRoot - (h >> 1);
|
|
|
|
|
|
|
|
// warp mouse back to center
|
|
|
|
warpCursorNoLock(display, w >> 1, h >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_server->onMouseMoveSecondary(x, y);
|
|
|
|
}
|
|
|
|
break;
|
2002-04-29 14:40:01 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::stop()
|
|
|
|
{
|
|
|
|
doStop();
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::open(CServer* server)
|
|
|
|
{
|
|
|
|
assert(m_server == NULL);
|
|
|
|
assert(server != NULL);
|
|
|
|
|
|
|
|
// set the server
|
|
|
|
m_server = server;
|
|
|
|
|
|
|
|
// open the display
|
2001-11-11 21:15:30 +00:00
|
|
|
openDisplay();
|
2002-04-26 20:12:55 +00:00
|
|
|
|
|
|
|
// check for peculiarities
|
|
|
|
// FIXME -- may have to get these from some database
|
2002-05-04 18:33:48 +00:00
|
|
|
m_numLockHalfDuplex = false;
|
2002-04-26 20:12:55 +00:00
|
|
|
m_capsLockHalfDuplex = false;
|
2002-05-04 18:33:48 +00:00
|
|
|
// m_numLockHalfDuplex = true;
|
2002-04-26 20:12:55 +00:00
|
|
|
// m_capsLockHalfDuplex = true;
|
2002-04-30 17:48:11 +00:00
|
|
|
|
|
|
|
// update key state
|
|
|
|
{
|
|
|
|
CDisplayLock display(this);
|
|
|
|
updateModifierMap(display);
|
|
|
|
}
|
2002-05-24 17:54:28 +00:00
|
|
|
|
|
|
|
// send screen info
|
|
|
|
SInt32 w, h;
|
|
|
|
getScreenSize(&w, &h);
|
|
|
|
m_server->setInfo(w, h, getJumpZoneSize(), 0, 0);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::close()
|
|
|
|
{
|
|
|
|
assert(m_server != NULL);
|
|
|
|
|
|
|
|
// close the display
|
2001-11-11 21:15:30 +00:00
|
|
|
closeDisplay();
|
|
|
|
|
|
|
|
// done with server
|
|
|
|
m_server = NULL;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::enter(SInt32 x, SInt32 y)
|
|
|
|
{
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_INFO "entering primary at %d,%d", x, y));
|
2001-11-11 21:15:30 +00:00
|
|
|
assert(m_active == true);
|
|
|
|
assert(m_window != None);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
CDisplayLock display(this);
|
2001-10-24 22:33:24 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// warp to requested location
|
2001-11-11 21:15:30 +00:00
|
|
|
XWarpPointer(display, None, m_window, 0, 0, 0, 0, x, y);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// unmap the grab window. this also ungrabs the mouse and keyboard.
|
2001-11-11 21:15:30 +00:00
|
|
|
XUnmapWindow(display, m_window);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// remove all input events for grab window
|
|
|
|
XEvent event;
|
2001-11-11 21:15:30 +00:00
|
|
|
while (XCheckWindowEvent(display, m_window,
|
2001-10-06 14:13:28 +00:00
|
|
|
PointerMotionMask |
|
|
|
|
ButtonPressMask | ButtonReleaseMask |
|
|
|
|
KeyPressMask | KeyReleaseMask |
|
|
|
|
KeymapStateMask,
|
|
|
|
&event)) {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
// not active anymore
|
|
|
|
m_active = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::leave()
|
|
|
|
{
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_INFO "leaving primary"));
|
2001-11-11 21:15:30 +00:00
|
|
|
assert(m_active == false);
|
|
|
|
assert(m_window != None);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
CDisplayLock display(this);
|
2001-10-24 22:33:24 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// raise and show the input window
|
2001-11-11 21:15:30 +00:00
|
|
|
XMapRaised(display, m_window);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// grab the mouse and keyboard. keep trying until we get them.
|
|
|
|
// if we can't grab one after grabbing the other then ungrab
|
|
|
|
// and wait before retrying.
|
|
|
|
int result;
|
|
|
|
do {
|
|
|
|
// mouse first
|
|
|
|
do {
|
2001-11-11 21:15:30 +00:00
|
|
|
result = XGrabPointer(display, m_window, True, 0,
|
2001-10-06 14:13:28 +00:00
|
|
|
GrabModeAsync, GrabModeAsync,
|
|
|
|
m_window, None, CurrentTime);
|
|
|
|
assert(result != GrabNotViewable);
|
2001-10-14 14:37:41 +00:00
|
|
|
if (result != GrabSuccess) {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "waiting to grab pointer"));
|
2002-04-27 14:19:53 +00:00
|
|
|
CThread::sleep(0.1);
|
2001-10-14 14:37:41 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
} while (result != GrabSuccess);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "grabbed pointer"));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// now the keyboard
|
2001-11-11 21:15:30 +00:00
|
|
|
result = XGrabKeyboard(display, m_window, True,
|
2001-10-06 14:13:28 +00:00
|
|
|
GrabModeAsync, GrabModeAsync, CurrentTime);
|
|
|
|
assert(result != GrabNotViewable);
|
|
|
|
if (result != GrabSuccess) {
|
2001-11-11 21:15:30 +00:00
|
|
|
// back off to avoid grab deadlock
|
|
|
|
XUngrabPointer(display, CurrentTime);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "ungrabbed pointer, waiting to grab keyboard"));
|
2002-04-27 14:19:53 +00:00
|
|
|
CThread::sleep(0.1);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
} while (result != GrabSuccess);
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "grabbed pointer and keyboard"));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// move the mouse to the center of grab window
|
2001-11-11 21:15:30 +00:00
|
|
|
SInt32 w, h;
|
|
|
|
getScreenSize(&w, &h);
|
|
|
|
warpCursorNoLock(display, w >> 1, h >> 1);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// local client now active
|
|
|
|
m_active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::warpCursor(SInt32 x, SInt32 y)
|
|
|
|
{
|
2001-11-11 21:15:30 +00:00
|
|
|
CDisplayLock display(this);
|
|
|
|
warpCursorNoLock(display, x, y);
|
2001-10-24 22:33:24 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2001-10-24 22:33:24 +00:00
|
|
|
void CXWindowsPrimaryScreen::warpCursorNoLock(
|
2001-11-11 21:15:30 +00:00
|
|
|
Display* display, SInt32 x, SInt32 y)
|
2001-10-24 22:33:24 +00:00
|
|
|
{
|
2001-11-11 21:15:30 +00:00
|
|
|
assert(display != NULL);
|
|
|
|
assert(m_window != None);
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// warp the mouse
|
2001-11-11 21:15:30 +00:00
|
|
|
XWarpPointer(display, None, getRoot(), 0, 0, 0, 0, x, y);
|
|
|
|
XSync(display, False);
|
2002-05-01 14:36:52 +00:00
|
|
|
log((CLOG_DEBUG2 "warped to %d,%d", x, y));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// discard mouse events since we just added one we don't want
|
|
|
|
XEvent xevent;
|
2001-11-11 21:15:30 +00:00
|
|
|
while (XCheckWindowEvent(display, m_window,
|
2001-10-06 14:13:28 +00:00
|
|
|
PointerMotionMask, &xevent)) {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-13 23:34:12 +00:00
|
|
|
void CXWindowsPrimaryScreen::setClipboard(
|
2002-04-27 14:19:53 +00:00
|
|
|
ClipboardID id, const IClipboard* clipboard)
|
2001-11-13 23:34:12 +00:00
|
|
|
{
|
2002-05-27 16:22:59 +00:00
|
|
|
setDisplayClipboard(id, clipboard);
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
|
|
|
|
2002-04-27 14:19:53 +00:00
|
|
|
void CXWindowsPrimaryScreen::grabClipboard(ClipboardID id)
|
2001-11-25 18:32:41 +00:00
|
|
|
{
|
2002-05-27 16:22:59 +00:00
|
|
|
setDisplayClipboard(id, NULL);
|
2001-11-13 23:34:12 +00:00
|
|
|
}
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
void CXWindowsPrimaryScreen::getSize(
|
|
|
|
SInt32* width, SInt32* height) const
|
|
|
|
{
|
2001-11-11 21:15:30 +00:00
|
|
|
getScreenSize(width, height);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SInt32 CXWindowsPrimaryScreen::getJumpZoneSize() const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-11-13 23:34:12 +00:00
|
|
|
void CXWindowsPrimaryScreen::getClipboard(
|
2002-04-27 14:19:53 +00:00
|
|
|
ClipboardID id, IClipboard* clipboard) const
|
2001-11-13 23:34:12 +00:00
|
|
|
{
|
2002-05-27 16:22:59 +00:00
|
|
|
getDisplayClipboard(id, clipboard);
|
2001-11-13 23:34:12 +00:00
|
|
|
}
|
|
|
|
|
2002-04-30 17:48:11 +00:00
|
|
|
KeyModifierMask CXWindowsPrimaryScreen::getToggleMask() const
|
|
|
|
{
|
|
|
|
CDisplayLock display(this);
|
|
|
|
|
|
|
|
// query the pointer to get the keyboard state
|
|
|
|
// FIXME -- is there a better way to do this?
|
|
|
|
Window root, window;
|
|
|
|
int xRoot, yRoot, xWindow, yWindow;
|
|
|
|
unsigned int state;
|
|
|
|
if (!XQueryPointer(display, m_window, &root, &window,
|
2002-05-24 14:37:12 +00:00
|
|
|
&xRoot, &yRoot, &xWindow, &yWindow, &state)) {
|
2002-04-30 17:48:11 +00:00
|
|
|
return 0;
|
2002-05-24 14:37:12 +00:00
|
|
|
}
|
2002-04-30 17:48:11 +00:00
|
|
|
|
|
|
|
// convert to KeyModifierMask
|
2002-05-01 14:36:52 +00:00
|
|
|
KeyModifierMask mask = 0;
|
2002-04-30 17:48:11 +00:00
|
|
|
if (state & m_numLockMask)
|
|
|
|
mask |= KeyModifierNumLock;
|
|
|
|
if (state & m_capsLockMask)
|
|
|
|
mask |= KeyModifierCapsLock;
|
|
|
|
if (state & m_scrollLockMask)
|
|
|
|
mask |= KeyModifierScrollLock;
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2002-05-24 14:37:12 +00:00
|
|
|
bool CXWindowsPrimaryScreen::isLockedToScreen() const
|
|
|
|
{
|
|
|
|
CDisplayLock display(this);
|
|
|
|
|
|
|
|
// query the pointer to get the button state
|
|
|
|
Window root, window;
|
|
|
|
int xRoot, yRoot, xWindow, yWindow;
|
|
|
|
unsigned int state;
|
|
|
|
if (XQueryPointer(display, m_window, &root, &window,
|
|
|
|
&xRoot, &yRoot, &xWindow, &yWindow, &state)) {
|
|
|
|
if ((state & (Button1Mask | Button2Mask | Button3Mask |
|
|
|
|
Button4Mask | Button5Mask)) != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get logical keyboard state
|
|
|
|
char keyMap[32];
|
|
|
|
memset(keyMap, 0, sizeof(keyMap));
|
|
|
|
XQueryKeymap(display, keyMap);
|
|
|
|
|
|
|
|
// locked if any key is down
|
|
|
|
for (unsigned int i = 0; i < sizeof(keyMap); ++i) {
|
|
|
|
if (keyMap[i] != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// not locked
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
void CXWindowsPrimaryScreen::onOpenDisplay()
|
|
|
|
{
|
|
|
|
assert(m_window == None);
|
|
|
|
|
|
|
|
CDisplayLock display(this);
|
|
|
|
|
|
|
|
// get size of screen
|
|
|
|
SInt32 w, h;
|
|
|
|
getScreenSize(&w, &h);
|
|
|
|
|
|
|
|
// create the grab window. this window is used to capture user
|
|
|
|
// input when the user is focussed on another client. don't let
|
|
|
|
// the window manager mess with it.
|
|
|
|
XSetWindowAttributes attr;
|
|
|
|
attr.event_mask = PointerMotionMask |// PointerMotionHintMask |
|
|
|
|
ButtonPressMask | ButtonReleaseMask |
|
|
|
|
KeyPressMask | KeyReleaseMask |
|
2002-04-28 00:46:15 +00:00
|
|
|
KeymapStateMask | PropertyChangeMask;
|
2001-11-11 21:15:30 +00:00
|
|
|
attr.do_not_propagate_mask = 0;
|
|
|
|
attr.override_redirect = True;
|
|
|
|
attr.cursor = createBlankCursor();
|
|
|
|
m_window = XCreateWindow(display, getRoot(), 0, 0, w, h, 0, 0,
|
|
|
|
InputOnly, CopyFromParent,
|
|
|
|
CWDontPropagate | CWEventMask |
|
|
|
|
CWOverrideRedirect | CWCursor,
|
|
|
|
&attr);
|
2002-05-27 18:30:13 +00:00
|
|
|
log((CLOG_DEBUG "window is 0x%08x", m_window));
|
2001-11-11 21:15:30 +00:00
|
|
|
|
|
|
|
// start watching for events on other windows
|
|
|
|
selectEvents(display, getRoot());
|
|
|
|
}
|
|
|
|
|
2002-05-27 16:22:59 +00:00
|
|
|
CXWindowsClipboard* CXWindowsPrimaryScreen::createClipboard(
|
|
|
|
ClipboardID id)
|
|
|
|
{
|
|
|
|
CDisplayLock display(this);
|
|
|
|
return new CXWindowsClipboard(display, m_window, id);
|
|
|
|
}
|
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
void CXWindowsPrimaryScreen::onCloseDisplay()
|
|
|
|
{
|
|
|
|
assert(m_window != None);
|
|
|
|
|
|
|
|
// destroy window
|
|
|
|
CDisplayLock display(this);
|
|
|
|
XDestroyWindow(display, m_window);
|
|
|
|
m_window = None;
|
|
|
|
}
|
|
|
|
|
2002-05-27 16:22:59 +00:00
|
|
|
void CXWindowsPrimaryScreen::onLostClipboard(
|
|
|
|
ClipboardID id)
|
|
|
|
{
|
|
|
|
// tell server that the clipboard was grabbed locally
|
|
|
|
m_server->grabClipboard(id);
|
|
|
|
}
|
|
|
|
|
2002-05-27 18:30:13 +00:00
|
|
|
void CXWindowsPrimaryScreen::selectEvents(
|
|
|
|
Display* display, Window w) const
|
2002-04-29 14:08:48 +00:00
|
|
|
{
|
2002-05-27 18:30:13 +00:00
|
|
|
// ignore errors while we adjust event masks
|
|
|
|
CXWindowsUtil::CErrorLock lock;
|
|
|
|
|
|
|
|
// adjust event masks
|
|
|
|
doSelectEvents(display, w);
|
2002-04-29 14:08:48 +00:00
|
|
|
}
|
|
|
|
|
2002-05-27 18:30:13 +00:00
|
|
|
void CXWindowsPrimaryScreen::doSelectEvents(
|
2001-11-11 21:15:30 +00:00
|
|
|
Display* display, Window w) const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// we want to track the mouse everywhere on the display. to achieve
|
|
|
|
// that we select PointerMotionMask on every window. we also select
|
|
|
|
// SubstructureNotifyMask in order to get CreateNotify events so we
|
|
|
|
// select events on new windows too.
|
|
|
|
|
|
|
|
// we don't want to adjust our grab window
|
|
|
|
if (w == m_window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// select events of interest
|
2002-04-29 14:08:48 +00:00
|
|
|
XSelectInput(display, w, PointerMotionMask | SubstructureNotifyMask);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// recurse on child windows
|
|
|
|
Window rw, pw, *cw;
|
|
|
|
unsigned int nc;
|
2001-11-11 21:15:30 +00:00
|
|
|
if (XQueryTree(display, w, &rw, &pw, &cw, &nc)) {
|
2001-10-06 14:13:28 +00:00
|
|
|
for (unsigned int i = 0; i < nc; ++i)
|
2002-05-27 18:30:13 +00:00
|
|
|
doSelectEvents(display, cw[i]);
|
2001-10-25 22:17:17 +00:00
|
|
|
XFree(cw);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyModifierMask CXWindowsPrimaryScreen::mapModifier(
|
|
|
|
unsigned int state) const
|
|
|
|
{
|
|
|
|
// FIXME -- should be configurable
|
|
|
|
KeyModifierMask mask = 0;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & ShiftMask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierShift;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & LockMask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierCapsLock;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & ControlMask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierControl;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & Mod1Mask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierAlt;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & Mod2Mask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierNumLock;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & Mod4Mask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierMeta;
|
2002-04-26 17:38:01 +00:00
|
|
|
if (state & Mod5Mask)
|
2001-10-06 14:13:28 +00:00
|
|
|
mask |= KeyModifierScrollLock;
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
KeyID CXWindowsPrimaryScreen::mapKey(XKeyEvent* event) const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-04-26 17:38:01 +00:00
|
|
|
KeySym keysym;
|
|
|
|
char dummy[1];
|
|
|
|
|
2001-11-11 21:15:30 +00:00
|
|
|
CDisplayLock display(this);
|
2002-04-26 17:38:01 +00:00
|
|
|
XLookupString(event, dummy, 0, &keysym, NULL);
|
|
|
|
return static_cast<KeyID>(keysym);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ButtonID CXWindowsPrimaryScreen::mapButton(
|
|
|
|
unsigned int button) const
|
|
|
|
{
|
|
|
|
// FIXME -- should use button mapping?
|
|
|
|
if (button >= 1 && button <= 3)
|
|
|
|
return static_cast<ButtonID>(button);
|
|
|
|
else
|
|
|
|
return kButtonNone;
|
|
|
|
}
|
2002-04-30 17:48:11 +00:00
|
|
|
|
|
|
|
void CXWindowsPrimaryScreen::updateModifierMap(
|
|
|
|
Display* display)
|
|
|
|
{
|
|
|
|
// get modifier map from server
|
|
|
|
XModifierKeymap* keymap = XGetModifierMapping(display);
|
|
|
|
|
|
|
|
// initialize
|
|
|
|
m_numLockMask = 0;
|
|
|
|
m_capsLockMask = 0;
|
|
|
|
m_scrollLockMask = 0;
|
|
|
|
|
|
|
|
// set keycodes and masks
|
|
|
|
for (unsigned int i = 0; i < 8; ++i) {
|
|
|
|
const unsigned int bit = (1 << i);
|
|
|
|
for (int j = 0; j < keymap->max_keypermod; ++j) {
|
|
|
|
KeyCode keycode = keymap->modifiermap[i *
|
|
|
|
keymap->max_keypermod + j];
|
|
|
|
|
|
|
|
// note toggle modifier bits
|
|
|
|
const KeySym keysym = XKeycodeToKeysym(display, keycode, 0);
|
|
|
|
if (keysym == XK_Num_Lock) {
|
|
|
|
m_numLockMask |= bit;
|
|
|
|
}
|
|
|
|
else if (keysym == XK_Caps_Lock) {
|
|
|
|
m_capsLockMask |= bit;
|
|
|
|
}
|
|
|
|
else if (keysym == XK_Scroll_Lock) {
|
|
|
|
m_scrollLockMask |= bit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XFreeModifiermap(keymap);
|
|
|
|
}
|
2002-05-03 11:26:44 +00:00
|
|
|
|
|
|
|
Bool CXWindowsPrimaryScreen::findKeyEvent(
|
|
|
|
Display*, XEvent* xevent, XPointer arg)
|
|
|
|
{
|
|
|
|
CKeyEventInfo* filter = reinterpret_cast<CKeyEventInfo*>(arg);
|
|
|
|
return (xevent->type == filter->m_event &&
|
|
|
|
xevent->xkey.window == filter->m_window &&
|
|
|
|
xevent->xkey.time == filter->m_time &&
|
|
|
|
xevent->xkey.keycode == filter->m_keycode) ? True : False;
|
|
|
|
}
|