2 * Copyright (C) 2015-2016 Team Kodi
5 * This Program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This Program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this Program; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
21 #include "JoystickMonitor.h"
22 #include "Application.h"
23 #include "input/InputManager.h"
25 using namespace JOYSTICK
;
27 bool CJoystickMonitor::OnButtonMotion(unsigned int buttonIndex
, bool bPressed
)
31 CInputManager::GetInstance().SetMouseActive(false);
38 bool CJoystickMonitor::OnHatMotion(unsigned int hatIndex
, HAT_STATE state
)
40 if (state
!= HAT_STATE::UNPRESSED
)
42 CInputManager::GetInstance().SetMouseActive(false);
49 bool CJoystickMonitor::OnAxisMotion(unsigned int axisIndex
, float position
)
53 CInputManager::GetInstance().SetMouseActive(false);
60 bool CJoystickMonitor::ResetTimers(void)
62 g_application
.ResetSystemIdleTimer();
63 g_application
.ResetScreenSaver();
64 return g_application
.WakeUpScreenSaverAndDPMS();