mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
118 lines
2.8 KiB
Plaintext
118 lines
2.8 KiB
Plaintext
/// @description init
|
|
#region data
|
|
with(_p_dialog) {
|
|
other.depth = min(depth - 1, other.depth);
|
|
}
|
|
ds_list_add(DIALOGS, self);
|
|
|
|
dialog_w = 320;
|
|
dialog_h = 320;
|
|
_dialog_w = 320;
|
|
_dialog_h = 320;
|
|
dialog_x = 0;
|
|
dialog_y = 0;
|
|
|
|
dialog_resizable = false;
|
|
dialog_resizing = 0;
|
|
dialog_resiz_sw = 0;
|
|
dialog_resiz_sh = 0;
|
|
dialog_resiz_mx = 0;
|
|
dialog_resiz_my = 0;
|
|
dialog_w_min = 320;
|
|
dialog_h_min = 320;
|
|
dialog_w_max = WIN_W;
|
|
dialog_h_max = WIN_H;
|
|
onResize = -1;
|
|
|
|
draggable = true;
|
|
dialog_dragging = false;
|
|
dialog_drag_sx = 0;
|
|
dialog_drag_sy = 0;
|
|
dialog_drag_mx = 0;
|
|
dialog_drag_my = 0;
|
|
|
|
function doDrag() {
|
|
if(!draggable) return;
|
|
|
|
if(dialog_dragging) {
|
|
dialog_x = dialog_drag_sx + mouse_mx - dialog_drag_mx;
|
|
dialog_y = dialog_drag_sy + mouse_my - dialog_drag_my;
|
|
|
|
if(mouse_release(mb_left))
|
|
dialog_dragging = false;
|
|
}
|
|
|
|
if(sFOCUS) {
|
|
if(destroy_on_escape && mouse_press(vk_escape))
|
|
instance_destroy(self);
|
|
if(mouse_press(mb_left)) {
|
|
if(point_in_rectangle(mouse_mx, mouse_my, dialog_x, dialog_y,
|
|
dialog_x + dialog_w, dialog_y + 32)) {
|
|
dialog_dragging = true;
|
|
dialog_drag_sx = dialog_x;
|
|
dialog_drag_sy = dialog_y;
|
|
dialog_drag_mx = mouse_mx;
|
|
dialog_drag_my = mouse_my;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
alarm[0] = 1;
|
|
ready = false;
|
|
|
|
destroy_on_escape = true;
|
|
destroy_on_click_out = false;
|
|
anchor = ANCHOR.none;
|
|
#endregion
|
|
|
|
#region focus
|
|
function checkFocus() {
|
|
var x0 = dialog_x - dialog_resizable * 6;
|
|
var x1 = dialog_x + dialog_w + dialog_resizable * 6;
|
|
var y0 = dialog_y - dialog_resizable * 6;
|
|
var y1 = dialog_y + dialog_h + dialog_resizable * 6;
|
|
|
|
if(point_in_rectangle(mouse_mx, mouse_my, x0, y0, x1, y1)) {
|
|
if(depth < DIALOG_DEPTH_HOVER) {
|
|
DIALOG_DEPTH_HOVER = depth;
|
|
HOVER = self.id;
|
|
|
|
if(mouse_press(mb_any))
|
|
setFocus(self.id, "Dialog");
|
|
}
|
|
}
|
|
}
|
|
|
|
function resetPosition() {
|
|
if(anchor == ANCHOR.none) {
|
|
dialog_x = xstart - dialog_w / 2;
|
|
dialog_y = ystart - dialog_h / 2;
|
|
} else {
|
|
if(anchor & ANCHOR.left) dialog_x = min(xstart, WIN_SW - dialog_w);
|
|
if(anchor & ANCHOR.right) dialog_x = max(xstart - dialog_w, 0);
|
|
if(anchor & ANCHOR.top) dialog_y = min(ystart, WIN_SH - dialog_h);
|
|
if(anchor & ANCHOR.bottom) dialog_y = max(ystart - dialog_h, 0);
|
|
}
|
|
dialog_x = round(dialog_x);
|
|
dialog_y = round(dialog_y);
|
|
}
|
|
#endregion
|
|
|
|
#region action
|
|
function checkMouse() {
|
|
if(!DIALOG_CLICK) return;
|
|
|
|
var x0 = dialog_x - dialog_resizable * 6;
|
|
var x1 = dialog_x + dialog_w + dialog_resizable * 6;
|
|
var y0 = dialog_y - dialog_resizable * 6;
|
|
var y1 = dialog_y + dialog_h + dialog_resizable * 6;
|
|
|
|
if(!point_in_rectangle(mouse_mx, mouse_my, x0, y0, x1, y1)) {
|
|
if(destroy_on_click_out && mouse_press(mb_any)) {
|
|
instance_destroy(self);
|
|
DIALOG_CLICK = false;
|
|
}
|
|
}
|
|
}
|
|
#endregion |