Usage:
gui.{func_or_field}
This table exposes the GUI system of the software.
Type: context
GUI context.
Type: notification_system
Notification system.
Type: context_input
Input context.
Wraps a control into a layout consisting of a label and that specific control. You should add this new control to groupboxes if you want your control to be displayed nicely. Additionally, you can add any extra controls to the returned one - those will get stacked to the left side of your initial control.
Arguments
Returns
Type
Description
Layout object.
Example
In this section, the most common gui types are listed, that are not particularly bound to a specific part of the gui.
This type represents a bitset value.
Maximal bit number for this type is 63. Setting or getting any bits outside of that range will cause a crash.
Resets the value.
Arguments
None.
Returns
Nothing.
Example
Returns the raw value.
Arguments
None.
Returns
Type
Description
int
Raw value.
Example
Sets the raw value.
Arguments
Name
Type
Description
val
int
Raw value.
Returns
Nothing.
Example
Returns true
if no bits are set.
Arguments
None.
Returns
Type
Description
bool
true
if no bits are set.
Example
Enables a bit.
Arguments
Name
Type
Description
bit
int
Bit number.
Returns
Nothing.
Example
Disables a bit.
Arguments
Name
Type
Description
bit
int
Bit number.
Returns
Nothing.
Example
Returns bit state.
Arguments
Name
Type
Description
bit
int
Bit number.
Returns
Type
Description
bool
Bit status.
Example
Toggles bit state.
Arguments
Name
Type
Description
bit
int
Bit number.
Returns
Nothing.
Example
This type represents the GUI context.
Finds a control by ID.
Arguments
Name
Type
Description
id
string
Control ID.
Returns
Type
Description
<control>?
Casted control. Returns nil
if the control was not found, or casting failed.
Example
Field
Type: user_t
User's basic information.
This type represents basic user information.
Type: texture?
User's avatar. May be nil
.
Type: string
User's username.
This type represents the GUI input context.
Returns current cursor position.
Arguments
None.
Returns
Type
Description
Cursor position.
Example
Returns previous cursor position.
Arguments
None.
Returns
Type
Description
Previous cursor position.
Example
Delta value between previous and current cursor positions.
Arguments
None.
Returns
Type
Description
Cursor delta.
Example
Returns true
if the cursor did move since the last input.
Arguments
None.
Returns
Type
Description
bool
true
if moved.
Example
Returns true
if mouse scroll wheel did move since the last input.
Arguments
None.
Returns
Type
Description
bool
true
if moved.
Example
Returns true
if any mouse key's state had changed.
Arguments
None.
Returns
Type
Description
bool
true
if processed.
Example
Returns true
if any key was released since the last input.
Arguments
None.
Returns
Type
Description
bool
true
if released.
Example
Returns the amount of rows scrolled this input.
Arguments
None.
Returns
Type
Description
float
Rows scrolled.
Example
Returns true
if the mouse key is up (depressed).
Arguments
Name
Type
Description
Returns
Type
Description
bool
true
if depressed.
Example
Returns true
if the mouse key is down (pressed).
Arguments
Name
Type
Description
Returns
Type
Description
bool
true
if pressed.
Example
Returns true
if the mouse key is clicked (switched from depressed to pressed state).
Arguments
Name
Type
Description
Returns
Type
Description
bool
true
if clicked.
Example
Returns true
if the mouse key is released (switched from pressed to depressed state).
Arguments
Name
Type
Description
Returns
Type
Description
bool
true
if released.
Example
Returns true
if any key's state had changed.
Arguments
None.
Returns
Type
Description
bool
true
if state changed.
Example
Returns true
if a key is up (depressed).
Arguments
Name
Type
Description
k
int
Virtual key.
Returns
Type
Description
bool
true
if depressed.
Example
Returns true
if a key is down (pressed).
Arguments
Name
Type
Description
k
int
Virtual key.
Returns
Type
Description
bool
true
if pressed.
Example
Returns true
if a key is clicked (switched from depressed to pressed state).
Arguments
Name
Type
Description
k
int
Virtual key.
Returns
Type
Description
bool
true
if clicked.
Example
Returns true
if a key is released (switched from pressed to depressed state).
Arguments
Name
Type
Description
k
int
Virtual key.
Returns
Type
Description
bool
true
if released.
Example
This type represents a notification system.
Adds a notification to the list.
Arguments
Name
Type
Description
Returns
Nothing.
Example
This type represents a notification item.
Constructs the notification.
Arguments
Returns
Type
Description
notification
Notification object.
Example
This type represents an abstract GUI control.
Type: int
Control ID.
Type: string
String representation of control's ID. This may be empty for some controls.
Type: bool
Control's visibility state.
Type: control?
Parent control. Might be nil
on some controls.
Type: control_type
Control's type.
Type: bool
If set to true
, will mark this control to the inactive state.
Type: string
Tooltip replacement to show when control is inactive.
Type: color
Label color override for inactive controls.
Type: string
Tooltip text.
Type: table[string]
Alias list for this control. Used in search box to support different naming (e.g. if a user searches for "Double tap", will find "Rapid fire" instead).
Returns true
if any of the control's hotkeys are active.
Arguments
None.
Returns
Type
Description
bool
true
if any hotkey is active.
Example
Changes visibility state for this control.
Calling this method on controls that are located in layouts with large amount of other controls will inevitably cause performance issues due to auto-stacking.
Arguments
Name
Type
Description
val
bool
Visibility state.
Returns
Nothing.
Example
Adds a callback to this control.
Arguments
Name
Type
Description
cbk
function
Callback.
Returns
Nothing.
Example
Attempts to downcast the control to the correct type.
Due to Lua engine's limitations, it is impossible to automatically downcast variables. Usually there is no need to call this method, unless you found some control that wasn't somehow already cast to the desired type. find()
methods automatically perform the cast to the correct type.
Arguments
None.
Returns
Type
Description
<control>
New type, if any.
Example
Resets control's state. This action is usually required if you change control's value directly by interacting with value_param
.
You also should call this method on layouts if you add multiple controls into them.
Arguments
None.
Returns
Nothing.
Example
This enum determines the current control's type.
You can only construct types that are listed below in the navigation, and only if those have a constructor.
Default control. You are very unlikely to ever stumble upon this type.
Button control.
Checkbox control.
Child tab control. Only possible to find within tab_layout
controls.
Color picker control.
Combo box control.
Default control with a container. You are very unlikely to ever stumble upon this type.
Groupbox control.
Hotkey input control.
HSB slider (Saturation/Brightness box, Hue slider and Opacity slider).
Label control.
Layout control.
Listbox control.
Loading spinner.
Notification item control. One of the types in the core UI framework, never actually used within Fatality.
Basic popup window.
Basic selectable item.
Slider item. This type doesn't tell the internal value type used.
Spacer control.
Horizontal or vertical tab.
A variant of layout
that is used specifically to operate tabs.
A variant of layout
that is used specifically to operate weapon tabs.
Text input control.
A variant of button that looks like button, but works like a checkbox.
Basic window control.
Basic widget control.
Settings control.
Image control.
This type represents a value data used by some control types.
Returns the value.
Arguments
None.
Returns
Type
Description
<type>
Value.
Example
Returns the value disrgarding any active keybinds.
Arguments
None.
Returns
Type
Description
<type>
Value.
Example
Sets the value.
Arguments
Name
Type
Description
val
<type>
Value.
Returns
Nothing.
Example
Returns true
if there's any active hotkeys.
Arguments
None.
Returns
Type
Description
bool
true
if any hotkey is active.
Example
Disables all active hotkeys. This allows you to override the value.
Arguments
None.
Returns
Nothing.
Example
This type represents a checkbox control.
Constructs the checkbox.
Arguments
Name
Type
Description
Returns
Type
Description
checkbox
Checkbox instance.
Example
Returns checkbox' value.
Arguments
None.
Returns
Type
Description
Value data.
Example
Sets checkbox' value.
Arguments
Name
Type
Description
val
bool
New value.
Returns
Nothing.
Example
This type represents a slider control.
Constructs the slider.
Arguments
Name
Type
Description
low
float
Minimum value.
high
float
Maximum value.
fmt
table[...]
Format. Defaults to {'%.0f'}
.
step
float
Step value. Defaults to 1.0
.
Format Table
Formatting uses standard printf
syntax. Documentation
Passing invalid format will lead to an undefined behavior.
1. Single Formatting.
Type
Description
string
Format string.
2. Multi Formatting.
Name
Type
Description
min
float?
Minimal value.
add
float?
Add step.
fmt
string
Format string.
Returns
Type
Description
slider
Slider object.
Example
Returns slider' value.
Arguments
None.
Returns
Type
Description
Value data.
Example
This type represents a label control.
Constructs the label.
Arguments
Name
Type
Description
str
string
Label string.
bold
bool
Whether to use bold font. Defaults to false
.
Returns
Type
Description
label
Label object.
Example
Sets the new text.
Arguments
Name
Type
Description
str
string
New text.
Returns
Nothing.
Example
This type represents a selectable control.
Constructs the selectable.
Arguments
Returns
Type
Description
selectable
Selectable object.
Example
This type represents a button control.
Constructs the button.
Arguments
Returns
Type
Description
button
Button object.
Example
This type represents a color picker control.
Constructs the color picker.
Arguments
Name
Type
Description
allow_alpha
bool
Whether to enable alpha channel. Defaults to true
.
Returns
Type
Description
color_picker
Color picker object.
Example
Returns color picker' value.
Arguments
None.
Returns
Type
Description
Value data.
Example
This type represents a spacer control.
Constructs the spacer.
Arguments
Name
Type
Description
Returns
Type
Description
spacer
Spacer instance.
Example
This type represents a text input control.
Constructs the text input.
Arguments
Name
Type
Description
Returns
Type
Description
text_input
Text input instance.
Example
Type: string
Placeholder text.
Type: string
Value.
Sets the new text.
Arguments
Name
Type
Description
str
string
New value.
Returns
Nothing.
Example
This type represents a combo box control.
Value bits are toggled in order of selectables. That means if the first element is toggled, so will be the first bit, etc.
Constructs the combo box.
Arguments
Name
Type
Description
Returns
Type
Description
combo_box
Combo box instance.
Example
Type: bool
If set to true
, the checkbox will be able to toggle multiple selectables.
Returns combo box' value.
Arguments
None.
Returns
Type
Description
Value data.
Example
This type represents an image control.
Constructs the image.
Arguments
Returns
Type
Description
image
Image instance.
Example
This type represents an abstract container.
Adds a control to the container.
Arguments
Name
Type
Description
Returns
Nothing.
Example
Removes a control from the container.
Arguments
Name
Type
Description
Returns
Nothing.
Example
Finds a control by ID.
Arguments
Name
Type
Description
id
string
Control ID.
Returns
Type
Description
<control>?
Casted control. Returns nil
if the control was not found, or casting failed.
Example
This type represents an abstract control with a container.
This type represents a layout control.
This type represents a groupbox control.