summaryrefslogtreecommitdiffstats
path: root/kdesktop/lockeng.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-04-08 15:18:50 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-04-08 15:18:50 -0500
commita17bfb0b96f5b255f41d03c3143d1eca04c88e36 (patch)
tree204af35201bfebfc88166074cfa8f2318e5dc98c /kdesktop/lockeng.h
parente80c2baea0319decdad80c3c98cc7b28a010b0f0 (diff)
downloadtdebase-a17bfb0b96f5b255f41d03c3143d1eca04c88e36.tar.gz
tdebase-a17bfb0b96f5b255f41d03c3143d1eca04c88e36.zip
Fix lockeng file formatting
Diffstat (limited to 'kdesktop/lockeng.h')
-rw-r--r--kdesktop/lockeng.h220
1 files changed, 109 insertions, 111 deletions
diff --git a/kdesktop/lockeng.h b/kdesktop/lockeng.h
index 8da2c7959..e7be7a06e 100644
--- a/kdesktop/lockeng.h
+++ b/kdesktop/lockeng.h
@@ -26,138 +26,136 @@ class TQT_DBusProxy;
* Screen saver engine. Handles screensaver window, starting screensaver
* hacks, and password entry.
*/
-class SaverEngine
- : public TQWidget,
- public KScreensaverIface
+class SaverEngine : public TQWidget, public KScreensaverIface
{
- Q_OBJECT
+ Q_OBJECT
public:
- SaverEngine();
- ~SaverEngine();
-
- /**
- * Lock the screen
- */
- virtual void lock();
-
- /**
- * Save the screen
- */
- virtual void save();
-
- /**
- * Quit the screensaver if running
- */
- virtual void quit();
-
- /**
- * return true if the screensaver is enabled
- */
- virtual bool isEnabled();
-
- /**
- * enable/disable the screensaver
- */
- virtual bool enable( bool e );
-
- /**
- * return true if the screen is currently blanked
- */
- virtual bool isBlanked();
-
- /**
- * Read and apply configuration.
- */
- virtual void configure();
-
- /**
- * Enable or disable "blank only" mode. This is useful for
- * laptops where one might not want a cpu thirsty screensaver
- * draining the battery.
- */
- virtual void setBlankOnly( bool blankOnly );
-
- /**
- * Called by kdesktop_lock when locking is in effect.
- */
- virtual void saverLockReady();
-
- /**
- * @internal
- */
- void lockScreen(bool DCOP = false);
-
- /**
- * Called by KDesktop to wait for saver engage
- * @internal
- */
- void waitForLockEngage();
+ SaverEngine();
+ ~SaverEngine();
+
+ /**
+ * Lock the screen
+ */
+ virtual void lock();
+
+ /**
+ * Save the screen
+ */
+ virtual void save();
+
+ /**
+ * Quit the screensaver if running
+ */
+ virtual void quit();
+
+ /**
+ * return true if the screensaver is enabled
+ */
+ virtual bool isEnabled();
+
+ /**
+ * enable/disable the screensaver
+ */
+ virtual bool enable( bool e );
+
+ /**
+ * return true if the screen is currently blanked
+ */
+ virtual bool isBlanked();
+
+ /**
+ * Read and apply configuration.
+ */
+ virtual void configure();
+
+ /**
+ * Enable or disable "blank only" mode. This is useful for
+ * laptops where one might not want a cpu thirsty screensaver
+ * draining the battery.
+ */
+ virtual void setBlankOnly( bool blankOnly );
+
+ /**
+ * Called by kdesktop_lock when locking is in effect.
+ */
+ virtual void saverLockReady();
+
+ /**
+ * @internal
+ */
+ void lockScreen(bool DCOP = false);
+
+ /**
+ * Called by KDesktop to wait for saver engage
+ * @internal
+ */
+ void waitForLockEngage();
public slots:
- void slotLockProcessWaiting();
- void slotLockProcessFullyActivated();
- void slotLockProcessReady();
- void handleDBusSignal(const TQT_DBusMessage&);
+ void slotLockProcessWaiting();
+ void slotLockProcessFullyActivated();
+ void slotLockProcessReady();
+ void handleDBusSignal(const TQT_DBusMessage&);
protected slots:
- void idleTimeout();
- void lockProcessExited();
- void lockProcessWaiting();
+ void idleTimeout();
+ void lockProcessExited();
+ void lockProcessWaiting();
private slots:
- void handleSecureDialog();
- void slotSAKProcessExited();
+ void handleSecureDialog();
+ void slotSAKProcessExited();
- /**
- * Enable wallpaper exports
- */
- void enableExports();
- void recoverFromHackingAttempt();
+ /**
+ * Enable wallpaper exports
+ */
+ void enableExports();
+ void recoverFromHackingAttempt();
- bool dBusReconnect();
+ bool dBusReconnect();
private:
- bool restartDesktopLockProcess();
- void dBusClose();
- bool dBusConnect();
- void onDBusServiceRegistered(const TQString&);
- void onDBusServiceUnregistered(const TQString&);
+ bool restartDesktopLockProcess();
+ void dBusClose();
+ bool dBusConnect();
+ void onDBusServiceRegistered(const TQString&);
+ void onDBusServiceUnregistered(const TQString&);
protected:
- enum SaverState { Waiting, Preparing, Engaging, Saving };
- enum LockType { DontLock, DefaultLock, ForceLock, SecureDialog };
- bool startLockProcess( LockType lock_type );
- void stopLockProcess();
- bool handleKeyPress(XKeyEvent *xke);
- void processLockTransactions();
- xautolock_corner_t applyManualSettings(int);
+ enum SaverState { Waiting, Preparing, Engaging, Saving };
+ enum LockType { DontLock, DefaultLock, ForceLock, SecureDialog };
+ bool startLockProcess( LockType lock_type );
+ void stopLockProcess();
+ bool handleKeyPress(XKeyEvent *xke);
+ void processLockTransactions();
+ xautolock_corner_t applyManualSettings(int);
protected:
- bool mEnabled;
+ bool mEnabled;
- SaverState mState;
- XAutoLock *mXAutoLock;
- TDEProcess mLockProcess;
- int mTimeout;
+ SaverState mState;
+ XAutoLock *mXAutoLock;
+ TDEProcess mLockProcess;
+ int mTimeout;
- // the original X screensaver parameters
- int mXTimeout;
- int mXInterval;
- int mXBlanking;
- int mXExposures;
+ // the original X screensaver parameters
+ int mXTimeout;
+ int mXInterval;
+ int mXBlanking;
+ int mXExposures;
- bool mBlankOnly; // only use the blanker, not the defined saver
- TQValueVector< DCOPClientTransaction* > mLockTransactions;
+ bool mBlankOnly; // only use the blanker, not the defined saver
+ TQValueVector< DCOPClientTransaction* > mLockTransactions;
private:
- TDEProcess* mSAKProcess;
- bool mTerminationRequested;
- bool mSaverProcessReady;
- struct sigaction mSignalAction;
- TQT_DBusConnection dBusConn;
- TQT_DBusProxy* dBusLocal;
- TQT_DBusProxy* dBusWatch;
- TQT_DBusProxy* systemdSession;
+ TDEProcess* mSAKProcess;
+ bool mTerminationRequested;
+ bool mSaverProcessReady;
+ struct sigaction mSignalAction;
+ TQT_DBusConnection dBusConn;
+ TQT_DBusProxy* dBusLocal;
+ TQT_DBusProxy* dBusWatch;
+ TQT_DBusProxy* systemdSession;
};
#endif