kolibrios/programs/cmm/aelia/link.h
Kirill Lipatov (Leency) 5220da9d33 Aelia: add status bar, code update
git-svn-id: svn://kolibrios.org@7293 a494cfbc-eb01-0410-851d-a64ba20cac60
2018-05-24 18:47:42 +00:00

84 lines
1.6 KiB
C

dword CursorFile = FROM "pointer.cur";
struct _link
{
CustomCursor CursorPointer;
int count;
int x[4096], y[4096], w[4096], h[4096];
collection text;
collection url;
void clear();
void add();
dword get_active_url();
void draw_underline();
int hover();
int active;
} link;
void _link::clear()
{
text.drop();
url.drop();
count = 0;
}
void _link::add(int _xx, _yy, _ww, _hh, dword _textt, _urll )
{
if (count==4095) return;
x[count] = _xx;
y[count] = _yy;
w[count] = _ww;
h[count] = _hh;
text.add(_textt);
url.add(_urll);
count++;
}
dword _link::get_active_url()
{
return url.get(active);
}
void _link::draw_underline(dword i, color)
{
DrawBar(x[i]+list.x, -list.first*list.item_h+y[i]+list.y+h[i]-2, w[i], 1, color);
}
int _link::hover(dword mouse_x, mouse_y)
{
int i;
int new_active = -1;
int link_start_y = list.first*list.item_h;
mouse_x -= list.x;
mouse_y -= list.y;
for (i=0; i<count; i++) {
if(y[i] > link_start_y) && (y[i] < link_start_y+list.h) {
// debugln( sprintf(#param, "mx:%i my:%i x[i]:%i y[i]:%i", mx, my, x[i], y[i]) );
if (mouse_x > x[i])
&& (mouse_x < x[i]+w[i])
&& (mouse_y > y[i]-link_start_y)
&& (mouse_y < h[i]-link_start_y+link.y[i]) {
new_active = i;
break;
}
}
}
if (new_active != active)
{
if (-1 == new_active) {
draw_underline(active, 0x0000FF);
CursorPointer.Restore();
}
else {
draw_underline(active, 0x0000FF);
draw_underline(new_active, 0xFFFfff);
CursorPointer.Load(#CursorFile);
CursorPointer.Set();
}
active = new_active;
return true;
}
return false;
}