Hide mouse cursor after delay in DolphinWX

This commit is contained in:
Andrew
2017-06-24 20:10:23 -04:00
parent b440dbd998
commit 3095f585dd
3 changed files with 22 additions and 1 deletions

View File

@ -448,6 +448,10 @@ CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, wxRect geo
Bind(wxEVT_TIMER, &CFrame::PollHotkeys, this, m_poll_hotkey_timer.GetId());
m_poll_hotkey_timer.Start(1000 / 60, wxTIMER_CONTINUOUS);
m_cursor_timer.SetOwner(this);
Bind(wxEVT_TIMER, &CFrame::HandleCursorTimer, this, m_cursor_timer.GetId());
m_cursor_timer.StartOnce(MOUSE_HIDE_DELAY);
// Shut down cleanly on SIGINT, SIGTERM (Unix) and on various signals on Windows
m_handle_signal_timer.SetOwner(this);
Bind(wxEVT_TIMER, &CFrame::HandleSignal, this, m_handle_signal_timer.GetId());
@ -1122,6 +1126,13 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
void CFrame::OnMouse(wxMouseEvent& event)
{
if (!SConfig::GetInstance().bHideCursor && main_frame->RendererHasFocus() &&
Core::GetState() == Core::State::Running)
{
m_render_parent->SetCursor(wxNullCursor);
m_cursor_timer.StartOnce(MOUSE_HIDE_DELAY);
}
// next handlers are all for FreeLook, so we don't need to check them if disabled
if (!g_Config.bFreeLook)
{
@ -1699,6 +1710,13 @@ void CFrame::HandleFrameSkipHotkeys()
}
}
void CFrame::HandleCursorTimer(wxTimerEvent& event)
{
if (!SConfig::GetInstance().bHideCursor && main_frame->RendererHasFocus() &&
Core::GetState() == Core::State::Running)
m_render_parent->SetCursor(wxCURSOR_BLANK);
}
void CFrame::HandleSignal(wxTimerEvent& event)
{
if (!s_shutdown_signal_received.TestAndClear())