Subversion Repositories Kolibri OS

Rev

Rev 6404 | Rev 6504 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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