Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
5496 leency 1
#include 
4680 right-hear 2
#define _WIN32
3
#include "fitz.h"
4
#include "mupdf.h"
5
#include "muxps.h"
6
#include "pdfapp.h"
4696 right-hear 7
#include "icons/allbtns.h"
4680 right-hear 8
 
5496 leency 9
// need to be a part of menuet/os.h
10
#define BT_DEL      0x80000000
11
#define BT_HIDE     0x40000000
12
#define BT_NOFRAME  0x20000000
4680 right-hear 13
 
5496 leency 14
#define evReDraw  1
15
#define evKey     2
16
#define evButton  3
17
#define evMouse   6
18
#define evNetwork 8
4680 right-hear 19
 
5496 leency 20
#define ASCII_KEY_LEFT  176
21
#define ASCII_KEY_RIGHT 179
22
#define ASCII_KEY_DOWN  177
23
#define ASCII_KEY_UP    178
24
#define ASCII_KEY_HOME  180
25
#define ASCII_KEY_END   181
26
#define ASCII_KEY_PGDN  183
27
#define ASCII_KEY_PGUP  184
4680 right-hear 28
 
5496 leency 29
#define ASCII_KEY_BS    8
30
#define ASCII_KEY_TAB   9
31
#define ASCII_KEY_ENTER 13
32
#define ASCII_KEY_ESC   27
33
#define ASCII_KEY_DEL   182
34
#define ASCII_KEY_INS   185
35
#define ASCII_KEY_SPACE 032
4680 right-hear 36
 
5496 leency 37
struct blit_call
4680 right-hear 38
{
39
   int dstx;
40
   int dsty;
41
   int w;
42
   int h;
43
 
44
   int srcx;
45
   int srcy;
46
   int srcw;
47
   int srch;
48
 
49
   unsigned char *d;
50
   int   stride;
51
};
52
 
53
void blit(int dstx, int dsty, int w, int h, int srcx, int srcy,int srcw, int srch, int stride, char *d) //Вызов сисфункции Blitter
54
{
5496 leency 55
	struct blit_call image;
4680 right-hear 56
	image.dstx=dstx;
57
	image.dsty=dsty;
58
	image.w=w;
59
	image.h=h;
60
	image.srcx=srcx;
61
	image.srcy=srcy;
62
	image.srcw=srcw;
63
	image.srch=srch;
64
	image.stride=stride;
65
	image.d=d;
5496 leency 66
	asm ("int $0x40"::"a"(73),"b"(0),"c"(&image));
67
}
4680 right-hear 68
 
69
 
5496 leency 70
int __menuet__get_mouse_wheels(void)
71
{
72
    int val;
73
    asm ("int $0x40":"=a"(val):"a"(37),"b"(7));
74
    return val;
75
};
4680 right-hear 76
 
5496 leency 77
/*==== DATA ====*/
78
 
79
static char Title[1024] = "uPDF";
80
static char * filename = "/hd0/1/yand.pdf";
81
static pdfapp_t gapp;
82
char debugstr[256];
83
char do_not_blit=0;
84
 
85
#define TOOLBAR_HEIGHT 34
86
struct process_table_entry Form;
87
 
88
#define DOCUMENT_BORDER 0x979797
89
#define DOCUMENT_BG 0xABABAB
90
 
5508 leency 91
#define SCROLL_H 25
5496 leency 92
 
5508 leency 93
short show_area_w = 65;
94
short show_area_x;
95
 
96
char key_mode_enter_page_number;
97
int new_page_number;
98
 
99
static short window_center, draw_h, draw_w;
100
 
5496 leency 101
const char *help[] = {
102
	"Keys:",
103
	"  ",
104
	"PageUp   - go to previous page",
105
	"PageDown - go to next page",
106
	"Home     - go to first page",
107
	"End      - go to last page",
108
	"Down arrow - scroll current page down",
109
	"Up arrow   - scroll current page up",
110
	"+/- - zoom in/out",
111
	"[ or l - rotate page 90 deg to the left",
112
	"] or r - rotate page 90 deg to the right",
5508 leency 113
	"g - grayscale on/off",
5496 leency 114
	"  ",
115
	"Press Escape to hide help",
116
 
117
};
118
 
119
/*==== CODE ====*/
120
 
121
 
122
// not implemented yet
123
void wincursor(pdfapp_t *app, int curs) { }
124
void winhelp(pdfapp_t *app) { }
125
void winresize(pdfapp_t *app, int w, int h) { }
126
void windocopy(pdfapp_t *app) { }
127
void winopenuri(pdfapp_t *app, char *buf) { }
128
void winrepaintsearch(pdfapp_t *app) { }
129
 
130
 
4680 right-hear 131
void winwarn(pdfapp_t *app, char *msg)
132
{
133
	fprintf(stderr, "mupdf: %s\n", msg);
134
}
135
 
5496 leency 136
 
4680 right-hear 137
void winerror(pdfapp_t *app, fz_error error)
138
{
139
	fz_catch(error, "aborting");
140
	exit(1);
141
}
142
 
5496 leency 143
 
4680 right-hear 144
char *winpassword(pdfapp_t *app, char *filename)
145
{
146
	char *r = "";
147
	return r;
148
}
149
 
150
 
151
void wintitle(pdfapp_t *app, char *s)
152
{
5496 leency 153
	char* param = *(char**)0x1C;
154
	sprintf(Title,"%s - uPDF", strrchr(param, '/') + 1 );
4680 right-hear 155
}
156
 
157
 
158
void winreloadfile(pdfapp_t *app)
159
{
5496 leency 160
	//pdfapp_close(app);
161
	//pdfapp_open(app, filename, 0, 1);
4680 right-hear 162
}
163
 
164
void winclose(pdfapp_t *app)
165
{
166
	pdfapp_close(&gapp);
167
	__menuet__sys_exit();
168
}
169
 
5496 leency 170
 
171
void winrepaint(pdfapp_t *app)
4680 right-hear 172
{
5496 leency 173
	winblit(&gapp);
4680 right-hear 174
}
175
 
176
 
5496 leency 177
void winblit(pdfapp_t *app)
4680 right-hear 178
{
179
 
5496 leency 180
	if (do_not_blit) return;
4680 right-hear 181
 
5508 leency 182
	if (key_mode_enter_page_number==1) HandleNewPageNumber(0); else DrawPagination();
183
 
5496 leency 184
	if (Form.client_width > gapp.image->w) window_center = (Form.client_width - gapp.image->w) / 2; else window_center = 0;
4680 right-hear 185
 
5821 leency 186
	gapp.panx = 0;
5496 leency 187
	if (gapp.image->n == 4)
188
		 	blit(window_center + Form.client_left,
189
		 		Form.client_top + TOOLBAR_HEIGHT,
190
		 		Form.client_width,
191
		 		Form.client_height - TOOLBAR_HEIGHT,
192
		 		gapp.panx,
193
		 		gapp.pany,
194
		 		gapp.image->w,
195
		 		gapp.image->h,
196
		 		gapp.image->w * gapp.image->n,
197
		 		gapp.image->samples
198
		 	);
4680 right-hear 199
	else if (gapp.image->n == 2)
200
	{
201
		int i = gapp.image->w*gapp.image->h;
202
		unsigned char *color = malloc(i*4);
203
		if (color != NULL)
204
		{
205
			unsigned char *s = gapp.image->samples;
206
			unsigned char *d = color;
207
			for (; i > 0 ; i--)
208
			{
209
				d[2] = d[1] = d[0] = *s++;
210
				d[3] = *s++;
211
				d += 4;
212
			}
5496 leency 213
			blit(window_center + Form.client_left,
214
				Form.client_top + TOOLBAR_HEIGHT,
215
				Form.client_width,
216
				Form.client_height - TOOLBAR_HEIGHT,
217
		 		gapp.panx,
218
		 		gapp.pany,
219
				gapp.image->w,
220
				gapp.image->h,
221
				gapp.image->w * 4,
222
				color
223
			);
4680 right-hear 224
			free(color);
225
		}
5508 leency 226
	}
227
}
228
 
229
 
230
void DrawPageSides(void)
231
{
232
	if (Form.client_width > gapp.image->w) window_center = (Form.client_width - gapp.image->w) / 2; else window_center = 0;
233
	if (gapp.image->h < Form.client_height - TOOLBAR_HEIGHT) draw_h = gapp.image->h - gapp.pany; else draw_h = Form.client_height - TOOLBAR_HEIGHT;
234
	if (gapp.image->w < Form.client_width)
5496 leency 235
	{
5508 leency 236
		__menuet__bar(0, TOOLBAR_HEIGHT, window_center-1, Form.client_height - TOOLBAR_HEIGHT, DOCUMENT_BG);
237
		__menuet__bar(window_center-1, TOOLBAR_HEIGHT, 1, draw_h, DOCUMENT_BORDER);
238
		__menuet__bar(window_center + gapp.image->w, TOOLBAR_HEIGHT, 1, draw_h, DOCUMENT_BORDER);
239
		__menuet__bar(window_center + gapp.image->w+1, TOOLBAR_HEIGHT, Form.client_width - window_center - gapp.image->w - 1, Form.client_height - TOOLBAR_HEIGHT, DOCUMENT_BG);
4680 right-hear 240
	}
5508 leency 241
	if (gapp.image->w < Form.client_width)
242
	{
243
		draw_w = gapp.image->w + 2;
244
	}
245
	else
246
	{
247
		window_center = 1;
248
		draw_w = Form.client_width;
249
	}
250
	__menuet__bar(window_center - 1, gapp.image->h - gapp.pany + TOOLBAR_HEIGHT, draw_w, 1, DOCUMENT_BORDER);
251
	__menuet__bar(window_center - 1, gapp.image->h - gapp.pany + TOOLBAR_HEIGHT + 1, draw_w, Form.client_height - gapp.image->h - TOOLBAR_HEIGHT + gapp.pany - 1, DOCUMENT_BG);
4680 right-hear 252
}
253
 
254
 
5508 leency 255
 
4680 right-hear 256
int main (void)
257
{
5496 leency 258
	char ii, mouse_wheels_state;
4680 right-hear 259
	char* original_command_line = *(char**)0x1C;
260
	__menuet__debug_out(original_command_line);
261
 
262
	char buf[128];
263
	int resolution = 72;
5496 leency 264
	int pageno = 1;
265
	fz_accelerate();
266
	__menuet__debug_out("PDF init\n");
267
	pdfapp_init(&gapp);
4680 right-hear 268
	gapp.scrw = 600;
269
	gapp.scrh = 400;
270
	gapp.resolution = resolution;
271
	gapp.pageno = pageno;
272
	__menuet__debug_out("PDF Open\n");
273
	pdfapp_open(&gapp, original_command_line, 0, 0);
5496 leency 274
	__menuet__debug_out("PDF Opened\n");
5508 leency 275
	wintitle(&gapp, 0);
4680 right-hear 276
 
5496 leency 277
 
278
	__menuet__debug_out("Inital paint\n");
4680 right-hear 279
 
5496 leency 280
	int butt, key, screen_max_x, screen_max_y;
281
	__menuet__get_screen_max(&screen_max_x, &screen_max_y);
282
	__menuet__set_bitfield_for_wanted_events(EVENT_REDRAW+EVENT_KEY+EVENT_BUTTON+EVENT_MOUSE_CHANGE);
4680 right-hear 283
 
284
 for(;;)
285
 {
286
 
5496 leency 287
	switch(__menuet__wait_for_event())
288
	{
289
		case evReDraw:
5508 leency 290
			// gapp.shrinkwrap = 2;
5496 leency 291
			__menuet__window_redraw(1);
292
			__menuet__define_window(screen_max_x / 2 - 350, screen_max_y / 2 - 300, 700, 600, 0x73000000, 0x800000FF, Title);
293
			__menuet__window_redraw(2);
294
			__menuet__get_process_table(&Form, PID_WHOAMI);
295
			if (Form.window_state > 2) continue; //fix rolled up
296
			Form.client_width++; //fix for Menuet kernel bug
297
			Form.client_height++; //fix for Menuet kernel bug
298
			DrawWindow();
299
			break;
300
 
301
		case evKey:
302
			key = __menuet__getkey();
5508 leency 303
			if (key_mode_enter_page_number)
304
			{
305
				HandleNewPageNumber(key);
306
				break;
307
			}
5496 leency 308
			if (key==ASCII_KEY_ESC)  DrawWindow(); //close help
309
			if (key==ASCII_KEY_PGDN) pdfapp_onkey(&gapp, ']');
310
			if (key==ASCII_KEY_PGUP) pdfapp_onkey(&gapp, '[');
311
			if (key==ASCII_KEY_HOME) pdfapp_onkey(&gapp, 'g');
312
			if (key==ASCII_KEY_END ) pdfapp_onkey(&gapp, 'G');
5497 leency 313
			if (key=='g' ) pdfapp_onkey(&gapp, 'c');
314
			if ((key=='[' ) || (key=='l')) PageRotateLeft();
315
			if ((key==']' ) || (key=='r')) PageRotateRight();
5496 leency 316
			if (key==ASCII_KEY_DOWN ) PageScrollDown();
317
			if (key==ASCII_KEY_UP ) PageScrollUp();
318
			if (key=='-') PageZoomOut();
319
			if ((key=='=') || (key=='+')) PageZoomIn();
320
			break;
321
 
322
		case evButton:
323
			butt = __menuet__get_button_id();
324
			if(butt==1) __menuet__sys_exit();
325
			if(butt==10) ;//mag open file
326
			if(butt==11) PageZoomOut(); //magnify -
327
			if(butt==12) PageZoomIn(); //magnify +
328
			if(butt==13) //show help
329
			{
330
				__menuet__bar(0, TOOLBAR_HEIGHT, Form.client_width, Form.client_height - TOOLBAR_HEIGHT, 0xF2F2F2);
5821 leency 331
				__menuet__write_text(20, TOOLBAR_HEIGHT + 20      , 0x90000000, "uPDF for KolibriOS v1.21", 0);
332
				__menuet__write_text(21, TOOLBAR_HEIGHT + 20      , 0x90000000, "uPDF for KolibriOS v1.21", 0);
5496 leency 333
				for (ii=0; help[ii]!=0; ii++) {
334
					__menuet__write_text(20, TOOLBAR_HEIGHT + 60 + ii * 15, 0x80000000, help[ii], 0);
4680 right-hear 335
				}
5496 leency 336
			}
337
			if(butt==14) pdfapp_onkey(&gapp, '['); //previous page
338
			if(butt==15) pdfapp_onkey(&gapp, ']'); //next page
5508 leency 339
			if(butt==16) PageRotateLeft();
340
			if(butt==17) PageRotateRight();
341
			if(butt==20) GetNewPageNumber();
5496 leency 342
			break;
343
 
344
		case evMouse:
345
			if (mouse_wheels_state = __menuet__get_mouse_wheels())
346
			{
347
				if (mouse_wheels_state==1) { PageScrollDown(); PageScrollDown(); }
348
				if (mouse_wheels_state==-1) { PageScrollUp();  PageScrollUp();   }
349
			}
350
			//sprintf (debugstr, "mouse_wheels_state: %d \n", mouse_wheels_state);
351
			//__menuet__debug_out(debugstr);
352
			//pdfapp_onmouse(&gapp, int x, int y, int btn, int modifiers, int state)
353
			break;
354
	}
4680 right-hear 355
  }
356
}
5496 leency 357
 
358
 
5508 leency 359
void GetNewPageNumber(void)
360
{
361
	new_page_number = gapp.pageno;
362
	key_mode_enter_page_number = 1;
363
	HandleNewPageNumber(0);
364
}
5496 leency 365
 
5508 leency 366
void HandleNewPageNumber(unsigned char key)
5496 leency 367
{
5508 leency 368
	char label_new_page[8];
369
 
370
	if ((key >= '0') && (key <= '9'))
5496 leency 371
	{
5508 leency 372
		new_page_number = new_page_number * 10 + key - '0';
5496 leency 373
	}
5508 leency 374
	if (key == ASCII_KEY_BS)
375
	{
376
		new_page_number /= 10;
377
	}
378
	if (key == ASCII_KEY_ENTER)
379
	{
380
		ApplyNewPageNumber();
381
		return;
382
	}
383
	if (key==ASCII_KEY_ESC)
384
	{
385
		key_mode_enter_page_number = 0;
386
		DrawWindow();
387
		return;
388
	}
389
 
390
	itoa(new_page_number, label_new_page, 10);
391
	strcat(label_new_page, "_");
392
	__menuet__bar(show_area_x,  6, show_area_w, 22, 0xFDF88E);
393
	__menuet__write_text(show_area_x + show_area_w/2 - strlen(label_new_page)*6/2, 14, 0x000000, label_new_page, strlen(label_new_page));
394
 
395
	if (new_page_number > gapp.pagecount) ApplyNewPageNumber();
5496 leency 396
}
397
 
5508 leency 398
void ApplyNewPageNumber(void)
399
{
400
	key_mode_enter_page_number = 0;
401
	gapp.pageno = new_page_number -1;
402
	pdfapp_onkey(&gapp, ']');
403
}
5496 leency 404
 
405
void DrawPagination(void)
406
{
407
	char pages_display[12];
408
	__menuet__bar(show_area_x,  6, show_area_w, 22, 0xF4F4F4);
409
	sprintf (pages_display, "%d/%d", gapp.pageno, gapp.pagecount);
410
	__menuet__write_text(show_area_x + show_area_w/2 - strlen(pages_display)*6/2, 14, 0x000000, pages_display, strlen(pages_display));
411
}
412
 
413
 
5508 leency 414
 
415
 
5496 leency 416
void DrawWindow(void)
417
{
418
	__menuet__bar(0, 0, Form.client_width, TOOLBAR_HEIGHT - 1, 0xe1e1e1); // bar on the top (buttons holder)
419
	__menuet__bar(0, TOOLBAR_HEIGHT - 1, Form.client_width, 1, 0x7F7F7F);
5508 leency 420
	DrawToolbarButton(8,0); //open_folder
421
	DrawToolbarButton(42,1); //magnify -
422
	DrawToolbarButton(67,2);  //magnify +
423
	DrawToolbarButton(101,6); //rotate left
424
	DrawToolbarButton(126,7); //rotate right
425
	DrawToolbarButton(Form.client_width - 160,3); //show help
426
	show_area_x = Form.client_width - show_area_w - 34;
427
	DrawToolbarButton(show_area_x - 26,4); //prev page
428
	DrawToolbarButton(show_area_x + show_area_w,5); //nex page
429
	__menuet__make_button(show_area_x-1,  5, show_area_w+1, 23, 20 + BT_HIDE, 0xA4A4A4);
430
	__menuet__bar(show_area_x,  5, show_area_w, 1, 0xA4A4A4);
431
	__menuet__bar(show_area_x, 28, show_area_w, 1, 0xA4A4A4);
5496 leency 432
	winblit(&gapp);
433
	DrawPageSides();
434
}
435
 
5508 leency 436
void DrawToolbarButton(int x, char image_id)
5496 leency 437
{
5508 leency 438
	__menuet__make_button(x, 5, 26-1, 24-1, 10 + image_id + BT_HIDE, 0);
439
	__menuet__putimage(x, 5, 26, 24, image_id * 24 * 26 * 3 + toolbar_image);
5496 leency 440
}
441
 
442
 
443
/* Actions */
444
 
445
void PageScrollDown(void)
446
{
5497 leency 447
	//pdfapp_onkey(&gapp, 'k'); //move down
5496 leency 448
	if (gapp.image->h - gapp.pany - SCROLL_H < Form.client_height - TOOLBAR_HEIGHT)
449
	{
450
		pdfapp_onkey(&gapp, '.');
451
	}
452
	else {
453
		gapp.pany += SCROLL_H;
454
		winblit(&gapp);
455
	}
456
}
457
 
458
 
459
void PageScrollUp(void)
460
{
5497 leency 461
	//pdfapp_onkey(&gapp, 'j'); //move up
5496 leency 462
	if (gapp.pany >= SCROLL_H) {
463
		gapp.pany -= SCROLL_H;
464
		winblit(&gapp);
465
	}
466
	else {
5497 leency 467
		//not very nice way of using do_not_blit, but it simple
5496 leency 468
		if (gapp.pageno == 1) return;
469
		do_not_blit = 1;
470
		pdfapp_onkey(&gapp, ',');
471
		do_not_blit = 0;
472
		gapp.pany = gapp.image->h - SCROLL_H - Form.client_height + TOOLBAR_HEIGHT;
473
		if (gapp.pany < 0) gapp.pany = 0;
474
		//sprintf (debugstr, "gapp.pany: %d \n", gapp.pany);
475
		//__menuet__debug_out(debugstr);
476
		winblit(&gapp);
477
	}
478
}
479
 
480
 
481
void PageZoomIn(void)
482
{
483
	pdfapp_onkey(&gapp, '+');
484
	DrawPageSides();
485
}
486
 
487
 
488
void PageZoomOut(void)
489
{
490
	pdfapp_onkey(&gapp, '-');
491
	DrawPageSides();
492
}
493
 
5497 leency 494
void PageRotateLeft(void)
495
{
496
	pdfapp_onkey(&gapp, 'L');
497
	DrawPageSides();
498
}
5496 leency 499
 
5497 leency 500
void PageRotateRight(void)
501
{
502
	pdfapp_onkey(&gapp, 'R');
503
	DrawPageSides();
504
}
505