Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
7202 leency 1
//Leency, Veliant, Punk_Joker, PavelYakov & KolibriOS Team 2008-2018
3363 leency 2
//GNU GPL licence.
3
 
7361 leency 4
// 70.5 - get volume info and label
5
 
4022 leency 6
#ifndef AUTOBUILD
7
#include "lang.h--"
8
#endif
9
 
3363 leency 10
//libraries
7220 leency 11
#define MEMSIZE 1024 * 720
7054 leency 12
#include "../lib/clipboard.h"
13
#include "../lib/strings.h"
14
#include "../lib/mem.h"
7219 leency 15
#include "../lib/fs.h"
7054 leency 16
#include "../lib/gui.h"
17
#include "../lib/list_box.h"
18
#include "../lib/random.h"
19
#include "../lib/kfont.h"
20
#include "../lib/collection.h"
21
#include "../lib/menu.h"
22
#include "../lib/copyf.h"
5834 pavelyakov 23
 
7054 leency 24
#include "../lib/obj/libini.h"
25
#include "../lib/obj/box_lib.h"
7230 leency 26
#include "../lib/obj/libimg.h"
7054 leency 27
 
28
#include "../lib/patterns/history.h"
29
 
3363 leency 30
//images
7054 leency 31
#include "imgs/left_p.txt"
3363 leency 32
 
6278 leency 33
//Button IDs
34
enum {
35
	POPUP_BTN1 = 201,
6289 leency 36
	POPUP_BTN2 = 202,
37
	BREADCRUMB_ID = 300
6278 leency 38
};
3444 leency 39
 
6278 leency 40
//NewElement options
41
enum {
42
	CREATE_FILE=1,
43
	CREATE_FOLDER,
44
	RENAME_ITEM
45
};
46
 
47
//OpenDir options
48
enum {
49
	ONLY_SHOW,
50
	WITH_REDRAW,
51
	ONLY_OPEN
52
};
53
 
6949 leency 54
dword col_padding, col_selec, col_lpanel, col_work, col_graph, col_list_line=0xDDD7CF;
3363 leency 55
 
3434 leency 56
int toolbar_buttons_x[7]={9,46,85,134,167,203};
3363 leency 57
 
4136 punk_joker 58
byte active_about=0;
4070 punk_joker 59
word about_window;
5416 punk_joker 60
word settings_window;
5753 leency 61
byte active_settings=0;
5606 pavelyakov 62
dword _not_draw = false;
4136 punk_joker 63
byte menu_call_mouse=0;
6403 punk_joker 64
byte exif_load=0;
4136 punk_joker 65
 
5733 leency 66
byte del_active=0;
67
byte new_element_active=0;
5698 leency 68
 
5733 leency 69
llist files, files_active, files_inactive;
3434 leency 70
 
5694 leency 71
byte list_full_redraw;
72
 
5698 leency 73
dword buf;
74
dword file_mas[6898];
75
int selected_count;
6406 punk_joker 76
int count_dir;
5698 leency 77
 
3434 leency 78
byte
3363 leency 79
	path[4096],
80
	file_path[4096],
3404 leency 81
	file_name[256],
5555 punk_joker 82
	new_element_name[256],
5698 leency 83
	temp[4096],
3441 leency 84
	itdir;
3363 leency 85
 
5719 leency 86
char active_path[4096], inactive_path[4096];
5698 leency 87
 
7202 leency 88
dword eolite_ini_path[4096];
89
_ini ini;
5441 leency 90
 
5698 leency 91
char scroll_used=false;
5695 leency 92
 
5804 punk_joker 93
dword menu_stak,about_stak,properties_stak,settings_stak,copy_stak,delete_stak;
5608 leency 94
 
3363 leency 95
proc_info Form;
7252 leency 96
int sc_slider_h;
3434 leency 97
int j, i;
4028 leency 98
int action_buf;
4863 leency 99
int rand_n;
3363 leency 100
 
6291 leency 101
char sort_num=2;
7244 leency 102
int active_panel=1;
5549 punk_joker 103
 
7054 leency 104
libimg_image icons16_default;
105
libimg_image icons16_selected;
106
 
7242 leency 107
libimg_image icons32_default;
108
libimg_image icons32_selected;
7197 leency 109
 
6564 leency 110
#define STATUS_BAR_H 16;
111
int status_bar_h = 0;
112
 
7197 leency 113
int icon_size = 16;
114
 
7252 leency 115
edit_box new_file_ed = {200,213,180,0xFFFFFF,0x94AECE,0xFFFFFF,0xFFFFFF,0x10000000,
116
	248,#new_element_name,0,100000000000010b,6,0};
7004 leency 117
PathShow_data FileShow = {0, 56,215, 8, 100, 1, 0, 0x0, 0xFFFfff, #file_name, #temp, 0};
5694 leency 118
byte cmd_free=0;
5698 leency 119
#include "include\translations.h"
5834 pavelyakov 120
 
5748 leency 121
#include "include\settings.h"
5804 punk_joker 122
#include "include\progress_dialog.h"
4042 leency 123
#include "include\copy.h"
5435 leency 124
#include "include\gui.h"
3363 leency 125
#include "include\sorting.h"
4042 leency 126
#include "include\icons.h"
3363 leency 127
#include "include\left_panel.h"
4042 leency 128
#include "include\menu.h"
6278 leency 129
#include "include\delete.h"
4042 leency 130
#include "include\about.h"
5447 punk_joker 131
#include "include\properties.h"
6289 leency 132
#include "include\breadcrumbs.h"
3363 leency 133
 
134
void main()
135
{
7375 leency 136
	bool update_files_list = false;
7314 pavelyakov 137
	dword files_count = 0;
138
	dword countPathFile = 0;
139
	dword countPathFile2 = 0;
7311 pavelyakov 140
	dword files_y = 0;
7313 pavelyakov 141
	dword countDisk = 0;
6289 leency 142
	dword id;
7313 pavelyakov 143
	dword devbuf;
5834 pavelyakov 144
	byte count_sl = 0;
5748 leency 145
	signed x_old, y_old, dif_x, dif_y, adif_x, adif_y;
6735 leency 146
	char stats;
4863 leency 147
	rand_n = random(40);
5651 pavelyakov 148
 
7313 pavelyakov 149
	devbuf = malloc(10000);
150
 
5626 leency 151
	load_dll(boxlib, #box_lib_init,0);
5991 leency 152
	load_dll(libini, #lib_init,1);
7054 leency 153
	load_dll(libio,  #libio_init,1);
154
	load_dll(libimg, #libimg_init,1);
5834 pavelyakov 155
 
7375 leency 156
	SetAppColors();
5441 leency 157
	LoadIniSettings();
6034 leency 158
	SystemDiscs.Get();
7041 leency 159
 
7054 leency 160
	Libimg_LoadImage(#icons16_default, "/sys/icons16.png");
161
	Libimg_LoadImage(#icons16_selected, "/sys/icons16.png");
7203 leency 162
	Libimg_ReplaceColor(icons16_selected.image, icons16_selected.w, icons16_selected.h, 0xffFFFfff, col_selec);
163
	Libimg_ReplaceColor(icons16_selected.image, icons16_selected.w, icons16_selected.h, 0xffCACBD6, MixColors(col_selec, 0, 200));
7054 leency 164
 
7041 leency 165
	//-p just show file/folder properties dialog
166
	if (param) && (param[0]=='-') && (param[1]=='p')
167
	{
168
		strcpy(#file_path, #param + 3);
169
		strcpy(#file_name, #param + strrchr(#param, '/'));
170
		properties_dialog();
171
		ExitProcess();
172
	}
173
 
3363 leency 174
	if (param)
175
	{
7245 leency 176
		if (strlen(#param)>1) && (param[strlen(#param)-1]=='/') param[strlen(#param)-1]=NULL; //no "/" at the end
6930 leency 177
 
178
		if (dir_exists(#param)==true)
179
		{
180
			strcpy(#path, #param);
181
		}
182
		else
183
		{
184
			notify(T_NOTIFY_APP_PARAM_WRONG);
185
		}
7041 leency 186
	}
5833 pavelyakov 187
 
5733 leency 188
	Open_Dir(#path,ONLY_OPEN);
5719 leency 189
	strcpy(#inactive_path, #path);
5733 leency 190
	llist_copy(#files_inactive, #files);
7051 leency 191
	SetEventMask(EVM_REDRAW+EVM_KEY+EVM_BUTTON+EVM_MOUSE+EVM_MOUSE_FILTER);
5591 pavelyakov 192
	loop(){
7310 pavelyakov 193
		switch(WaitEventTimeout(50))
5591 pavelyakov 194
		{
195
			case evMouse:
7051 leency 196
				if (del_active) || (Form.status_window>2) break;
197
				if (new_element_active)
5591 pavelyakov 198
				{
199
					edit_box_mouse stdcall(#new_file_ed);
200
					break;
201
				}
5549 punk_joker 202
 
5640 pavelyakov 203
				mouse.get();
5591 pavelyakov 204
 
5640 pavelyakov 205
				if (!mouse.mkm) && (stats>0) stats = 0;
5657 pavelyakov 206
				if (mouse.mkm) && (!stats)
5549 punk_joker 207
				{
5640 pavelyakov 208
					x_old = mouse.x;
209
					y_old = mouse.y;
5591 pavelyakov 210
					stats = 1;
211
				}
5640 pavelyakov 212
				if (mouse.mkm) && (stats==1)
5591 pavelyakov 213
				{
5640 pavelyakov 214
					dif_x = mouse.x-x_old;
215
					dif_y = mouse.y-y_old;
5591 pavelyakov 216
					adif_x = fabs(dif_x);
217
					adif_y = fabs(dif_y);
218
 
219
					if (adif_x>adif_y)
5549 punk_joker 220
					{
5591 pavelyakov 221
						if (dif_x > 150)
222
						{
6021 leency 223
							if (history.forward())
5591 pavelyakov 224
								{
6021 leency 225
									strcpy(#path, history.current());
5694 leency 226
									files.KeyHome();
5591 pavelyakov 227
									Open_Dir(#path,WITH_REDRAW);
228
								}
229
							stats = 0;
230
						}
231
						if (dif_x < -150)
232
						{
233
							GoBack();
234
							stats = 0;
235
						}
5549 punk_joker 236
					}
5591 pavelyakov 237
					else
5549 punk_joker 238
					{
5591 pavelyakov 239
						if (dif_y < -100)
240
						{
241
							Dir_Up();
242
							stats = 0;
243
						}
5549 punk_joker 244
					}
5591 pavelyakov 245
				}
6191 leency 246
				if (files.MouseOver(mouse.x, mouse.y))
5549 punk_joker 247
				{
6191 leency 248
					//select file
6278 leency 249
					if (mouse.key&MOUSE_LEFT) && (mouse.up)
5575 pavelyakov 250
					{
7104 leency 251
						if (files.ProcessMouse(mouse.x, mouse.y)) List_ReDraw(); else {
252
							if (mouse.y - files.y / files.item_h + files.first == files.cur_y) Open(0);
253
						}
6191 leency 254
					}
255
					//file menu
6278 leency 256
					if (mouse.key&MOUSE_RIGHT)
6191 leency 257
					{
5591 pavelyakov 258
						menu_call_mouse = 1;
6278 leency 259
						if (files.ProcessMouse(mouse.x, mouse.y)) List_ReDraw();
6973 leency 260
						if (getElementSelectedFlag(files.cur_y) == false) selected_count = 0; //on redraw selection would be flashed, see [L001]
6278 leency 261
						menu_stak = malloc(4096);
262
						CreateThread(#FileMenu,menu_stak+4092);
5591 pavelyakov 263
						break;
5575 pavelyakov 264
					}
265
				}
5591 pavelyakov 266
 
5640 pavelyakov 267
				if (mouse.vert)
5575 pavelyakov 268
				{
5640 pavelyakov 269
					if (files.MouseScroll(mouse.vert)) List_ReDraw();
5591 pavelyakov 270
					break;
271
				}
272
 
5723 leency 273
				if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y-17) && (mouse.y
5591 pavelyakov 274
				{
5723 leency 275
					if (mouse.lkm==1) DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,0xC7C7C7,0xFFFFFF);
5640 pavelyakov 276
					WHILE (mouse.lkm==1) && (files.first>0)
5575 pavelyakov 277
					{
5591 pavelyakov 278
						pause(8);
279
						files.first--;
280
						List_ReDraw();
5640 pavelyakov 281
						mouse.get();
5575 pavelyakov 282
					}
5723 leency 283
					DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,0xFFFFFF,0xC7C7C7);
5575 pavelyakov 284
				}
3363 leency 285
 
5723 leency 286
				if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y+files.h-16) && (mouse.y
3363 leency 287
				{
5723 leency 288
					if (mouse.lkm==1) DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,0xC7C7C7,0xFFFFFF);
5640 pavelyakov 289
					while (mouse.lkm==1) && (files.first
5591 pavelyakov 290
					{
291
						pause(8);
292
						files.first++;
293
						List_ReDraw();
5640 pavelyakov 294
						mouse.get();
5591 pavelyakov 295
					}
5723 leency 296
					DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,0xFFFFFF,0xC7C7C7);
3363 leency 297
				}
298
 
5591 pavelyakov 299
				//Scrooll
5695 leency 300
				if (!mouse.lkm) && (scroll_used) { scroll_used=false; Scroll(); }
5723 leency 301
				if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+18) && (mouse.y>files.y) && (mouse.y
5591 pavelyakov 302
 
303
				if (scroll_used)
3363 leency 304
				{
5640 pavelyakov 305
					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
5723 leency 306
					id = files.first;
307
					files.first = -sc_slider_h / 2 + mouse.y -j -files.y * files.count;
5743 leency 308
					files.first /= files.h - 18;
5591 pavelyakov 309
					if (files.visible+files.first>files.count) files.first=files.count-files.visible;
5743 leency 310
					if (files.first<0) files.first=0;
5591 pavelyakov 311
					if (id!=files.first) List_ReDraw();
5719 leency 312
					break;
3363 leency 313
				}
5719 leency 314
 
7244 leency 315
				if (two_panels.checked) && (mouse.y > files.y) && (mouse.down) {
5719 leency 316
					if (mouse.x
317
					{
318
						if (active_panel!=1)
319
						{
320
							active_panel = 1;
5738 leency 321
							ChangeActivePanel();
5719 leency 322
						}
323
					}
324
					else
325
					{
326
						if (active_panel!=2)
327
						{
328
							active_panel = 2;
5738 leency 329
							ChangeActivePanel();
5719 leency 330
						}
331
					}
332
				}
5591 pavelyakov 333
				break;
334
	//Button pressed-----------------------------------------------------------------------------
335
			case evButton:
6278 leency 336
				id=GetButtonID();
5591 pavelyakov 337
				switch(id)
338
				{
7054 leency 339
					case CLOSE_BTN:
6278 leency 340
							KillProcess(about_window);
341
							SaveIniSettings();
342
							ExitProcess();
5591 pavelyakov 343
					case 21: //Back
344
							GoBack();
345
							break;
346
					case 22: //Forward
6021 leency 347
							if (history.forward())
5591 pavelyakov 348
							{
6021 leency 349
								strcpy(#path, history.current());
5694 leency 350
								files.KeyHome();
5591 pavelyakov 351
								Open_Dir(#path,WITH_REDRAW);
352
							}
353
							break;
5608 leency 354
					case 23:
3363 leency 355
							Dir_Up();
356
							break;
5608 leency 357
					case 24:
3444 leency 358
							Copy(#file_path, CUT);
359
							break;
5608 leency 360
					case 25:
3444 leency 361
							Copy(#file_path, NOCUT);
3363 leency 362
							break;
5608 leency 363
					case 26:
364
							Paste();
3363 leency 365
							break;
5733 leency 366
					case 31...33: //sorting
367
							sort_num = id - 30;
368
							DrawList();
5591 pavelyakov 369
							Open_Dir(#path,WITH_REDRAW);
5512 punk_joker 370
							break;
5591 pavelyakov 371
					case 50...60: //Actions
372
							FnProcess(id-50);
5512 punk_joker 373
							break;
7386 pavelyakov 374
					case 61: // Set path as default
375
							ini.path = GetIni(#eolite_ini_path, "EOLITE.INI");
376
							ini.section = "Config";
377
							ini.SetString("DefaultPath", #path, strlen(#path));
378
							break;
5591 pavelyakov 379
					case 100...120:
6034 leency 380
						SystemDiscs.Click(id-100);
5698 leency 381
						break;
6300 punk_joker 382
					case POPUP_BTN1...POPUP_BTN2:
383
						if (del_active) Del_File(id-POPUP_BTN2);
6278 leency 384
						if (new_element_active) NewElement(id-POPUP_BTN2);
385
						DeleteButton(POPUP_BTN1);
386
						DeleteButton(POPUP_BTN2);
387
						break;
7054 leency 388
					case BREADCRUMB_ID...360:
6289 leency 389
						ClickOnBreadCrumb(id-BREADCRUMB_ID);
390
						break;
5591 pavelyakov 391
				}
392
				break;
6885 pavelyakov 393
 
5591 pavelyakov 394
	//Key pressed-----------------------------------------------------------------------------
395
			case evKey:
5706 leency 396
				GetKeys();
5698 leency 397
 
5591 pavelyakov 398
				if (Form.status_window>2) break;
399
				if (del_active)
400
				{
5706 leency 401
					if (key_scancode == SCAN_CODE_ENTER) Del_File(true);
402
					if (key_scancode == SCAN_CODE_ESC) Del_File(false);
5591 pavelyakov 403
					break;
404
				}
405
				if (new_element_active)
406
				{
5991 leency 407
					if (key_scancode == SCAN_CODE_ENTER) NewElement(true);
408
					if (key_scancode == SCAN_CODE_ESC) NewElement(false);
6641 leency 409
					EAX = key_editbox;
5591 pavelyakov 410
					edit_box_key stdcall (#new_file_ed);
411
					break;
412
				}
5706 leency 413
				if (files.ProcessKey(key_scancode))
5694 leency 414
				{
415
					List_ReDraw();
416
					break;
417
				}
5698 leency 418
 
5795 leency 419
				if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL)
5591 pavelyakov 420
				{
5706 leency 421
					switch(key_scancode)
5697 punk_joker 422
					{
5702 punk_joker 423
						case 059...068:
5706 leency 424
								key_scancode -= 59;
6034 leency 425
								if (key_scancode < SystemDiscs.list.count)
5702 punk_joker 426
								{
7244 leency 427
									if (!two_panels.checked)
5723 leency 428
									{
429
										DrawRectangle(17,key_scancode*16+74,159,16, 0); //display click
430
										pause(7);
431
									}
6034 leency 432
									SystemDiscs.Click(key_scancode);
5702 punk_joker 433
								}
434
								break;
5697 punk_joker 435
						case 45:  //Ctrl+X
436
								Copy(#file_path, CUT);
437
								break;
438
						case 46:  //Ctrl+C
439
								Copy(#file_path, NOCUT);
440
								break;
441
						case 47:  //Ctrl+V
442
								Paste();
443
								break;
444
						case 032: //Ctrl+D - set as bg
5803 leency 445
								strlcpy(#temp, "\\S__",4);
5591 pavelyakov 446
								strcat(#temp, #file_path);
447
								RunProgram("/sys/media/kiv", #temp);
448
								break;
5697 punk_joker 449
						case 049: //Ctrl+N - create new window
5591 pavelyakov 450
								if (Form.left==98) MoveSize(Form.left-20,Form.top-20,OLD,OLD);
6735 leency 451
								RunProgram(I_Path, #path);
5591 pavelyakov 452
								break;
6157 punk_joker 453
						case 050: //Ctrl+M
454
								Open_Dir(#inactive_path,WITH_REDRAW);
455
								break;
6278 leency 456
						case SCAN_CODE_ENTER: //Ctrl+Enter
5702 punk_joker 457
								if (!itdir) ShowOpenWithDialog();
458
								else Open(1);
459
								break;
5697 punk_joker 460
						case 030: //Ctrl+A - select all files
6602 leency 461
								for (i=0; i
5591 pavelyakov 462
								List_ReDraw();
6564 leency 463
								DrawStatusBar();
5591 pavelyakov 464
								break;
5697 punk_joker 465
						case 022: //Ctrl+U - unselect all files
6602 leency 466
								for (i=0; i
5591 pavelyakov 467
								selected_count = 0;
468
								List_ReDraw();
6564 leency 469
								DrawStatusBar();
5591 pavelyakov 470
								break;
5697 punk_joker 471
					}
472
					break;
473
				}
5698 leency 474
 
5706 leency 475
				switch (key_scancode)
5697 punk_joker 476
				{
5702 punk_joker 477
						case SCAN_CODE_BS:
5697 punk_joker 478
								//GoBack();
479
								Dir_Up();
480
								break;
5702 punk_joker 481
						case SCAN_CODE_ENTER:
5591 pavelyakov 482
								Open(0);
483
								break;
5738 leency 484
						case SCAN_CODE_TAB:
7244 leency 485
								if (!two_panels.checked) break;
5738 leency 486
								if (active_panel==1) active_panel=2; else active_panel=1;
487
								ChangeActivePanel();
6564 leency 488
								DrawStatusBar();
5738 leency 489
								break;
5702 punk_joker 490
						case 093: //menu
5591 pavelyakov 491
								menu_call_mouse=0;
492
								menu_stak = malloc(4096);
493
								CreateThread(#FileMenu,menu_stak+4092);
494
								break;
5702 punk_joker 495
						case SCAN_CODE_DEL:
5591 pavelyakov 496
								Del_Form();
497
								break;
5702 punk_joker 498
						case SCAN_CODE_INS:
6646 leency 499
								if (getElementSelectedFlag(files.cur_y) == true) setElementSelectedFlag(files.cur_y, false);
6602 leency 500
								else setElementSelectedFlag(files.cur_y, true);
5955 leency 501
								files.KeyDown();
502
								List_ReDraw();
6564 leency 503
								DrawStatusBar();
5591 pavelyakov 504
								break;
5702 punk_joker 505
						case 059...068: //F1-F10
5706 leency 506
								FnProcess(key_scancode-58);
5591 pavelyakov 507
								break;
5974 leency 508
						default:
5825 leency 509
								for (i=files.cur_y+1; i
5591 pavelyakov 510
								{
511
									strcpy(#temp, file_mas[i]*304+buf+72);
5706 leency 512
									if (temp[0]==key_ascii) || (temp[0]==key_ascii-32)
5591 pavelyakov 513
									{
5825 leency 514
										files.cur_y = i - 1;
5694 leency 515
										files.KeyDown();
516
										List_ReDraw();
5591 pavelyakov 517
										break;
518
									}
519
								}
520
				}
3363 leency 521
			break;
5698 leency 522
			case evIPC:
5591 pavelyakov 523
			case evReDraw:
524
				draw_window();
525
				if (action_buf)
526
				{
5804 punk_joker 527
					if (action_buf==OPERATION_END)
5698 leency 528
					{
529
						FnProcess(5);
5991 leency 530
						if (copy_stak) SelectFileByName(#copy_to+strrchr(#copy_to,'/'));
5698 leency 531
					}
532
					if (action_buf==100) Open(0);
533
					if (action_buf==201) ShowOpenWithDialog();
534
					if (action_buf==202) FnProcess(3); //F3
535
					if (action_buf==203) FnProcess(4); //F4
536
					if (action_buf==104) Copy(#file_path, NOCUT);
537
					if (action_buf==105) Copy(#file_path, CUT);
538
					if (action_buf==106) Paste();
539
					if (action_buf==207) FnProcess(2);
540
					if (action_buf==108) Del_Form();
541
					if (action_buf==109) FnProcess(5);
542
					if (action_buf==110) FnProcess(8);
5591 pavelyakov 543
					action_buf=0;
544
				}
7310 pavelyakov 545
			break;
546
			default:
7313 pavelyakov 547
 
7314 pavelyakov 548
				ReadDir(19, devbuf, "/"); // get disk
7375 leency 549
				if(countDisk != EBX) // if different then
7311 pavelyakov 550
				{
7313 pavelyakov 551
					countDisk = EBX;
552
					FnProcess(5);
7311 pavelyakov 553
				}
7314 pavelyakov 554
				else // get current files
555
				{
556
					if(two_panels.checked)
557
					{
558
						// this add code update list files
7375 leency 559
						update_files_list = false;
7314 pavelyakov 560
						//strcpy(#inactive_path,#path);
561
						ReadDir(19, devbuf, #inactive_path);
7375 leency 562
						if(countPathFile != EBX) // if different then
7314 pavelyakov 563
						{
564
							countPathFile = EBX;
7375 leency 565
							update_files_list = true;
7314 pavelyakov 566
						}
567
 
568
						//strcpy(#active_path,#path);
569
						ReadDir(19, devbuf, #active_path);
7375 leency 570
						if(countPathFile2 != EBX) // if different then
7314 pavelyakov 571
						{
572
							countPathFile2 = EBX;
7375 leency 573
							update_files_list = true;
7314 pavelyakov 574
						}
7375 leency 575
						if(update_files_list) DrawFilePanels();
7314 pavelyakov 576
					}
7375 leency 577
					else
7314 pavelyakov 578
					{
579
						ReadDir(19, devbuf, #path);
7375 leency 580
						if(countPathFile != EBX) // if different then
7314 pavelyakov 581
						{
582
							countPathFile = EBX;
583
							Open_Dir(#path,WITH_REDRAW);
584
						}
585
					}
586
				}
5591 pavelyakov 587
		}
7310 pavelyakov 588
 
589
 
590
 
5591 pavelyakov 591
		if(cmd_free)
592
		{
5991 leency 593
			if(cmd_free==1)      menu_stak=free(menu_stak);
594
			else if(cmd_free==2) about_stak=free(about_stak);
595
			else if(cmd_free==3) properties_stak=free(properties_stak);
596
			else if(cmd_free==4) settings_stak=free(settings_stak);
597
			else if(cmd_free==5) copy_stak=free(copy_stak);
598
			else if(cmd_free==6) delete_stak=free(delete_stak);
5591 pavelyakov 599
			cmd_free = false;
5576 pavelyakov 600
		}
601
	}
3363 leency 602
}
603
 
6291 leency 604
void DrawFavButton(int x)
605
{
606
	_PutImage(x,10,20,22,#fav);
7386 pavelyakov 607
	DefineButton(x+1,11,20-2,22-3,61+BT_HIDE,NULL);
6291 leency 608
}
609
 
3444 leency 610
void draw_window()
611
{
7244 leency 612
	if (show_status_bar.checked) status_bar_h = STATUS_BAR_H; else status_bar_h = 0;
7278 leency 613
	DefineAndDrawWindow(Form.left+rand_n,Form.top+rand_n,Form.width,Form.height,0x73,NULL,TITLE,0);
3444 leency 614
	GetProcessInfo(#Form, SelfInfo);
615
	if (Form.status_window>2) return;
5811 leency 616
	if (Form.height < 350) { MoveSize(OLD,OLD,OLD,350); return; }
617
	if (Form.width  < 480) { MoveSize(OLD,OLD,480,OLD); return; }
3444 leency 618
	GetProcessInfo(#Form, SelfInfo); //if win_size changed
6291 leency 619
	_PutImage(0,0,246,34,#toolbar);
6191 leency 620
	DrawBar(127, 8, 1, 25, col_graph);
621
	for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,NULL);
622
	for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,NULL);
6289 leency 623
	DrawBar(246,0, Form.cwidth - 246, 34, col_work);
6291 leency 624
	_PutImage(Form.cwidth-17,11,6,18,#dots);
625
	DefineButton(Form.cwidth-24,7,20,25,51+BT_HIDE+BT_NOFRAME,0); //dots
3434 leency 626
	//main rectangles
6564 leency 627
	DrawRectangle(1,40,Form.cwidth-3,Form.cheight - 42-status_bar_h,col_graph);
5698 leency 628
	DrawRectangle(0,39,Form.cwidth-1,Form.cheight - 40,col_palette[4]); //bg
5723 leency 629
	for (i=0; i<5; i++) DrawBar(0, 34+i, Form.cwidth, 1, col_palette[8-i]);
5733 leency 630
	llist_copy(#files_active, #files);
5723 leency 631
	strcpy(#active_path, #path);
6564 leency 632
	DrawStatusBar();
6973 leency 633
	if (selected_count==0) Open_Dir(#path,ONLY_OPEN); //if there are no selected files -> refresh folder [L001]
5723 leency 634
	DrawFilePanels();
635
	if (del_active) Del_Form();
636
	if (new_element_active) NewElement_Form(new_element_active, #new_element_name);
637
}
638
 
639
void DrawList()
640
{
5733 leency 641
	word sorting_arrow_x;
6678 leency 642
	DrawFlatButtonSmall(files.x, files.y-17,     files.w - 141,16,31,T_FILE);
643
	DrawFlatButtonSmall(files.x + files.w - 141, files.y-17,73,16,32,T_TYPE);
644
	DrawFlatButtonSmall(files.x + files.w -  68, files.y-17,68,16,33,T_SIZE);
645
	DrawFlatButtonSmall(files.x + files.w,       files.y-17,16,16, 0,"\x18");
646
	DrawFlatButtonSmall(files.x + files.w,files.y+files.h-16,16,16,0,"\x19");
5733 leency 647
	if (sort_num==1) sorting_arrow_x = files.w - 141 / 2 + files.x + 18;
648
	if (sort_num==2) sorting_arrow_x = files.x + files.w - 90;
649
	if (sort_num==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
6191 leency 650
	WriteText(sorting_arrow_x,files.y-12,0x80,col_graph,"\x19");
651
	DrawBar(files.x+files.w,files.y,1,files.h,col_graph);
7244 leency 652
	if (two_panels.checked) && (files.x<5) DrawBar(files.x+files.w+16,files.y,1,files.h,col_graph);
5723 leency 653
}
654
 
6404 punk_joker 655
void DrawStatusBar()
656
{
6572 leency 657
	char status_bar_str[80];
6570 leency 658
	int go_up_folder_exists=0;
7244 leency 659
	if (!show_status_bar.checked) return;
6604 leency 660
	if (files.count>0) && (strcmp(file_mas[0]*304+buf+72,"..")==0) go_up_folder_exists=1;
6783 leency 661
	DrawBar(1, Form.cheight - status_bar_h-1, Form.cwidth-2,  status_bar_h, system.color.work);
6570 leency 662
	sprintf(#status_bar_str, STATUS_STR, files.count-go_up_folder_exists, count_dir-go_up_folder_exists, files.count-count_dir, selected_count);
6783 leency 663
	WriteText(6,Form.cheight - 13,0x80,system.color.work_text,#status_bar_str);
6404 punk_joker 664
}
665
 
5723 leency 666
void DrawFilePanels()
667
{
6034 leency 668
	int files_y;
7244 leency 669
	if (!two_panels.checked)
5698 leency 670
	{
5723 leency 671
		DrawDeviceAndActionsLeftPanel();
6564 leency 672
		files.SetSizes(192, 57, Form.cwidth - 210, Form.cheight - 59 - status_bar_h, files.item_h);
5719 leency 673
		DrawList();
5733 leency 674
		Open_Dir(#path,ONLY_SHOW);
5698 leency 675
	}
676
	else
677
	{
6158 leency 678
		SystemDiscs.Get();
5733 leency 679
		llist_copy(#files, #files_inactive);
680
		strcpy(#path, #inactive_path);
681
		col_selec = 0xCCCccc;
6034 leency 682
		SystemDiscs.Draw();
683
		files_y = files.y;
5733 leency 684
 
5719 leency 685
		if (active_panel==1)
686
		{
5761 leency 687
			llist_copy(#files, #files_inactive);
688
			strcpy(#path, #inactive_path);
689
			col_selec = 0xCCCccc;
6564 leency 690
			files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 691
			DrawList();
5733 leency 692
			Open_Dir(#path,WITH_REDRAW);
693
			llist_copy(#files, #files_active);
5719 leency 694
			strcpy(#path, #active_path);
5733 leency 695
			col_selec = 0x94AECE;
6564 leency 696
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 697
			DrawList();
5733 leency 698
			Open_Dir(#path,WITH_REDRAW);
5719 leency 699
		}
700
		if (active_panel==2)
701
		{
6564 leency 702
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 703
			DrawList();
5733 leency 704
			Open_Dir(#path,WITH_REDRAW);
705
			llist_copy(#files, #files_active);
5719 leency 706
			strcpy(#path, #active_path);
5733 leency 707
			col_selec = 0x94AECE;
6564 leency 708
			files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 709
			DrawList();
5733 leency 710
			Open_Dir(#path,WITH_REDRAW);
5719 leency 711
		}
5698 leency 712
	}
3363 leency 713
}
714
 
715
 
5694 leency 716
void List_ReDraw()
3363 leency 717
{
5719 leency 718
	int all_lines_h;
5825 leency 719
	static int old_cur_y, old_first;
3363 leency 720
 
5694 leency 721
	files.CheckDoesValuesOkey(); //prevent some shit
3363 leency 722
 
5694 leency 723
	if (list_full_redraw) || (old_first != files.first)
3363 leency 724
	{
5825 leency 725
		old_cur_y = files.cur_y;
5694 leency 726
		old_first = files.first;
727
		list_full_redraw = false;
728
		goto _ALL_LIST_REDRAW;
3363 leency 729
	}
5825 leency 730
	if (old_cur_y != files.cur_y)
3363 leency 731
	{
5825 leency 732
		if (old_cur_y-files.first
733
		Line_ReDraw(col_selec, files.cur_y-files.first);
734
		old_cur_y = files.cur_y;
5694 leency 735
		return;
3363 leency 736
	}
737
 
5694 leency 738
	_ALL_LIST_REDRAW:
3363 leency 739
 
5825 leency 740
	for (j=0; j
3434 leency 741
	//in the bottom
5825 leency 742
	all_lines_h = j * files.item_h;
5719 leency 743
	DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
6949 leency 744
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
745
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
3434 leency 746
	Scroll();
3363 leency 747
}
748
 
3444 leency 749
 
5761 leency 750
void Line_ReDraw(dword bgcol, filenum){
3467 leency 751
	dword text_col=0,
5991 leency 752
		  ext1, attr,
753
		  file_offet,
754
		  file_name_off,
6290 leency 755
		  y=filenum*files.item_h+files.y,
7197 leency 756
		  icon_y = files.item_h-icon_size/2+1+y;
5991 leency 757
		  BDVK file;
6757 leency 758
		  char temp_path[sizeof(file_path)];
5996 leency 759
	char label_file_name[4096];
4859 leency 760
	if (filenum==-1) return;
7054 leency 761
	DrawBar(files.x,y,4,files.item_h,bgcol);
762
	DrawBar(files.x+20,y,files.w-20,files.item_h,bgcol);
7197 leency 763
	DrawBar(files.x+4,y,icon_size,icon_y-y,bgcol);
764
	if (files.item_h>icon_size) DrawBar(files.x+4,icon_y+icon_size-1,icon_size,y+files.item_h-icon_y-icon_size+1,bgcol);
3363 leency 765
 
4897 leency 766
	file_offet = file_mas[filenum+files.first]*304 + buf+32;
5487 leency 767
	attr = ESDWORD[file_offet];
4897 leency 768
	file.selected = ESBYTE[file_offet+7];
769
	file.sizelo   = ESDWORD[file_offet+32];
6987 leency 770
	file.sizehi   = ESDWORD[file_offet+36];
4897 leency 771
	file_name_off = file_offet+40;
3363 leency 772
 
5487 leency 773
	if (! TestBit(attr, 4) ) //file or folder?
3363 leency 774
	{
5698 leency 775
		ext1 = strrchr(file_name_off,'.') + file_name_off;
6278 leency 776
		if (ext1==file_name_off) ext1 = NULL; //if no extension then show nothing
6987 leency 777
		WriteText(
778
			7-strlen(ConvertSize64(file.sizelo, file.sizehi))*6+files.x+files.w - 58,
779
			files.text_y+y+1,
780
			files.font_type,
781
			0,
782
			ConvertSize64(file.sizelo, file.sizehi)
783
		);
6278 leency 784
		if (ext1) && (strlen(ext1)<9) WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
3363 leency 785
	}
786
	else
4846 leency 787
	{
7149 leency 788
		if (!strcmp(file_name_off,"..")) ext1=""; else {
6278 leency 789
			ext1="";
790
			WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
791
		}
4846 leency 792
	}
6757 leency 793
	sprintf(#temp_path,"%s/%s",#path,file_name_off);
7054 leency 794
	DrawIconByExtension(#temp_path, ext1, files.x+4, icon_y, bgcol);
4846 leency 795
 
5487 leency 796
	if (TestBit(attr, 1)) || (TestBit(attr, 2)) text_col=0xA6A6B7; //system or hiden?
5761 leency 797
	if (bgcol!=0xFFFfff)
3363 leency 798
	{
5487 leency 799
		itdir = TestBit(attr, 4);
4897 leency 800
		strcpy(#file_name, file_name_off);
6635 leency 801
		if (!strcmp(#path,"/")) sprintf(#file_path,"%s%s",#path,file_name_off);
802
			else sprintf(#file_path,"%s/%s",#path,file_name_off);
3363 leency 803
		if (text_col==0xA6A6B7) text_col=0xFFFFFF;
804
	}
4897 leency 805
	if (file.selected) text_col=0xFF0000;
6806 leency 806
	if (kfont.size.pt==9) || (!kfont.font)
3434 leency 807
	{
5745 leency 808
		if (Form.width>=480)
809
		{
810
			FileShow.start_x = files.x + 23;
811
			FileShow.font_color = text_col;
812
			FileShow.area_size_x = files.w - 164;
813
			FileShow.text_pointer = file_name_off;
7004 leency 814
			FileShow.start_y = files.text_y + y - 3;
5745 leency 815
			PathShow_prepare stdcall(#FileShow);
816
			PathShow_draw stdcall(#FileShow);
817
		}
3434 leency 818
	}
5745 leency 819
	else
820
	{
5996 leency 821
		strcpy(#label_file_name, file_name_off);
6806 leency 822
		if (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w)
5996 leency 823
		{
6806 leency 824
			while (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w) {
5996 leency 825
				ESBYTE[#label_file_name+strlen(#label_file_name)-1] = NULL;
826
			}
827
			strcpy(#label_file_name+strlen(#label_file_name)-2, "...");
828
		}
7197 leency 829
		kfont.WriteIntoWindow(files.x + icon_size+7, files.item_h - kfont.height / 2 + y, bgcol, text_col, kfont.size.pt, #label_file_name);
5745 leency 830
	}
6949 leency 831
	DrawBar(files.x+files.w-141,y,1,files.item_h,col_list_line); //gray line 1
832
	DrawBar(files.x+files.w-68,y,1,files.item_h,col_list_line); //gray line 2
3363 leency 833
}
834
 
835
 
3444 leency 836
void Open_Dir(dword dir_path, redraw){
6406 punk_joker 837
	int errornum, maxcount, i;
3444 leency 838
	if (redraw!=ONLY_SHOW)
3363 leency 839
	{
6602 leency 840
		selected_count = 0;
3363 leency 841
		if (buf) free(buf);
3444 leency 842
		errornum = GetDir(#buf, #files.count, dir_path, DIRS_NOROOT);
843
		if (errornum)
3363 leency 844
		{
6021 leency 845
			history.add(#path);
3363 leency 846
			GoBack();
847
			Write_Error(errornum);
848
			return;
849
		}
3444 leency 850
		maxcount = sizeof(file_mas)/sizeof(dword)-1;
4225 punk_joker 851
		if (files.count>maxcount) files.count = maxcount;
5825 leency 852
		if (files.count>0) && (files.cur_y-files.first==-1) files.cur_y=0;
3363 leency 853
	}
3444 leency 854
	if (files.count!=-1)
3363 leency 855
	{
7244 leency 856
		if(!_not_draw) if (show_breadcrumb.checked) DrawBreadCrumbs(); else DrawPathBar();
6021 leency 857
		history.add(#path);
6034 leency 858
		SystemDiscs.Draw();
5825 leency 859
		files.visible = files.h / files.item_h;
5591 pavelyakov 860
		if (files.count < files.visible) files.visible = files.count;
861
		if (redraw!=ONLY_SHOW) Sorting();
5694 leency 862
		list_full_redraw = true;
6564 leency 863
		if (redraw!=ONLY_OPEN)&&(!_not_draw) {DrawStatusBar(); List_ReDraw();}
6570 leency 864
		SetCurDir(dir_path);
3363 leency 865
	}
5694 leency 866
	if (files.count==-1) && (redraw!=ONLY_OPEN)
867
	{
868
		files.KeyHome();
6564 leency 869
		if(!_not_draw) { list_full_redraw=true; DrawStatusBar(); List_ReDraw(); }
5694 leency 870
	}
3363 leency 871
}
872
 
873
inline Sorting()
874
{
875
	dword k=0, l=1;
4897 leency 876
	dword file_off;
6604 leency 877
	if (!strcmp(#path,"/")) //do not sort root folder
3363 leency 878
	{
5591 pavelyakov 879
		for(k=1;k
6604 leency 880
		count_dir = k;
3363 leency 881
		return;
882
	}
5591 pavelyakov 883
	for (j=files.count-1, file_off=files.count-1*304+buf+32; j>=0; j--, file_off-=304;)  //files | folders
3363 leency 884
	{
7244 leency 885
		if (!show_real_names.checked) strttl(file_off+40);
4897 leency 886
		if (TestBit(ESDWORD[file_off],4)) //directory?
3363 leency 887
		{
888
			file_mas[k]=j;
889
			k++;
890
		}
891
		else
892
		{
3434 leency 893
			file_mas[files.count-l]=j;
3363 leency 894
			l++;
895
		}
896
	}
6570 leency 897
	count_dir = k;
3434 leency 898
	//sorting: files first, then folders
3363 leency 899
	Sort_by_Name(0,k-1);
5591 pavelyakov 900
	if (sort_num==1) Sort_by_Name(k,files.count-1);
901
	if (sort_num==2) Sort_by_Type(k,files.count-1);
902
	if (sort_num==3) Sort_by_Size(k,files.count-1);
5581 leency 903
	//make ".." first item in list
5733 leency 904
	if (k>0) && (strncmp(file_mas[0]*304+buf+72,"..",2)!=0)
905
		for(k--; k>0; k--;) if (!strncmp(file_mas[k]*304+buf+72,"..",2)) {file_mas[k]>
3363 leency 906
}
907
 
908
 
909
void Del_Form()
910
{
5512 punk_joker 911
	byte f_count[128];
5581 leency 912
	int dform_x = files.w - 220 / 2 + files.x;
7004 leency 913
	if (selected_count==0) && (!strncmp(#file_name,"..",2)) return;
3991 leency 914
	else
915
	{
4002 leency 916
		if (!files.count) return;
6008 leency 917
		DrawEolitePopup(T_YES, T_NO);
5674 pavelyakov 918
		WriteText(-strlen(T_DELETE_FILE)*3+110+dform_x,175,0x80,system.color.work_text,T_DELETE_FILE);
6278 leency 919
		if (selected_count)
5512 punk_joker 920
		{
6278 leency 921
			sprintf(#f_count,"%s%d%s",DEL_MORE_FILES_1,selected_count,DEL_MORE_FILES_2);
5674 pavelyakov 922
			WriteText(-strlen(#f_count)*3+110+dform_x,190,0x80,system.color.work_text,#f_count);
5512 punk_joker 923
		}
4002 leency 924
		else
925
		{
5591 pavelyakov 926
			if (strlen(#file_name)<28)
5512 punk_joker 927
			{
5674 pavelyakov 928
				WriteText(strlen(#file_name)*3+110+dform_x+2,190,0x80,system.color.work_text,"?");
929
				WriteText(-strlen(#file_name)*3+110+dform_x,190,0x80,system.color.work_text,#file_name);
5512 punk_joker 930
			}
931
			else
932
			{
933
				WriteText(164+dform_x,190,0x80,0,"...?");
934
				ESI = 24;
935
				WriteText(dform_x+20,190,0,0,#file_name);
936
			}
6008 leency 937
		}
4002 leency 938
		del_active=1;
3991 leency 939
	}
3363 leency 940
}
941
 
5694 leency 942
void SelectFileByName(dword that_file)
3363 leency 943
{
5694 leency 944
	int ind;
945
	files.KeyHome();
5991 leency 946
	Open_Dir(#path,ONLY_OPEN);
7244 leency 947
	if (!show_real_names.checked) strttl(that_file);
5694 leency 948
	for (ind=files.count-1; ind>=0; ind--;) { if (!strcmp(file_mas[ind]*304+buf+72,that_file)) break; }
5825 leency 949
	files.cur_y = ind - 1;
5694 leency 950
	files.KeyDown();
6570 leency 951
	DrawStatusBar();
3363 leency 952
	List_ReDraw();
953
}
954
 
955
 
956
void Dir_Up()
957
{
6635 leency 958
	char old_folder_name[4096];
3363 leency 959
	i=strlen(#path)-1;
960
	if (i==0) return;
6635 leency 961
	//path[i]=0x00;
3363 leency 962
	i = strrchr(#path, '/');
6635 leency 963
	strcpy(#old_folder_name, #path+i);
964
	if (i>1) path[i-1]=NULL; else path[i]=NULL;
965
	SelectFileByName(#old_folder_name);
3363 leency 966
}
967
 
5444 leency 968
void Open(byte rez)
3434 leency 969
{
5443 punk_joker 970
	byte temp[4096];
5513 punk_joker 971
	selected_count = 0;
5443 punk_joker 972
	if (rez)
973
	{
5606 pavelyakov 974
		if (!strncmp(#file_name,"..",3)) return;
5443 punk_joker 975
		strcpy(#temp, #file_path);
6735 leency 976
		RunProgram(I_Path, #temp);
5443 punk_joker 977
		return;
978
	}
3444 leency 979
	if (!files.count) return;
3441 leency 980
	if (!itdir)
3434 leency 981
	{
5401 leency 982
		if (strrchr(#file_name, '.')==0) RunProgram(#file_path, ""); else RunProgram("/sys/@open", #file_path);
3434 leency 983
	}
984
	else
985
	{
5606 pavelyakov 986
		if (!strncmp(#file_name,"..",3)) { Dir_Up(); return; }
3434 leency 987
		strcpy(#path, #file_path);
5825 leency 988
		files.first=files.cur_y=0;
3444 leency 989
		Open_Dir(#path,WITH_REDRAW);
3434 leency 990
	}
991
}
3363 leency 992
 
3434 leency 993
inline fastcall void GoBack()
3363 leency 994
{
995
	char cur_folder[4096];
5974 leency 996
	strcpy(#cur_folder, #path);
6021 leency 997
	if (history.back()) {
998
		strcpy(#path, history.current());
5977 leency 999
		SelectFileByName(#cur_folder+strrchr(#cur_folder,'/'));
1000
	}
3363 leency 1001
}
1002
 
5397 punk_joker 1003
void ShowOpenWithDialog()
1004
{
6930 leency 1005
	byte open_param[4097];
1006
	sprintf(#open_param,"~%s",#file_path);
1007
	RunProgram("/sys/@open", #open_param);
5397 punk_joker 1008
}
1009
 
5555 punk_joker 1010
void NewElement(byte newf)
1011
{
5557 punk_joker 1012
	BDVK element_info;
5581 leency 1013
	byte del_rezult, copy_rezult, info_result;
5555 punk_joker 1014
	if (newf)
1015
	{
6635 leency 1016
		sprintf(#temp,"%s/%s",#path,new_file_ed.text);
5581 leency 1017
		info_result = GetFileInfo(#temp, #element_info);
5571 punk_joker 1018
		switch(new_element_active)
5555 punk_joker 1019
		{
5581 leency 1020
			case CREATE_FILE:
1021
				if (info_result==5)
5557 punk_joker 1022
				{
7227 leency 1023
					CreateFile(0, 0, #temp);
5571 punk_joker 1024
					if (EAX)
1025
					{
6008 leency 1026
						if (EAX==5) notify(NOT_CREATE_FILE);
1027
						else Write_Error(EAX);
5571 punk_joker 1028
					}
5557 punk_joker 1029
				}
5571 punk_joker 1030
				else
5557 punk_joker 1031
				{
5620 leency 1032
					notify(FS_ITEM_ALREADY_EXISTS);
5557 punk_joker 1033
				}
5581 leency 1034
				break;
1035
			case CREATE_FOLDER:
1036
				if (info_result==5)
5571 punk_joker 1037
				{
1038
					CreateDir(#temp);
1039
					if (EAX)
1040
					{
6008 leency 1041
						if (EAX==5) notify(NOT_CREATE_FOLDER);
1042
						else Write_Error(EAX);
5571 punk_joker 1043
					}
1044
				}
1045
				else
1046
				{
5620 leency 1047
					notify(FS_ITEM_ALREADY_EXISTS);
5571 punk_joker 1048
				}
5581 leency 1049
				break;
1050
			case RENAME_ITEM:
1051
				if (info_result==5)
5571 punk_joker 1052
				{
1053
					if (itdir)
1054
					{
6038 leency 1055
						//rename only empty folders
5571 punk_joker 1056
						if (del_rezult = DeleteFile(#file_path))
1057
						{
1058
							Write_Error(del_rezult);
1059
							return;
1060
						}
1061
						if (CreateDir(#temp)) CreateDir(#file_path);
1062
						Open_Dir(#path,WITH_REDRAW);
5694 leency 1063
						SelectFileByName(new_file_ed.text);
5571 punk_joker 1064
					}
1065
					else
1066
					{
1067
						if (copy_rezult = CopyFile(#file_path,#temp))
1068
						{
1069
							Write_Error(copy_rezult);
1070
						}
1071
						else
1072
						{
6038 leency 1073
							DeleteFile(#file_path);
5694 leency 1074
							SelectFileByName(new_file_ed.text);
5571 punk_joker 1075
						}
1076
					}
1077
				}
1078
				else
1079
				{
5620 leency 1080
					notify(FS_ITEM_ALREADY_EXISTS);
5571 punk_joker 1081
				}
5555 punk_joker 1082
		}
5557 punk_joker 1083
		new_element_active = 0;
1084
		Open_Dir(#path,WITH_REDRAW);
5694 leency 1085
		SelectFileByName(new_file_ed.text);
5555 punk_joker 1086
	}
1087
	new_element_active = 0;
5557 punk_joker 1088
	Open_Dir(#path,WITH_REDRAW);
5555 punk_joker 1089
}
1090
 
5571 punk_joker 1091
void NewElement_Form(byte crt, dword strng)
5555 punk_joker 1092
{
1093
	int dform_x=files.w-220/2+files.x;
5557 punk_joker 1094
	if (!new_element_active)
5555 punk_joker 1095
	{
5557 punk_joker 1096
		new_element_active = crt;
5571 punk_joker 1097
		strcpy(#new_element_name, strng);
1098
		new_file_ed.size = new_file_ed.pos = strlen(strng);
5555 punk_joker 1099
	}
6008 leency 1100
	if (new_element_active==3) DrawEolitePopup(T_RENAME, T_CANCEL);
1101
	else DrawEolitePopup(T_CREATE, T_CANCEL);
6678 leency 1102
	new_file_ed.left = dform_x+10;
6278 leency 1103
	DrawEditBox(#new_file_ed);
5555 punk_joker 1104
}
1105
 
5576 pavelyakov 1106
void FnProcess(byte N)
3434 leency 1107
{
1108
	switch(N)
1109
	{
1110
		case 1:
4395 punk_joker 1111
			if (!active_about)
1112
			{
5576 pavelyakov 1113
				about_stak = malloc(4096);
1114
				about_window = CreateThread(#about_dialog,about_stak+4092);
4395 punk_joker 1115
				break;
1116
			}
1117
			else
1118
			{
1119
				ActivateWindow(GetProcessSlot(about_window));
1120
			}
3434 leency 1121
			break;
1122
		case 2:
1123
			if (!files.count) break;
5581 leency 1124
			NewElement_Form(RENAME_ITEM, #file_name);
3434 leency 1125
			break;
1126
		case 3:
5591 pavelyakov 1127
			if (!itdir) RunProgram("/sys/tinypad", #file_path);
3434 leency 1128
			break;
1129
		case 4:
5591 pavelyakov 1130
			if (!itdir) RunProgram("/sys/develop/heed", #file_path);
3434 leency 1131
			break;
3440 leency 1132
		case 5: //refresh cur dir & devs
7244 leency 1133
			if (two_panels.checked)
5719 leency 1134
			{
5723 leency 1135
				DrawFilePanels();
5719 leency 1136
			}
1137
			else
1138
			{
1139
				Tip(56, T_DEVICES, 55, "-");
1140
				Open_Dir(#path,WITH_REDRAW);
1141
				pause(10);
6034 leency 1142
				SystemDiscs.Get();
5719 leency 1143
				Open_Dir(#path,WITH_REDRAW);
5723 leency 1144
				DrawDeviceAndActionsLeftPanel();
5719 leency 1145
			}
3434 leency 1146
			break;
1147
		case 6:
5581 leency 1148
			NewElement_Form(CREATE_FOLDER, T_NEW_FOLDER);
3434 leency 1149
			break;
1150
		case 7:
5581 leency 1151
			NewElement_Form(CREATE_FILE, T_NEW_FILE);
3434 leency 1152
			break;
5447 punk_joker 1153
		case 8:
5576 pavelyakov 1154
			properties_stak = malloc(8096);
1155
			CreateThread(#properties_dialog, properties_stak+8092);
5447 punk_joker 1156
			break;
3434 leency 1157
		case 10: //F10
5753 leency 1158
			if (!active_settings)
5416 punk_joker 1159
			{
5576 pavelyakov 1160
				settings_stak = malloc(4096);
1161
				settings_window = CreateThread(#settings_dialog, settings_stak+4092);
5416 punk_joker 1162
				break;
1163
			}
1164
			else
1165
			{
1166
				ActivateWindow(GetProcessSlot(settings_window));
1167
			}
3434 leency 1168
			break;
1169
	}
1170
}
1171
 
5738 leency 1172
void ChangeActivePanel()
1173
{
1174
	llist_copy(#files_active, #files_inactive);
1175
	llist_copy(#files_inactive, #files);
1176
	strcpy(#active_path, #inactive_path);
1177
	strcpy(#inactive_path, #path);
1178
	DrawFilePanels();
1179
}
1180
 
3434 leency 1181
 
3363 leency 1182
stop: