![]() |
Cinder
0.9.1
|
#include <Window.h>
Public Member Functions | |
FullScreenOptions () | |
FullScreenOptions & | kioskMode (bool enable=true) |
FullScreenOptions & | secondaryDisplayBlanking (bool enable=true) |
FullScreenOptions & | exclusive (bool enable=true) |
FullScreenOptions & | display (DisplayRef display) |
DisplayRef | getDisplay () const |
bool | isKioskModeEnabled () const |
bool | isSecondaryDisplayBlankingEnabled () const |
bool | isExclusive () const |
Options passed when entering fullscreen.
cinder::app::FullScreenOptions::FullScreenOptions | ( | ) |
FullScreenOptions& cinder::app::FullScreenOptions::kioskMode | ( | bool | enable = true | ) |
(OS X only) Sets the fullscreen mode to 'kiosk', which means don't use the 10.7 way of animating to fullscreen. Default is true
.
FullScreenOptions& cinder::app::FullScreenOptions::secondaryDisplayBlanking | ( | bool | enable = true | ) |
Sets whether secondary displays should be blanked (made black). Default is false
.
FullScreenOptions& cinder::app::FullScreenOptions::exclusive | ( | bool | enable = true | ) |
(OS X only) Sets whether the Window related to these options is the only accessible window. Default is false
.
FullScreenOptions& cinder::app::FullScreenOptions::display | ( | DisplayRef | display | ) |
DisplayRef cinder::app::FullScreenOptions::getDisplay | ( | ) | const |
bool cinder::app::FullScreenOptions::isKioskModeEnabled | ( | ) | const |
Returns whether kiosk mode is enabled.
bool cinder::app::FullScreenOptions::isSecondaryDisplayBlankingEnabled | ( | ) | const |
Returns whether blanking of secondary displays in enabled. Default is false
.
bool cinder::app::FullScreenOptions::isExclusive | ( | ) | const |
Returns whether the Window related to these options is the only accessible window.