2018-10-11 16:32:24 +02:00
|
|
|
#ifndef INCLUDE_GUI_H
|
2015-07-22 20:32:54 +02:00
|
|
|
#define INCLUDE_GUI_H
|
|
|
|
|
|
|
|
#ifndef INCLUDE_KOLIBRI_H
|
|
|
|
#include "../lib/kolibri.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INCLUDE_STRING_H
|
|
|
|
#include "../lib/strings.h"
|
|
|
|
#endif
|
2012-12-15 01:16:06 +01:00
|
|
|
|
2016-02-09 02:43:58 +01:00
|
|
|
#ifndef INCLUDE_RGB_H
|
|
|
|
#include "../lib/patterns/rgb.h"
|
|
|
|
#endif
|
|
|
|
|
2017-10-11 00:26:56 +02:00
|
|
|
#ifndef INCLUDE_MATH_H
|
|
|
|
#include "../lib/math.h"
|
|
|
|
#endif
|
|
|
|
|
2018-04-11 19:46:08 +02:00
|
|
|
#include "../lib/gui/tabs.h"
|
2018-10-20 13:00:31 +02:00
|
|
|
#include "../lib/gui/sensor.h"
|
2018-04-11 19:46:08 +02:00
|
|
|
#include "../lib/gui/more_less_box.h"
|
2018-10-11 16:32:24 +02:00
|
|
|
|
|
|
|
#ifndef INCLUDE_CHECKBOX
|
2018-04-19 16:16:32 +02:00
|
|
|
#include "../lib/gui/checkbox.h"
|
2018-10-11 16:32:24 +02:00
|
|
|
#endif
|
|
|
|
|
2018-05-07 18:17:53 +02:00
|
|
|
#include "../lib/gui/child_window.h"
|
|
|
|
#include "../lib/gui/text_view_area.h"
|
2018-10-11 16:32:24 +02:00
|
|
|
|
|
|
|
#ifndef INCLUDE_MENU_H
|
2018-10-10 16:44:01 +02:00
|
|
|
#include "../lib/gui/menu.h"
|
2018-10-11 16:32:24 +02:00
|
|
|
#endif
|
2018-04-19 16:16:32 +02:00
|
|
|
|
2018-04-19 22:12:07 +02:00
|
|
|
:int last_free_button_id = 1000;
|
2018-04-19 16:16:32 +02:00
|
|
|
:int GetFreeButtonId()
|
|
|
|
{
|
|
|
|
last_free_button_id++;
|
|
|
|
return last_free_button_id;
|
|
|
|
}
|
2018-04-11 19:46:08 +02:00
|
|
|
|
2013-10-11 00:45:19 +02:00
|
|
|
:void DrawRectangle(dword x,y,w,h,color1)
|
2012-11-26 16:26:15 +01:00
|
|
|
{
|
2019-05-21 20:04:27 +02:00
|
|
|
DrawRectangle3D(x,y,w,h,color1,color1);
|
|
|
|
/*
|
2013-02-04 14:15:13 +01:00
|
|
|
DrawBar(x,y,w,1,color1);
|
|
|
|
DrawBar(x,y+h,w,1,color1);
|
|
|
|
DrawBar(x,y,1,h,color1);
|
|
|
|
DrawBar(x+w,y,1,h+1,color1);
|
2019-05-21 20:04:27 +02:00
|
|
|
*/
|
2012-11-26 16:26:15 +01:00
|
|
|
}
|
|
|
|
|
2015-08-17 23:24:56 +02:00
|
|
|
:void DrawWideRectangle(dword x,y,w,h,boder,color1)
|
|
|
|
{
|
|
|
|
DrawBar(x, y, w, boder, color1);
|
|
|
|
DrawBar(x, y+h-boder, w, boder, color1);
|
|
|
|
DrawBar(x, y+boder, boder, h-boder-boder, color1);
|
|
|
|
DrawBar(x+w-boder, y+boder, boder, h-boder-boder, color1);
|
|
|
|
}
|
|
|
|
|
2013-10-11 00:45:19 +02:00
|
|
|
:void DrawRectangle3D(dword x,y,w,h,color1,color2)
|
2012-11-26 16:26:15 +01:00
|
|
|
{
|
2013-02-04 14:15:13 +01:00
|
|
|
DrawBar(x,y,w+1,1,color1);
|
|
|
|
DrawBar(x,y+1,1,h-1,color1);
|
|
|
|
DrawBar(x+w,y+1,1,h,color2);
|
|
|
|
DrawBar(x,y+h,w,1,color2);
|
2012-11-26 16:26:15 +01:00
|
|
|
}
|
|
|
|
|
2013-10-11 00:45:19 +02:00
|
|
|
:void DrawCaptButton(dword x,y,w,h,id,color_b, color_t,text)
|
2012-11-26 16:26:15 +01:00
|
|
|
{
|
2016-02-12 23:07:55 +01:00
|
|
|
dword tx = -strlen(text)*8+w/2+x;
|
|
|
|
dword ty = h/2-7+y;
|
|
|
|
|
2014-04-17 20:07:07 +02:00
|
|
|
if (id>0) DefineButton(x,y,w,h,id,color_b);
|
2019-05-20 12:40:10 +02:00
|
|
|
WriteText(tx+1,ty+1,0x90,MixColors(color_b,0,230),text);
|
2016-02-12 20:54:29 +01:00
|
|
|
WriteText(tx,ty,0x90,color_t,text);
|
2012-11-26 16:26:15 +01:00
|
|
|
}
|
|
|
|
|
2017-09-28 11:59:41 +02:00
|
|
|
:int active_button_id = 0;
|
2016-10-28 18:06:18 +02:00
|
|
|
:int DrawStandartCaptButton(dword x, y, id, text)
|
2016-10-05 15:12:39 +02:00
|
|
|
{
|
2018-04-03 15:57:56 +02:00
|
|
|
#define padding_v 5
|
|
|
|
#define padding_h 15
|
|
|
|
#define right_margin 12
|
|
|
|
#define h padding_v + padding_v + 16 //16 font height
|
2016-10-05 15:12:39 +02:00
|
|
|
int tx = x + padding_h;
|
2016-11-05 11:13:29 +01:00
|
|
|
int ty = y + padding_v+1;
|
2017-09-28 11:59:41 +02:00
|
|
|
int tw = strlen(text)*8;
|
|
|
|
int w = tw + padding_h + padding_h;
|
2020-04-18 01:52:24 +02:00
|
|
|
unsigned darker_color = MixColors(sc.button,0,230);
|
2017-09-28 11:59:41 +02:00
|
|
|
|
2016-10-05 15:12:39 +02:00
|
|
|
|
2020-04-18 01:52:24 +02:00
|
|
|
if (id>0) DefineButton(x,y,w,h,id,sc.button);
|
2017-09-28 11:59:41 +02:00
|
|
|
|
2019-05-10 14:51:47 +02:00
|
|
|
WriteText(tx+1,ty+1,0x90,darker_color,text);
|
2020-04-18 01:52:24 +02:00
|
|
|
WriteText(tx,ty,0x90,sc.button_text,text);
|
2017-09-28 11:59:41 +02:00
|
|
|
|
|
|
|
if (active_button_id==id) {
|
2019-05-10 14:51:47 +02:00
|
|
|
DrawBar(tx,ty+15,tw,1, darker_color);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawBar(tx,ty+14,tw,1, sc.button_text);
|
2017-09-28 11:59:41 +02:00
|
|
|
}
|
|
|
|
|
2016-10-05 15:12:39 +02:00
|
|
|
return w + right_margin;
|
|
|
|
}
|
|
|
|
|
2019-05-20 12:40:10 +02:00
|
|
|
/* UNSTABLE
|
2019-05-10 14:51:47 +02:00
|
|
|
:unsigned LightenDarkenColor(dword color, amt) {
|
|
|
|
dword r = color >> 16 + amt << 16;
|
|
|
|
dword b = color >> 8 & 0x00FF + amt << 8;
|
|
|
|
dword g = color & 0x0000FF + amt;
|
|
|
|
return g | b | r ;
|
|
|
|
}
|
2019-05-20 12:40:10 +02:00
|
|
|
*/
|
2019-05-10 14:51:47 +02:00
|
|
|
|
2017-09-28 11:59:41 +02:00
|
|
|
:void ActiveButtonSwitch(int min, max)
|
|
|
|
{
|
|
|
|
active_button_id++;
|
|
|
|
if (active_button_id>max) || (active_button_id<max) active_button_id=min;
|
|
|
|
}
|
|
|
|
|
2014-04-17 20:07:07 +02:00
|
|
|
:void WriteTextCenter(dword x,y,w,color_t,text)
|
|
|
|
{
|
|
|
|
WriteText(-strlen(text)*6+w/2+x+1,y,0x80,color_t,text);
|
|
|
|
}
|
|
|
|
|
2015-03-16 15:20:32 +01:00
|
|
|
:void DrawCircle(int x, y, r, color)
|
2012-11-26 16:26:15 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
float px=0, py=r, ii = r * 3.1415926 * 2;
|
|
|
|
FOR (i = 0; i < ii; i++)
|
|
|
|
{
|
2015-03-16 15:20:32 +01:00
|
|
|
PutPixel(px + x, y - py, color);
|
2012-11-26 16:26:15 +01:00
|
|
|
px = py / r + px;
|
|
|
|
py = -px / r + py;
|
|
|
|
}
|
2012-12-05 16:25:01 +01:00
|
|
|
}
|
2012-12-15 00:55:44 +01:00
|
|
|
|
2016-02-21 22:57:22 +01:00
|
|
|
:void DrawEditBox(dword edit_box_pointer)
|
2016-02-11 03:22:34 +01:00
|
|
|
{
|
2018-04-20 11:43:15 +02:00
|
|
|
dword x,y,w,h,bg,t;
|
2016-02-11 03:22:34 +01:00
|
|
|
ESI = edit_box_pointer;
|
|
|
|
x = ESI.edit_box.left;
|
|
|
|
y = ESI.edit_box.top;
|
|
|
|
w = ESI.edit_box.width+1;
|
2018-04-20 11:43:15 +02:00
|
|
|
h = 22;
|
2016-02-21 22:57:22 +01:00
|
|
|
if (ESI.edit_box.flags & 100000000000b) bg = 0xCACACA; else bg = 0xFFFfff;
|
2016-11-05 11:13:29 +01:00
|
|
|
edit_box_draw stdcall (edit_box_pointer);
|
2018-04-03 14:45:08 +02:00
|
|
|
DrawRectangle3D(x-1, y-1, w+1, h+1, 0xE7E7E7, bg);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle(x-2, y-2, w+3, h+3, sc.work_graph);
|
|
|
|
DrawRectangle3D(x-3, y-3, w+5, h+5, sc.work_dark, sc.work_light);
|
2016-02-11 03:22:34 +01:00
|
|
|
}
|
|
|
|
|
2019-05-16 12:48:21 +02:00
|
|
|
#define DOT_W 37
|
|
|
|
:void DrawFileBox(dword edit_box_pointer, title, btn)
|
|
|
|
{
|
|
|
|
dword x,y,w,h,bg,t;
|
|
|
|
ESI = edit_box_pointer;
|
|
|
|
x = ESI.edit_box.left;
|
|
|
|
y = ESI.edit_box.top;
|
|
|
|
w = ESI.edit_box.width+1;
|
|
|
|
h = 22;
|
|
|
|
|
|
|
|
if (ESI.edit_box.flags & 100000000000b) bg = 0xCACACA; else bg = 0xFFFfff;
|
|
|
|
edit_box_draw stdcall (edit_box_pointer);
|
|
|
|
DrawRectangle3D(x-1, y-1, w+1, h+1, 0xE7E7E7, bg);
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle(x-2, y-2, w+3, h+3, sc.work_graph);
|
|
|
|
DrawRectangle3D(x-3, y-3, w+DOT_W+5, h+5, sc.work_dark, sc.work_light);
|
2019-05-16 12:48:21 +02:00
|
|
|
|
2020-04-18 01:52:24 +02:00
|
|
|
WriteText(x-2, y-19, 0x90, sc.work_text, title);
|
|
|
|
DrawCaptButton(x+w+1, y-2, DOT_W, h+3, btn, sc.button, sc.button_text, "...");
|
2019-05-16 12:48:21 +02:00
|
|
|
}
|
|
|
|
|
2018-04-20 11:43:15 +02:00
|
|
|
:void DrawEditBoxPos(dword x,y, edit_box_pointer)
|
|
|
|
{
|
|
|
|
ESI = edit_box_pointer;
|
|
|
|
ESI.edit_box.left = x;
|
|
|
|
ESI.edit_box.top = y;
|
|
|
|
DrawEditBox(dword edit_box_pointer);
|
|
|
|
}
|
|
|
|
|
2020-12-03 03:56:54 +01:00
|
|
|
:void DrawProgressBar(dword st_x, st_y, st_w, st_h, col_fon, col_border, col_fill, progress_percent)
|
2012-12-15 16:56:24 +01:00
|
|
|
{
|
2013-02-04 14:15:13 +01:00
|
|
|
int progress_w;
|
2012-12-15 16:56:24 +01:00
|
|
|
static int fill_old;
|
|
|
|
|
2013-03-11 19:16:24 +01:00
|
|
|
//if (progress_percent<=0) {DrawBar(st_x,st_y, st_x + st_w + fill_old + 15,st_h+1, col_fon); fill_old=0; return;}
|
|
|
|
if (progress_percent<=0) || (progress_percent>=100) return;
|
2012-12-15 16:56:24 +01:00
|
|
|
|
|
|
|
DrawRectangle(st_x, st_y, st_w,st_h, col_border);
|
|
|
|
DrawRectangle3D(st_x+1, st_y+1, st_w-2,st_h-2, 0xFFFfff, 0xFFFfff);
|
2013-02-04 14:15:13 +01:00
|
|
|
|
|
|
|
if (progress_percent>0) && (progress_percent<=100)
|
|
|
|
{
|
|
|
|
progress_w = st_w - 3 * progress_percent / 100;
|
|
|
|
DrawBar(st_x+2, st_y+2, progress_w, st_h-3, col_fill);
|
|
|
|
DrawBar(st_x+2+progress_w, st_y+2, st_w-progress_w-3, st_h-3, 0xFFFfff);
|
|
|
|
}
|
2013-03-11 19:16:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
:void DrawLink(dword x,y,font_type,btn_id, inscription)
|
|
|
|
{
|
|
|
|
int w;
|
|
|
|
WriteText(x,y,font_type,0x4E00E7,inscription);
|
2017-09-28 11:59:41 +02:00
|
|
|
if (font_type==0x80) w = strlen(inscription)*6; else w = strlen(inscription)*8;
|
2013-03-11 19:16:24 +01:00
|
|
|
DefineButton(x-1,y-1,w,10,btn_id+BT_HIDE,0);
|
|
|
|
DrawBar(x,y+8,w,1,0x4E00E7);
|
|
|
|
}
|
|
|
|
|
2020-05-29 12:54:04 +02:00
|
|
|
:void PutShadow(dword x,y,w,h,skinned, signed strength)
|
2013-03-11 19:16:24 +01:00
|
|
|
{
|
|
|
|
proc_info wForm;
|
2020-05-11 09:32:44 +02:00
|
|
|
dword shadow_buf = mem_Alloc(w*h*3);
|
2013-03-11 19:16:24 +01:00
|
|
|
GetProcessInfo(#wForm, SelfInfo);
|
2013-10-09 20:10:23 +02:00
|
|
|
CopyScreen(shadow_buf, 5*skinned+x+wForm.left, GetSkinHeight()*skinned+y+wForm.top, w, h);
|
2013-03-11 19:16:24 +01:00
|
|
|
ShadowImage(shadow_buf, w, h, strength);
|
|
|
|
_PutImage(x,y,w,h,shadow_buf);
|
|
|
|
mem_Free(shadow_buf);
|
|
|
|
}
|
|
|
|
|
2013-10-09 20:10:23 +02:00
|
|
|
:void DrawPopup(dword x,y,w,h,skinned, col_work,col_border)
|
|
|
|
{
|
|
|
|
DrawRectangle(x,y,w,h,col_border);
|
2013-10-09 21:12:03 +02:00
|
|
|
DrawBar(x+1,y+1,w-1,1,0xFFFfff);
|
2013-10-15 12:30:46 +02:00
|
|
|
DrawBar(x+1,y+2,1,h-2,0xFFFfff);
|
2013-10-09 21:12:03 +02:00
|
|
|
if (col_work!=-1) DrawBar(x+2,y+2,w-2,h-2,col_work);
|
2013-10-09 20:10:23 +02:00
|
|
|
DrawPopupShadow(x,y,w,h-1,skinned);
|
|
|
|
}
|
|
|
|
|
2020-04-11 13:00:31 +02:00
|
|
|
:void Draw3DPopup(dword x,y,w,h)
|
|
|
|
{
|
2020-04-18 01:52:24 +02:00
|
|
|
DrawRectangle3D(x,y,w,h, sc.work_dark, sc.work_graph);
|
|
|
|
DrawBar(x+1,y+1,w-1,1,sc.work_light);
|
|
|
|
DrawBar(x+1,y+2,1,h-2,sc.work_light);
|
2020-04-11 13:00:31 +02:00
|
|
|
DrawPopupShadow(x,y,w,h-1,0);
|
|
|
|
}
|
|
|
|
|
2015-03-05 21:55:28 +01:00
|
|
|
:void DrawPopupShadow(dword x,y,w,h,skinned)
|
|
|
|
{
|
|
|
|
PutShadow(w+x+1,y,1,h+2,skinned,2);
|
|
|
|
PutShadow(w+x+2,y+1,1,h+2,skinned,1);
|
|
|
|
PutShadow(x,y+h+2,w+2,1,skinned,2);
|
|
|
|
PutShadow(x+1,y+h+3,w+1,1,skinned,1);
|
|
|
|
}
|
|
|
|
|
2018-10-01 18:41:14 +02:00
|
|
|
:dword GrayScaleImage(dword color_image, w, h)
|
2013-03-11 19:16:24 +01:00
|
|
|
{
|
2015-08-22 15:27:12 +02:00
|
|
|
dword i,gray,to,rr,gg,bb;
|
|
|
|
to = w*h*3 + color_image;
|
|
|
|
for (i = color_image; i < to; i+=3)
|
2013-03-11 19:16:24 +01:00
|
|
|
{
|
2015-08-22 15:27:12 +02:00
|
|
|
rr = DSBYTE[i];
|
|
|
|
gg = DSBYTE[i+1];
|
|
|
|
bb = DSBYTE[i+2];
|
2013-03-11 19:16:24 +01:00
|
|
|
gray = rr*rr;
|
|
|
|
gray += gg*gg;
|
|
|
|
gray += bb*bb;
|
|
|
|
gray = sqrt(gray) / 3;
|
2015-08-22 15:27:12 +02:00
|
|
|
DSBYTE[i] = DSBYTE[i+1] = DSBYTE[i+2] = gray;
|
2013-03-11 19:16:24 +01:00
|
|
|
}
|
2018-10-01 18:41:14 +02:00
|
|
|
return gray;
|
2013-03-11 19:16:24 +01:00
|
|
|
}
|
|
|
|
|
2020-05-29 12:54:04 +02:00
|
|
|
:void ShadowImage(dword color_image, w, h, signed strength)
|
2013-03-11 19:16:24 +01:00
|
|
|
{
|
2020-05-29 12:54:04 +02:00
|
|
|
byte col;
|
|
|
|
dword to;
|
2013-03-11 19:16:24 +01:00
|
|
|
strength = 10 - strength;
|
|
|
|
to = w*h*3 + color_image;
|
|
|
|
for ( ; color_image < to; color_image++)
|
|
|
|
{
|
2020-05-29 12:54:04 +02:00
|
|
|
col = math.min(strength * DSBYTE[color_image] / 10, 255);
|
2013-03-11 19:16:24 +01:00
|
|
|
DSBYTE[color_image] = col;
|
|
|
|
}
|
2015-07-22 20:32:54 +02:00
|
|
|
}
|
|
|
|
|
2015-12-14 15:50:28 +01:00
|
|
|
:void WriteTextLines(dword x,y,byte fontType, dword color, text_pointer, line_h)
|
|
|
|
{
|
|
|
|
dword next_word_pointer = strchr(text_pointer, '\n');
|
|
|
|
if (next_word_pointer) WriteTextLines(dword x, y+line_h, byte fontType, dword color, next_word_pointer+2, line_h);
|
|
|
|
ESBYTE[next_word_pointer] = NULL;
|
|
|
|
WriteText(dword x, y, byte fontType, dword color, text_pointer);
|
|
|
|
ESBYTE[next_word_pointer] = '\n';
|
|
|
|
}
|
|
|
|
|
2020-04-04 01:17:28 +02:00
|
|
|
:void DrawOvalBorder(dword x,y,w,h, light,dark,right,dots)
|
|
|
|
{
|
|
|
|
DrawBar(x+1, y, w, 1, light);
|
|
|
|
DrawBar(x+1, y+h+1, w, 1, dark);
|
|
|
|
DrawBar(x, y+1, 1, h-1, light);
|
|
|
|
DrawBar(x+w+1, y+2, 1, h-2, right);
|
|
|
|
|
|
|
|
PutPixel(x, y, dots);
|
|
|
|
PutPixel(x+w+1, y+h+1, dots);
|
|
|
|
PutPixel(x, y+h+1, dots);
|
|
|
|
PutPixel(x+w+1, y, dots);
|
|
|
|
|
|
|
|
PutPixel(x, y+h, dark);
|
|
|
|
PutPixel(x+w+1, y+1, light);
|
|
|
|
PutPixel(x+w+1, y+h, dark);
|
|
|
|
}
|
|
|
|
|
2020-04-13 13:51:56 +02:00
|
|
|
:bool skin_is_dark()
|
2020-04-11 13:00:31 +02:00
|
|
|
{
|
2020-04-13 13:51:56 +02:00
|
|
|
dword gray;
|
2020-04-18 01:52:24 +02:00
|
|
|
dword color_image = #sc.work;
|
2020-04-13 13:51:56 +02:00
|
|
|
|
|
|
|
gray = DSBYTE[color_image]*DSBYTE[color_image];
|
|
|
|
gray += DSBYTE[color_image+1]*DSBYTE[color_image+1];
|
|
|
|
gray += DSBYTE[color_image+2]*DSBYTE[color_image+2];
|
|
|
|
gray = sqrt(gray) / 3;
|
|
|
|
|
|
|
|
if (gray < 65) {
|
2020-04-11 13:00:31 +02:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-11 14:46:53 +01:00
|
|
|
//this function increase falue and return it
|
|
|
|
//useful for list of controls which goes one after one
|
2018-02-16 16:53:51 +01:00
|
|
|
:struct incn
|
2016-02-11 14:46:53 +01:00
|
|
|
{
|
|
|
|
dword n;
|
|
|
|
dword inc(dword _addition);
|
2020-05-05 01:50:41 +02:00
|
|
|
dword set(dword _new_val);
|
2016-02-11 14:46:53 +01:00
|
|
|
};
|
|
|
|
|
2018-02-16 16:53:51 +01:00
|
|
|
:dword incn::inc(dword _addition)
|
2016-02-11 14:46:53 +01:00
|
|
|
{
|
2020-05-05 01:50:41 +02:00
|
|
|
n += _addition;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
:dword incn::set(dword _new_val)
|
|
|
|
{
|
|
|
|
n =_new_val;
|
2016-02-11 14:46:53 +01:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2018-04-16 00:44:36 +02:00
|
|
|
//block with hover
|
|
|
|
struct block {
|
|
|
|
int x,y,w,h;
|
|
|
|
bool hovered();
|
|
|
|
void set_size();
|
|
|
|
};
|
|
|
|
|
|
|
|
:bool block::hovered() {
|
2018-10-09 21:12:02 +02:00
|
|
|
if ((mouse.x>=x) && (mouse.y>=y)
|
|
|
|
&& (mouse.y<=y+h) && (mouse.x<=x+w))
|
2018-04-16 00:44:36 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
:void block::set_size(dword _x, _y, _w, _h)
|
|
|
|
{
|
|
|
|
x=_x;
|
|
|
|
y=_y;
|
|
|
|
w=_w;
|
|
|
|
h=_h;
|
|
|
|
}
|
|
|
|
|
2016-02-20 14:06:19 +01:00
|
|
|
|
2017-10-11 00:26:56 +02:00
|
|
|
|
2016-02-20 14:06:19 +01:00
|
|
|
|
|
|
|
|
2015-07-22 20:32:54 +02:00
|
|
|
#endif
|