#ifndef SCREENSAVER_H_ #define SCREENSAVER_H_ namespace ScreenSaver { /** * Whether we want to allow the screen to enter * standby. * Note: If the screen is already in standby, * this will not power it on again, or disable * the screen saver, so to be safe, you might * want to call forceOn() too. * @param allow true to allow ss/standby */ void allowSaverAndStandby(bool allow); /** * Disable the screen saver (only if password * locking is disabled!), power screen on if * it's in standby. */ void forceScreenOn(); /** * Whether the screen is locked (requires password). * false if screen saver is not active, or doesn't * require password for unlocking. */ bool isLocked(); } #endif /* SCREENSAVER_H_ */