Change Video and VideoOutput docs to mention ScreenSaver
authorAngus Cummings <angus.cummings@nokia.com>
Mon, 16 Apr 2012 04:48:08 +0000 (14:48 +1000)
committerQt by Nokia <qt-info@nokia.com>
Mon, 16 Apr 2012 08:56:34 +0000 (10:56 +0200)
Change-Id: If7a03e9eafd351eec484a568802c75d955b68ecf
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
src/imports/multimedia/Video.qml
src/imports/multimedia/qdeclarativevideooutput.cpp

index 59932c0..e3a70ed 100644 (file)
@@ -83,6 +83,19 @@ import QtMultimedia 5.0
     presentation, see the \l fillMode property description.
 
     \sa MediaPlayer, VideoOutput
+
+    \section1 Screen Saver
+
+    If it is likely that an application will be playing video for an extended
+    period of time without user interaction it may be necessary to disable
+    the platform's screen saver. The \l ScreenSaver element (from \l QtSystemInfo)
+    may be used to disable the screensaver in this fashion:
+
+    \qml
+    import QtSystemInfo 5.0
+
+    ScreenSaver { screenSaverEnabled: false }
+    \endqml
 */
 
 Item {
index 81fec9d..d385333 100644 (file)
@@ -156,6 +156,19 @@ private:
     description.
 
     \sa MediaPlayer, Camera
+
+    \section1 Screen Saver
+
+    If it is likely that an application will be playing video for an extended
+    period of time without user interaction it may be necessary to disable
+    the platform's screen saver. The \l ScreenSaver element (from \l QtSystemInfo)
+    may be used to disable the screensaver in this fashion:
+
+    \qml
+    import QtSystemInfo 5.0
+
+    ScreenSaver { screenSaverEnabled: false }
+    \endqml
 */
 
 /*!