forked from KolibriOS/kolibrios
Eolite 2.15.1: add to ini flag show disk free space bar
git-svn-id: svn://kolibrios.org@4394 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
2a1c464735
commit
22c10107e7
@ -96,4 +96,5 @@ SelectionColor=94AECE
|
||||
LineHeight=18
|
||||
ShowDeviceName=1
|
||||
RealFileNamesCase=0
|
||||
DrwRamDiskSpace=1
|
||||
|
||||
|
@ -79,8 +79,8 @@
|
||||
|
||||
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
|
||||
|
||||
#define TITLE "Eolite File Manager v2.15"
|
||||
#define ABOUT_TITLE "Eolite v2.15"
|
||||
#define TITLE "Eolite File Manager v2.15.1"
|
||||
#define ABOUT_TITLE "Eolite v2.15.1"
|
||||
dword col_padding, col_selec, col_lpanel;
|
||||
|
||||
int toolbar_buttons_x[7]={9,46,85,134,167,203};
|
||||
@ -103,6 +103,7 @@ byte
|
||||
rename_active=0,
|
||||
del_active=0,
|
||||
show_dev_name=1,
|
||||
drw_ram_disk_space=1,
|
||||
real_files_names_case=0,
|
||||
sort_num=2,
|
||||
itdir;
|
||||
|
@ -34,6 +34,7 @@ void GetIni(byte onload)
|
||||
IF (!strcmp(#parametr,"LineHeight")) files.line_h = atoi(#option);
|
||||
IF (!strcmp(#parametr,"ShowDeviceName")) show_dev_name=atoi(#option);
|
||||
IF (!strcmp(#parametr,"RealFileNamesCase")) real_files_names_case=atoi(#option);
|
||||
IF (!strcmp(#parametr,"DrwRamDiskSpace")) drw_ram_disk_space=atoi(#option);
|
||||
|
||||
IF (parametr) && (!strcmp(#file_name+strrchr(#file_name,'.'),#parametr)) && (!onload)
|
||||
{
|
||||
|
@ -120,6 +120,8 @@ void SystemDiscsDraw()
|
||||
case 'r':
|
||||
dev_icon=0;
|
||||
strcpy(#disc_name, "System ");
|
||||
if (!drw_ram_disk_space)
|
||||
break;
|
||||
DrawRamDiskSpace();
|
||||
break;
|
||||
case 'c':
|
||||
|
Loading…
Reference in New Issue
Block a user