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-11-19 00:33:36 +00:00
|
|
|
#include "CMSWindowsScreen.h"
|
2002-07-15 15:01:36 +00:00
|
|
|
#include "CMSWindowsClipboard.h"
|
2004-03-26 20:59:26 +00:00
|
|
|
#include "CMSWindowsDesks.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "CMSWindowsEventQueueBuffer.h"
|
2004-03-26 20:59:26 +00:00
|
|
|
#include "CMSWindowsKeyState.h"
|
2002-06-23 21:53:31 +00:00
|
|
|
#include "CMSWindowsScreenSaver.h"
|
2002-07-15 15:01:36 +00:00
|
|
|
#include "CClipboard.h"
|
2007-06-17 11:19:18 +00:00
|
|
|
#include "CKeyMap.h"
|
2003-09-02 22:05:47 +00:00
|
|
|
#include "XScreen.h"
|
2001-11-19 00:33:36 +00:00
|
|
|
#include "CLock.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "CThread.h"
|
2003-09-02 22:05:47 +00:00
|
|
|
#include "CFunctionJob.h"
|
2001-11-19 00:33:36 +00:00
|
|
|
#include "CLog.h"
|
|
|
|
#include "CString.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "CStringUtil.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "IEventQueue.h"
|
|
|
|
#include "TMethodEventJob.h"
|
2003-09-02 22:05:47 +00:00
|
|
|
#include "TMethodJob.h"
|
|
|
|
#include "CArch.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "CArchMiscWindows.h"
|
2004-03-26 20:59:26 +00:00
|
|
|
#include <string.h>
|
2004-04-11 19:15:09 +00:00
|
|
|
#include <pbt.h>
|
2004-02-28 12:19:49 +00:00
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
//
|
2004-04-11 19:15:09 +00:00
|
|
|
// add backwards compatible multihead support (and suppress bogus warning).
|
|
|
|
// this isn't supported on MinGW yet AFAICT.
|
2002-06-19 17:03:29 +00:00
|
|
|
//
|
2004-04-11 19:15:09 +00:00
|
|
|
#if defined(_MSC_VER)
|
2002-06-19 17:03:29 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable: 4706) // assignment within conditional
|
|
|
|
#define COMPILE_MULTIMON_STUBS
|
|
|
|
#include <multimon.h>
|
|
|
|
#pragma warning(pop)
|
2004-04-11 19:15:09 +00:00
|
|
|
#endif
|
2002-06-19 17:03:29 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// X button stuff
|
|
|
|
#if !defined(WM_XBUTTONDOWN)
|
|
|
|
#define WM_XBUTTONDOWN 0x020B
|
|
|
|
#define WM_XBUTTONUP 0x020C
|
|
|
|
#define WM_XBUTTONDBLCLK 0x020D
|
|
|
|
#define WM_NCXBUTTONDOWN 0x00AB
|
|
|
|
#define WM_NCXBUTTONUP 0x00AC
|
|
|
|
#define WM_NCXBUTTONDBLCLK 0x00AD
|
2007-06-17 11:19:18 +00:00
|
|
|
#define MOUSEEVENTF_XDOWN 0x0080
|
|
|
|
#define MOUSEEVENTF_XUP 0x0100
|
2003-09-02 22:05:47 +00:00
|
|
|
#define XBUTTON1 0x0001
|
|
|
|
#define XBUTTON2 0x0002
|
|
|
|
#endif
|
2004-03-26 20:59:26 +00:00
|
|
|
#if !defined(VK_XBUTTON1)
|
|
|
|
#define VK_XBUTTON1 0x05
|
|
|
|
#define VK_XBUTTON2 0x06
|
|
|
|
#endif
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-04-11 19:15:09 +00:00
|
|
|
// WM_POWERBROADCAST stuff
|
|
|
|
#if !defined(PBT_APMRESUMEAUTOMATIC)
|
|
|
|
#define PBT_APMRESUMEAUTOMATIC 0x0012
|
|
|
|
#endif
|
|
|
|
|
2001-11-19 00:33:36 +00:00
|
|
|
//
|
|
|
|
// CMSWindowsScreen
|
|
|
|
//
|
|
|
|
|
|
|
|
HINSTANCE CMSWindowsScreen::s_instance = NULL;
|
2004-02-28 12:19:49 +00:00
|
|
|
CMSWindowsScreen* CMSWindowsScreen::s_screen = NULL;
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::CMSWindowsScreen(bool isPrimary) :
|
2004-02-28 12:19:49 +00:00
|
|
|
m_isPrimary(isPrimary),
|
2003-09-02 22:05:47 +00:00
|
|
|
m_is95Family(CArchMiscWindows::isWindows95Family()),
|
|
|
|
m_isOnScreen(m_isPrimary),
|
|
|
|
m_class(0),
|
2002-06-19 17:03:29 +00:00
|
|
|
m_x(0), m_y(0),
|
2002-06-10 22:06:45 +00:00
|
|
|
m_w(0), m_h(0),
|
2003-09-02 22:05:47 +00:00
|
|
|
m_xCenter(0), m_yCenter(0),
|
2002-07-15 15:01:36 +00:00
|
|
|
m_multimon(false),
|
2003-09-02 22:05:47 +00:00
|
|
|
m_xCursor(0), m_yCursor(0),
|
2004-02-28 12:19:49 +00:00
|
|
|
m_sequenceNumber(0),
|
2003-09-02 22:05:47 +00:00
|
|
|
m_mark(0),
|
|
|
|
m_markReceived(0),
|
2004-03-28 14:07:58 +00:00
|
|
|
m_fixTimer(NULL),
|
2007-06-17 11:19:18 +00:00
|
|
|
m_keyLayout(NULL),
|
2003-09-02 22:05:47 +00:00
|
|
|
m_screensaver(NULL),
|
|
|
|
m_screensaverNotify(false),
|
2004-11-06 16:13:52 +00:00
|
|
|
m_screensaverActive(false),
|
2004-04-11 19:15:09 +00:00
|
|
|
m_window(NULL),
|
2002-07-15 15:01:36 +00:00
|
|
|
m_nextClipboardWindow(NULL),
|
Fixed several win32 bugs. First, synergy wasn't forwarding mouse
events to other hook functions, which broke some tools like objectbar.
Second, windows key processing was fixed. Previously pressing and
release the key would only send a press event, locking the user onto
the client window; also, the win32 server treated as a Meta modifier
instead of a Super modifier, which broke any use of it as any kind of
modifier key. Third, added hacks to support several key combinations
on windows 95/98/me that are treated specially by windows, including
Alt+Tab, Alt+Shift+Tab, Alt+Esc, Alt+Shift+Esc, Ctrl+Esc, and any
combination using the windows key like Win+E and Win+F but not
Ctrl+Alt+Del. Fourth, scroll lock only locking to the client (which
only happened when using a synergy server on windows) has been fixed;
unfortunately the solution causes a lot of screen redraws for some
reason. Finally, there's been a fix to clipboard handling that may
or may not fix a problem where the clipboard would stop transferring
between systems after a little while. I can't be sure if it fixes
the problem because I can't reproduce the problem.
2003-04-13 14:59:53 +00:00
|
|
|
m_ownClipboard(false),
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks(NULL),
|
2002-07-15 15:01:36 +00:00
|
|
|
m_hookLibrary(NULL),
|
2004-03-13 17:13:55 +00:00
|
|
|
m_init(NULL),
|
|
|
|
m_cleanup(NULL),
|
|
|
|
m_setSides(NULL),
|
|
|
|
m_setZone(NULL),
|
|
|
|
m_setMode(NULL),
|
2004-02-28 12:19:49 +00:00
|
|
|
m_keyState(NULL),
|
2004-05-02 16:06:04 +00:00
|
|
|
m_hasMouse(GetSystemMetrics(SM_MOUSEPRESENT) != 0),
|
|
|
|
m_showingMouse(false)
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
assert(s_instance != NULL);
|
2003-09-02 22:05:47 +00:00
|
|
|
assert(s_screen == NULL);
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2001-11-25 18:32:41 +00:00
|
|
|
s_screen = this;
|
2004-02-28 12:19:49 +00:00
|
|
|
try {
|
2004-03-13 17:13:55 +00:00
|
|
|
if (m_isPrimary) {
|
|
|
|
m_hookLibrary = openHookLibrary("synrgyhk");
|
|
|
|
}
|
2004-03-26 20:59:26 +00:00
|
|
|
m_screensaver = new CMSWindowsScreenSaver();
|
|
|
|
m_desks = new CMSWindowsDesks(m_isPrimary,
|
|
|
|
m_hookLibrary, m_screensaver,
|
|
|
|
new TMethodJob<CMSWindowsScreen>(this,
|
|
|
|
&CMSWindowsScreen::updateKeysCB));
|
2007-06-17 11:19:18 +00:00
|
|
|
m_keyState = new CMSWindowsKeyState(m_desks, getEventTarget());
|
2004-02-28 12:19:49 +00:00
|
|
|
updateScreenShape();
|
2004-03-26 20:59:26 +00:00
|
|
|
m_class = createWindowClass();
|
2004-02-28 12:19:49 +00:00
|
|
|
m_window = createWindow(m_class, "Synergy");
|
2004-05-02 16:06:04 +00:00
|
|
|
forceShowCursor();
|
2004-02-28 12:19:49 +00:00
|
|
|
LOG((CLOG_DEBUG "screen shape: %d,%d %dx%d %s", m_x, m_y, m_w, m_h, m_multimon ? "(multi-monitor)" : ""));
|
|
|
|
LOG((CLOG_DEBUG "window is 0x%08x", m_window));
|
|
|
|
}
|
|
|
|
catch (...) {
|
2004-03-26 20:59:26 +00:00
|
|
|
delete m_keyState;
|
|
|
|
delete m_desks;
|
2004-02-28 12:19:49 +00:00
|
|
|
delete m_screensaver;
|
|
|
|
destroyWindow(m_window);
|
|
|
|
destroyClass(m_class);
|
|
|
|
closeHookLibrary(m_hookLibrary);
|
2004-03-26 20:59:26 +00:00
|
|
|
s_screen = NULL;
|
2004-02-28 12:19:49 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// install event handlers
|
|
|
|
EVENTQUEUE->adoptHandler(CEvent::kSystem, IEventQueue::getSystemTarget(),
|
|
|
|
new TMethodEventJob<CMSWindowsScreen>(this,
|
|
|
|
&CMSWindowsScreen::handleSystemEvent));
|
|
|
|
|
|
|
|
// install the platform event queue
|
|
|
|
EVENTQUEUE->adoptBuffer(new CMSWindowsEventQueueBuffer);
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CMSWindowsScreen::~CMSWindowsScreen()
|
|
|
|
{
|
2002-07-15 15:01:36 +00:00
|
|
|
assert(s_screen != NULL);
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
disable();
|
|
|
|
EVENTQUEUE->adoptBuffer(NULL);
|
|
|
|
EVENTQUEUE->removeHandler(CEvent::kSystem, IEventQueue::getSystemTarget());
|
2004-03-26 20:59:26 +00:00
|
|
|
delete m_keyState;
|
|
|
|
delete m_desks;
|
2004-02-28 12:19:49 +00:00
|
|
|
delete m_screensaver;
|
|
|
|
destroyWindow(m_window);
|
|
|
|
destroyClass(m_class);
|
|
|
|
closeHookLibrary(m_hookLibrary);
|
2001-11-25 18:32:41 +00:00
|
|
|
s_screen = NULL;
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CMSWindowsScreen::init(HINSTANCE instance)
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
assert(s_instance == NULL);
|
|
|
|
assert(instance != NULL);
|
|
|
|
|
2001-11-19 00:33:36 +00:00
|
|
|
s_instance = instance;
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
HINSTANCE
|
|
|
|
CMSWindowsScreen::getInstance()
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
return s_instance;
|
|
|
|
}
|
2002-05-22 17:08:37 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::enable()
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
assert(m_isOnScreen == m_isPrimary);
|
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
// we need to poll some things to fix them
|
|
|
|
m_fixTimer = EVENTQUEUE->newTimer(1.0, NULL);
|
|
|
|
EVENTQUEUE->adoptHandler(CEvent::kTimer, m_fixTimer,
|
|
|
|
new TMethodEventJob<CMSWindowsScreen>(this,
|
|
|
|
&CMSWindowsScreen::handleFixes));
|
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
// install our clipboard snooper
|
|
|
|
m_nextClipboardWindow = SetClipboardViewer(m_window);
|
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
// track the active desk and (re)install the hooks
|
|
|
|
m_desks->enable();
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
if (m_isPrimary) {
|
2003-09-02 22:05:47 +00:00
|
|
|
// set jump zones
|
|
|
|
m_setZone(m_x, m_y, m_w, m_h, getJumpZoneSize());
|
|
|
|
|
|
|
|
// watch jump zones
|
|
|
|
m_setMode(kHOOK_WATCH_JUMP_ZONE);
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
2004-03-13 17:13:55 +00:00
|
|
|
else {
|
|
|
|
// prevent the system from entering power saving modes. if
|
|
|
|
// it did we'd be forced to disconnect from the server and
|
|
|
|
// the server would not be able to wake us up.
|
|
|
|
CArchMiscWindows::addBusyState(CArchMiscWindows::kSYSTEM);
|
|
|
|
}
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::disable()
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
// stop tracking the active desk
|
|
|
|
m_desks->disable();
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
if (m_isPrimary) {
|
2004-03-13 17:13:55 +00:00
|
|
|
// disable hooks
|
2004-02-28 12:19:49 +00:00
|
|
|
m_setMode(kHOOK_DISABLE);
|
2004-03-13 17:13:55 +00:00
|
|
|
|
|
|
|
// enable special key sequences on win95 family
|
|
|
|
enableSpecialKeys(true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// allow the system to enter power saving mode
|
|
|
|
CArchMiscWindows::removeBusyState(CArchMiscWindows::kSYSTEM |
|
|
|
|
CArchMiscWindows::kDISPLAY);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2004-03-13 17:13:55 +00:00
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
// tell key state
|
|
|
|
m_keyState->disable();
|
|
|
|
|
|
|
|
// stop snooping the clipboard
|
|
|
|
ChangeClipboardChain(m_window, m_nextClipboardWindow);
|
|
|
|
m_nextClipboardWindow = NULL;
|
|
|
|
|
|
|
|
// uninstall fix timer
|
2004-03-28 14:07:58 +00:00
|
|
|
if (m_fixTimer != NULL) {
|
|
|
|
EVENTQUEUE->removeHandler(CEvent::kTimer, m_fixTimer);
|
|
|
|
EVENTQUEUE->deleteTimer(m_fixTimer);
|
|
|
|
m_fixTimer = NULL;
|
|
|
|
}
|
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
m_isOnScreen = m_isPrimary;
|
2004-05-02 16:06:04 +00:00
|
|
|
forceShowCursor();
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::enter()
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->enter();
|
2003-09-02 22:05:47 +00:00
|
|
|
if (m_isPrimary) {
|
|
|
|
// enable special key sequences on win95 family
|
|
|
|
enableSpecialKeys(true);
|
|
|
|
|
|
|
|
// watch jump zones
|
|
|
|
m_setMode(kHOOK_WATCH_JUMP_ZONE);
|
|
|
|
|
|
|
|
// all messages prior to now are invalid
|
|
|
|
nextMark();
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// now on screen
|
|
|
|
m_isOnScreen = true;
|
2004-05-02 16:06:04 +00:00
|
|
|
forceShowCursor();
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::leave()
|
|
|
|
{
|
2004-03-08 20:53:32 +00:00
|
|
|
// get keyboard layout of foreground window. we'll use this
|
|
|
|
// keyboard layout for translating keys sent to clients.
|
|
|
|
HWND window = GetForegroundWindow();
|
|
|
|
DWORD thread = GetWindowThreadProcessId(window, NULL);
|
|
|
|
m_keyLayout = GetKeyboardLayout(thread);
|
|
|
|
|
|
|
|
// tell the key mapper about the keyboard layout
|
2004-03-26 20:59:26 +00:00
|
|
|
m_keyState->setKeyLayout(m_keyLayout);
|
2004-03-08 20:53:32 +00:00
|
|
|
|
|
|
|
// tell desk that we're leaving and tell it the keyboard layout
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->leave(m_keyLayout);
|
2003-09-06 23:17:41 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
if (m_isPrimary) {
|
2003-09-02 22:05:47 +00:00
|
|
|
// warp to center
|
|
|
|
warpCursor(m_xCenter, m_yCenter);
|
|
|
|
|
|
|
|
// disable special key sequences on win95 family
|
|
|
|
enableSpecialKeys(false);
|
|
|
|
|
|
|
|
// all messages prior to now are invalid
|
|
|
|
nextMark();
|
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
// remember the modifier state. this is the modifier state
|
|
|
|
// reflected in the internal keyboard state.
|
|
|
|
m_keyState->saveModifiers();
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
// capture events
|
2003-09-02 22:05:47 +00:00
|
|
|
m_setMode(kHOOK_RELAY_EVENTS);
|
2002-07-11 18:58:49 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// now off screen
|
|
|
|
m_isOnScreen = false;
|
2004-05-02 16:06:04 +00:00
|
|
|
forceShowCursor();
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
return true;
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::setClipboard(ClipboardID, const IClipboard* src)
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2002-07-15 15:01:36 +00:00
|
|
|
CMSWindowsClipboard dst(m_window);
|
|
|
|
if (src != NULL) {
|
|
|
|
// save clipboard data
|
|
|
|
return CClipboard::copy(&dst, src);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// assert clipboard ownership
|
|
|
|
if (!dst.open(0)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
dst.empty();
|
|
|
|
dst.close();
|
|
|
|
return true;
|
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::checkClipboards()
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2002-07-15 15:01:36 +00:00
|
|
|
// if we think we own the clipboard but we don't then somebody
|
|
|
|
// grabbed the clipboard on this screen without us knowing.
|
|
|
|
// tell the server that this screen grabbed the clipboard.
|
|
|
|
//
|
|
|
|
// this works around bugs in the clipboard viewer chain.
|
|
|
|
// sometimes NT will simply never send WM_DRAWCLIPBOARD
|
|
|
|
// messages for no apparent reason and rebooting fixes the
|
|
|
|
// problem. since we don't want a broken clipboard until the
|
|
|
|
// next reboot we do this double check. clipboard ownership
|
|
|
|
// won't be reflected on other screens until we leave but at
|
|
|
|
// least the clipboard itself will work.
|
Fixed several win32 bugs. First, synergy wasn't forwarding mouse
events to other hook functions, which broke some tools like objectbar.
Second, windows key processing was fixed. Previously pressing and
release the key would only send a press event, locking the user onto
the client window; also, the win32 server treated as a Meta modifier
instead of a Super modifier, which broke any use of it as any kind of
modifier key. Third, added hacks to support several key combinations
on windows 95/98/me that are treated specially by windows, including
Alt+Tab, Alt+Shift+Tab, Alt+Esc, Alt+Shift+Esc, Ctrl+Esc, and any
combination using the windows key like Win+E and Win+F but not
Ctrl+Alt+Del. Fourth, scroll lock only locking to the client (which
only happened when using a synergy server on windows) has been fixed;
unfortunately the solution causes a lot of screen redraws for some
reason. Finally, there's been a fix to clipboard handling that may
or may not fix a problem where the clipboard would stop transferring
between systems after a little while. I can't be sure if it fixes
the problem because I can't reproduce the problem.
2003-04-13 14:59:53 +00:00
|
|
|
if (m_ownClipboard && !CMSWindowsClipboard::isOwnedBySynergy()) {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG "clipboard changed: lost ownership and no notification received"));
|
Fixed several win32 bugs. First, synergy wasn't forwarding mouse
events to other hook functions, which broke some tools like objectbar.
Second, windows key processing was fixed. Previously pressing and
release the key would only send a press event, locking the user onto
the client window; also, the win32 server treated as a Meta modifier
instead of a Super modifier, which broke any use of it as any kind of
modifier key. Third, added hacks to support several key combinations
on windows 95/98/me that are treated specially by windows, including
Alt+Tab, Alt+Shift+Tab, Alt+Esc, Alt+Shift+Esc, Ctrl+Esc, and any
combination using the windows key like Win+E and Win+F but not
Ctrl+Alt+Del. Fourth, scroll lock only locking to the client (which
only happened when using a synergy server on windows) has been fixed;
unfortunately the solution causes a lot of screen redraws for some
reason. Finally, there's been a fix to clipboard handling that may
or may not fix a problem where the clipboard would stop transferring
between systems after a little while. I can't be sure if it fixes
the problem because I can't reproduce the problem.
2003-04-13 14:59:53 +00:00
|
|
|
m_ownClipboard = false;
|
2004-02-28 12:19:49 +00:00
|
|
|
sendClipboardEvent(getClipboardGrabbedEvent(), kClipboardClipboard);
|
|
|
|
sendClipboardEvent(getClipboardGrabbedEvent(), kClipboardSelection);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-15 15:01:36 +00:00
|
|
|
CMSWindowsScreen::openScreensaver(bool notify)
|
2002-05-24 17:54:28 +00:00
|
|
|
{
|
2002-07-15 15:01:36 +00:00
|
|
|
assert(m_screensaver != NULL);
|
|
|
|
|
|
|
|
m_screensaverNotify = notify;
|
|
|
|
if (m_screensaverNotify) {
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->installScreensaverHooks(true);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_screensaver->disable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::closeScreensaver()
|
|
|
|
{
|
|
|
|
if (m_screensaver != NULL) {
|
|
|
|
if (m_screensaverNotify) {
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->installScreensaverHooks(false);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_screensaver->enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_screensaverNotify = false;
|
2002-05-24 17:54:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-15 15:01:36 +00:00
|
|
|
CMSWindowsScreen::screensaver(bool activate)
|
|
|
|
{
|
|
|
|
assert(m_screensaver != NULL);
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
if (activate) {
|
|
|
|
m_screensaver->activate();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_screensaver->deactivate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::resetOptions()
|
2002-07-15 15:01:36 +00:00
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
m_desks->resetOptions();
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::setOptions(const COptionsList& options)
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
m_desks->setOptions(options);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::setSequenceNumber(UInt32 seqNum)
|
|
|
|
{
|
|
|
|
m_sequenceNumber = seqNum;
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::isPrimary() const
|
|
|
|
{
|
|
|
|
return m_isPrimary;
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void*
|
|
|
|
CMSWindowsScreen::getEventTarget() const
|
|
|
|
{
|
|
|
|
return const_cast<CMSWindowsScreen*>(this);
|
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::getClipboard(ClipboardID, IClipboard* dst) const
|
|
|
|
{
|
|
|
|
CMSWindowsClipboard src(m_window);
|
|
|
|
CClipboard::copy(dst, &src);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::getShape(SInt32& x, SInt32& y, SInt32& w, SInt32& h) const
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
|
|
|
assert(m_class != 0);
|
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
x = m_x;
|
|
|
|
y = m_y;
|
|
|
|
w = m_w;
|
|
|
|
h = m_h;
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2002-07-11 18:58:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::getCursorPos(SInt32& x, SInt32& y) const
|
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->getCursorPos(x, y);
|
2002-07-11 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::reconfigure(UInt32 activeSides)
|
2002-07-11 18:58:49 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
assert(m_isPrimary);
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
LOG((CLOG_DEBUG "active sides: %x", activeSides));
|
2003-09-02 22:05:47 +00:00
|
|
|
m_setSides(activeSides);
|
2002-07-11 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
void
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::warpCursor(SInt32 x, SInt32 y)
|
2002-07-11 18:58:49 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
// warp mouse
|
|
|
|
warpCursorNoFlush(x, y);
|
|
|
|
|
|
|
|
// remove all input events before and including warp
|
|
|
|
MSG msg;
|
|
|
|
while (PeekMessage(&msg, NULL, SYNERGY_MSG_INPUT_FIRST,
|
|
|
|
SYNERGY_MSG_INPUT_LAST, PM_REMOVE)) {
|
|
|
|
// do nothing
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// save position as last position
|
|
|
|
m_xCursor = x;
|
|
|
|
m_yCursor = y;
|
|
|
|
}
|
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
UInt32
|
|
|
|
CMSWindowsScreen::registerHotKey(KeyID key, KeyModifierMask mask)
|
|
|
|
{
|
|
|
|
// only allow certain modifiers
|
|
|
|
if ((mask & ~(KeyModifierShift | KeyModifierControl |
|
|
|
|
KeyModifierAlt | KeyModifierSuper)) != 0) {
|
|
|
|
LOG((CLOG_WARN "could not map hotkey id=%04x mask=%04x", key, mask));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fail if no keys
|
|
|
|
if (key == kKeyNone && mask == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert to win32
|
|
|
|
UINT modifiers = 0;
|
|
|
|
if ((mask & KeyModifierShift) != 0) {
|
|
|
|
modifiers |= MOD_SHIFT;
|
|
|
|
}
|
|
|
|
if ((mask & KeyModifierControl) != 0) {
|
|
|
|
modifiers |= MOD_CONTROL;
|
|
|
|
}
|
|
|
|
if ((mask & KeyModifierAlt) != 0) {
|
|
|
|
modifiers |= MOD_ALT;
|
|
|
|
}
|
|
|
|
if ((mask & KeyModifierSuper) != 0) {
|
|
|
|
modifiers |= MOD_WIN;
|
|
|
|
}
|
|
|
|
UINT vk = m_keyState->mapKeyToVirtualKey(key);
|
|
|
|
if (key != kKeyNone && vk == 0) {
|
|
|
|
// can't map key
|
|
|
|
LOG((CLOG_WARN "could not map hotkey id=%04x mask=%04x", key, mask));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// choose hotkey id
|
|
|
|
UInt32 id;
|
|
|
|
if (!m_oldHotKeyIDs.empty()) {
|
|
|
|
id = m_oldHotKeyIDs.back();
|
|
|
|
m_oldHotKeyIDs.pop_back();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
id = m_hotKeys.size() + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if this hot key has modifiers only then we'll handle it specially
|
|
|
|
bool err;
|
|
|
|
if (key == kKeyNone) {
|
|
|
|
// check if already registered
|
|
|
|
err = (m_hotKeyToIDMap.count(CHotKeyItem(vk, modifiers)) > 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// register with OS
|
|
|
|
err = (RegisterHotKey(NULL, id, modifiers, vk) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!err) {
|
|
|
|
m_hotKeys.insert(std::make_pair(id, CHotKeyItem(vk, modifiers)));
|
|
|
|
m_hotKeyToIDMap[CHotKeyItem(vk, modifiers)] = id;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_oldHotKeyIDs.push_back(id);
|
|
|
|
m_hotKeys.erase(id);
|
|
|
|
LOG((CLOG_WARN "failed to register hotkey %s (id=%04x mask=%04x)", CKeyMap::formatKey(key, mask).c_str(), key, mask));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG((CLOG_DEBUG "registered hotkey %s (id=%04x mask=%04x) as id=%d", CKeyMap::formatKey(key, mask).c_str(), key, mask, id));
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::unregisterHotKey(UInt32 id)
|
|
|
|
{
|
|
|
|
// look up hotkey
|
|
|
|
HotKeyMap::iterator i = m_hotKeys.find(id);
|
|
|
|
if (i == m_hotKeys.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// unregister with OS
|
|
|
|
bool err;
|
|
|
|
if (i->second.getVirtualKey() != 0) {
|
|
|
|
err = !UnregisterHotKey(NULL, id);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err = false;
|
|
|
|
}
|
|
|
|
if (err) {
|
|
|
|
LOG((CLOG_WARN "failed to unregister hotkey id=%d", id));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG((CLOG_DEBUG "unregistered hotkey id=%d", id));
|
|
|
|
}
|
|
|
|
|
|
|
|
// discard hot key from map and record old id for reuse
|
|
|
|
m_hotKeyToIDMap.erase(i->second);
|
|
|
|
m_hotKeys.erase(i);
|
|
|
|
m_oldHotKeyIDs.push_back(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeInputBegin()
|
|
|
|
{
|
|
|
|
assert(m_isPrimary);
|
|
|
|
|
|
|
|
if (!m_isOnScreen) {
|
|
|
|
m_keyState->useSavedModifiers(true);
|
|
|
|
}
|
|
|
|
m_desks->fakeInputBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeInputEnd()
|
|
|
|
{
|
|
|
|
assert(m_isPrimary);
|
|
|
|
|
|
|
|
m_desks->fakeInputEnd();
|
|
|
|
if (!m_isOnScreen) {
|
|
|
|
m_keyState->useSavedModifiers(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
SInt32
|
|
|
|
CMSWindowsScreen::getJumpZoneSize() const
|
|
|
|
{
|
|
|
|
return 1;
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2003-09-02 22:05:47 +00:00
|
|
|
CMSWindowsScreen::isAnyMouseButtonDown() const
|
2002-07-15 15:01:36 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
static const char* buttonToName[] = {
|
2004-03-26 20:59:26 +00:00
|
|
|
"<invalid>",
|
2003-09-02 22:05:47 +00:00
|
|
|
"Left Button",
|
|
|
|
"Middle Button",
|
|
|
|
"Right Button",
|
|
|
|
"X Button 1",
|
|
|
|
"X Button 2"
|
|
|
|
};
|
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
for (UInt32 i = 1; i < sizeof(m_buttons) / sizeof(m_buttons[0]); ++i) {
|
|
|
|
if (m_buttons[i]) {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG "locked by \"%s\"", buttonToName[i]));
|
2002-07-18 16:58:08 +00:00
|
|
|
return true;
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
Fixed several win32 bugs. First, synergy wasn't forwarding mouse
events to other hook functions, which broke some tools like objectbar.
Second, windows key processing was fixed. Previously pressing and
release the key would only send a press event, locking the user onto
the client window; also, the win32 server treated as a Meta modifier
instead of a Super modifier, which broke any use of it as any kind of
modifier key. Third, added hacks to support several key combinations
on windows 95/98/me that are treated specially by windows, including
Alt+Tab, Alt+Shift+Tab, Alt+Esc, Alt+Shift+Esc, Ctrl+Esc, and any
combination using the windows key like Win+E and Win+F but not
Ctrl+Alt+Del. Fourth, scroll lock only locking to the client (which
only happened when using a synergy server on windows) has been fixed;
unfortunately the solution causes a lot of screen redraws for some
reason. Finally, there's been a fix to clipboard handling that may
or may not fix a problem where the clipboard would stop transferring
between systems after a little while. I can't be sure if it fixes
the problem because I can't reproduce the problem.
2003-04-13 14:59:53 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::getCursorCenter(SInt32& x, SInt32& y) const
|
|
|
|
{
|
|
|
|
x = m_xCenter;
|
|
|
|
y = m_yCenter;
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeMouseButton(ButtonID id, bool press) const
|
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->fakeMouseButton(id, press);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeMouseMove(SInt32 x, SInt32 y) const
|
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->fakeMouseMove(x, y);
|
2002-07-11 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
2004-05-02 08:04:15 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeMouseRelativeMove(SInt32 dx, SInt32 dy) const
|
|
|
|
{
|
|
|
|
m_desks->fakeMouseRelativeMove(dx, dy);
|
|
|
|
}
|
|
|
|
|
2002-07-11 18:58:49 +00:00
|
|
|
void
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::fakeMouseWheel(SInt32 xDelta, SInt32 yDelta) const
|
2002-07-11 18:58:49 +00:00
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
m_desks->fakeMouseWheel(xDelta, yDelta);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::updateKeys()
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2004-03-26 20:59:26 +00:00
|
|
|
m_desks->updateKeys();
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-05-02 16:06:04 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeKeyDown(KeyID id, KeyModifierMask mask,
|
|
|
|
KeyButton button)
|
|
|
|
{
|
|
|
|
CPlatformScreen::fakeKeyDown(id, mask, button);
|
|
|
|
updateForceShowCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeKeyRepeat(KeyID id, KeyModifierMask mask,
|
|
|
|
SInt32 count, KeyButton button)
|
|
|
|
{
|
|
|
|
CPlatformScreen::fakeKeyRepeat(id, mask, count, button);
|
|
|
|
updateForceShowCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::fakeKeyUp(KeyButton button)
|
|
|
|
{
|
|
|
|
CPlatformScreen::fakeKeyUp(button);
|
|
|
|
updateForceShowCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::fakeAllKeysUp()
|
2004-05-02 16:06:04 +00:00
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
CPlatformScreen::fakeAllKeysUp();
|
2004-05-02 16:06:04 +00:00
|
|
|
updateForceShowCursor();
|
|
|
|
}
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
HINSTANCE
|
|
|
|
CMSWindowsScreen::openHookLibrary(const char* name)
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
// load the hook library
|
|
|
|
HINSTANCE hookLibrary = LoadLibrary(name);
|
|
|
|
if (hookLibrary == NULL) {
|
|
|
|
LOG((CLOG_ERR "Failed to load hook library; %s.dll is missing", name));
|
|
|
|
throw XScreenOpenFailure();
|
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
// look up functions
|
|
|
|
m_setSides = (SetSidesFunc)GetProcAddress(hookLibrary, "setSides");
|
|
|
|
m_setZone = (SetZoneFunc)GetProcAddress(hookLibrary, "setZone");
|
|
|
|
m_setMode = (SetModeFunc)GetProcAddress(hookLibrary, "setMode");
|
|
|
|
m_init = (InitFunc)GetProcAddress(hookLibrary, "init");
|
|
|
|
m_cleanup = (CleanupFunc)GetProcAddress(hookLibrary, "cleanup");
|
|
|
|
if (m_setSides == NULL ||
|
|
|
|
m_setZone == NULL ||
|
|
|
|
m_setMode == NULL ||
|
|
|
|
m_init == NULL ||
|
2004-03-26 20:59:26 +00:00
|
|
|
m_cleanup == NULL) {
|
2004-02-28 12:19:49 +00:00
|
|
|
LOG((CLOG_ERR "Invalid hook library; use a newer %s.dll", name));
|
|
|
|
throw XScreenOpenFailure();
|
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
// initialize hook library
|
|
|
|
if (m_init(GetCurrentThreadId()) == 0) {
|
|
|
|
LOG((CLOG_ERR "Cannot initialize hook library; is synergy already running?"));
|
|
|
|
throw XScreenOpenFailure();
|
|
|
|
}
|
|
|
|
|
|
|
|
return hookLibrary;
|
2002-07-11 18:58:49 +00:00
|
|
|
}
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::closeHookLibrary(HINSTANCE hookLibrary) const
|
2002-07-15 15:01:36 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
if (hookLibrary != NULL) {
|
|
|
|
m_cleanup();
|
|
|
|
FreeLibrary(hookLibrary);
|
|
|
|
}
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
HCURSOR
|
|
|
|
CMSWindowsScreen::createBlankCursor() const
|
|
|
|
{
|
|
|
|
// create a transparent cursor
|
|
|
|
int cw = GetSystemMetrics(SM_CXCURSOR);
|
|
|
|
int ch = GetSystemMetrics(SM_CYCURSOR);
|
|
|
|
UInt8* cursorAND = new UInt8[ch * ((cw + 31) >> 2)];
|
|
|
|
UInt8* cursorXOR = new UInt8[ch * ((cw + 31) >> 2)];
|
|
|
|
memset(cursorAND, 0xff, ch * ((cw + 31) >> 2));
|
|
|
|
memset(cursorXOR, 0x00, ch * ((cw + 31) >> 2));
|
|
|
|
HCURSOR c = CreateCursor(s_instance, 0, 0, cw, ch, cursorAND, cursorXOR);
|
|
|
|
delete[] cursorXOR;
|
|
|
|
delete[] cursorAND;
|
|
|
|
return c;
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::destroyCursor(HCURSOR cursor) const
|
|
|
|
{
|
|
|
|
if (cursor != NULL) {
|
|
|
|
DestroyCursor(cursor);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
ATOM
|
|
|
|
CMSWindowsScreen::createWindowClass() const
|
|
|
|
{
|
|
|
|
WNDCLASSEX classInfo;
|
|
|
|
classInfo.cbSize = sizeof(classInfo);
|
|
|
|
classInfo.style = CS_DBLCLKS | CS_NOCLOSE;
|
|
|
|
classInfo.lpfnWndProc = &CMSWindowsScreen::wndProc;
|
|
|
|
classInfo.cbClsExtra = 0;
|
|
|
|
classInfo.cbWndExtra = 0;
|
|
|
|
classInfo.hInstance = s_instance;
|
|
|
|
classInfo.hIcon = NULL;
|
|
|
|
classInfo.hCursor = NULL;
|
|
|
|
classInfo.hbrBackground = NULL;
|
|
|
|
classInfo.lpszMenuName = NULL;
|
|
|
|
classInfo.lpszClassName = "Synergy";
|
|
|
|
classInfo.hIconSm = NULL;
|
|
|
|
return RegisterClassEx(&classInfo);
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::destroyClass(ATOM windowClass) const
|
|
|
|
{
|
|
|
|
if (windowClass != 0) {
|
2004-04-11 19:15:09 +00:00
|
|
|
UnregisterClass(reinterpret_cast<LPCTSTR>(windowClass), s_instance);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
HWND
|
|
|
|
CMSWindowsScreen::createWindow(ATOM windowClass, const char* name) const
|
|
|
|
{
|
|
|
|
HWND window = CreateWindowEx(WS_EX_TOPMOST |
|
2002-07-15 15:01:36 +00:00
|
|
|
WS_EX_TRANSPARENT |
|
|
|
|
WS_EX_TOOLWINDOW,
|
2004-04-11 19:15:09 +00:00
|
|
|
reinterpret_cast<LPCTSTR>(windowClass),
|
2004-02-28 12:19:49 +00:00
|
|
|
name,
|
2002-07-15 15:01:36 +00:00
|
|
|
WS_POPUP,
|
|
|
|
0, 0, 1, 1,
|
|
|
|
NULL, NULL,
|
2004-02-28 12:19:49 +00:00
|
|
|
s_instance,
|
2002-07-15 15:01:36 +00:00
|
|
|
NULL);
|
2004-02-28 12:19:49 +00:00
|
|
|
if (window == NULL) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_ERR "failed to create window: %d", GetLastError()));
|
2004-02-28 12:19:49 +00:00
|
|
|
throw XScreenOpenFailure();
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
return window;
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::destroyWindow(HWND hwnd) const
|
|
|
|
{
|
|
|
|
if (hwnd != NULL) {
|
|
|
|
DestroyWindow(hwnd);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::sendEvent(CEvent::Type type, void* data)
|
|
|
|
{
|
|
|
|
EVENTQUEUE->addEvent(CEvent(type, getEventTarget(), data));
|
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::sendClipboardEvent(CEvent::Type type, ClipboardID id)
|
|
|
|
{
|
|
|
|
CClipboardInfo* info = (CClipboardInfo*)malloc(sizeof(CClipboardInfo));
|
|
|
|
info->m_id = id;
|
|
|
|
info->m_sequenceNumber = m_sequenceNumber;
|
|
|
|
sendEvent(type, info);
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
2004-02-28 12:19:49 +00:00
|
|
|
CMSWindowsScreen::handleSystemEvent(const CEvent& event, void*)
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
MSG* msg = reinterpret_cast<MSG*>(event.getData());
|
|
|
|
assert(msg != NULL);
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
if (CArchMiscWindows::processDialog(msg)) {
|
|
|
|
return;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
if (onPreDispatch(msg->hwnd, msg->message, msg->wParam, msg->lParam)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
TranslateMessage(msg);
|
|
|
|
DispatchMessage(msg);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::updateButtons()
|
|
|
|
{
|
2004-12-29 21:12:05 +00:00
|
|
|
int numButtons = GetSystemMetrics(SM_CMOUSEBUTTONS);
|
2004-03-26 20:59:26 +00:00
|
|
|
m_buttons[kButtonNone] = false;
|
|
|
|
m_buttons[kButtonLeft] = (GetKeyState(VK_LBUTTON) < 0);
|
|
|
|
m_buttons[kButtonRight] = (GetKeyState(VK_RBUTTON) < 0);
|
2004-12-29 21:12:05 +00:00
|
|
|
m_buttons[kButtonMiddle] = (GetKeyState(VK_MBUTTON) < 0);
|
|
|
|
m_buttons[kButtonExtra0 + 0] = (numButtons >= 4) &&
|
|
|
|
(GetKeyState(VK_XBUTTON1) < 0);
|
|
|
|
m_buttons[kButtonExtra0 + 1] = (numButtons >= 5) &&
|
|
|
|
(GetKeyState(VK_XBUTTON2) < 0);
|
2004-03-26 20:59:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IKeyState*
|
|
|
|
CMSWindowsScreen::getKeyState() const
|
|
|
|
{
|
|
|
|
return m_keyState;
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onPreDispatch(HWND hwnd,
|
|
|
|
UINT message, WPARAM wParam, LPARAM lParam)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
// handle event
|
|
|
|
switch (message) {
|
|
|
|
case SYNERGY_MSG_SCREEN_SAVER:
|
|
|
|
return onScreensaver(wParam != 0);
|
2004-03-28 14:07:58 +00:00
|
|
|
|
|
|
|
case SYNERGY_MSG_DEBUG:
|
2004-04-05 21:08:49 +00:00
|
|
|
LOG((CLOG_DEBUG1 "hook: 0x%08x 0x%08x", wParam, lParam));
|
2004-03-28 14:07:58 +00:00
|
|
|
return true;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (m_isPrimary) {
|
|
|
|
return onPreDispatchPrimary(hwnd, message, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onPreDispatchPrimary(HWND,
|
|
|
|
UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
// handle event
|
|
|
|
switch (message) {
|
|
|
|
case SYNERGY_MSG_MARK:
|
|
|
|
return onMark(static_cast<UInt32>(wParam));
|
|
|
|
|
|
|
|
case SYNERGY_MSG_KEY:
|
|
|
|
return onKey(wParam, lParam);
|
|
|
|
|
|
|
|
case SYNERGY_MSG_MOUSE_BUTTON:
|
|
|
|
return onMouseButton(wParam, lParam);
|
|
|
|
|
|
|
|
case SYNERGY_MSG_MOUSE_MOVE:
|
|
|
|
return onMouseMove(static_cast<SInt32>(wParam),
|
|
|
|
static_cast<SInt32>(lParam));
|
|
|
|
|
|
|
|
case SYNERGY_MSG_MOUSE_WHEEL:
|
2007-06-17 11:19:18 +00:00
|
|
|
// XXX -- support x-axis scrolling
|
|
|
|
return onMouseWheel(0, static_cast<SInt32>(wParam));
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
case SYNERGY_MSG_PRE_WARP:
|
|
|
|
{
|
|
|
|
// save position to compute delta of next motion
|
|
|
|
m_xCursor = static_cast<SInt32>(wParam);
|
|
|
|
m_yCursor = static_cast<SInt32>(lParam);
|
|
|
|
|
|
|
|
// we warped the mouse. discard events until we find the
|
|
|
|
// matching post warp event. see warpCursorNoFlush() for
|
|
|
|
// where the events are sent. we discard the matching
|
|
|
|
// post warp event and can be sure we've skipped the warp
|
|
|
|
// event.
|
|
|
|
MSG msg;
|
|
|
|
do {
|
|
|
|
GetMessage(&msg, NULL, SYNERGY_MSG_MOUSE_MOVE,
|
|
|
|
SYNERGY_MSG_POST_WARP);
|
|
|
|
} while (msg.message != SYNERGY_MSG_POST_WARP);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case SYNERGY_MSG_POST_WARP:
|
|
|
|
LOG((CLOG_WARN "unmatched post warp"));
|
|
|
|
return true;
|
2007-06-17 11:19:18 +00:00
|
|
|
|
|
|
|
case WM_HOTKEY:
|
|
|
|
// we discard these messages. we'll catch the hot key in the
|
|
|
|
// regular key event handling, where we can detect both key
|
|
|
|
// press and release. we only register the hot key so no other
|
|
|
|
// app will act on the key combination.
|
|
|
|
break;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2004-02-28 12:19:49 +00:00
|
|
|
CMSWindowsScreen::onEvent(HWND, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam, LRESULT* result)
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
switch (msg) {
|
2003-09-02 22:05:47 +00:00
|
|
|
case WM_QUERYENDSESSION:
|
|
|
|
if (m_is95Family) {
|
|
|
|
*result = TRUE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_ENDSESSION:
|
|
|
|
if (m_is95Family) {
|
|
|
|
if (wParam == TRUE && lParam == 0) {
|
2004-02-28 12:19:49 +00:00
|
|
|
EVENTQUEUE->addEvent(CEvent(CEvent::kQuit));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_DRAWCLIPBOARD:
|
|
|
|
// first pass on the message
|
|
|
|
if (m_nextClipboardWindow != NULL) {
|
2004-02-28 12:19:49 +00:00
|
|
|
SendMessage(m_nextClipboardWindow, msg, wParam, lParam);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// now handle the message
|
|
|
|
return onClipboardChange();
|
|
|
|
|
|
|
|
case WM_CHANGECBCHAIN:
|
|
|
|
if (m_nextClipboardWindow == (HWND)wParam) {
|
|
|
|
m_nextClipboardWindow = (HWND)lParam;
|
|
|
|
LOG((CLOG_DEBUG "clipboard chain: new next: 0x%08x", m_nextClipboardWindow));
|
|
|
|
}
|
|
|
|
else if (m_nextClipboardWindow != NULL) {
|
2004-02-28 12:19:49 +00:00
|
|
|
SendMessage(m_nextClipboardWindow, msg, wParam, lParam);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case WM_DISPLAYCHANGE:
|
|
|
|
return onDisplayChange();
|
2004-03-13 17:13:55 +00:00
|
|
|
|
|
|
|
case WM_POWERBROADCAST:
|
|
|
|
switch (wParam) {
|
|
|
|
case PBT_APMRESUMEAUTOMATIC:
|
|
|
|
case PBT_APMRESUMECRITICAL:
|
|
|
|
case PBT_APMRESUMESUSPEND:
|
2007-06-17 11:19:18 +00:00
|
|
|
EVENTQUEUE->addEvent(CEvent(IScreen::getResumeEvent(),
|
|
|
|
getEventTarget(), NULL,
|
|
|
|
CEvent::kDeliverImmediately));
|
2004-03-13 17:13:55 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PBT_APMSUSPEND:
|
2007-06-17 11:19:18 +00:00
|
|
|
EVENTQUEUE->addEvent(CEvent(IScreen::getSuspendEvent(),
|
|
|
|
getEventTarget(), NULL,
|
|
|
|
CEvent::kDeliverImmediately));
|
2004-03-13 17:13:55 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
*result = TRUE;
|
|
|
|
return true;
|
2004-05-02 16:06:04 +00:00
|
|
|
|
|
|
|
case WM_DEVICECHANGE:
|
|
|
|
forceShowCursor();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_SETTINGCHANGE:
|
|
|
|
if (wParam == SPI_SETMOUSEKEYS) {
|
|
|
|
forceShowCursor();
|
|
|
|
}
|
|
|
|
break;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onMark(UInt32 mark)
|
|
|
|
{
|
|
|
|
m_markReceived = mark;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onKey(WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
static const KeyModifierMask s_ctrlAlt =
|
|
|
|
KeyModifierControl | KeyModifierAlt;
|
|
|
|
|
|
|
|
LOG((CLOG_DEBUG1 "event: Key char=%d, vk=0x%02x, nagr=%d, lParam=0x%08x", (wParam & 0xff00u) >> 8, wParam & 0xffu, (wParam & 0x10000u) ? 1 : 0, lParam));
|
|
|
|
|
|
|
|
// get event info
|
|
|
|
KeyButton button = (KeyButton)((lParam & 0x01ff0000) >> 16);
|
|
|
|
bool down = ((lParam & 0x80000000u) == 0x00000000u);
|
|
|
|
bool wasDown = isKeyDown(button);
|
|
|
|
KeyModifierMask oldState = pollActiveModifiers();
|
|
|
|
|
|
|
|
// check for autorepeat
|
|
|
|
if (m_keyState->testAutoRepeat(down, (lParam & 0x40000000u) == 1, button)) {
|
|
|
|
lParam |= 0x40000000u;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the button is zero then guess what the button should be.
|
|
|
|
// these are badly synthesized key events and logitech software
|
|
|
|
// that maps mouse buttons to keys is known to do this.
|
|
|
|
// alternatively, we could just throw these events out.
|
|
|
|
if (button == 0) {
|
|
|
|
button = m_keyState->virtualKeyToButton(wParam & 0xffu);
|
|
|
|
if (button == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
wasDown = isKeyDown(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
// record keyboard state
|
|
|
|
m_keyState->onKey(button, down, oldState);
|
|
|
|
|
|
|
|
// windows doesn't tell us the modifier key state on mouse or key
|
|
|
|
// events so we have to figure it out. most apps would use
|
|
|
|
// GetKeyState() or even GetAsyncKeyState() for that but we can't
|
|
|
|
// because our hook doesn't pass on key events for several modifiers.
|
|
|
|
// it can't otherwise the system would interpret them normally on
|
|
|
|
// the primary screen even when on a secondary screen. so tapping
|
|
|
|
// alt would activate menus and tapping the windows key would open
|
|
|
|
// the start menu. if you don't pass those events on in the hook
|
|
|
|
// then GetKeyState() understandably doesn't reflect the effect of
|
|
|
|
// the event. curiously, neither does GetAsyncKeyState(), which is
|
|
|
|
// surprising.
|
|
|
|
//
|
|
|
|
// so anyway, we have to track the modifier state ourselves for
|
|
|
|
// at least those modifiers we don't pass on. pollActiveModifiers()
|
|
|
|
// does that but we have to update the keyboard state before calling
|
|
|
|
// pollActiveModifiers() to get the right answer. but the only way
|
|
|
|
// to set the modifier state or to set the up/down state of a key
|
|
|
|
// is via onKey(). so we have to call onKey() twice.
|
|
|
|
KeyModifierMask state = pollActiveModifiers();
|
|
|
|
m_keyState->onKey(button, down, state);
|
|
|
|
|
|
|
|
// check for hot keys
|
|
|
|
if (oldState != state) {
|
|
|
|
// modifier key was pressed/released
|
|
|
|
if (onHotKey(0, lParam)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// non-modifier was pressed/released
|
|
|
|
if (onHotKey(wParam, lParam)) {
|
|
|
|
return true;
|
|
|
|
}
|
2004-03-28 14:07:58 +00:00
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// ignore message if posted prior to last mark change
|
|
|
|
if (!ignore()) {
|
2004-05-18 20:32:13 +00:00
|
|
|
// check for ctrl+alt+del. we do not want to pass that to the
|
|
|
|
// client. the user can use ctrl+alt+pause to emulate it.
|
2004-03-26 20:59:26 +00:00
|
|
|
UINT virtKey = (wParam & 0xffu);
|
2007-06-17 11:19:18 +00:00
|
|
|
if (virtKey == VK_DELETE && (state & s_ctrlAlt) == s_ctrlAlt) {
|
2004-05-18 20:32:13 +00:00
|
|
|
LOG((CLOG_DEBUG "discard ctrl+alt+del"));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for ctrl+alt+del emulation
|
2007-06-17 11:19:18 +00:00
|
|
|
if ((virtKey == VK_PAUSE || virtKey == VK_CANCEL) &&
|
|
|
|
(state & s_ctrlAlt) == s_ctrlAlt) {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG "emulate ctrl+alt+del"));
|
2004-03-26 20:59:26 +00:00
|
|
|
// switch wParam and lParam to be as if VK_DELETE was
|
2007-06-17 11:19:18 +00:00
|
|
|
// pressed or released. when mapping the key we require that
|
|
|
|
// we not use AltGr (the 0x10000 flag in wParam) and we not
|
|
|
|
// use the keypad delete key (the 0x01000000 flag in lParam).
|
|
|
|
wParam = VK_DELETE | 0x00010000u;
|
2004-03-26 20:59:26 +00:00
|
|
|
lParam &= 0xfe000000;
|
2007-06-17 11:19:18 +00:00
|
|
|
lParam |= m_keyState->virtualKeyToButton(wParam & 0xffu) << 16;
|
|
|
|
lParam |= 0x01000001;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
// process key
|
2003-09-02 22:05:47 +00:00
|
|
|
KeyModifierMask mask;
|
2004-03-26 20:59:26 +00:00
|
|
|
KeyID key = m_keyState->mapKeyFromEvent(wParam, lParam, &mask);
|
|
|
|
button = static_cast<KeyButton>((lParam & 0x01ff0000u) >> 16);
|
|
|
|
if (key != kKeyNone) {
|
2007-06-17 11:19:18 +00:00
|
|
|
// fix key up. if the key isn't down according to
|
2004-03-28 14:07:58 +00:00
|
|
|
// our table then we never got the key press event
|
|
|
|
// for it. if it's not a modifier key then we'll
|
|
|
|
// synthesize the press first. only do this on
|
|
|
|
// the windows 95 family, which eats certain special
|
|
|
|
// keys like alt+tab, ctrl+esc, etc.
|
2007-06-17 11:19:18 +00:00
|
|
|
if (m_is95Family && !wasDown && !down) {
|
2004-03-28 14:07:58 +00:00
|
|
|
switch (virtKey) {
|
2007-06-17 11:19:18 +00:00
|
|
|
case VK_SHIFT:
|
2004-03-28 14:07:58 +00:00
|
|
|
case VK_LSHIFT:
|
|
|
|
case VK_RSHIFT:
|
2007-06-17 11:19:18 +00:00
|
|
|
case VK_CONTROL:
|
2004-03-28 14:07:58 +00:00
|
|
|
case VK_LCONTROL:
|
|
|
|
case VK_RCONTROL:
|
2007-06-17 11:19:18 +00:00
|
|
|
case VK_MENU:
|
2004-03-28 14:07:58 +00:00
|
|
|
case VK_LMENU:
|
|
|
|
case VK_RMENU:
|
2007-06-17 11:19:18 +00:00
|
|
|
case VK_LWIN:
|
|
|
|
case VK_RWIN:
|
2004-03-28 14:07:58 +00:00
|
|
|
case VK_CAPITAL:
|
|
|
|
case VK_NUMLOCK:
|
|
|
|
case VK_SCROLL:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
m_keyState->sendKeyEvent(getEventTarget(),
|
|
|
|
true, false, key, mask, 1, button);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// do it
|
2004-03-26 20:59:26 +00:00
|
|
|
m_keyState->sendKeyEvent(getEventTarget(),
|
2004-03-28 14:07:58 +00:00
|
|
|
((lParam & 0x80000000u) == 0),
|
2007-06-17 11:19:18 +00:00
|
|
|
((lParam & 0x40000000u) != 0),
|
2004-03-26 20:59:26 +00:00
|
|
|
key, mask, (SInt32)(lParam & 0xffff), button);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
else {
|
2007-06-17 11:19:18 +00:00
|
|
|
LOG((CLOG_DEBUG1 "cannot map key"));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onHotKey(WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
// get the key info
|
|
|
|
KeyModifierMask state = getActiveModifiers();
|
|
|
|
UINT virtKey = (wParam & 0xffu);
|
|
|
|
UINT modifiers = 0;
|
|
|
|
if ((state & KeyModifierShift) != 0) {
|
|
|
|
modifiers |= MOD_SHIFT;
|
|
|
|
}
|
|
|
|
if ((state & KeyModifierControl) != 0) {
|
|
|
|
modifiers |= MOD_CONTROL;
|
|
|
|
}
|
|
|
|
if ((state & KeyModifierAlt) != 0) {
|
|
|
|
modifiers |= MOD_ALT;
|
|
|
|
}
|
|
|
|
if ((state & KeyModifierSuper) != 0) {
|
|
|
|
modifiers |= MOD_WIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the hot key id
|
|
|
|
HotKeyToIDMap::const_iterator i =
|
|
|
|
m_hotKeyToIDMap.find(CHotKeyItem(virtKey, modifiers));
|
|
|
|
if (i == m_hotKeyToIDMap.end()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find what kind of event
|
|
|
|
CEvent::Type type;
|
|
|
|
if ((lParam & 0x80000000u) == 0u) {
|
|
|
|
if ((lParam & 0x40000000u) != 0u) {
|
|
|
|
// ignore key repeats but it counts as a hot key
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
type = getHotKeyDownEvent();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
type = getHotKeyUpEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
// generate event
|
|
|
|
EVENTQUEUE->addEvent(CEvent(type, getEventTarget(),
|
|
|
|
CHotKeyInfo::alloc(i->second)));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onMouseButton(WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
// get which button
|
2004-05-01 08:56:24 +00:00
|
|
|
bool pressed = mapPressFromEvent(wParam, lParam);
|
|
|
|
ButtonID button = mapButtonFromEvent(wParam, lParam);
|
2003-09-02 22:05:47 +00:00
|
|
|
|
2004-03-26 20:59:26 +00:00
|
|
|
// keep our shadow key state up to date
|
|
|
|
if (button >= kButtonLeft && button <= kButtonExtra0 + 1) {
|
|
|
|
if (pressed) {
|
|
|
|
m_buttons[button] = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_buttons[button] = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
// ignore message if posted prior to last mark change
|
|
|
|
if (!ignore()) {
|
2007-06-17 11:19:18 +00:00
|
|
|
KeyModifierMask mask = m_keyState->getActiveModifiers();
|
2004-05-01 08:56:24 +00:00
|
|
|
if (pressed) {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG1 "event: button press button=%d", button));
|
|
|
|
if (button != kButtonNone) {
|
2007-06-17 11:19:18 +00:00
|
|
|
sendEvent(getButtonDownEvent(),
|
|
|
|
CButtonInfo::alloc(button, mask));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2004-05-01 08:56:24 +00:00
|
|
|
}
|
|
|
|
else {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG1 "event: button release button=%d", button));
|
|
|
|
if (button != kButtonNone) {
|
2007-06-17 11:19:18 +00:00
|
|
|
sendEvent(getButtonUpEvent(),
|
|
|
|
CButtonInfo::alloc(button, mask));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onMouseMove(SInt32 mx, SInt32 my)
|
|
|
|
{
|
|
|
|
// compute motion delta (relative to the last known
|
|
|
|
// mouse position)
|
|
|
|
SInt32 x = mx - m_xCursor;
|
|
|
|
SInt32 y = my - m_yCursor;
|
|
|
|
|
|
|
|
// ignore if the mouse didn't move or if message posted prior
|
|
|
|
// to last mark change.
|
|
|
|
if (ignore() || (x == 0 && y == 0)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// save position to compute delta of next motion
|
|
|
|
m_xCursor = mx;
|
|
|
|
m_yCursor = my;
|
|
|
|
|
|
|
|
if (m_isOnScreen) {
|
|
|
|
// motion on primary screen
|
2004-02-28 12:19:49 +00:00
|
|
|
sendEvent(getMotionOnPrimaryEvent(),
|
|
|
|
CMotionInfo::alloc(m_xCursor, m_yCursor));
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
|
|
|
else {
|
2003-09-02 22:05:47 +00:00
|
|
|
// motion on secondary screen. warp mouse back to
|
|
|
|
// center.
|
|
|
|
warpCursorNoFlush(m_xCenter, m_yCenter);
|
|
|
|
|
|
|
|
// examine the motion. if it's about the distance
|
|
|
|
// from the center of the screen to an edge then
|
|
|
|
// it's probably a bogus motion that we want to
|
|
|
|
// ignore (see warpCursorNoFlush() for a further
|
|
|
|
// description).
|
|
|
|
static SInt32 bogusZoneSize = 10;
|
|
|
|
if (-x + bogusZoneSize > m_xCenter - m_x ||
|
|
|
|
x + bogusZoneSize > m_x + m_w - m_xCenter ||
|
|
|
|
-y + bogusZoneSize > m_yCenter - m_y ||
|
|
|
|
y + bogusZoneSize > m_y + m_h - m_yCenter) {
|
|
|
|
LOG((CLOG_DEBUG "dropped bogus motion %+d,%+d", x, y));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// send motion
|
2004-02-28 12:19:49 +00:00
|
|
|
sendEvent(getMotionOnSecondaryEvent(), CMotionInfo::alloc(x, y));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
return true;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
bool
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::onMouseWheel(SInt32 xDelta, SInt32 yDelta)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2003-09-02 22:05:47 +00:00
|
|
|
// ignore message if posted prior to last mark change
|
|
|
|
if (!ignore()) {
|
2007-06-17 11:19:18 +00:00
|
|
|
LOG((CLOG_DEBUG1 "event: button wheel delta=%+d,%+d", xDelta, yDelta));
|
|
|
|
sendEvent(getWheelEvent(), CWheelInfo::alloc(xDelta, yDelta));
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onScreensaver(bool activated)
|
|
|
|
{
|
|
|
|
// ignore this message if there are any other screen saver
|
|
|
|
// messages already in the queue. this is important because
|
|
|
|
// our checkStarted() function has a deliberate delay, so it
|
|
|
|
// can't respond to events at full CPU speed and will fall
|
|
|
|
// behind if a lot of screen saver events are generated.
|
|
|
|
// that can easily happen because windows will continually
|
|
|
|
// send SC_SCREENSAVE until the screen saver starts, even if
|
|
|
|
// the screen saver is disabled!
|
|
|
|
MSG msg;
|
|
|
|
if (PeekMessage(&msg, NULL, SYNERGY_MSG_SCREEN_SAVER,
|
|
|
|
SYNERGY_MSG_SCREEN_SAVER, PM_NOREMOVE)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activated) {
|
2004-11-06 16:13:52 +00:00
|
|
|
if (!m_screensaverActive &&
|
|
|
|
m_screensaver->checkStarted(SYNERGY_MSG_SCREEN_SAVER, FALSE, 0)) {
|
|
|
|
m_screensaverActive = true;
|
2004-02-28 12:19:49 +00:00
|
|
|
sendEvent(getScreensaverActivatedEvent());
|
2004-03-13 17:13:55 +00:00
|
|
|
|
|
|
|
// enable display power down
|
|
|
|
CArchMiscWindows::removeBusyState(CArchMiscWindows::kDISPLAY);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
}
|
2002-06-08 21:48:00 +00:00
|
|
|
else {
|
2004-11-06 16:13:52 +00:00
|
|
|
if (m_screensaverActive) {
|
|
|
|
m_screensaverActive = false;
|
|
|
|
sendEvent(getScreensaverDeactivatedEvent());
|
2004-03-13 17:13:55 +00:00
|
|
|
|
2004-11-06 16:13:52 +00:00
|
|
|
// disable display power down
|
|
|
|
CArchMiscWindows::addBusyState(CArchMiscWindows::kDISPLAY);
|
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onDisplayChange()
|
|
|
|
{
|
|
|
|
// screen resolution may have changed. save old shape.
|
|
|
|
SInt32 xOld = m_x, yOld = m_y, wOld = m_w, hOld = m_h;
|
|
|
|
|
|
|
|
// update shape
|
|
|
|
updateScreenShape();
|
|
|
|
|
|
|
|
// do nothing if resolution hasn't changed
|
|
|
|
if (xOld != m_x || yOld != m_y || wOld != m_w || hOld != m_h) {
|
|
|
|
if (m_isPrimary) {
|
|
|
|
// warp mouse to center if off screen
|
|
|
|
if (!m_isOnScreen) {
|
|
|
|
warpCursor(m_xCenter, m_yCenter);
|
|
|
|
}
|
|
|
|
|
|
|
|
// tell hook about resize if on screen
|
|
|
|
else {
|
|
|
|
m_setZone(m_x, m_y, m_w, m_h, getJumpZoneSize());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// send new screen info
|
2004-02-28 12:19:49 +00:00
|
|
|
sendEvent(getShapeChangedEvent());
|
2004-05-15 19:43:33 +00:00
|
|
|
|
|
|
|
LOG((CLOG_DEBUG "screen shape: %d,%d %dx%d %s", m_x, m_y, m_w, m_h, m_multimon ? "(multi-monitor)" : ""));
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::onClipboardChange()
|
|
|
|
{
|
|
|
|
// now notify client that somebody changed the clipboard (unless
|
|
|
|
// we're the owner).
|
|
|
|
if (!CMSWindowsClipboard::isOwnedBySynergy()) {
|
|
|
|
if (m_ownClipboard) {
|
|
|
|
LOG((CLOG_DEBUG "clipboard changed: lost ownership"));
|
|
|
|
m_ownClipboard = false;
|
2004-02-28 12:19:49 +00:00
|
|
|
sendClipboardEvent(getClipboardGrabbedEvent(), kClipboardClipboard);
|
|
|
|
sendClipboardEvent(getClipboardGrabbedEvent(), kClipboardSelection);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2003-02-16 19:50:36 +00:00
|
|
|
}
|
2007-06-17 11:19:18 +00:00
|
|
|
else if (!m_ownClipboard) {
|
2003-09-02 22:05:47 +00:00
|
|
|
LOG((CLOG_DEBUG "clipboard changed: synergy owned"));
|
|
|
|
m_ownClipboard = true;
|
2003-02-16 19:50:36 +00:00
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
return true;
|
2002-06-23 21:53:31 +00:00
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::warpCursorNoFlush(SInt32 x, SInt32 y)
|
|
|
|
{
|
|
|
|
// send an event that we can recognize before the mouse warp
|
2004-02-28 12:19:49 +00:00
|
|
|
PostThreadMessage(GetCurrentThreadId(), SYNERGY_MSG_PRE_WARP, x, y);
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
// warp mouse. hopefully this inserts a mouse motion event
|
|
|
|
// between the previous message and the following message.
|
|
|
|
SetCursorPos(x, y);
|
|
|
|
|
|
|
|
// yield the CPU. there's a race condition when warping:
|
|
|
|
// a hardware mouse event occurs
|
|
|
|
// the mouse hook is not called because that process doesn't have the CPU
|
|
|
|
// we send PRE_WARP, SetCursorPos(), send POST_WARP
|
|
|
|
// we process all of those events and update m_x, m_y
|
|
|
|
// we finish our time slice
|
|
|
|
// the hook is called
|
|
|
|
// the hook sends us a mouse event from the pre-warp position
|
|
|
|
// we get the CPU
|
|
|
|
// we compute a bogus warp
|
|
|
|
// we need the hook to process all mouse events that occur
|
|
|
|
// before we warp before we do the warp but i'm not sure how
|
|
|
|
// to guarantee that. yielding the CPU here may reduce the
|
|
|
|
// chance of undesired behavior. we'll also check for very
|
|
|
|
// large motions that look suspiciously like about half width
|
|
|
|
// or height of the screen.
|
|
|
|
ARCH->sleep(0.0);
|
|
|
|
|
|
|
|
// send an event that we can recognize after the mouse warp
|
2004-02-28 12:19:49 +00:00
|
|
|
PostThreadMessage(GetCurrentThreadId(), SYNERGY_MSG_POST_WARP, 0, 0);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::nextMark()
|
|
|
|
{
|
|
|
|
// next mark
|
|
|
|
++m_mark;
|
|
|
|
|
|
|
|
// mark point in message queue where the mark was changed
|
2004-02-28 12:19:49 +00:00
|
|
|
PostThreadMessage(GetCurrentThreadId(), SYNERGY_MSG_MARK, m_mark, 0);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::ignore() const
|
|
|
|
{
|
|
|
|
return (m_mark != m_markReceived);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-02-28 12:19:49 +00:00
|
|
|
CMSWindowsScreen::updateScreenShape()
|
2003-09-02 22:05:47 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
// get shape
|
|
|
|
m_x = GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
m_y = GetSystemMetrics(SM_YVIRTUALSCREEN);
|
|
|
|
m_w = GetSystemMetrics(SM_CXVIRTUALSCREEN);
|
|
|
|
m_h = GetSystemMetrics(SM_CYVIRTUALSCREEN);
|
|
|
|
|
|
|
|
// get center for cursor
|
|
|
|
m_xCenter = GetSystemMetrics(SM_CXSCREEN) >> 1;
|
|
|
|
m_yCenter = GetSystemMetrics(SM_CYSCREEN) >> 1;
|
|
|
|
|
|
|
|
// check for multiple monitors
|
|
|
|
m_multimon = (m_w != GetSystemMetrics(SM_CXSCREEN) ||
|
|
|
|
m_h != GetSystemMetrics(SM_CYSCREEN));
|
2004-03-26 20:59:26 +00:00
|
|
|
|
|
|
|
// tell the desks
|
|
|
|
m_desks->setShape(m_x, m_y, m_w, m_h, m_xCenter, m_yCenter, m_multimon);
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
2002-07-12 20:41:23 +00:00
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::handleFixes(const CEvent&, void*)
|
|
|
|
{
|
|
|
|
// fix clipboard chain
|
|
|
|
fixClipboardViewer();
|
|
|
|
|
|
|
|
// update keys if keyboard layouts have changed
|
|
|
|
if (m_keyState->didGroupsChange()) {
|
|
|
|
updateKeys();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::fixClipboardViewer()
|
|
|
|
{
|
|
|
|
// XXX -- disable this code for now. somehow it can cause an infinite
|
|
|
|
// recursion in the WM_DRAWCLIPBOARD handler. either we're sending
|
|
|
|
// the message to our own window or some window farther down the chain
|
|
|
|
// forwards the message to our window or a window farther up the chain.
|
|
|
|
// i'm not sure how that could happen. the m_nextClipboardWindow = NULL
|
|
|
|
// was not in the code that infinite loops and may fix the bug but i
|
|
|
|
// doubt it.
|
2007-09-06 05:01:44 +00:00
|
|
|
/*
|
2007-06-17 11:19:18 +00:00
|
|
|
ChangeClipboardChain(m_window, m_nextClipboardWindow);
|
|
|
|
m_nextClipboardWindow = NULL;
|
|
|
|
m_nextClipboardWindow = SetClipboardViewer(m_window);
|
2007-09-06 05:01:44 +00:00
|
|
|
*/
|
2007-06-17 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::enableSpecialKeys(bool enable) const
|
|
|
|
{
|
|
|
|
// enable/disable ctrl+alt+del, alt+tab, etc on win95 family.
|
|
|
|
// since the win95 family doesn't support low-level hooks, we
|
|
|
|
// use this undocumented feature to suppress normal handling
|
|
|
|
// of certain key combinations.
|
|
|
|
if (m_is95Family) {
|
|
|
|
DWORD dummy = 0;
|
|
|
|
SystemParametersInfo(SPI_SETSCREENSAVERRUNNING,
|
|
|
|
enable ? FALSE : TRUE, &dummy, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ButtonID
|
|
|
|
CMSWindowsScreen::mapButtonFromEvent(WPARAM msg, LPARAM button) const
|
|
|
|
{
|
|
|
|
switch (msg) {
|
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_LBUTTONDBLCLK:
|
|
|
|
case WM_LBUTTONUP:
|
|
|
|
case WM_NCLBUTTONDOWN:
|
|
|
|
case WM_NCLBUTTONDBLCLK:
|
|
|
|
case WM_NCLBUTTONUP:
|
|
|
|
return kButtonLeft;
|
|
|
|
|
|
|
|
case WM_MBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDBLCLK:
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
case WM_NCMBUTTONDOWN:
|
|
|
|
case WM_NCMBUTTONDBLCLK:
|
|
|
|
case WM_NCMBUTTONUP:
|
|
|
|
return kButtonMiddle;
|
|
|
|
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDBLCLK:
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
case WM_NCRBUTTONDOWN:
|
|
|
|
case WM_NCRBUTTONDBLCLK:
|
|
|
|
case WM_NCRBUTTONUP:
|
|
|
|
return kButtonRight;
|
|
|
|
|
|
|
|
case WM_XBUTTONDOWN:
|
|
|
|
case WM_XBUTTONDBLCLK:
|
|
|
|
case WM_XBUTTONUP:
|
|
|
|
case WM_NCXBUTTONDOWN:
|
|
|
|
case WM_NCXBUTTONDBLCLK:
|
|
|
|
case WM_NCXBUTTONUP:
|
|
|
|
switch (button) {
|
|
|
|
case XBUTTON1:
|
2004-12-29 21:12:05 +00:00
|
|
|
if (GetSystemMetrics(SM_CMOUSEBUTTONS) >= 4) {
|
|
|
|
return kButtonExtra0 + 0;
|
|
|
|
}
|
|
|
|
break;
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
case XBUTTON2:
|
2004-12-29 21:12:05 +00:00
|
|
|
if (GetSystemMetrics(SM_CMOUSEBUTTONS) >= 5) {
|
|
|
|
return kButtonExtra0 + 1;
|
|
|
|
}
|
|
|
|
break;
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
return kButtonNone;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return kButtonNone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-01 08:56:24 +00:00
|
|
|
bool
|
|
|
|
CMSWindowsScreen::mapPressFromEvent(WPARAM msg, LPARAM) const
|
|
|
|
{
|
|
|
|
switch (msg) {
|
|
|
|
case WM_LBUTTONDOWN:
|
|
|
|
case WM_MBUTTONDOWN:
|
|
|
|
case WM_RBUTTONDOWN:
|
|
|
|
case WM_XBUTTONDOWN:
|
|
|
|
case WM_LBUTTONDBLCLK:
|
|
|
|
case WM_MBUTTONDBLCLK:
|
|
|
|
case WM_RBUTTONDBLCLK:
|
|
|
|
case WM_XBUTTONDBLCLK:
|
|
|
|
case WM_NCLBUTTONDOWN:
|
|
|
|
case WM_NCMBUTTONDOWN:
|
|
|
|
case WM_NCRBUTTONDOWN:
|
|
|
|
case WM_NCXBUTTONDOWN:
|
|
|
|
case WM_NCLBUTTONDBLCLK:
|
|
|
|
case WM_NCMBUTTONDBLCLK:
|
|
|
|
case WM_NCRBUTTONDBLCLK:
|
|
|
|
case WM_NCXBUTTONDBLCLK:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case WM_LBUTTONUP:
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
case WM_RBUTTONUP:
|
|
|
|
case WM_XBUTTONUP:
|
|
|
|
case WM_NCLBUTTONUP:
|
|
|
|
case WM_NCMBUTTONUP:
|
|
|
|
case WM_NCRBUTTONUP:
|
|
|
|
case WM_NCXBUTTONUP:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-28 14:07:58 +00:00
|
|
|
void
|
2007-06-17 11:19:18 +00:00
|
|
|
CMSWindowsScreen::updateKeysCB(void*)
|
2004-03-28 14:07:58 +00:00
|
|
|
{
|
2007-06-17 11:19:18 +00:00
|
|
|
// record which keys we think are down
|
|
|
|
bool down[IKeyState::kNumButtons];
|
|
|
|
bool sendFixes = (isPrimary() && !m_isOnScreen);
|
|
|
|
if (sendFixes) {
|
|
|
|
for (KeyButton i = 0; i < IKeyState::kNumButtons; ++i) {
|
|
|
|
down[i] = m_keyState->isKeyDown(i);
|
2004-03-28 14:07:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
// update layouts if necessary
|
|
|
|
if (m_keyState->didGroupsChange()) {
|
|
|
|
CPlatformScreen::updateKeyMap();
|
|
|
|
}
|
2004-03-28 14:07:58 +00:00
|
|
|
|
2007-06-17 11:19:18 +00:00
|
|
|
// now update the keyboard state
|
|
|
|
CPlatformScreen::updateKeyState();
|
|
|
|
|
|
|
|
// now see which keys we thought were down but now think are up.
|
|
|
|
// send key releases for these keys to the active client.
|
|
|
|
if (sendFixes) {
|
|
|
|
KeyModifierMask mask = pollActiveModifiers();
|
|
|
|
for (KeyButton i = 0; i < IKeyState::kNumButtons; ++i) {
|
|
|
|
if (down[i] && !m_keyState->isKeyDown(i)) {
|
|
|
|
m_keyState->sendKeyEvent(getEventTarget(),
|
|
|
|
false, false, kKeyNone, mask, 1, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
}
|
|
|
|
|
2004-05-02 16:06:04 +00:00
|
|
|
void
|
|
|
|
CMSWindowsScreen::forceShowCursor()
|
|
|
|
{
|
|
|
|
// check for mouse
|
|
|
|
m_hasMouse = (GetSystemMetrics(SM_MOUSEPRESENT) != 0);
|
|
|
|
|
|
|
|
// decide if we should show the mouse
|
|
|
|
bool showMouse = (!m_hasMouse && !m_isPrimary && m_isOnScreen);
|
|
|
|
|
|
|
|
// show/hide the mouse
|
|
|
|
if (showMouse != m_showingMouse) {
|
|
|
|
if (showMouse) {
|
|
|
|
m_oldMouseKeys.cbSize = sizeof(m_oldMouseKeys);
|
|
|
|
m_gotOldMouseKeys =
|
|
|
|
(SystemParametersInfo(SPI_GETMOUSEKEYS,
|
|
|
|
m_oldMouseKeys.cbSize, &m_oldMouseKeys, 0) != 0);
|
|
|
|
if (m_gotOldMouseKeys) {
|
|
|
|
m_mouseKeys = m_oldMouseKeys;
|
|
|
|
m_showingMouse = true;
|
|
|
|
updateForceShowCursor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (m_gotOldMouseKeys) {
|
|
|
|
SystemParametersInfo(SPI_SETMOUSEKEYS,
|
|
|
|
m_oldMouseKeys.cbSize,
|
|
|
|
&m_oldMouseKeys, SPIF_SENDCHANGE);
|
|
|
|
m_showingMouse = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CMSWindowsScreen::updateForceShowCursor()
|
|
|
|
{
|
|
|
|
DWORD oldFlags = m_mouseKeys.dwFlags;
|
|
|
|
|
|
|
|
// turn on MouseKeys
|
|
|
|
m_mouseKeys.dwFlags = MKF_AVAILABLE | MKF_MOUSEKEYSON;
|
|
|
|
|
|
|
|
// make sure MouseKeys is active in whatever state the NumLock is
|
|
|
|
// not currently in.
|
|
|
|
if ((m_keyState->getActiveModifiers() & KeyModifierNumLock) != 0) {
|
|
|
|
m_mouseKeys.dwFlags |= MKF_REPLACENUMBERS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update MouseKeys
|
|
|
|
if (oldFlags != m_mouseKeys.dwFlags) {
|
|
|
|
SystemParametersInfo(SPI_SETMOUSEKEYS,
|
|
|
|
m_mouseKeys.cbSize, &m_mouseKeys, SPIF_SENDCHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
LRESULT CALLBACK
|
|
|
|
CMSWindowsScreen::wndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
assert(s_screen != NULL);
|
|
|
|
|
|
|
|
LRESULT result = 0;
|
|
|
|
if (!s_screen->onEvent(hwnd, msg, wParam, lParam, &result)) {
|
|
|
|
result = DefWindowProc(hwnd, msg, wParam, lParam);
|
2002-07-12 20:41:23 +00:00
|
|
|
}
|
2003-09-02 22:05:47 +00:00
|
|
|
|
|
|
|
return result;
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
2007-06-17 11:19:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// CMSWindowsScreen::CHotKeyItem
|
|
|
|
//
|
|
|
|
|
|
|
|
CMSWindowsScreen::CHotKeyItem::CHotKeyItem(UINT keycode, UINT mask) :
|
|
|
|
m_keycode(keycode),
|
|
|
|
m_mask(mask)
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
UINT
|
|
|
|
CMSWindowsScreen::CHotKeyItem::getVirtualKey() const
|
|
|
|
{
|
|
|
|
return m_keycode;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CMSWindowsScreen::CHotKeyItem::operator<(const CHotKeyItem& x) const
|
|
|
|
{
|
|
|
|
return (m_keycode < x.m_keycode ||
|
|
|
|
(m_keycode == x.m_keycode && m_mask < x.m_mask));
|
|
|
|
}
|