Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
5962 leency 1
#define MEMSIZE 4096*25
5819 leency 2
 
7466 leency 3
//===================================================//
4
//                                                   //
5
//                       LIB                         //
6
//                                                   //
7
//===================================================//
8
 
5886 pavelyakov 9
#include "../lib/io.h"
7288 leency 10
#include "../lib/gui.h"
5819 leency 11
#include "../lib/list_box.h"
7286 leency 12
#include "../lib/kfont.h"
7230 leency 13
 
5819 leency 14
#include "../lib/obj/box_lib.h"
15
#include "../lib/obj/libini.h"
7230 leency 16
#include "../lib/obj/libimg.h"
5819 leency 17
#include "../lib/obj/iconv.h"
18
#include "../lib/obj/proc_lib.h"
7230 leency 19
 
5819 leency 20
#include "../lib/patterns/simple_open_dialog.h"
21
 
7466 leency 22
//===================================================//
23
//                                                   //
24
//                       DATA                        //
25
//                                                   //
26
//===================================================//
27
 
5819 leency 28
#define TOOLBAR_H 34
5923 leency 29
#define TOOLBAR_ICON_WIDTH  26
30
#define TOOLBAR_ICON_HEIGHT 24
5819 leency 31
 
5923 leency 32
#define DEFAULT_EDITOR "/sys/tinypad"
33
 
5980 leency 34
#define INTRO_TEXT "This is a plain Text Reader.\nTry to open some text file."
7466 leency 35
#define VERSION "Text Reader v1.3"
5962 leency 36
#define ABOUT "Idea: Leency, punk_joker
37
Code: Leency, Veliant, KolibriOS Team
5923 leency 38
 
5962 leency 39
Hotkeys:
40
Ctrl+O - open file
7218 leency 41
Ctrl+I - show file properties
5962 leency 42
Ctrl+Up - bigger font
43
Ctrl+Down - smaller font
44
Ctrl+Tab - select charset
7462 leency 45
Ctrl+E - reopen current file in another app
5962 leency 46
 
47
Press any key..."
48
 
7466 leency 49
dword color_schemes[] = {
50
0xFFFfff, 0,
51
0xF0F0F0, 0,
7493 leency 52
0xFDF6E3, 0x101A21,
53
0xFCF0DA, 0x171501,
7466 leency 54
0xF0F0C7, 0,
55
0x282C34, 0xABB2BF,
56
0x282923, 0xD8D8D2
57
};
58
 
59
char color_scheme_names[] =
60
"White & Black
61
Grey & Black      RtfRead
7493 leency 62
Linen & Black     Horst
63
Antique & Black   Pocket
7466 leency 64
Lemon & Black     Fb2Read
65
DarkGrey & Grey   Godot
66
DarkGrey & Grey   Monokai";
67
 
5819 leency 68
char default_dir[] = "/rd/1";
7286 leency 69
od_filter filter2 = { 8, "TXT\0\0" };
5819 leency 70
 
71
scroll_bar scroll = { 15,200,398,44,0,2,115,15,0,0xeeeeee,0xBBBbbb,0xeeeeee,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
72
llist list;
73
 
74
proc_info Form;
75
char title[4196];
76
 
7218 leency 77
bool help_opened = false;
7466 leency 78
int charsets_mx;
79
int reopenin_mx;
80
int colscheme_mx;
5819 leency 81
 
7466 leency 82
int curcol_scheme;
83
 
5819 leency 84
enum {
5962 leency 85
	OPEN_FILE,
5819 leency 86
	MAGNIFY_MINUS,
87
	MAGNIFY_PLUS,
88
	CHANGE_ENCODING,
89
	RUN_EDIT,
90
	SHOW_INFO,
7466 leency 91
	SHOW_FILE_PROPERTIES,
92
	COLOR_SCHEME
5819 leency 93
};
94
 
7051 leency 95
int encoding;
96
 
7466 leency 97
dword bg_color;
98
dword text_color;
7462 leency 99
 
7466 leency 100
//===================================================//
101
//                                                   //
102
//                 INTERNAL INCLUDES                 //
103
//                                                   //
104
//===================================================//
105
 
5819 leency 106
#include "ini.h"
5980 leency 107
#include "prepare_page.h"
5819 leency 108
 
7466 leency 109
//===================================================//
110
//                                                   //
111
//                       CODE                        //
112
//                                                   //
113
//===================================================//
114
 
5923 leency 115
void InitDlls()
116
{
117
	load_dll(boxlib,    #box_lib_init,   0);
118
	load_dll(libio,     #libio_init,     1);
119
	load_dll(libimg,    #libimg_init,    1);
120
	load_dll(libini,    #lib_init,       1);
121
	load_dll(iconv_lib, #iconv_open,     0);
122
	load_dll(Proc_lib,  #OpenDialog_init,0);
123
}
124
 
5819 leency 125
void main()
5923 leency 126
{
5987 leency 127
	InitDlls();
5819 leency 128
	OpenDialog_init stdcall (#o_dialog);
7516 leency 129
	if (param) strcpy(#openfile_path, #param);
7286 leency 130
	LoadIniSettings();
7466 leency 131
	EventSetColorScheme(curcol_scheme);
6806 leency 132
	kfont.init(DEFAULT_FONT);
5819 leency 133
	Libimg_LoadImage(#skin, abspath("toolbar.png"));
134
	OpenFile(#param);
135
	list.no_selection = true;
7227 leency 136
	SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER);
5819 leency 137
	loop()
138
	{
5923 leency 139
		switch(WaitEvent())
140
		{
141
			case evMouse:
142
				HandleMouseEvent();
5819 leency 143
				break;
5923 leency 144
			case evKey:
145
				HandleKeyEvent();
146
				break;
147
			case evButton:
148
				HandleButtonEvent();
149
				break;
150
			case evReDraw:
7462 leency 151
				EventMenuClick();
5923 leency 152
				draw_window();
153
		}
5819 leency 154
	}
155
}
156
 
7466 leency 157
//===================================================//
158
//                                                   //
159
//                      EVENTS                       //
160
//                                                   //
161
//===================================================//
5980 leency 162
 
163
void HandleButtonEvent()
5819 leency 164
{
5923 leency 165
 
5980 leency 166
	byte btn = GetButtonID();
167
	if (btn==1) {
168
		SaveIniSettings();
169
		ExitProcess();
170
	}
171
	btn-=10;
172
	switch(btn)
5923 leency 173
	{
5980 leency 174
		case OPEN_FILE:
175
			EventOpenFile();
176
			break;
7218 leency 177
		case SHOW_FILE_PROPERTIES:
178
			EventShowFileProperties();
179
			break;
5980 leency 180
		case MAGNIFY_PLUS:
181
			EventMagnifyPlus();
182
			break;
183
		case MAGNIFY_MINUS:
184
			EventMagnifyMinus();
185
			break;
186
		case CHANGE_ENCODING:
7462 leency 187
			EventShowEncodingList();
5980 leency 188
			break;
189
		case RUN_EDIT:
7466 leency 190
			EventShowReopenMenu();
5980 leency 191
			break;
7466 leency 192
		case COLOR_SCHEME:
193
			EventShowColorSchemesList();
194
			break;
5980 leency 195
		case SHOW_INFO:
196
			EventShowInfo();
197
			break;
5923 leency 198
	}
5819 leency 199
}
200
 
201
 
5980 leency 202
void HandleKeyEvent()
5819 leency 203
{
5980 leency 204
	if (help_opened) {
205
		help_opened = false;
206
		DrawPage();
207
		return;
208
	}
209
	GetKeys();
7218 leency 210
	if (key_scancode == SCAN_CODE_F1) {
5980 leency 211
		EventShowInfo();
212
		return;
213
	}
214
	if (key_modifier & KEY_LCTRL) || (key_modifier & KEY_RCTRL) {
215
		switch (key_scancode)
216
		{
7218 leency 217
			case SCAN_CODE_KEY_O:
5980 leency 218
				EventOpenFile();
219
				break;
7218 leency 220
			case SCAN_CODE_KEY_I:
221
				EventShowFileProperties();
222
				break;
5980 leency 223
			case SCAN_CODE_UP:
224
				EventMagnifyPlus();
225
				break;
226
			case SCAN_CODE_DOWN:
227
				EventMagnifyMinus();
228
				break;
7218 leency 229
			case SCAN_CODE_KEY_E:
7466 leency 230
				EventShowReopenMenu();
5980 leency 231
				break;
232
			case SCAN_CODE_TAB:
233
				EventChangeEncoding();
234
				break;
5819 leency 235
		}
5980 leency 236
		return;
5819 leency 237
	}
5980 leency 238
	if (list.ProcessKey(key_scancode))
239
		DrawPage();
240
}
5819 leency 241
 
242
 
5980 leency 243
void HandleMouseEvent()
244
{
245
	mouse.get();
246
	list.wheel_size = 7;
247
	if (list.MouseScroll(mouse.vert)) {
248
		DrawPage();
249
		return;
5819 leency 250
	}
5980 leency 251
	scrollbar_v_mouse (#scroll);
252
	if (list.first != scroll.position) {
253
		list.first = scroll.position;
254
		DrawPage();
255
	}
5819 leency 256
}
257
 
5980 leency 258
/* ----------------------------------------------------- */
259
 
260
void EventOpenFile()
5819 leency 261
{
5980 leency 262
	OpenDialog_start stdcall (#o_dialog);
7286 leency 263
	if (o_dialog.status) {
264
		OpenFile(#openfile_path);
265
		PreparePage();
266
	}
5819 leency 267
}
268
 
7218 leency 269
void EventShowFileProperties()
270
{
271
	char ss_param[4096];
272
	if (!param) return;
7768 leency 273
	strcpy(#ss_param, "-p ");
274
	strcpy(#ss_param+3, #param);
7462 leency 275
	RunProgram("/sys/File managers/Eolite", #ss_param);
7218 leency 276
}
277
 
5980 leency 278
void EventMagnifyPlus()
5819 leency 279
{
6806 leency 280
	kfont.size.pt++;
281
	if(!kfont.changeSIZE())
282
		kfont.size.pt--;
5980 leency 283
	else
284
		PreparePage();
5819 leency 285
}
286
 
5980 leency 287
void EventMagnifyMinus()
288
{
6806 leency 289
	kfont.size.pt--;
290
	if(!kfont.changeSIZE())
291
		kfont.size.pt++;
5980 leency 292
	else
293
		PreparePage();
294
}
295
 
7466 leency 296
void EventShowEncodingList()
5980 leency 297
{
7466 leency 298
	menu.selected = encoding + 1;
299
	menu.show(Form.left+5 + charsets_mx, Form.top+29+skin_height, 130,
300
		"UTF-8\nKOI8-RU\nCP1251\nCP1252\nISO8859-5\nCP866", 10);
301
}
302
 
303
void EventShowReopenMenu()
304
{
7462 leency 305
	menu.selected = 0;
7466 leency 306
	menu.show(Form.left+5 + reopenin_mx, Form.top+29+skin_height, 130,
307
		"Tinypad\nTextEdit\nWebView\nFB2Read\nHexView\nOther", 20);
5980 leency 308
}
309
 
7466 leency 310
void EventShowColorSchemesList()
5980 leency 311
{
7466 leency 312
	menu.selected = curcol_scheme + 1;
313
	menu.show(Form.left+5 + colscheme_mx, Form.top+29+skin_height, 175, #color_scheme_names, 30);
5980 leency 314
}
315
 
7466 leency 316
void EventSetColorScheme(dword _setn)
317
{
318
	curcol_scheme = _setn;
319
	bg_color   = color_schemes[curcol_scheme*2];
320
	text_color = color_schemes[curcol_scheme*2+1];
321
}
322
 
5980 leency 323
void EventShowInfo() {
324
	help_opened = true;
325
	DrawBar(list.x, list.y, list.w, list.h, 0xFFFfff);
326
	WriteText(list.x + 10, list.y + 10, 10000001b, 0x555555, VERSION);
327
	WriteTextLines(list.x + 10, list.y+40, 10110000b, 0, ABOUT, 20);
328
}
329
 
7462 leency 330
void EventChangeEncoding(dword id)
331
{
332
	encoding = id;
333
	OpenFile(#openfile_path);
334
	PreparePage();
335
	draw_window();
336
}
337
 
338
void EventOpenFileInAnotherProgram(dword _app)
339
{
340
	RunProgram(_app, #param);
341
}
342
 
343
void EventMenuClick()
344
{
7466 leency 345
	byte open_param[4096];
7462 leency 346
	switch(menu.cur_y)
347
	{
348
		//Encoding
349
		case 10...15:
350
			EventChangeEncoding(menu.cur_y-10);
351
			break;
352
		//Reopen
353
		case 20:
354
			EventOpenFileInAnotherProgram("/sys/tinypad");
355
			break;
356
		case 21:
357
			EventOpenFileInAnotherProgram("/sys/develop/t_edit");
358
			break;
359
		case 22:
360
			EventOpenFileInAnotherProgram("/sys/network/webview");
361
			break;
362
		case 23:
363
			EventOpenFileInAnotherProgram("/sys/fb2read");
364
			break;
365
		case 24:
366
			EventOpenFileInAnotherProgram("/sys/develop/heed");
367
			break;
7466 leency 368
		case 25:
7768 leency 369
			open_param[0]='~';
370
			strcpy(#open_param+1,#param);
7466 leency 371
			RunProgram("/sys/@open", #open_param);
372
			break;
373
		//ColorSchemes
374
		case 30...38:
375
			EventSetColorScheme(menu.cur_y-30);
376
			PreparePage();
377
			break;
7462 leency 378
	}
379
	menu.cur_y = 0;
380
}
381
 
7466 leency 382
//===================================================//
383
//                                                   //
384
//               DRAWS AND OTHER FUNCS               //
385
//                                                   //
386
//===================================================//
5980 leency 387
 
5819 leency 388
void OpenFile(dword f_path)
389
{
390
	int tmp;
391
	if (ESBYTE[f_path]) {
392
		strcpy(#param, f_path);
393
		io.read(#param);
394
		strcpy(#title, #param);
395
		strcat(#title, " - Text Reader");
396
	}
397
	else {
398
		if (list.count) return;
5923 leency 399
		io.buffer_data = INTRO_TEXT;
5819 leency 400
		strcpy(#title, "Text Reader");
401
	}
402
	if (encoding!=CH_CP866) ChangeCharset(charsets[encoding], "CP866", io.buffer_data);
403
	list.KeyHome();
404
	list.ClearList();
405
}
406
 
5980 leency 407
void draw_window()
408
{
7466 leency 409
	#define BUTTONS_GAP 6
410
	#define BLOCKS_GAP 15
7218 leency 411
	#define TOOLBAR_BUTTON_WIDTH 26
412
	incn x;
6746 leency 413
	DefineAndDrawWindow(Form.left,Form.top,Form.width,Form.height,0x73,0,#title,0);
5980 leency 414
	GetProcessInfo(#Form, SelfInfo);
415
	if (Form.status_window>2) return;
416
 
417
	if (Form.width  < 200) { MoveSize(OLD,OLD,200,OLD); return; }
418
	if (Form.height < 200) { MoveSize(OLD,OLD,OLD,200); return; }
419
 
420
	DrawBar(0, 0, Form.cwidth, TOOLBAR_H - 1, 0xe1e1e1);
421
	DrawBar(0, TOOLBAR_H - 1, Form.cwidth, 1, 0x7F7F7F);
422
 
7218 leency 423
	x.n = 0;
424
	DrawToolbarButton(OPEN_FILE,       x.inc(8));
7466 leency 425
	DrawToolbarButton(SHOW_FILE_PROPERTIES, x.inc(TOOLBAR_BUTTON_WIDTH + BUTTONS_GAP));
426
 
427
	DrawToolbarButton(MAGNIFY_MINUS,   x.inc(TOOLBAR_BUTTON_WIDTH + BLOCKS_GAP));
7428 leency 428
	DrawToolbarButton(MAGNIFY_PLUS,    x.inc(TOOLBAR_BUTTON_WIDTH - 1));
7466 leency 429
	DrawToolbarButton(COLOR_SCHEME,    x.inc(TOOLBAR_BUTTON_WIDTH + BUTTONS_GAP)); colscheme_mx = x.n;
430
 
431
	DrawToolbarButton(CHANGE_ENCODING, x.inc(TOOLBAR_BUTTON_WIDTH + BLOCKS_GAP)); charsets_mx = x.n;
432
	DrawToolbarButton(RUN_EDIT,        x.inc(TOOLBAR_BUTTON_WIDTH + BLOCKS_GAP)); reopenin_mx = x.n;
5980 leency 433
	DrawToolbarButton(SHOW_INFO,       Form.cwidth - 34);
434
 
435
	if ((Form.cwidth-scroll.size_x-1 == list.w) &&
436
		(Form.cheight-TOOLBAR_H == list.h) &&
437
		(list.count)
438
	)
439
	{
440
		DrawPage();
441
	} else {
442
		PreparePage();
7466 leency 443
	}
444
 
5980 leency 445
	DrawRectangle(scroll.start_x, scroll.start_y, scroll.size_x, scroll.size_y-1, scroll.bckg_col);
5923 leency 446
}
5980 leency 447
 
448
void DrawPage()
449
{
6808 leency 450
	kfont.ShowBufferPart(list.x, list.y, list.w, list.h, list.first*list.item_h*list.w);
5980 leency 451
	DrawScroller();
7286 leency 452
}
453
 
454
void DrawToolbarButton(char image_id, int x)
455
{
456
	DefineButton(x+1, 6, TOOLBAR_ICON_WIDTH-2, TOOLBAR_ICON_HEIGHT-2, 10+image_id + BT_HIDE, 0);
7428 leency 457
	img_draw stdcall(skin.image, x, 5, TOOLBAR_ICON_WIDTH, TOOLBAR_ICON_HEIGHT, TOOLBAR_ICON_WIDTH-1*image_id, 0);
7286 leency 458
}
459
 
460
void DrawScroller()
461
{
462
	scroll.max_area = list.count;
463
	scroll.cur_area = list.visible;
464
	scroll.position = list.first;
465
	scroll.all_redraw = 0;
466
	scroll.start_x = list.x + list.w;
467
	scroll.start_y = list.y;
468
	scroll.size_y = list.h;
469
	scrollbar_v_draw(#scroll);
5980 leency 470
}