Subversion Repositories Kolibri OS

Rev

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

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