2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2001-10-08 19:24:46 +00:00
|
|
|
#include "CXWindowsSecondaryScreen.h"
|
2002-05-27 16:22:59 +00:00
|
|
|
#include "CXWindowsClipboard.h"
|
2002-07-13 22:00:38 +00:00
|
|
|
#include "CXWindowsScreen.h"
|
2002-06-22 19:20:21 +00:00
|
|
|
#include "CXWindowsScreenSaver.h"
|
2002-05-27 16:22:59 +00:00
|
|
|
#include "CXWindowsUtil.h"
|
2002-07-13 22:00:38 +00:00
|
|
|
#include "IScreenReceiver.h"
|
2002-07-12 20:41:23 +00:00
|
|
|
#include "XScreen.h"
|
2001-10-08 19:24:46 +00:00
|
|
|
#include "CThread.h"
|
2001-10-23 22:41:46 +00:00
|
|
|
#include "CLog.h"
|
2002-06-19 11:23:49 +00:00
|
|
|
#if defined(X_DISPLAY_MISSING)
|
|
|
|
# error X11 is required to build synergy
|
|
|
|
#else
|
|
|
|
# include <X11/X.h>
|
|
|
|
# include <X11/Xutil.h>
|
|
|
|
# define XK_MISCELLANY
|
|
|
|
# define XK_XKB_KEYS
|
|
|
|
# include <X11/keysymdef.h>
|
|
|
|
# if defined(HAVE_X11_EXTENSIONS_XTEST_H)
|
|
|
|
# include <X11/extensions/XTest.h>
|
|
|
|
# else
|
|
|
|
# error The XTest extension is required to build synergy
|
|
|
|
# endif
|
|
|
|
#endif
|
2001-10-08 19:24:46 +00:00
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
//
|
|
|
|
// utility functions
|
|
|
|
//
|
|
|
|
|
|
|
|
inline
|
|
|
|
static
|
|
|
|
unsigned int getBits(unsigned int src, unsigned int mask)
|
|
|
|
{
|
|
|
|
return src & mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
static
|
|
|
|
unsigned int setBits(unsigned int src, unsigned int mask)
|
|
|
|
{
|
|
|
|
return src | mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
static
|
|
|
|
unsigned int clearBits(unsigned int src, unsigned int mask)
|
|
|
|
{
|
|
|
|
return src & ~mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
static
|
|
|
|
unsigned int flipBits(unsigned int src, unsigned int mask)
|
|
|
|
{
|
|
|
|
return src ^ mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
static
|
|
|
|
unsigned int assignBits(unsigned int src,
|
|
|
|
unsigned int mask, unsigned int value)
|
|
|
|
{
|
|
|
|
return setBits(clearBits(src, mask), clearBits(value, ~mask));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-08 19:24:46 +00:00
|
|
|
//
|
|
|
|
// CXWindowsSecondaryScreen
|
|
|
|
//
|
|
|
|
|
2002-07-10 21:22:28 +00:00
|
|
|
CXWindowsSecondaryScreen::CXWindowsSecondaryScreen(IScreenReceiver* receiver) :
|
2002-07-13 22:00:38 +00:00
|
|
|
CSecondaryScreen(),
|
|
|
|
m_window(None)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
m_screen = new CXWindowsScreen(receiver, this);
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CXWindowsSecondaryScreen::~CXWindowsSecondaryScreen()
|
|
|
|
{
|
2001-11-25 18:32:41 +00:00
|
|
|
assert(m_window == None);
|
2002-07-13 22:00:38 +00:00
|
|
|
delete m_screen;
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::keyDown(KeyID key, KeyModifierMask mask)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-04-26 17:38:01 +00:00
|
|
|
Keystrokes keys;
|
|
|
|
KeyCode keycode;
|
|
|
|
|
|
|
|
// get the sequence of keys to simulate key press and the final
|
|
|
|
// modifier state.
|
2002-05-03 11:26:44 +00:00
|
|
|
m_mask = mapKey(keys, keycode, key, mask, kPress);
|
2002-06-10 22:06:45 +00:00
|
|
|
if (keys.empty()) {
|
2002-04-26 17:38:01 +00:00
|
|
|
return;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// generate key events
|
2002-05-03 11:26:44 +00:00
|
|
|
doKeystrokes(keys, 1);
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// note that key is now down
|
|
|
|
m_keys[keycode] = true;
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::keyRepeat(KeyID key,
|
|
|
|
KeyModifierMask mask, SInt32 count)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-05-03 11:26:44 +00:00
|
|
|
Keystrokes keys;
|
|
|
|
KeyCode keycode;
|
|
|
|
|
|
|
|
// get the sequence of keys to simulate key repeat and the final
|
|
|
|
// modifier state.
|
|
|
|
m_mask = mapKey(keys, keycode, key, mask, kRepeat);
|
2002-06-10 22:06:45 +00:00
|
|
|
if (keys.empty()) {
|
2002-05-03 11:26:44 +00:00
|
|
|
return;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-05-03 11:26:44 +00:00
|
|
|
|
|
|
|
// generate key events
|
|
|
|
doKeystrokes(keys, count);
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::keyUp(KeyID key, KeyModifierMask mask)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-04-26 17:38:01 +00:00
|
|
|
Keystrokes keys;
|
|
|
|
KeyCode keycode;
|
|
|
|
|
|
|
|
// get the sequence of keys to simulate key release and the final
|
|
|
|
// modifier state.
|
2002-05-03 11:26:44 +00:00
|
|
|
m_mask = mapKey(keys, keycode, key, mask, kRelease);
|
2002-06-10 22:06:45 +00:00
|
|
|
if (keys.empty()) {
|
2002-04-26 17:38:01 +00:00
|
|
|
return;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// generate key events
|
2002-05-03 11:26:44 +00:00
|
|
|
doKeystrokes(keys, 1);
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// note that key is now up
|
|
|
|
m_keys[keycode] = false;
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mouseDown(ButtonID button)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-08-18 17:31:48 +00:00
|
|
|
const unsigned int xButton = mapButton(button);
|
|
|
|
if (xButton != 0) {
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
XTestFakeButtonEvent(display, xButton, True, CurrentTime);
|
|
|
|
XSync(display, False);
|
|
|
|
}
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mouseUp(ButtonID button)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-08-18 17:31:48 +00:00
|
|
|
const unsigned int xButton = mapButton(button);
|
|
|
|
if (xButton != 0) {
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
XTestFakeButtonEvent(display, xButton, False, CurrentTime);
|
|
|
|
XSync(display, False);
|
|
|
|
}
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mouseMove(SInt32 x, SInt32 y)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-07-12 20:41:23 +00:00
|
|
|
warpCursor(x, y);
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mouseWheel(SInt32 delta)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-05-23 15:50:38 +00:00
|
|
|
// choose button depending on rotation direction
|
2002-08-18 17:31:48 +00:00
|
|
|
const unsigned int xButton = mapButton((delta >= 0) ? 4 : 5);
|
|
|
|
if (xButton == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2002-05-23 15:50:38 +00:00
|
|
|
|
|
|
|
// now use absolute value of delta
|
|
|
|
if (delta < 0) {
|
|
|
|
delta = -delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
// send as many clicks as necessary
|
2002-07-13 22:00:38 +00:00
|
|
|
CDisplayLock display(m_screen);
|
2002-05-23 15:50:38 +00:00
|
|
|
for (; delta >= 120; delta -= 120) {
|
2002-08-18 17:31:48 +00:00
|
|
|
XTestFakeButtonEvent(display, xButton, True, CurrentTime);
|
|
|
|
XTestFakeButtonEvent(display, xButton, False, CurrentTime);
|
2002-05-23 15:50:38 +00:00
|
|
|
}
|
|
|
|
XSync(display, False);
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
|
|
|
|
2002-12-23 13:55:21 +00:00
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::resetOptions()
|
|
|
|
{
|
|
|
|
m_numLockHalfDuplex = false;
|
|
|
|
m_capsLockHalfDuplex = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::setOptions(const COptionsList& options)
|
|
|
|
{
|
|
|
|
for (UInt32 i = 0, n = options.size(); i < n; i += 2) {
|
|
|
|
if (options[i] == kOptionHalfDuplexCapsLock) {
|
|
|
|
m_capsLockHalfDuplex = (options[i + 1] != 0);
|
|
|
|
LOG((CLOG_DEBUG1 "half-duplex caps-lock %s", m_capsLockHalfDuplex ? "on" : "off"));
|
|
|
|
}
|
|
|
|
else if (options[i] == kOptionHalfDuplexNumLock) {
|
|
|
|
m_numLockHalfDuplex = (options[i + 1] != 0);
|
|
|
|
LOG((CLOG_DEBUG1 "half-duplex num-lock %s", m_numLockHalfDuplex ? "on" : "off"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
IScreen*
|
|
|
|
CXWindowsSecondaryScreen::getScreen() const
|
2002-06-22 19:20:21 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
return m_screen;
|
2002-06-22 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-15 15:01:36 +00:00
|
|
|
CXWindowsSecondaryScreen::onScreensaver(bool)
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
// ignore
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
|
|
|
|
2002-07-12 20:41:23 +00:00
|
|
|
bool
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::onPreDispatch(const CEvent*)
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
return false;
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CXWindowsSecondaryScreen::onEvent(CEvent* event)
|
|
|
|
{
|
|
|
|
assert(event != NULL);
|
|
|
|
XEvent& xevent = event->m_event;
|
|
|
|
|
|
|
|
// handle event
|
|
|
|
switch (xevent.type) {
|
|
|
|
case MappingNotify:
|
2002-07-13 22:00:38 +00:00
|
|
|
// keyboard mapping changed
|
|
|
|
updateKeys();
|
2002-07-12 20:41:23 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
case LeaveNotify:
|
2002-07-13 22:00:38 +00:00
|
|
|
// mouse moved out of hider window somehow. hide the window.
|
|
|
|
hideWindow();
|
2002-07-12 20:41:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-22 21:53:25 +00:00
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::onOneShotTimerExpired(UInt32)
|
|
|
|
{
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
SInt32
|
|
|
|
CXWindowsSecondaryScreen::getJumpZoneSize() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-30 15:17:44 +00:00
|
|
|
CXWindowsSecondaryScreen::onPreMainLoop()
|
2002-05-27 16:22:59 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(m_window != None);
|
2001-10-23 22:41:46 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::onPreOpen()
|
2001-11-11 21:15:30 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(m_window == None);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::onPostOpen()
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-12-23 13:55:21 +00:00
|
|
|
assert(m_window != None);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::onPreEnter()
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(m_window != None);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::onPreLeave()
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(m_window != None);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::createWindow()
|
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
{
|
|
|
|
CDisplayLock display(m_screen);
|
2002-07-12 20:41:23 +00:00
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
// verify the availability of the XTest extension
|
|
|
|
int majorOpcode, firstEvent, firstError;
|
|
|
|
if (!XQueryExtension(display, XTestExtensionName,
|
2002-07-12 20:41:23 +00:00
|
|
|
&majorOpcode, &firstEvent, &firstError)) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_ERR "XTEST extension not available"));
|
2002-07-13 22:00:38 +00:00
|
|
|
throw XScreenOpenFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
// cursor hider window attributes. this window is used to hide the
|
|
|
|
// cursor when it's not on the screen. the window is hidden as soon
|
|
|
|
// as the cursor enters the screen or the display's real cursor is
|
|
|
|
// moved.
|
|
|
|
XSetWindowAttributes attr;
|
|
|
|
attr.event_mask = LeaveWindowMask;
|
|
|
|
attr.do_not_propagate_mask = 0;
|
|
|
|
attr.override_redirect = True;
|
|
|
|
attr.cursor = m_screen->getBlankCursor();
|
|
|
|
|
|
|
|
// create the cursor hider window
|
|
|
|
m_window = XCreateWindow(display, m_screen->getRoot(),
|
2002-07-12 20:41:23 +00:00
|
|
|
0, 0, 1, 1, 0, 0,
|
|
|
|
InputOnly, CopyFromParent,
|
|
|
|
CWDontPropagate | CWEventMask |
|
|
|
|
CWOverrideRedirect | CWCursor,
|
|
|
|
&attr);
|
2002-07-13 22:00:38 +00:00
|
|
|
if (m_window == None) {
|
|
|
|
throw XScreenOpenFailure();
|
|
|
|
}
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG "window is 0x%08x", m_window));
|
2002-07-13 22:00:38 +00:00
|
|
|
|
|
|
|
// become impervious to server grabs
|
|
|
|
XTestGrabControl(display, True);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
// tell generic screen about the window
|
2002-07-13 22:00:38 +00:00
|
|
|
m_screen->setWindow(m_window);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::destroyWindow()
|
|
|
|
{
|
2002-07-16 16:52:26 +00:00
|
|
|
{
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
if (display != NULL) {
|
|
|
|
// release keys that are still pressed
|
|
|
|
releaseKeys(display);
|
2002-07-13 22:00:38 +00:00
|
|
|
|
2002-07-16 16:52:26 +00:00
|
|
|
// no longer impervious to server grabs
|
|
|
|
XTestGrabControl(display, False);
|
2002-07-12 20:41:23 +00:00
|
|
|
|
2002-07-16 16:52:26 +00:00
|
|
|
// update
|
|
|
|
XSync(display, False);
|
|
|
|
}
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
|
|
|
// destroy window
|
|
|
|
if (m_window != None) {
|
|
|
|
m_screen->setWindow(None);
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
if (display != NULL) {
|
|
|
|
XDestroyWindow(display, m_window);
|
|
|
|
}
|
|
|
|
m_window = None;
|
|
|
|
}
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::showWindow()
|
|
|
|
{
|
|
|
|
// move hider window under the mouse (rather than moving the mouse
|
|
|
|
// somewhere else on the screen)
|
|
|
|
SInt32 x, y;
|
|
|
|
getCursorPos(x, y);
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
XMoveWindow(display, m_window, x, y);
|
|
|
|
|
|
|
|
// raise and show the hider window. take activation.
|
|
|
|
// FIXME -- take focus?
|
|
|
|
XMapRaised(display, m_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::hideWindow()
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(m_window != None);
|
|
|
|
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
XUnmapWindow(display, m_window);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::warpCursor(SInt32 x, SInt32 y)
|
2002-07-12 20:41:23 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
Display* pDisplay = display;
|
|
|
|
XTestFakeMotionEvent(display, DefaultScreen(pDisplay), x, y, CurrentTime);
|
|
|
|
XSync(display, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CXWindowsSecondaryScreen::setToggleState(KeyModifierMask mask)
|
|
|
|
{
|
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
|
|
|
|
// toggle modifiers that don't match the desired state
|
|
|
|
unsigned int xMask = maskToX(mask);
|
|
|
|
if ((xMask & m_capsLockMask) != (m_mask & m_capsLockMask)) {
|
|
|
|
toggleKey(display, XK_Caps_Lock, m_capsLockMask);
|
|
|
|
}
|
|
|
|
if ((xMask & m_numLockMask) != (m_mask & m_numLockMask)) {
|
|
|
|
toggleKey(display, XK_Num_Lock, m_numLockMask);
|
|
|
|
}
|
|
|
|
if ((xMask & m_scrollLockMask) != (m_mask & m_scrollLockMask)) {
|
|
|
|
toggleKey(display, XK_Scroll_Lock, m_scrollLockMask);
|
|
|
|
}
|
2001-11-11 21:15:30 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 22:14:49 +00:00
|
|
|
KeyModifierMask
|
|
|
|
CXWindowsSecondaryScreen::getToggleState() const
|
|
|
|
{
|
|
|
|
KeyModifierMask mask = 0;
|
|
|
|
if ((m_mask & m_capsLockMask) != 0) {
|
|
|
|
mask |= KeyModifierCapsLock;
|
|
|
|
}
|
|
|
|
if ((m_mask & m_numLockMask) != 0) {
|
|
|
|
mask |= KeyModifierNumLock;
|
|
|
|
}
|
|
|
|
if ((m_mask & m_scrollLockMask) != 0) {
|
|
|
|
mask |= KeyModifierScrollLock;
|
|
|
|
}
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
unsigned int
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mapButton(ButtonID id) const
|
2001-10-08 19:24:46 +00:00
|
|
|
{
|
2002-12-15 22:39:59 +00:00
|
|
|
if (id < 1 || id > m_buttons.size()) {
|
2002-08-18 17:31:48 +00:00
|
|
|
// out of range
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (m_buttons[id - 1] == 0) {
|
|
|
|
// button not mapped
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else {
|
2003-02-12 20:59:25 +00:00
|
|
|
return static_cast<unsigned int>(m_buttons[id - 1]);
|
2002-08-18 17:31:48 +00:00
|
|
|
}
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
KeyModifierMask
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::mapKey(Keystrokes& keys, KeyCode& keycode,
|
|
|
|
KeyID id, KeyModifierMask mask, EKeyAction action) const
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
|
|
|
// note -- must have display locked on entry
|
|
|
|
|
|
|
|
// the system translates key events into characters depending
|
|
|
|
// on the modifier key state at the time of the event. to
|
|
|
|
// generate the right keysym we need to set the modifier key
|
|
|
|
// states appropriately.
|
|
|
|
//
|
|
|
|
// the mask passed by the caller is the desired mask. however,
|
|
|
|
// there may not be a keycode mapping to generate the desired
|
|
|
|
// keysym with that mask. we override the bits in the mask
|
|
|
|
// that cannot be accomodated.
|
|
|
|
|
2002-12-15 19:57:28 +00:00
|
|
|
// note if the key is "half-duplex"
|
2002-07-23 17:04:41 +00:00
|
|
|
const bool isHalfDuplex = ((id == kKeyCapsLock && m_capsLockHalfDuplex) ||
|
|
|
|
(id == kKeyNumLock && m_numLockHalfDuplex));
|
2002-04-30 16:25:29 +00:00
|
|
|
|
2002-05-03 11:26:44 +00:00
|
|
|
// ignore releases and repeats for half-duplex keys
|
|
|
|
if (isHalfDuplex && action != kPress) {
|
2002-04-30 16:25:29 +00:00
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
// convert the id to a keysym and adjust the mask if necessary
|
|
|
|
unsigned int outMask = m_mask;
|
|
|
|
KeyCodeIndex keyIndex = findKey(id, outMask);
|
|
|
|
if (keyIndex == noKey()) {
|
|
|
|
// cannot convert id to keysym
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "no keysym for key"));
|
2002-04-26 17:38:01 +00:00
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
// get the keysym we're trying to generate and possible keycodes
|
|
|
|
KeySym keysym = keyIndex->first;
|
|
|
|
const KeyCodeMask& entry = keyIndex->second;
|
|
|
|
|
|
|
|
// we can choose any of the available keycode/modifier states to
|
|
|
|
// generate our keysym. the most desireable is the one most
|
|
|
|
// closely matching the input mask. determine the order we
|
|
|
|
// should try modifier states, from best match to worst. this
|
|
|
|
// doesn't concern itself with whether or not a given modifier
|
|
|
|
// state has an associated keycode. we'll just skip those later
|
|
|
|
// if necessary.
|
|
|
|
|
|
|
|
// default is none, shift, mode switch, shift + mode switch
|
|
|
|
unsigned int desired = maskToX(mask);
|
|
|
|
unsigned int index[4];
|
|
|
|
index[0] = 0;
|
|
|
|
index[1] = 1;
|
|
|
|
index[2] = 2;
|
|
|
|
index[3] = 3;
|
|
|
|
|
|
|
|
// if mode switch is active then 2 and 3 are better than 0 and 1
|
|
|
|
if (getBits(desired, m_modeSwitchMask) != 0) {
|
|
|
|
index[0] ^= 2;
|
|
|
|
index[1] ^= 2;
|
|
|
|
index[2] ^= 2;
|
|
|
|
index[3] ^= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if shift is active then 1 and 3 are better than 0 and 2. however,
|
|
|
|
// if the key is affected by NumLock and NumLock is active then 1 and
|
|
|
|
// 3 are better if shift is *not* down (because NumLock acts like
|
|
|
|
// shift for those keysyms and shift cancels NumLock). similarly for
|
|
|
|
// keys affected by CapsLock.
|
|
|
|
bool desireShift = (getBits(desired, ShiftMask) != 0);
|
|
|
|
bool invertShift = false;
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "desire shift: %s", desireShift ? "yes" : "no"));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (adjustForNumLock(keysym)) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "num lock sensitive"));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (m_numLockMask != 0) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "we have num lock"));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(desired, m_numLockMask) != 0) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "num lock desired, invert shift"));
|
2002-09-14 12:07:02 +00:00
|
|
|
invertShift = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (adjustForCapsLock(keysym)) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "caps lock sensitive"));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (m_capsLockMask != 0) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "we have caps lock"));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(desired, m_capsLockMask) != 0) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "caps lock desired, invert shift"));
|
2002-09-14 12:07:02 +00:00
|
|
|
invertShift = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (desireShift != invertShift) {
|
|
|
|
index[0] ^= 1;
|
|
|
|
index[1] ^= 1;
|
|
|
|
index[2] ^= 1;
|
|
|
|
index[3] ^= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the first modifier state with a keycode we can generate.
|
|
|
|
// note that if m_modeSwitchMask is 0 then we can't generate
|
|
|
|
// m_keycode[2] and m_keycode[3].
|
|
|
|
unsigned int bestIndex;
|
|
|
|
for (bestIndex = 0; bestIndex < 4; ++bestIndex) {
|
|
|
|
if (entry.m_keycode[index[bestIndex]] != 0) {
|
|
|
|
if (index[bestIndex] < 2 || m_modeSwitchMask != 0) {
|
|
|
|
bestIndex = index[bestIndex];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (bestIndex == 4) {
|
|
|
|
// no keycode/modifiers to generate the keysym
|
2002-04-26 17:38:01 +00:00
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
// get the keycode
|
|
|
|
keycode = entry.m_keycode[bestIndex];
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "bestIndex = %d, keycode = %d", bestIndex, keycode));
|
2002-09-14 12:07:02 +00:00
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// note if the key is a modifier
|
2002-09-14 12:07:02 +00:00
|
|
|
ModifierMap::const_iterator modIndex = m_keycodeToModifier.find(keycode);
|
|
|
|
unsigned int modifierBit = 0;
|
|
|
|
if (modIndex != m_keycodeToModifier.end()) {
|
|
|
|
modifierBit = (1 << modIndex->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the key is a modifier and that modifier is already in the
|
|
|
|
// desired state then ignore the request since there's nothing
|
|
|
|
// to do. never ignore a toggle modifier on press or release,
|
|
|
|
// though.
|
|
|
|
if (modifierBit != 0) {
|
|
|
|
if (action == kRepeat) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "ignore repeating modifier"));
|
2002-09-14 12:07:02 +00:00
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
if (getBits(m_toggleModifierMask, modifierBit) == 0) {
|
|
|
|
if ((action == kPress && (m_mask & modifierBit) != 0) ||
|
|
|
|
(action == kRelease && (m_mask & modifierBit) == 0)) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "modifier in proper state: 0x%04x", m_mask));
|
2002-09-14 12:07:02 +00:00
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// bestIndex tells us if shift and mode switch should be on or off,
|
|
|
|
// except if caps lock or num lock was down then we invert the sense
|
|
|
|
// of bestIndex's lowest bit.
|
|
|
|
// we must match both.
|
|
|
|
unsigned int required = ShiftMask | m_modeSwitchMask;
|
|
|
|
if (((bestIndex & 1) == 0) != invertShift) {
|
|
|
|
desired = clearBits(desired, ShiftMask);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
desired = setBits(desired, ShiftMask);
|
|
|
|
}
|
|
|
|
if ((bestIndex & 2) == 0) {
|
|
|
|
desired = clearBits(desired, m_modeSwitchMask);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
desired = setBits(desired, m_modeSwitchMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the key is a modifier then remove it from the desired mask.
|
|
|
|
// we'll be matching the modifiers in the desired mask then adding
|
|
|
|
// a key press or release for the keysym. if we don't clear the
|
|
|
|
// modifier bit from the desired mask we'll end up dealing with
|
|
|
|
// that key twice, once while matching modifiers and once while
|
|
|
|
// handling the keysym.
|
|
|
|
//
|
|
|
|
// note that instead of clearing the bit, we make it identical to
|
|
|
|
// the same bit in m_mask, meaning it's already in the right state.
|
|
|
|
desired = assignBits(desired, modifierBit, m_mask);
|
|
|
|
required = clearBits(required, modifierBit);
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "desired = 0x%04x, current = 0x%04x", desired, m_mask));
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2003-01-18 14:31:54 +00:00
|
|
|
// some modifiers never have an effect on keysym lookup. leave
|
|
|
|
// those modifiers alone by copying their state from m_mask to
|
|
|
|
// desired.
|
|
|
|
desired = assignBits(desired,
|
|
|
|
ControlMask |
|
|
|
|
m_altMask |
|
|
|
|
m_metaMask |
|
|
|
|
m_superMask |
|
|
|
|
m_scrollLockMask, m_mask);
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// add the key events required to get to the modifier state
|
|
|
|
// necessary to generate an event yielding id. also save the
|
|
|
|
// key events required to restore the state. if the key is
|
|
|
|
// a modifier key then skip this because modifiers should not
|
|
|
|
// modify modifiers.
|
|
|
|
Keystrokes undo;
|
2002-05-03 11:26:44 +00:00
|
|
|
Keystroke keystroke;
|
2002-09-14 12:07:02 +00:00
|
|
|
if (desired != m_mask) {
|
2002-04-26 17:38:01 +00:00
|
|
|
for (unsigned int i = 0; i < 8; ++i) {
|
|
|
|
unsigned int bit = (1 << i);
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(desired, bit) != getBits(m_mask, bit)) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "fix modifier %d", i));
|
2002-09-14 12:07:02 +00:00
|
|
|
// get the keycode we're using for this modifier. if
|
|
|
|
// there isn't one then bail if the modifier is required
|
|
|
|
// or ignore it if not required.
|
|
|
|
KeyCode modifierKey = m_modifierToKeycode[i];
|
2002-06-02 19:04:24 +00:00
|
|
|
if (modifierKey == 0) {
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "no key mapped to modifier 0x%04x", bit));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(required, bit) != 0) {
|
|
|
|
keys.clear();
|
|
|
|
return m_mask;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
2002-06-02 19:04:24 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-06-22 12:09:49 +00:00
|
|
|
keystroke.m_keycode = modifierKey;
|
|
|
|
keystroke.m_repeat = false;
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(desired, bit)) {
|
2002-04-26 17:38:01 +00:00
|
|
|
// modifier is not active but should be. if the
|
|
|
|
// modifier is a toggle then toggle it on with a
|
|
|
|
// press/release, otherwise activate it with a
|
|
|
|
// press. use the first keycode for the modifier.
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "modifier 0x%04x is not active", bit));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(m_toggleModifierMask, bit) != 0) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "modifier 0x%04x is a toggle", bit));
|
2002-05-04 18:31:54 +00:00
|
|
|
if ((bit == m_capsLockMask && m_capsLockHalfDuplex) ||
|
|
|
|
(bit == m_numLockMask && m_numLockHalfDuplex)) {
|
2002-06-22 12:09:49 +00:00
|
|
|
keystroke.m_press = True;
|
|
|
|
keys.push_back(keystroke);
|
2002-05-03 11:26:44 +00:00
|
|
|
keystroke.m_press = False;
|
|
|
|
undo.push_back(keystroke);
|
2002-04-30 17:48:11 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-06-22 12:09:49 +00:00
|
|
|
keystroke.m_press = True;
|
|
|
|
keys.push_back(keystroke);
|
2002-05-03 11:26:44 +00:00
|
|
|
keystroke.m_press = False;
|
2002-05-04 18:31:54 +00:00
|
|
|
keys.push_back(keystroke);
|
|
|
|
undo.push_back(keystroke);
|
|
|
|
keystroke.m_press = True;
|
2002-05-03 11:26:44 +00:00
|
|
|
undo.push_back(keystroke);
|
2002-04-30 17:48:11 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-06-22 12:09:49 +00:00
|
|
|
keystroke.m_press = True;
|
|
|
|
keys.push_back(keystroke);
|
2002-05-03 11:26:44 +00:00
|
|
|
keystroke.m_press = False;
|
|
|
|
undo.push_back(keystroke);
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-22 12:09:49 +00:00
|
|
|
else {
|
2002-04-26 17:38:01 +00:00
|
|
|
// modifier is active but should not be. if the
|
|
|
|
// modifier is a toggle then toggle it off with a
|
|
|
|
// press/release, otherwise deactivate it with a
|
|
|
|
// release. we must check each keycode for the
|
|
|
|
// modifier if not a toggle.
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "modifier 0x%04x is active", bit));
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(m_toggleModifierMask, bit) != 0) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "modifier 0x%04x is a toggle", bit));
|
2002-06-22 12:09:49 +00:00
|
|
|
if ((bit == m_capsLockMask && m_capsLockHalfDuplex) ||
|
|
|
|
(bit == m_numLockMask && m_numLockHalfDuplex)) {
|
|
|
|
keystroke.m_press = False;
|
|
|
|
keys.push_back(keystroke);
|
|
|
|
keystroke.m_press = True;
|
|
|
|
undo.push_back(keystroke);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
keystroke.m_press = True;
|
|
|
|
keys.push_back(keystroke);
|
|
|
|
keystroke.m_press = False;
|
|
|
|
keys.push_back(keystroke);
|
|
|
|
undo.push_back(keystroke);
|
|
|
|
keystroke.m_press = True;
|
|
|
|
undo.push_back(keystroke);
|
2002-04-30 17:48:11 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (unsigned int j = 0; j < m_keysPerModifier; ++j) {
|
2002-09-14 12:07:02 +00:00
|
|
|
const KeyCode key =
|
|
|
|
m_modifierToKeycodes[i * m_keysPerModifier + j];
|
2002-05-05 19:52:03 +00:00
|
|
|
if (key != 0 && m_keys[key]) {
|
2002-05-03 11:26:44 +00:00
|
|
|
keystroke.m_keycode = key;
|
|
|
|
keystroke.m_press = False;
|
|
|
|
keys.push_back(keystroke);
|
|
|
|
keystroke.m_press = True;
|
|
|
|
undo.push_back(keystroke);
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-30 16:25:29 +00:00
|
|
|
// note if the press of a half-duplex key should be treated as a release
|
2002-09-14 12:07:02 +00:00
|
|
|
if (isHalfDuplex && getBits(m_mask, modifierBit) != 0) {
|
2002-05-03 11:26:44 +00:00
|
|
|
action = kRelease;
|
2002-04-30 16:25:29 +00:00
|
|
|
}
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// add the key event
|
2002-05-03 11:26:44 +00:00
|
|
|
keystroke.m_keycode = keycode;
|
|
|
|
switch (action) {
|
|
|
|
case kPress:
|
|
|
|
keystroke.m_press = True;
|
2002-05-05 19:52:03 +00:00
|
|
|
keystroke.m_repeat = false;
|
2002-05-03 11:26:44 +00:00
|
|
|
keys.push_back(keystroke);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kRelease:
|
|
|
|
keystroke.m_press = False;
|
2002-05-05 19:52:03 +00:00
|
|
|
keystroke.m_repeat = false;
|
2002-05-03 11:26:44 +00:00
|
|
|
keys.push_back(keystroke);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kRepeat:
|
|
|
|
keystroke.m_press = False;
|
2002-05-05 19:52:03 +00:00
|
|
|
keystroke.m_repeat = true;
|
2002-05-03 11:26:44 +00:00
|
|
|
keys.push_back(keystroke);
|
|
|
|
keystroke.m_press = True;
|
|
|
|
keys.push_back(keystroke);
|
|
|
|
break;
|
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// add key events to restore the modifier state. apply events in
|
|
|
|
// the reverse order that they're stored in undo.
|
|
|
|
while (!undo.empty()) {
|
|
|
|
keys.push_back(undo.back());
|
|
|
|
undo.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the key is a modifier key then compute the modifier map after
|
2002-09-14 12:07:02 +00:00
|
|
|
// this key is pressed or released.
|
2002-04-26 17:38:01 +00:00
|
|
|
mask = m_mask;
|
2002-09-14 12:07:02 +00:00
|
|
|
if (modifierBit != 0) {
|
|
|
|
// can't be repeating if we've gotten here
|
|
|
|
assert(action != kRepeat);
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-05-04 18:09:02 +00:00
|
|
|
// toggle keys modify the state on release. other keys set the
|
|
|
|
// bit on press and clear the bit on release. if half-duplex
|
|
|
|
// then toggle each time we get here.
|
2002-09-14 12:07:02 +00:00
|
|
|
if (getBits(m_toggleModifierMask, modifierBit) != 0) {
|
2002-05-04 18:31:54 +00:00
|
|
|
if (isHalfDuplex || action == kRelease) {
|
2002-09-14 12:07:02 +00:00
|
|
|
mask = flipBits(mask, modifierBit);
|
2002-05-04 18:09:02 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
2002-05-03 11:26:44 +00:00
|
|
|
else if (action == kPress) {
|
2002-09-14 12:07:02 +00:00
|
|
|
mask = setBits(mask, modifierBit);
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
else if (action == kRelease) {
|
2002-04-26 17:38:01 +00:00
|
|
|
// can't reset bit until all keys that set it are released.
|
|
|
|
// scan those keys to see if any (except keycode) are pressed.
|
|
|
|
bool down = false;
|
|
|
|
for (unsigned int j = 0; !down && j < m_keysPerModifier; ++j) {
|
2002-09-14 12:07:02 +00:00
|
|
|
KeyCode modKeycode = m_modifierToKeycodes[modIndex->second *
|
|
|
|
m_keysPerModifier + j];
|
|
|
|
if (modKeycode != 0 && modKeycode != keycode) {
|
|
|
|
down = m_keys[modKeycode];
|
|
|
|
}
|
2002-05-04 19:43:20 +00:00
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
if (!down) {
|
|
|
|
mask = clearBits(mask, modifierBit);
|
2002-05-04 11:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 19:57:28 +00:00
|
|
|
LOG((CLOG_DEBUG2 "final mask: 0x%04x", mask));
|
2002-09-14 12:07:02 +00:00
|
|
|
return mask;
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::doKeystrokes(const Keystrokes& keys, SInt32 count)
|
2002-05-03 11:26:44 +00:00
|
|
|
{
|
|
|
|
// do nothing if no keys or no repeats
|
2002-06-10 22:06:45 +00:00
|
|
|
if (count < 1 || keys.empty()) {
|
2002-05-03 11:26:44 +00:00
|
|
|
return;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-05-03 11:26:44 +00:00
|
|
|
|
|
|
|
// lock display
|
2002-07-13 22:00:38 +00:00
|
|
|
CDisplayLock display(m_screen);
|
2002-05-03 11:26:44 +00:00
|
|
|
|
|
|
|
// generate key events
|
|
|
|
for (Keystrokes::const_iterator k = keys.begin(); k != keys.end(); ) {
|
|
|
|
if (k->m_repeat) {
|
|
|
|
// repeat from here up to but not including the next key
|
|
|
|
// with m_repeat == false count times.
|
|
|
|
Keystrokes::const_iterator start = k;
|
|
|
|
for (; count > 0; --count) {
|
|
|
|
// send repeating events
|
|
|
|
for (k = start; k != keys.end() && k->m_repeat; ++k) {
|
|
|
|
XTestFakeKeyEvent(display,
|
2002-05-03 11:49:30 +00:00
|
|
|
k->m_keycode, k->m_press, CurrentTime);
|
2002-05-03 11:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// note -- k is now on the first non-repeat key after the
|
|
|
|
// repeat keys, exactly where we'd like to continue from.
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// send event
|
|
|
|
XTestFakeKeyEvent(display, k->m_keycode, k->m_press, CurrentTime);
|
|
|
|
|
|
|
|
// next key
|
|
|
|
++k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update
|
|
|
|
XSync(display, False);
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
unsigned int
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::maskToX(KeyModifierMask inMask) const
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
|
|
|
unsigned int outMask = 0;
|
2002-06-10 22:06:45 +00:00
|
|
|
if (inMask & KeyModifierShift) {
|
2002-04-26 17:38:01 +00:00
|
|
|
outMask |= ShiftMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierControl) {
|
2002-04-26 17:38:01 +00:00
|
|
|
outMask |= ControlMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierAlt) {
|
2002-09-01 15:30:00 +00:00
|
|
|
outMask |= m_altMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierMeta) {
|
2002-09-01 15:30:00 +00:00
|
|
|
outMask |= m_metaMask;
|
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
if (inMask & KeyModifierSuper) {
|
|
|
|
outMask |= m_superMask;
|
|
|
|
}
|
2002-09-01 15:30:00 +00:00
|
|
|
if (inMask & KeyModifierModeSwitch) {
|
|
|
|
outMask |= m_modeSwitchMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierCapsLock) {
|
2002-04-30 17:48:11 +00:00
|
|
|
outMask |= m_capsLockMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierNumLock) {
|
2002-04-30 17:48:11 +00:00
|
|
|
outMask |= m_numLockMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
if (inMask & KeyModifierScrollLock) {
|
2002-04-30 17:48:11 +00:00
|
|
|
outMask |= m_scrollLockMask;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
return outMask;
|
|
|
|
}
|
|
|
|
|
2002-07-01 13:03:16 +00:00
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::releaseKeys(Display* display)
|
2002-07-01 13:03:16 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
assert(display != NULL);
|
2002-07-01 13:03:16 +00:00
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
// key up for each key that's down
|
|
|
|
for (UInt32 i = 0; i < 256; ++i) {
|
|
|
|
if (m_keys[i]) {
|
|
|
|
XTestFakeKeyEvent(display, i, False, CurrentTime);
|
|
|
|
m_keys[i] = false;
|
2002-07-01 13:03:16 +00:00
|
|
|
}
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
2002-07-01 13:03:16 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CXWindowsSecondaryScreen::updateKeys()
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
CDisplayLock display(m_screen);
|
|
|
|
|
2002-12-15 22:39:59 +00:00
|
|
|
// query the button mapping
|
|
|
|
UInt32 numButtons = XGetPointerMapping(display, NULL, 0);
|
|
|
|
unsigned char* tmpButtons = new unsigned char[numButtons];
|
|
|
|
XGetPointerMapping(display, tmpButtons, numButtons);
|
|
|
|
|
|
|
|
// find the largest logical button id
|
|
|
|
unsigned char maxButton = 0;
|
|
|
|
for (UInt32 i = 0; i < numButtons; ++i) {
|
|
|
|
if (tmpButtons[i] > maxButton) {
|
|
|
|
maxButton = tmpButtons[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocate button array
|
|
|
|
m_buttons.resize(maxButton);
|
|
|
|
|
|
|
|
// fill in button array values. m_buttons[i] is the physical
|
|
|
|
// button number for logical button i+1.
|
|
|
|
for (UInt32 i = 0; i < numButtons; ++i) {
|
2002-08-18 17:31:48 +00:00
|
|
|
m_buttons[i] = 0;
|
|
|
|
}
|
|
|
|
for (UInt32 i = 0; i < numButtons; ++i) {
|
|
|
|
m_buttons[tmpButtons[i] - 1] = i + 1;
|
|
|
|
}
|
|
|
|
|
2002-12-15 22:39:59 +00:00
|
|
|
// clean up
|
|
|
|
delete[] tmpButtons;
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// ask server which keys are pressed
|
|
|
|
char keys[32];
|
|
|
|
XQueryKeymap(display, keys);
|
|
|
|
|
|
|
|
// transfer to our state
|
2002-07-01 13:03:16 +00:00
|
|
|
for (UInt32 i = 0, j = 0; i < 32; j += 8, ++i) {
|
2002-04-26 17:38:01 +00:00
|
|
|
m_keys[j + 0] = ((keys[i] & 0x01) != 0);
|
|
|
|
m_keys[j + 1] = ((keys[i] & 0x02) != 0);
|
|
|
|
m_keys[j + 2] = ((keys[i] & 0x04) != 0);
|
|
|
|
m_keys[j + 3] = ((keys[i] & 0x08) != 0);
|
|
|
|
m_keys[j + 4] = ((keys[i] & 0x10) != 0);
|
|
|
|
m_keys[j + 5] = ((keys[i] & 0x20) != 0);
|
|
|
|
m_keys[j + 6] = ((keys[i] & 0x40) != 0);
|
|
|
|
m_keys[j + 7] = ((keys[i] & 0x80) != 0);
|
|
|
|
}
|
2002-07-13 22:00:38 +00:00
|
|
|
|
|
|
|
// update mappings and current modifiers
|
|
|
|
updateModifierMap(display);
|
2002-09-01 15:30:00 +00:00
|
|
|
updateKeycodeMap(display);
|
2002-07-13 22:00:38 +00:00
|
|
|
updateModifiers(display);
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::updateModifiers(Display* display)
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
2002-05-27 18:28:06 +00:00
|
|
|
// query the pointer to get the keyboard state
|
|
|
|
Window root, window;
|
|
|
|
int xRoot, yRoot, xWindow, yWindow;
|
|
|
|
unsigned int state;
|
|
|
|
if (!XQueryPointer(display, m_window, &root, &window,
|
|
|
|
&xRoot, &yRoot, &xWindow, &yWindow, &state)) {
|
|
|
|
state = 0;
|
|
|
|
}
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// update active modifier mask
|
|
|
|
m_mask = 0;
|
|
|
|
for (unsigned int i = 0; i < 8; ++i) {
|
|
|
|
const unsigned int bit = (1 << i);
|
|
|
|
if ((bit & m_toggleModifierMask) == 0) {
|
|
|
|
for (unsigned int j = 0; j < m_keysPerModifier; ++j) {
|
2002-09-14 12:07:02 +00:00
|
|
|
if (m_keys[m_modifierToKeycodes[i * m_keysPerModifier + j]])
|
2002-04-26 17:38:01 +00:00
|
|
|
m_mask |= bit;
|
|
|
|
}
|
|
|
|
}
|
2002-05-27 18:28:06 +00:00
|
|
|
else if ((bit & state) != 0) {
|
|
|
|
// toggle is on
|
|
|
|
m_mask |= bit;
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::updateKeycodeMap(Display* display)
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
2002-09-01 15:30:00 +00:00
|
|
|
// there are up to 4 keysyms per keycode
|
2002-09-14 12:07:02 +00:00
|
|
|
static const unsigned int maxKeysyms = 4;
|
|
|
|
|
|
|
|
// table for counting 1 bits
|
|
|
|
static const int s_numBits[maxKeysyms] = { 0, 1, 1, 2 };
|
2002-09-01 15:30:00 +00:00
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// get the number of keycodes
|
|
|
|
int minKeycode, maxKeycode;
|
|
|
|
XDisplayKeycodes(display, &minKeycode, &maxKeycode);
|
|
|
|
const int numKeycodes = maxKeycode - minKeycode + 1;
|
|
|
|
|
|
|
|
// get the keyboard mapping for all keys
|
|
|
|
int keysymsPerKeycode;
|
|
|
|
KeySym* keysyms = XGetKeyboardMapping(display,
|
|
|
|
minKeycode, numKeycodes,
|
|
|
|
&keysymsPerKeycode);
|
|
|
|
|
2002-09-04 20:17:54 +00:00
|
|
|
// we only understand up to maxKeysyms keysyms per keycodes
|
2002-09-14 12:07:02 +00:00
|
|
|
unsigned int numKeysyms = keysymsPerKeycode;
|
2002-09-04 20:17:54 +00:00
|
|
|
if (numKeysyms > maxKeysyms) {
|
|
|
|
numKeysyms = maxKeysyms;
|
|
|
|
}
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// initialize
|
|
|
|
m_keycodeMap.clear();
|
|
|
|
|
|
|
|
// insert keys
|
|
|
|
for (int i = 0; i < numKeycodes; ++i) {
|
2002-09-14 12:07:02 +00:00
|
|
|
// compute mask over all mapped keysyms. if a keycode has, say,
|
|
|
|
// no shifted keysym then we can ignore the shift state when
|
|
|
|
// synthesizing an event to generate it.
|
|
|
|
unsigned int globalMask = 0;
|
|
|
|
for (unsigned int j = 0; j < numKeysyms; ++j) {
|
|
|
|
const KeySym keysym = keysyms[i * keysymsPerKeycode + j];
|
|
|
|
if (keysym != NoSymbol) {
|
|
|
|
globalMask |= j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// map each keysym to it's keycode/modifier mask
|
|
|
|
for (unsigned int j = 0; j < numKeysyms; ++j) {
|
|
|
|
// get keysym
|
|
|
|
KeySym keysym = keysyms[i * keysymsPerKeycode + j];
|
|
|
|
|
|
|
|
// get modifier mask required for this keysym. note that
|
|
|
|
// a keysym of NoSymbol means that a keysym using fewer
|
|
|
|
// modifiers would be generated using these modifiers.
|
|
|
|
// for example, given
|
|
|
|
// keycode 86 = KP_Add
|
|
|
|
// then we'll generate KP_Add regardless of the modifiers.
|
|
|
|
// we add an entry for that keysym for these modifiers.
|
|
|
|
unsigned int index = j;
|
|
|
|
if (keysym == NoSymbol && (index == 1 || index == 3)) {
|
|
|
|
// shift doesn't matter
|
|
|
|
index = index - 1;
|
|
|
|
keysym = keysyms[i * keysymsPerKeycode + index];
|
|
|
|
}
|
|
|
|
if (keysym == NoSymbol && index == 2) {
|
|
|
|
// mode switch doesn't matter
|
|
|
|
index = 0;
|
|
|
|
keysym = keysyms[i * keysymsPerKeycode + index];
|
|
|
|
}
|
|
|
|
if (keysym == NoSymbol && index == 0) {
|
|
|
|
// no symbols at all for this keycode
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// look it up, creating a new entry if necessary
|
|
|
|
KeyCodeMask& entry = m_keycodeMap[keysym];
|
|
|
|
|
|
|
|
// save keycode for keysym and modifiers
|
|
|
|
entry.m_keycode[j] = static_cast<KeyCode>(minKeycode + i);
|
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
XFree(keysyms);
|
|
|
|
}
|
|
|
|
|
2002-09-01 15:30:00 +00:00
|
|
|
unsigned int
|
|
|
|
CXWindowsSecondaryScreen::indexToModifierMask(int index) const
|
|
|
|
{
|
|
|
|
assert(index >= 0 && index <= 3);
|
|
|
|
|
|
|
|
switch (index) {
|
|
|
|
case 0:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return ShiftMask | LockMask;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
return m_modeSwitchMask;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
return ShiftMask | LockMask | m_modeSwitchMask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::updateModifierMap(Display* display)
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
|
|
|
// get modifier map from server
|
|
|
|
XModifierKeymap* keymap = XGetModifierMapping(display);
|
|
|
|
|
|
|
|
// initialize
|
|
|
|
m_modifierMask = 0;
|
|
|
|
m_toggleModifierMask = 0;
|
2002-09-01 15:30:00 +00:00
|
|
|
m_altMask = 0;
|
|
|
|
m_metaMask = 0;
|
2002-09-14 12:07:02 +00:00
|
|
|
m_superMask = 0;
|
2002-09-01 15:30:00 +00:00
|
|
|
m_modeSwitchMask = 0;
|
2002-04-26 17:38:01 +00:00
|
|
|
m_numLockMask = 0;
|
|
|
|
m_capsLockMask = 0;
|
2002-04-30 17:48:11 +00:00
|
|
|
m_scrollLockMask = 0;
|
2002-04-26 17:38:01 +00:00
|
|
|
m_keysPerModifier = keymap->max_keypermod;
|
|
|
|
m_modifierToKeycode.clear();
|
2002-09-14 12:07:02 +00:00
|
|
|
m_modifierToKeycode.resize(8);
|
|
|
|
m_modifierToKeycodes.clear();
|
|
|
|
m_modifierToKeycodes.resize(8 * m_keysPerModifier);
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// set keycodes and masks
|
|
|
|
for (unsigned int i = 0; i < 8; ++i) {
|
|
|
|
const unsigned int bit = (1 << i);
|
|
|
|
for (unsigned int j = 0; j < m_keysPerModifier; ++j) {
|
|
|
|
KeyCode keycode = keymap->modifiermap[i * m_keysPerModifier + j];
|
|
|
|
|
|
|
|
// save in modifier to keycode
|
2002-09-14 12:07:02 +00:00
|
|
|
m_modifierToKeycodes[i * m_keysPerModifier + j] = keycode;
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-09-01 15:30:00 +00:00
|
|
|
// no further interest in unmapped modifier
|
|
|
|
if (keycode == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
// save keycode for modifier if we don't have one yet
|
|
|
|
if (m_modifierToKeycode[i] == 0) {
|
|
|
|
m_modifierToKeycode[i] = keycode;
|
|
|
|
}
|
|
|
|
|
2002-04-26 17:38:01 +00:00
|
|
|
// save in keycode to modifier
|
|
|
|
m_keycodeToModifier.insert(std::make_pair(keycode, i));
|
|
|
|
|
2002-09-01 15:30:00 +00:00
|
|
|
// save bit in all-modifiers mask
|
|
|
|
m_modifierMask |= bit;
|
2002-04-26 17:38:01 +00:00
|
|
|
|
|
|
|
// modifier is a toggle if the keysym is a toggle modifier
|
|
|
|
const KeySym keysym = XKeycodeToKeysym(display, keycode, 0);
|
|
|
|
if (isToggleKeysym(keysym)) {
|
|
|
|
m_toggleModifierMask |= bit;
|
2002-09-01 15:30:00 +00:00
|
|
|
}
|
2002-04-26 17:38:01 +00:00
|
|
|
|
2002-09-01 15:30:00 +00:00
|
|
|
// note mask for particular modifiers
|
|
|
|
switch (keysym) {
|
|
|
|
case XK_Alt_L:
|
|
|
|
case XK_Alt_R:
|
|
|
|
m_altMask |= bit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_Meta_L:
|
|
|
|
case XK_Meta_R:
|
|
|
|
m_metaMask |= bit;
|
|
|
|
break;
|
|
|
|
|
2002-09-14 12:07:02 +00:00
|
|
|
case XK_Super_L:
|
|
|
|
case XK_Super_R:
|
|
|
|
m_superMask |= bit;
|
|
|
|
break;
|
|
|
|
|
2002-09-01 15:30:00 +00:00
|
|
|
case XK_Mode_switch:
|
|
|
|
m_modeSwitchMask |= bit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_Num_Lock:
|
|
|
|
m_numLockMask |= bit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_Caps_Lock:
|
|
|
|
m_capsLockMask |= bit;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_Scroll_Lock:
|
|
|
|
m_scrollLockMask |= bit;
|
2002-04-26 17:38:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XFreeModifiermap(keymap);
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::toggleKey(Display* display,
|
|
|
|
KeySym keysym, unsigned int mask)
|
2002-04-30 17:48:11 +00:00
|
|
|
{
|
|
|
|
// lookup the keycode
|
|
|
|
KeyCodeMap::const_iterator index = m_keycodeMap.find(keysym);
|
2002-06-10 22:06:45 +00:00
|
|
|
if (index == m_keycodeMap.end()) {
|
2002-04-30 17:48:11 +00:00
|
|
|
return;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
// FIXME -- which keycode?
|
|
|
|
KeyCode keycode = index->second.m_keycode[0];
|
2002-04-30 17:48:11 +00:00
|
|
|
|
|
|
|
// toggle the key
|
2002-05-04 18:31:54 +00:00
|
|
|
if ((keysym == XK_Caps_Lock && m_capsLockHalfDuplex) ||
|
|
|
|
(keysym == XK_Num_Lock && m_numLockHalfDuplex)) {
|
2002-04-30 17:48:11 +00:00
|
|
|
// "half-duplex" toggle
|
|
|
|
XTestFakeKeyEvent(display, keycode, (m_mask & mask) == 0, CurrentTime);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// normal toggle
|
|
|
|
XTestFakeKeyEvent(display, keycode, True, CurrentTime);
|
|
|
|
XTestFakeKeyEvent(display, keycode, False, CurrentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
// toggle shadow state
|
|
|
|
m_mask ^= mask;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
bool
|
2002-06-17 13:31:21 +00:00
|
|
|
CXWindowsSecondaryScreen::isToggleKeysym(KeySym key)
|
2002-04-26 17:38:01 +00:00
|
|
|
{
|
|
|
|
switch (key) {
|
|
|
|
case XK_Caps_Lock:
|
|
|
|
case XK_Shift_Lock:
|
|
|
|
case XK_Num_Lock:
|
|
|
|
case XK_Scroll_Lock:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
|
|
|
|
CXWindowsSecondaryScreen::KeyCodeIndex
|
|
|
|
CXWindowsSecondaryScreen::findKey(KeyID id, KeyModifierMask& mask) const
|
|
|
|
{
|
|
|
|
// convert id to keysym
|
|
|
|
KeySym keysym = NoSymbol;
|
|
|
|
switch (id & 0xffffff00) {
|
|
|
|
case 0x0000:
|
|
|
|
// Latin-1
|
|
|
|
keysym = static_cast<KeySym>(id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xee00:
|
|
|
|
// ISO 9995 Function and Modifier Keys
|
|
|
|
if (id == kKeyLeftTab) {
|
|
|
|
keysym = XK_ISO_Left_Tab;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xef00:
|
|
|
|
// MISCELLANY
|
|
|
|
keysym = static_cast<KeySym>(id - 0xef00 + 0xff00);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fail if unknown key
|
|
|
|
if (keysym == NoSymbol) {
|
|
|
|
return m_keycodeMap.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
// if kKeyTab is requested with shift active then try XK_ISO_Left_Tab
|
|
|
|
// instead. if that doesn't work, we'll fall back to XK_Tab with
|
|
|
|
// shift active. this is to handle primary screens that don't map
|
|
|
|
// XK_ISO_Left_Tab sending events to secondary screens that do.
|
|
|
|
if (keysym == XK_Tab && (mask & ShiftMask) != 0) {
|
|
|
|
keysym = XK_ISO_Left_Tab;
|
|
|
|
mask &= ~ShiftMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the keycodes that generate the keysym
|
|
|
|
KeyCodeIndex index = m_keycodeMap.find(keysym);
|
2003-01-29 22:16:40 +00:00
|
|
|
if (index == noKey()) {
|
|
|
|
// try upper/lower case (as some keymaps only include the
|
|
|
|
// upper case, notably Sun Solaris).
|
|
|
|
KeySym lower, upper;
|
|
|
|
XConvertCase(keysym, &lower, &upper);
|
|
|
|
if (lower != keysym)
|
|
|
|
index = m_keycodeMap.find(lower);
|
|
|
|
else if (upper != keysym)
|
|
|
|
index = m_keycodeMap.find(upper);
|
2003-01-29 19:32:25 +00:00
|
|
|
}
|
2002-09-14 12:07:02 +00:00
|
|
|
if (index == noKey()) {
|
|
|
|
// try backup keysym for certain keys (particularly the numpad
|
|
|
|
// keys since most laptops don't have a separate numpad and the
|
|
|
|
// numpad overlaying the main keyboard may not have movement
|
|
|
|
// key bindings).
|
|
|
|
switch (keysym) {
|
|
|
|
case XK_KP_Home:
|
|
|
|
keysym = XK_Home;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Left:
|
|
|
|
keysym = XK_Left;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Up:
|
|
|
|
keysym = XK_Up;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Right:
|
|
|
|
keysym = XK_Right;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Down:
|
|
|
|
keysym = XK_Down;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Prior:
|
|
|
|
keysym = XK_Prior;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Next:
|
|
|
|
keysym = XK_Next;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_End:
|
|
|
|
keysym = XK_End;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Insert:
|
|
|
|
keysym = XK_Insert;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_KP_Delete:
|
|
|
|
keysym = XK_Delete;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XK_ISO_Left_Tab:
|
|
|
|
keysym = XK_Tab;
|
|
|
|
mask |= ShiftMask;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = m_keycodeMap.find(keysym);
|
|
|
|
}
|
|
|
|
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXWindowsSecondaryScreen::KeyCodeIndex
|
|
|
|
CXWindowsSecondaryScreen::noKey() const
|
|
|
|
{
|
|
|
|
return m_keycodeMap.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CXWindowsSecondaryScreen::adjustForNumLock(KeySym keysym) const
|
|
|
|
{
|
|
|
|
if (IsKeypadKey(keysym) || IsPrivateKeypadKey(keysym)) {
|
|
|
|
// it's NumLock sensitive
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "keypad key: NumLock %s", ((m_mask & m_numLockMask) != 0) ? "active" : "inactive"));
|
2002-09-14 12:07:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CXWindowsSecondaryScreen::adjustForCapsLock(KeySym keysym) const
|
|
|
|
{
|
|
|
|
KeySym lKey, uKey;
|
|
|
|
XConvertCase(keysym, &lKey, &uKey);
|
|
|
|
if (lKey != uKey) {
|
|
|
|
// it's CapsLock sensitive
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_DEBUG2 "case convertible: CapsLock %s", ((m_mask & m_capsLockMask) != 0) ? "active" : "inactive"));
|
2002-09-14 12:07:02 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// CXWindowsSecondaryScreen::KeyCodeMask
|
|
|
|
//
|
|
|
|
|
|
|
|
CXWindowsSecondaryScreen::KeyCodeMask::KeyCodeMask()
|
|
|
|
{
|
|
|
|
m_keycode[0] = 0;
|
|
|
|
m_keycode[1] = 0;
|
|
|
|
m_keycode[2] = 0;
|
|
|
|
m_keycode[3] = 0;
|
|
|
|
}
|