Pixel-Composer/scripts/widget/widget.gml
2023-06-21 20:36:53 +02:00

73 lines
1.5 KiB
Plaintext

function widget() constructor {
active = false;
hover = false;
iactive = false;
ihover = false;
parent = noone;
interactable = true;
lua_thread = noone;
lua_thread_key = "";
x = 0;
y = 0;
w = 0;
h = 0;
static setLua = function(_lua_thread, _lua_key, _lua_func) {
lua_thread = _lua_thread;
lua_thread_key = _lua_key;
onModify = method(self, _lua_func);
}
static setInteract = function(interactable = noone) {
self.interactable = interactable;
}
static register = function(parent = noone) {
if(!interactable) return;
array_push(WIDGET_ACTIVE, self);
self.parent = parent;
}
static trigger = function() { }
static parentFocus = function() {
if(parent == noone) return;
if(y < 0)
parent.scroll_y_to += abs(y) + ui(16);
else if(y + ui(16) > parent.surface_h)
parent.scroll_y_to -= abs(parent.surface_h - y) + h + ui(16);
}
static activate = function() {
if(!interactable) return;
WIDGET_CURRENT = self;
WIDGET_CURRENT_SCROLL = parent;
parentFocus();
}
static deactivate = function() {
if(WIDGET_CURRENT != self) return;
WIDGET_CURRENT = noone;
WIDGET_CURRENT_SCROLL = noone;
}
static setFocusHover = function(active = false, hover = false) {
self.active = interactable && active;
self.hover = interactable && hover;
self.iactive = active;
self.ihover = hover;
}
static resetFocus = function() {
active = false;
hover = false;
}
static draw_param = function(param) {}
static draw = function() {}
}