2009-02-27 11:54:59 +00:00
|
|
|
/*
|
2010-06-20 17:38:51 +00:00
|
|
|
* synergy-plus -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2009 The Synergy+ Project
|
2009-02-27 11:54:59 +00:00
|
|
|
* 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.
|
2010-06-20 17:38:51 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-02-27 11:54:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CPlatformScreen.h"
|
|
|
|
|
|
|
|
CPlatformScreen::CPlatformScreen()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
CPlatformScreen::~CPlatformScreen()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::updateKeyMap()
|
|
|
|
{
|
|
|
|
getKeyState()->updateKeyMap();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::updateKeyState()
|
|
|
|
{
|
|
|
|
getKeyState()->updateKeyState();
|
|
|
|
updateButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::setHalfDuplexMask(KeyModifierMask mask)
|
|
|
|
{
|
|
|
|
getKeyState()->setHalfDuplexMask(mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::fakeKeyDown(KeyID id, KeyModifierMask mask,
|
|
|
|
KeyButton button)
|
|
|
|
{
|
|
|
|
getKeyState()->fakeKeyDown(id, mask, button);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::fakeKeyRepeat(KeyID id, KeyModifierMask mask,
|
|
|
|
SInt32 count, KeyButton button)
|
|
|
|
{
|
|
|
|
getKeyState()->fakeKeyRepeat(id, mask, count, button);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::fakeKeyUp(KeyButton button)
|
|
|
|
{
|
|
|
|
getKeyState()->fakeKeyUp(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::fakeAllKeysUp()
|
|
|
|
{
|
|
|
|
getKeyState()->fakeAllKeysUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CPlatformScreen::fakeCtrlAltDel()
|
|
|
|
{
|
|
|
|
return getKeyState()->fakeCtrlAltDel();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CPlatformScreen::isKeyDown(KeyButton button) const
|
|
|
|
{
|
|
|
|
return getKeyState()->isKeyDown(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyModifierMask
|
|
|
|
CPlatformScreen::getActiveModifiers() const
|
|
|
|
{
|
|
|
|
return getKeyState()->getActiveModifiers();
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyModifierMask
|
|
|
|
CPlatformScreen::pollActiveModifiers() const
|
|
|
|
{
|
|
|
|
return getKeyState()->pollActiveModifiers();
|
|
|
|
}
|
|
|
|
|
|
|
|
SInt32
|
|
|
|
CPlatformScreen::pollActiveGroup() const
|
|
|
|
{
|
|
|
|
return getKeyState()->pollActiveGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CPlatformScreen::pollPressedKeys(KeyButtonSet& pressedKeys) const
|
|
|
|
{
|
|
|
|
getKeyState()->pollPressedKeys(pressedKeys);
|
|
|
|
}
|