{{+bindTo:partials.standard_nacl_article}}
| Fullscreen (const InstanceHandle &instance) | |
| virtual | ~Fullscreen () |
| bool | IsFullscreen () |
| bool | SetFullscreen (bool fullscreen) |
| bool | GetScreenSize (Size *size) |
The Fullscreen class allowing you to check and toggle fullscreen mode.
| pp::Fullscreen::Fullscreen | ( | const InstanceHandle & | instance | ) | [explicit] |
A constructor for creating a Fullscreen.
| [in] | instance | The instance with which this resource will be associated. |
| virtual pp::Fullscreen::~Fullscreen | ( | ) | [virtual] |
Destructor.
| bool pp::Fullscreen::GetScreenSize | ( | Size * | size | ) |
GetScreenSize() gets the size of the screen in pixels.
The module instance will be resized to this size when SetFullscreen() is called to enter fullscreen mode.
| [out] | size | The size of the entire screen in pixels. |
true on success or false on failure. | bool pp::Fullscreen::IsFullscreen | ( | ) |
IsFullscreen() checks whether the module instance is currently in fullscreen mode.
true if the module instance is in fullscreen mode, false if the module instance is not in fullscreen mode. | bool pp::Fullscreen::SetFullscreen | ( | bool | fullscreen | ) |
SetFullscreen() switches the module instance to and from fullscreen mode.
The transition to and from fullscreen mode is asynchronous. During the transition, IsFullscreen() will return the previous value and no 2D or 3D device can be bound. The transition ends at DidChangeView() when IsFullscreen() returns the new value. You might receive other DidChangeView() calls while in transition.
The transition to fullscreen mode can only occur while the browser is processing a user gesture, even if true is returned.
| [in] | fullscreen | true to enter fullscreen mode, or false to exit fullscreen mode. |
true on success or false on failure.