Difference between revisions of "Application:getLogicalBounds"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
m
 
Line 16: Line 16:
 
=== Example ===
 
=== Example ===
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
-- screen size as global variables
+
-- some global variables
 +
-- the actual user's screen size!
 +
screenwidth, screenheight = application:get("screenSize")
 +
-- app size
 
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
 
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
 
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
 
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
+
--print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
print("app width", myappwidth, "app height", myappheight)
+
--print("app width", myappwidth, "app height", myappheight)
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
{{Application}}
 
{{Application}}

Latest revision as of 23:20, 16 October 2024

Available since: Gideros 2017.11.3
Class: Application

Description

Returns the minimum and maximum logical space coordinates to cover full screen.

minX, minY, maxX, maxY = application:getLogicalBounds()

Return values

Returns (number) minimum x
Returns (number) minimum y
Returns (number) maximum x
Returns (number) maximum y

Example

-- some global variables
-- the actual user's screen size!
screenwidth, screenheight = application:get("screenSize")
-- app size
myappleft, myapptop, myappright, myappbot = application:getLogicalBounds()
myappwidth, myappheight = myappright - myappleft, myappbot - myapptop
--print("app left", myappleft, "app top", myapptop, "app right", myappright, "app bot", myappbot)
--print("app width", myappwidth, "app height", myappheight)