Subversion Repositories Kolibri OS

Rev

Rev 4136 | Rev 4394 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3363 leency 1
//Leency & Veliant 2008-2013
2
//GNU GPL licence.
3
 
4022 leency 4
#ifndef AUTOBUILD
5
#include "lang.h--"
6
#endif
7
 
3363 leency 8
//libraries
4049 leency 9
#define MEMSIZE 0xD0000
3363 leency 10
#include "..\lib\kolibri.h"
11
#include "..\lib\strings.h"
12
#include "..\lib\mem.h"
13
#include "..\lib\dll.h"
14
#include "..\lib\lib.obj\box_lib.h"
15
#include "..\lib\file_system.h"
16
#include "..\lib\figures.h"
3412 leency 17
#include "..\lib\encoding.h"
3434 leency 18
#include "..\lib\list_box.h"
19
#include "..\lib\copyf.h"
3363 leency 20
//images
21
#include "imgs\toolbar.txt"
22
#include "imgs\left_p.txt"
23
 
3848 punk_joker 24
#ifdef LANG_RUS
25
	?define T_FILE "Файл"
26
	?define T_TYPE "Тип"
27
	?define T_SIZE "Размер"
28
	?define T_NEW_FOLDER "Новая папка"
29
	?define T_NEW_FILE "Новый файл"
30
	?define T_DELETE_FILE "Вы действительно хотите удалить"
31
	?define T_YES "Да"
32
	?define T_NO "Нет"
33
	?define T_DEL_ERROR_1 "Ошибка. Папка не пустая."
3997 leency 34
	?define WAIT_DELETING_FOLDER "Удаляется папка. Подожите..."
3848 punk_joker 35
	?define NOT_CREATE_FOLDER "Не удалось создать папку."
36
	?define NOT_CREATE_FILE "Не удалось создать файл."
37
	?define ERROR_1 "Ошибка при загрузке библиотеки /rd/1/lib/box_lib.obj"
3883 leency 38
	?define T_PASTE_WINDOW "Копирую..."
39
	?define T_PASTE_WINDOW_TEXT "Копируется файл:"
4022 leency 40
	?define T_CANCEL_PASTE "Копирование прекращено. Папка скопирована не полностью."
4049 leency 41
	?define T_SELECT_APP_TO_OPEN_WITH "Выберите программу для открытия файла"
3933 kaitz 42
#elif LANG_EST
43
	?define T_FILE "Fail"
44
	?define T_TYPE "T№№p"
45
	?define T_SIZE "Suurus"
46
	?define T_NEW_FOLDER "Uus kataloog"
47
	?define T_NEW_FILE "Uus fail"
48
	?define T_DELETE_FILE "Kas sa tahad tїesti kustutada"
49
	?define T_YES "Jah"
50
	?define T_NO "Ei"
51
	?define T_DEL_ERROR_1 "Viga. Kataloog ei ole t№hi."
3997 leency 52
	?define WAIT_DELETING_FOLDER "Deleting folder. Please, wait..."
3933 kaitz 53
	?define NOT_CREATE_FOLDER "Kataloogi ei saa luua."
54
	?define NOT_CREATE_FILE "Faili ei saa luua."
55
	?define ERROR_1 "Viga teegi laadimisel /rd/1/lib/box_lib.obj"
56
	?define T_PASTE_WINDOW "Kopeerin..."
57
	?define T_PASTE_WINDOW_TEXT "Kopeerin faili:"
4022 leency 58
	?define T_CANCEL_PASTE "Copy process terminated. Folder copied incompletely."
4049 leency 59
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
3848 punk_joker 60
#else
61
	?define T_FILE "File"
62
	?define T_TYPE "Type"
63
	?define T_SIZE "Size"
64
	?define T_NEW_FOLDER "New folder"
65
	?define T_NEW_FILE "New file"
66
	?define T_DELETE_FILE "Do you really want to delete"
67
	?define T_YES "Yes"
68
	?define T_NO "No"
69
	?define T_DEL_ERROR_1 "Error. Folder isn't empty."
3997 leency 70
	?define WAIT_DELETING_FOLDER "Deleting folder. Please, wait..."
3848 punk_joker 71
	?define NOT_CREATE_FOLDER "Folder can not be created."
72
	?define NOT_CREATE_FILE "File can not be created."
73
	?define ERROR_1 "Error while loading library /rd/1/lib/box_lib.obj"
3883 leency 74
	?define T_PASTE_WINDOW "Copying..."
75
	?define T_PASTE_WINDOW_TEXT "Copying file:"
4022 leency 76
	?define T_CANCEL_PASTE "Copy process terminated. Folder copied incompletely."
4049 leency 77
	?define T_SELECT_APP_TO_OPEN_WITH "Select application to open file"
3848 punk_joker 78
#endif
79
 
3444 leency 80
enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
81
 
4225 punk_joker 82
#define TITLE "Eolite File Manager v2.15"
83
#define ABOUT_TITLE "Eolite v2.15"
4076 leency 84
dword col_padding, col_selec, col_lpanel;
3363 leency 85
 
3434 leency 86
int toolbar_buttons_x[7]={9,46,85,134,167,203};
87
char tmp_disk_del_param[3]="d0";
88
struct path_string { char Item[4096]; };
3363 leency 89
 
4136 punk_joker 90
byte active_about=0;
4070 punk_joker 91
word about_window;
4040 punk_joker 92
 
4136 punk_joker 93
byte menu_call_mouse=0;
94
 
3434 leency 95
llist files;
96
 
97
byte
3363 leency 98
	path[4096],
99
	file_path[4096],
3404 leency 100
	file_name[256],
3434 leency 101
	temp[4096];
102
byte
3439 leency 103
	rename_active=0,
104
	del_active=0,
3434 leency 105
	show_dev_name=1,
4225 punk_joker 106
	real_files_names_case=0,
3434 leency 107
	sort_num=2,
3441 leency 108
	itdir;
3363 leency 109
 
110
proc_info Form;
4076 leency 111
system_colors sc;
3363 leency 112
mouse m;
4057 leency 113
int mouse_dd, scroll_used, scroll_size, sorting_arrow_x, kolibrios_drive;
3434 leency 114
dword buf, off;
115
dword file_mas[6898];
116
int j, i;
4028 leency 117
int action_buf;
3363 leency 118
 
4028 leency 119
edit_box edit2 = {250,213,80,0xFFFFCC,0x94AECE,0xFFFFCC,0xffffff,0,248,#file_name,#mouse_dd,64,6,6};
3434 leency 120
PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x0, 0xFFFfff, #path, #temp, 0};
3363 leency 121
PathShow_data FileShow = {0, 56,215, 6, 100, 0, 0, 0x0, 0xFFFfff, #file_name, #temp, 0};
122
 
4042 leency 123
#include "include\copy.h"
124
#include "include\other.h"
3363 leency 125
#include "include\sorting.h"
4042 leency 126
#include "include\icons.h"
3363 leency 127
#include "include\ini.h"
128
#include "include\left_panel.h"
129
#include "include\history.h"
4042 leency 130
#include "include\menu.h"
131
#include "include\about.h"
132
#include "include\open_with.h"
3363 leency 133
 
4076 leency 134
void SetAppColors()
135
{
136
	sc.work = 0xE4DFE1;
137
	sc.work_text = 0;
138
	sc.work_graph  = 0x9098B0; //A0A0B8; //0x819FC5;
139
	sc.work_button_text = 0x000000;
140
	col_padding = 0xC8C9C9;
141
	col_selec   = 0x94AECE;
142
	col_lpanel  = 0x00699C;
143
	/*
144
	sc.get();
145
	for (i=0; i<=14; i++) col_palette[i] = sc.work;
146
	toolbar_pal[0]= goto_about_pal[0] = sc.work = sc.work;
147
	col_lpanel = sc.work_graph;
148
	for (i=0; i<=99; i++) blue_hl_pal[i] = sc.work_graph;
149
	*/
150
}
151
 
3363 leency 152
void main()
153
{
3444 leency 154
	word key, id, can_show, can_select, m_selected;
3363 leency 155
 
3434 leency 156
	files.line_h=18;
3363 leency 157
	mem_Init();
3848 punk_joker 158
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify(ERROR_1);
3434 leency 159
	SystemDiscsGet();
4076 leency 160
	GetIni(1);
161
	SetAppColors();
3363 leency 162
	if (param)
163
	{
164
		strcpy(#path, #param);
3434 leency 165
		if (path[strlen(#path)-1]!='/') chrcat(#path, '/'); //add "/" to the end of the string
3363 leency 166
	}
167
	else
3695 leency 168
	{
3432 leency 169
		strcpy(#path, "/rd/1/");
3695 leency 170
	}
3363 leency 171
	Open_Dir(#path,ONLY_OPEN);
3432 leency 172
	SetEventMask(0x27);
3434 leency 173
	loop() switch(WaitEvent())
3363 leency 174
	{
175
		case evMouse:
4081 leency 176
			if (del_active) || (!CheckActiveProcess(Form.ID)) || (Form.status_window>2) break;
177
			if (rename_active) { edit_box_mouse stdcall(#edit2); break; }
3363 leency 178
 
179
			m.get();
180
 
4078 leency 181
			if (files.MouseOver(m.x, m.y)) && (!can_select)
3363 leency 182
			{
4042 leency 183
				m_selected = m.y - files.y / files.line_h;
3434 leency 184
				if (m.lkm) can_select = 1;
185
				if (m.pkm)
186
				{
187
					can_show = 1;
4042 leency 188
					if (m.y - files.y / files.line_h != files.current) can_select = 1;
3434 leency 189
				}
190
			}
191
 
192
			//select/open file {
193
			if (!m.lkm) && (!m.pkm) && (can_select)
194
			{
195
				can_select = 0;
4042 leency 196
				if (m.y>=files.y)
3695 leency 197
				{
4042 leency 198
					id = m.y - files.y / files.line_h;
3695 leency 199
					if (id!=m_selected)
200
					{
201
						can_show=0;
202
						break;
203
					}
204
					if (files.current!=id)
3876 leency 205
					{
206
						if (id
207
					}
3695 leency 208
					else
209
						Open();
210
				}
3434 leency 211
			};
212
			// } select/open file
213
 
214
			//file menu {
215
			if (!m.pkm) && (!m.lkm) && (can_show)
216
			{
217
				can_show = 0;
4136 punk_joker 218
				menu_call_mouse = 1;
4042 leency 219
				if (m.y>=files.y)
3695 leency 220
				{
221
					SwitchToAnotherThread();
4057 leency 222
					CreateThread(#FileMenu,#menu_stak+4092);
3695 leency 223
				}
3434 leency 224
				break;
225
			}
226
			// } file menu
3363 leency 227
 
3434 leency 228
			if (m.vert)
229
			{
4069 leency 230
				if (files.MouseScroll(m.vert)) List_ReDraw();
3434 leency 231
				break;
232
			}
233
 
4042 leency 234
			if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>40) && (m.y
3363 leency 235
			{
236
				IF (m.lkm==1) DrawRectangle3D(onLeft(26,0),41,14,14,0xC7C7C7,0xFFFFFF);
3434 leency 237
				WHILE (m.lkm==1) && (files.first>0)
3363 leency 238
				{
3434 leency 239
					pause(8);
240
					files.first--;
3363 leency 241
					List_ReDraw();
242
					m.get();
243
				}
244
				DrawRectangle3D(onLeft(26,0),41,14,14,0xFFFFFF,0xC7C7C7);
245
			}
246
 
247
			if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>onTop(22,0)+1) && (m.y
248
			{
249
				IF (m.lkm==1) DrawRectangle3D(onLeft(26,0),onTop(21,0),14,14,0xC7C7C7,0xFFFFFF);
3434 leency 250
				while (m.lkm==1) && (files.first
3363 leency 251
				{
3434 leency 252
					pause(8);
253
					files.first++;
3363 leency 254
					List_ReDraw();
255
					m.get();
256
				}
257
				DrawRectangle3D(onLeft(26,0),onTop(21,0),14,14,0xFFFFFF,0xC7C7C7);
258
			}
259
 
3434 leency 260
			//Scrooll
261
			if (!m.lkm) && (scroll_used) { scroll_used=NULL; Scroll(); }
262
			if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>56) && (m.y
3363 leency 263
 
264
			if (scroll_used)
265
			{
4042 leency 266
				IF (scroll_size/2+files.y>m.y) || (m.y<0) || (m.y>4000) m.y=scroll_size/2+files.y; //anee eo?ni? iaa ieiii
3434 leency 267
				id=files.first;
3363 leency 268
				j= scroll_size/2;
4042 leency 269
				files.first = m.y -j -files.y * files.count;
270
				files.first /= onTop(22,files.y);
3434 leency 271
				IF (files.visible+files.first>files.count) files.first=files.count-files.visible;
3444 leency 272
				IF (id!=files.first) List_ReDraw();
3363 leency 273
			}
274
			break;
275
//Button pressed-----------------------------------------------------------------------------
276
		case evButton:
277
			id=GetButtonID();
4070 punk_joker 278
			if (id==1)
279
			{
280
				KillProcess(about_window);
281
				ExitProcess();
282
			}
3439 leency 283
			if (rename_active) break;
284
			if (del_active)
3363 leency 285
			{
286
				IF (id==301) || (id==302) Del_File(302-id);
287
				break;
288
			}
3439 leency 289
 
3363 leency 290
			switch(id)
291
			{
292
				case 21: //Back
293
						GoBack();
294
						break;
295
				case 22: //Forward
296
						if (HistoryPath(GO_FORWARD))
297
						{
3434 leency 298
							files.first=files.current=NULL; //aaa?o nienea
3363 leency 299
							Open_Dir(#path,WITH_REDRAW);
300
						}
301
						break;
302
				case 23: //up!
303
						Dir_Up();
304
						break;
305
				case 24: //cut
3846 punk_joker 306
						Copy(#file_path, CUT);
3444 leency 307
						break;
3363 leency 308
				case 25: //copy
3846 punk_joker 309
						Copy(#file_path, NOCUT);
3444 leency 310
						break;
3363 leency 311
				case 26: //paste
4057 leency 312
						CreateThread(#Paste,#copy_stak+4092);
3363 leency 313
						break;
4225 punk_joker 314
				case 27:
315
						strcpy(#temp, "Ram Disk free space: ");
316
						i = GetFreeRamDiskClusters() / 2;
317
						itoa_(#temp+21, i);
318
						strcat(#temp, "Kb");
319
						notify(#temp);
320
						break;
3363 leency 321
				case 31...33: //sort
4022 leency 322
						IF(sort_num==1) DrawFilledBar(sorting_arrow_x,42,6,10);
323
						IF(sort_num==2) DrawFilledBar(sorting_arrow_x,42,6,10);
324
						IF(sort_num==3) DrawFilledBar(sorting_arrow_x,42,6,10);
3363 leency 325
						sort_num=id-30;
3434 leency 326
						Open_Dir(#path,WITH_REDRAW);
3363 leency 327
						break;
3434 leency 328
				case 50...60: //Actions
3444 leency 329
						FnProcess(id-50);
3363 leency 330
						break;
331
				case 100...120:
332
					DEVICE_MARK:
3444 leency 333
						DrawRectangle(17,id-100*16+74,159,16, 0); //auaaeaiea
3363 leency 334
						strcpy(#path, #disk_list[id-100].Item);
3434 leency 335
						files.first=files.current=0;
3444 leency 336
						Open_Dir(#path,WITH_REDRAW);
3363 leency 337
						pause(5);
3444 leency 338
						DrawRectangle(17,id-100*16+74,159,16, 0xFFFFFF);
3363 leency 339
						break;
340
				case 130...160:
341
						tmp_disk_del_param[1]=disk_list[id-130].Item[4];
342
						RunProgram("/sys/tmpdisk", #tmp_disk_del_param);
343
						pause(10);
3434 leency 344
						SystemDiscsGet();
3363 leency 345
						Open_Dir(#path,WITH_REDRAW);
346
						DrawLeftPanel();
347
						break;
348
			}
349
			break;
350
//Key pressed-----------------------------------------------------------------------------
351
		case evKey:
352
			key = GetKey();
353
			if (Form.status_window>2) break;
354
			IF (del_active)
355
			{
356
				IF (key==013) Del_File(true);
357
				IF (key==027) Del_File(false);
358
				break;
359
			}
3444 leency 360
			IF (edit2.flags!=64) && (key!=13) && (key!=27)
3363 leency 361
			{
362
				EAX=key<<8;
363
				edit_box_key stdcall (#edit2);
364
				break;
365
			}
366
			switch (key)
367
			{
368
					case 209...217:
369
							id=key-110;
370
							IF (id-100>=disc_num) break;
371
							GOTO DEVICE_MARK;
3434 leency 372
					case 008:
3363 leency 373
							//GoBack();
374
							Dir_Up();
375
							break;
3434 leency 376
					case 004: //Ctrl+D set as bg
3363 leency 377
							strcpy(#temp, "\\S__");
378
							strcat(#temp, #file_path);
379
							RunProgram("/sys/media/kiv", #temp);
380
							break;
3434 leency 381
					case 014: //Ctrl+N new window
3363 leency 382
							IF (Form.left==98) MoveSize(Form.left-20,Form.top-20,OLD,OLD);
383
							RunProgram("/sys/File Managers/Eolite", #path);
384
							break;
385
					case 024: //Ctrl+X
3444 leency 386
							Copy(#file_path, CUT);
387
							break;
3363 leency 388
					case 003: //Ctrl+C
3444 leency 389
							Copy(#file_path, NOCUT);
3363 leency 390
							break;
391
					case 022: //Ctrl+V
4057 leency 392
							CreateThread(#Paste,#copy_stak+4092);
3363 leency 393
							break;
394
					case 027: //Esc
395
							IF (rename_active==1) ReName(false);
396
							break;
397
					case 013: //Enter
398
							IF (rename_active==1) {ReName(true); break;}
3434 leency 399
							Open();
3363 leency 400
							break;
4136 punk_joker 401
					case 074: //menu
402
							menu_call_mouse=0;
403
							SwitchToAnotherThread();
404
							CreateThread(#FileMenu,#menu_stak+4092);
405
							break;
4070 punk_joker 406
					case 173: //Ctrl+Enter
4225 punk_joker 407
							if (!itdir) ShowOpenWithDialog();
4070 punk_joker 408
							break;
3363 leency 409
					case 178: //up
3444 leency 410
							List_Current(-1);
3363 leency 411
							break;
412
					case 177: //down
3444 leency 413
							List_Current(1);
3363 leency 414
							break;
415
					case 180: //home
4069 leency 416
							if (files.KeyHome()) List_ReDraw();
3363 leency 417
							break;
418
					case 181: //end
4069 leency 419
							if (files.KeyEnd()) List_ReDraw();
3363 leency 420
							break;
421
					case 183: //Page Down
3444 leency 422
							List_Current(files.visible-1);
3363 leency 423
							break;
424
					case 184: //Page Up
3444 leency 425
							List_Current(-files.visible+1);
3363 leency 426
							break;
3434 leency 427
					case 182: //del
428
							Del_Form();
3363 leency 429
							break;
3434 leency 430
					case 050...059: //F1-F10
3444 leency 431
							FnProcess(key-49);
3363 leency 432
							break;
433
					default:
3434 leency 434
							for (i=files.current+files.first+1; i
3363 leency 435
							{
436
								strcpy(#temp, file_mas[i]*304+buf+72);
437
								IF (temp[0]==key) || (temp[0]==key-32)
438
								{
3444 leency 439
									List_Current(i-files.current-files.first);
3363 leency 440
									break;
441
								}
442
							}
443
			}
444
			break;
445
		case evReDraw:
4042 leency 446
			draw_window();
4028 leency 447
			if (action_buf) { menu_action(action_buf); action_buf=0;}
3363 leency 448
	}
449
}
450
 
4225 punk_joker 451
 
452
 
4028 leency 453
void menu_action(dword id)
454
{
455
	if (id==COPY_PASTE_END)
456
	{
457
		FnProcess(5);
458
		SelectFile(#copy_to+strrchr(#copy_to,'/'));
459
	}
460
	if (id==100) Open();
4225 punk_joker 461
	if (id==201) ShowOpenWithDialog();
4028 leency 462
	if (id==202) FnProcess(3); //F3
463
	if (id==203) FnProcess(4); //F4
464
	if (id==104) Copy(#file_path, NOCUT);
465
	if (id==105) Copy(#file_path, CUT);
4057 leency 466
	if (id==106) CreateThread(#Paste,#copy_stak+4092);
4034 leency 467
	if (id==207) FnProcess(2);
4028 leency 468
	if (id==108) Del_Form();
469
	if (id==109) FnProcess(5);
470
}
3363 leency 471
 
4028 leency 472
 
3444 leency 473
void draw_window()
474
{
4225 punk_joker 475
	DefineAndDrawWindow(40,20,550,500,0x73,sc.work,TITLE,0);
3444 leency 476
	GetProcessInfo(#Form, SelfInfo);
477
	if (Form.status_window>2) return;
478
	files.SetSizes(192, 57, onLeft(192,27), onTop(57,6), disc_num*16+195,files.line_h);
479
	if (Form.height < files.min_h) MoveSize(OLD,OLD,OLD,files.min_h);
480
	if (Form.width<480) MoveSize(OLD,OLD,480,OLD);
481
	GetProcessInfo(#Form, SelfInfo); //if win_size changed
482
 
3363 leency 483
	PutPaletteImage(#toolbar,246,34,0,0,8,#toolbar_pal);
4076 leency 484
	DrawBar(127, 8, 1, 25, sc.work_graph);
485
	for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,sc.work);
486
	for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,sc.work);
487
	DrawBar(246,0,onLeft(246,60),12, sc.work); //upper editbox
488
	DrawBar(246,29,onLeft(246,60),5,sc.work);  //under editbox
489
	DrawRectangle(246,12,onLeft(66,246),16,sc.work_graph);
3444 leency 490
	DefineButton(onLeft(34,0),6,27,28,51+BT_HIDE+BT_NOFRAME,0); //about
3363 leency 491
	PutPaletteImage(#goto_about,56,34,Form.width-65,0,8,#goto_about_pal);
3434 leency 492
	//main rectangles
4076 leency 493
	DrawRectangle(1,40,Form.cwidth-3,onTop(46,0),sc.work_graph);
3444 leency 494
	DrawRectangle(0,39,Form.cwidth-1,onTop(44,0),col_palette[4]); //bg
3363 leency 495
	for (i=0; i<5; i++) DrawBar(0, 34+i, Form.cwidth, 1, col_palette[8-i]);
496
	DrawLeftPanel();
3434 leency 497
	//ListBox
4076 leency 498
	DrawFlatButton(files.x,40,onLeft(files.x,168),16,31,sc.work,T_FILE);
499
	DrawFlatButton(onLeft(168,0),40,73,16,32,sc.work,T_TYPE);
500
	DrawFlatButton(onLeft(95,0),40,68,16,33,sc.work,T_SIZE);
501
	DrawBar(files.x+files.w,files.y,1,onTop(22,files.y),sc.work_graph); //line to the left from the scroll
502
	DrawFlatButton(files.x+files.w,40,16,16,0,sc.work,"\x18");
503
	DrawFlatButton(files.x+files.w,onTop(22,0),16,16,0,sc.work,"\x19");
3363 leency 504
	Open_Dir(#path,ONLY_SHOW);
505
	if (del_active) Del_Form();
4002 leency 506
	//if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
3444 leency 507
	if (rename_active) FnProcess(2);
3363 leency 508
}
509
 
510
 
511
void KEdit()
512
{
3434 leency 513
	if (Form.width<480) return;
3363 leency 514
	PathShow.area_size_x = Form.cwidth-306;
515
	DrawBar(PathShow.start_x-3, PathShow.start_y-4, PathShow.area_size_x+2, 15, 0xFFFfff);
516
	PathShow_prepare stdcall(#PathShow);
517
	PathShow_draw stdcall(#PathShow);
518
}
519
 
520
 
3444 leency 521
void List_Current(int cur)
3363 leency 522
{
3434 leency 523
	if (cur<=0) //up
3363 leency 524
	{
3434 leency 525
		IF (files.first==0) && (files.current<=0) return;
526
		IF (-cur-1
3363 leency 527
		{
3434 leency 528
			Line_ReDraw(0xFFFFFF, files.current);
529
			files.current+=cur;
530
			Line_ReDraw(col_selec, files.current);
3363 leency 531
			return;
532
		}
533
		ELSE
534
		{
3434 leency 535
			IF (-cur
536
			files.current=0;
3363 leency 537
			List_ReDraw();
538
			return;
539
		}
540
	}
3434 leency 541
	else  //down
3363 leency 542
	{
3434 leency 543
		IF (files.first==files.count-files.visible) && (files.current==files.visible-1) return;
544
		IF (files.visible-files.current>cur)
3363 leency 545
		{
3434 leency 546
			Line_ReDraw(0xFFFFFF, files.current);
547
			files.current+=cur;
548
			Line_ReDraw(col_selec, files.current);
3363 leency 549
			return;
550
		}
551
		else
552
		{
3434 leency 553
			IF(files.first+files.current+cur>=files.count)
3363 leency 554
			{
3434 leency 555
				files.first=files.count-files.visible;
556
				files.current=cur-files.first+files.current;
3363 leency 557
				}
558
			ELSE
559
			{
3434 leency 560
				files.first+=cur+files.current-files.visible+1;
561
				files.current=files.visible-1;
3363 leency 562
			}
563
 
3434 leency 564
			IF (files.current<0) || (files.current>files.visible)
3363 leency 565
			{
3434 leency 566
				files.current=files.visible-1;
3363 leency 567
			}
568
			List_ReDraw();
569
		}
570
	}
571
}
572
 
573
 
574
void List_ReDraw()
575
{
3434 leency 576
	int paint_y;
3876 leency 577
	//we are in the end of the list => maximize window => there will be white lines after the last element
3434 leency 578
	if (files.count-files.firstfiles.visible-1)
579
	{ files.first=files.count-files.visible; files.current=files.visible-1; }
3444 leency 580
	for (j=0; j
3434 leency 581
	//in the bottom
582
	paint_y = j * files.line_h + files.y;
583
	DrawBar(files.x,paint_y,files.w,onTop(paint_y,6),0xFFFFFF);
4076 leency 584
	DrawBar(Form.cwidth-159,paint_y,1,onTop(paint_y,6),sc.work);
585
	DrawBar(Form.cwidth-86,paint_y,1,onTop(paint_y,6),sc.work);
3434 leency 586
	Scroll();
3363 leency 587
}
588
 
3444 leency 589
 
3363 leency 590
void Line_ReDraw(dword color, filenum){
3467 leency 591
	dword text_col=0,
592
	      name_len=0,
593
	      attr,
4042 leency 594
	      y=filenum*files.line_h+files.y;
3447 leency 595
	DrawBar(files.x,y,3,files.line_h,color);
596
	DrawBar(files.x+19,y,files.w-19,files.line_h,color);
597
	DrawBar(files.x+3,y+17,16,1,color);
598
	if (files.line_h>18) DrawBar(files.x+3,y+18,16,files.line_h-18,color);
599
	if (files.line_h>15) DrawBar(files.x+3,y,16,files.line_h-15,color);
3363 leency 600
 
3434 leency 601
	off=file_mas[filenum+files.first]*304 + buf+72;
3467 leency 602
	attr = ESDWORD[off - 40];
3363 leency 603
 
3467 leency 604
	if (! TestBit(attr, 4) ) //file or folder?
3363 leency 605
	{
4057 leency 606
		Put_icon(off+_strrchr(off,'.'), files.x+3, files.line_h/2-7+y, color, 0);
3434 leency 607
		WriteText(7-strlen(ConvertMemSize(ESDWORD[off-8]))*6+onLeft(75,0),files.line_h-6/2+y,0x80,0,ConvertMemSize(ESDWORD[off-8])); //size
3363 leency 608
	}
609
	else
610
		if (!strcmp("..",off))
4057 leency 611
			Put_icon("..", files.x+3, files.line_h/2-7+y, color, 0);
3363 leency 612
		else
4057 leency 613
			Put_icon("", files.x+3, files.line_h/2-7+y, color, 0);
3467 leency 614
	if ( TestBit(attr, 1) ) || ( TestBit(attr, 2) ) text_col=0xA6A6B7; //system or hiden?
3444 leency 615
	if (color!=0xFFFfff)
3363 leency 616
	{
3467 leency 617
		itdir = TestBit(attr, 4);
3363 leency 618
		strcpy(#file_name, off);
619
		strcpy(#file_path, #path);
3434 leency 620
		strcat(#file_path, #file_name);
3363 leency 621
		if (text_col==0xA6A6B7) text_col=0xFFFFFF;
622
	}
3434 leency 623
	if (Form.width>=480)
624
	{
3447 leency 625
		FileShow.start_x = files.x + 23;
3434 leency 626
		FileShow.font_color = text_col;
627
		FileShow.area_size_x = Form.width - 380;
628
		FileShow.text_pointer = off;
629
		FileShow.start_y = files.line_h/2-3+y;
630
		PathShow_prepare stdcall(#FileShow);
631
		PathShow_draw stdcall(#FileShow);
632
	}
4076 leency 633
	DrawBar(Form.cwidth-159,y,1,files.line_h,sc.work); //gray line 1
634
	DrawBar(Form.cwidth-86,y,1,files.line_h,sc.work); //gray line 2
3363 leency 635
}
636
 
637
 
3444 leency 638
void Open_Dir(dword dir_path, redraw){
639
	int errornum, maxcount;
3434 leency 640
 
3444 leency 641
	if (redraw!=ONLY_SHOW)
3363 leency 642
	{
3444 leency 643
		if (ESBYTE[dir_path+1]!='\0') ESBYTE[dir_path+strlen(dir_path)-1] = '\0';
3363 leency 644
		if (buf) free(buf);
3444 leency 645
		errornum = GetDir(#buf, #files.count, dir_path, DIRS_NOROOT);
646
		if (ESBYTE[dir_path+1]!='\0') chrcat(dir_path, '/');
647
		if (errornum)
3363 leency 648
		{
649
			HistoryPath(ADD_NEW_PATH);
650
			GoBack();
651
			Write_Error(errornum);
652
			return;
653
		}
3444 leency 654
		maxcount = sizeof(file_mas)/sizeof(dword)-1;
4225 punk_joker 655
		if (files.count>maxcount) files.count = maxcount;
656
		DrawRamDiskSpace();
3363 leency 657
	}
3444 leency 658
	if (files.count!=-1)
3363 leency 659
	{
660
		KEdit();
661
		HistoryPath(ADD_NEW_PATH);
3444 leency 662
		files.visible = files.h / files.line_h;
663
		IF (files.count < files.visible) files.visible = files.count;
4022 leency 664
		IF (sort_num==1) sorting_arrow_x = Form.width+60/2;
665
		IF (sort_num==2) sorting_arrow_x = Form.width-115;
666
		IF (sort_num==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
4076 leency 667
		WriteText(sorting_arrow_x,45,0x80,sc.work_graph,"\x19");
3444 leency 668
		IF (redraw!=ONLY_SHOW) Sorting();
669
		IF (redraw!=ONLY_OPEN) List_ReDraw();
3363 leency 670
	}
3444 leency 671
	IF (files.count==-1) && (redraw!=ONLY_OPEN) {files.visible=files.count=0; List_ReDraw();}
3363 leency 672
}
673
 
674
 
675
inline Sorting()
676
{
677
	dword k=0, l=1;
678
	int i;
3434 leency 679
	if (!strcmp(#path,"/")) //do not sort
3363 leency 680
	{
3434 leency 681
		FOR(k=1;k
3363 leency 682
		return;
683
	}
3434 leency 684
	FOR (j=files.count-1, off=files.count-1*304+buf+32; j>=0; j--, off-=304;)  //files | folders
3363 leency 685
	{
4225 punk_joker 686
		if (!real_files_names_case) strttl(off+40);
3441 leency 687
		if (TestBit(ESDWORD[off],4)) //directory?
3363 leency 688
		{
689
			file_mas[k]=j;
690
			k++;
691
		}
692
		else
693
		{
3434 leency 694
			file_mas[files.count-l]=j;
3363 leency 695
			l++;
696
		}
697
	}
3434 leency 698
	//sorting: files first, then folders
3363 leency 699
	Sort_by_Name(0,k-1);
3434 leency 700
	IF (sort_num==1) Sort_by_Name(k,files.count-1);
701
	IF (sort_num==2) Sort_by_Type(k,files.count-1);
702
	IF (sort_num==3) Sort_by_Size(k,files.count-1);
703
	//".." should be first
3444 leency 704
	IF (k>0) && (strcmp(file_mas[0]*304+buf+72,"..")!=0)
705
		FOR(k--; k>0; k--;) IF (!strcmp(file_mas[k]*304+buf+72,"..")) {file_mas[k]>
3363 leency 706
}
707
 
708
 
709
void Del_Form()
710
{
4002 leency 711
	int dform_x=files.w-220/2+files.x;
4022 leency 712
	if (strcmp(#file_name,".")==0) || (strcmp(#file_name,"..")==0) return;
4002 leency 713
	if (del_active==2)
3991 leency 714
	{
4002 leency 715
		if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
3991 leency 716
	}
717
	else
718
	{
4002 leency 719
		if (!files.count) return;
4076 leency 720
		DrawPopup(dform_x,160,220,80,1,sc.work,sc.work_graph);
721
		WriteText(-strlen(T_DELETE_FILE)*3+110+dform_x,175,0x80,sc.work_text,T_DELETE_FILE);
4002 leency 722
		IF (strlen(#file_name)<28)
723
		{
4076 leency 724
			WriteText(strlen(#file_name)*3+110+dform_x+2,190,0x80,sc.work_text,"?");
725
			WriteText(-strlen(#file_name)*3+110+dform_x,190,0x80,sc.work_text,#file_name);
4002 leency 726
		}
727
		else
728
		{
729
			WriteText(164+dform_x,190,0x80,0,"...?");
730
			ESI = 24;
731
			WriteText(dform_x+20,190,0,0,#file_name);
732
		}
733
		DrawFlatButton(dform_x+27,208,70,20,301,0xFFB6B5,T_YES);
734
		DrawFlatButton(dform_x+120,208,70,20,302,0xC6DFC6,T_NO);
735
		del_active=1;
3991 leency 736
	}
3363 leency 737
}
738
 
4022 leency 739
int del_error;
740
int Del_File2(dword way)
3980 punk_joker 741
{
742
	dword dirbuf, fcount, i, filename;
4022 leency 743
	int error;
744
	char del_from[4096];
745
	if (isdir(way))
3997 leency 746
	{
4022 leency 747
		if (error = GetDir(#dirbuf, #fcount, way, DIRS_ONLYREAL)) del_error = error;
3997 leency 748
		for (i=0; i
3980 punk_joker 749
		{
4002 leency 750
			if (CheckEvent()==evReDraw) draw_window();
3997 leency 751
			filename = i*304+dirbuf+72;
752
			strcpy(#del_from, way);
753
			chrcat(#del_from, '/');
754
			strcat(#del_from, filename);
755
			if ( TestBit(ESDWORD[filename-40], 4) )
756
				Del_File2(#del_from);
757
			else
4022 leency 758
			{
759
				if (error = DeleteFile(#del_from)) del_error = error;
760
			}
3980 punk_joker 761
		}
3997 leency 762
	}
4022 leency 763
	if (error = DeleteFile(way)) del_error = error;
3980 punk_joker 764
}
765
 
766
 
3363 leency 767
void Del_File(byte dodel)
4022 leency 768
{
3980 punk_joker 769
	if (dodel==true)
3363 leency 770
	{
4002 leency 771
		del_active=2;
3997 leency 772
		if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
4022 leency 773
		del_error = 0;
3980 punk_joker 774
		Del_File2(#file_path);
4022 leency 775
		if (del_error) Write_Error(del_error);
3363 leency 776
 	}
777
	del_active=0;
3997 leency 778
	DeleteButton(301);
779
	DeleteButton(302);
3444 leency 780
	Open_Dir(#path,WITH_REDRAW);
3363 leency 781
}
782
 
783
 
784
void ReName(byte rename)
785
{
3404 leency 786
	int del_rezult, copy_rezult;
3363 leency 787
	char edit_name[256];
788
	rename_active=0;
789
	edit2.flags=64;
790
	if (rename==true)
791
	{
792
		strcpy(#temp, #path);
3434 leency 793
		strcpy(#edit_name, #file_name); //save edit name to select it later
3363 leency 794
		strcat(#temp, #file_name);
3444 leency 795
		if (strcmp(#file_path,#temp)!=0) && (file_name)
796
		if (itdir)
3363 leency 797
		{
4029 leency 798
			if (del_rezult = DeleteFile(#file_path))
3363 leency 799
			{
3404 leency 800
				Write_Error(del_rezult);
3997 leency 801
				ShowMessage(T_DEL_ERROR_1, 150);
3363 leency 802
				return;
803
			}
4029 leency 804
			if (CreateDir(#temp)) CreateDir(#file_path);
3444 leency 805
			Open_Dir(#path,WITH_REDRAW);
4029 leency 806
			SelectFile(#edit_name);
3363 leency 807
		}
3877 leency 808
		else
3363 leency 809
		{
4029 leency 810
			if (copy_rezult = CopyFile(#file_path,#temp))
811
			{
812
				Write_Error(copy_rezult);
813
			}
814
			else
815
			{
816
				Del_File(true);
817
				SelectFile(#edit_name);
818
			}
3363 leency 819
		}
820
	}
3434 leency 821
	Line_ReDraw(col_selec,files.current);
3363 leency 822
}
823
 
824
 
825
void SelectFile(dword that_file)
826
{
3434 leency 827
	files.first=files.current=0;
3363 leency 828
   	Open_Dir(#path,ONLY_OPEN);
4225 punk_joker 829
	if (!real_files_names_case) strttl(that_file);
3434 leency 830
	for (i=files.count-1; i>=0; i--;)
3363 leency 831
		if (!strcmp(file_mas[i]*304+buf+72,that_file)) break;
3444 leency 832
	List_Current(i);
3363 leency 833
	List_ReDraw();
834
}
835
 
836
 
837
void Dir_Up()
838
{
839
	char cur_folder[4096];
840
	i=strlen(#path)-1;
841
	if (i==0) return;
842
	path[i]=0x00;
843
	i = strrchr(#path, '/');
844
	strcpy(#cur_folder, #path+i);
845
	path[i]=0x00;
846
	SelectFile(#cur_folder);
847
}
848
 
3434 leency 849
void Open()
850
{
3444 leency 851
	if (!files.count) return;
3441 leency 852
	if (!itdir)
3434 leency 853
	{
854
		GetIni(0);
855
	}
856
	else
857
	{
858
		if (!strcmp(#file_name,"..")) { Dir_Up(); return; }
859
		strcpy(#path, #file_path);
860
		if (path[strlen(#path)-1]!='/') chrcat(#path, '/'); //need "/" in the end
861
		files.first=files.current=0;
3444 leency 862
		Open_Dir(#path,WITH_REDRAW);
3434 leency 863
	}
864
}
3363 leency 865
 
3434 leency 866
 
867
inline fastcall void GoBack()
3363 leency 868
{
869
	char cur_folder[4096];
870
	strcpy(#cur_folder, GetCurrentFolder());
871
	if (HistoryPath(GO_BACK)) SelectFile(#cur_folder);
872
}
873
 
3444 leency 874
void FnProcess(char N)
3434 leency 875
{
876
	switch(N)
877
	{
878
		case 1:
879
			SwitchToAnotherThread();
4070 punk_joker 880
			about_window=CreateThread(#about_dialog,#about_stak+4092);
3434 leency 881
			break;
882
		case 2:
883
			if (!files.count) break;
3447 leency 884
			edit2.flags = 100000000000010b; //set active
885
			edit2.left = files.x + 21;
886
			edit2.width = files.w - 26;
3434 leency 887
			edit2.top=files.current*files.line_h+59;
888
			edit2.size=edit2.pos=strlen(#file_name);
889
			edit_box_draw  stdcall (#edit2);
3447 leency 890
			DrawBar(edit2.left,files.current*files.line_h+58,edit2.width+1,1,0xFFFFCC); //bg
3434 leency 891
			rename_active=1;
892
			break;
893
		case 3:
3441 leency 894
			IF (!itdir) RunProgram("/sys/tinypad", #file_path);
3434 leency 895
			break;
896
		case 4:
3441 leency 897
			IF (!itdir) RunProgram("/sys/develop/heed", #file_path);
3434 leency 898
			break;
3440 leency 899
		case 5: //refresh cur dir & devs
3854 leency 900
			Tip(56, T_DEVICES, 55, "-");
3440 leency 901
			Open_Dir(#path,WITH_REDRAW);
902
			pause(10);
903
			GetIni(1);
904
			SystemDiscsGet();
3444 leency 905
			Open_Dir(#path,WITH_REDRAW);
3440 leency 906
			DrawLeftPanel();
3434 leency 907
			break;
908
		case 6:
909
			strcpy(#temp, #path);
3848 punk_joker 910
			strcat(#temp, T_NEW_FOLDER);
3434 leency 911
			CreateDir(#temp);
912
			if (!EAX){
3848 punk_joker 913
				SelectFile(T_NEW_FOLDER);
3444 leency 914
				FnProcess(2);
3434 leency 915
			}
916
			else
917
			{
918
				Write_Error(EAX);
3997 leency 919
				ShowMessage(NOT_CREATE_FOLDER, 150);
3434 leency 920
			}
921
			break;
922
		case 7:
923
			strcpy(#temp, #path);
3848 punk_joker 924
			strcat(#temp, T_NEW_FILE);
3434 leency 925
			WriteFile(0, 0, #temp);
926
			if (!EAX){
3848 punk_joker 927
				SelectFile(T_NEW_FILE);
3444 leency 928
				FnProcess(2);
3434 leency 929
			}
930
			else
931
			{
932
				Write_Error(EAX);
3997 leency 933
				ShowMessage(NOT_CREATE_FILE, 150);
3434 leency 934
			}
935
			break;
936
		case 10: //F10
937
			RunProgram(EDITOR_PATH, abspath("Eolite.ini"));
938
			break;
939
	}
940
}
941
 
942
 
3363 leency 943
stop:
944
 
4057 leency 945
char menu_stak[4096];
3846 punk_joker 946
char copy_stak[4096];
4057 leency 947
char open_with_stak[4096];
948
char about_stak[4096];