2022-01-13 05:24:03 +01:00
|
|
|
/// @description init
|
|
|
|
if !ready exit;
|
|
|
|
|
|
|
|
#region destroy
|
2023-02-28 09:43:01 +01:00
|
|
|
selector.interactable = interactable;
|
2022-11-18 03:20:31 +01:00
|
|
|
if(!selector.dropper_active) {
|
2022-12-10 05:06:01 +01:00
|
|
|
if(sHOVER && !point_in_rectangle(mouse_mx, mouse_my, dialog_x, dialog_y, dialog_x + dialog_w, dialog_y + dialog_h)) {
|
|
|
|
if(destroy_on_click_out && mouse_press(mb_left))
|
2022-01-13 05:24:03 +01:00
|
|
|
instance_destroy(self);
|
|
|
|
}
|
|
|
|
doDrag();
|
|
|
|
}
|
2023-12-31 14:09:49 +01:00
|
|
|
|
2024-01-16 09:56:20 +01:00
|
|
|
if(sFOCUS && WIDGET_CURRENT == noone) {
|
2023-12-31 14:09:49 +01:00
|
|
|
if(keyboard_check_pressed(vk_enter)) {
|
|
|
|
onApply(palette);
|
|
|
|
instance_destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(keyboard_check_pressed(vk_escape)) {
|
|
|
|
onApply(previous_palette);
|
|
|
|
instance_destroy();
|
|
|
|
}
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region resize
|
|
|
|
if(_dialog_h != dialog_h || _dialog_w != dialog_w) {
|
|
|
|
_dialog_h = dialog_h;
|
|
|
|
_dialog_w = dialog_w;
|
|
|
|
|
|
|
|
if(onResize != -1) onResize();
|
|
|
|
}
|
|
|
|
#endregion
|