Subversion Repositories Kolibri OS

Rev

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

Rev 9516 Rev 9528
Line 7... Line 7...
7
TODO:
7
TODO:
8
- add option Preserve all timestamps (Created, Opened, Modified)
8
- add option Preserve all timestamps (Created, Opened, Modified)
9
  http://board.kolibrios.org/viewtopic.php?f=23&t=4521&p=77334#p77334
9
  http://board.kolibrios.org/viewtopic.php?f=23&t=4521&p=77334#p77334
10
*/
10
*/
Line 11... Line 11...
11
 
11
 
12
#define ABOUT_TITLE "EOLITE 5.16a"
12
#define ABOUT_TITLE "EOLITE 5.17"
13
#define TITLE_EOLITE "Eolite File Manager 5.16a"
13
#define TITLE_EOLITE "Eolite File Manager 5.17"
Line 14... Line 14...
14
#define TITLE_KFM "Kolibri File Manager 2.16a";
14
#define TITLE_KFM "Kolibri File Manager 2.17";
15
 
15
 
16
#define MEMSIZE 1024 * 250
16
#define MEMSIZE 1024 * 250
17
#include "../lib/clipboard.h"
17
#include "../lib/clipboard.h"
Line 794... Line 794...
794
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
794
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
795
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
795
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
796
	DrawScroll(scroll_used);
796
	DrawScroll(scroll_used);
797
}
797
}
Line 798... Line 798...
798
 
798
 
799
void Line_ReDraw(dword bgcol, filenum){
799
void Line_ReDraw(dword bgcol, signed filenum){
800
	dword text_col=col.list_gb_text,
800
	dword text_col=col.list_gb_text,
801
		  ext1, attr,
801
		  ext1, attr,
802
		  file_name_off,
802
		  file_name_off,
803
		  file_size=0,
803
		  file_size=0,
Line 807... Line 807...
807
		  char full_path[4096];
807
		  char full_path[4096];
808
		  dword separator_color;
808
		  dword separator_color;
809
		  bool current_inactive = false;
809
		  bool current_inactive = false;
810
		  char volume_label[64] = 0;
810
		  char volume_label[64] = 0;
811
	char label_file_name[4096];
811
	char label_file_name[4096];
812
	if (filenum==-1) return;
812
	if (filenum<0) return; //if hold lkm and scroll down by mouse wheel this may be the case
Line 813... Line 813...
813
 
813
 
814
	if (bgcol==col.selec) && (files.x==files_inactive.x) {
814
	if (bgcol==col.selec) && (files.x==files_inactive.x) {
815
		bgcol = col.list_bg;
815
		bgcol = col.list_bg;
816
		current_inactive = true;
816
		current_inactive = true;