RetroShare/retroshare-gui/src/idle/idle.h
defnax 63b1758537 added idle sources
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@923 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-01-09 01:51:49 +00:00

84 lines
1.5 KiB
C++

/*
* idle.h - detect desktop idle time
* Copyright (C) 2003 Justin Karneges
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef IDLE_H
#define IDLE_H
#include <QObject>
#include <QCursor>
#include <QDateTime>
#include <QTimer>
class IdlePlatform;
class Idle : public QObject
{
Q_OBJECT
public:
Idle();
~Idle();
bool isActive() const;
bool usingPlatform() const;
void start();
void stop();
int secondsIdle();
signals:
void secondsIdle(int);
private slots:
void doCheck();
private:
class Private;
Private *d;
};
class IdlePlatform
{
public:
IdlePlatform();
~IdlePlatform();
bool init();
int secondsIdle();
private:
class Private;
Private *d;
};
class Idle::Private
{
public:
Private() {}
QPoint lastMousePos;
QDateTime idleSince;
bool active;
int idleTime;
QDateTime startTime;
QTimer checkTimer;
};
#endif