Application states in MeeGo 1.2 Harmattan
m (Croozeus - - →Application states) |
(SeemaB -) |
||
| Line 38: | Line 38: | ||
| − | The change in the either of the state occurs by the user interaction. The application's state transition can be detected by '''platformWindow.windowState'''. | + | The change in the either of the state occurs by the user interaction. The application's state transition can be detected by '''platformWindow.windowState'''. |
| + | |||
| + | Following values can be retrieved from windowState: | ||
| + | :*windowState.visible | ||
| + | :*windowState.active | ||
| + | :*windowState.animating | ||
| + | :*windowState.viewMode | ||
| + | :*windowState.Fullsize | ||
| + | :*windowState.Thumbnail | ||
| + | :*windowState.viewModeString | ||
For Example, | For Example, | ||
Revision as of 20:07, 3 October 2011
This article explains the two states of an application in MeeGo 1.2 Harmattan
Article Metadata
Compatibility
Platform(s): MeeGo 1.2 Harmattan
Article
Created: girishpadia
(18 Sep 2011)
Last edited: SeemaB
(03 Oct 2011)
Introduction
This article explains the two states of an application in MeeGo 1.2 Harmattan
Application states
If your MeeGo 1.2 Harmattan (known as Harmattan in developer community) application is running, it may be in the following two states.
| Application State | Description |
|---|---|
| Active State |
|
| Minimize State |
|
The change in the either of the state occurs by the user interaction. The application's state transition can be detected by platformWindow.windowState.
Following values can be retrieved from windowState:
- windowState.visible
- windowState.active
- windowState.animating
- windowState.viewMode
- windowState.Fullsize
- windowState.Thumbnail
- windowState.viewModeString
For Example,
if (platformWindow.active)
// do something
else
// do something
More Information
The more details can be obtained from here

