Difference between revisions of "Screen:setState"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Attempts to configure the screen or window, if allowed by the platform.
 
Attempts to configure the screen or window, if allowed by the platform.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
Screen:setState(state)
 
Screen:setState(state)
</source>
+
</syntaxhighlight>
 +
 
 +
'''''state''''' is the sum of the following possible values:
 +
* Screen.STATE_NORMAL '''0''': Screen/Window is normal
 +
* Screen.STATE_MINIMIZED '''1''': Screen/Window is minimized
 +
* Screen.STATE_MAXIMIZED '''2''': Screen/Window is maximized
 +
* Screen.STATE_FULLSCREEN '''4''': Screen/Window is fullscreen
 +
* Screen.STATE_ACTIVE '''8''': Screen/Window is active/focused
 +
* Screen.STATE_HIDDEN '''16''': Screen/Window is not displayed
 +
* Screen.STATE_CLOSED '''32''': Screen/Window is closed
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2017.8
Class: Screen

Description

Attempts to configure the screen or window, if allowed by the platform.

Screen:setState(state)

state is the sum of the following possible values:

  • Screen.STATE_NORMAL 0: Screen/Window is normal
  • Screen.STATE_MINIMIZED 1: Screen/Window is minimized
  • Screen.STATE_MAXIMIZED 2: Screen/Window is maximized
  • Screen.STATE_FULLSCREEN 4: Screen/Window is fullscreen
  • Screen.STATE_ACTIVE 8: Screen/Window is active/focused
  • Screen.STATE_HIDDEN 16: Screen/Window is not displayed
  • Screen.STATE_CLOSED 32: Screen/Window is closed

Parameters

state: (number) the required state of the screen