Subversion Repositories Kolibri OS

Rev

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

Rev 6930 Rev 6949
Line 43... Line 43...
43
	ONLY_SHOW, 
43
	ONLY_SHOW, 
44
	WITH_REDRAW, 
44
	WITH_REDRAW, 
45
	ONLY_OPEN
45
	ONLY_OPEN
46
};
46
};
Line 47... Line 47...
47
 
47
 
Line 48... Line 48...
48
dword col_padding, col_selec, col_lpanel, col_work, col_graph;
48
dword col_padding, col_selec, col_lpanel, col_work, col_graph, col_list_line=0xDDD7CF;
Line 49... Line 49...
49
 
49
 
50
int toolbar_buttons_x[7]={9,46,85,134,167,203};
50
int toolbar_buttons_x[7]={9,46,85,134,167,203};
Line 660... Line 660...
660
 
660
 
661
	for (j=0; j
661
	for (j=0; j
662
	//in the bottom
662
	//in the bottom
663
	all_lines_h = j * files.item_h;
663
	all_lines_h = j * files.item_h;
664
	DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
664
	DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
665
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,system.color.work);
665
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
666
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,system.color.work);
666
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
667
	Scroll();
667
	Scroll();
Line 668... Line 668...
668
}
668
}
Line 740... Line 740...
740
			}
740
			}
741
			strcpy(#label_file_name+strlen(#label_file_name)-2, "...");			
741
			strcpy(#label_file_name+strlen(#label_file_name)-2, "...");			
742
		}
742
		}
743
		kfont.WriteIntoWindow(files.x + 23, files.item_h - kfont.height / 2 + y, bgcol, text_col, kfont.size.pt, #label_file_name);
743
		kfont.WriteIntoWindow(files.x + 23, files.item_h - kfont.height / 2 + y, bgcol, text_col, kfont.size.pt, #label_file_name);
744
	}
744
	}
745
	DrawBar(files.x+files.w-141,y,1,files.item_h,system.color.work); //gray line 1
745
	DrawBar(files.x+files.w-141,y,1,files.item_h,col_list_line); //gray line 1
746
	DrawBar(files.x+files.w-68,y,1,files.item_h,system.color.work); //gray line 2
746
	DrawBar(files.x+files.w-68,y,1,files.item_h,col_list_line); //gray line 2
747
}
747
}
Line 748... Line 748...
748
 
748
 
749
 
749