mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
84 lines
2.1 KiB
Plaintext
84 lines
2.1 KiB
Plaintext
function Panel_Workspace() : PanelContent() constructor {
|
|
workspaces = [];
|
|
w = ui(480);
|
|
h = ui(40);
|
|
|
|
scroll = 0;
|
|
scroll_to = 0;
|
|
scroll_max = 0;
|
|
hori = false;
|
|
|
|
function refreshContent() {
|
|
workspaces = [];
|
|
|
|
var f = file_find_first(DIRECTORY + "layouts/*", 0);
|
|
while(f != "") {
|
|
array_push(workspaces, filename_name_only(f));
|
|
f = file_find_next();
|
|
}
|
|
}
|
|
refreshContent();
|
|
|
|
function onFocusBegin() { refreshContent(); }
|
|
|
|
function drawContent(panel) {
|
|
draw_clear(COLORS.panel_bg_clear);
|
|
|
|
var _hori = hori;
|
|
hori = w > h;
|
|
|
|
if(hori != _hori) scroll_to = 0;
|
|
|
|
var x0 = hori? ui(6) + scroll : ui(6), x1;
|
|
var y0 = hori? ui(6) : ui(6) + scroll, y1;
|
|
var ww = 0;
|
|
var hh = 0;
|
|
|
|
draw_set_text(f_p1, hori? fa_left : fa_center, fa_top, COLORS._main_text_sub);
|
|
|
|
for( var i = 0; i < array_length(workspaces); i++ ) {
|
|
var tw = hori? string_width(workspaces[i]) + ui(16) : w - ui(16);
|
|
var th = string_height(workspaces[i]) + ui(8);
|
|
|
|
x1 = x0 + tw;
|
|
y1 = y0 + th;
|
|
|
|
if(pHOVER && point_in_rectangle(mx, my, x0, y0, x1, y1)) {
|
|
draw_sprite_stretched(THEME.button_hide_fill, 1, x0, y0, x1 - x0, y1 - y0);
|
|
|
|
if(mouse_press(mb_left, pFOCUS)) {
|
|
PREF_MAP[? "panel_layout_file"] = workspaces[i];
|
|
PREF_SAVE();
|
|
setPanel();
|
|
}
|
|
}
|
|
|
|
draw_set_color(PREF_MAP[? "panel_layout_file"] == workspaces[i]? COLORS._main_text : COLORS._main_text_sub)
|
|
draw_text_add(hori? x0 + ui(8) : (x0 + x1) / 2, y0 + ui(4), workspaces[i]);
|
|
|
|
if(hori) {
|
|
x0 += tw + ui(4);
|
|
ww += tw + ui(4);
|
|
} else {
|
|
y0 += th + ui(4);
|
|
hh += th + ui(4);
|
|
}
|
|
}
|
|
|
|
scroll = lerp_float(scroll, scroll_to, 5);
|
|
|
|
if(hori) {
|
|
scroll_max = max(ww - w + ui(16), 0);
|
|
if(pHOVER) {
|
|
if(mouse_wheel_down()) scroll_to = clamp(scroll_to - ui(128), -scroll_max, 0);
|
|
if(mouse_wheel_up()) scroll_to = clamp(scroll_to + ui(128), -scroll_max, 0);
|
|
}
|
|
} else {
|
|
scroll_max = max(hh - h + ui(16), 0);
|
|
if(pHOVER) {
|
|
if(mouse_wheel_down()) scroll_to = clamp(scroll_to - ui(32), -scroll_max, 0);
|
|
if(mouse_wheel_up()) scroll_to = clamp(scroll_to + ui(32), -scroll_max, 0);
|
|
}
|
|
}
|
|
}
|
|
} |