Removed ignoreNumLock option. It doesn't really seem to be

necessary.
This commit is contained in:
crs
2003-07-13 18:14:35 +00:00
parent f6683d3cad
commit be07a171cc
7 changed files with 18 additions and 73 deletions

View File

@@ -445,11 +445,6 @@ CServerProxy::enter()
m_seqNum = seqNum;
}
// ignore num lock if so desired
if (m_ignoreNumLock) {
mask &= ~KeyModifierNumLock;
}
// forward
getClient()->enter(x, y, seqNum, static_cast<KeyModifierMask>(mask), false);
}
@@ -525,12 +520,6 @@ CServerProxy::keyDown()
mask2 != static_cast<KeyModifierMask>(mask))
LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2));
// ignore num lock if so desired
if (id2 == kKeyNumLock && m_ignoreNumLock) {
LOG((CLOG_DEBUG1 "ignoring num lock"));
return;
}
// forward
getClient()->keyDown(id2, mask2, button);
}
@@ -555,12 +544,6 @@ CServerProxy::keyRepeat()
mask2 != static_cast<KeyModifierMask>(mask))
LOG((CLOG_DEBUG1 "key repeat translated to id=%d, mask=0x%04x", id2, mask2));
// ignore num lock if so desired
if (id2 == kKeyNumLock && m_ignoreNumLock) {
LOG((CLOG_DEBUG1 "ignoring num lock"));
return;
}
// forward
getClient()->keyRepeat(id2, mask2, count, button);
}
@@ -584,12 +567,6 @@ CServerProxy::keyUp()
mask2 != static_cast<KeyModifierMask>(mask))
LOG((CLOG_DEBUG1 "key up translated to id=%d, mask=0x%04x", id2, mask2));
// ignore num lock if so desired
if (id2 == kKeyNumLock && m_ignoreNumLock) {
LOG((CLOG_DEBUG1 "ignoring num lock"));
return;
}
// forward
getClient()->keyUp(id2, mask2, button);
}
@@ -707,9 +684,6 @@ CServerProxy::resetOptions()
if (m_heartRate >= 0.0) {
CProtocolUtil::writef(getOutputStream(), kMsgCNoop);
}
// don't ignore num lock
m_ignoreNumLock = false;
}
void
@@ -752,9 +726,6 @@ CServerProxy::setOptions()
CProtocolUtil::writef(getOutputStream(), kMsgCNoop);
}
}
else if (options[i] == kOptionIgnoreNumLock) {
m_ignoreNumLock = true;
}
if (id != kKeyModifierIDNull) {
m_modifierTranslationTable[id] =
static_cast<KeyModifierID>(options[i + 1]);