summaryrefslogtreecommitdiffstats
path: root/klaptopdaemon/xautolock.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 12:30:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-08 12:30:30 +0900
commit7ec5a57fc3f04526f36477e22066199372beb0ee (patch)
treef46ff23820fcfbf612070cce46b7496bc766a9fd /klaptopdaemon/xautolock.cc
parent062ea53b46c9b76c78fcde2fb0df8b2411af3f39 (diff)
downloadtdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.tar.gz
tdeutils-7ec5a57fc3f04526f36477e22066199372beb0ee.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'klaptopdaemon/xautolock.cc')
-rw-r--r--klaptopdaemon/xautolock.cc277
1 files changed, 0 insertions, 277 deletions
diff --git a/klaptopdaemon/xautolock.cc b/klaptopdaemon/xautolock.cc
deleted file mode 100644
index 93834af..0000000
--- a/klaptopdaemon/xautolock.cc
+++ /dev/null
@@ -1,277 +0,0 @@
-//----------------------------------------------------------------------------
-//
-// This file is part of the KDE project
-//
-// Copyright (c) 1999 Martin R. Jones <mjones@kde.org>
-// Copyright (c) 2003 Lubos Lunak <l.lunak@kde.org>
-//
-// KDE screensaver engine
-//
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include "xautolock.h"
-#include "xautolock.moc"
-
-#include <tdeapplication.h>
-#include <kdebug.h>
-
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-#include <ctime>
-#include "xautolock_c.h"
-
-#ifdef HAVE_DPMS
-extern "C" {
-#include <X11/Xmd.h>
-#ifndef Bool
-#define Bool BOOL
-#endif
-#include <X11/extensions/dpms.h>
-
-#ifndef HAVE_DPMSINFO_PROTO
-Status DPMSInfo ( Display *, CARD16 *, BOOL * );
-#endif
-}
-#endif
-
-int xautolock_useXidle = 0;
-int xautolock_useMit = 0;
-xautolock_corner_t xautolock_corners[ 4 ];
-
-static XAutoLock* self = NULL;
-
-static int catchFalseAlarms(Display *, XErrorEvent *)
-{
- return 0;
-}
-
-//===========================================================================
-//
-// Detect user inactivity.
-// Named XAutoLock after the program that it is based on.
-//
-XAutoLock::XAutoLock()
-{
- self = this;
- int dummy = 0;
- dummy = dummy; // shut up
- xautolock_useXidle = 0;
- xautolock_useMit = 0;
-#ifdef HAVE_XIDLE
- useXidle = XidleQueryExtension( tqt_xdisplay(), &dummy, &dummy );
-#endif
-#ifdef HAVE_XSCREENSAVER
- if( !xautolock_useXidle )
- xautolock_useMit = XScreenSaverQueryExtension( tqt_xdisplay(), &dummy, &dummy );
-#endif
- if( !xautolock_useXidle && !xautolock_useMit )
- {
- kapp->installX11EventFilter( this );
- int (*oldHandler)(Display *, XErrorEvent *);
- oldHandler = XSetErrorHandler(catchFalseAlarms);
- XSync(tqt_xdisplay(), False );
- xautolock_initDiy( tqt_xdisplay());
- XSync(tqt_xdisplay(), False );
- XSetErrorHandler(oldHandler);
- }
-
- mTimeout = DEFAULT_TIMEOUT;
- mDPMS = true;
- resetTrigger();
-
- time(&mLastTimeout);
- mActive = false;
-
- mTimerId = startTimer( CHECK_INTERVAL );
-
-}
-
-//---------------------------------------------------------------------------
-//
-// Destructor.
-//
-XAutoLock::~XAutoLock()
-{
- self = NULL;
-}
-
-//---------------------------------------------------------------------------
-//
-// The time in seconds of continuous inactivity.
-//
-void XAutoLock::setTimeout(int t)
-{
- mTimeout = t;
- resetTrigger();
-}
-
-void XAutoLock::setDPMS(bool s)
-{
- mDPMS = s;
-}
-
-//---------------------------------------------------------------------------
-//
-// Start watching Activity
-//
-void XAutoLock::start()
-{
- resetTrigger();
- time(&mLastTimeout);
- mActive = true;
-}
-
-//---------------------------------------------------------------------------
-//
-// Stop watching Activity
-//
-void XAutoLock::stop()
-{
- mActive = false;
-}
-
-//---------------------------------------------------------------------------
-//
-// Reset the trigger time.
-//
-void XAutoLock::resetTrigger()
-{
- mTrigger = time(0) + mTimeout;
-}
-
-//---------------------------------------------------------------------------
-//
-// Move the trigger time in order to postpone (repeat) emitting of timeout().
-//
-void XAutoLock::postpone()
-{
- mTrigger = time(0) + 60; // delay by 60sec
-}
-
-//---------------------------------------------------------------------------
-//
-// Set the remaining time to 't', if it's shorter than already set.
-//
-void XAutoLock::setTrigger( time_t t )
-{
- if( t < mTrigger )
- mTrigger = t;
-}
-
-//---------------------------------------------------------------------------
-//
-// Process new windows and check the mouse.
-//
-void XAutoLock::timerEvent(TQTimerEvent *ev)
-{
- if (ev->timerId() != mTimerId)
- {
- return;
- }
-
- int (*oldHandler)(Display *, XErrorEvent *) = NULL;
- if( !xautolock_useXidle && !xautolock_useMit )
- { // only the diy way needs special X handler
- XSync( tqt_xdisplay(), False );
- oldHandler = XSetErrorHandler(catchFalseAlarms);
- }
-
- xautolock_processQueue();
-
- time_t now = time(0);
- if ((now > mLastTimeout && now - mLastTimeout > TIME_CHANGE_LIMIT) ||
- (mLastTimeout > now && mLastTimeout - now > TIME_CHANGE_LIMIT+1))
- {
- /* the time has changed in one large jump. This could be because
- the date was changed, or the machine was suspended. We'll just
- reset the triger. */
- resetTrigger();
- }
-
- mLastTimeout = now;
-
- xautolock_queryIdleTime( tqt_xdisplay());
- xautolock_queryPointer( tqt_xdisplay());
-
- if( !xautolock_useXidle && !xautolock_useMit )
- XSetErrorHandler(oldHandler);
-
- bool activate = false;
-
- //kdDebug() << now << " " << mTrigger << endl;
- if (now >= mTrigger)
- {
- resetTrigger();
- activate = true;
- }
-
-#ifdef HAVE_DPMS
- BOOL on;
- CARD16 state;
- DPMSInfo( tqt_xdisplay(), &state, &on );
-
- //kdDebug() << "DPMSInfo " << state << " " << on << endl;
- // If DPMS is active, it makes XScreenSaverQueryInfo() report idle time
- // that is always smaller than DPMS timeout (X bug I guess). So if DPMS
- // saving is active, simply always activate our saving too, otherwise
- // this could prevent locking from working.
- if(state == DPMSModeStandby || state == DPMSModeSuspend || state == DPMSModeOff)
- activate = true;
- if(!on && mDPMS) {
- activate = false;
- resetTrigger();
- }
-#endif
-
-#ifdef HAVE_XSCREENSAVER
- static XScreenSaverInfo* mitInfo = 0;
- if (!mitInfo) mitInfo = XScreenSaverAllocInfo ();
- if (XScreenSaverQueryInfo (tqt_xdisplay(), DefaultRootWindow (tqt_xdisplay()), mitInfo)) {
- //kdDebug() << "XScreenSaverQueryInfo " << mitInfo->state << " " << ScreenSaverDisabled << endl;
- if (mitInfo->state == ScreenSaverDisabled)
- activate = false;
- }
-#endif
-
- if(mActive && activate)
- emit timeout();
-}
-
-bool XAutoLock::x11Event( XEvent* ev )
-{
- xautolock_processEvent( ev );
-// don't futher process key events that were received only because XAutoLock wants them
- if( ev->type == KeyPress && !ev->xkey.send_event
- && !xautolock_useXidle && !xautolock_useMit
- && !TQWidget::find( ev->xkey.window ))
- return true;
- return false;
-}
-
-bool XAutoLock::ignoreWindow( WId w )
-{
- if( w != tqt_xrootwin() && TQWidget::find( w ))
- return true;
- return false;
-}
-
-extern "C"
-void xautolock_resetTriggers()
-{
- self->resetTrigger();
-}
-
-extern "C"
-void xautolock_setTrigger( time_t t )
-{
- self->setTrigger( t );
-}
-
-extern "C"
-int xautolock_ignoreWindow( Window w )
-{
- return self->ignoreWindow( w );
-}