Subversion Repositories Kolibri OS

Rev

Rev 7369 | Rev 7386 | 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;
5591 pavelyakov 374
					case 100...120:
6034 leency 375
						SystemDiscs.Click(id-100);
5698 leency 376
						break;
6300 punk_joker 377
					case POPUP_BTN1...POPUP_BTN2:
378
						if (del_active) Del_File(id-POPUP_BTN2);
6278 leency 379
						if (new_element_active) NewElement(id-POPUP_BTN2);
380
						DeleteButton(POPUP_BTN1);
381
						DeleteButton(POPUP_BTN2);
382
						break;
7054 leency 383
					case BREADCRUMB_ID...360:
6289 leency 384
						ClickOnBreadCrumb(id-BREADCRUMB_ID);
385
						break;
5591 pavelyakov 386
				}
387
				break;
6885 pavelyakov 388
 
5591 pavelyakov 389
	//Key pressed-----------------------------------------------------------------------------
390
			case evKey:
5706 leency 391
				GetKeys();
5698 leency 392
 
5591 pavelyakov 393
				if (Form.status_window>2) break;
394
				if (del_active)
395
				{
5706 leency 396
					if (key_scancode == SCAN_CODE_ENTER) Del_File(true);
397
					if (key_scancode == SCAN_CODE_ESC) Del_File(false);
5591 pavelyakov 398
					break;
399
				}
400
				if (new_element_active)
401
				{
5991 leency 402
					if (key_scancode == SCAN_CODE_ENTER) NewElement(true);
403
					if (key_scancode == SCAN_CODE_ESC) NewElement(false);
6641 leency 404
					EAX = key_editbox;
5591 pavelyakov 405
					edit_box_key stdcall (#new_file_ed);
406
					break;
407
				}
5706 leency 408
				if (files.ProcessKey(key_scancode))
5694 leency 409
				{
410
					List_ReDraw();
411
					break;
412
				}
5698 leency 413
 
5795 leency 414
				if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL)
5591 pavelyakov 415
				{
5706 leency 416
					switch(key_scancode)
5697 punk_joker 417
					{
5702 punk_joker 418
						case 059...068:
5706 leency 419
								key_scancode -= 59;
6034 leency 420
								if (key_scancode < SystemDiscs.list.count)
5702 punk_joker 421
								{
7244 leency 422
									if (!two_panels.checked)
5723 leency 423
									{
424
										DrawRectangle(17,key_scancode*16+74,159,16, 0); //display click
425
										pause(7);
426
									}
6034 leency 427
									SystemDiscs.Click(key_scancode);
5702 punk_joker 428
								}
429
								break;
5697 punk_joker 430
						case 45:  //Ctrl+X
431
								Copy(#file_path, CUT);
432
								break;
433
						case 46:  //Ctrl+C
434
								Copy(#file_path, NOCUT);
435
								break;
436
						case 47:  //Ctrl+V
437
								Paste();
438
								break;
439
						case 032: //Ctrl+D - set as bg
5803 leency 440
								strlcpy(#temp, "\\S__",4);
5591 pavelyakov 441
								strcat(#temp, #file_path);
442
								RunProgram("/sys/media/kiv", #temp);
443
								break;
5697 punk_joker 444
						case 049: //Ctrl+N - create new window
5591 pavelyakov 445
								if (Form.left==98) MoveSize(Form.left-20,Form.top-20,OLD,OLD);
6735 leency 446
								RunProgram(I_Path, #path);
5591 pavelyakov 447
								break;
6157 punk_joker 448
						case 050: //Ctrl+M
449
								Open_Dir(#inactive_path,WITH_REDRAW);
450
								break;
6278 leency 451
						case SCAN_CODE_ENTER: //Ctrl+Enter
5702 punk_joker 452
								if (!itdir) ShowOpenWithDialog();
453
								else Open(1);
454
								break;
5697 punk_joker 455
						case 030: //Ctrl+A - select all files
6602 leency 456
								for (i=0; i
5591 pavelyakov 457
								List_ReDraw();
6564 leency 458
								DrawStatusBar();
5591 pavelyakov 459
								break;
5697 punk_joker 460
						case 022: //Ctrl+U - unselect all files
6602 leency 461
								for (i=0; i
5591 pavelyakov 462
								selected_count = 0;
463
								List_ReDraw();
6564 leency 464
								DrawStatusBar();
5591 pavelyakov 465
								break;
5697 punk_joker 466
					}
467
					break;
468
				}
5698 leency 469
 
5706 leency 470
				switch (key_scancode)
5697 punk_joker 471
				{
5702 punk_joker 472
						case SCAN_CODE_BS:
5697 punk_joker 473
								//GoBack();
474
								Dir_Up();
475
								break;
5702 punk_joker 476
						case SCAN_CODE_ENTER:
5591 pavelyakov 477
								Open(0);
478
								break;
5738 leency 479
						case SCAN_CODE_TAB:
7244 leency 480
								if (!two_panels.checked) break;
5738 leency 481
								if (active_panel==1) active_panel=2; else active_panel=1;
482
								ChangeActivePanel();
6564 leency 483
								DrawStatusBar();
5738 leency 484
								break;
5702 punk_joker 485
						case 093: //menu
5591 pavelyakov 486
								menu_call_mouse=0;
487
								menu_stak = malloc(4096);
488
								CreateThread(#FileMenu,menu_stak+4092);
489
								break;
5702 punk_joker 490
						case SCAN_CODE_DEL:
5591 pavelyakov 491
								Del_Form();
492
								break;
5702 punk_joker 493
						case SCAN_CODE_INS:
6646 leency 494
								if (getElementSelectedFlag(files.cur_y) == true) setElementSelectedFlag(files.cur_y, false);
6602 leency 495
								else setElementSelectedFlag(files.cur_y, true);
5955 leency 496
								files.KeyDown();
497
								List_ReDraw();
6564 leency 498
								DrawStatusBar();
5591 pavelyakov 499
								break;
5702 punk_joker 500
						case 059...068: //F1-F10
5706 leency 501
								FnProcess(key_scancode-58);
5591 pavelyakov 502
								break;
5974 leency 503
						default:
5825 leency 504
								for (i=files.cur_y+1; i
5591 pavelyakov 505
								{
506
									strcpy(#temp, file_mas[i]*304+buf+72);
5706 leency 507
									if (temp[0]==key_ascii) || (temp[0]==key_ascii-32)
5591 pavelyakov 508
									{
5825 leency 509
										files.cur_y = i - 1;
5694 leency 510
										files.KeyDown();
511
										List_ReDraw();
5591 pavelyakov 512
										break;
513
									}
514
								}
515
				}
3363 leency 516
			break;
5698 leency 517
			case evIPC:
5591 pavelyakov 518
			case evReDraw:
519
				draw_window();
520
				if (action_buf)
521
				{
5804 punk_joker 522
					if (action_buf==OPERATION_END)
5698 leency 523
					{
524
						FnProcess(5);
5991 leency 525
						if (copy_stak) SelectFileByName(#copy_to+strrchr(#copy_to,'/'));
5698 leency 526
					}
527
					if (action_buf==100) Open(0);
528
					if (action_buf==201) ShowOpenWithDialog();
529
					if (action_buf==202) FnProcess(3); //F3
530
					if (action_buf==203) FnProcess(4); //F4
531
					if (action_buf==104) Copy(#file_path, NOCUT);
532
					if (action_buf==105) Copy(#file_path, CUT);
533
					if (action_buf==106) Paste();
534
					if (action_buf==207) FnProcess(2);
535
					if (action_buf==108) Del_Form();
536
					if (action_buf==109) FnProcess(5);
537
					if (action_buf==110) FnProcess(8);
5591 pavelyakov 538
					action_buf=0;
539
				}
7310 pavelyakov 540
			break;
541
			default:
7313 pavelyakov 542
 
7314 pavelyakov 543
				ReadDir(19, devbuf, "/"); // get disk
7375 leency 544
				if(countDisk != EBX) // if different then
7311 pavelyakov 545
				{
7313 pavelyakov 546
					countDisk = EBX;
547
					FnProcess(5);
7311 pavelyakov 548
				}
7314 pavelyakov 549
				else // get current files
550
				{
551
					if(two_panels.checked)
552
					{
553
						// this add code update list files
7375 leency 554
						update_files_list = false;
7314 pavelyakov 555
						//strcpy(#inactive_path,#path);
556
						ReadDir(19, devbuf, #inactive_path);
7375 leency 557
						if(countPathFile != EBX) // if different then
7314 pavelyakov 558
						{
559
							countPathFile = EBX;
7375 leency 560
							update_files_list = true;
7314 pavelyakov 561
						}
562
 
563
						//strcpy(#active_path,#path);
564
						ReadDir(19, devbuf, #active_path);
7375 leency 565
						if(countPathFile2 != EBX) // if different then
7314 pavelyakov 566
						{
567
							countPathFile2 = EBX;
7375 leency 568
							update_files_list = true;
7314 pavelyakov 569
						}
7375 leency 570
						if(update_files_list) DrawFilePanels();
7314 pavelyakov 571
					}
7375 leency 572
					else
7314 pavelyakov 573
					{
574
						ReadDir(19, devbuf, #path);
7375 leency 575
						if(countPathFile != EBX) // if different then
7314 pavelyakov 576
						{
577
							countPathFile = EBX;
578
							Open_Dir(#path,WITH_REDRAW);
579
						}
580
					}
581
				}
5591 pavelyakov 582
		}
7310 pavelyakov 583
 
584
 
585
 
5591 pavelyakov 586
		if(cmd_free)
587
		{
5991 leency 588
			if(cmd_free==1)      menu_stak=free(menu_stak);
589
			else if(cmd_free==2) about_stak=free(about_stak);
590
			else if(cmd_free==3) properties_stak=free(properties_stak);
591
			else if(cmd_free==4) settings_stak=free(settings_stak);
592
			else if(cmd_free==5) copy_stak=free(copy_stak);
593
			else if(cmd_free==6) delete_stak=free(delete_stak);
5591 pavelyakov 594
			cmd_free = false;
5576 pavelyakov 595
		}
596
	}
3363 leency 597
}
598
 
6291 leency 599
void DrawFavButton(int x)
600
{
601
	_PutImage(x,10,20,22,#fav);
602
	DefineButton(x,11,20-2,22-2,61+BT_HIDE+BT_NOFRAME,0);
603
}
604
 
3444 leency 605
void draw_window()
606
{
7244 leency 607
	if (show_status_bar.checked) status_bar_h = STATUS_BAR_H; else status_bar_h = 0;
7278 leency 608
	DefineAndDrawWindow(Form.left+rand_n,Form.top+rand_n,Form.width,Form.height,0x73,NULL,TITLE,0);
3444 leency 609
	GetProcessInfo(#Form, SelfInfo);
610
	if (Form.status_window>2) return;
5811 leency 611
	if (Form.height < 350) { MoveSize(OLD,OLD,OLD,350); return; }
612
	if (Form.width  < 480) { MoveSize(OLD,OLD,480,OLD); return; }
3444 leency 613
	GetProcessInfo(#Form, SelfInfo); //if win_size changed
6291 leency 614
	_PutImage(0,0,246,34,#toolbar);
6191 leency 615
	DrawBar(127, 8, 1, 25, col_graph);
616
	for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,NULL);
617
	for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,NULL);
6289 leency 618
	DrawBar(246,0, Form.cwidth - 246, 34, col_work);
6291 leency 619
	_PutImage(Form.cwidth-17,11,6,18,#dots);
620
	DefineButton(Form.cwidth-24,7,20,25,51+BT_HIDE+BT_NOFRAME,0); //dots
3434 leency 621
	//main rectangles
6564 leency 622
	DrawRectangle(1,40,Form.cwidth-3,Form.cheight - 42-status_bar_h,col_graph);
5698 leency 623
	DrawRectangle(0,39,Form.cwidth-1,Form.cheight - 40,col_palette[4]); //bg
5723 leency 624
	for (i=0; i<5; i++) DrawBar(0, 34+i, Form.cwidth, 1, col_palette[8-i]);
5733 leency 625
	llist_copy(#files_active, #files);
5723 leency 626
	strcpy(#active_path, #path);
6564 leency 627
	DrawStatusBar();
6973 leency 628
	if (selected_count==0) Open_Dir(#path,ONLY_OPEN); //if there are no selected files -> refresh folder [L001]
5723 leency 629
	DrawFilePanels();
630
	if (del_active) Del_Form();
631
	if (new_element_active) NewElement_Form(new_element_active, #new_element_name);
632
}
633
 
634
void DrawList()
635
{
5733 leency 636
	word sorting_arrow_x;
6678 leency 637
	DrawFlatButtonSmall(files.x, files.y-17,     files.w - 141,16,31,T_FILE);
638
	DrawFlatButtonSmall(files.x + files.w - 141, files.y-17,73,16,32,T_TYPE);
639
	DrawFlatButtonSmall(files.x + files.w -  68, files.y-17,68,16,33,T_SIZE);
640
	DrawFlatButtonSmall(files.x + files.w,       files.y-17,16,16, 0,"\x18");
641
	DrawFlatButtonSmall(files.x + files.w,files.y+files.h-16,16,16,0,"\x19");
5733 leency 642
	if (sort_num==1) sorting_arrow_x = files.w - 141 / 2 + files.x + 18;
643
	if (sort_num==2) sorting_arrow_x = files.x + files.w - 90;
644
	if (sort_num==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
6191 leency 645
	WriteText(sorting_arrow_x,files.y-12,0x80,col_graph,"\x19");
646
	DrawBar(files.x+files.w,files.y,1,files.h,col_graph);
7244 leency 647
	if (two_panels.checked) && (files.x<5) DrawBar(files.x+files.w+16,files.y,1,files.h,col_graph);
5723 leency 648
}
649
 
6404 punk_joker 650
void DrawStatusBar()
651
{
6572 leency 652
	char status_bar_str[80];
6570 leency 653
	int go_up_folder_exists=0;
7244 leency 654
	if (!show_status_bar.checked) return;
6604 leency 655
	if (files.count>0) && (strcmp(file_mas[0]*304+buf+72,"..")==0) go_up_folder_exists=1;
6783 leency 656
	DrawBar(1, Form.cheight - status_bar_h-1, Form.cwidth-2,  status_bar_h, system.color.work);
6570 leency 657
	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 658
	WriteText(6,Form.cheight - 13,0x80,system.color.work_text,#status_bar_str);
6404 punk_joker 659
}
660
 
5723 leency 661
void DrawFilePanels()
662
{
6034 leency 663
	int files_y;
7244 leency 664
	if (!two_panels.checked)
5698 leency 665
	{
5723 leency 666
		DrawDeviceAndActionsLeftPanel();
6564 leency 667
		files.SetSizes(192, 57, Form.cwidth - 210, Form.cheight - 59 - status_bar_h, files.item_h);
5719 leency 668
		DrawList();
5733 leency 669
		Open_Dir(#path,ONLY_SHOW);
5698 leency 670
	}
671
	else
672
	{
6158 leency 673
		SystemDiscs.Get();
5733 leency 674
		llist_copy(#files, #files_inactive);
675
		strcpy(#path, #inactive_path);
676
		col_selec = 0xCCCccc;
6034 leency 677
		SystemDiscs.Draw();
678
		files_y = files.y;
5733 leency 679
 
5719 leency 680
		if (active_panel==1)
681
		{
5761 leency 682
			llist_copy(#files, #files_inactive);
683
			strcpy(#path, #inactive_path);
684
			col_selec = 0xCCCccc;
6564 leency 685
			files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 686
			DrawList();
5733 leency 687
			Open_Dir(#path,WITH_REDRAW);
688
			llist_copy(#files, #files_active);
5719 leency 689
			strcpy(#path, #active_path);
5733 leency 690
			col_selec = 0x94AECE;
6564 leency 691
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 692
			DrawList();
5733 leency 693
			Open_Dir(#path,WITH_REDRAW);
5719 leency 694
		}
695
		if (active_panel==2)
696
		{
6564 leency 697
			files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 698
			DrawList();
5733 leency 699
			Open_Dir(#path,WITH_REDRAW);
700
			llist_copy(#files, #files_active);
5719 leency 701
			strcpy(#path, #active_path);
5733 leency 702
			col_selec = 0x94AECE;
6564 leency 703
			files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
5719 leency 704
			DrawList();
5733 leency 705
			Open_Dir(#path,WITH_REDRAW);
5719 leency 706
		}
5698 leency 707
	}
3363 leency 708
}
709
 
710
 
5694 leency 711
void List_ReDraw()
3363 leency 712
{
5719 leency 713
	int all_lines_h;
5825 leency 714
	static int old_cur_y, old_first;
3363 leency 715
 
5694 leency 716
	files.CheckDoesValuesOkey(); //prevent some shit
3363 leency 717
 
5694 leency 718
	if (list_full_redraw) || (old_first != files.first)
3363 leency 719
	{
5825 leency 720
		old_cur_y = files.cur_y;
5694 leency 721
		old_first = files.first;
722
		list_full_redraw = false;
723
		goto _ALL_LIST_REDRAW;
3363 leency 724
	}
5825 leency 725
	if (old_cur_y != files.cur_y)
3363 leency 726
	{
5825 leency 727
		if (old_cur_y-files.first
728
		Line_ReDraw(col_selec, files.cur_y-files.first);
729
		old_cur_y = files.cur_y;
5694 leency 730
		return;
3363 leency 731
	}
732
 
5694 leency 733
	_ALL_LIST_REDRAW:
3363 leency 734
 
5825 leency 735
	for (j=0; j
3434 leency 736
	//in the bottom
5825 leency 737
	all_lines_h = j * files.item_h;
5719 leency 738
	DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
6949 leency 739
	DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
740
	DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
3434 leency 741
	Scroll();
3363 leency 742
}
743
 
3444 leency 744
 
5761 leency 745
void Line_ReDraw(dword bgcol, filenum){
3467 leency 746
	dword text_col=0,
5991 leency 747
		  ext1, attr,
748
		  file_offet,
749
		  file_name_off,
6290 leency 750
		  y=filenum*files.item_h+files.y,
7197 leency 751
		  icon_y = files.item_h-icon_size/2+1+y;
5991 leency 752
		  BDVK file;
6757 leency 753
		  char temp_path[sizeof(file_path)];
5996 leency 754
	char label_file_name[4096];
4859 leency 755
	if (filenum==-1) return;
7054 leency 756
	DrawBar(files.x,y,4,files.item_h,bgcol);
757
	DrawBar(files.x+20,y,files.w-20,files.item_h,bgcol);
7197 leency 758
	DrawBar(files.x+4,y,icon_size,icon_y-y,bgcol);
759
	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 760
 
4897 leency 761
	file_offet = file_mas[filenum+files.first]*304 + buf+32;
5487 leency 762
	attr = ESDWORD[file_offet];
4897 leency 763
	file.selected = ESBYTE[file_offet+7];
764
	file.sizelo   = ESDWORD[file_offet+32];
6987 leency 765
	file.sizehi   = ESDWORD[file_offet+36];
4897 leency 766
	file_name_off = file_offet+40;
3363 leency 767
 
5487 leency 768
	if (! TestBit(attr, 4) ) //file or folder?
3363 leency 769
	{
5698 leency 770
		ext1 = strrchr(file_name_off,'.') + file_name_off;
6278 leency 771
		if (ext1==file_name_off) ext1 = NULL; //if no extension then show nothing
6987 leency 772
		WriteText(
773
			7-strlen(ConvertSize64(file.sizelo, file.sizehi))*6+files.x+files.w - 58,
774
			files.text_y+y+1,
775
			files.font_type,
776
			0,
777
			ConvertSize64(file.sizelo, file.sizehi)
778
		);
6278 leency 779
		if (ext1) && (strlen(ext1)<9) WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
3363 leency 780
	}
781
	else
4846 leency 782
	{
7149 leency 783
		if (!strcmp(file_name_off,"..")) ext1=""; else {
6278 leency 784
			ext1="";
785
			WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
786
		}
4846 leency 787
	}
6757 leency 788
	sprintf(#temp_path,"%s/%s",#path,file_name_off);
7054 leency 789
	DrawIconByExtension(#temp_path, ext1, files.x+4, icon_y, bgcol);
4846 leency 790
 
5487 leency 791
	if (TestBit(attr, 1)) || (TestBit(attr, 2)) text_col=0xA6A6B7; //system or hiden?
5761 leency 792
	if (bgcol!=0xFFFfff)
3363 leency 793
	{
5487 leency 794
		itdir = TestBit(attr, 4);
4897 leency 795
		strcpy(#file_name, file_name_off);
6635 leency 796
		if (!strcmp(#path,"/")) sprintf(#file_path,"%s%s",#path,file_name_off);
797
			else sprintf(#file_path,"%s/%s",#path,file_name_off);
3363 leency 798
		if (text_col==0xA6A6B7) text_col=0xFFFFFF;
799
	}
4897 leency 800
	if (file.selected) text_col=0xFF0000;
6806 leency 801
	if (kfont.size.pt==9) || (!kfont.font)
3434 leency 802
	{
5745 leency 803
		if (Form.width>=480)
804
		{
805
			FileShow.start_x = files.x + 23;
806
			FileShow.font_color = text_col;
807
			FileShow.area_size_x = files.w - 164;
808
			FileShow.text_pointer = file_name_off;
7004 leency 809
			FileShow.start_y = files.text_y + y - 3;
5745 leency 810
			PathShow_prepare stdcall(#FileShow);
811
			PathShow_draw stdcall(#FileShow);
812
		}
3434 leency 813
	}
5745 leency 814
	else
815
	{
5996 leency 816
		strcpy(#label_file_name, file_name_off);
6806 leency 817
		if (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w)
5996 leency 818
		{
6806 leency 819
			while (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w) {
5996 leency 820
				ESBYTE[#label_file_name+strlen(#label_file_name)-1] = NULL;
821
			}
822
			strcpy(#label_file_name+strlen(#label_file_name)-2, "...");
823
		}
7197 leency 824
		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 825
	}
6949 leency 826
	DrawBar(files.x+files.w-141,y,1,files.item_h,col_list_line); //gray line 1
827
	DrawBar(files.x+files.w-68,y,1,files.item_h,col_list_line); //gray line 2
3363 leency 828
}
829
 
830
 
3444 leency 831
void Open_Dir(dword dir_path, redraw){
6406 punk_joker 832
	int errornum, maxcount, i;
3444 leency 833
	if (redraw!=ONLY_SHOW)
3363 leency 834
	{
6602 leency 835
		selected_count = 0;
3363 leency 836
		if (buf) free(buf);
3444 leency 837
		errornum = GetDir(#buf, #files.count, dir_path, DIRS_NOROOT);
838
		if (errornum)
3363 leency 839
		{
6021 leency 840
			history.add(#path);
3363 leency 841
			GoBack();
842
			Write_Error(errornum);
843
			return;
844
		}
3444 leency 845
		maxcount = sizeof(file_mas)/sizeof(dword)-1;
4225 punk_joker 846
		if (files.count>maxcount) files.count = maxcount;
5825 leency 847
		if (files.count>0) && (files.cur_y-files.first==-1) files.cur_y=0;
3363 leency 848
	}
3444 leency 849
	if (files.count!=-1)
3363 leency 850
	{
7244 leency 851
		if(!_not_draw) if (show_breadcrumb.checked) DrawBreadCrumbs(); else DrawPathBar();
6021 leency 852
		history.add(#path);
6034 leency 853
		SystemDiscs.Draw();
5825 leency 854
		files.visible = files.h / files.item_h;
5591 pavelyakov 855
		if (files.count < files.visible) files.visible = files.count;
856
		if (redraw!=ONLY_SHOW) Sorting();
5694 leency 857
		list_full_redraw = true;
6564 leency 858
		if (redraw!=ONLY_OPEN)&&(!_not_draw) {DrawStatusBar(); List_ReDraw();}
6570 leency 859
		SetCurDir(dir_path);
3363 leency 860
	}
5694 leency 861
	if (files.count==-1) && (redraw!=ONLY_OPEN)
862
	{
863
		files.KeyHome();
6564 leency 864
		if(!_not_draw) { list_full_redraw=true; DrawStatusBar(); List_ReDraw(); }
5694 leency 865
	}
3363 leency 866
}
867
 
868
inline Sorting()
869
{
870
	dword k=0, l=1;
4897 leency 871
	dword file_off;
6604 leency 872
	if (!strcmp(#path,"/")) //do not sort root folder
3363 leency 873
	{
5591 pavelyakov 874
		for(k=1;k
6604 leency 875
		count_dir = k;
3363 leency 876
		return;
877
	}
5591 pavelyakov 878
	for (j=files.count-1, file_off=files.count-1*304+buf+32; j>=0; j--, file_off-=304;)  //files | folders
3363 leency 879
	{
7244 leency 880
		if (!show_real_names.checked) strttl(file_off+40);
4897 leency 881
		if (TestBit(ESDWORD[file_off],4)) //directory?
3363 leency 882
		{
883
			file_mas[k]=j;
884
			k++;
885
		}
886
		else
887
		{
3434 leency 888
			file_mas[files.count-l]=j;
3363 leency 889
			l++;
890
		}
891
	}
6570 leency 892
	count_dir = k;
3434 leency 893
	//sorting: files first, then folders
3363 leency 894
	Sort_by_Name(0,k-1);
5591 pavelyakov 895
	if (sort_num==1) Sort_by_Name(k,files.count-1);
896
	if (sort_num==2) Sort_by_Type(k,files.count-1);
897
	if (sort_num==3) Sort_by_Size(k,files.count-1);
5581 leency 898
	//make ".." first item in list
5733 leency 899
	if (k>0) && (strncmp(file_mas[0]*304+buf+72,"..",2)!=0)
900
		for(k--; k>0; k--;) if (!strncmp(file_mas[k]*304+buf+72,"..",2)) {file_mas[k]>
3363 leency 901
}
902
 
903
 
904
void Del_Form()
905
{
5512 punk_joker 906
	byte f_count[128];
5581 leency 907
	int dform_x = files.w - 220 / 2 + files.x;
7004 leency 908
	if (selected_count==0) && (!strncmp(#file_name,"..",2)) return;
3991 leency 909
	else
910
	{
4002 leency 911
		if (!files.count) return;
6008 leency 912
		DrawEolitePopup(T_YES, T_NO);
5674 pavelyakov 913
		WriteText(-strlen(T_DELETE_FILE)*3+110+dform_x,175,0x80,system.color.work_text,T_DELETE_FILE);
6278 leency 914
		if (selected_count)
5512 punk_joker 915
		{
6278 leency 916
			sprintf(#f_count,"%s%d%s",DEL_MORE_FILES_1,selected_count,DEL_MORE_FILES_2);
5674 pavelyakov 917
			WriteText(-strlen(#f_count)*3+110+dform_x,190,0x80,system.color.work_text,#f_count);
5512 punk_joker 918
		}
4002 leency 919
		else
920
		{
5591 pavelyakov 921
			if (strlen(#file_name)<28)
5512 punk_joker 922
			{
5674 pavelyakov 923
				WriteText(strlen(#file_name)*3+110+dform_x+2,190,0x80,system.color.work_text,"?");
924
				WriteText(-strlen(#file_name)*3+110+dform_x,190,0x80,system.color.work_text,#file_name);
5512 punk_joker 925
			}
926
			else
927
			{
928
				WriteText(164+dform_x,190,0x80,0,"...?");
929
				ESI = 24;
930
				WriteText(dform_x+20,190,0,0,#file_name);
931
			}
6008 leency 932
		}
4002 leency 933
		del_active=1;
3991 leency 934
	}
3363 leency 935
}
936
 
5694 leency 937
void SelectFileByName(dword that_file)
3363 leency 938
{
5694 leency 939
	int ind;
940
	files.KeyHome();
5991 leency 941
	Open_Dir(#path,ONLY_OPEN);
7244 leency 942
	if (!show_real_names.checked) strttl(that_file);
5694 leency 943
	for (ind=files.count-1; ind>=0; ind--;) { if (!strcmp(file_mas[ind]*304+buf+72,that_file)) break; }
5825 leency 944
	files.cur_y = ind - 1;
5694 leency 945
	files.KeyDown();
6570 leency 946
	DrawStatusBar();
3363 leency 947
	List_ReDraw();
948
}
949
 
950
 
951
void Dir_Up()
952
{
6635 leency 953
	char old_folder_name[4096];
3363 leency 954
	i=strlen(#path)-1;
955
	if (i==0) return;
6635 leency 956
	//path[i]=0x00;
3363 leency 957
	i = strrchr(#path, '/');
6635 leency 958
	strcpy(#old_folder_name, #path+i);
959
	if (i>1) path[i-1]=NULL; else path[i]=NULL;
960
	SelectFileByName(#old_folder_name);
3363 leency 961
}
962
 
5444 leency 963
void Open(byte rez)
3434 leency 964
{
5443 punk_joker 965
	byte temp[4096];
5513 punk_joker 966
	selected_count = 0;
5443 punk_joker 967
	if (rez)
968
	{
5606 pavelyakov 969
		if (!strncmp(#file_name,"..",3)) return;
5443 punk_joker 970
		strcpy(#temp, #file_path);
6735 leency 971
		RunProgram(I_Path, #temp);
5443 punk_joker 972
		return;
973
	}
3444 leency 974
	if (!files.count) return;
3441 leency 975
	if (!itdir)
3434 leency 976
	{
5401 leency 977
		if (strrchr(#file_name, '.')==0) RunProgram(#file_path, ""); else RunProgram("/sys/@open", #file_path);
3434 leency 978
	}
979
	else
980
	{
5606 pavelyakov 981
		if (!strncmp(#file_name,"..",3)) { Dir_Up(); return; }
3434 leency 982
		strcpy(#path, #file_path);
5825 leency 983
		files.first=files.cur_y=0;
3444 leency 984
		Open_Dir(#path,WITH_REDRAW);
3434 leency 985
	}
986
}
3363 leency 987
 
3434 leency 988
inline fastcall void GoBack()
3363 leency 989
{
990
	char cur_folder[4096];
5974 leency 991
	strcpy(#cur_folder, #path);
6021 leency 992
	if (history.back()) {
993
		strcpy(#path, history.current());
5977 leency 994
		SelectFileByName(#cur_folder+strrchr(#cur_folder,'/'));
995
	}
3363 leency 996
}
997
 
5397 punk_joker 998
void ShowOpenWithDialog()
999
{
6930 leency 1000
	byte open_param[4097];
1001
	sprintf(#open_param,"~%s",#file_path);
1002
	RunProgram("/sys/@open", #open_param);
5397 punk_joker 1003
}
1004
 
5555 punk_joker 1005
void NewElement(byte newf)
1006
{
5557 punk_joker 1007
	BDVK element_info;
5581 leency 1008
	byte del_rezult, copy_rezult, info_result;
5555 punk_joker 1009
	if (newf)
1010
	{
6635 leency 1011
		sprintf(#temp,"%s/%s",#path,new_file_ed.text);
5581 leency 1012
		info_result = GetFileInfo(#temp, #element_info);
5571 punk_joker 1013
		switch(new_element_active)
5555 punk_joker 1014
		{
5581 leency 1015
			case CREATE_FILE:
1016
				if (info_result==5)
5557 punk_joker 1017
				{
7227 leency 1018
					CreateFile(0, 0, #temp);
5571 punk_joker 1019
					if (EAX)
1020
					{
6008 leency 1021
						if (EAX==5) notify(NOT_CREATE_FILE);
1022
						else Write_Error(EAX);
5571 punk_joker 1023
					}
5557 punk_joker 1024
				}
5571 punk_joker 1025
				else
5557 punk_joker 1026
				{
5620 leency 1027
					notify(FS_ITEM_ALREADY_EXISTS);
5557 punk_joker 1028
				}
5581 leency 1029
				break;
1030
			case CREATE_FOLDER:
1031
				if (info_result==5)
5571 punk_joker 1032
				{
1033
					CreateDir(#temp);
1034
					if (EAX)
1035
					{
6008 leency 1036
						if (EAX==5) notify(NOT_CREATE_FOLDER);
1037
						else Write_Error(EAX);
5571 punk_joker 1038
					}
1039
				}
1040
				else
1041
				{
5620 leency 1042
					notify(FS_ITEM_ALREADY_EXISTS);
5571 punk_joker 1043
				}
5581 leency 1044
				break;
1045
			case RENAME_ITEM:
1046
				if (info_result==5)
5571 punk_joker 1047
				{
1048
					if (itdir)
1049
					{
6038 leency 1050
						//rename only empty folders
5571 punk_joker 1051
						if (del_rezult = DeleteFile(#file_path))
1052
						{
1053
							Write_Error(del_rezult);
1054
							return;
1055
						}
1056
						if (CreateDir(#temp)) CreateDir(#file_path);
1057
						Open_Dir(#path,WITH_REDRAW);
5694 leency 1058
						SelectFileByName(new_file_ed.text);
5571 punk_joker 1059
					}
1060
					else
1061
					{
1062
						if (copy_rezult = CopyFile(#file_path,#temp))
1063
						{
1064
							Write_Error(copy_rezult);
1065
						}
1066
						else
1067
						{
6038 leency 1068
							DeleteFile(#file_path);
5694 leency 1069
							SelectFileByName(new_file_ed.text);
5571 punk_joker 1070
						}
1071
					}
1072
				}
1073
				else
1074
				{
5620 leency 1075
					notify(FS_ITEM_ALREADY_EXISTS);
5571 punk_joker 1076
				}
5555 punk_joker 1077
		}
5557 punk_joker 1078
		new_element_active = 0;
1079
		Open_Dir(#path,WITH_REDRAW);
5694 leency 1080
		SelectFileByName(new_file_ed.text);
5555 punk_joker 1081
	}
1082
	new_element_active = 0;
5557 punk_joker 1083
	Open_Dir(#path,WITH_REDRAW);
5555 punk_joker 1084
}
1085
 
5571 punk_joker 1086
void NewElement_Form(byte crt, dword strng)
5555 punk_joker 1087
{
1088
	int dform_x=files.w-220/2+files.x;
5557 punk_joker 1089
	if (!new_element_active)
5555 punk_joker 1090
	{
5557 punk_joker 1091
		new_element_active = crt;
5571 punk_joker 1092
		strcpy(#new_element_name, strng);
1093
		new_file_ed.size = new_file_ed.pos = strlen(strng);
5555 punk_joker 1094
	}
6008 leency 1095
	if (new_element_active==3) DrawEolitePopup(T_RENAME, T_CANCEL);
1096
	else DrawEolitePopup(T_CREATE, T_CANCEL);
6678 leency 1097
	new_file_ed.left = dform_x+10;
6278 leency 1098
	DrawEditBox(#new_file_ed);
5555 punk_joker 1099
}
1100
 
5576 pavelyakov 1101
void FnProcess(byte N)
3434 leency 1102
{
1103
	switch(N)
1104
	{
1105
		case 1:
4395 punk_joker 1106
			if (!active_about)
1107
			{
5576 pavelyakov 1108
				about_stak = malloc(4096);
1109
				about_window = CreateThread(#about_dialog,about_stak+4092);
4395 punk_joker 1110
				break;
1111
			}
1112
			else
1113
			{
1114
				ActivateWindow(GetProcessSlot(about_window));
1115
			}
3434 leency 1116
			break;
1117
		case 2:
1118
			if (!files.count) break;
5581 leency 1119
			NewElement_Form(RENAME_ITEM, #file_name);
3434 leency 1120
			break;
1121
		case 3:
5591 pavelyakov 1122
			if (!itdir) RunProgram("/sys/tinypad", #file_path);
3434 leency 1123
			break;
1124
		case 4:
5591 pavelyakov 1125
			if (!itdir) RunProgram("/sys/develop/heed", #file_path);
3434 leency 1126
			break;
3440 leency 1127
		case 5: //refresh cur dir & devs
7244 leency 1128
			if (two_panels.checked)
5719 leency 1129
			{
5723 leency 1130
				DrawFilePanels();
5719 leency 1131
			}
1132
			else
1133
			{
1134
				Tip(56, T_DEVICES, 55, "-");
1135
				Open_Dir(#path,WITH_REDRAW);
1136
				pause(10);
6034 leency 1137
				SystemDiscs.Get();
5719 leency 1138
				Open_Dir(#path,WITH_REDRAW);
5723 leency 1139
				DrawDeviceAndActionsLeftPanel();
5719 leency 1140
			}
3434 leency 1141
			break;
1142
		case 6:
5581 leency 1143
			NewElement_Form(CREATE_FOLDER, T_NEW_FOLDER);
3434 leency 1144
			break;
1145
		case 7:
5581 leency 1146
			NewElement_Form(CREATE_FILE, T_NEW_FILE);
3434 leency 1147
			break;
5447 punk_joker 1148
		case 8:
5576 pavelyakov 1149
			properties_stak = malloc(8096);
1150
			CreateThread(#properties_dialog, properties_stak+8092);
5447 punk_joker 1151
			break;
3434 leency 1152
		case 10: //F10
5753 leency 1153
			if (!active_settings)
5416 punk_joker 1154
			{
5576 pavelyakov 1155
				settings_stak = malloc(4096);
1156
				settings_window = CreateThread(#settings_dialog, settings_stak+4092);
5416 punk_joker 1157
				break;
1158
			}
1159
			else
1160
			{
1161
				ActivateWindow(GetProcessSlot(settings_window));
1162
			}
3434 leency 1163
			break;
1164
	}
1165
}
1166
 
5738 leency 1167
void ChangeActivePanel()
1168
{
1169
	llist_copy(#files_active, #files_inactive);
1170
	llist_copy(#files_inactive, #files);
1171
	strcpy(#active_path, #inactive_path);
1172
	strcpy(#inactive_path, #path);
1173
	DrawFilePanels();
1174
}
1175
 
3434 leency 1176
 
3363 leency 1177
stop: