[FancyZones] Shift + StickyKeys behavior fix (#6039)

This commit is contained in:
Seraphima Zykova
2020-08-24 10:19:39 +03:00
committed by GitHub
parent f64df97652
commit 845bb466c6
8 changed files with 94 additions and 109 deletions

View File

@@ -0,0 +1,52 @@
#pragma once
#include "GenericKeyHook.h"
template<int... keys>
class KeyState
{
public:
KeyState(const std::function<void()>& callback) :
m_state(false),
m_hook(std::bind(&KeyState::onChangeState, this, std::placeholders::_1)),
m_updateCallback(callback)
{
}
inline bool state() const noexcept { return m_state; }
inline void enable()
{
m_hook.enable();
m_state = (((GetAsyncKeyState(keys) & 0x8000) || ...));
}
inline void disable()
{
m_hook.disable();
}
inline void setState(bool state) noexcept
{
if (m_state != state)
{
m_state = state;
if (m_updateCallback)
{
m_updateCallback();
}
}
}
private:
inline void onChangeState(bool state) noexcept
{
setState(state);
}
private:
std::atomic<bool> m_state;
GenericKeyHook<keys...> m_hook;
std::function<void()> m_updateCallback;
};