Builtin Structures#
KeyEvent
#
This structure is generated and passed to the key press and release callbacks of the FocusScope
element.
Fields#
text
(string): The unicode representation of the key pressed.modifiers
(KeyboardModifiers): The keyboard modifiers active at the time of the key press event.
KeyboardModifiers
#
KeyboardModifier provides booleans to indicate possible modifier keys on a keyboard, such as Shift, Control, etc.
This structure is generated as part of KeyEvent
On macOS, the command key is mapped to the meta modifier.
On Windows, the windows key is mapped to the meta modifier.
Fields#
alt
(bool): Indicates the alt key on a keyboard.control
(bool): Indicates the control key on a keyboard.shift
(bool): Indicates the shift key on a keyboard.meta
(bool): Indicates the command key on macos.
Point
#
This structure represents a point with x and y coordinate
Fields#
x
(length)y
(length)
PointerEvent
#
Represents a Pointer event sent by the windowing system.
This structure is passed to the pointer-event
callback of the TouchArea
element.
Fields#
button
(PointerEventButton): The button that was pressed or releasedkind
(PointerEventKind): The kind of the eventmodifiers
(KeyboardModifiers): The keyboard modifiers pressed during the event
PointerScrollEvent
#
Represents a Pointer scroll (or wheel) event sent by the windowing system.
This structure is passed to the scroll-event
callback of the TouchArea
element.
Fields#
delta_x
(length): The amount of pixel in the horizontal directiondelta_y
(length): The amount of pixel in the vertical directionmodifiers
(KeyboardModifiers): The keyboard modifiers pressed during the event
StandardListViewItem
#
Represents an item in a StandardListView and a StandardTableView.
Fields#
text
(string): The text content of the item
TableColumn
#
This is used to define the column and the column header of a TableView
Fields#
title
(string): The title of the column headermin_width
(length): The minimum column width (logical length)horizontal_stretch
(float): The horizontal column stretchsort_order
(SortOrder): Sorts the columnwidth
(length): the actual width of the column (logical length)