/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include "UBIdleTimer.h"
#include
#include
#include
#include
#include "UBApplication.h"
#include "UBApplicationController.h"
#include "board/UBBoardController.h"
#include "board/UBBoardView.h"
#include "core/memcheck.h"
UBIdleTimer::UBIdleTimer(QObject *parent)
: QObject(parent)
, mCursorIsHidden(false)
{
startTimer(100);
}
UBIdleTimer::~UBIdleTimer()
{
// NOOP
}
bool UBIdleTimer::eventFilter(QObject *obj, QEvent *event)
{
// if the event is an input event (mouse / tablet / keyboard)
if (dynamic_cast(event))
{
mLastInputEventTime = QDateTime::currentDateTime();
if (mCursorIsHidden)
{
QApplication::restoreOverrideCursor();
mCursorIsHidden = false;
}
}
return QObject::eventFilter(obj, event);
}
void UBIdleTimer::timerEvent(QTimerEvent *event)
{
Q_UNUSED(event);
bool hasWaitCuror = (UBApplication::overrideCursor() &&
(UBApplication::overrideCursor()->shape() == Qt::WaitCursor));
if (!mCursorIsHidden
&& (mLastInputEventTime.secsTo(QDateTime::currentDateTime()) >= 2)
&& UBApplication::boardController
&& UBApplication::boardController->controlView()
&& UBApplication::boardController->controlView()->hasFocus()
&& !hasWaitCuror)
{
QApplication::setOverrideCursor(QCursor(Qt::BlankCursor));
mCursorIsHidden = true;
}
}