summaryrefslogtreecommitdiffstats
path: root/src/screensaver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/screensaver.h')
-rw-r--r--src/screensaver.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/screensaver.h b/src/screensaver.h
new file mode 100644
index 0000000..88cc992
--- /dev/null
+++ b/src/screensaver.h
@@ -0,0 +1,33 @@
+#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_ */