You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kdesktop/xautolock.h

78 lines
1.7 KiB

//===========================================================================
//
// This file is part of the KDE project
//
// Copyright (c) 1999 Martin R. Jones <mjones@kde.org>
//
#ifndef __XAUTOLOCK_H__
#define __XAUTOLOCK_H__
#include <tqwidget.h>
#include <X11/Xlib.h>
//===========================================================================
//
// Detect user inactivity.
// Named XAutoLock after the program that it is based on.
//
class XAutoLock : public TQWidget
{
TQ_OBJECT
public:
XAutoLock();
~XAutoLock();
//-----------------------------------------------------------------------
//
// The time in seconds of continuous inactivity.
//
void setTimeout(int t);
void setDPMS(bool s);
//-----------------------------------------------------------------------
//
// Start watching Activity
//
void start();
//-----------------------------------------------------------------------
//
// Stop watching Activity
//
void stop();
//-----------------------------------------------------------------------
//
// Should be called only from a slot connected to the timeout() signal. Will
// result in the timeout() signal being emitted again with a delay (i.e. postponed).
//
void postpone();
// internal
void resetTrigger();
// internal
void setTrigger( time_t );
// internal
bool ignoreWindow( WId );
signals:
void timeout();
protected:
virtual void timerEvent(TQTimerEvent *ev);
virtual bool x11Event( XEvent* );
protected:
int mTimerId;
int mTimeout;
time_t mTrigger;
bool mActive;
time_t mLastTimeout;
bool mDPMS;
};
#endif