Subversion Repositories Kolibri OS

Rev

Rev 6759 | 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
 
6805 leency 3
#include "../lib/kfont.h"
5886 pavelyakov 4
#include "../lib/io.h"
5819 leency 5
#include "../lib/gui.h"
6
#include "../lib/list_box.h"
6042 leency 7
#include "../lib/menu.h"
5819 leency 8
#include "../lib/obj/box_lib.h"
9
#include "../lib/obj/libini.h"
10
#include "../lib/obj/iconv.h"
11
#include "../lib/obj/proc_lib.h"
12
#include "../lib/patterns/libimg_load_skin.h"
13
#include "../lib/patterns/simple_open_dialog.h"
14
 
15
#define TOOLBAR_H 34
5923 leency 16
#define TOOLBAR_ICON_WIDTH  26
17
#define TOOLBAR_ICON_HEIGHT 24
5819 leency 18
 
5923 leency 19
#define DEFAULT_EDITOR "/sys/tinypad"
20
 
5980 leency 21
#define INTRO_TEXT "This is a plain Text Reader.\nTry to open some text file."
6753 leency 22
#define VERSION "Text Reader v1.2"
5962 leency 23
#define ABOUT "Idea: Leency, punk_joker
24
Code: Leency, Veliant, KolibriOS Team
5923 leency 25
 
5962 leency 26
Hotkeys:
27
Ctrl+O - open file
28
Ctrl+Up - bigger font
29
Ctrl+Down - smaller font
30
Ctrl+Tab - select charset
31
Ctrl+E - edit current document
32
 
33
Press any key..."
34
 
5819 leency 35
char default_dir[] = "/rd/1";
36
od_filter filter2 = {0,0};
37
 
38
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};
39
llist list;
40
 
41
proc_info Form;
42
char title[4196];
43
 
44
byte help_opened = false;
45
 
46
enum {
5962 leency 47
	OPEN_FILE,
5819 leency 48
	MAGNIFY_MINUS,
49
	MAGNIFY_PLUS,
50
	CHANGE_ENCODING,
51
	RUN_EDIT,
52
	SHOW_INFO,
53
};
54
 
55
#include "ini.h"
5980 leency 56
#include "gui.h"
57
#include "prepare_page.h"
5819 leency 58
 
5980 leency 59
 
5923 leency 60
void InitDlls()
61
{
62
	load_dll(boxlib,    #box_lib_init,   0);
63
	load_dll(libio,     #libio_init,     1);
64
	load_dll(libimg,    #libimg_init,    1);
65
	load_dll(libini,    #lib_init,       1);
66
	load_dll(iconv_lib, #iconv_open,     0);
67
	load_dll(Proc_lib,  #OpenDialog_init,0);
68
}
69
 
70
 
5819 leency 71
void main()
5923 leency 72
{
5987 leency 73
	InitDlls();
5819 leency 74
	OpenDialog_init stdcall (#o_dialog);
5987 leency 75
	label.init(DEFAULT_FONT);
5819 leency 76
	Libimg_LoadImage(#skin, abspath("toolbar.png"));
77
	LoadIniSettings();
78
	OpenFile(#param);
79
	list.no_selection = true;
80
	SetEventMask(10000000000000000000000001100111b);
81
	loop()
82
	{
5923 leency 83
		switch(WaitEvent())
84
		{
85
			case evMouse:
86
				HandleMouseEvent();
5819 leency 87
				break;
5923 leency 88
			case evKey:
89
				HandleKeyEvent();
90
				break;
91
			case evButton:
92
				HandleButtonEvent();
93
				break;
94
			case evReDraw:
6042 leency 95
				if (menu.list.cur_y) {
96
					encoding = menu.list.cur_y - 10;
5923 leency 97
					OpenFile(#param);
98
					PreparePage();
6753 leency 99
					menu.list.cur_y = NULL;
5923 leency 100
				};
101
				draw_window();
102
		}
5819 leency 103
	}
104
}
105
 
5980 leency 106
 
107
void HandleButtonEvent()
5819 leency 108
{
5923 leency 109
 
5980 leency 110
	byte btn = GetButtonID();
111
	if (btn==1) {
112
		SaveIniSettings();
113
		ExitProcess();
114
	}
115
	btn-=10;
116
	switch(btn)
5923 leency 117
	{
5980 leency 118
		case OPEN_FILE:
119
			EventOpenFile();
120
			break;
121
		case MAGNIFY_PLUS:
122
			EventMagnifyPlus();
123
			break;
124
		case MAGNIFY_MINUS:
125
			EventMagnifyMinus();
126
			break;
127
		case CHANGE_ENCODING:
128
			EventChangeEncoding();
129
			break;
130
		case RUN_EDIT:
131
			EventRunEdit();
132
			break;
133
		case SHOW_INFO:
134
			EventShowInfo();
135
			break;
5923 leency 136
	}
5819 leency 137
}
138
 
139
 
5980 leency 140
void HandleKeyEvent()
5819 leency 141
{
5980 leency 142
	if (help_opened) {
143
		help_opened = false;
144
		DrawPage();
145
		return;
146
	}
147
	GetKeys();
148
	if (key_scancode==059) {
149
		EventShowInfo();
150
		return;
151
	}
152
	if (key_modifier & KEY_LCTRL) || (key_modifier & KEY_RCTRL) {
153
		switch (key_scancode)
154
		{
155
			case 024:
156
				EventOpenFile();
157
				break;
158
			case SCAN_CODE_UP:
159
				EventMagnifyPlus();
160
				break;
161
			case SCAN_CODE_DOWN:
162
				EventMagnifyMinus();
163
				break;
164
			case 018:
165
				EventRunEdit();
166
				break;
167
			case SCAN_CODE_TAB:
168
				EventChangeEncoding();
169
				break;
5819 leency 170
		}
5980 leency 171
		return;
5819 leency 172
	}
5980 leency 173
	if (list.ProcessKey(key_scancode))
174
		DrawPage();
175
}
5819 leency 176
 
177
 
5980 leency 178
void HandleMouseEvent()
179
{
180
	mouse.get();
181
	list.wheel_size = 7;
182
	if (list.MouseScroll(mouse.vert)) {
183
		DrawPage();
184
		return;
5819 leency 185
	}
5980 leency 186
	scrollbar_v_mouse (#scroll);
187
	if (list.first != scroll.position) {
188
		list.first = scroll.position;
189
		DrawPage();
190
	}
5819 leency 191
}
192
 
5980 leency 193
 
194
/* ----------------------------------------------------- */
195
 
196
void EventOpenFile()
5819 leency 197
{
5980 leency 198
	OpenDialog_start stdcall (#o_dialog);
199
	OpenFile(#openfile_path);
200
	PreparePage();
5819 leency 201
}
202
 
5980 leency 203
void EventMagnifyPlus()
5819 leency 204
{
5987 leency 205
	label.size.pt++;
206
	if(!label.changeSIZE())
207
		label.size.pt--;
5980 leency 208
	else
209
		PreparePage();
5819 leency 210
}
211
 
5980 leency 212
void EventMagnifyMinus()
213
{
5987 leency 214
	label.size.pt--;
215
	if(!label.changeSIZE())
216
		label.size.pt++;
5980 leency 217
	else
218
		PreparePage();
219
}
220
 
221
void EventRunEdit()
222
{
223
	io.run(DEFAULT_EDITOR, #param);
224
}
225
 
226
void EventChangeEncoding()
227
{
6042 leency 228
	menu.selected = encoding + 1;
229
	menu.show(Form.left+104, Form.top+29+skin_height, 130, "UTF-8\nKOI8-RU\nCP1251\nCP1252\nISO8859-5\nCP866", 10);
5980 leency 230
}
231
 
232
void EventShowInfo() {
233
	help_opened = true;
234
	DrawBar(list.x, list.y, list.w, list.h, 0xFFFfff);
235
	WriteText(list.x + 10, list.y + 10, 10000001b, 0x555555, VERSION);
236
	WriteTextLines(list.x + 10, list.y+40, 10110000b, 0, ABOUT, 20);
237
}
238
 
239
/* ------------------------------------------- */
240
 
241
 
5819 leency 242
void OpenFile(dword f_path)
243
{
244
	int tmp;
245
	if (ESBYTE[f_path]) {
246
		strcpy(#param, f_path);
247
		io.read(#param);
248
		strcpy(#title, #param);
249
		strcat(#title, " - Text Reader");
250
	}
251
	else {
252
		if (list.count) return;
5923 leency 253
		io.buffer_data = INTRO_TEXT;
5819 leency 254
		strcpy(#title, "Text Reader");
255
	}
256
	if (encoding!=CH_CP866) ChangeCharset(charsets[encoding], "CP866", io.buffer_data);
257
	list.KeyHome();
258
	list.ClearList();
259
}
260
 
5980 leency 261
void draw_window()
262
{
6746 leency 263
	DefineAndDrawWindow(Form.left,Form.top,Form.width,Form.height,0x73,0,#title,0);
5980 leency 264
	GetProcessInfo(#Form, SelfInfo);
265
	if (Form.status_window>2) return;
266
 
267
	if (Form.width  < 200) { MoveSize(OLD,OLD,200,OLD); return; }
268
	if (Form.height < 200) { MoveSize(OLD,OLD,OLD,200); return; }
269
 
270
	DrawBar(0, 0, Form.cwidth, TOOLBAR_H - 1, 0xe1e1e1);
271
	DrawBar(0, TOOLBAR_H - 1, Form.cwidth, 1, 0x7F7F7F);
272
 
273
	DrawToolbarButton(OPEN_FILE,       8);
274
	DrawToolbarButton(MAGNIFY_PLUS,    42);
275
	DrawToolbarButton(MAGNIFY_MINUS,   67);
276
	DrawToolbarButton(CHANGE_ENCODING, 101);
277
	DrawToolbarButton(RUN_EDIT,        135);
278
	DrawToolbarButton(SHOW_INFO,       Form.cwidth - 34);
279
 
280
	if ((Form.cwidth-scroll.size_x-1 == list.w) &&
281
		(Form.cheight-TOOLBAR_H == list.h) &&
282
		(list.count)
283
	)
284
	{
285
		DrawPage();
286
	} else {
287
		PreparePage();
288
	}
289
	DrawRectangle(scroll.start_x, scroll.start_y, scroll.size_x, scroll.size_y-1, scroll.bckg_col);
5923 leency 290
}
5980 leency 291
 
292
void DrawPage()
293
{
5987 leency 294
	_PutImage(list.x,list.y,list.w,list.h,list.first*list.item_h*list.w*3 + label.raw);
5980 leency 295
	DrawScroller();
296
}