#ifndef __KScreensaverIface_h__ #define __KScreensaverIface_h__ #include class KScreensaverIface : public DCOPObject { K_DCOP public: KScreensaverIface() : DCOPObject("KScreensaverIface") {} k_dcop: /** Lock the screen now even if the screensaver does not lock by default */ virtual void lock() = 0; /** Start the screensaver now. If the user has locking enabled, the screen is locked also */ virtual void save() = 0; /** Quit the screensaver if it is running */ virtual void quit() = 0; /** Is the screensaver enabled? */ virtual bool isEnabled() = 0; /** * Enable/disable the screensaver * returns true if the action succeeded */ virtual bool enable(bool e) = 0; /** Is the screen currently blanked? */ virtual bool isBlanked() = 0; /** Reload the screensaver configuration */ virtual void configure() = 0; /** * Set the screensaver to blank (and possibly lock). * This method does not actually start the screensaver. */ virtual void setBlankOnly(bool blankOnly) = 0; /*** * @internal */ virtual void saverLockReady() = 0; }; #endif