2022-11-03 11:44:49 +01:00
|
|
|
/// @description init
|
|
|
|
if !ready exit;
|
|
|
|
|
|
|
|
#region base UI
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_sprite_stretched(THEME.dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
2022-11-03 11:44:49 +01:00
|
|
|
if(sFOCUS)
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_sprite_stretched_ext(THEME.dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h, COLORS._main_accent, 1);
|
2022-11-03 11:44:49 +01:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region text
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text_title);
|
2022-11-03 11:44:49 +01:00
|
|
|
draw_text(dialog_x + ui(24), dialog_y + ui(16), "Notification");
|
|
|
|
|
|
|
|
var ww = ui(32);
|
|
|
|
var hh = ui(32);
|
|
|
|
var bx = dialog_x + dialog_w - ui(24) - ww;
|
|
|
|
var by = dialog_y + ui(16) + line_height() / 2 - hh / 2;
|
|
|
|
|
|
|
|
var error = !!(filter & NOTI_TYPE.error);
|
2022-11-18 03:20:31 +01:00
|
|
|
if(buttonInstant(THEME.button_hide, bx, by, ww, hh, mouse_ui, sFOCUS, sHOVER,, THEME.noti_icon_error, error, c_white, 0.3 + error * 0.7) == 2)
|
2022-11-03 11:44:49 +01:00
|
|
|
filter = filter ^ NOTI_TYPE.error;
|
|
|
|
bx -= ui(36);
|
|
|
|
|
|
|
|
var warn = !!(filter & NOTI_TYPE.warning);
|
2022-11-18 03:20:31 +01:00
|
|
|
if(buttonInstant(THEME.button_hide, bx, by, ww, hh, mouse_ui, sFOCUS, sHOVER,, THEME.noti_icon_warning, warn, c_white, 0.3 + warn * 0.7) == 2)
|
2022-11-03 11:44:49 +01:00
|
|
|
filter = filter ^ NOTI_TYPE.warning;
|
|
|
|
bx -= ui(36);
|
|
|
|
|
|
|
|
var log = !!(filter & NOTI_TYPE.log);
|
2022-11-18 03:20:31 +01:00
|
|
|
if(buttonInstant(THEME.button_hide, bx, by, ww, hh, mouse_ui, sFOCUS, sHOVER,, THEME.noti_icon_log, log, c_white, 0.3 + log * 0.7) == 2)
|
2022-11-03 11:44:49 +01:00
|
|
|
filter = filter ^ NOTI_TYPE.log;
|
|
|
|
|
2022-11-18 03:20:31 +01:00
|
|
|
draw_sprite_stretched(THEME.ui_panel_bg, 0, dialog_x + ui(24), dialog_y + ui(48), dialog_w - ui(48), dialog_h - ui(72));
|
2022-11-03 11:44:49 +01:00
|
|
|
sp_noti.active = sHOVER;
|
|
|
|
sp_noti.draw(dialog_x + ui(40), dialog_y + ui(56));
|
|
|
|
#endregion
|