Sets whether the Window will be created full-screen with FullScreenOptions \a options. Default is \c false. If \t true, FullScreenOptions mode defaults to kiosk.
| 165 | const FullScreenOptions& getFullScreenOptions() const { return mFullScreenOptions; } |
| 166 | //! Sets whether the Window will be created full-screen with FullScreenOptions \a options. Default is \c false. If \t true, FullScreenOptions mode defaults to kiosk. |
| 167 | void setFullScreen( bool fullScreen = true, const FullScreenOptions &options = FullScreenOptions() ) { mFullScreen = fullScreen; mFullScreenOptions = options; } |
| 168 | //! Sets whether the Window will be created full-screen. Default is \c false. |
| 169 | Format& fullScreen( bool fs = true ) { mFullScreen = fs; return *this; } |
| 170 | //! Returns the size in points at which the Window will be created. Default is 640 x 480. |
no test coverage detected