Difference between revisions of "Application:get"

From GiderosMobile
(formatting)
(added application:get("batteryLevel"))
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2015.7<br/>
 
'''Available since:''' Gideros 2015.7<br/>
'''Class:''' [[Application|Application]]<br/>
+
'''Class:''' [[Application]]<br/>
  
 
=== Description ===
 
=== Description ===
Line 14: Line 14:
 
=== Return values ===
 
=== Return values ===
 
'''Returns''' (varies) the value(s) of the setting
 
'''Returns''' (varies) the value(s) of the setting
 +
 +
=== Android ===
 +
For android this was added in Gideros 2020.4:
 +
<source lang="lua">
 +
application:get("batteryLevel")
 +
</source>
  
 
=== Examples ===
 
=== Examples ===
 +
'''Various examples'''
 
<source lang="lua">
 
<source lang="lua">
 
print(application:get("windowTitle"))
 
print(application:get("windowTitle"))
Line 26: Line 33:
 
</source>
 
</source>
  
Print a list of all available settings:
+
'''Prints a list of all available settings'''
 
<source lang="lua">
 
<source lang="lua">
 
print(application:get("help"))
 
print(application:get("help"))

Revision as of 03:09, 5 December 2020

Available since: Gideros 2015.7
Class: Application

Description

Returns the state of the desktop setting provided as string parameter.

varies = application:get(setting)

Parameters

setting (string) the name of the desktop setting

Return values

Returns (varies) the value(s) of the setting

Android

For android this was added in Gideros 2020.4:

application:get("batteryLevel")

Examples

Various examples

print(application:get("windowTitle"))
print(application:get("documentDirectory"))
print(application:get("temporaryDirectory"))
print("\n")

-- get the user download folder path
print(application:get("directory", "download")) -- prints C:/Users/xxx/Downloads

Prints a list of all available settings

print(application:get("help"))
--[[
	Accepted value for Desktop's application:get()
	- [x,y] windowPosition
	- [w,h] windowSize
	- [w,h] screenSize
	- [x,y] cursorPosition
	- [text] clipboard
	- [text] windowTitle
	- [path] directory(where//help)
	- [path] openDirectoryDialog(title|path//help)
	- [path] openFileDialog(title|path|extensions//help)
	- [path] saveFileDialog(title|path|extensions//help)
	- [path] documentDirectory
	- [path] temporaryDirectory
	0
]]
print("\n")

print(application:get("directory", "help"))
--[[
	Accepted value for directory :
	- executable
	- document
	- desktop
	- temporary
	- data
	- music
	- movies
	- pictures
	- cache
	- download
	- home
	0
]]