Subversion Repositories Kolibri OS

Rev

Rev 8933 | Rev 9584 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8933 Rev 9461
Line 1... Line 1...
1
llist select_list;
1
llist select_list;
2
scroll_bar scroll1 = { 18,200,398, 44,18,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
2
scroll_bar scroll1 = { 18,200,398, 44,18,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
Line 3... Line 3...
3
 
3
 
-
 
4
?define T_SELECT_LIST_NO_DATA "No data to show"
Line 4... Line 5...
4
?define T_SELECT_LIST_NO_DATA "No data to show"
5
?define SELECT_LIST_ITEMH 20
5
 
6
 
6
void SelectList_Init(dword _x, _y, _w, _h)
7
void SelectList_Init(dword _x, _y, _w, _h)
7
{
8
{
8
	select_list.SetFont(8, 14, 0x90);
9
	select_list.SetFont(8, 14, 0x90);
Line 9... Line 10...
9
	select_list.SetSizes(_x, _y, _w, _h, 20);
10
	select_list.SetSizes(_x, _y, _w, _h, SELECT_LIST_ITEMH);
10
}
11
}
11
 
12