mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
106 lines
3.7 KiB
Plaintext
106 lines
3.7 KiB
Plaintext
/// @description init
|
|
if !ready exit;
|
|
|
|
#region base UI
|
|
draw_sprite_stretched(THEME.dialog_bg, 0, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
if(sFOCUS)
|
|
draw_sprite_stretched_ext(THEME.dialog_active, 0, dialog_x, dialog_y, dialog_w, dialog_h, COLORS._main_accent, 1);
|
|
#endregion
|
|
|
|
#region search
|
|
WIDGET_CURRENT = tb_search;
|
|
|
|
if(search_string == "") {
|
|
tb_search.setActiveFocus(false, false);
|
|
tb_search.sprite_index = 1;
|
|
|
|
catagory_pane.setActiveFocus(sFOCUS, sHOVER);
|
|
catagory_pane.draw(dialog_x + ui(14), dialog_y + ui(52));
|
|
|
|
draw_sprite_stretched(THEME.ui_panel_bg, 0, dialog_x + ui(120), dialog_y + ui(52), dialog_w - ui(134), dialog_h - ui(66));
|
|
content_pane.setActiveFocus(sFOCUS, sHOVER);
|
|
content_pane.draw(dialog_x + ui(120), dialog_y + ui(52));
|
|
|
|
node_selecting = 0;
|
|
} else {
|
|
tb_search.setActiveFocus(true, true);
|
|
draw_sprite_stretched(THEME.ui_panel_bg, 0, dialog_x + ui(14), dialog_y + ui(52), dialog_w - ui(28), dialog_h - ui(66));
|
|
search_pane.setActiveFocus(sFOCUS, sHOVER);
|
|
search_pane.draw(dialog_x + ui(16), dialog_y + ui(52));
|
|
}
|
|
|
|
var tw = dialog_w - ui(96);
|
|
if(node_called != noone || junction_hovering != noone)
|
|
tw -= ui(32);
|
|
tb_search.draw(dialog_x + ui(14), dialog_y + ui(14), tw, ui(32), search_string, mouse_ui);
|
|
|
|
var bx = dialog_x + dialog_w - ui(44);
|
|
var by = dialog_y + ui(16);
|
|
var b = buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER,
|
|
PREF_MAP[? "dialog_add_node_view"]? get_text("view_list", "List view") : get_text("view_grid", "Grid view"),
|
|
THEME.view_mode, PREF_MAP[? "dialog_add_node_view"], COLORS._main_icon);
|
|
if(b == 2)
|
|
PREF_MAP[? "dialog_add_node_view"] = !PREF_MAP[? "dialog_add_node_view"];
|
|
|
|
bx -= ui(32);
|
|
var b = buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER,
|
|
PREF_MAP[? "dialog_add_node_grouping"]? get_text("add_node_group_enabled", "Group enabled") : get_text("add_node_group_disabled", "Group disabled"),
|
|
THEME.view_group, PREF_MAP[? "dialog_add_node_grouping"], COLORS._main_icon);
|
|
if(b == 2)
|
|
PREF_MAP[? "dialog_add_node_grouping"] = !PREF_MAP[? "dialog_add_node_grouping"];
|
|
|
|
if(node_called != noone || junction_hovering != noone) {
|
|
var txt = node_show_connectable? get_text("add_node_show_connect", "Showing connectable") : get_text("add_node_show_all", "Showing all");
|
|
var cc = node_show_connectable? COLORS._main_accent : COLORS._main_icon;
|
|
bx -= ui(32);
|
|
var b = buttonInstant(THEME.button_hide, bx, by, ui(28), ui(28), mouse_ui, sFOCUS, sHOVER, txt, THEME.filter_type, node_show_connectable, cc);
|
|
if(b == 2)
|
|
node_show_connectable = !node_show_connectable;
|
|
}
|
|
#endregion
|
|
|
|
#region tooltip
|
|
if(node_tooltip != noone) {
|
|
var ww = ui(300 + 8);
|
|
var hh = ui(16);
|
|
|
|
var txt = node_tooltip.tooltip;
|
|
var spr = node_tooltip.tooltip_spr;
|
|
|
|
draw_set_font(f_p1);
|
|
|
|
if(spr) {
|
|
ww = ui(8) + sprite_get_width(spr);
|
|
hh = ui(8) + sprite_get_height(spr);
|
|
} else
|
|
hh = ui(16) + string_height_ext(txt, -1, ww - ui(16));
|
|
|
|
var x0 = min(node_tooltip_x, WIN_W - ww - ui(8));
|
|
var x1 = node_tooltip_x + ww;
|
|
var y1 = node_tooltip_y - ui(8);
|
|
var y0 = y1 - hh;
|
|
|
|
draw_sprite_stretched_ext(THEME.textbox, 3, x0, y0, ww, hh, COLORS._main_icon, 1);
|
|
draw_sprite_stretched(THEME.textbox, 0, x0, y0, ww, hh);
|
|
|
|
if(spr)
|
|
draw_sprite(spr, 0, x0 + ui(4), y0 + ui(4));
|
|
|
|
draw_set_text(f_p1, fa_left, fa_bottom, COLORS._main_text)
|
|
draw_text_ext(x0 + ui(8), y1 - ui(8), txt, -1, ww - ui(16));
|
|
}
|
|
|
|
node_tooltip = noone;
|
|
#endregion
|
|
|
|
//#region dec
|
|
// if(node_called) {
|
|
// var jx = 0;
|
|
// var jy = dialog_y + ui(26);
|
|
|
|
// if(node_called.connect_type == JUNCTION_CONNECT.input)
|
|
// jx = dialog_x;
|
|
// else
|
|
// jx = dialog_x + dialog_w;
|
|
// }
|
|
//#endregion |