Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
9689 leency 1
//Leency, Veliant, Punk_Joker, PavelYakov & KolibriOS Team 2008-2022
7490 leency 2
//GNU GPL license.
3363 leency 3
 
8952 leency 4
/*
8953 leency 5
BUGS:
8983 leency 6
- F1 in KFM (move Properties to an external app)
9530 leency 7
- Ctrl+1+2+3+4 in KFM
8
- Highlight another commands on Ctrl|Shift in KFM like in Classic KFM
8952 leency 9
TODO:
9275 leency 10
- add option Preserve all timestamps (Created, Opened, Modified)
11
  http://board.kolibrios.org/viewtopic.php?f=23&t=4521&p=77334#p77334
8952 leency 12
*/
7361 leency 13
 
9693 leency 14
#define ABOUT_TITLE "EOLITE 5.25"
15
#define TITLE_EOLITE "Eolite File Manager 5.25"
16
#define TITLE_KFM "Kolibri File Manager 2.25";
8012 leency 17
 
8417 leency 18
#define MEMSIZE 1024 * 250
7054 leency 19
#include "../lib/clipboard.h"
20
#include "../lib/strings.h"
21
#include "../lib/mem.h"
7219 leency 22
#include "../lib/fs.h"
7054 leency 23
#include "../lib/gui.h"
24
#include "../lib/list_box.h"
25
#include "../lib/random.h"
26
#include "../lib/kfont.h"
27
#include "../lib/collection.h"
28
#include "../lib/copyf.h"
5834 pavelyakov 29
 
7054 leency 30
#include "../lib/obj/libini.h"
31
#include "../lib/obj/box_lib.h"
7230 leency 32
#include "../lib/obj/libimg.h"
7054 leency 33
 
34
#include "../lib/patterns/history.h"
35
 
7462 leency 36
#include "imgs/images.h"
8947 leency 37
#include "include/const.h"
8854 leency 38
 
7634 leency 39
struct Eolite_colors
40
{
8953 leency 41
	bool  skin_is_dark;
7634 leency 42
	dword lpanel;
43
	dword list_vert_line; //vertical line between columns in list
44
	dword selec;
45
	dword selec_active;
46
	dword selec_inactive;
47
	dword selec_text;
48
	dword list_bg;
49
	dword list_gb_text;
50
	dword list_text_hidden;
51
	dword work_gradient[24];
52
	dword slider_bg_big;
53
	dword slider_bg_left;
54
	dword odd_line;
55
} col;
8240 leency 56
dword waves_pal[256];
3363 leency 57
 
8953 leency 58
//Global data
59
	bool efm = false;
60
	_history history;
8764 leency 61
 
8947 leency 62
//Folder data
8956 leency 63
	dword buf, buf_inactive;
8947 leency 64
	collection_int items=0;
65
	int folder_count;
8949 leency 66
	dword path;
8952 leency 67
	bool dir_at_fat16 = NULL;
5698 leency 68
 
8953 leency 69
//Selected element data
8947 leency 70
	byte file_path[4096];
71
	byte file_name[256];
72
	byte temp[4096];
73
	bool itdir;
3363 leency 74
 
8947 leency 75
//Window data
76
	proc_info Form;
77
	int sc_slider_h;
78
	bool scroll_used=false;
79
	char sort_type=2;
80
	bool sort_desc=false;
81
	int status_bar_h;
82
	int icon_size = 18;
8953 leency 83
	char active_popin = NULL;
84
	bool list_full_redraw;
5698 leency 85
 
8952 leency 86
//Threads data
87
	dword about_thread_id;
88
	dword settings_window;
89
	bool active_about = false;
90
	bool active_settings = false;
91
	dword about_stak=0,properties_stak=0,settings_stak=0;
92
	byte cmd_free=0;
5695 leency 93
 
8952 leency 94
//Multipanes
95
	int active_panel=0;
96
	#define PANES_COUNT 2
97
	dword location[PANES_COUNT];
8953 leency 98
	llist files, files_active, files_inactive;
8983 leency 99
	collection_int selected0, selected1;
100
	dword selected_count[PANES_COUNT]=0;
5608 leency 101
 
7054 leency 102
libimg_image icons16_default;
103
libimg_image icons16_selected;
7242 leency 104
libimg_image icons32_default;
105
libimg_image icons32_selected;
7197 leency 106
 
8953 leency 107
byte popin_string[4096];
108
edit_box popin_text = {200,213,180,0xFFFFFF,0x94AECE,0xFFFFFF,0xFFFFFF,0x10000000,
109
	248,#popin_string,0,ed_focus+ed_always_focus,6,0};
110
 
7004 leency 111
PathShow_data FileShow = {0, 56,215, 8, 100, 1, 0, 0x0, 0xFFFfff, #file_name, #temp, 0};
5834 pavelyakov 112
 
8951 leency 113
#include "include\settings.h"
7462 leency 114
#include "include\gui.h"
5804 punk_joker 115
#include "include\progress_dialog.h"
7878 leency 116
#include "include\copy_and_delete.h"
3363 leency 117
#include "include\sorting.h"
4042 leency 118
#include "include\icons.h"
3363 leency 119
#include "include\left_panel.h"
4042 leency 120
#include "include\menu.h"
121
#include "include\about.h"
5447 punk_joker 122
#include "include\properties.h"
3363 leency 123
 
7878 leency 124
void handle_param()
125
{
7879 leency 126
	//-p  : just show file/folder properties dialog
127
	//-d  : delete file/folder
128
	//-v : paste files/folder from clipboard
8947 leency 129
	int i;
8764 leency 130
	dword p = #param;
8983 leency 131
	if (streq(#program_path+strrchr(#program_path,'/'), "KFM")) {
132
		efm = true;
133
		//now we need to restore the original app name
134
		//without this external operations down won't work
135
		strcpy(#program_path+strrchr(#program_path,'/'), "EOLITE");
136
	}
8764 leency 137
 
9581 leency 138
	SetAppColors();
8779 leency 139
	LoadIniSettings();
140
 
8947 leency 141
	for (i=0; i
142
		location[i] = malloc(4096);
143
		strcpy(location[i], #path_start);
144
	}
8949 leency 145
	path = location[0];
8947 leency 146
 
8764 leency 147
	if (ESBYTE[p]=='\0') return;
148
 
9269 leency 149
	if (ESBYTE[p]=='-') switch (ESBYTE[p+1])
7878 leency 150
	{
151
		case 'p':
8764 leency 152
			strcpy(#file_path, p + 3);
7920 leency 153
			itdir = dir_exists(#file_path);
8764 leency 154
			strcpy(#file_name, p + strrchr(p, '/'));
155
			ESBYTE[strrchr(p, '/')+p-1] = '\0';
8949 leency 156
			strcpy(path, p + 3);
7878 leency 157
			properties_dialog();
8020 leency 158
			ExitProcess();
7878 leency 159
		case 'd':
8949 leency 160
			strcpy(path, p + 3);
8861 leency 161
			DeleteThread();
8020 leency 162
			ExitProcess();
7879 leency 163
		case 'v':
8764 leency 164
			cut_active = ESBYTE[p+2] - '0';
8949 leency 165
			strcpy(path, p + 4);
7879 leency 166
			PasteThread();
8020 leency 167
			ExitProcess();
7878 leency 168
	}
8764 leency 169
 
9275 leency 170
	if (param[strlen(#param)-1]=='/') param[strlen(#param)-1]='\0'; //no "/" at the end
8779 leency 171
 
8764 leency 172
	if (dir_exists(p)) {
8949 leency 173
		strcpy(path, p);
8764 leency 174
	} else {
175
		if (file_exists(p)) {
176
			ESBYTE[strrchr(p, '/')+p-1] = '\0';
8949 leency 177
			strcpy(path, p);
178
			SelectFileByName(p+strlen(path)+1);
8764 leency 179
		} else {
180
			notify(T_NOTIFY_APP_PARAM_WRONG);
181
		}
9269 leency 182
	}
7878 leency 183
}
184
 
9269 leency 185
void main()
3363 leency 186
{
6289 leency 187
	dword id;
7993 leency 188
	int old_cur_y;
7786 leency 189
 
9699 Coldy 190
#ifndef __COFF__
8947 leency 191
	load_dll(boxlib, #box_lib_init,0);
192
	load_dll(libini, #lib_init,1);
193
	load_dll(libimg, #libimg_init,1);
9699 Coldy 194
#endif
8947 leency 195
 
8764 leency 196
	handle_param();
5651 pavelyakov 197
 
6034 leency 198
	SystemDiscs.Get();
8956 leency 199
	OpenDir(ONLY_OPEN);
5733 leency 200
	llist_copy(#files_inactive, #files);
7051 leency 201
	SetEventMask(EVM_REDRAW+EVM_KEY+EVM_BUTTON+EVM_MOUSE+EVM_MOUSE_FILTER);
9689 leency 202
	loop() switch(@WaitEventTimeout(150))
7786 leency 203
	{
204
		case evMouse:
8953 leency 205
			if (Form.status_window&ROLLED_UP) break;
206
 
207
			if (active_popin) {
208
				if (popin_string[0]!=-1) edit_box_mouse stdcall(#popin_text);
7786 leency 209
				break;
8953 leency 210
			}
9269 leency 211
 
7786 leency 212
			mouse.get();
7422 leency 213
 
7786 leency 214
			ProceedMouseGestures();
7989 leency 215
 
7993 leency 216
			if (mouse.vert)
217
			{
218
				if (files.MouseScroll(mouse.vert)) List_ReDraw();
7989 leency 219
				break;
220
			}
7993 leency 221
 
7786 leency 222
			if (files.MouseOver(mouse.x, mouse.y))
223
			{
224
				//select file
225
				if (mouse.key&MOUSE_LEFT) && (mouse.up)
5549 punk_joker 226
				{
9276 leency 227
					GetKeyModifier();
7993 leency 228
					old_cur_y = files.cur_y;
9276 leency 229
					if (files.ProcessMouse(mouse.x, mouse.y)) && (!key_modifier) {
8012 leency 230
						List_ReDraw();
9276 leency 231
						break;
8012 leency 232
					}
9276 leency 233
					if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT) {
234
						EventChooseFilesRange(old_cur_y, files.cur_y);
7993 leency 235
					} else if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL) {
236
						EventChooseFile(files.cur_y);
237
						DrawStatusBar();
7989 leency 238
						List_ReDraw();
9276 leency 239
					} else {
240
						if (mouse.y - files.y / files.item_h + files.first == files.cur_y) EventOpen(0);
7786 leency 241
					}
5591 pavelyakov 242
				}
7786 leency 243
				//file menu
244
				if (mouse.key&MOUSE_RIGHT) && (mouse.up)
5591 pavelyakov 245
				{
7786 leency 246
					if (files.ProcessMouse(mouse.x, mouse.y)) List_ReDraw();
9269 leency 247
					if (getElementSelectedFlag(files.cur_y) == false) unselectAll(); //on redraw selection would be flashed, see [L001]
7786 leency 248
					EventShowListMenu();
249
				}
250
			}
251
 
252
			if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y-17) && (mouse.y
253
			{
9602 leency 254
				if (mouse.lkm) DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,sc.dark,sc.light);
7786 leency 255
				WHILE (mouse.lkm) && (files.first>0)
5549 punk_joker 256
				{
7786 leency 257
					pause(8);
258
					files.first--;
259
					List_ReDraw();
260
					mouse.get();
5575 pavelyakov 261
				}
9602 leency 262
				DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,sc.light,sc.dark);
7786 leency 263
			}
5591 pavelyakov 264
 
7786 leency 265
			if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y+files.h-16) && (mouse.y
266
			{
9602 leency 267
				if (mouse.lkm) DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,sc.dark,sc.light);
7786 leency 268
				while (mouse.lkm) && (files.first
5575 pavelyakov 269
				{
7786 leency 270
					pause(8);
271
					files.first++;
272
					List_ReDraw();
273
					mouse.get();
5591 pavelyakov 274
				}
9602 leency 275
				DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,sc.light,sc.dark);
7786 leency 276
			}
5591 pavelyakov 277
 
7786 leency 278
			//Scrooll
9269 leency 279
			if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+18) && (mouse.y>files.y)
8947 leency 280
				&& (mouse.y
281
			if (scroll_used) && (!mouse.key&MOUSE_LEFT) { scroll_used=false; DrawScroll(scroll_used); }
9269 leency 282
 
7786 leency 283
			if (scroll_used)
284
			{
285
				if (sc_slider_h/2+files.y>mouse.y) || (mouse.y<0) || (mouse.y>4000) mouse.y=sc_slider_h/2+files.y; //anee eo?ni? iaa ieiii
286
				id = files.first;
287
				files.first = -sc_slider_h / 2 + mouse.y -files.y * files.count;
288
				files.first /= files.h - 18;
289
				if (files.visible+files.first>files.count) files.first=files.count-files.visible;
290
				if (files.first<0) files.first=0;
291
				if (id!=files.first) List_ReDraw();
292
				break;
293
			}
294
 
8902 leency 295
			if (efm) && (mouse.y < files.y + files.h) && (mouse.down) {
8872 leency 296
				if (mouse.x
8946 leency 297
					SetActivePanel(0);
8861 leency 298
				} else {
8946 leency 299
					SetActivePanel(1);
3363 leency 300
				}
7786 leency 301
			}
9269 leency 302
			break;
7786 leency 303
//Button pressed-----------------------------------------------------------------------------
304
		case evButton:
8417 leency 305
			id = GetButtonID();
3363 leency 306
 
8953 leency 307
			if (CLOSE_BTN == id) {
8872 leency 308
				KillProcess(about_thread_id);
309
				SaveIniSettings();
310
				ExitProcess();
311
			}
312
 
8953 leency 313
			if (active_popin) {
8956 leency 314
				if (POPUP_BTN2==id) { EventClosePopinForm(); break; }
315
				if (POPUP_BTN1==id) { EventPopinClickOkay(); break; }
316
 
8953 leency 317
				if (POPIN_DISK==active_popin) {
8956 leency 318
					active_popin = NULL;
319
					EventDriveClick(id-100);
320
				}
321
 
322
				if (POPIN_BREADCR==active_popin) {
323
					EventClosePopinForm();
324
					ClickOnBreadCrumb(id-BREADCRUMB_ID);
325
				}
326
 
9269 leency 327
				break;
7786 leency 328
			}
5719 leency 329
 
9269 leency 330
			switch(id)
7786 leency 331
			{
8854 leency 332
				case KFM_DEV_DROPDOWN_1:
333
				case KFM_DEV_DROPDOWN_2:
8953 leency 334
						ShowPopinForm(POPIN_DISK);
7786 leency 335
						break;
8854 leency 336
				case BACK_BTN...PASTE_BTN:
337
						EventToolbarButtonClick(id);
7786 leency 338
						break;
8953 leency 339
				case BTN_PATH:
340
				case BTN_PATH+1:
341
						ShowPopinForm(POPIN_PATH);
342
						break;
343
				case BTN_BREADCRUMB:
344
				case BTN_BREADCRUMB+1:
345
						ShowPopinForm(POPIN_BREADCR);
346
						break;
7786 leency 347
				case 31...33:
348
						EventSort(id-30);
349
						break;
7813 leency 350
				case 51:
351
						EventShowBurgerMenu();
352
						break;
353
				case 52...60: //Actions
7786 leency 354
						FnProcess(id-50);
355
						break;
8953 leency 356
				case 100...120:
8956 leency 357
						EventDriveClick(id-100);
7786 leency 358
						break;
8881 leency 359
				case KFM_FUNC_ID...KFM_FUNC_ID+10:
8953 leency 360
						FnProcess(id-KFM_FUNC_ID);
361
						break;
7786 leency 362
			}
363
			break;
9269 leency 364
 
7786 leency 365
//Key pressed-----------------------------------------------------------------------------
366
		case evKey:
367
			GetKeys();
7398 leency 368
 
8946 leency 369
			if (Form.status_window&ROLLED_UP) break;
7786 leency 370
 
8953 leency 371
			if (active_popin)
7786 leency 372
			{
8861 leency 373
				if (key_scancode == SCAN_CODE_ESC) EventClosePopinForm();
374
 
8953 leency 375
				if (POPIN_DISK == active_popin) {
9269 leency 376
					if (key_scancode >= SCAN_CODE_1)
8956 leency 377
						&& (key_scancode <= SCAN_CODE_10) {
378
							EventDriveClick(key_scancode-2);
8953 leency 379
						}
380
				} else {
381
					if (key_scancode == SCAN_CODE_ENTER) EventPopinClickOkay();
382
					if (popin_string[0] != -1) {
383
						EAX = key_editbox;
384
						edit_box_key stdcall (#popin_text);
9269 leency 385
					}
7398 leency 386
				}
7786 leency 387
				break;
388
			}
7398 leency 389
 
9341 leency 390
			if (key_modifier&KEY_LSHIFT) || (key_modifier&KEY_RSHIFT)
391
			{
8417 leency 392
				if (key_scancode == SCAN_CODE_ENTER) {
9269 leency 393
					EventOpenSelected();
8417 leency 394
					break;
395
				}
7993 leency 396
				old_cur_y = files.cur_y;
397
				files.ProcessKey(key_scancode);
398
				EventChooseFilesRange(old_cur_y, files.cur_y);
7989 leency 399
				break;
400
			}
401
 
7786 leency 402
			if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL)
403
			{
404
				switch(key_scancode)
5591 pavelyakov 405
				{
7786 leency 406
					case SCAN_CODE_F1...SCAN_CODE_F3:
407
							EventSort(key_scancode - 58);
7422 leency 408
							break;
8953 leency 409
					case SCAN_CODE_1...SCAN_CODE_2:
410
							if (efm) {
411
								active_panel = key_scancode - SCAN_CODE_1;
412
								ShowPopinForm(POPIN_DISK);
413
								break;
414
							}
415
					case SCAN_CODE_3...SCAN_CODE_10:
7786 leency 416
							key_scancode-=2;
417
							if (key_scancode >= SystemDiscs.list.count) break;
8861 leency 418
							if (!efm) {
8956 leency 419
								DrawRectangle(17,key_scancode*17+74,159,17, 0); //display click
9269 leency 420
								pause(7);
5591 pavelyakov 421
							}
8956 leency 422
							EventDriveClick(key_scancode);
5591 pavelyakov 423
							break;
7786 leency 424
					case SCAN_CODE_KEY_X:
8861 leency 425
							CopyFilesListToClipboard(CUT);
9269 leency 426
							break;
7786 leency 427
					case SCAN_CODE_KEY_C:
8861 leency 428
							CopyFilesListToClipboard(COPY);
3363 leency 429
							break;
7813 leency 430
					case SCAN_CODE_KEY_G:
431
							EventOpenConsoleHere();
432
							break;
7786 leency 433
					case SCAN_CODE_KEY_V:
8949 leency 434
							EventPaste(path);
3363 leency 435
							break;
9356 leency 436
					case SCAN_CODE_KEY_S: //set image as bg tile
437
							sprintf(#temp, "\\S__%s",#file_path);
7786 leency 438
							RunProgram("/sys/media/kiv", #temp);
5512 punk_joker 439
							break;
9356 leency 440
					case SCAN_CODE_KEY_T: //set image as bg stretch
441
							sprintf(#temp, "\\T__%s",#file_path);
442
							RunProgram("/sys/media/kiv", #temp);
443
							break;
7813 leency 444
					case SCAN_CODE_KEY_N:
445
							EventOpenNewEolite();
9269 leency 446
							break;
8854 leency 447
					case SCAN_CODE_KEY_R:
8947 leency 448
							EventManualFolderRefresh();
8854 leency 449
							break;
7786 leency 450
					case SCAN_CODE_ENTER:
451
							if (!itdir) ShowOpenWithDialog();
8417 leency 452
							else EventOpen(1);
5512 punk_joker 453
							break;
7786 leency 454
					case SCAN_CODE_KEY_A:
7993 leency 455
							EventChooseAllFiles(true);
7386 pavelyakov 456
							break;
7786 leency 457
					case SCAN_CODE_KEY_U: //unselect all files
7993 leency 458
							EventChooseAllFiles(false);
7786 leency 459
							break;
5591 pavelyakov 460
				}
461
				break;
9341 leency 462
			}
9347 leency 463
 
464
			switch (calc(key_scancode))
7786 leency 465
			{
466
					case SCAN_CODE_BS:
467
							Dir_Up();
9269 leency 468
							break;
7786 leency 469
					case SCAN_CODE_ENTER:
8417 leency 470
							EventOpen(0);
9269 leency 471
							break;
7786 leency 472
					case SCAN_CODE_TAB:
8854 leency 473
							if (!efm) break;
8946 leency 474
							SetActivePanel(active_panel^1);
7786 leency 475
							break;
476
					case SCAN_CODE_MENU:
477
							mouse.x = files.x+15;
478
							mouse.y = files.cur_y - files.first * files.item_h + files.y + 5;
479
							EventShowListMenu();
480
							break;
481
					case SCAN_CODE_DEL:
8953 leency 482
							ShowPopinForm(POPIN_DELETE);
7786 leency 483
							break;
8872 leency 484
					case SCAN_CODE_SPACE:
485
							EventChooseFile(files.cur_y);
486
							DrawStatusBar();
487
							Line_ReDraw(col.selec, files.cur_y);
488
							break;
7786 leency 489
					case SCAN_CODE_INS:
7989 leency 490
							EventChooseFile(files.cur_y);
7786 leency 491
							files.KeyDown();
7999 leency 492
							DrawStatusBar();
7786 leency 493
							List_ReDraw();
494
							break;
8780 leency 495
					case SCAN_CODE_F1...SCAN_CODE_F10:
7786 leency 496
							FnProcess(key_scancode-58);
9269 leency 497
							break;
9341 leency 498
					case SCAN_CODE_DOWN:
499
					case SCAN_CODE_UP:
500
					case SCAN_CODE_HOME:
501
					case SCAN_CODE_END:
502
					case SCAN_CODE_PGUP:
503
					case SCAN_CODE_PGDN:
504
							if (files.ProcessKey(key_scancode)) List_ReDraw();
505
							break;
7786 leency 506
					default:
507
							EventSelectFileByKeyPress();
9269 leency 508
			}
8861 leency 509
			break;
7786 leency 510
		case evIPC:
511
		case evReDraw:
512
			draw_window();
513
			if (CheckActiveProcess(Form.ID)) && (GetMenuClick()) break;
8861 leency 514
			break;
7786 leency 515
		default:
9689 leency 516
			if (!Form.status_window&ROLLED_UP)
517
			&& (ESBYTE[path+1]!='f') && (ESBYTE[path+1]!='c') {
518
				EventRefreshDisksAndFolders();
519
			}
5576 pavelyakov 520
	}
9269 leency 521
 
7786 leency 522
	if(cmd_free)
523
	{
524
		if(cmd_free==2) about_stak=free(about_stak);
525
		else if(cmd_free==3) properties_stak=free(properties_stak);
526
		else if(cmd_free==4) settings_stak=free(settings_stak);
527
		cmd_free = false;
528
	}
3363 leency 529
}
530
 
3444 leency 531
void draw_window()
532
{
8854 leency 533
	dword i=0;
8764 leency 534
	incn x;
8854 leency 535
	dword title;
8947 leency 536
	static int rand_n;
9269 leency 537
	if (!rand_n) rand_n = random(80);
8947 leency 538
 
8872 leency 539
	if (show_status_bar.checked) {
8952 leency 540
		#define STBAR_EOLITE_H 16
541
		#define STBAR_KFM_H 21
8881 leency 542
		if (efm) status_bar_h = STBAR_KFM_H;
543
		else status_bar_h = STBAR_EOLITE_H;
8872 leency 544
	} else {
545
		status_bar_h = 0;
546
	}
8861 leency 547
	if (efm) title = TITLE_KFM; else title = TITLE_EOLITE;
8854 leency 548
	DefineAndDrawWindow(Form.left+rand_n,Form.top+rand_n,Form.width,Form.height,0x73,NULL,title,0);
3444 leency 549
	GetProcessInfo(#Form, SelfInfo);
8946 leency 550
	if (Form.status_window&ROLLED_UP) return;
8854 leency 551
	if (Form.height < 356) { MoveSize(OLD,OLD,OLD,356); return; }
7490 leency 552
	GetProcessInfo(#Form, SelfInfo);
7635 leency 553
	SetAppColors();
8854 leency 554
	if (efm) {
9597 leency 555
		if (screen.w > 693) && (Form.width < 693) { MoveSize(OLD,OLD,693,OLD); return; }
8952 leency 556
		DrawBar(0, 4, Form.cwidth, SELECTY-5, sc.work);
557
		DrawBar(0, SELECTY+KFM2_DEVH+1, Form.cwidth, 3, sc.work);
558
		DrawBar(0, SELECTY-1, 1, KFM2_DEVH+2, sc.work);
559
		DrawBar(Form.cwidth-1, SELECTY-1, 1, KFM2_DEVH+2, sc.work);
8953 leency 560
		DrawBar(Form.cwidth/2-16, SELECTY-1, 15, KFM2_DEVH+2, sc.work);
8952 leency 561
		/*
8764 leency 562
		#define PAD 7
563
		#define GAP_S 26+5
564
		#define GAP_B 26+14
8854 leency 565
		x.set(Form.cwidth/2-DDW-203/2-GAP_S);
566
		while (i<200) {
567
			DrawTopPanelButton(i+BACK_BTN, x.inc(GAP_S), PAD, 30, false);
568
			DrawTopPanelButton(i+FWRD_BTN, x.inc(GAP_S), PAD, 31, false);
569
			DrawTopPanelButton(i+GOUP_BTN, x.inc(GAP_B), PAD, 01, false);
570
			DrawTopPanelButton(i+COPY_BTN, x.inc(GAP_B), PAD, 55, false);
571
			DrawTopPanelButton(i+CUT_BTN,  x.inc(GAP_S), PAD, 20, false);
572
			DrawTopPanelButton(i+PASTE_BTN,x.inc(GAP_S), PAD, 56, false);
573
			x.set(Form.cwidth/2-DDW-203/2-GAP_S+calc(Form.cwidth/2));
574
			i+=100;
575
		}
576
		//DrawTopPanelButton(51, Form.cwidth-GAP_S-PAD, PAD, -1, false); //burger menu
8952 leency 577
		*/
8764 leency 578
	} else {
579
		if (Form.width < 480) { MoveSize(OLD,OLD,480,OLD); return; }
580
		ESDWORD[#toolbar_pal] = sc.work;
581
		ESDWORD[#toolbar_pal+4] = MixColors(0, sc.work, 35);
9269 leency 582
		PutPaletteImage(#toolbar, 246, 34, 0, 0, 8, #toolbar_pal);
8861 leency 583
		for (i=0; i<3; i++) DefineHiddenButton(toolbar_buttons_x[i]+2,7,31-5,29-5,BACK_BTN+i);
584
		for (i=3; i<6; i++) DefineHiddenButton(toolbar_buttons_x[i],  5,31,  29,  BACK_BTN+i);
9602 leency 585
		DrawBar(127, 8, 1, 25, sc.line);
8764 leency 586
		DrawBar(246,0, Form.cwidth - 246, 34, sc.work);
587
		DrawDot(Form.cwidth-17,12);
588
		DrawDot(Form.cwidth-17,12+6);
589
		DrawDot(Form.cwidth-17,12+12);
590
		DefineHiddenButton(Form.cwidth-24,7,20,25,51+BT_NOFRAME); //dots
591
	}
3434 leency 592
	//main rectangles
9602 leency 593
	DrawRectangle(1,40,Form.cwidth-3,Form.cheight - 42-status_bar_h,sc.line);
9516 leency 594
	DrawBar(0,39,1,-show_status_bar.checked*status_bar_h + Form.cheight - 40, sc.work);
595
	EBX = Form.cwidth-1 * 65536 + 1;
596
	$int 64
9602 leency 597
	for (i=0; i<6; i++) DrawBar(0, 34+i, Form.cwidth, 1, MixColors(sc.dark, sc.work, i*10));
598
	for (i=0; i<6; i++) DrawBar(0, 5-i, Form.cwidth, 1, MixColors(sc.light, sc.work, i*10));
5733 leency 599
	llist_copy(#files_active, #files);
6564 leency 600
	DrawStatusBar();
8983 leency 601
	if (!getSelectedCount()) {
9269 leency 602
		OpenDir(ONLY_OPEN); //if there are no selected files -> refresh folder [L001]
8952 leency 603
	}
5723 leency 604
	DrawFilePanels();
8956 leency 605
 
606
	if (files.x!=files_inactive.x) {
607
		if (active_popin) ShowPopinForm(active_popin);
608
	}
5723 leency 609
}
610
 
9269 leency 611
void DrawButtonsAroundList()
5723 leency 612
{
5733 leency 613
	word sorting_arrow_x;
7490 leency 614
	dword sorting_arrow_t = "\x19";
615
	if (sort_desc) sorting_arrow_t = "\x18";
8764 leency 616
	DrawFlatButtonSmall(files.x - efm,           files.y-17,files.w-141+efm,16,31,T_FILE);
6678 leency 617
	DrawFlatButtonSmall(files.x + files.w - 141, files.y-17,73,16,32,T_TYPE);
618
	DrawFlatButtonSmall(files.x + files.w -  68, files.y-17,68,16,33,T_SIZE);
619
	DrawFlatButtonSmall(files.x + files.w,       files.y-17,16,16, 0,"\x18");
620
	DrawFlatButtonSmall(files.x + files.w,files.y+files.h-16,16,16,0,"\x19");
7490 leency 621
	if (sort_type==1) sorting_arrow_x = files.w - 141 / 2 + files.x + 18;
622
	if (sort_type==2) sorting_arrow_x = files.x + files.w - 90;
623
	if (sort_type==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
7806 leency 624
	WriteText(sorting_arrow_x,files.y-12,0x80, sc.work_text, sorting_arrow_t);
9602 leency 625
	DrawBar(files.x+files.w,files.y,1,files.h,sc.line);
8949 leency 626
	if (efm) && (files.x<5) {
627
		DrawBar(files.x+files.w+16,files.y,1,files.h,EDX); //line between panel
628
	}
5723 leency 629
}
630
 
8881 leency 631
void DrawFuncButtonsInKfm()
632
{
633
	int i, x=0, len, min_w=0, padding;
8927 leency 634
	for (i=0; i<10; i++) min_w += strlen(kfm_func[i])+2*6 + 2;
8881 leency 635
	padding = Form.cwidth - min_w + 4 / 10;
636
	for (i=0; i<10; i++) {
8927 leency 637
		len = strlen(kfm_func[i])+2*6 + padding;
8881 leency 638
		if (i==9) len = Form.cwidth - x - 3;
8949 leency 639
		DrawBar(x, Form.cheight - 19, 1, 17, sc.work);
8927 leency 640
		DrawFuncButton(x+1, Form.cheight - 19, len, i+KFM_FUNC_ID+1, i+1, kfm_func[i]);
8881 leency 641
		x += len + 2;
642
	}
643
}
644
 
6404 punk_joker 645
void DrawStatusBar()
646
{
6572 leency 647
	char status_bar_str[80];
6570 leency 648
	int go_up_folder_exists=0;
9516 leency 649
	dword topcolor;
8854 leency 650
 
9602 leency 651
	if (show_status_bar.checked) topcolor=sc.light; else topcolor=sc.work;
9516 leency 652
	DrawBar(0, Form.cheight - status_bar_h-1, Form.cwidth, 1, topcolor);
653
 
9269 leency 654
	if (efm) {
8952 leency 655
		DrawBar(0, Form.cheight - status_bar_h, Form.cwidth, 2, sc.work);
9516 leency 656
		DrawBar(0, Form.cheight - 2, Form.cwidth,  2, EDX);
657
		DrawBar(Form.cwidth-1, Form.cheight - 19, 1,  17, EDX);
8881 leency 658
		DrawFuncButtonsInKfm();
9516 leency 659
	} else if (show_status_bar.checked) {
8952 leency 660
		if (files.count>0) && (streq(items.get(0)*304+buf+72,"..")) go_up_folder_exists=1;
661
		DrawBar(0, Form.cheight - status_bar_h, Form.cwidth,  status_bar_h, sc.work);
662
		sprintf(#status_bar_str, T_STATUS_EVEMENTS, folder_count-go_up_folder_exists, files.count-folder_count);
663
		WriteText(6,Form.cheight - 13,0x80,sc.work_text,#status_bar_str);
8983 leency 664
		if (getSelectedCount()) {
665
			sprintf(#status_bar_str, T_STATUS_SELECTED, getSelectedCount());
8952 leency 666
			WriteText(Form.cwidth - calc(strlen(#status_bar_str)*6)-6,Form.cheight - 13,
667
				0x80,sc.work_text,#status_bar_str);
668
		}
8854 leency 669
	}
6404 punk_joker 670
}
671
 
5723 leency 672
void DrawFilePanels()
673
{
8949 leency 674
	int files_y = files.y;
8826 leency 675
	int w2 = -Form.cwidth-1/2+Form.cwidth;
8949 leency 676
	int h2 = Form.cheight-files_y-2 - status_bar_h;
8854 leency 677
	if (!efm)
5698 leency 678
	{
8951 leency 679
		SystemDiscs.Draw();
9349 leency 680
		files.SetSizes(SIDEBAR_W, 57, Form.cwidth - SIDEBAR_W-18, Form.cheight - 59 - status_bar_h, files.item_h);
8872 leency 681
		DrawButtonsAroundList();
682
		List_ReDraw();
8952 leency 683
		DrawPathBar();
5698 leency 684
	}
685
	else
686
	{
8952 leency 687
		llist_copy(#files_active, #files);
688
		llist_copy(#files, #files_inactive);
689
 
8951 leency 690
		if (!active_panel) {
8826 leency 691
			files.SetSizes(Form.cwidth/2, files_y, w2-17, h2, files.item_h);
8951 leency 692
		} else {
8826 leency 693
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, h2, files.item_h);
5719 leency 694
		}
8951 leency 695
 
696
		files_inactive.x = files.x;
697
		DrawButtonsAroundList();
698
		path = location[active_panel^1];
8983 leency 699
		active_panel ^= 1;
700
		OpenDir2(WITH_REDRAW);
701
		active_panel ^= 1;
702
		if (!getSelectedCount()) files_inactive.count = files.count;
8952 leency 703
		llist_copy(#files, #files_active);
8951 leency 704
 
705
		if (!active_panel) {
8826 leency 706
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, h2, files.item_h);
8951 leency 707
		} else {
8826 leency 708
			files.SetSizes(Form.cwidth/2, files_y, w2 -17, h2, files.item_h);
5719 leency 709
		}
8951 leency 710
 
711
		DrawButtonsAroundList();
712
		path = location[active_panel];
8983 leency 713
		OpenDir2(WITH_REDRAW);
5698 leency 714
	}
3363 leency 715
}
716
 
8983 leency 717
void OpenDir2(char redraw){
718
	if (buf) free(buf);
719
	if (GetDir(#buf, #files.count, path, DIRS_NOROOT)) {
720
		Write_Error(EAX);
721
		history.add(path);
722
		EventHistoryGoBack();
723
		return;
724
	}
725
	SetCurDir(path);
726
	if (files.count>0) && (files.cur_y-files.first==-1) files.cur_y=0;
727
	files.visible = math.min(files.h / files.item_h, files.count);
9269 leency 728
	if (!strncmp(path, "/rd/1",5)) || (!strncmp(path, "/sys/",4))
729
		dir_at_fat16 = true; else dir_at_fat16 = false;
8983 leency 730
	Sorting();
731
	SystemDiscs.Draw();
732
	list_full_redraw = true;
733
	List_ReDraw();
734
	DrawPathBar();
735
}
736
 
737
 
738
void OpenDir(char redraw){
739
	int errornum;
740
	unselectAll();
741
	if (buf) free(buf);
742
	if (errornum = GetDir(#buf, #files.count, path, DIRS_NOROOT)) {
743
		history.add(path);
9269 leency 744
		//EventHistoryGoBack();
745
		Dir_Up();
8983 leency 746
		Write_Error(errornum);
747
		return;
748
	}
749
	if (files.count>0) && (files.cur_y-files.first==-1) files.cur_y=0;
750
	history.add(path);
751
	SystemDiscs.Draw();
752
	files.visible = math.min(files.h / files.item_h, files.count);
9269 leency 753
	if (!strncmp(path, "/rd/1",5)) || (!strncmp(path, "/sys/",4))
754
		dir_at_fat16 = true; else dir_at_fat16 = false;
8983 leency 755
	Sorting();
756
	list_full_redraw = true;
757
	SetCurDir(path);
758
	if (redraw!=ONLY_OPEN) {
759
		List_ReDraw();
760
		DrawStatusBar();
761
		DrawPathBar();
762
	}
763
}
764
 
765
 
5694 leency 766
void List_ReDraw()
3363 leency 767
{
5719 leency 768
	int all_lines_h;
7422 leency 769
	dword j;
5825 leency 770
	static int old_cur_y, old_first;
8779 leency 771
	dword separator_color;
3363 leency 772
 
5694 leency 773
	files.CheckDoesValuesOkey(); //prevent some shit
8872 leency 774
	if (files.count < files.visible) files.visible = files.count;
3363 leency 775
 
5694 leency 776
	if (list_full_redraw) || (old_first != files.first)
3363 leency 777
	{
5825 leency 778
		old_cur_y = files.cur_y;
5694 leency 779
		old_first = files.first;
780
		list_full_redraw = false;
781
		goto _ALL_LIST_REDRAW;
3363 leency 782
	}
5825 leency 783
	if (old_cur_y != files.cur_y)
3363 leency 784
	{
7634 leency 785
		if (old_cur_y-files.first
786
		Line_ReDraw(col.selec, files.cur_y-files.first);
5825 leency 787
		old_cur_y = files.cur_y;
5694 leency 788
		return;
3363 leency 789
	}
790
 
5694 leency 791
	_ALL_LIST_REDRAW:
3363 leency 792
 
7634 leency 793
	for (j=0; j
9269 leency 794
		if (files.cur_y-files.first!=j) Line_ReDraw(col.list_bg, j);
795
		else Line_ReDraw(col.selec, files.cur_y-files.first);
7634 leency 796
	}
3434 leency 797
	//in the bottom
5825 leency 798
	all_lines_h = j * files.item_h;
7634 leency 799
	DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h, col.list_bg);
8779 leency 800
	if (colored_lines.checked) separator_color = col.list_bg; else separator_color = col.list_vert_line;
801
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
802
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h, separator_color);
8947 leency 803
	DrawScroll(scroll_used);
3363 leency 804
}
805
 
9528 leency 806
void Line_ReDraw(dword bgcol, signed filenum){
7634 leency 807
	dword text_col=col.list_gb_text,
5991 leency 808
		  ext1, attr,
809
		  file_name_off,
7515 leency 810
		  file_size=0,
6290 leency 811
		  y=filenum*files.item_h+files.y,
8762 leency 812
		  icon_y = files.item_h-icon_size/2+y;
5991 leency 813
		  BDVK file;
7921 leency 814
		  char full_path[4096];
8779 leency 815
		  dword separator_color;
8949 leency 816
		  bool current_inactive = false;
9277 leency 817
		  char volume_label[64] = 0;
5996 leency 818
	char label_file_name[4096];
9528 leency 819
	if (filenum<0) return; //if hold lkm and scroll down by mouse wheel this may be the case
8779 leency 820
 
8949 leency 821
	if (bgcol==col.selec) && (files.x==files_inactive.x) {
822
		bgcol = col.list_bg;
823
		current_inactive = true;
824
	}
825
 
7054 leency 826
	DrawBar(files.x,y,4,files.item_h,bgcol);
7197 leency 827
	DrawBar(files.x+4,y,icon_size,icon_y-y,bgcol);
8953 leency 828
	if (files.item_h>icon_size) DrawBar(files.x+4,icon_y+icon_size,icon_size,y+files.item_h-icon_y-icon_size,bgcol);
8779 leency 829
	if (colored_lines.checked) {
830
		if (bgcol!=col.selec) && (filenum%2) bgcol=col.odd_line;
831
		separator_color = bgcol;
832
	} else {
833
		separator_color = col.list_vert_line;
834
	}
7422 leency 835
	DrawBar(files.x+icon_size+4,y,files.w-icon_size-4,files.item_h,bgcol);
8779 leency 836
	DrawBar(files.x+files.w-141,y,1,files.item_h, separator_color);
837
	DrawBar(files.x+files.w-68,y,1,files.item_h, separator_color);
3363 leency 838
 
8949 leency 839
	ESI = items.get(filenum+files.first)*304 + buf+32;
840
	attr = ESDWORD[ESI];
9275 leency 841
	file.sizelo   = ESI.BDVK.sizelo;
842
	file.sizehi   = ESI.BDVK.sizehi;
843
	file_name_off = #ESI.BDVK.name;
9277 leency 844
	sprintf(#full_path,"%s/%s",path,file_name_off);
3363 leency 845
 
8949 leency 846
	if (attr&ATR_FOLDER)
9269 leency 847
	{
8949 leency 848
		if (!strcmp(file_name_off,"..")) ext1=""; else {
849
			ext1="";
850
			WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, col.list_gb_text, ext1);
851
		}
9269 leency 852
		if (chrnum(path, '/')==1) && (streq(path, "/kolibrios")==false)
9277 leency 853
			&& (streq(path, "/sys")==false) {
854
				file_size = GetDeviceSize(#full_path);
855
				if (ESBYTE[path+1]) strlcpy(#volume_label, GetVolumeLabel(#full_path), sizeof(volume_label));
856
			}
8949 leency 857
	}
858
	else
859
	{
5698 leency 860
		ext1 = strrchr(file_name_off,'.') + file_name_off;
7515 leency 861
		if (ext1==file_name_off) ext1 = NULL; //if no extension then show nothing
862
		file_size = ConvertSize64(file.sizelo, file.sizehi);
7634 leency 863
		if (ext1) && (strlen(ext1)<9) WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, col.list_gb_text, ext1);
3363 leency 864
	}
9269 leency 865
	if (file_size) WriteText(7-strlen(file_size)*6+files.x+files.w-58,
7634 leency 866
			files.text_y+y+1, files.font_type, col.list_gb_text, file_size);
4846 leency 867
 
8949 leency 868
	if (attr&ATR_HIDDEN) || (attr&ATR_SYSTEM) text_col=col.list_text_hidden;
7634 leency 869
	if (bgcol==col.selec)
3363 leency 870
	{
7628 leency 871
		file_name_is_8_3(file_name_off);
8944 leency 872
		itdir = attr & ATR_FOLDER;
4897 leency 873
		strcpy(#file_name, file_name_off);
8949 leency 874
		if (streq(path,"/")) sprintf(#file_path,"%s%s",path,file_name_off);
875
			else sprintf(#file_path,"%s/%s",path,file_name_off);
7634 leency 876
		if (text_col==col.list_text_hidden) {
9269 leency 877
			text_col=MixColors(col.selec_text, col.list_text_hidden, 65);
7634 leency 878
		} else text_col=col.selec_text;
3363 leency 879
	}
8983 leency 880
	if (getElementSelectedFlag(filenum+files.first)) text_col=0xFF0000;
6806 leency 881
	if (kfont.size.pt==9) || (!kfont.font)
3434 leency 882
	{
5745 leency 883
		if (Form.width>=480)
884
		{
8789 leency 885
			FileShow.start_x = files.x + icon_size + 7;
5745 leency 886
			FileShow.font_color = text_col;
887
			FileShow.area_size_x = files.w - 164;
888
			FileShow.text_pointer = file_name_off;
7004 leency 889
			FileShow.start_y = files.text_y + y - 3;
5745 leency 890
			PathShow_prepare stdcall(#FileShow);
891
			PathShow_draw stdcall(#FileShow);
9269 leency 892
		}
3434 leency 893
	}
5745 leency 894
	else
895
	{
9277 leency 896
		//that shit must be in a library
5996 leency 897
		strcpy(#label_file_name, file_name_off);
9277 leency 898
		if (volume_label) sprintf(#label_file_name, "%s [%s]", file_name_off, #volume_label);
6806 leency 899
		if (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w)
5996 leency 900
		{
6806 leency 901
			while (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w) {
5996 leency 902
				ESBYTE[#label_file_name+strlen(#label_file_name)-1] = NULL;
903
			}
9269 leency 904
			strcpy(#label_file_name+strlen(#label_file_name)-2, "...");
5996 leency 905
		}
9269 leency 906
		kfont.WriteIntoWindow(files.x + icon_size+7, files.item_h - kfont.height / 2 + y,
7634 leency 907
			bgcol, text_col, kfont.size.pt, #label_file_name);
5745 leency 908
	}
8779 leency 909
	DrawIconByExtension(#full_path, ext1, files.x+4, icon_y, bgcol);
8953 leency 910
	if (current_inactive) DrawWideRectangle(files.x+2, y, files.w-4, files.item_h, 2, col.selec);
3363 leency 911
}
912
 
913
inline Sorting()
914
{
7490 leency 915
	dword d=0, f=1;
7422 leency 916
	int j=0;
4897 leency 917
	dword file_off;
7422 leency 918
 
7972 leency 919
	items.drop();
920
 
8949 leency 921
	if (streq(path,"/")) //do not sort root folder
3363 leency 922
	{
7972 leency 923
		for(d=1;d
8947 leency 924
		folder_count = d;
3363 leency 925
		return;
926
	}
5591 pavelyakov 927
	for (j=files.count-1, file_off=files.count-1*304+buf+32; j>=0; j--, file_off-=304;)  //files | folders
3363 leency 928
	{
7628 leency 929
		if (dir_at_fat16) && (file_name_is_8_3(file_off+40)) strttl(file_off+40);
8944 leency 930
		if (ESDWORD[file_off] & ATR_FOLDER) {
7972 leency 931
			items.set(d, j);
7490 leency 932
			d++;
8944 leency 933
		} else {
7972 leency 934
			items.set(files.count-f, j);
7490 leency 935
			f++;
3363 leency 936
		}
937
	}
8947 leency 938
	folder_count = d;
3434 leency 939
	//sorting: files first, then folders
7490 leency 940
	Sort_by_Name(0,d-1);
941
	if (sort_type==1) Sort_by_Name(d,files.count-1);
942
	else if (sort_type==2) Sort_by_Type(d,files.count-1);
943
	else if (sort_type==3) Sort_by_Size(d,files.count-1);
944
	//reversed sorting
945
	if (sort_desc) {
7972 leency 946
		for (j=0; j
947
			items.swap(files.count-j-1, d+j);
948
		}
949
		//if (sort_type==1) for (j=0; j
7490 leency 950
	}
5581 leency 951
	//make ".." first item in list
7972 leency 952
	if (d>0) && (strncmp(items.get(0)*304+buf+72,"..",2)!=0)
953
		for(d--; d>0; d--;) if (!strncmp(items.get(d)*304+buf+72,"..",2)) {items.swap(d,0); break;}
3363 leency 954
}
955
 
956
 
5694 leency 957
void SelectFileByName(dword that_file)
3363 leency 958
{
5694 leency 959
	int ind;
960
	files.KeyHome();
8956 leency 961
	OpenDir(ONLY_OPEN);
7628 leency 962
	if (dir_at_fat16) && (file_name_is_8_3(that_file)) strttl(that_file);
8392 leency 963
	for (ind=files.count-1; ind>=0; ind--;) { if (!strcmpi(items.get(ind)*304+buf+72,that_file)) break; }
5825 leency 964
	files.cur_y = ind - 1;
5694 leency 965
	files.KeyDown();
6570 leency 966
	DrawStatusBar();
3363 leency 967
	List_ReDraw();
968
}
969
 
970
 
971
void Dir_Up()
972
{
7422 leency 973
	int iii;
6635 leency 974
	char old_folder_name[4096];
8949 leency 975
	iii=strlen(path)-1;
7422 leency 976
	if (iii==0) return;
8949 leency 977
	iii = strrchr(path, '/');
978
	strcpy(#old_folder_name, path+iii);
979
	if (iii>1) ESBYTE[path+iii-1]=NULL; else ESBYTE[path+iii]=NULL;
6635 leency 980
	SelectFileByName(#old_folder_name);
8981 leency 981
	DrawPathBar();
3363 leency 982
}
983
 
8417 leency 984
void EventOpenSelected()
3434 leency 985
{
8417 leency 986
	int i;
9269 leency 987
	for (i=0; i
8417 leency 988
		EDX = items.get(i)*304 + buf+32;
8944 leency 989
		if (ESDWORD[EDX]&ATR_FOLDER) continue; //is foder
8949 leency 990
		sprintf(#param,"%s/%s",path, EDX+40);
8417 leency 991
		RunProgram("/sys/@open", #param);
992
	}
993
}
994
 
995
void EventOpen(byte _new_window)
996
{
8983 leency 997
	if (getSelectedCount()) && (!itdir) notify(T_USE_SHIFT_ENTER);
8417 leency 998
	if (_new_window)
5443 punk_joker 999
	{
8417 leency 1000
		if (streq(#file_name,"..")) return;
1001
		RunProgram(I_Path, #file_path);
5443 punk_joker 1002
		return;
1003
	}
3444 leency 1004
	if (!files.count) return;
3441 leency 1005
	if (!itdir)
3434 leency 1006
	{
5401 leency 1007
		if (strrchr(#file_name, '.')==0) RunProgram(#file_path, ""); else RunProgram("/sys/@open", #file_path);
9269 leency 1008
	}
3434 leency 1009
	else
1010
	{
5606 pavelyakov 1011
		if (!strncmp(#file_name,"..",3)) { Dir_Up(); return; }
8949 leency 1012
		strcpy(path, #file_path);
5825 leency 1013
		files.first=files.cur_y=0;
8956 leency 1014
		OpenDir(WITH_REDRAW);
3434 leency 1015
	}
1016
}
3363 leency 1017
 
8956 leency 1018
void EventHistoryGoBack()
3363 leency 1019
{
1020
	char cur_folder[4096];
8949 leency 1021
	strcpy(#cur_folder, path);
6021 leency 1022
	if (history.back()) {
8949 leency 1023
		strcpy(path, history.current());
5977 leency 1024
		SelectFileByName(#cur_folder+strrchr(#cur_folder,'/'));
8956 leency 1025
		DrawPathBar();
5977 leency 1026
	}
3363 leency 1027
}
1028
 
8956 leency 1029
void EventHistoryGoForward()
1030
{
1031
	if (history.forward()) {
1032
		strcpy(path, history.current());
1033
		files.KeyHome();
1034
		OpenDir(WITH_REDRAW);
1035
		DrawPathBar();
1036
	}
1037
}
1038
 
1039
 
5397 punk_joker 1040
void ShowOpenWithDialog()
1041
{
6930 leency 1042
	byte open_param[4097];
1043
	sprintf(#open_param,"~%s",#file_path);
1044
	RunProgram("/sys/@open", #open_param);
5397 punk_joker 1045
}
1046
 
8953 leency 1047
bool EventCreateAndRename()
5555 punk_joker 1048
{
8953 leency 1049
	sprintf(#temp,"%s/%s",path,popin_text.text);
1050
	if (file_exists(#temp)) {
1051
		notify(FS_ITEM_ALREADY_EXISTS);
1052
		return false;
1053
	}
9269 leency 1054
	switch(active_popin)
5555 punk_joker 1055
	{
8953 leency 1056
		case POPIN_NEW_FILE:
1057
				if (CreateFile(0, 0, #temp)) goto __FAIL;
1058
				break;
1059
		case POPIN_NEW_FOLDER:
1060
				if (CreateDir(#temp)) goto __FAIL;
1061
				break;
1062
		case POPIN_RENAME:
1063
				if (RenameMove(popin_text.text, #file_path))
5557 punk_joker 1064
				{
8750 leency 1065
					if (itdir) {
8953 leency 1066
						goto __FAIL;
8750 leency 1067
					} else {
8953 leency 1068
						if (CopyFile(#file_path,#temp)) {
1069
							goto __FAIL;
8750 leency 1070
						} else {
1071
							DeleteFile(#file_path);
1072
						}
5571 punk_joker 1073
					}
1074
				}
5555 punk_joker 1075
	}
8953 leency 1076
	SelectFileByName(popin_text.text);
1077
	return true;
1078
	__FAIL:
1079
	Write_Error(EAX);
9269 leency 1080
	return false;
8953 leency 1081
}
1082
 
1083
void EventPopinClickOkay()
1084
{
1085
	switch(active_popin) {
1086
		case POPIN_PATH:
1087
			strcpy(path, #popin_string);
8956 leency 1088
			OpenDir(WITH_REDRAW);
8953 leency 1089
			break;
1090
		case POPIN_DELETE:
1091
			CopyFilesListToClipboard(DELETE);
8995 leency 1092
			EventChooseAllFiles(false);
8953 leency 1093
			sprintf(#param, "-d %s", #file_path);
1094
			RunProgram(#program_path, #param);
9269 leency 1095
			break;
8953 leency 1096
		case POPIN_RENAME:
1097
		case POPIN_NEW_FILE:
1098
		case POPIN_NEW_FOLDER:
1099
			if (!EventCreateAndRename()) return;
1100
	}
7878 leency 1101
	EventClosePopinForm();
5555 punk_joker 1102
}
1103
 
8953 leency 1104
void EventClosePopinForm()
5555 punk_joker 1105
{
8953 leency 1106
	active_popin = NULL;
1107
	draw_window();
1108
}
1109
 
1110
void ShowPopinForm(byte _popin_type)
1111
{
1112
	int popinx;
1113
	popin_string[0] = -1;
1114
	switch(_popin_type) {
1115
		case POPIN_PATH:
1116
				edit_box_set_text stdcall (#popin_text, path);
1117
				DrawEolitePopup(T_GOPATH, T_CANCEL);
1118
				break;
1119
		case POPIN_NEW_FILE:
1120
				edit_box_set_text stdcall (#popin_text, T_NEW_FILE);
1121
				DrawEolitePopup(T_CREATE, T_CANCEL);
1122
				break;
1123
		case POPIN_NEW_FOLDER:
1124
				edit_box_set_text stdcall (#popin_text, T_NEW_FOLDER);
1125
				DrawEolitePopup(T_CREATE, T_CANCEL);
1126
				break;
1127
		case POPIN_RENAME:
1128
				edit_box_set_text stdcall (#popin_text, #file_name);
1129
				DrawEolitePopup(T_RENAME, T_CANCEL);
1130
				break;
1131
		case POPIN_DELETE:
1132
				if (!files.count) return;
8983 leency 1133
				if (!getSelectedCount()) && (!strncmp(#file_name,"..",2)) return;
8953 leency 1134
				popinx = DrawEolitePopup(T_YES, T_NO);
1135
				WriteTextCenter(popinx, 178, POPIN_W, sc.work_text, T_DELETE_FILE);
8983 leency 1136
				if (getSelectedCount()) {
1137
					sprintf(#param,"%s%d%s",DEL_MORE_FILES_1,getSelectedCount(),DEL_MORE_FILES_2);
8953 leency 1138
				} else {
1139
					if (strlen(#file_name)<28) {
1140
						sprintf(#param,"%s ?",#file_name);
1141
					} else {
1142
						strncpy(#param, #file_name, POPIN_W-20/6-4);
1143
						strcat(#param, "...?");
1144
					}
1145
				}
9349 leency 1146
				WriteTextCenter(popinx, SIDEBAR_W, POPIN_W, sc.work_text, #param);
8953 leency 1147
				break;
1148
		case POPIN_DISK:
8956 leency 1149
				DefineHiddenButton(0,0,5000,3000,POPUP_BTN2+BT_NOFRAME);
8953 leency 1150
				if (active_panel==0) {
1151
					SystemDiscs.DrawOptions(1);
1152
				} else {
1153
					SystemDiscs.DrawOptions(Form.cwidth/2-1);
1154
				}
1155
				break;
1156
		case POPIN_BREADCR:
8956 leency 1157
				DefineHiddenButton(0,0,5000,3000,POPUP_BTN2+BT_NOFRAME);
1158
				DrawBreadCrumbs();
8953 leency 1159
				break;
5555 punk_joker 1160
	}
8953 leency 1161
	active_popin = _popin_type;
5555 punk_joker 1162
}
1163
 
8780 leency 1164
void EventShowAbout()
1165
{
1166
	if (!active_about) {
1167
		about_stak = malloc(4096);
1168
		about_thread_id = CreateThread(#about_dialog,about_stak+4092);
1169
	} else {
1170
		ActivateWindow(GetProcessSlot(about_thread_id));
1171
	}
1172
}
1173
 
5576 pavelyakov 1174
void FnProcess(byte N)
3434 leency 1175
{
1176
	switch(N)
1177
	{
1178
		case 1:
8780 leency 1179
			EventShowProperties();
3434 leency 1180
			break;
1181
		case 2:
8953 leency 1182
			if (files.count) ShowPopinForm(POPIN_RENAME);
3434 leency 1183
			break;
1184
		case 3:
9573 vitalkrilo 1185
			if (files.count) && (!itdir) RunProgram("/kolibrios/utils/quark", #file_path);
3434 leency 1186
			break;
1187
		case 4:
8780 leency 1188
			if (files.count) && (!itdir) RunProgram("/sys/develop/cedit", #file_path);
3434 leency 1189
			break;
8854 leency 1190
		case 5:
1191
			if (efm) {
8861 leency 1192
				CopyFilesListToClipboard(COPY);
8949 leency 1193
				EventPaste(location[active_panel^1]);
8779 leency 1194
			} else {
8947 leency 1195
				EventManualFolderRefresh();
5719 leency 1196
			}
3434 leency 1197
			break;
1198
		case 6:
8854 leency 1199
			if (efm) {
8861 leency 1200
				CopyFilesListToClipboard(CUT);
8995 leency 1201
				EventChooseAllFiles(false);
8949 leency 1202
				EventPaste(location[active_panel^1]);
8854 leency 1203
			}
3434 leency 1204
			break;
1205
		case 7:
8953 leency 1206
			ShowPopinForm(POPIN_NEW_FOLDER);
3434 leency 1207
			break;
5447 punk_joker 1208
		case 8:
8953 leency 1209
			ShowPopinForm(POPIN_DELETE);
5447 punk_joker 1210
			break;
8780 leency 1211
		case 9:
8953 leency 1212
			ShowPopinForm(POPIN_NEW_FILE);
8780 leency 1213
			break;
3434 leency 1214
		case 10: //F10
8949 leency 1215
			if (active_settings) {
1216
				ActivateWindow(GetProcessSlot(settings_window));
1217
			} else {
5576 pavelyakov 1218
				settings_stak = malloc(4096);
1219
				settings_window = CreateThread(#settings_dialog, settings_stak+4092);
5416 punk_joker 1220
			}
3434 leency 1221
			break;
1222
	}
1223
}
1224
 
8946 leency 1225
void SetActivePanel(int _active)
5738 leency 1226
{
9269 leency 1227
	if (active_panel != _active) {
8946 leency 1228
		active_panel = _active;
1229
		llist_copy(#files_active, #files_inactive);
1230
		llist_copy(#files_inactive, #files);
8949 leency 1231
		llist_copy(#files, #files_active);
1232
		path = location[active_panel];
8946 leency 1233
		DrawFilePanels();
1234
	}
5738 leency 1235
}
1236
 
7422 leency 1237
void EventSelectFileByKeyPress()
1238
{
1239
	int i;
1240
	for (i=files.cur_y+1; i
1241
	{
7972 leency 1242
		strcpy(#temp, items.get(i)*304+buf+72);
7422 leency 1243
		if (temp[0]==key_ascii) || (temp[0]==key_ascii-32)
1244
		{
1245
			files.cur_y = i - 1;
1246
			files.KeyDown();
1247
			List_ReDraw();
1248
			return;
1249
		}
1250
	}
1251
}
1252
 
8949 leency 1253
dword GetDeviceSize(dword p)
7515 leency 1254
{
1255
	BDVK bdvk;
8949 leency 1256
	if (ESBYTE[p+1] == '/') p++;
1257
	if (ESBYTE[p+1] == 'c') && (ESBYTE[p+2] == 'd')
1258
		&& (ESBYTE[p+4] == 0) return 0;
9044 leency 1259
	if (GetFileInfo(p, #bdvk)) {
1260
		return 0;
1261
	} else {
1262
		ConvertSize64(bdvk.sizelo, bdvk.sizehi);
1263
	}
7515 leency 1264
}
1265
 
7422 leency 1266
int GetRealFileCountInFolder(dword folder_path)
1267
{
1268
	int fcount;
1269
	dword countbuf;
1270
 
1271
	GetDir(#countbuf, #fcount, folder_path, DIRS_NOROOT);
1272
	if (countbuf) free(countbuf);
1273
 
1274
	return fcount;
1275
}
1276
 
1277
void EventRefreshDisksAndFolders()
1278
{
8947 leency 1279
	if(efm) {
8949 leency 1280
		if (GetRealFileCountInFolder(location[active_panel^1]) != files_inactive.count) {
8947 leency 1281
			DrawFilePanels();
1282
			return;
1283
		}
8902 leency 1284
	} else {
9689 leency 1285
		if (GetRealFileCountInFolder("/")+KolibriosMounted() != SystemDiscs.dev_num) {
8947 leency 1286
			SystemDiscs.Get();
8951 leency 1287
			SystemDiscs.Draw();
7422 leency 1288
		}
1289
	}
9689 leency 1290
	if(GetRealFileCountInFolder(path) != files.count) {
1291
		OpenDir(WITH_REDRAW);
1292
	}
7422 leency 1293
}
1294
 
8947 leency 1295
void EventManualFolderRefresh()
1296
{
1297
	Tip(56, T_DEVICES, 55, "-");
1298
	pause(10);
8951 leency 1299
	DrawFilePanels();
8947 leency 1300
}
1301
 
7628 leency 1302
void EventSort(dword id)
1303
{
1304
	char selected_filename[256];
1305
	if (sort_type == id) sort_desc ^= 1;
1306
	else sort_type = id;
1307
	strcpy(#selected_filename, #file_name);
8872 leency 1308
	DrawButtonsAroundList();
8956 leency 1309
	OpenDir(WITH_REDRAW);
7628 leency 1310
	SelectFileByName(#selected_filename);
1311
}
1312
 
7813 leency 1313
void EventOpenNewEolite()
1314
{
8949 leency 1315
	RunProgram(I_Path, path);
7813 leency 1316
}
1317
 
1318
void EventOpenConsoleHere()
1319
{
8949 leency 1320
	sprintf(#param, "pwd cd %s", path);
7813 leency 1321
	RunProgram("/sys/shell", #param);
1322
}
1323
 
7786 leency 1324
void ProceedMouseGestures()
1325
{
1326
	char stats;
1327
	signed x_old, y_old, dif_x, dif_y, adif_x, adif_y;
1328
	if (!mouse.mkm) && (stats>0) stats = 0;
1329
	if (mouse.mkm) && (!stats)
1330
	{
1331
		x_old = mouse.x;
1332
		y_old = mouse.y;
1333
		stats = 1;
1334
	}
1335
	if (mouse.mkm) && (stats==1)
1336
	{
1337
		dif_x = mouse.x-x_old;
1338
		dif_y = mouse.y-y_old;
1339
		adif_x = fabs(dif_x);
1340
		adif_y = fabs(dif_y);
9269 leency 1341
 
7786 leency 1342
		if (adif_x>adif_y) {
1343
			if (dif_x > 150) {
1344
				EventHistoryGoForward();
1345
				stats = 0;
1346
			}
1347
			if (dif_x < -150) {
1348
				EventHistoryGoBack();
1349
				stats = 0;
1350
			}
1351
		} else {
1352
			if (dif_y < -100) {
1353
				Dir_Up();
1354
				stats = 0;
1355
			}
1356
		}
1357
	}
1358
}
1359
 
8854 leency 1360
void EventPaste(dword _into_path) {
7878 leency 1361
	char paste_line[4096+6];
8854 leency 1362
	sprintf(#paste_line, "-v%i %s", cut_active, _into_path);
7878 leency 1363
	RunProgram(#program_path, #paste_line);
1364
	EventClosePopinForm();
1365
}
1366
 
1367
void EventShowProperties()
1368
char line_param[4096+5];
1369
{
8983 leency 1370
	if (!getSelectedCount()) {
7878 leency 1371
		sprintf(#line_param, "-p %s", #file_path);
1372
		RunProgram(#program_path, #line_param);
1373
	} else {
1374
		properties_stak = malloc(8096);
1375
		CreateThread(#properties_dialog, properties_stak+8092);
1376
	}
1377
}
1378
 
7989 leency 1379
void EventChooseFile(int _id)
1380
{
1381
	if (getElementSelectedFlag(_id) == true) {
1382
		setElementSelectedFlag(_id, false);
1383
	} else {
1384
		setElementSelectedFlag(_id, true);
1385
	}
7993 leency 1386
}
1387
 
1388
void EventChooseFilesRange(int _start, _end)
1389
{
1390
	if (_start > _end) _start >< _end;
1391
	if (_end - _start > 1) list_full_redraw = true;
1392
	while (_start < _end) {
9269 leency 1393
		EventChooseFile(_start);
7993 leency 1394
		_start++;
1395
	}
7989 leency 1396
	DrawStatusBar();
7993 leency 1397
	List_ReDraw();
7989 leency 1398
}
1399
 
7993 leency 1400
void EventChooseAllFiles(dword state)
1401
{
1402
	int i;
1403
	for (i=0; i
1404
	List_ReDraw();
1405
	DrawStatusBar();
1406
}
1407
 
8854 leency 1408
void EventToolbarButtonClick(int _btid)
1409
{
1410
	switch(_btid) {
1411
		case BACK_BTN: EventHistoryGoBack(); break;
1412
		case FWRD_BTN: EventHistoryGoForward(); break;
1413
		case GOUP_BTN: Dir_Up(); break;
8861 leency 1414
		case COPY_BTN: CopyFilesListToClipboard(CUT); break;
1415
		case CUT_BTN:  CopyFilesListToClipboard(COPY); break;
9269 leency 1416
		case PASTE_BTN:EventPaste(path); break;
8854 leency 1417
	}
1418
}
7993 leency 1419
 
8854 leency 1420
void EventDriveClick(int __id)
1421
{
8956 leency 1422
	if (__id >= SystemDiscs.list.count) return;
8854 leency 1423
	if (efm) {
8956 leency 1424
		EventClosePopinForm();
8854 leency 1425
		draw_window();
1426
	}
8956 leency 1427
	strcpy(path, SystemDiscs.list.get(__id));
1428
	files.KeyHome();
9269 leency 1429
	OpenDir(WITH_REDRAW);
8854 leency 1430
}
1431
 
3363 leency 1432
stop: