forked from KolibriOS/kolibrios
table: use boxlib scrollbars, code refactoring, bug fixing and optimizing
git-svn-id: svn://kolibrios.org@7498 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
17f128e429
commit
f958154fa0
@ -2,6 +2,7 @@ call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
|
|||||||
|
|
||||||
@cl /c /O2 /nologo /GS- /GR- /fp:fast *.cpp
|
@cl /c /O2 /nologo /GS- /GR- /fp:fast *.cpp
|
||||||
@link /nologo /manifest:no /entry:crtStartUp /subsystem:native /base:0 /fixed /align:16 /nodefaultlib hello.obj *.obj
|
@link /nologo /manifest:no /entry:crtStartUp /subsystem:native /base:0 /fixed /align:16 /nodefaultlib hello.obj *.obj
|
||||||
|
@del *.kex
|
||||||
@pe2kos hello.exe hello.kex
|
@pe2kos hello.exe hello.kex
|
||||||
@del hello.exe
|
@del hello.exe
|
||||||
@del *.obj
|
@del *.obj
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
//íå èä¸ò äàëüøå 98 ñòðîêè
|
//íå èä¸ò äàëüøå 98 ñòðîêè
|
||||||
//óäàëåíû íåèñïîëüçóåìûå ïåðåìåííûå
|
|
||||||
//ïðàâèëüíîå ñâîðà÷èâàíèå â çàãîëîâîê
|
|
||||||
|
|
||||||
//çà÷åì ñòðîêà 450?
|
|
||||||
//åñëè âûäåëèòü îáëàñòü ÿ÷ååê è ñäâèíóòü êóðñîð ââîäà ñ ïîìîùüþ êëàâèø, "ñëåäû" îñòàíóòüñÿ
|
//åñëè âûäåëèòü îáëàñòü ÿ÷ååê è ñäâèíóòü êóðñîð ââîäà ñ ïîìîùüþ êëàâèø, "ñëåäû" îñòàíóòüñÿ
|
||||||
//íåëüçÿ ïåðåìåùàòüñÿ ïî áóêâàì â ðåäàêòèðóåìîé ñòðîêå
|
//íåëüçÿ ïåðåìåùàòüñÿ ïî áóêâàì â ðåäàêòèðóåìîé ñòðîêå
|
||||||
|
|
||||||
@ -11,7 +7,7 @@
|
|||||||
#include "calc.h"
|
#include "calc.h"
|
||||||
#include "use_library.h"
|
#include "use_library.h"
|
||||||
|
|
||||||
#define TABLE_VERSION "0.97"
|
#define TABLE_VERSION "0.98"
|
||||||
|
|
||||||
// ñòðîêè, êîòîðûå âûâîäèò ïðîãðàììà
|
// ñòðîêè, êîòîðûå âûâîäèò ïðîãðàììà
|
||||||
const char *sFileSign = "KolibriTable File\n";
|
const char *sFileSign = "KolibriTable File\n";
|
||||||
@ -26,17 +22,16 @@ const char msg_save[] = "File saved. ";
|
|||||||
const char msg_load[] = "File loaded. ";
|
const char msg_load[] = "File loaded. ";
|
||||||
const char msg_new[] = "Memory cleared. ";
|
const char msg_new[] = "Memory cleared. ";
|
||||||
|
|
||||||
// ñâîé PID
|
// initial window sizes
|
||||||
Dword myPID = -1;
|
#define WND_W 640
|
||||||
|
#define WND_H 480
|
||||||
|
// new window size and coordinates
|
||||||
|
int wi;
|
||||||
|
int he;
|
||||||
|
int cWidth;
|
||||||
|
int cHeight;
|
||||||
|
|
||||||
// íà÷àëüíûå ðàçìåðû
|
// interface colors
|
||||||
#define WND_W 550
|
|
||||||
#define WND_H 400
|
|
||||||
// íîâûå ðàçìåðû è êîîðäèíàòû
|
|
||||||
int wi = WND_W, he = WND_H;
|
|
||||||
int win_x, win_y;
|
|
||||||
|
|
||||||
// öâåòà ýëåìåíòîâ èíòåðôåéñà
|
|
||||||
#define GRID_COLOR 0xa0a0a0
|
#define GRID_COLOR 0xa0a0a0
|
||||||
#define TEXT_COLOR 0x000000
|
#define TEXT_COLOR 0x000000
|
||||||
#define CELL_COLOR 0xffffff
|
#define CELL_COLOR 0xffffff
|
||||||
@ -44,39 +39,33 @@ int win_x, win_y;
|
|||||||
#define FIXED_CELL_COLOR 0xe0e0ff
|
#define FIXED_CELL_COLOR 0xe0e0ff
|
||||||
#define SEL_FIXED_CELL_COLOR 0x758FC1
|
#define SEL_FIXED_CELL_COLOR 0x758FC1
|
||||||
#define TEXT_SEL_FIXED_COLOR 0xffffff
|
#define TEXT_SEL_FIXED_COLOR 0xffffff
|
||||||
|
#define PANEL_BG_COLOR 0xe4dfe1
|
||||||
|
|
||||||
#define SCROLL_BAR_WIDTH 16
|
#define SCROLL_SIZE 16
|
||||||
#define SCROLL_BAR_HEIGHT 16
|
|
||||||
|
|
||||||
// ID êíîïîê
|
// button IDs
|
||||||
#define FILENAME_BUTTON 0x10
|
#define FILENAME_BUTTON 0x10
|
||||||
#define SAVE_BUTTON 0x11
|
#define SAVE_BUTTON 0x11
|
||||||
#define LOAD_BUTTON 0x12
|
#define LOAD_BUTTON 0x12
|
||||||
#define NEW_BUTTON 0x13
|
#define NEW_BUTTON 0x13
|
||||||
#define DRAG_BUTTON 0x20
|
#define DRAG_BUTTON 0x20
|
||||||
|
|
||||||
#define SCROLL_LEFT_BUTTON 0x21
|
|
||||||
#define SCROLL_RIGHT_BUTTON 0x22
|
|
||||||
#define SCROLL_UP_BUTTON 0x23
|
|
||||||
#define SCROLL_DOWN_BUTTON 0x24
|
|
||||||
#define SCROLL_WIDTH 0x25
|
|
||||||
#define SCROLL_HEIGHT 0x26
|
|
||||||
|
|
||||||
#define COL_BUTTON 0x100
|
#define COL_BUTTON 0x100
|
||||||
#define ROW_BUTTON (COL_BUTTON + 0x100)
|
#define ROW_BUTTON (COL_BUTTON + 0x100)
|
||||||
#define COL_HEAD_BUTTON (ROW_BUTTON + 0x100)
|
#define COL_HEAD_BUTTON (ROW_BUTTON + 0x100)
|
||||||
#define ROW_HEAD_BUTTON (COL_HEAD_BUTTON + 0x100)
|
#define ROW_HEAD_BUTTON (COL_HEAD_BUTTON + 0x100)
|
||||||
#define CELL_BUTTON (ROW_HEAD_BUTTON + 0x100)
|
#define CELL_BUTTON (ROW_HEAD_BUTTON + 0x100)
|
||||||
|
|
||||||
|
// bottom panel
|
||||||
// íèæíÿÿ ïàíåëü ñ êíîïêàìè è ïîëåì ââîäà
|
|
||||||
#define MENU_PANEL_HEIGHT 40
|
#define MENU_PANEL_HEIGHT 40
|
||||||
Dword panel_y = 0;
|
Dword panel_y = 0;
|
||||||
Dword mouse_dd;
|
Dword mouse_dd;
|
||||||
// äëÿ ïîëÿ ââîäà
|
|
||||||
|
|
||||||
|
// editbox data
|
||||||
char edit_text[256] = "";
|
char edit_text[256] = "";
|
||||||
edit_box cell_box = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,255,(dword)&edit_text,(dword)&mouse_dd,0};
|
edit_box cell_box = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,255,(dword)&edit_text,(dword)&mouse_dd,0};
|
||||||
|
scroll_bar scroll_v = { SCROLL_SIZE,200,398, NULL, SCROLL_SIZE,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
|
||||||
|
scroll_bar scroll_h = { 200,NULL,SCROLL_SIZE, NULL, SCROLL_SIZE,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
|
||||||
|
|
||||||
// ÿ÷åéêè - èõ ïàðàìåòðû è òåêñò
|
// ÿ÷åéêè - èõ ïàðàìåòðû è òåêñò
|
||||||
DWORD def_col_width = 80, def_row_height = 16;
|
DWORD def_col_width = 80, def_row_height = 16;
|
||||||
@ -120,7 +109,7 @@ DWORD nx = 0, ny = 0;
|
|||||||
// ðåäàêòèðîâàíèå èìåíè ôàéëà
|
// ðåäàêòèðîâàíèå èìåíè ôàéëà
|
||||||
bool fn_edit = 0;
|
bool fn_edit = 0;
|
||||||
char fname[256];
|
char fname[256];
|
||||||
edit_box file_box = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,255,(dword)&fname,(dword)&mouse_dd,0};
|
edit_box file_box = {98,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,255,(dword)&fname,(dword)&mouse_dd,0};
|
||||||
|
|
||||||
// èçìåíåíèå ðàçìåðîâ
|
// èçìåíåíèå ðàçìåðîâ
|
||||||
#define SIZE_X 1 // ñîñòîÿíèå
|
#define SIZE_X 1 // ñîñòîÿíèå
|
||||||
@ -129,16 +118,12 @@ edit_box file_box = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,255,(d
|
|||||||
#define SIZE_DRAG 4
|
#define SIZE_DRAG 4
|
||||||
int size_mouse_x, size_mouse_y, size_id, size_state = 0;
|
int size_mouse_x, size_mouse_y, size_id, size_state = 0;
|
||||||
|
|
||||||
int window_is_dragged = 0; // ñåé÷àñ ïåðåòàñêèâàåòñÿ îêíî
|
|
||||||
|
|
||||||
// ðàñòàñêèâàíèå ÿ÷åéêè ïðè åå òàùåíèè çà ïðàâûé íèæíèé óãîë, ñ çàïîëíåíèåì ÿ÷ååê
|
// ðàñòàñêèâàíèå ÿ÷åéêè ïðè åå òàùåíèè çà ïðàâûé íèæíèé óãîë, ñ çàïîëíåíèåì ÿ÷ååê
|
||||||
int drag_x, drag_y;
|
int drag_x, drag_y;
|
||||||
int old_end_x, old_end_y;
|
int old_end_x, old_end_y;
|
||||||
|
|
||||||
void draw_window();
|
void draw_window();
|
||||||
|
|
||||||
//edit_box ebox = {250,14,35,0xffffff,0x6f9480,0,0xAABBCC,0,248,0,2,20,20};
|
|
||||||
|
|
||||||
void kos_DrawRegion(Word x, Word y,Word width, Word height, Dword color1, Word invert)
|
void kos_DrawRegion(Word x, Word y,Word width, Word height, Dword color1, Word invert)
|
||||||
{
|
{
|
||||||
kos_DrawLine(x,y,x+width-2,y,color1,invert);
|
kos_DrawLine(x,y,x+width-2,y,color1,invert);
|
||||||
@ -147,9 +132,52 @@ void kos_DrawRegion(Word x, Word y,Word width, Word height, Dword color1, Word i
|
|||||||
kos_DrawLine(x+1,y+height-1,x+width-1,y+height-1,color1,invert);
|
kos_DrawLine(x+1,y+height-1,x+width-1,y+height-1,color1,invert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void kos_DebugValue(char *str, int n)
|
||||||
|
{
|
||||||
|
char debuf[50];
|
||||||
|
sprintf(debuf, "%S: %U\n", str, n);
|
||||||
|
rtlDebugOutString(debuf);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawScrolls()
|
||||||
|
{
|
||||||
|
// HOR
|
||||||
|
scroll_h.x = 0;
|
||||||
|
scroll_h.y = he - SCROLL_SIZE;
|
||||||
|
scroll_h.w = cWidth - SCROLL_SIZE;
|
||||||
|
scroll_h.all_redraw = true;
|
||||||
|
scroll_h.max_area = col_count;
|
||||||
|
scroll_h.cur_area = nx-scroll_x-1;
|
||||||
|
scroll_h.position = scroll_x-1;
|
||||||
|
scrollbar_h_draw((DWORD)&scroll_h);
|
||||||
|
|
||||||
|
// VER
|
||||||
|
scroll_v.x = cWidth - SCROLL_SIZE - 1;
|
||||||
|
scroll_v.y = 0;
|
||||||
|
scroll_v.h = he - SCROLL_SIZE;
|
||||||
|
scroll_v.all_redraw = true;
|
||||||
|
scroll_v.max_area = row_count;
|
||||||
|
scroll_v.cur_area = ny-scroll_y-1;
|
||||||
|
scroll_v.position = scroll_y-1;
|
||||||
|
scrollbar_v_draw((DWORD)&scroll_v);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawSelectedFrame(int x, int y, int w, int h, DWORD col)
|
||||||
|
{
|
||||||
|
kos_DrawBar(x,y,w,2,col); // up
|
||||||
|
kos_DrawBar(x,y,2,h,col); // left
|
||||||
|
kos_DrawBar(x,y+h-2,w-2-3,2,col); // bottom
|
||||||
|
kos_DrawBar(x+w-2,y, 2,h-2-3,col); // right
|
||||||
|
kos_DrawBar(x+w-4,y+h-4,4,4,col);
|
||||||
|
}
|
||||||
|
|
||||||
|
void kos_DeleteButton(int id)
|
||||||
|
{
|
||||||
|
kos_DefineButton(NULL, NULL, NULL, NULL, id+BT_DEL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void start_edit(int x, int y)
|
void start_edit(int x, int y)
|
||||||
{
|
{
|
||||||
|
|
||||||
int ch = 0;
|
int ch = 0;
|
||||||
if (x < scroll_x || x > nx - 1)
|
if (x < scroll_x || x > nx - 1)
|
||||||
{
|
{
|
||||||
@ -238,8 +266,7 @@ void check_sel()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ñäâèíóòü âûäåëåíèå
|
void move_selection(DWORD new_x, DWORD new_y)
|
||||||
void move_sel(DWORD new_x, DWORD new_y)
|
|
||||||
{
|
{
|
||||||
sel_moved = 1;
|
sel_moved = 1;
|
||||||
stop_edit();
|
stop_edit();
|
||||||
@ -270,7 +297,7 @@ void draw_custom_button(int x0, int y0, int sx, int sy, int blue_border)
|
|||||||
|
|
||||||
// ñåðûé ïðÿìîóãîëüíèê
|
// ñåðûé ïðÿìîóãîëüíèê
|
||||||
|
|
||||||
kos_DrawBar(x0 + 1, y0 + 1, sx - 1, sy - 1, 0xe4dfe1);
|
kos_DrawBar(x0 + 1, y0 + 1, sx - 1, sy - 1, PANEL_BG_COLOR);
|
||||||
|
|
||||||
// äâå áåëûå ëèíèè: ñâåðõó è ñëåâà
|
// äâå áåëûå ëèíèè: ñâåðõó è ñëåâà
|
||||||
|
|
||||||
@ -319,8 +346,9 @@ int debugc=0;
|
|||||||
void draw_grid()
|
void draw_grid()
|
||||||
{
|
{
|
||||||
int i,j;
|
int i,j;
|
||||||
long x0 = 0, y0 = 0, x = 0, y = 0, dx, popravka;
|
long x0 = 0, y0 = 0, x = 0, y = 0, dx;
|
||||||
DWORD text_color;
|
DWORD text_color;
|
||||||
|
DWORD bg_color;
|
||||||
//int lx, ly;
|
//int lx, ly;
|
||||||
|
|
||||||
// sprintf(debuf, "%U,%U", scroll_x, scroll_y);
|
// sprintf(debuf, "%U,%U", scroll_x, scroll_y);
|
||||||
@ -337,7 +365,7 @@ void draw_grid()
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// î÷èñòèòü âñþ îáëàñòü ÿ÷ååê
|
// î÷èñòèòü âñþ îáëàñòü ÿ÷ååê
|
||||||
//kos_DrawBar(col_width[0]+1, row_height[0]+1, wi - SCROLL_BAR_WIDTH-col_width[0]-1, he - SCROLL_BAR_HEIGHT-row_height[0]-1, 0xffffff);
|
//kos_DrawBar(col_width[0]+1, row_height[0]+1, wi - SCROLL_SIZE-col_width[0]-1, he - SCROLL_SIZE-row_height[0]-1, 0xffffff);
|
||||||
}
|
}
|
||||||
|
|
||||||
col_left[0] = 0;
|
col_left[0] = 0;
|
||||||
@ -350,35 +378,37 @@ void draw_grid()
|
|||||||
if (i >= scroll_x)
|
if (i >= scroll_x)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
if (!sel_moved || is_x_changed(i))
|
if (!sel_moved || is_x_changed(i)) {
|
||||||
kos_DrawLine(x-x0, 0, x-x0, row_height[0], GRID_COLOR, 0);
|
kos_DrawLine(x-x0, 0, x-x0, row_height[0], GRID_COLOR, 0);
|
||||||
|
}
|
||||||
// è çàãîëîâîê ÿ÷åéêè ïî õ
|
// è çàãîëîâîê ÿ÷åéêè ïî õ
|
||||||
text_color = TEXT_COLOR;
|
text_color = TEXT_COLOR;
|
||||||
dx = (col_width[i]-6)/2;
|
dx = (col_width[i]-6)/2;
|
||||||
int dy = (row_height[0] - 8) / 2 + 1;
|
int dy = (row_height[0] - 8) / 2 + 1;
|
||||||
int cur_width = col_width[i] - 1;
|
int cur_width = col_width[i] - 1;
|
||||||
if (cur_width + x - x0 > wi - SCROLL_BAR_WIDTH)
|
if (cur_width + x - x0 > wi - SCROLL_SIZE)
|
||||||
cur_width = wi - SCROLL_BAR_WIDTH - x + x0;
|
cur_width = wi - SCROLL_SIZE - x + x0 -1;
|
||||||
if (!sel_moved || (is_x_changed(i)))
|
if (!sel_moved || (is_x_changed(i))) {
|
||||||
if (is_between(i,sel_x,sel_end_x))
|
if (is_between(i,sel_x,sel_end_x))
|
||||||
{
|
{
|
||||||
kos_DrawBar(x - x0 + 1,0,cur_width,row_height[0],SEL_FIXED_CELL_COLOR); //0x0000CC
|
bg_color = SEL_FIXED_CELL_COLOR;
|
||||||
text_color = TEXT_SEL_FIXED_COLOR;
|
text_color = TEXT_SEL_FIXED_COLOR;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
kos_DrawBar(x - x0 + 1,0,cur_width,row_height[0],FIXED_CELL_COLOR);
|
bg_color = FIXED_CELL_COLOR;
|
||||||
text_color = TEXT_COLOR;
|
text_color = TEXT_COLOR;
|
||||||
}
|
}
|
||||||
if (!sel_moved || (is_x_changed(i))) kos_WriteTextToWindow(x-x0+2+dx,dy,0,text_color,cells[i][0],strlen(cells[i][0]));
|
kos_DrawBar(x - x0 + 1,0,cur_width,row_height[0],bg_color);
|
||||||
|
kos_WriteTextToWindow(x-x0+2+dx,dy,0,text_color,cells[i][0],strlen(cells[i][0]));
|
||||||
|
}
|
||||||
// åñòü êíîïêà ñòîáëöà è åùå êíîïêà èçìåíåíèÿ øèðèíû
|
// åñòü êíîïêà ñòîáëöà è åùå êíîïêà èçìåíåíèÿ øèðèíû
|
||||||
if (x - x0 + col_width[i] <= wi - col_width[0])
|
if (x - x0 + col_width[i] <= wi - col_width[0])
|
||||||
{
|
{
|
||||||
//kos_DeleteButton(COL_HEAD_BUTTON+i);
|
kos_DeleteButton(COL_HEAD_BUTTON+i);
|
||||||
kos_DefineButton(x-x0+5,0,cur_width - 10,row_height[0]-1,0x60000000+COL_HEAD_BUTTON+i,0);
|
kos_DefineButton(x-x0+5,0,cur_width - 10,row_height[0]-1,BT_NODRAW+COL_HEAD_BUTTON+i,0);
|
||||||
}
|
}
|
||||||
//kos_DefineButton(x-x0+col_width[i]-10,0,15,row_height[0]-1,0x60000000+COL_SIZE_BUTTON+i,0);
|
//kos_DefineButton(x-x0+col_width[i]-10,0,15,row_height[0]-1,BT_NODRAW+COL_SIZE_BUTTON+i,0);
|
||||||
col_left[i] = x - x0;
|
col_left[i] = x - x0;
|
||||||
}
|
}
|
||||||
if (x - x0 > wi - col_width[0])
|
if (x - x0 > wi - col_width[0])
|
||||||
@ -406,14 +436,14 @@ void draw_grid()
|
|||||||
y = row_height[0];
|
y = row_height[0];
|
||||||
ny = 1;
|
ny = 1;
|
||||||
row_top[0] = 0;
|
row_top[0] = 0;
|
||||||
for (i = 1; i < row_count && y - y0 < he - 10; i++)
|
for (i = 1; i < row_count && y - y0 < he - SCROLL_SIZE; i++)
|
||||||
{
|
{
|
||||||
row_top[i] = -1;
|
row_top[i] = -1;
|
||||||
if (i >= scroll_y)
|
if (i >= scroll_y)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
if (!sel_moved || (is_y_changed(i)))
|
if (!sel_moved || (is_y_changed(i)))
|
||||||
kos_DrawLine(0, y - y0, wi - SCROLL_BAR_WIDTH, y - y0, GRID_COLOR, 0);
|
kos_DrawLine(0, y - y0, wi - SCROLL_SIZE - 1, y - y0, GRID_COLOR, 0);
|
||||||
// è çàãîëîâîê ÿ÷åéêè ïî y
|
// è çàãîëîâîê ÿ÷åéêè ïî y
|
||||||
text_color = TEXT_COLOR;
|
text_color = TEXT_COLOR;
|
||||||
dx = (col_width[0]-6 * strlen(cells[0][i]))/2; // optimize this, change strlen
|
dx = (col_width[0]-6 * strlen(cells[0][i]))/2; // optimize this, change strlen
|
||||||
@ -433,9 +463,9 @@ void draw_grid()
|
|||||||
if (!sel_moved || (is_y_changed(i)))
|
if (!sel_moved || (is_y_changed(i)))
|
||||||
kos_WriteTextToWindow(2+dx,y-y0+dy,0,text_color,cells[0][i],strlen(cells[0][i]));
|
kos_WriteTextToWindow(2+dx,y-y0+dy,0,text_color,cells[0][i],strlen(cells[0][i]));
|
||||||
|
|
||||||
|
kos_DeleteButton(ROW_HEAD_BUTTON+i);
|
||||||
kos_DefineButton(0,y-y0+5,col_width[0]-1,row_height[i]-6,0x60000000+ROW_HEAD_BUTTON+i,0);
|
kos_DefineButton(0,y-y0+5,col_width[0]-1,row_height[i]-6,BT_NODRAW+ROW_HEAD_BUTTON+i,0);
|
||||||
//kos_DefineButton(0,y-y0+row_height[i]-5,col_width[0]-1,10,0x60000000+ROW_SIZE_BUTTON+i,0);
|
//kos_DefineButton(0,y-y0+row_height[i]-5,col_width[0]-1,10,BT_NODRAW+ROW_SIZE_BUTTON+i,0);
|
||||||
row_top[i] = y - y0;
|
row_top[i] = y - y0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -452,7 +482,7 @@ void draw_grid()
|
|||||||
for (j = i + 1; j < row_count; j++)
|
for (j = i + 1; j < row_count; j++)
|
||||||
row_top[j] = he;
|
row_top[j] = he;
|
||||||
if (!sel_moved || (is_y_changed(ny)))
|
if (!sel_moved || (is_y_changed(ny)))
|
||||||
kos_DrawLine(0, y - y0, wi - SCROLL_BAR_WIDTH, y - y0, GRID_COLOR, 0);
|
kos_DrawLine(0, y - y0, wi - SCROLL_SIZE, y - y0, GRID_COLOR, 0);
|
||||||
|
|
||||||
if (!sel_moved || (is_x_changed(0) && is_y_changed(0)))
|
if (!sel_moved || (is_x_changed(0) && is_y_changed(0)))
|
||||||
kos_DrawBar(0,0,col_width[0],row_height[0],FIXED_CELL_COLOR);
|
kos_DrawBar(0,0,col_width[0],row_height[0],FIXED_CELL_COLOR);
|
||||||
@ -461,11 +491,6 @@ void draw_grid()
|
|||||||
//sprintf(debuf, "%U, %U; %U, %U", x0, y0, nx, ny);
|
//sprintf(debuf, "%U, %U; %U, %U", x0, y0, nx, ny);
|
||||||
//rtlDebugOutString(debuf);
|
//rtlDebugOutString(debuf);
|
||||||
|
|
||||||
// popravka = (y - y0 < he - 10);
|
|
||||||
//sprintf(debuf, "%U, %U", scroll_y, ny);
|
|
||||||
//rtlDebugOutString(debuf);
|
|
||||||
|
|
||||||
|
|
||||||
// ñàìè ÿ÷åéêè
|
// ñàìè ÿ÷åéêè
|
||||||
|
|
||||||
y = row_height[0];
|
y = row_height[0];
|
||||||
@ -473,7 +498,7 @@ void draw_grid()
|
|||||||
{
|
{
|
||||||
x = col_width[0];
|
x = col_width[0];
|
||||||
if (!sel_moved)
|
if (!sel_moved)
|
||||||
kos_DrawBar(col_width[0]+1, y+1, wi - SCROLL_BAR_WIDTH-col_width[0]-1, row_height[i]-1, 0xffffff);
|
kos_DrawBar(col_width[0]+1, y+1, wi - SCROLL_SIZE-col_width[0]-1, row_height[i]-1, 0xffffff);
|
||||||
for (j = scroll_x; j < nx-1; j++)
|
for (j = scroll_x; j < nx-1; j++)
|
||||||
{
|
{
|
||||||
if (!sel_moved || is_x_changed(j) || is_y_changed(i))
|
if (!sel_moved || is_x_changed(j) || is_y_changed(i))
|
||||||
@ -491,13 +516,7 @@ void draw_grid()
|
|||||||
{
|
{
|
||||||
if (i == sel_y && j == sel_x) // ðàìêà
|
if (i == sel_y && j == sel_x) // ðàìêà
|
||||||
{
|
{
|
||||||
kos_DrawBar(x,y,col_width[j],2,TEXT_COLOR); // up
|
DrawSelectedFrame(x+1,y, col_width[j]-1, row_height[j], TEXT_COLOR);
|
||||||
kos_DrawBar(x,y,2,row_height[i],TEXT_COLOR); // left
|
|
||||||
kos_DrawBar(x,y+row_height[i]-2,col_width[j]-2-3,2,TEXT_COLOR); // bottom
|
|
||||||
kos_DrawBar(x+col_width[j]-2,y, 2,row_height[i]-2-3,TEXT_COLOR); // right
|
|
||||||
|
|
||||||
kos_DrawBar(x+col_width[j]-4,y+row_height[i]-4,4,4,TEXT_COLOR);
|
|
||||||
//kos_DefineButton(x+col_width[j]-2,y+row_height[i]-2,4,4,0x60000000+DRAG_BUTTON,0x000000);
|
|
||||||
drag_x = x + col_width[j] - 4;
|
drag_x = x + col_width[j] - 4;
|
||||||
drag_y = y + row_height[i] - 4;
|
drag_y = y + row_height[i] - 4;
|
||||||
}
|
}
|
||||||
@ -505,7 +524,7 @@ void draw_grid()
|
|||||||
kos_DrawBar(x + 1,y + 1,col_width[j] - 2,row_height[i] - 2,SEL_CELL_COLOR); // âûäåëåíà íî íå îñíîâíàÿ(ñåðàÿ)
|
kos_DrawBar(x + 1,y + 1,col_width[j] - 2,row_height[i] - 2,SEL_CELL_COLOR); // âûäåëåíà íî íå îñíîâíàÿ(ñåðàÿ)
|
||||||
|
|
||||||
}
|
}
|
||||||
//kos_DefineButton(x,y,col_width[j]-1,row_height[i]-1,0x60000000+CELL_BUTTON+((i << 8) + j),0);
|
//kos_DefineButton(x,y,col_width[j]-1,row_height[i]-1,BT_NODRAW+CELL_BUTTON+((i << 8) + j),0);
|
||||||
|
|
||||||
char *text;
|
char *text;
|
||||||
if (values[j][i] && values[j][i][0] == '#')
|
if (values[j][i] && values[j][i][0] == '#')
|
||||||
@ -532,61 +551,7 @@ void draw_grid()
|
|||||||
y += row_height[i];
|
y += row_height[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Scrolls:
|
DrawScrolls();
|
||||||
// horizontal
|
|
||||||
|
|
||||||
//if (!sel_moved) kos_DrawBar(0, he - SCROLL_BAR_HEIGHT, wi - SCROLL_BAR_WIDTH, SCROLL_BAR_HEIGHT, FIXED_CELL_COLOR);
|
|
||||||
//if (!sel_moved) kos_DrawBar(scroll_x * wi / col_count, he - SCROLL_BAR_HEIGHT, wi / col_count, SCROLL_BAR_HEIGHT, SEL_FIXED_CELL_COLOR);
|
|
||||||
if (!sel_moved)
|
|
||||||
{
|
|
||||||
// ãîðèçîíòàëü
|
|
||||||
kos_DrawBar(17, he - SCROLL_BAR_HEIGHT, wi - SCROLL_BAR_WIDTH - 32, SCROLL_BAR_HEIGHT, 0xced0d0);
|
|
||||||
// ñèíèå ëèíèè
|
|
||||||
kos_DrawRegion(0, he - SCROLL_BAR_HEIGHT, wi - SCROLL_BAR_WIDTH, SCROLL_BAR_HEIGHT+1, 0x94aece, 0);
|
|
||||||
// ëåâàÿ êíîïêà
|
|
||||||
draw_custom_button(1, he - SCROLL_BAR_HEIGHT + 1, 14, 14, 1);
|
|
||||||
kos_WriteTextToWindow(6, he - SCROLL_BAR_HEIGHT + 5, 0, 0, "\x1B", 1);
|
|
||||||
// ïðàâàÿ
|
|
||||||
draw_custom_button(wi - SCROLL_BAR_WIDTH * 2 + 1, he - SCROLL_BAR_HEIGHT + 1, 14, 14, 1);
|
|
||||||
kos_WriteTextToWindow(wi - SCROLL_BAR_WIDTH * 2 + 6, he - SCROLL_BAR_HEIGHT + 5, 0, 0, "\x1A", 1);
|
|
||||||
// ïîëçóíîê
|
|
||||||
int tmp_w = (nx - scroll_x) * (wi - SCROLL_BAR_WIDTH - 2 * 14 - 14) / (col_count + 1);
|
|
||||||
if (tmp_w < 16)
|
|
||||||
tmp_w = 16;
|
|
||||||
draw_custom_button(17 + (scroll_x - 1) * (wi - SCROLL_BAR_WIDTH - 2 * 14 - 14) / (col_count + 1), he - SCROLL_BAR_HEIGHT + 1,
|
|
||||||
tmp_w, 14, 1);
|
|
||||||
|
|
||||||
#define sw(x,y) y,x
|
|
||||||
// íå ïèíàéòå ìåíÿ çà ýòî, áûëî ëåíü ïåðåñòàâëÿòü ðóêàìè...
|
|
||||||
|
|
||||||
// âåðòèêàëü
|
|
||||||
kos_DrawBar(sw(17, wi - SCROLL_BAR_WIDTH), sw(he - SCROLL_BAR_HEIGHT - 33, SCROLL_BAR_WIDTH), 0xced0d0);
|
|
||||||
// ñèíèå ëèíèè
|
|
||||||
kos_DrawRegion(sw(0, wi - SCROLL_BAR_WIDTH), sw(he - SCROLL_BAR_HEIGHT, SCROLL_BAR_WIDTH+1), 0x94aece, 0); // up
|
|
||||||
|
|
||||||
// âåðõíÿÿ êíîïêà
|
|
||||||
draw_custom_button(sw(1, wi - SCROLL_BAR_WIDTH + 1), 14, 14, 1);
|
|
||||||
kos_WriteTextToWindow(sw(5, wi - SCROLL_BAR_WIDTH + 6), 0, 0, "\x18", 1);
|
|
||||||
// íèæíÿÿ
|
|
||||||
draw_custom_button(sw(he - SCROLL_BAR_HEIGHT * 2 + 1, wi - SCROLL_BAR_WIDTH + 1), 14, 14, 1);
|
|
||||||
//draw_custom_button(sw(he - SCROLL_BAR_HEIGHT * 2 + 1, wi - SCROLL_BAR_WIDTH + 1), 14, 14, 1);
|
|
||||||
kos_WriteTextToWindow(sw(he - SCROLL_BAR_HEIGHT * 2 + 5, wi - SCROLL_BAR_WIDTH + 6), 0, 0, "\x19", 1);
|
|
||||||
// ïîëçóíîê
|
|
||||||
int tmp_h = (ny - scroll_y) * (he - SCROLL_BAR_HEIGHT - 2 * 14 - 14) / (row_count + 1);
|
|
||||||
if (tmp_h < 16)
|
|
||||||
tmp_h = 16;
|
|
||||||
draw_custom_button(sw(17 + (scroll_y - 1) * (he - SCROLL_BAR_HEIGHT - 2 * 14 - 14) / (row_count + 1), wi - SCROLL_BAR_WIDTH + 1),
|
|
||||||
sw(tmp_h, 14), 1);
|
|
||||||
}
|
|
||||||
#define NO_DRAW 0x60000000
|
|
||||||
kos_DefineButton(1, he - SCROLL_BAR_HEIGHT + 1, 14, 14, NO_DRAW + SCROLL_LEFT_BUTTON,0);
|
|
||||||
kos_DefineButton(wi - SCROLL_BAR_WIDTH * 2 + 2, he - SCROLL_BAR_HEIGHT + 1, 14, 14, NO_DRAW + SCROLL_RIGHT_BUTTON,0);
|
|
||||||
kos_DefineButton(17, he - SCROLL_BAR_HEIGHT + 1, (wi - SCROLL_BAR_WIDTH - 2 * 14), 14, NO_DRAW + SCROLL_WIDTH,0);
|
|
||||||
|
|
||||||
kos_DefineButton(sw(1, wi - SCROLL_BAR_WIDTH + 1), 14, 14, NO_DRAW + SCROLL_UP_BUTTON,0);
|
|
||||||
kos_DefineButton(sw(he - SCROLL_BAR_HEIGHT * 2 + 2, wi - SCROLL_BAR_WIDTH + 1), 14, 14, NO_DRAW + SCROLL_DOWN_BUTTON,0);
|
|
||||||
kos_DefineButton(sw(17, wi - SCROLL_BAR_WIDTH + 1), sw((he - SCROLL_BAR_HEIGHT - 2 * 14), 14), NO_DRAW + SCROLL_HEIGHT,0);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// î÷åíü áûñòðîå ðèñîâàíèå ñåòêè, â ïðîöåññå èçìåíåíèÿ ðàçìåðîâ ÿ÷ååê
|
// î÷åíü áûñòðîå ðèñîâàíèå ñåòêè, â ïðîöåññå èçìåíåíèÿ ðàçìåðîâ ÿ÷ååê
|
||||||
@ -669,79 +634,54 @@ void draw_drag()
|
|||||||
|
|
||||||
void draw_window()
|
void draw_window()
|
||||||
{
|
{
|
||||||
double xx0=0.0, yy0=0.0;
|
|
||||||
sProcessInfo info;
|
|
||||||
void *p;
|
|
||||||
|
|
||||||
if (sel_end_move)
|
if (sel_end_move)
|
||||||
sel_moved = 0;
|
sel_moved = 0;
|
||||||
|
|
||||||
memset((Byte*)&info, 0, 1024);
|
|
||||||
|
|
||||||
kos_ProcessInfo(&info, 0xFFFFFFFF);
|
|
||||||
p = info.rawData + 42; // magic
|
|
||||||
wi = *(Dword *)(p);
|
|
||||||
he = *(Dword *)((Byte *)p + 4);
|
|
||||||
win_x = *(Dword *)((Byte *)p - 8);
|
|
||||||
win_y = *(Dword *)((Byte *)p - 4);
|
|
||||||
|
|
||||||
myPID = *(Dword*)((Byte *)p - 12);
|
|
||||||
|
|
||||||
if (wi == 0)
|
|
||||||
wi = WND_W;
|
|
||||||
if (he == 0)
|
|
||||||
he = WND_H;
|
|
||||||
|
|
||||||
he -= kos_GetSkinHeight() + MENU_PANEL_HEIGHT; // äîñòóïíàÿ âûñîòà îêíà
|
|
||||||
wi -= 10;
|
|
||||||
|
|
||||||
if (window_drawall==true){
|
if (window_drawall==true){
|
||||||
kos_WindowRedrawStatus(1);
|
kos_WindowRedrawStatus(1);
|
||||||
kos_DefineAndDrawWindow(10,40,WND_W,WND_H,0x73,0x40FFFFFF,0,0,(Dword)"Table v" TABLE_VERSION);
|
kos_DefineAndDrawWindow(110,40,WND_W,WND_H,0x73,0x40FFFFFF,0,0,(Dword)"Table v" TABLE_VERSION);
|
||||||
kos_WindowRedrawStatus(2);
|
kos_WindowRedrawStatus(2);
|
||||||
|
|
||||||
if (info.rawData[70]&0x04) return; //íè÷åãî íå äåëàòü åñëè îêíî ñõëîïíóòî â çàãîëîâîê
|
sProcessInfo info;
|
||||||
|
kos_ProcessInfo(&info, 0xFFFFFFFF);
|
||||||
|
wi = info.processInfo.width - 9 - 1;
|
||||||
|
he = info.processInfo.height - kos_GetSkinHeight() - MENU_PANEL_HEIGHT;
|
||||||
|
|
||||||
|
cWidth = info.processInfo.width - 9;
|
||||||
|
cHeight = info.processInfo.height - kos_GetSkinHeight() - 4;
|
||||||
|
|
||||||
|
if (info.processInfo.status_window&0x04) return; //draw nothing if window rolled-up
|
||||||
|
|
||||||
if (he < 100) kos_ChangeWindow( -1, -1, -1, 180 );
|
if (he < 100) kos_ChangeWindow( -1, -1, -1, 180 );
|
||||||
if (wi < 340) kos_ChangeWindow( -1, -1, 350, -1 );
|
if (wi < 340) kos_ChangeWindow( -1, -1, 350, -1 );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// edit_box_draw((dword)&ebox);
|
panel_y = cHeight - MENU_PANEL_HEIGHT;
|
||||||
int y = he + kos_GetSkinHeight() - 10;
|
|
||||||
|
|
||||||
if (!sel_moved)
|
if (!sel_moved)
|
||||||
{
|
{
|
||||||
kos_DrawBar(wi-15,he - kos_GetSkinHeight() +7,16,16,0xe4dfe1);
|
kos_DrawBar(cWidth-SCROLL_SIZE, panel_y - SCROLL_SIZE, SCROLL_SIZE, SCROLL_SIZE, PANEL_BG_COLOR);
|
||||||
kos_DrawBar(0,he - kos_GetSkinHeight() + 23,wi + 1,MENU_PANEL_HEIGHT-5,0xe4dfe1);
|
kos_DrawBar(0, panel_y, cWidth, MENU_PANEL_HEIGHT, PANEL_BG_COLOR);
|
||||||
kos_WriteTextToWindow(3 + 1, y + 3, 0x80 , 0x000000, (char*)sFilename, strlen(sFilename));
|
kos_WriteTextToWindow(3 + 1, panel_y + 16, 0x80, 0x000000, (char*)sFilename, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
//DWORD fn_line_color = fn_edit ? 0x000000 : 0xc0c0c0;
|
file_box.top = panel_y + 12;
|
||||||
//kos_DrawRegion(61, y - 2, 102, 18, fn_line_color, 0);
|
|
||||||
|
|
||||||
// äàëüøå editbox width = 100
|
|
||||||
|
|
||||||
// border around edit box
|
|
||||||
file_box.left = 64;
|
|
||||||
file_box.top = y - 1;
|
|
||||||
file_box.width = 98;
|
|
||||||
//editbox_h = 18;
|
|
||||||
|
|
||||||
// ñîõðàíèòü
|
// ñîõðàíèòü
|
||||||
kos_DefineButton(20 + 160, y - 5, 60, 20, SAVE_BUTTON, 0xd0d0d0);
|
kos_DefineButton(20 + 160, panel_y + 9, 60, 20, SAVE_BUTTON, 0xd0d0d0);
|
||||||
kos_WriteTextToWindow(22 + 160 + (60 - strlen(sSave) * 6) / 2, y + 2, 0x80, 0x000000, (char*)sSave, 0);
|
kos_WriteTextToWindow(22 + 160 + (60 - strlen(sSave) * 6) / 2, panel_y + 16, 0x80, 0x000000, (char*)sSave, 0);
|
||||||
|
|
||||||
// çàãðóçèòü
|
// çàãðóçèòü
|
||||||
kos_DefineButton(90 + 160, y - 5, 60, 20, LOAD_BUTTON, 0xd0d0d0);
|
kos_DefineButton(90 + 160, panel_y + 9, 60, 20, LOAD_BUTTON, 0xd0d0d0);
|
||||||
kos_WriteTextToWindow(92 + 160 + (60 - strlen(sLoad) * 6) / 2, y + 2, 0x80, 0x000000, (char*)sLoad, 0);
|
kos_WriteTextToWindow(92 + 160 + (60 - strlen(sLoad) * 6) / 2, panel_y + 16, 0x80, 0x000000, (char*)sLoad, 0);
|
||||||
|
|
||||||
// ñîçäàòü. òîëüêî ýòó êíîïó âîòêíóòü íåêóäà î_Î
|
// ñîçäàòü. òîëüêî ýòó êíîïó âîòêíóòü íåêóäà î_Î
|
||||||
/*
|
/*
|
||||||
kos_DefineButton(90 + 160 + 70, y - 5, 60, 20, NEW_BUTTON, 0xd0d0d0);
|
kos_DefineButton(90 + 160 + 70, panel_y + 9, 60, 20, NEW_BUTTON, 0xd0d0d0);
|
||||||
kos_WriteTextToWindow(92 + 160 + 10 + 70, y + 2, 0, 0x000000, (char*)sNew, strlen(sNew));
|
kos_WriteTextToWindow(92 + 160 + 10 + 70, panel_y + 16, 0, 0x000000, (char*)sNew, strlen(sNew));
|
||||||
*/
|
*/
|
||||||
panel_y = y;
|
|
||||||
|
|
||||||
if ((void*)edit_box_draw != NULL)
|
if ((void*)edit_box_draw != NULL)
|
||||||
{
|
{
|
||||||
@ -755,17 +695,12 @@ void draw_window()
|
|||||||
sel_moved = 0;
|
sel_moved = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void process_mouse()
|
void process_mouse()
|
||||||
{
|
{
|
||||||
Dword mouse_btn, ckeys, shift, ctrl;
|
Dword mouse_btn, ckeys, shift, ctrl;
|
||||||
int mouse_x, mouse_y, i, dx = 0, dy = 0;
|
int mouse_x, mouse_y, i, dx = 0, dy = 0;
|
||||||
int redraw = 0;
|
int redraw = 0;
|
||||||
|
|
||||||
Dword mySlot = kos_GetSlotByPID(myPID);
|
|
||||||
if (kos_GetActiveSlot() != mySlot)
|
|
||||||
return;
|
|
||||||
|
|
||||||
edit_box_mouse((dword)&cell_box);
|
edit_box_mouse((dword)&cell_box);
|
||||||
edit_box_mouse((dword)&file_box);
|
edit_box_mouse((dword)&file_box);
|
||||||
|
|
||||||
@ -775,14 +710,30 @@ void process_mouse()
|
|||||||
//sprintf(debuf, "scroll %U %U", vert, hor);
|
//sprintf(debuf, "scroll %U %U", vert, hor);
|
||||||
//rtlDebugOutString(debuf);
|
//rtlDebugOutString(debuf);
|
||||||
|
|
||||||
|
if (vert != 0)
|
||||||
if (vert != 0) //òðóú ïåðåðèñîâêà!
|
|
||||||
{
|
{
|
||||||
if (!((sel_end_y + vert) >= (row_count-1))) //çàãëóøêà
|
stop_edit();
|
||||||
move_sel(sel_x, sel_y + vert);
|
scroll_y += vert;
|
||||||
|
if (scroll_y<1) scroll_y=1;
|
||||||
|
if (scroll_y>row_count-25) scroll_y=row_count-25;
|
||||||
|
draw_grid();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
scrollbar_v_mouse((DWORD)&scroll_v);
|
||||||
|
if (scroll_v.position != scroll_y-1)
|
||||||
|
{
|
||||||
|
scroll_y = scroll_v.position + 1;
|
||||||
|
draw_grid();
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollbar_h_mouse((DWORD)&scroll_h);
|
||||||
|
if (scroll_h.position != scroll_x-1)
|
||||||
|
{
|
||||||
|
scroll_x = scroll_h.position + 1;
|
||||||
|
draw_grid();
|
||||||
|
}
|
||||||
|
|
||||||
kos_GetMouseState(mouse_btn, mouse_x, mouse_y);
|
kos_GetMouseState(mouse_btn, mouse_x, mouse_y);
|
||||||
mouse_x -= 5;
|
mouse_x -= 5;
|
||||||
mouse_y -= kos_GetSkinHeight();
|
mouse_y -= kos_GetSkinHeight();
|
||||||
@ -792,20 +743,6 @@ void process_mouse()
|
|||||||
ckeys = kos_GetSpecialKeyState();
|
ckeys = kos_GetSpecialKeyState();
|
||||||
shift = ckeys & 0x3;
|
shift = ckeys & 0x3;
|
||||||
|
|
||||||
|
|
||||||
if (mouse_y < 0 && mouse_btn) // ò.ê. ìûøêà íà çàãîëîâêå îêíà
|
|
||||||
{
|
|
||||||
window_is_dragged = 1;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (window_is_dragged)
|
|
||||||
{
|
|
||||||
if (mouse_btn)
|
|
||||||
return;
|
|
||||||
else
|
|
||||||
window_is_dragged = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!size_state && !mouse_btn)
|
if (!size_state && !mouse_btn)
|
||||||
return;
|
return;
|
||||||
if (mouse_btn && !size_state) // LMB down
|
if (mouse_btn && !size_state) // LMB down
|
||||||
@ -873,7 +810,7 @@ void process_mouse()
|
|||||||
{
|
{
|
||||||
if (!shift)
|
if (!shift)
|
||||||
{
|
{
|
||||||
move_sel(kx, ky);
|
move_selection(kx, ky);
|
||||||
//return;
|
//return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1028,12 +965,12 @@ void process_key()
|
|||||||
case 180: //home
|
case 180: //home
|
||||||
dx = -sel_x + 1;
|
dx = -sel_x + 1;
|
||||||
dy = 0;
|
dy = 0;
|
||||||
draw_grid(); //draw_window();
|
draw_grid();
|
||||||
break;
|
break;
|
||||||
case 181: //end
|
case 181: //end
|
||||||
dx = col_count - (nx - scroll_x) - 1 - sel_x;
|
dx = col_count - (nx - scroll_x) - 1 - sel_x;
|
||||||
dy = 0;
|
dy = 0;
|
||||||
draw_grid(); //draw_window();
|
draw_grid();
|
||||||
break;
|
break;
|
||||||
case 27: // escape
|
case 27: // escape
|
||||||
cancel_edit();
|
cancel_edit();
|
||||||
@ -1070,7 +1007,6 @@ void process_key()
|
|||||||
{
|
{
|
||||||
if (ctrl)
|
if (ctrl)
|
||||||
{
|
{
|
||||||
//rtlDebugOutString("control-v!");
|
|
||||||
int i, j, x0, y0;
|
int i, j, x0, y0;
|
||||||
x0 = min(sel_x, sel_end_x);
|
x0 = min(sel_x, sel_end_x);
|
||||||
y0 = min(sel_y, sel_end_y);
|
y0 = min(sel_y, sel_end_y);
|
||||||
@ -1098,7 +1034,7 @@ void process_key()
|
|||||||
}
|
}
|
||||||
|
|
||||||
calculate_values();
|
calculate_values();
|
||||||
draw_window();
|
draw_grid();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1147,18 +1083,17 @@ void process_key()
|
|||||||
}
|
}
|
||||||
if (keyCode == 24)
|
if (keyCode == 24)
|
||||||
calculate_values();
|
calculate_values();
|
||||||
draw_window();
|
draw_grid();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case 06: // control-f
|
case 06: // control-f
|
||||||
{
|
{
|
||||||
display_formulas = !display_formulas;
|
display_formulas = !display_formulas;
|
||||||
draw_grid(); //draw_window();
|
draw_grid();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
||||||
if (!is_edit && !(file_box.flags & ed_focus))
|
if (!is_edit && !(file_box.flags & ed_focus))
|
||||||
{
|
{
|
||||||
start_edit(sel_x, sel_y);
|
start_edit(sel_x, sel_y);
|
||||||
@ -1231,7 +1166,7 @@ void process_key()
|
|||||||
if ((sel_end_x + dx) >= (col_count-1)) {dx=0;} //çàãëóøêà
|
if ((sel_end_x + dx) >= (col_count-1)) {dx=0;} //çàãëóøêà
|
||||||
else if ((sel_end_y + dy) >= (row_count-1)) {dy=0;}
|
else if ((sel_end_y + dy) >= (row_count-1)) {dy=0;}
|
||||||
else {
|
else {
|
||||||
move_sel(sel_x + dx, sel_y + dy);
|
move_selection(sel_x + dx, sel_y + dy);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1251,120 +1186,16 @@ void process_button()
|
|||||||
int redraw = 0;
|
int redraw = 0;
|
||||||
|
|
||||||
Dword button;
|
Dword button;
|
||||||
kos_GetButtonID(button);
|
if (!kos_GetButtonID(button)) return;
|
||||||
|
|
||||||
/*
|
// sprintf(debuf, "button %U", button);
|
||||||
sprintf(debuf, "button %U", button);
|
// rtlDebugOutString(debuf);
|
||||||
rtlDebugOutString(debuf);
|
|
||||||
//*/
|
|
||||||
|
|
||||||
switch (button)
|
switch (button)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
kos_ExitApp();
|
kos_ExitApp();
|
||||||
|
|
||||||
case SCROLL_LEFT_BUTTON:
|
|
||||||
//rtlDebugOutString("scroll left btn");
|
|
||||||
stop_edit();
|
|
||||||
scroll_x--;
|
|
||||||
if (scroll_x <= 0)
|
|
||||||
scroll_x = 1;
|
|
||||||
sel_moved = 0;
|
|
||||||
/*if (sel_x > nx - 1)
|
|
||||||
{
|
|
||||||
nx - 1;
|
|
||||||
sel_end_x = sel_x;
|
|
||||||
}*/
|
|
||||||
draw_window();
|
|
||||||
return;
|
|
||||||
|
|
||||||
case SCROLL_RIGHT_BUTTON:
|
|
||||||
//rtlDebugOutString("scroll right btn");
|
|
||||||
stop_edit();
|
|
||||||
scroll_x++;
|
|
||||||
if (scroll_x >= col_count - 1)
|
|
||||||
scroll_x = col_count - 1;
|
|
||||||
sel_moved = 0;/*
|
|
||||||
if (sel_x < scroll_x)
|
|
||||||
{
|
|
||||||
sel_x = scroll_x;
|
|
||||||
sel_end_x = sel_x;
|
|
||||||
}*/
|
|
||||||
draw_window();
|
|
||||||
return;
|
|
||||||
|
|
||||||
case SCROLL_WIDTH:
|
|
||||||
{
|
|
||||||
//rtlDebugOutString("scroll width btn");
|
|
||||||
stop_edit();
|
|
||||||
kos_GetMouseState(mouse_btn, mouse_x, mouse_y);
|
|
||||||
mouse_x -= 5;
|
|
||||||
mouse_y -= kos_GetSkinHeight();
|
|
||||||
|
|
||||||
// âñåãî: wi - SCROLL_BAR_WIDTH - 2 * 14
|
|
||||||
|
|
||||||
int tmp_w = (nx - scroll_x) * (wi - SCROLL_BAR_WIDTH - 3 * 14) / (col_count + 1);
|
|
||||||
if (tmp_w < 16)
|
|
||||||
tmp_w = 16;
|
|
||||||
scroll_x = (mouse_x - 14 - tmp_w / 2) * (col_count + 1) / (wi - SCROLL_BAR_WIDTH - 3 * 14) + 1;
|
|
||||||
if (scroll_x <= 0)
|
|
||||||
scroll_x = 1;
|
|
||||||
else if (scroll_x >= col_count - 1)
|
|
||||||
scroll_x = col_count - 1;
|
|
||||||
sel_moved = 0;
|
|
||||||
draw_window();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
case SCROLL_UP_BUTTON:
|
|
||||||
stop_edit();
|
|
||||||
scroll_y--;
|
|
||||||
if (scroll_y <= 0)
|
|
||||||
scroll_y = 1;
|
|
||||||
sel_moved = 0;
|
|
||||||
//draw_window();
|
|
||||||
draw_grid();
|
|
||||||
/*
|
|
||||||
if (sel_y > ny - 1)
|
|
||||||
{
|
|
||||||
sel_y = ny - 1;
|
|
||||||
sel_end_y = sel_y;
|
|
||||||
}*/
|
|
||||||
return;
|
|
||||||
|
|
||||||
case SCROLL_DOWN_BUTTON:
|
|
||||||
stop_edit();
|
|
||||||
scroll_y++;
|
|
||||||
if (scroll_y >= row_count - 1)
|
|
||||||
scroll_y = row_count - 1;
|
|
||||||
sel_moved = 0;/*
|
|
||||||
if (sel_y < scroll_y)
|
|
||||||
{
|
|
||||||
sel_y = scroll_y;
|
|
||||||
sel_end_y = sel_y;
|
|
||||||
}*/
|
|
||||||
draw_grid();
|
|
||||||
return;
|
|
||||||
|
|
||||||
case SCROLL_HEIGHT:
|
|
||||||
{
|
|
||||||
stop_edit();
|
|
||||||
kos_GetMouseState(mouse_btn, mouse_x, mouse_y);
|
|
||||||
mouse_x -= 5;
|
|
||||||
mouse_y -= kos_GetSkinHeight();
|
|
||||||
int tmp_h = (ny - scroll_y) * (he - SCROLL_BAR_HEIGHT - 2 * 14) / row_count;
|
|
||||||
if (tmp_h < 16)
|
|
||||||
tmp_h = 16;
|
|
||||||
scroll_y = (mouse_y - 2 * 14) * (row_count + 1) / (he - SCROLL_BAR_HEIGHT - 3 * 14) + 1;
|
|
||||||
if (scroll_y <= 0)
|
|
||||||
scroll_y = 1;
|
|
||||||
else if (scroll_y >= row_count - 1)
|
|
||||||
scroll_y = row_count - 1;
|
|
||||||
sel_moved = 0;
|
|
||||||
draw_grid();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
case NEW_BUTTON: // clear the table
|
case NEW_BUTTON: // clear the table
|
||||||
reinit();
|
reinit();
|
||||||
draw_window();
|
draw_window();
|
||||||
@ -1380,26 +1211,27 @@ void process_button()
|
|||||||
|
|
||||||
case SAVE_BUTTON:
|
case SAVE_BUTTON:
|
||||||
stop_edit();
|
stop_edit();
|
||||||
kos_DrawBar(320, panel_y, wi - 320 - 10, 10, 0xe4dfe1);
|
if (SaveFile(fname)) {
|
||||||
if (SaveFile(fname))
|
kos_DrawBar(320, panel_y + 16, cWidth - 320, 12, PANEL_BG_COLOR);
|
||||||
kos_WriteTextToWindow(320, panel_y, 0, 0x000000, (char*)msg_save, strlen(msg_save));
|
kos_WriteTextToWindow(320, panel_y + 16, 0x80, 0x000000, (char*)msg_save, 0);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LOAD_BUTTON:
|
case LOAD_BUTTON:
|
||||||
stop_edit();
|
stop_edit();
|
||||||
int r = LoadFile(fname);
|
int r = LoadFile(fname);
|
||||||
kos_DrawBar(320, panel_y, wi - 320 - 10, 10, 0xe4dfe1);
|
kos_DrawBar(320, panel_y + 16, cWidth - 320, 12, PANEL_BG_COLOR);
|
||||||
|
char *result;
|
||||||
if (r > 0)
|
if (r > 0)
|
||||||
{
|
{
|
||||||
calculate_values();
|
calculate_values();
|
||||||
sel_moved = 0;
|
sel_moved = 0;
|
||||||
draw_window();
|
draw_window();
|
||||||
kos_WriteTextToWindow(320, panel_y,0,0x000000,(char*)msg_load, strlen(msg_load));
|
result = (char*)msg_load;
|
||||||
}
|
}
|
||||||
else if (r == -1)
|
else if (r == -1) result = (char*)er_file_not_found;
|
||||||
kos_WriteTextToWindow(320, panel_y,0,0x000000,(char*)er_file_not_found,strlen(er_file_not_found));
|
else if (r == -2) result = (char*)er_format;
|
||||||
else if (r == -2)
|
kos_WriteTextToWindow(320, panel_y + 16, 0x80, 0x000000, result, 0);
|
||||||
kos_WriteTextToWindow(320, panel_y,0,0x000000,(char*)er_format,strlen(er_format));
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (button >= COL_HEAD_BUTTON && button < ROW_HEAD_BUTTON)
|
if (button >= COL_HEAD_BUTTON && button < ROW_HEAD_BUTTON)
|
||||||
@ -1408,7 +1240,7 @@ void process_button()
|
|||||||
sel_y = 1;
|
sel_y = 1;
|
||||||
sel_end_y = row_count - 1;
|
sel_end_y = row_count - 1;
|
||||||
stop_edit();
|
stop_edit();
|
||||||
draw_window();
|
draw_grid();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (button >= ROW_HEAD_BUTTON && button < CELL_BUTTON)
|
else if (button >= ROW_HEAD_BUTTON && button < CELL_BUTTON)
|
||||||
@ -1417,7 +1249,7 @@ void process_button()
|
|||||||
sel_x = 1;
|
sel_x = 1;
|
||||||
sel_end_x = col_count - 1;
|
sel_end_x = col_count - 1;
|
||||||
stop_edit();
|
stop_edit();
|
||||||
draw_window();
|
draw_grid();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1428,24 +1260,28 @@ void kos_Main()
|
|||||||
kos_InitHeap();
|
kos_InitHeap();
|
||||||
load_edit_box();
|
load_edit_box();
|
||||||
init();
|
init();
|
||||||
|
kos_SetMaskForEvents(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER);
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
switch (kos_WaitForEvent())
|
switch (kos_WaitForEvent())
|
||||||
{
|
{
|
||||||
case 6:
|
case EM_MOUSE_EVENT:
|
||||||
process_mouse();
|
process_mouse();
|
||||||
break;
|
break;
|
||||||
case 1:
|
|
||||||
window_drawall=true;
|
case EM_KEY_PRESS:
|
||||||
draw_window();
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
process_key();
|
process_key();
|
||||||
break;
|
break;
|
||||||
case 3:
|
|
||||||
|
case EM_BUTTON_CLICK:
|
||||||
process_button();
|
process_button();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case EM_WINDOW_REDRAW:
|
||||||
|
window_drawall=true;
|
||||||
|
draw_window();
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -13,14 +13,36 @@ typedef unsigned __int8 Byte;
|
|||||||
#define FO_READ 0
|
#define FO_READ 0
|
||||||
#define FO_WRITE 2
|
#define FO_WRITE 2
|
||||||
|
|
||||||
|
//Process Events
|
||||||
#define EM_WINDOW_REDRAW 1
|
#define EM_WINDOW_REDRAW 1
|
||||||
#define EM_KEY_PRESS 2
|
#define EM_KEY_PRESS 2
|
||||||
#define EM_BUTTON_CLICK 4
|
#define EM_BUTTON_CLICK 3
|
||||||
#define EM_APP_CLOSE 8
|
#define EM_APP_CLOSE 4
|
||||||
#define EM_DRAW_BACKGROUND 16
|
#define EM_DRAW_BACKGROUND 5
|
||||||
#define EM_MOUSE_EVENT 32
|
#define EM_MOUSE_EVENT 6
|
||||||
#define EM_IPC 64
|
#define EM_IPC 7
|
||||||
#define EM_NETWORK 256
|
#define EM_NETWORK 8
|
||||||
|
#define EM_DEBUG 9
|
||||||
|
|
||||||
|
//Event mask bits for function 40
|
||||||
|
#define EVM_REDRAW 1
|
||||||
|
#define EVM_KEY 2
|
||||||
|
#define EVM_BUTTON 4
|
||||||
|
#define EVM_EXIT 8
|
||||||
|
#define EVM_BACKGROUND 16
|
||||||
|
#define EVM_MOUSE 32
|
||||||
|
#define EVM_IPC 64
|
||||||
|
#define EVM_STACK 128
|
||||||
|
#define EVM_DEBUG 256
|
||||||
|
#define EVM_STACK2 512
|
||||||
|
#define EVM_MOUSE_FILTER 0x80000000
|
||||||
|
#define EVM_CURSOR_FILTER 0x40000000
|
||||||
|
|
||||||
|
//Button options
|
||||||
|
#define BT_DEL 0x80000000
|
||||||
|
#define BT_HIDE 0x40000000
|
||||||
|
#define BT_NOFRAME 0x20000000
|
||||||
|
#define BT_NODRAW BT_HIDE+BT_NOFRAME
|
||||||
|
|
||||||
#define KM_CHARS 0
|
#define KM_CHARS 0
|
||||||
#define KM_SCANS 1
|
#define KM_SCANS 1
|
||||||
@ -88,7 +110,7 @@ union sProcessInfo
|
|||||||
{
|
{
|
||||||
Dword cpu_usage;
|
Dword cpu_usage;
|
||||||
Word window_stack_position;
|
Word window_stack_position;
|
||||||
Word window_stack_value;
|
Word window_slot; //slot
|
||||||
Word reserved1;
|
Word reserved1;
|
||||||
char process_name[12];
|
char process_name[12];
|
||||||
Dword memory_start;
|
Dword memory_start;
|
||||||
@ -96,9 +118,17 @@ union sProcessInfo
|
|||||||
Dword PID;
|
Dword PID;
|
||||||
Dword x_start;
|
Dword x_start;
|
||||||
Dword y_start;
|
Dword y_start;
|
||||||
Dword x_size;
|
Dword width;
|
||||||
Dword y_size;
|
Dword height;
|
||||||
Word slot_state;
|
Word slot_state;
|
||||||
|
Word reserved3;
|
||||||
|
Dword work_left;
|
||||||
|
Dword work_top;
|
||||||
|
Dword work_width;
|
||||||
|
Dword work_height;
|
||||||
|
char status_window;
|
||||||
|
Dword cwidth;
|
||||||
|
Dword cheight;
|
||||||
} processInfo;
|
} processInfo;
|
||||||
};
|
};
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
@ -1,40 +1,98 @@
|
|||||||
|
|
||||||
|
//BOX_LIB
|
||||||
|
|
||||||
typedef Dword dword;
|
typedef Dword dword;
|
||||||
|
typedef unsigned short word;
|
||||||
|
typedef dword __stdcall dword_func(dword);
|
||||||
|
//typedef dword __stdcall dword3_func(dword,dword,dword);
|
||||||
|
|
||||||
dword am__ = 0x0;
|
dword am__ = 0x0;
|
||||||
dword bm__ = 0x0;
|
dword bm__ = 0x0;
|
||||||
|
|
||||||
char aEdit_box_draw[9] = "edit_box";
|
char aEdit_box_draw[] = "edit_box";
|
||||||
char aEdit_box_key[13] = "edit_box_key";
|
char aEdit_box_key[] = "edit_box_key";
|
||||||
char aEdit_box_mouse[15] = "edit_box_mouse";
|
char aEdit_box_mouse[] = "edit_box_mouse";
|
||||||
char aVersion_ed[11] = "version_ed";
|
char aVersion_ed[] = "version_ed";
|
||||||
|
|
||||||
char aCheck_box_draw [15] = "check_box_draw";
|
char aCheck_box_draw[] = "check_box_draw";
|
||||||
char aCheck_box_mouse [16] = "check_box_mouse";
|
char aCheck_box_mouse[] = "check_box_mouse";
|
||||||
char aVersion_ch [11] = "version_ch";
|
char aVersion_ch[] = "version_ch";
|
||||||
|
|
||||||
char aOption_box_draw [16] = "option_box_draw";
|
char aOption_box_draw[] = "option_box_draw";
|
||||||
char aOption_box_mouse[17] = "option_box_mouse";
|
char aVersion_op[] = "version_op" ;
|
||||||
char aVersion_op [11] = "version_op" ;
|
|
||||||
|
|
||||||
//BOX_LIB
|
char aScrollbar_v_draw [] = "scrollbar_v_draw";
|
||||||
|
char aScrollbar_v_mouse[] = "scrollbar_v_mouse";
|
||||||
typedef dword __stdcall dword_func(dword);
|
char aScrollbar_h_draw [] = "scrollbar_h_draw";
|
||||||
//typedef dword __stdcall dword3_func(dword,dword,dword);
|
char aScrollbar_h_mouse[] = "scrollbar_h_mouse";
|
||||||
|
char aVersion_scrollbar[] = "version_scrollbar";
|
||||||
|
|
||||||
dword_func *edit_box_draw =(dword_func*) &aEdit_box_draw;
|
dword_func *edit_box_draw =(dword_func*) &aEdit_box_draw;
|
||||||
dword_func *edit_box_key =(dword_func*) &aEdit_box_key;
|
dword_func *edit_box_key =(dword_func*) &aEdit_box_key;
|
||||||
dword_func *edit_box_mouse =(dword_func*) &aEdit_box_mouse;
|
dword_func *edit_box_mouse =(dword_func*) &aEdit_box_mouse;
|
||||||
|
|
||||||
//char lib_path[] = "/sys/lib/box_lib.obj";
|
dword_func *scrollbar_v_draw = (dword_func*) &aScrollbar_v_draw;
|
||||||
|
dword_func *scrollbar_v_mouse = (dword_func*) &aScrollbar_v_mouse;
|
||||||
|
dword_func *scrollbar_h_draw = (dword_func*) &aScrollbar_h_draw;
|
||||||
|
dword_func *scrollbar_h_mouse = (dword_func*) &aScrollbar_h_mouse;
|
||||||
|
|
||||||
|
|
||||||
char lib_path[] = "/sys/lib/box_lib.obj";
|
char lib_path[] = "/sys/lib/box_lib.obj";
|
||||||
dword lib_path_addr = (dword)lib_path;
|
dword lib_path_addr = (dword)lib_path;
|
||||||
dword dummy = 0;
|
dword dummy = 0;
|
||||||
|
|
||||||
|
|
||||||
struct edit_box{
|
struct edit_box{
|
||||||
dword width, left, top, color, shift_color, focus_border_color, blur_border_color,
|
dword width,
|
||||||
text_color, max, text, mouse_variable, flags, size, pos, offset, cl_curs_x, cl_curs_y, shift, shift_old;
|
left,
|
||||||
|
top,
|
||||||
|
color,
|
||||||
|
shift_color,
|
||||||
|
focus_border_color,
|
||||||
|
blur_border_color,
|
||||||
|
text_color,
|
||||||
|
max,
|
||||||
|
text,
|
||||||
|
mouse_variable,
|
||||||
|
flags,
|
||||||
|
size,
|
||||||
|
pos,
|
||||||
|
offset,
|
||||||
|
cl_curs_x,
|
||||||
|
cl_curs_y,
|
||||||
|
shift,
|
||||||
|
shift_old,
|
||||||
|
ed_height,
|
||||||
|
ed_char_width;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct scroll_bar{
|
||||||
|
word w,
|
||||||
|
x,
|
||||||
|
h,
|
||||||
|
y;
|
||||||
|
dword btn_height,
|
||||||
|
type,
|
||||||
|
max_area,
|
||||||
|
cur_area,
|
||||||
|
position,
|
||||||
|
bckg_col,
|
||||||
|
frnt_col,
|
||||||
|
line_col,
|
||||||
|
redraw;
|
||||||
|
word delta,
|
||||||
|
delta2,
|
||||||
|
r_size_x,
|
||||||
|
r_start_x,
|
||||||
|
r_size_y,
|
||||||
|
r_start_y;
|
||||||
|
dword m_pos,
|
||||||
|
m_pos_2,
|
||||||
|
m_keys,
|
||||||
|
run_size,
|
||||||
|
position2,
|
||||||
|
work_size,
|
||||||
|
all_redraw,
|
||||||
|
ar_offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
void load_edit_box()
|
void load_edit_box()
|
||||||
@ -48,11 +106,15 @@ void load_edit_box()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
edit_box_draw = (dword_func*)kol_cofflib_procload(k, "edit_box");
|
edit_box_draw = (dword_func*)kol_cofflib_procload(k, aEdit_box_draw);
|
||||||
edit_box_key = (dword_func*)kol_cofflib_procload(k,"edit_box_key");
|
edit_box_key = (dword_func*)kol_cofflib_procload(k, aEdit_box_key);
|
||||||
edit_box_mouse = (dword_func*)kol_cofflib_procload(k,"edit_box_mouse");
|
edit_box_mouse = (dword_func*)kol_cofflib_procload(k, aEdit_box_mouse);
|
||||||
kos_SetMaskForEvents(0x27);
|
|
||||||
|
|
||||||
if (edit_box_draw == NULL || edit_box_key == NULL || edit_box_mouse == NULL)
|
scrollbar_v_draw = (dword_func*)kol_cofflib_procload(k, aScrollbar_v_draw);
|
||||||
rtlDebugOutString("some of functions cannot be loaded!");
|
scrollbar_v_mouse = (dword_func*)kol_cofflib_procload(k, aScrollbar_v_mouse);
|
||||||
|
scrollbar_h_draw = (dword_func*)kol_cofflib_procload(k, aScrollbar_h_draw);
|
||||||
|
scrollbar_h_mouse = (dword_func*)kol_cofflib_procload(k, aScrollbar_h_mouse);
|
||||||
|
|
||||||
|
if (edit_box_draw == NULL || scrollbar_v_draw == NULL || scrollbar_h_draw == NULL)
|
||||||
|
rtlDebugOutString("Some of EDITBOX functions have not been loaded!");
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user