blob: 55253f1cd9dc5ee28b52c3740bc1048056ce8892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- @meta
--- A distinct full-screen UI. Each screen has an associated LVGL UI tree and
--- group, and can be shown on-screen using the 'backstack' module.
--- Screens make use of prototype inheritance in order to provide a consistent
--- interface for the C++ firmware to work with.
--- See [Programming in Lua, chapter 16](https://www.lua.org/pil/16.2.html).
--- @class screen
local screen = {}
--- Creates a new screen instance.
function screen:new(params) end
--- Called just before this screen is first displayed to the user.
function screen:createUi() end
--- Called whenever this screen is displayed to the user.
function screen:onShown() end
--- Called whenever this screen is being hidden by the user; either because a
--- new screen is being pushed on top of this way, or because this screen has
--- been popped off of the stack.
function screen:onHidden() end
return screen
|