Logo


search API (or start typing anywhere)


WindowOptions

mint.WindowOptions

Options for constructing a window


typedef


   

Members


y
y : Null<Float>
The control y position, relative to its container
x
x : Null<Float>
The control x position, relative to its container
w_min
w_min : Null<Float>
The control minimum width
w_max
w_max : Null<Float>
The control maximum width
w
w : Null<Float>
The control width
visible
visible : Null<Bool>
Whether or not the control is visible at creation
title
title : Null<String>
The title of the window to display as a label
text_size
text_size : Null<Float>
The text size for the title text
resizable
resizable : Null<Bool>
Whether or not the window can be resized by it’s bottom right corner
rendering
rendering : Null<mint.render.Rendering>
The render service that provides this instance with an implementation. Defaults to using the owning canvas render service if not specified
renderable
renderable : Null<Bool>
Whether or not the control emits render signals from the canvas render call
parent
parent : Null<mint.Control>
The control parent, if any
options
options : Null<>
Generic framework/user specific options, which can be strong typed on the receiving end.
name
name : Null<String>
The control name
moveable
moveable : Null<Bool>
Whether or not the window can be moved by it’s title bar
mouse_input
mouse_input : Null<Bool>
Whether or not the control responds to mouse input
key_input
key_input : Null<Bool>
Whether or not the control responds to key input
h_min
h_min : Null<Float>
The control minimum height
h_max
h_max : Null<Float>
The control maximum height
h
h : Null<Float>
The control height
focusable
focusable : Null<Bool>
Whether or not the window is focusable (bring to front on click)
depth
depth : Null<Float>
The control depth. Usually set internally
collapsible
collapsible : Null<Bool>
Whether or not the window is collapsible
closable
closable : Null<Bool>
Whether or not the window can be closed by the top right corner