/* * synergy -- mouse and keyboard sharing utility * Copyright (C) 2012 Synergy Si Ltd. * Copyright (C) 2004 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "synergy/PlatformScreen.h" #include "synergy/App.h" #include "synergy/ArgsBase.h" PlatformScreen::PlatformScreen(IEventQueue* events) : IPlatformScreen(events), m_draggingStarted(false), m_fakeDraggingStarted(false) { } PlatformScreen::~PlatformScreen() { // do nothing } void PlatformScreen::updateKeyMap() { getKeyState()->updateKeyMap(); } void PlatformScreen::updateKeyState() { getKeyState()->updateKeyState(); updateButtons(); } void PlatformScreen::setHalfDuplexMask(KeyModifierMask mask) { getKeyState()->setHalfDuplexMask(mask); } void PlatformScreen::fakeKeyDown(KeyID id, KeyModifierMask mask, KeyButton button) { getKeyState()->fakeKeyDown(id, mask, button); } bool PlatformScreen::fakeKeyRepeat(KeyID id, KeyModifierMask mask, SInt32 count, KeyButton button) { return getKeyState()->fakeKeyRepeat(id, mask, count, button); } bool PlatformScreen::fakeKeyUp(KeyButton button) { return getKeyState()->fakeKeyUp(button); } void PlatformScreen::fakeAllKeysUp() { getKeyState()->fakeAllKeysUp(); } bool PlatformScreen::fakeCtrlAltDel() { return getKeyState()->fakeCtrlAltDel(); } bool PlatformScreen::isKeyDown(KeyButton button) const { return getKeyState()->isKeyDown(button); } KeyModifierMask PlatformScreen::getActiveModifiers() const { return getKeyState()->getActiveModifiers(); } KeyModifierMask PlatformScreen::pollActiveModifiers() const { return getKeyState()->pollActiveModifiers(); } SInt32 PlatformScreen::pollActiveGroup() const { return getKeyState()->pollActiveGroup(); } void PlatformScreen::pollPressedKeys(KeyButtonSet& pressedKeys) const { getKeyState()->pollPressedKeys(pressedKeys); } bool PlatformScreen::isDraggingStarted() { if (App::instance().argsBase().m_enableDragDrop) { return m_draggingStarted; } return false; }