forked from KolibriOS/kolibrios
36e64a3f84
git-svn-id: svn://kolibrios.org@9602 a494cfbc-eb01-0410-851d-a64ba20cac60
81 lines
1.4 KiB
C
81 lines
1.4 KiB
C
#ifndef TAB_P
|
|
#define TAB_P 15 //Tab padding
|
|
#endif
|
|
|
|
#define TAB_HEIGHT 28
|
|
#define NAME_SIZE 64
|
|
|
|
:struct _tabs
|
|
{
|
|
int x,y,w;
|
|
int base_id;
|
|
|
|
int active_tab;
|
|
int count;
|
|
dword events[10];
|
|
dword names[10];
|
|
|
|
int click();
|
|
void draw();
|
|
void draw_active_tab();
|
|
void add();
|
|
|
|
dword draw_button();
|
|
};
|
|
|
|
:void _tabs::draw()
|
|
{
|
|
int i, xx=x;
|
|
|
|
if (w) {
|
|
DrawBar(x+1,y+0+TAB_HEIGHT,w,1, sc.line);
|
|
DrawBar(x+1,y+1+TAB_HEIGHT,w,1, sc.light);
|
|
}
|
|
|
|
for (i=0; i<count; i++) {
|
|
xx += draw_button(xx + TAB_P, i, names[i]) + TAB_P;
|
|
}
|
|
}
|
|
|
|
:void _tabs::draw_active_tab()
|
|
{
|
|
events[active_tab]();
|
|
}
|
|
|
|
:void _tabs::add(dword text, event)
|
|
{
|
|
names[count] = text;
|
|
events[count] = event;
|
|
count++;
|
|
}
|
|
|
|
:dword _tabs::draw_button(dword xx, _id, text)
|
|
{
|
|
dword col_bg, col_text;
|
|
dword ww=strlen(text)*8;
|
|
|
|
if (_id==active_tab)
|
|
{
|
|
col_bg = 0xE44C9C;
|
|
col_text = sc.work_text;
|
|
}
|
|
else
|
|
{
|
|
col_bg = 0xC3A1B7;
|
|
col_text = MixColors(sc.work, sc.work_text, 120);
|
|
}
|
|
DefineHiddenButton(xx-2,y, ww-1+4,TAB_HEIGHT-1, _id + base_id);
|
|
WriteTextWithBg(xx, y+6, 0xD0, col_text, text, sc.work);
|
|
DrawBar(xx, y+TAB_HEIGHT-3, ww, 3, col_bg);
|
|
return ww;
|
|
}
|
|
|
|
:int _tabs::click(int _id)
|
|
{
|
|
if (_id < base_id) || (_id > base_id + count) || (_id == active_tab) {
|
|
return false;
|
|
}
|
|
active_tab = _id - base_id;
|
|
events[active_tab]();
|
|
return true;
|
|
} |