Subversion Repositories Kolibri OS

Rev

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

Rev 4395 Rev 4399
Line 77... Line 77...
77
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
77
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
78
#endif
78
#endif
Line 79... Line 79...
79
 
79
 
Line 80... Line 80...
80
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
80
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
81
 
81
 
82
#define TITLE "Eolite File Manager v2.15.2"
82
#define TITLE "Eolite File Manager v2.15.3"
Line 83... Line 83...
83
#define ABOUT_TITLE "Eolite v2.15.2"
83
#define ABOUT_TITLE "Eolite v2.15.3"
84
dword col_padding, col_selec, col_lpanel;
84
dword col_padding, col_selec, col_lpanel;
85
 
85
 
Line 100... Line 100...
100
	file_name[256],
100
	file_name[256],
101
	temp[4096];	 
101
	temp[4096];	 
102
byte
102
byte
103
	rename_active=0,
103
	rename_active=0,
104
	del_active=0,
104
	del_active=0,
105
	show_dev_name=0,
105
	show_dev_name=1,
106
	drw_ram_disk_space=1,
106
	drw_ram_disk_space=0,
107
	real_files_names_case=0,
107
	real_files_names_case=0,
108
	sort_num=2,
108
	sort_num=2,
109
	itdir;
109
	itdir;
Line 110... Line 110...
110
 
110
 
Line 652... Line 652...
652
			Write_Error(errornum);
652
			Write_Error(errornum);
653
			return;
653
			return;
654
		}
654
		}
655
		maxcount = sizeof(file_mas)/sizeof(dword)-1;
655
		maxcount = sizeof(file_mas)/sizeof(dword)-1;
656
		if (files.count>maxcount) files.count = maxcount;
656
		if (files.count>maxcount) files.count = maxcount;
657
		DrawRamDiskSpace();
657
		if (drw_ram_disk_space) DrawRamDiskSpace();
658
	}
658
	}
659
	if (files.count!=-1)
659
	if (files.count!=-1)
660
	{
660
	{
661
		KEdit();
661
		KEdit();
662
		HistoryPath(ADD_NEW_PATH);
662
		HistoryPath(ADD_NEW_PATH);