Revert "Revert "Used input source ID as the key in group map #2765""
This reverts commit a70cba80ea
.
This commit is contained in:
parent
c772a59572
commit
57950d39a3
|
@ -392,15 +392,17 @@ OSXKeyState::pollActiveModifiers() const
|
|||
SInt32
|
||||
OSXKeyState::pollActiveGroup() const
|
||||
{
|
||||
bool layoutValid = true;
|
||||
TISInputSourceRef keyboardLayout = TISCopyCurrentKeyboardLayoutInputSource();
|
||||
CFDataRef id = (CFDataRef)TISGetInputSourceProperty(
|
||||
keyboardLayout, kTISPropertyInputSourceID);
|
||||
|
||||
if (layoutValid) {
|
||||
GroupMap::const_iterator i = m_groupMap.find(keyboardLayout);
|
||||
GroupMap::const_iterator i = m_groupMap.find(id);
|
||||
if (i != m_groupMap.end()) {
|
||||
return i->second;
|
||||
}
|
||||
}
|
||||
|
||||
LOG((CLOG_DEBUG "can't get the active group, use the first group instead"));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -427,7 +429,9 @@ OSXKeyState::getKeyMap(synergy::KeyMap& keyMap)
|
|||
m_groupMap.clear();
|
||||
SInt32 numGroups = (SInt32)m_groups.size();
|
||||
for (SInt32 g = 0; g < numGroups; ++g) {
|
||||
m_groupMap[m_groups[g]] = g;
|
||||
CFDataRef id = (CFDataRef)TISGetInputSourceProperty(
|
||||
m_groups[g], kTISPropertyInputSourceID);
|
||||
m_groupMap[id] = g;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ private:
|
|||
KeyButtonOffset = 1
|
||||
};
|
||||
|
||||
typedef std::map<KeyLayout, SInt32> GroupMap;
|
||||
typedef std::map<CFDataRef, SInt32> GroupMap;
|
||||
typedef std::map<UInt32, KeyID> VirtualKeyMap;
|
||||
|
||||
VirtualKeyMap m_virtualKeyMap;
|
||||
|
|
Loading…
Reference in New Issue