Refactor
[llpp.git] / main.ml
blobd3111d9d56ccd38ba90bceb74323523c5c4e76de
1 type under =
2 | Unone
3 | Ulinkuri of string
4 | Ulinkgoto of (int * int)
5 | Utext of facename
6 and facename = string;;
8 let dolog fmt = Printf.kprintf prerr_endline fmt;;
10 type params = angle * proportional * texcount * sliceheight
11 and pageno = int
12 and width = int
13 and height = int
14 and leftx = int
15 and opaque = string
16 and recttype = int
17 and pixmapsize = int
18 and angle = int
19 and proportional = bool
20 and interpagespace = int
21 and texcount = int
22 and sliceheight = int
23 and gen = int
24 and top = float
27 external init : Unix.file_descr -> params -> unit = "ml_init";;
28 external draw : (int * int * int * int * bool) -> string -> unit = "ml_draw";;
29 external seltext : string -> (int * int * int * int) -> int -> unit =
30 "ml_seltext";;
31 external copysel : string -> unit = "ml_copysel";;
32 external getpdimrect : int -> float array = "ml_getpdimrect";;
33 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
34 external zoomforh : int -> int -> int -> float = "ml_zoom_for_height";;
36 type mpos = int * int
37 and mstate =
38 | Msel of (mpos * mpos)
39 | Mpan of mpos
40 | Mscroll
41 | Mzoom of (int * int)
42 | Mnone
45 type textentry = string * string * onhist option * onkey * ondone
46 and onkey = string -> int -> te
47 and ondone = string -> unit
48 and histcancel = unit -> unit
49 and onhist = ((histcmd -> string) * histcancel)
50 and histcmd = HCnext | HCprev | HCfirst | HClast
51 and te =
52 | TEstop
53 | TEdone of string
54 | TEcont of string
55 | TEswitch of textentry
58 type 'a circbuf =
59 { store : 'a array
60 ; mutable rc : int
61 ; mutable wc : int
62 ; mutable len : int
66 let cbnew n v =
67 { store = Array.create n v
68 ; rc = 0
69 ; wc = 0
70 ; len = 0
74 let cbcap b = Array.length b.store;;
76 let cbput b v =
77 let cap = cbcap b in
78 b.store.(b.wc) <- v;
79 b.wc <- (b.wc + 1) mod cap;
80 b.rc <- b.wc;
81 b.len <- min (b.len + 1) cap;
84 let cbempty b = b.len = 0;;
86 let cbgetg b circular dir =
87 if cbempty b
88 then b.store.(0)
89 else
90 let rc = b.rc + dir in
91 let rc =
92 if circular
93 then (
94 if rc = -1
95 then b.len-1
96 else (
97 if rc = b.len
98 then 0
99 else rc
102 else max 0 (min rc (b.len-1))
104 b.rc <- rc;
105 b.store.(rc);
108 let cbget b = cbgetg b false;;
109 let cbgetc b = cbgetg b true;;
111 let cbpeek b =
112 let rc = b.wc - b.len in
113 let rc = if rc < 0 then cbcap b + rc else rc in
114 b.store.(rc);
117 let cbdecr b = b.len <- b.len - 1;;
119 type layout =
120 { pageno : int
121 ; pagedimno : int
122 ; pagew : int
123 ; pageh : int
124 ; pagedispy : int
125 ; pagey : int
126 ; pagevh : int
127 ; pagex : int
131 type conf =
132 { mutable scrollw : int
133 ; mutable scrollh : int
134 ; mutable icase : bool
135 ; mutable preload : bool
136 ; mutable pagebias : int
137 ; mutable verbose : bool
138 ; mutable scrollstep : int
139 ; mutable maxhfit : bool
140 ; mutable crophack : bool
141 ; mutable autoscrollstep : int
142 ; mutable showall : bool
143 ; mutable hlinks : bool
144 ; mutable underinfo : bool
145 ; mutable interpagespace : interpagespace
146 ; mutable zoom : float
147 ; mutable presentation : bool
148 ; mutable angle : angle
149 ; mutable winw : int
150 ; mutable winh : int
151 ; mutable savebmarks : bool
152 ; mutable proportional : proportional
153 ; mutable memlimit : int
154 ; mutable texcount : texcount
155 ; mutable sliceheight : sliceheight
156 ; mutable thumbw : width
157 ; mutable jumpback : bool
158 ; mutable bgcolor : float * float * float
159 ; mutable bedefault : bool
163 type anchor = pageno * top;;
165 type outline = string * int * anchor
166 and outlines =
167 | Oarray of outline array
168 | Olist of outline list
169 | Onarrow of string * outline array * outline array
172 type rect = float * float * float * float * float * float * float * float;;
174 type pagemapkey = pageno * width * angle * proportional * gen;;
176 let emptyanchor = (0, 0.0);;
177 let initialanchor = (-1, nan);;
179 type mode =
180 | Birdseye of (conf * leftx * pageno * pageno * anchor)
181 | Outline of (bool * int * int * outline array * string * int * mode)
182 | Items of (int * int * item array * string * int * mode)
183 | Textentry of (textentry * onleave)
184 | View
185 and onleave = leavetextentrystatus -> unit
186 and leavetextentrystatus = | Cancel | Confirm
187 and item = string * int * action
188 and action =
189 | Noaction
190 | Action of (int -> int -> string -> int -> mode)
193 let isbirdseye = function Birdseye _ -> true | _ -> false;;
194 let istextentry = function Textentry _ -> true | _ -> false;;
196 type state =
197 { mutable csock : Unix.file_descr
198 ; mutable ssock : Unix.file_descr
199 ; mutable w : int
200 ; mutable x : int
201 ; mutable y : int
202 ; mutable anchor : anchor
203 ; mutable maxy : int
204 ; mutable layout : layout list
205 ; pagemap : (pagemapkey, (opaque * pixmapsize)) Hashtbl.t
206 ; mutable pdims : (pageno * width * height * leftx) list
207 ; mutable pagecount : int
208 ; pagecache : string circbuf
209 ; mutable rendering : bool
210 ; mutable mstate : mstate
211 ; mutable searchpattern : string
212 ; mutable rects : (pageno * recttype * rect) list
213 ; mutable rects1 : (pageno * recttype * rect) list
214 ; mutable text : string
215 ; mutable fullscreen : (width * height) option
216 ; mutable mode : mode
217 ; mutable outlines : outlines
218 ; mutable bookmarks : outline list
219 ; mutable path : string
220 ; mutable password : string
221 ; mutable invalidated : int
222 ; mutable colorscale : float
223 ; mutable memused : int
224 ; mutable gen : gen
225 ; mutable throttle : layout list option
226 ; mutable ascrollstep : int
227 ; mutable help : item array
228 ; mutable docinfo : (int * string) list
229 ; hists : hists
231 and hists =
232 { pat : string circbuf
233 ; pag : string circbuf
234 ; nav : anchor circbuf
238 let defconf =
239 { scrollw = 7
240 ; scrollh = 12
241 ; icase = true
242 ; preload = true
243 ; pagebias = 0
244 ; verbose = false
245 ; scrollstep = 24
246 ; maxhfit = true
247 ; crophack = false
248 ; autoscrollstep = 24
249 ; showall = false
250 ; hlinks = false
251 ; underinfo = false
252 ; interpagespace = 2
253 ; zoom = 1.0
254 ; presentation = false
255 ; angle = 0
256 ; winw = 900
257 ; winh = 900
258 ; savebmarks = true
259 ; proportional = true
260 ; memlimit = 32*1024*1024
261 ; texcount = 256
262 ; sliceheight = 24
263 ; thumbw = 76
264 ; jumpback = false
265 ; bgcolor = (0.5, 0.5, 0.5)
266 ; bedefault = false
270 let conf = { defconf with angle = defconf.angle };;
272 let makehelp () =
273 let strings = ("llpp version " ^ Help.version) :: "" :: Help.keys in
274 Array.of_list (List.map (fun s -> s, 0, Noaction) strings);
277 let state =
278 { csock = Unix.stdin
279 ; ssock = Unix.stdin
280 ; x = 0
281 ; y = 0
282 ; anchor = initialanchor
283 ; w = 0
284 ; layout = []
285 ; maxy = max_int
286 ; pagemap = Hashtbl.create 10
287 ; pagecache = cbnew 100 ""
288 ; pdims = []
289 ; pagecount = 0
290 ; rendering = false
291 ; mstate = Mnone
292 ; rects = []
293 ; rects1 = []
294 ; text = ""
295 ; mode = View
296 ; fullscreen = None
297 ; searchpattern = ""
298 ; outlines = Olist []
299 ; bookmarks = []
300 ; path = ""
301 ; password = ""
302 ; invalidated = 0
303 ; hists =
304 { nav = cbnew 100 (0, 0.0)
305 ; pat = cbnew 20 ""
306 ; pag = cbnew 10 ""
308 ; colorscale = 1.0
309 ; memused = 0
310 ; gen = 0
311 ; throttle = None
312 ; ascrollstep = 0
313 ; help = makehelp ()
314 ; docinfo = []
318 let vlog fmt =
319 if conf.verbose
320 then
321 Printf.kprintf prerr_endline fmt
322 else
323 Printf.kprintf ignore fmt
326 let writecmd fd s =
327 let len = String.length s in
328 let n = 4 + len in
329 let b = Buffer.create n in
330 Buffer.add_char b (Char.chr ((len lsr 24) land 0xff));
331 Buffer.add_char b (Char.chr ((len lsr 16) land 0xff));
332 Buffer.add_char b (Char.chr ((len lsr 8) land 0xff));
333 Buffer.add_char b (Char.chr ((len lsr 0) land 0xff));
334 Buffer.add_string b s;
335 let s' = Buffer.contents b in
336 let n' = Unix.write fd s' 0 n in
337 if n' != n then failwith "write failed";
340 let readcmd fd =
341 let s = "xxxx" in
342 let n = Unix.read fd s 0 4 in
343 if n != 4 then failwith "incomplete read(len)";
344 let len = 0
345 lor (Char.code s.[0] lsl 24)
346 lor (Char.code s.[1] lsl 16)
347 lor (Char.code s.[2] lsl 8)
348 lor (Char.code s.[3] lsl 0)
350 let s = String.create len in
351 let n = Unix.read fd s 0 len in
352 if n != len then failwith "incomplete read(data)";
356 let makecmd s l =
357 let b = Buffer.create 10 in
358 Buffer.add_string b s;
359 let rec combine = function
360 | [] -> b
361 | x :: xs ->
362 Buffer.add_char b ' ';
363 let s =
364 match x with
365 | `b b -> if b then "1" else "0"
366 | `s s -> s
367 | `i i -> string_of_int i
368 | `f f -> string_of_float f
369 | `I f -> string_of_int (truncate f)
371 Buffer.add_string b s;
372 combine xs;
374 combine l;
377 let wcmd s l =
378 let cmd = Buffer.contents (makecmd s l) in
379 writecmd state.csock cmd;
382 let calcips h =
383 if conf.presentation
384 then
385 let d = conf.winh - h in
386 max 0 ((d + 1) / 2)
387 else
388 conf.interpagespace
391 let calcheight () =
392 let rec f pn ph pi fh l =
393 match l with
394 | (n, _, h, _) :: rest ->
395 let ips = calcips h in
396 let fh =
397 if conf.presentation
398 then fh+ips
399 else (
400 if isbirdseye state.mode && pn = 0
401 then fh + ips
402 else fh
405 let fh = fh + ((n - pn) * (ph + pi)) in
406 f n h ips fh rest;
408 | [] ->
409 let inc =
410 if conf.presentation || (isbirdseye state.mode && pn = 0)
411 then 0
412 else -pi
414 let fh = fh + ((state.pagecount - pn) * (ph + pi)) + inc in
415 max 0 fh
417 let fh = f 0 0 0 0 state.pdims in
421 let getpageyh pageno =
422 let rec f pn ph pi y l =
423 match l with
424 | (n, _, h, _) :: rest ->
425 let ips = calcips h in
426 if n >= pageno
427 then
428 let h = if n = pageno then h else ph in
429 if conf.presentation && n = pageno
430 then
431 y + (pageno - pn) * (ph + pi) + pi, h
432 else
433 y + (pageno - pn) * (ph + pi), h
434 else
435 let y = y + (if conf.presentation then pi else 0) in
436 let y = y + (n - pn) * (ph + pi) in
437 f n h ips y rest
439 | [] ->
440 y + (pageno - pn) * (ph + pi), ph
442 f 0 0 0 0 state.pdims
445 let getpagey pageno = fst (getpageyh pageno);;
447 let layout y sh =
448 let rec f ~pageno ~pdimno ~prev ~py ~dy ~pdims ~cacheleft ~accu =
449 let ((w, h, ips, x) as curr), rest, pdimno, yinc =
450 match pdims with
451 | (pageno', w, h, x) :: rest when pageno' = pageno ->
452 let ips = calcips h in
453 let yinc =
454 if conf.presentation || (isbirdseye state.mode && pageno = 0)
455 then ips
456 else 0
458 (w, h, ips, x), rest, pdimno + 1, yinc
459 | _ ->
460 prev, pdims, pdimno, 0
462 let dy = dy + yinc in
463 let py = py + yinc in
464 if pageno = state.pagecount || cacheleft = 0 || dy >= sh
465 then
466 accu
467 else
468 let vy = y + dy in
469 if py + h <= vy - yinc
470 then
471 let py = py + h + ips in
472 let dy = max 0 (py - y) in
473 f ~pageno:(pageno+1)
474 ~pdimno
475 ~prev:curr
478 ~pdims:rest
479 ~cacheleft
480 ~accu
481 else
482 let pagey = vy - py in
483 let pagevh = h - pagey in
484 let pagevh = min (sh - dy) pagevh in
485 let off = if yinc > 0 then py - vy else 0 in
486 let py = py + h + ips in
487 let e =
488 { pageno = pageno
489 ; pagedimno = pdimno
490 ; pagew = w
491 ; pageh = h
492 ; pagedispy = dy + off
493 ; pagey = pagey + off
494 ; pagevh = pagevh - off
495 ; pagex = x
498 let accu = e :: accu in
499 f ~pageno:(pageno+1)
500 ~pdimno
501 ~prev:curr
503 ~dy:(dy+pagevh+ips)
504 ~pdims:rest
505 ~cacheleft:(cacheleft-1)
506 ~accu
508 if state.invalidated = 0
509 then (
510 let accu =
512 ~pageno:0
513 ~pdimno:~-1
514 ~prev:(0,0,0,0)
515 ~py:0
516 ~dy:0
517 ~pdims:state.pdims
518 ~cacheleft:(cbcap state.pagecache)
519 ~accu:[]
521 List.rev accu
523 else
527 let clamp incr =
528 let y = state.y + incr in
529 let y = max 0 y in
530 let y = min y (state.maxy - (if conf.maxhfit then conf.winh else 0)) in
534 let getopaque pageno =
535 try Some (Hashtbl.find state.pagemap
536 (pageno, state.w, conf.angle, conf.proportional, state.gen))
537 with Not_found -> None
540 let cache pageno opaque =
541 Hashtbl.replace state.pagemap
542 (pageno, state.w, conf.angle, conf.proportional, state.gen) opaque
545 let validopaque opaque = String.length opaque > 0;;
547 let render l =
548 match getopaque l.pageno with
549 | None when not state.rendering ->
550 state.rendering <- true;
551 cache l.pageno ("", -1);
552 wcmd "render" [`i (l.pageno + 1)
553 ;`i l.pagedimno
554 ;`i l.pagew
555 ;`i l.pageh];
556 | _ -> ()
559 let loadlayout layout =
560 let rec f all = function
561 | l :: ls ->
562 begin match getopaque l.pageno with
563 | None -> render l; f false ls
564 | Some (opaque, _) -> f (all && validopaque opaque) ls
566 | [] -> all
568 f (layout <> []) layout;
571 let findpageforopaque opaque =
572 Hashtbl.fold
573 (fun k (v, s) a -> if v = opaque then Some (k, s) else a)
574 state.pagemap None
577 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
579 let preload () =
580 let oktopreload =
581 if conf.preload
582 then
583 let memleft = conf.memlimit - state.memused in
584 if memleft < 0
585 then
586 let opaque = cbpeek state.pagecache in
587 match findpageforopaque opaque with
588 | Some ((n, _, _, _, _), size) ->
589 memleft + size >= 0 && not (pagevisible state.layout n)
590 | None -> false
591 else true
592 else false
594 if oktopreload
595 then
596 let presentation = conf.presentation in
597 let interpagespace = conf.interpagespace in
598 let maxy = state.maxy in
599 conf.presentation <- false;
600 conf.interpagespace <- 0;
601 state.maxy <- calcheight ();
602 let y =
603 match state.layout with
604 | [] -> 0
605 | l :: _ -> getpagey l.pageno + l.pagey
607 let y = if y < conf.winh then 0 else y - conf.winh in
608 let pages = layout y (conf.winh*3) in
609 List.iter render pages;
610 conf.presentation <- presentation;
611 conf.interpagespace <- interpagespace;
612 state.maxy <- maxy;
615 let gotoy y =
616 let y = max 0 y in
617 let y = min state.maxy y in
618 let pages = layout y conf.winh in
619 let ready = loadlayout pages in
620 if conf.showall
621 then (
622 if ready
623 then (
624 state.y <- y;
625 state.layout <- pages;
626 state.throttle <- None;
627 Glut.postRedisplay ();
629 else (
630 state.throttle <- Some pages;
633 else (
634 state.y <- y;
635 state.layout <- pages;
636 state.throttle <- None;
637 Glut.postRedisplay ();
639 begin match state.mode with
640 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
641 if not (pagevisible pages pageno)
642 then (
643 match state.layout with
644 | [] -> ()
645 | l :: _ ->
646 state.mode <- Birdseye (conf, leftx, l.pageno, hooverpageno, anchor)
648 | _ -> ()
649 end;
650 preload ();
653 let gotoy_and_clear_text y =
654 gotoy y;
655 if not conf.verbose then state.text <- "";
658 let getanchor () =
659 match state.layout with
660 | [] -> emptyanchor
661 | l :: _ -> (l.pageno, float l.pagey /. float l.pageh)
664 let getanchory (n, top) =
665 let y, h = getpageyh n in
666 y + (truncate (top *. float h));
669 let gotoanchor anchor =
670 gotoy (getanchory anchor);
673 let addnav () =
674 cbput state.hists.nav (getanchor ());
677 let getnav dir =
678 let anchor = cbgetc state.hists.nav dir in
679 getanchory anchor;
682 let gotopage n top =
683 let y, h = getpageyh n in
684 gotoy_and_clear_text (y + (truncate (top *. float h)));
687 let gotopage1 n top =
688 let y = getpagey n in
689 gotoy_and_clear_text (y + top);
692 let invalidate () =
693 state.layout <- [];
694 state.pdims <- [];
695 state.rects <- [];
696 state.rects1 <- [];
697 state.invalidated <- state.invalidated + 1;
700 let scalecolor c =
701 let c = c *. state.colorscale in
702 (c, c, c);
705 let scalecolor2 (r, g, b) =
706 (r *. state.colorscale, g *. state.colorscale, b *. state.colorscale);
709 let represent () =
710 state.maxy <- calcheight ();
711 match state.mode with
712 | Birdseye (_, _, pageno, _, _) ->
713 let y, h = getpageyh pageno in
714 let top = (conf.winh - h) / 2 in
715 gotoy (max 0 (y - top))
716 | _ -> gotoanchor state.anchor
719 let pagematrix () =
720 GlMat.mode `projection;
721 GlMat.load_identity ();
722 GlMat.rotate ~x:1.0 ~angle:180.0 ();
723 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
724 GlMat.scale3 (2.0 /. float state.w, 2.0 /. float conf.winh, 1.0);
725 if state.x != 0
726 then (
727 GlMat.translate ~x:(float state.x) ();
731 let winmatrix () =
732 GlMat.mode `projection;
733 GlMat.load_identity ();
734 GlMat.rotate ~x:1.0 ~angle:180.0 ();
735 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
736 GlMat.scale3 (2.0 /. float conf.winw, 2.0 /. float conf.winh, 1.0);
739 let reshape ~w ~h =
740 if state.invalidated = 0 && state.anchor == initialanchor
741 then state.anchor <- getanchor ();
743 conf.winw <- w;
744 let w = truncate (float w *. conf.zoom) - conf.scrollw in
745 let w = max w 2 in
746 state.w <- w;
747 conf.winh <- h;
748 GlMat.mode `modelview;
749 GlMat.load_identity ();
750 GlClear.color (scalecolor 1.0);
751 GlClear.clear [`color];
753 invalidate ();
754 wcmd "geometry" [`i w; `i h];
757 let showtext s =
758 GlDraw.color (0.0, 0.0, 0.0);
759 GlDraw.rect
760 (0.0, float (conf.winh - 18))
761 (float (conf.winw - conf.scrollw - 1), float conf.winh)
763 let font = Glut.BITMAP_8_BY_13 in
764 GlDraw.color (1.0, 1.0, 1.0);
765 GlPix.raster_pos ~x:0.0 ~y:(float (conf.winh - 5)) ();
766 Glut.bitmapCharacter ~font ~c:(Char.code ' ');
767 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s;
770 let enttext () =
771 let len = String.length state.text in
772 match state.mode with
773 | Textentry ((prefix, text, _, _, _), _) ->
774 let s =
775 match String.length prefix with
776 | 0 | 1 ->
777 if len > 0
778 then
779 Printf.sprintf "%s%s^ [%s]" prefix text state.text
780 else
781 Printf.sprintf "%s%s^" prefix text
783 | _ ->
784 if len > 0
785 then
786 Printf.sprintf "%s: %s^ [%s]" prefix text state.text
787 else
788 Printf.sprintf "%s: %s^" prefix text
790 showtext s;
792 | _ ->
793 if len > 0 then showtext state.text
796 let showtext c s =
797 state.text <- Printf.sprintf "%c%s" c s;
798 Glut.postRedisplay ();
801 let act cmd =
802 match cmd.[0] with
803 | 'c' ->
804 state.pdims <- [];
806 | 'D' ->
807 state.rects <- state.rects1;
808 Glut.postRedisplay ()
810 | 'C' ->
811 let n = Scanf.sscanf cmd "C %u" (fun n -> n) in
812 state.pagecount <- n;
813 state.invalidated <- state.invalidated - 1;
814 if state.invalidated = 0
815 then represent ()
817 | 't' ->
818 let s = Scanf.sscanf cmd "t %n"
819 (fun n -> String.sub cmd n (String.length cmd - n))
821 Glut.setWindowTitle s
823 | 'T' ->
824 let s = Scanf.sscanf cmd "T %n"
825 (fun n -> String.sub cmd n (String.length cmd - n))
827 if istextentry state.mode
828 then (
829 state.text <- s;
830 showtext ' ' s;
832 else (
833 state.text <- s;
834 Glut.postRedisplay ();
837 | 'V' ->
838 if conf.verbose
839 then
840 let s = Scanf.sscanf cmd "V %n"
841 (fun n -> String.sub cmd n (String.length cmd - n))
843 state.text <- s;
844 showtext ' ' s;
846 | 'F' ->
847 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
848 Scanf.sscanf cmd "F %u %d %f %f %f %f %f %f %f %f"
849 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
850 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
852 let y = (getpagey pageno) + truncate y0 in
853 addnav ();
854 gotoy y;
855 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
857 | 'R' ->
858 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
859 Scanf.sscanf cmd "R %u %d %f %f %f %f %f %f %f %f"
860 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
861 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
863 state.rects1 <-
864 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
866 | 'r' ->
867 let n, w, _h, r, l, s, p =
868 Scanf.sscanf cmd "r %u %u %u %d %d %u %s"
869 (fun n w h r l s p ->
870 (n-1, w, h, r, l != 0, s, p))
873 Hashtbl.replace state.pagemap (n, w, r, l, state.gen) (p, s);
874 state.memused <- state.memused + s;
876 let layout =
877 match state.throttle with
878 | None -> state.layout
879 | Some layout -> layout
882 let rec gc () =
883 if (state.memused <= conf.memlimit) || cbempty state.pagecache
884 then ()
885 else (
886 let evictedopaque = cbpeek state.pagecache in
887 match findpageforopaque evictedopaque with
888 | None -> failwith "bug in gc"
889 | Some ((evictedn, _, _, _, gen) as k, evictedsize) ->
890 if state.gen != gen || not (pagevisible layout evictedn)
891 then (
892 wcmd "free" [`s evictedopaque];
893 state.memused <- state.memused - evictedsize;
894 Hashtbl.remove state.pagemap k;
895 cbdecr state.pagecache;
896 gc ();
900 gc ();
902 cbput state.pagecache p;
903 state.rendering <- false;
905 begin match state.throttle with
906 | None ->
907 if pagevisible state.layout n
908 then gotoy state.y
909 else (
910 let allvisible = loadlayout state.layout in
911 if allvisible then preload ();
914 | Some layout ->
915 match layout with
916 | [] -> ()
917 | l :: _ ->
918 let y = getpagey l.pageno + l.pagey in
919 gotoy y
922 | 'l' ->
923 let pdim =
924 Scanf.sscanf cmd "l %u %u %u %u" (fun n w h x -> n, w, h, x)
926 state.pdims <- pdim :: state.pdims
928 | 'o' ->
929 let (l, n, t, h, pos) =
930 Scanf.sscanf cmd "o %u %u %d %u %n" (fun l n t h pos -> l, n, t, h, pos)
932 let s = String.sub cmd pos (String.length cmd - pos) in
933 let s =
934 let l = String.length s in
935 let b = Buffer.create (String.length s) in
936 let rec loop pc2 i =
937 if i = l
938 then ()
939 else
940 let pc2 =
941 match s.[i] with
942 | '\xa0' when pc2 -> Buffer.add_char b ' '; false
943 | '\xc2' -> true
944 | c ->
945 let c = if Char.code c land 0x80 = 0 then c else '?' in
946 Buffer.add_char b c;
947 false
949 loop pc2 (i+1)
951 loop false 0;
952 Buffer.contents b
954 let outline = (s, l, (n, float t /. float h)) in
955 let outlines =
956 match state.outlines with
957 | Olist outlines -> Olist (outline :: outlines)
958 | Oarray _ -> Olist [outline]
959 | Onarrow _ -> Olist [outline]
961 state.outlines <- outlines
964 | 'i' ->
965 let s = Scanf.sscanf cmd "i %n"
966 (fun n -> String.sub cmd n (String.length cmd - n))
968 let len = String.length s in
969 let rec fold accu pos =
970 let eolpos =
971 try String.index_from s pos '\n' with Not_found -> len
973 if eolpos = len
974 then List.rev accu
975 else
976 let line = String.sub s pos (eolpos - pos) in
977 fold ((1, line)::accu) (eolpos+1)
979 state.docinfo <- fold state.docinfo 0
981 | _ ->
982 dolog "unknown cmd `%S'" cmd
985 let now = Unix.gettimeofday;;
987 let idle () =
988 let rec loop delay =
989 let r, _, _ = Unix.select [state.csock] [] [] delay in
990 begin match r with
991 | [] ->
992 if state.ascrollstep > 0
993 then begin
994 let y = state.y + state.ascrollstep in
995 let y = if y >= state.maxy then 0 else y in
996 gotoy y;
997 state.text <- "";
998 end;
1000 | _ ->
1001 let cmd = readcmd state.csock in
1002 act cmd;
1003 loop 0.0
1004 end;
1005 in loop 0.001
1008 let onhist cb =
1009 let rc = cb.rc in
1010 let action = function
1011 | HCprev -> cbget cb ~-1
1012 | HCnext -> cbget cb 1
1013 | HCfirst -> cbget cb ~-(cb.rc)
1014 | HClast -> cbget cb (cb.len - 1 - cb.rc)
1015 and cancel () = cb.rc <- rc
1016 in (action, cancel)
1019 let search pattern forward =
1020 if String.length pattern > 0
1021 then
1022 let pn, py =
1023 match state.layout with
1024 | [] -> 0, 0
1025 | l :: _ ->
1026 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
1028 let cmd =
1029 let b = makecmd "search"
1030 [`b conf.icase; `i pn; `i py; `i (if forward then 1 else 0)]
1032 Buffer.add_char b ',';
1033 Buffer.add_string b pattern;
1034 Buffer.add_char b '\000';
1035 Buffer.contents b;
1037 writecmd state.csock cmd;
1040 let intentry text key =
1041 let c = Char.unsafe_chr key in
1042 match c with
1043 | '0' .. '9' ->
1044 let s = "x" in s.[0] <- c;
1045 let text = text ^ s in
1046 TEcont text
1048 | _ ->
1049 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1050 TEcont text
1053 let addchar s c =
1054 let b = Buffer.create (String.length s + 1) in
1055 Buffer.add_string b s;
1056 Buffer.add_char b c;
1057 Buffer.contents b;
1060 let textentry text key =
1061 let c = Char.unsafe_chr key in
1062 match c with
1063 | _ when key >= 32 && key < 127 ->
1064 let text = addchar text c in
1065 TEcont text
1067 | _ ->
1068 dolog "unhandled key %d char `%c'" key (Char.unsafe_chr key);
1069 TEcont text
1072 let reinit angle proportional =
1073 conf.angle <- angle;
1074 conf.proportional <- proportional;
1075 invalidate ();
1076 wcmd "reinit" [`i angle; `b proportional];
1079 let setzoom zoom =
1080 let zoom = max 0.01 (min 2.2 zoom) in
1081 if zoom <> conf.zoom
1082 then (
1083 if zoom <= 1.0
1084 then state.x <- 0;
1085 conf.zoom <- zoom;
1086 state.anchor <- getanchor ();
1087 reshape conf.winw conf.winh;
1088 state.text <- Printf.sprintf "zoom is now %-5.1f" (zoom *. 100.0);
1092 let enterbirdseye () =
1093 let zoom = float conf.thumbw /. float conf.winw in
1094 let birdseyepageno =
1095 let rec fold candidate = function
1096 | [] -> candidate
1097 | l :: _ when l.pagey = 0 -> l.pageno
1098 | l :: rest -> fold l.pageno rest
1100 fold 0 state.layout
1102 state.mode <- Birdseye (
1103 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
1105 conf.zoom <- zoom;
1106 conf.presentation <- false;
1107 conf.interpagespace <- 10;
1108 conf.hlinks <- false;
1109 state.x <- 0;
1110 state.mstate <- Mnone;
1111 conf.showall <- false;
1112 Glut.setCursor Glut.CURSOR_INHERIT;
1113 if conf.verbose
1114 then
1115 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
1116 (100.0*.zoom)
1117 else
1118 state.text <- ""
1120 reshape conf.winw conf.winh;
1123 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
1124 state.mode <- View;
1125 conf.zoom <- c.zoom;
1126 conf.presentation <- c.presentation;
1127 conf.interpagespace <- c.interpagespace;
1128 conf.showall <- c.showall;
1129 conf.hlinks <- c.hlinks;
1130 state.x <- leftx;
1131 if conf.verbose
1132 then
1133 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
1134 (100.0*.conf.zoom)
1136 reshape conf.winw conf.winh;
1137 state.anchor <- if goback then anchor else (pageno, 0.0);
1140 let togglebirdseye () =
1141 match state.mode with
1142 | Birdseye vals -> leavebirdseye vals true
1143 | View | Outline _ -> enterbirdseye ()
1144 | _ -> ()
1147 let upbirdseye (conf, leftx, pageno, hooverpageno, anchor) =
1148 let pageno = max 0 (pageno - 1) in
1149 let rec loop = function
1150 | [] -> gotopage1 pageno 0
1151 | l :: _ when l.pageno = pageno ->
1152 if l.pagedispy >= 0 && l.pagey = 0
1153 then Glut.postRedisplay ()
1154 else gotopage1 pageno 0
1155 | _ :: rest -> loop rest
1157 loop state.layout;
1158 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
1161 let downbirdseye (conf, leftx, pageno, hooverpageno, anchor) =
1162 let pageno = min (state.pagecount - 1) (pageno + 1) in
1163 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
1164 let rec loop = function
1165 | [] ->
1166 let y, h = getpageyh pageno in
1167 let dy = (y - state.y) - (conf.winh - h - conf.interpagespace) in
1168 gotoy (clamp dy)
1169 | l :: _ when l.pageno = pageno ->
1170 if l.pagevh != l.pageh
1171 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
1172 else Glut.postRedisplay ()
1173 | _ :: rest -> loop rest
1175 loop state.layout
1178 let optentry mode _ key =
1179 let btos b = if b then "on" else "off" in
1180 let c = Char.unsafe_chr key in
1181 match c with
1182 | 's' ->
1183 let ondone s =
1184 try conf.scrollstep <- int_of_string s with exc ->
1185 state.text <- Printf.sprintf "bad integer `%s': %s"
1186 s (Printexc.to_string exc)
1188 TEswitch ("scroll step", "", None, intentry, ondone)
1190 | 'A' ->
1191 let ondone s =
1193 conf.autoscrollstep <- int_of_string s;
1194 if state.ascrollstep > 0
1195 then state.ascrollstep <- conf.autoscrollstep;
1196 with exc ->
1197 state.text <- Printf.sprintf "bad integer `%s': %s"
1198 s (Printexc.to_string exc)
1200 TEswitch ("auto scroll step", "", None, intentry, ondone)
1202 | 'Z' ->
1203 let ondone s =
1205 let zoom = float (int_of_string s) /. 100.0 in
1206 setzoom zoom
1207 with exc ->
1208 state.text <- Printf.sprintf "bad integer `%s': %s"
1209 s (Printexc.to_string exc)
1211 TEswitch ("zoom", "", None, intentry, ondone)
1213 | 't' ->
1214 let ondone s =
1216 conf.thumbw <- max 2 (min 1920 (int_of_string s));
1217 state.text <-
1218 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
1219 begin match mode with
1220 | Birdseye beye ->
1221 leavebirdseye beye false;
1222 enterbirdseye ();
1223 | _ -> ();
1225 with exc ->
1226 state.text <- Printf.sprintf "bad integer `%s': %s"
1227 s (Printexc.to_string exc)
1229 TEswitch ("thumbnail width", "", None, intentry, ondone)
1231 | 'R' ->
1232 let ondone s =
1233 match try
1234 Some (int_of_string s)
1235 with exc ->
1236 state.text <- Printf.sprintf "bad integer `%s': %s"
1237 s (Printexc.to_string exc);
1238 None
1239 with
1240 | Some angle -> reinit angle conf.proportional
1241 | None -> ()
1243 TEswitch ("rotation", "", None, intentry, ondone)
1245 | 'i' ->
1246 conf.icase <- not conf.icase;
1247 TEdone ("case insensitive search " ^ (btos conf.icase))
1249 | 'p' ->
1250 conf.preload <- not conf.preload;
1251 gotoy state.y;
1252 TEdone ("preload " ^ (btos conf.preload))
1254 | 'v' ->
1255 conf.verbose <- not conf.verbose;
1256 TEdone ("verbose " ^ (btos conf.verbose))
1258 | 'h' ->
1259 conf.maxhfit <- not conf.maxhfit;
1260 state.maxy <- state.maxy + (if conf.maxhfit then -conf.winh else conf.winh);
1261 TEdone ("maxhfit " ^ (btos conf.maxhfit))
1263 | 'c' ->
1264 conf.crophack <- not conf.crophack;
1265 TEdone ("crophack " ^ btos conf.crophack)
1267 | 'a' ->
1268 conf.showall <- not conf.showall;
1269 TEdone ("throttle " ^ btos conf.showall)
1271 | 'f' ->
1272 conf.underinfo <- not conf.underinfo;
1273 TEdone ("underinfo " ^ btos conf.underinfo)
1275 | 'P' ->
1276 conf.savebmarks <- not conf.savebmarks;
1277 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
1279 | 'S' ->
1280 let ondone s =
1282 let pageno, py =
1283 match state.layout with
1284 | [] -> 0, 0
1285 | l :: _ ->
1286 l.pageno, l.pagey
1288 conf.interpagespace <- int_of_string s;
1289 state.maxy <- calcheight ();
1290 let y = getpagey pageno in
1291 gotoy (y + py)
1292 with exc ->
1293 state.text <- Printf.sprintf "bad integer `%s': %s"
1294 s (Printexc.to_string exc)
1296 TEswitch ("vertical margin", "", None, intentry, ondone)
1298 | 'l' ->
1299 reinit conf.angle (not conf.proportional);
1300 TEdone ("proprortional display " ^ btos conf.proportional)
1302 | _ ->
1303 state.text <- Printf.sprintf "bad option %d `%c'" key c;
1304 TEstop
1307 let maxoutlinerows () = (conf.winh - 31) / 16;;
1309 let enterselector allowdel outlines errmsg msg =
1310 if Array.length outlines = 0
1311 then (
1312 showtext ' ' errmsg;
1314 else (
1315 state.text <- msg;
1316 Glut.setCursor Glut.CURSOR_INHERIT;
1317 let pageno =
1318 match state.layout with
1319 | [] -> -1
1320 | {pageno=pageno} :: _ -> pageno
1322 let active =
1323 let rec loop n =
1324 if n = Array.length outlines
1325 then 0
1326 else
1327 let (_, _, (outlinepageno, _)) = outlines.(n) in
1328 if outlinepageno >= pageno then n else loop (n+1)
1330 loop 0
1332 state.mode <- Outline
1333 (allowdel, active, max 0 (active - maxoutlinerows () / 2), outlines, "", 0,
1334 state.mode);
1335 Glut.postRedisplay ();
1339 let enteroutlinemode () =
1340 let outlines, msg =
1341 match state.outlines with
1342 | Oarray a -> a, ""
1343 | Olist l ->
1344 let a = Array.of_list (List.rev l) in
1345 state.outlines <- Oarray a;
1346 a, ""
1347 | Onarrow (pat, a, _) ->
1348 a, "Outline was narrowed to `" ^ pat ^ "' (Ctrl-u to restore)"
1350 enterselector false outlines "Document has no outline" msg;
1353 let enterbookmarkmode () =
1354 let bookmarks = Array.of_list state.bookmarks in
1355 enterselector true bookmarks "Document has no bookmarks (yet)" "";
1358 let mode_to_string mode =
1359 let b = Buffer.create 10 in
1360 let rec f = function
1361 | Textentry (_, _) -> Buffer.add_string b "Textentry ";
1362 | View -> Buffer.add_string b "View"
1363 | Birdseye _ -> Buffer.add_string b "Birdseye"
1364 | Items _ -> Buffer.add_string b "Items"
1365 | Outline _ -> Buffer.add_string b "Outline"
1367 f mode;
1368 Buffer.contents b;
1371 let enterinfomode () =
1372 let btos = function true -> "on" | _ -> "off" in
1373 let mode = state.mode in
1374 let rec makeitems () =
1375 let intp name get set =
1376 Printf.sprintf "%-24s %d" name (get ()), 1, Action (
1377 fun active first _qsearch pan ->
1378 let ondone s =
1379 let n =
1380 try int_of_string s
1381 with exn ->
1382 state.text <- Printf.sprintf "bad integer `%s': %s"
1383 s (Printexc.to_string exn);
1384 max_int;
1386 if n != max_int then set n;
1388 let te = name, "", None, intentry, ondone in
1389 state.text <- "";
1390 Textentry (
1392 fun _ ->
1393 state.mode <- Items (active, first, makeitems (), "", pan, mode)
1396 and boolp name get set =
1397 Printf.sprintf "%-24s %s" name (btos (get ())), 1, Action (
1398 fun active first qsearch pan ->
1399 let v = get () in
1400 set (not v);
1401 Items (active, first, makeitems (), qsearch, pan, mode);
1405 let birdseye = isbirdseye mode in
1406 let items = [
1407 (if birdseye then "Setup bird's eye" else "Setup"), 0, Noaction;
1409 boolp "presentation"
1410 (fun () -> conf.presentation)
1411 (fun v ->
1412 conf.presentation <- v;
1413 state.anchor <- getanchor ();
1414 represent ());
1416 boolp "ignore case in searches"
1417 (fun () -> conf.icase)
1418 (fun v -> conf.icase <- v);
1420 boolp "preload"
1421 (fun () -> conf.preload)
1422 (fun v -> conf.preload <- v);
1424 boolp "verbose"
1425 (fun () -> conf.verbose)
1426 (fun v -> conf.verbose <- v);
1428 boolp "max fit"
1429 (fun () -> conf.maxhfit)
1430 (fun v -> conf.maxhfit <- v);
1432 boolp "crop hack"
1433 (fun () -> conf.crophack)
1434 (fun v -> conf.crophack <- v);
1436 boolp "throttle"
1437 (fun () -> conf.showall)
1438 (fun v -> conf.showall <- v);
1440 boolp "highlight links"
1441 (fun () -> conf.hlinks)
1442 (fun v -> conf.hlinks <- v);
1444 boolp "under info"
1445 (fun () -> conf.underinfo)
1446 (fun v -> conf.underinfo <- v);
1447 boolp "persistent bookmarks"
1448 (fun () -> conf.savebmarks)
1449 (fun v -> conf.savebmarks <- v);
1451 boolp "proportional display"
1452 (fun () -> conf.proportional)
1453 (fun v -> reinit conf.angle v);
1455 boolp "persistent location"
1456 (fun () -> conf.jumpback)
1457 (fun v -> conf.jumpback <- v);
1459 "", 0, Noaction;
1461 intp "vertical margin"
1462 (fun () -> conf.interpagespace)
1463 (fun n ->
1464 conf.interpagespace <- n;
1465 let pageno, py =
1466 match state.layout with
1467 | [] -> 0, 0
1468 | l :: _ ->
1469 l.pageno, l.pagey
1471 state.maxy <- calcheight ();
1472 let y = getpagey pageno in
1473 gotoy (y + py)
1476 intp "page bias"
1477 (fun () -> conf.pagebias)
1478 (fun v -> conf.pagebias <- v);
1480 intp "scroll step"
1481 (fun () -> conf.scrollstep)
1482 (fun n -> conf.scrollstep <- n);
1484 intp "auto scroll step"
1485 (fun () ->
1486 if state.ascrollstep > 0
1487 then state.ascrollstep
1488 else conf.autoscrollstep)
1489 (fun n ->
1490 if state.ascrollstep > 0
1491 then state.ascrollstep <- n
1492 else conf.autoscrollstep <- n);
1494 intp "zoom"
1495 (fun () -> truncate (conf.zoom *. 100.))
1496 (fun v -> setzoom ((float v) /. 100.));
1498 intp "rotation"
1499 (fun () -> conf.angle)
1500 (fun v -> reinit v conf.proportional);
1502 intp "scroll bar width"
1503 (fun () -> conf.scrollw)
1504 (fun v ->
1505 conf.scrollw <- v;
1506 reshape conf.winw conf.winh;
1509 intp "scroll handle height"
1510 (fun () -> conf.scrollh)
1511 (fun v -> conf.scrollh <- v;);
1513 intp "thumbnail width"
1514 (fun () -> conf.thumbw)
1515 (fun v ->
1516 conf.thumbw <- min 1920 v;
1517 match mode with
1518 | Birdseye beye ->
1519 leavebirdseye beye false;
1520 enterbirdseye ()
1521 | _ -> ()
1524 "", 0, Noaction;
1525 "Pixmap Cache", 0, Noaction;
1527 intp "size (advisory)"
1528 (fun () -> conf.memlimit)
1529 (fun v -> conf.memlimit <- v);
1530 Printf.sprintf "%-24s %d" "used" state.memused, 1, Noaction;
1534 let tailer =
1535 let trailer =
1536 ("", 0, Noaction)
1537 :: ("Document", 0, Noaction)
1538 :: List.map (fun (_, s) -> (s, 1, Noaction)) state.docinfo
1540 if birdseye
1541 then trailer
1542 else (
1543 ("", 0, Noaction)
1544 :: (Printf.sprintf "Save these parameters as defaults at exit (%s)"
1545 (btos conf.bedefault),
1547 Action (
1548 fun active first qsearch pan ->
1549 conf.bedefault <- not conf.bedefault;
1550 Items (active, first, makeitems (), qsearch, pan, mode);
1552 ) :: trailer
1555 Array.of_list (items @ tailer)
1557 state.text <- "";
1558 state.mode <- Items (1, 0, makeitems (), "", 0, mode);
1559 Glut.postRedisplay ();
1562 let enterhelpmode () =
1563 state.mode <- Items (0, 0, state.help, "", 0, state.mode);
1564 Glut.postRedisplay ();
1567 let quickbookmark ?title () =
1568 match state.layout with
1569 | [] -> ()
1570 | l :: _ ->
1571 let title =
1572 match title with
1573 | None ->
1574 let sec = Unix.gettimeofday () in
1575 let tm = Unix.localtime sec in
1576 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
1577 (l.pageno+1)
1578 tm.Unix.tm_mday
1579 tm.Unix.tm_mon
1580 (tm.Unix.tm_year + 1900)
1581 tm.Unix.tm_hour
1582 tm.Unix.tm_min
1583 | Some title -> title
1585 state.bookmarks <-
1586 (title, 0, (l.pageno, float l.pagey /. float l.pageh))
1587 :: state.bookmarks
1590 let doreshape w h =
1591 state.fullscreen <- None;
1592 Glut.reshapeWindow w h;
1595 let writeopen path password =
1596 writecmd state.csock ("open " ^ path ^ "\000" ^ password ^ "\000");
1597 writecmd state.csock "info";
1600 let opendoc path password =
1601 invalidate ();
1602 state.path <- path;
1603 state.password <- password;
1604 state.gen <- state.gen + 1;
1606 writeopen path password;
1607 Glut.setWindowTitle ("llpp " ^ Filename.basename path);
1608 wcmd "geometry" [`i state.w; `i conf.winh];
1611 let viewkeyboard ~key ~x ~y =
1612 ignore x;
1613 ignore y;
1614 let enttext te =
1615 let mode = state.mode in
1616 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
1617 state.text <- "";
1618 enttext ();
1619 Glut.postRedisplay ()
1621 let c = Char.chr key in
1622 match c with
1623 | '\027' | 'q' -> (* escape *)
1624 exit 0
1626 | '\008' -> (* backspace *)
1627 let y = getnav ~-1 in
1628 gotoy_and_clear_text y
1630 | 'o' ->
1631 enteroutlinemode ()
1633 | 'u' ->
1634 state.rects <- [];
1635 state.text <- "";
1636 Glut.postRedisplay ()
1638 | '/' | '?' ->
1639 let ondone isforw s =
1640 cbput state.hists.pat s;
1641 state.searchpattern <- s;
1642 search s isforw
1644 let s = String.create 1 in
1645 s.[0] <- c;
1646 enttext (s, "", Some (onhist state.hists.pat),
1647 textentry, ondone (c ='/'))
1649 | '+' when Glut.getModifiers () land Glut.active_ctrl != 0 ->
1650 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
1651 setzoom (min 2.2 (conf.zoom +. incr))
1653 | '+' ->
1654 let ondone s =
1655 let n =
1656 try int_of_string s with exc ->
1657 state.text <- Printf.sprintf "bad integer `%s': %s"
1658 s (Printexc.to_string exc);
1659 max_int
1661 if n != max_int
1662 then (
1663 conf.pagebias <- n;
1664 state.text <- "page bias is now " ^ string_of_int n;
1667 enttext ("page bias", "", None, intentry, ondone)
1669 | '-' when Glut.getModifiers () land Glut.active_ctrl != 0 ->
1670 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
1671 setzoom (max 0.01 (conf.zoom -. decr))
1673 | '-' ->
1674 let ondone msg = state.text <- msg in
1675 enttext (
1676 "option [acfhilpstvAPRSZ]", "", None,
1677 optentry state.mode, ondone
1680 | '0' when (Glut.getModifiers () land Glut.active_ctrl != 0) ->
1681 setzoom 1.0
1683 | '1' when (Glut.getModifiers () land Glut.active_ctrl != 0) ->
1684 let zoom = zoomforh conf.winw conf.winh conf.scrollw in
1685 if zoom < 1.0
1686 then setzoom zoom
1688 | '9' when (Glut.getModifiers () land Glut.active_ctrl != 0) ->
1689 togglebirdseye ()
1691 | '0' .. '9' ->
1692 let ondone s =
1693 let n =
1694 try int_of_string s with exc ->
1695 state.text <- Printf.sprintf "bad integer `%s': %s"
1696 s (Printexc.to_string exc);
1699 if n >= 0
1700 then (
1701 addnav ();
1702 cbput state.hists.pag (string_of_int n);
1703 gotoy_and_clear_text (getpagey (n + conf.pagebias - 1))
1706 let pageentry text key =
1707 match Char.unsafe_chr key with
1708 | 'g' -> TEdone text
1709 | _ -> intentry text key
1711 let text = "x" in text.[0] <- c;
1712 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone)
1714 | 'b' ->
1715 conf.scrollw <- if conf.scrollw > 0 then 0 else defconf.scrollw;
1716 reshape conf.winw conf.winh;
1718 | 'l' ->
1719 conf.hlinks <- not conf.hlinks;
1720 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
1721 Glut.postRedisplay ()
1723 | 'a' ->
1724 if state.ascrollstep = 0
1725 then state.ascrollstep <- conf.autoscrollstep
1726 else (
1727 conf.autoscrollstep <- state.ascrollstep;
1728 state.ascrollstep <- 0;
1731 | 'P' ->
1732 conf.presentation <- not conf.presentation;
1733 showtext ' ' ("presentation mode " ^
1734 if conf.presentation then "on" else "off");
1735 state.anchor <- getanchor ();
1736 represent ()
1738 | 'f' ->
1739 begin match state.fullscreen with
1740 | None ->
1741 state.fullscreen <- Some (conf.winw, conf.winh);
1742 Glut.fullScreen ()
1743 | Some (w, h) ->
1744 state.fullscreen <- None;
1745 doreshape w h
1748 | 'g' ->
1749 gotoy_and_clear_text 0
1751 | 'n' ->
1752 search state.searchpattern true
1754 | 'p' | 'N' ->
1755 search state.searchpattern false
1757 | 't' ->
1758 begin match state.layout with
1759 | [] -> ()
1760 | l :: _ ->
1761 gotoy_and_clear_text (getpagey l.pageno)
1764 | ' ' ->
1765 begin match List.rev state.layout with
1766 | [] -> ()
1767 | l :: _ ->
1768 let pageno = min (l.pageno+1) (state.pagecount-1) in
1769 gotoy_and_clear_text (getpagey pageno)
1772 | '\127' -> (* delte *)
1773 begin match state.layout with
1774 | [] -> ()
1775 | l :: _ ->
1776 let pageno = max 0 (l.pageno-1) in
1777 gotoy_and_clear_text (getpagey pageno)
1780 | '=' ->
1781 let f (fn, _) l =
1782 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
1784 let fn, ln = List.fold_left f (-1, -1) state.layout in
1785 let s =
1786 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
1787 let percent =
1788 if maxy <= 0
1789 then 100.
1790 else (100. *. (float state.y /. float maxy)) in
1791 if fn = ln
1792 then
1793 Printf.sprintf "Page %d of %d %.2f%%"
1794 (fn+1) state.pagecount percent
1795 else
1796 Printf.sprintf
1797 "Pages %d-%d of %d %.2f%%"
1798 (fn+1) (ln+1) state.pagecount percent
1800 showtext ' ' s;
1802 | 'w' ->
1803 begin match state.layout with
1804 | [] -> ()
1805 | l :: _ ->
1806 doreshape (l.pagew + conf.scrollw) l.pageh;
1807 Glut.postRedisplay ();
1810 | '\'' ->
1811 enterbookmarkmode ()
1813 | 'h' ->
1814 enterhelpmode ()
1816 | 'i' ->
1817 enterinfomode ()
1819 | 'm' ->
1820 let ondone s =
1821 match state.layout with
1822 | l :: _ ->
1823 state.bookmarks <-
1824 (s, 0, (l.pageno, float l.pagey /. float l.pageh))
1825 :: state.bookmarks
1826 | _ -> ()
1828 enttext ("bookmark", "", None, textentry, ondone)
1830 | '~' ->
1831 quickbookmark ();
1832 showtext ' ' "Quick bookmark added";
1834 | 'z' ->
1835 begin match state.layout with
1836 | l :: _ ->
1837 let rect = getpdimrect l.pagedimno in
1838 let w, h =
1839 if conf.crophack
1840 then
1841 (truncate (1.8 *. (rect.(1) -. rect.(0))),
1842 truncate (1.2 *. (rect.(3) -. rect.(0))))
1843 else
1844 (truncate (rect.(1) -. rect.(0)),
1845 truncate (rect.(3) -. rect.(0)))
1847 if w != 0 && h != 0
1848 then
1849 doreshape (w + conf.scrollw) (h + conf.interpagespace)
1851 Glut.postRedisplay ();
1853 | [] -> ()
1856 | '<' | '>' ->
1857 reinit (conf.angle + (if c = '>' then 30 else -30)) conf.proportional
1859 | '[' | ']' ->
1860 state.colorscale <-
1861 max 0.0
1862 (min (state.colorscale +. (if c = ']' then 0.1 else -0.1)) 1.0);
1863 Glut.postRedisplay ()
1865 | 'k' ->
1866 begin match state.mode with
1867 | Birdseye beye -> upbirdseye beye
1868 | _ -> gotoy (clamp (-conf.scrollstep))
1871 | 'j' ->
1872 begin match state.mode with
1873 | Birdseye beye -> downbirdseye beye
1874 | _ -> gotoy (clamp conf.scrollstep)
1877 | 'r' -> opendoc state.path state.password
1879 | _ ->
1880 vlog "huh? %d %c" key (Char.chr key);
1883 let textentrykeyboard ~key ~x ~y ((c, text, opthist, onkey, ondone), onleave) =
1884 ignore x;
1885 ignore y;
1886 let enttext te =
1887 state.mode <- Textentry (te, onleave);
1888 state.text <- "";
1889 enttext ();
1890 Glut.postRedisplay ()
1892 match Char.unsafe_chr key with
1893 | '\008' -> (* backspace *)
1894 let len = String.length text in
1895 if len = 0
1896 then (
1897 onleave Cancel;
1898 Glut.postRedisplay ();
1900 else (
1901 let s = String.sub text 0 (len - 1) in
1902 enttext (c, s, opthist, onkey, ondone)
1905 | '\r' | '\n' ->
1906 ondone text;
1907 onleave Confirm;
1908 Glut.postRedisplay ()
1910 | '\027' -> (* escape *)
1911 begin match opthist with
1912 | None -> ()
1913 | Some (_, onhistcancel) -> onhistcancel ()
1914 end;
1915 onleave Cancel;
1916 Glut.postRedisplay ()
1918 | _ ->
1919 begin match onkey text key with
1920 | TEdone text ->
1921 onleave Confirm;
1922 ondone text;
1923 Glut.postRedisplay ()
1925 | TEcont text ->
1926 enttext (c, text, opthist, onkey, ondone);
1928 | TEstop ->
1929 onleave Cancel;
1930 Glut.postRedisplay ()
1932 | TEswitch te ->
1933 state.mode <- Textentry (te, onleave);
1934 Glut.postRedisplay ()
1935 end;
1938 let birdseyekeyboard ~key ~x ~y ((_, _, pageno, _, _) as beye) =
1939 match key with
1940 | 27 -> (* escape *)
1941 leavebirdseye beye true
1943 | 12 -> (* ctrl-l *)
1944 let y, h = getpageyh pageno in
1945 let top = (conf.winh - h) / 2 in
1946 gotoy (max 0 (y - top))
1948 | 13 -> (* enter *)
1949 leavebirdseye beye false
1951 | _ ->
1952 viewkeyboard ~key ~x ~y
1955 let itemskeyboard ~key ~x ~y (active, first, items, qsearch, pan, oldmode) =
1956 ignore x;
1957 ignore y;
1958 let set active first qsearch =
1959 state.mode <- Items (active, first, items, qsearch, pan, oldmode)
1961 let search active pattern incr =
1962 let dosearch re =
1963 let rec loop n =
1964 if n = Array.length items || n = -1
1965 then None
1966 else
1967 let (s, _, _) = items.(n) in
1969 (try ignore (Str.search_forward re s 0); true
1970 with Not_found -> false)
1971 then Some n
1972 else loop (n + incr)
1974 loop active
1977 let re = Str.regexp_case_fold pattern in
1978 dosearch re
1979 with Failure s ->
1980 state.text <- s;
1981 None
1983 let firstof active = max 0 (active - maxoutlinerows () / 2) in
1984 match key with
1985 | 18 | 19 -> (* ctrl-r/ctlr-s *)
1986 let incr = if key = 18 then -1 else 1 in
1987 let active, first =
1988 match search (active + incr) qsearch incr with
1989 | None ->
1990 state.text <- qsearch ^ " [not found]";
1991 active, first
1992 | Some active ->
1993 state.text <- qsearch;
1994 active, firstof active
1996 set active first qsearch;
1997 Glut.postRedisplay ();
1999 | 8 -> (* backspace *)
2000 let len = String.length qsearch in
2001 if len = 0
2002 then ()
2003 else (
2004 if len = 1
2005 then (
2006 state.text <- "";
2007 set active first "";
2009 else
2010 let qsearch = String.sub qsearch 0 (len - 1) in
2011 let active, first =
2012 match search active qsearch ~-1 with
2013 | None ->
2014 state.text <- qsearch ^ " [not found]";
2015 active, first
2016 | Some active ->
2017 state.text <- qsearch;
2018 active, firstof active
2020 set active first qsearch
2022 Glut.postRedisplay ()
2024 | _ when key >= 32 && key < 127 ->
2025 let pattern = addchar qsearch (Char.chr key) in
2026 let active, first =
2027 match search active pattern 1 with
2028 | None ->
2029 state.text <- pattern ^ " [not found]";
2030 active, first
2031 | Some active ->
2032 state.text <- pattern;
2033 active, firstof active
2035 set active first pattern;
2036 Glut.postRedisplay ()
2038 | 27 -> (* escape *)
2039 state.text <- "";
2040 state.mode <- oldmode;
2041 Glut.postRedisplay ();
2043 | 13 -> (* enter *)
2044 if active < Array.length items
2045 then (
2046 match items.(active) with
2047 | _, _, Action f ->
2048 state.mode <- f active first qsearch pan
2050 | _, _, Noaction ->
2051 state.text <- "";
2052 state.mode <- oldmode
2054 Glut.postRedisplay ();
2056 | _ -> dolog "unknown key %d" key
2059 let outlinekeyboard ~key ~x ~y
2060 (allowdel, active, first, outlines, qsearch, pan, oldmode) =
2061 ignore x;
2062 ignore y;
2063 let narrow outlines pattern =
2064 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
2065 match reopt with
2066 | None -> None
2067 | Some re ->
2068 let rec fold accu n =
2069 if n = -1
2070 then accu
2071 else
2072 let (s, _, _) as o = outlines.(n) in
2073 let accu =
2074 if (try ignore (Str.search_forward re s 0); true
2075 with Not_found -> false)
2076 then (o :: accu)
2077 else accu
2079 fold accu (n-1)
2081 let matched = fold [] (Array.length outlines - 1) in
2082 if matched = [] then None else Some (Array.of_list matched)
2084 let search active pattern incr =
2085 let dosearch re =
2086 let rec loop n =
2087 if n = Array.length outlines || n = -1
2088 then None
2089 else
2090 let (s, _, _) = outlines.(n) in
2092 (try ignore (Str.search_forward re s 0); true
2093 with Not_found -> false)
2094 then Some n
2095 else loop (n + incr)
2097 loop active
2100 let re = Str.regexp_case_fold pattern in
2101 dosearch re
2102 with Failure s ->
2103 state.text <- s;
2104 None
2106 let firstof active = max 0 (active - maxoutlinerows () / 2) in
2107 match key with
2108 | 27 -> (* escape *)
2109 if String.length qsearch = 0
2110 then (
2111 state.text <- "";
2112 state.mode <- oldmode;
2113 Glut.postRedisplay ();
2115 else (
2116 state.text <- "";
2117 state.mode <- Outline (
2118 allowdel, active, first, outlines, "", pan, oldmode
2120 Glut.postRedisplay ();
2123 | 18 | 19 -> (* ctrl-r/ctrl-s *)
2124 let incr = if key = 18 then -1 else 1 in
2125 let active, first =
2126 match search (active + incr) qsearch incr with
2127 | None ->
2128 state.text <- qsearch ^ " [not found]";
2129 active, first
2130 | Some active ->
2131 state.text <- qsearch;
2132 active, firstof active
2134 state.mode <- Outline (
2135 allowdel, active, first, outlines, qsearch, pan, oldmode
2137 Glut.postRedisplay ();
2139 | 8 -> (* backspace *)
2140 let len = String.length qsearch in
2141 if len = 0
2142 then ()
2143 else (
2144 if len = 1
2145 then (
2146 state.text <- "";
2147 state.mode <- Outline (
2148 allowdel, active, first, outlines, "", pan, oldmode
2151 else
2152 let qsearch = String.sub qsearch 0 (len - 1) in
2153 let active, first =
2154 match search active qsearch ~-1 with
2155 | None ->
2156 state.text <- qsearch ^ " [not found]";
2157 active, first
2158 | Some active ->
2159 state.text <- qsearch;
2160 active, firstof active
2162 state.mode <- Outline (
2163 allowdel, active, first, outlines, qsearch, pan, oldmode
2166 Glut.postRedisplay ()
2168 | 13 -> (* enter *)
2169 if active < Array.length outlines
2170 then (
2171 let (_, _, anchor) = outlines.(active) in
2172 addnav ();
2173 gotoanchor anchor;
2175 state.text <- "";
2176 if allowdel then state.bookmarks <- Array.to_list outlines;
2177 state.mode <- oldmode;
2178 Glut.postRedisplay ();
2180 | _ when key >= 32 && key < 127 ->
2181 let pattern = addchar qsearch (Char.chr key) in
2182 let active, first =
2183 match search active pattern 1 with
2184 | None ->
2185 state.text <- pattern ^ " [not found]";
2186 active, first
2187 | Some active ->
2188 state.text <- pattern;
2189 active, firstof active
2191 state.mode <- Outline (
2192 allowdel, active, first, outlines, pattern, pan, oldmode
2194 Glut.postRedisplay ()
2196 | 14 when not allowdel -> (* ctrl-n *)
2197 if String.length qsearch > 0
2198 then (
2199 let optoutlines = narrow outlines qsearch in
2200 begin match optoutlines with
2201 | None -> state.text <- "can't narrow"
2202 | Some outlines ->
2203 state.mode <- Outline (
2204 allowdel, 0, 0, outlines, qsearch, pan, oldmode
2206 match state.outlines with
2207 | Olist _ -> ()
2208 | Oarray a ->
2209 state.outlines <- Onarrow (qsearch, outlines, a)
2210 | Onarrow (_, _, b) ->
2211 state.outlines <- Onarrow (qsearch, outlines, b)
2212 end;
2214 Glut.postRedisplay ()
2216 | 21 when not allowdel -> (* ctrl-u *)
2217 let outline =
2218 match state.outlines with
2219 | Oarray a -> a
2220 | Olist l ->
2221 let a = Array.of_list (List.rev l) in
2222 state.outlines <- Oarray a;
2224 | Onarrow (_, _, b) ->
2225 state.outlines <- Oarray b;
2226 state.text <- "";
2229 state.mode <- Outline (allowdel, 0, 0, outline, qsearch, pan, oldmode);
2230 Glut.postRedisplay ()
2232 | 12 -> (* ctrl-l *)
2233 state.mode <- Outline
2234 (allowdel, active, firstof active, outlines, qsearch, pan, oldmode);
2235 Glut.postRedisplay ()
2237 | 127 when allowdel -> (* delete *)
2238 let len = Array.length outlines - 1 in
2239 if len = 0
2240 then (
2241 state.mode <- View;
2242 state.bookmarks <- [];
2244 else (
2245 let bookmarks = Array.init len
2246 (fun i ->
2247 let i = if i >= active then i + 1 else i in
2248 outlines.(i)
2251 state.mode <-
2252 Outline (
2253 allowdel,
2254 min active (len-1),
2255 min first (len-1),
2256 bookmarks, qsearch,
2258 oldmode
2261 Glut.postRedisplay ()
2263 | _ -> dolog "unknown key %d" key
2266 let keyboard ~key ~x ~y =
2267 if key = 7
2268 then
2269 wcmd "interrupt" []
2270 else
2271 match state.mode with
2272 | Outline outline -> outlinekeyboard ~key ~x ~y outline
2273 | Textentry textentry -> textentrykeyboard ~key ~x ~y textentry
2274 | Birdseye birdseye -> birdseyekeyboard ~key ~x ~y birdseye
2275 | View -> viewkeyboard ~key ~x ~y
2276 | Items items -> itemskeyboard ~key ~x ~y items
2279 let birdseyespecial key _ _
2280 ((conf, leftx, _, hooverpageno, anchor) as beye) =
2281 match key with
2282 | Glut.KEY_UP -> upbirdseye beye
2283 | Glut.KEY_DOWN -> downbirdseye beye
2285 | Glut.KEY_PAGE_UP ->
2286 begin match state.layout with
2287 | l :: _ ->
2288 if l.pagey != 0
2289 then (
2290 state.mode <- Birdseye (
2291 conf, leftx, l.pageno, hooverpageno, anchor
2293 gotopage1 l.pageno 0;
2295 else (
2296 let layout = layout (state.y-conf.winh) conf.winh in
2297 match layout with
2298 | [] -> gotoy (clamp (-conf.winh))
2299 | l :: _ ->
2300 state.mode <- Birdseye (
2301 conf, leftx, l.pageno, hooverpageno, anchor
2303 gotopage1 l.pageno 0
2306 | [] -> gotoy (clamp (-conf.winh))
2307 end;
2309 | Glut.KEY_PAGE_DOWN ->
2310 begin match List.rev state.layout with
2311 | l :: _ ->
2312 let layout = layout (state.y + conf.winh) conf.winh in
2313 begin match layout with
2314 | [] ->
2315 let incr = l.pageh - l.pagevh in
2316 if incr = 0
2317 then (
2318 state.mode <-
2319 Birdseye (
2320 conf, leftx, state.pagecount - 1, hooverpageno, anchor
2322 Glut.postRedisplay ();
2324 else gotoy (clamp (incr + conf.interpagespace*2));
2326 | l :: _ ->
2327 state.mode <-
2328 Birdseye (conf, leftx, l.pageno, hooverpageno, anchor);
2329 gotopage1 l.pageno 0;
2332 | [] -> gotoy (clamp conf.winh)
2333 end;
2335 | Glut.KEY_HOME ->
2336 state.mode <- Birdseye (conf, leftx, 0, hooverpageno, anchor);
2337 gotopage1 0 0
2339 | Glut.KEY_END ->
2340 let pageno = state.pagecount - 1 in
2341 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2342 if not (pagevisible state.layout pageno)
2343 then
2344 let h =
2345 match List.rev state.pdims with
2346 | [] -> conf.winh
2347 | (_, _, h, _) :: _ -> h
2349 gotoy (max 0 (getpagey pageno - (conf.winh - h - conf.interpagespace)))
2350 else Glut.postRedisplay ();
2351 | _ -> ()
2354 let setautoscrollspeed goingdown =
2355 let incr = max 1 (state.ascrollstep / 2) in
2356 let astep = max 1 (state.ascrollstep + (if goingdown then incr else -incr)) in
2357 state.ascrollstep <- astep;
2360 let special ~key ~x ~y =
2361 match state.mode with
2362 | View | (Birdseye _) when key = Glut.KEY_F9 ->
2363 togglebirdseye ()
2365 | Birdseye vals ->
2366 birdseyespecial key x y vals
2368 | View when key = Glut.KEY_F1 ->
2369 enterhelpmode ()
2371 | View ->
2372 if state.ascrollstep > 0 && (key = Glut.KEY_DOWN || key = Glut.KEY_UP)
2373 then setautoscrollspeed (key = Glut.KEY_DOWN)
2374 else
2375 let y =
2376 match key with
2377 | Glut.KEY_F3 -> search state.searchpattern true; state.y
2378 | Glut.KEY_UP -> clamp (-conf.scrollstep)
2379 | Glut.KEY_DOWN -> clamp conf.scrollstep
2380 | Glut.KEY_PAGE_UP ->
2381 if Glut.getModifiers () land Glut.active_ctrl != 0
2382 then
2383 match state.layout with
2384 | [] -> state.y
2385 | l :: _ -> state.y - l.pagey
2386 else
2387 clamp (-conf.winh)
2388 | Glut.KEY_PAGE_DOWN ->
2389 if Glut.getModifiers () land Glut.active_ctrl != 0
2390 then
2391 match List.rev state.layout with
2392 | [] -> state.y
2393 | l :: _ -> getpagey l.pageno
2394 else
2395 clamp conf.winh
2396 | Glut.KEY_HOME -> addnav (); 0
2397 | Glut.KEY_END ->
2398 addnav ();
2399 state.maxy - (if conf.maxhfit then conf.winh else 0)
2401 | (Glut.KEY_RIGHT | Glut.KEY_LEFT) when
2402 Glut.getModifiers () land Glut.active_alt != 0 ->
2403 getnav (if key = Glut.KEY_LEFT then 1 else -1)
2405 | Glut.KEY_RIGHT when conf.zoom > 1.0 ->
2406 state.x <- state.x - 10;
2407 state.y
2408 | Glut.KEY_LEFT when conf.zoom > 1.0 ->
2409 state.x <- state.x + 10;
2410 state.y
2412 | _ -> state.y
2414 gotoy_and_clear_text y
2416 | Textentry
2417 ((c, _, (Some (action, _) as onhist), onkey, ondone), mode) ->
2418 let s =
2419 match key with
2420 | Glut.KEY_UP -> action HCprev
2421 | Glut.KEY_DOWN -> action HCnext
2422 | Glut.KEY_HOME -> action HCfirst
2423 | Glut.KEY_END -> action HClast
2424 | _ -> state.text
2426 state.mode <- Textentry ((c, s, onhist, onkey, ondone), mode);
2427 Glut.postRedisplay ()
2429 | Textentry _ -> ()
2431 | Items (active, first, items, qsearch, pan, oldmode) ->
2432 let maxrows = maxoutlinerows () in
2433 let itemcount = Array.length items in
2434 let hasaction = function
2435 | (_, _, Noaction) -> false
2436 | _ -> true
2438 let find start incr =
2439 let rec find i =
2440 if i = -1 || i = itemcount
2441 then -1
2442 else (
2443 if hasaction items.(i)
2444 then i
2445 else find (i + incr)
2448 find start
2450 let set active first =
2451 let first = max 0 (min first (itemcount - maxrows)) in
2452 state.mode <- Items (active, first, items, qsearch, pan, oldmode)
2454 let navigate incr =
2455 let isvisible first n = n >= first && n - first <= maxrows in
2456 let active, first =
2457 let incr1 = if incr > 0 then 1 else -1 in
2458 if isvisible first active
2459 then
2460 let next =
2461 let next = active + incr in
2462 let next =
2463 if next < 0 || next >= itemcount
2464 then -1
2465 else find next incr1
2467 if next = -1 || abs (active - next) > maxrows
2468 then -1
2469 else next
2471 if next = -1
2472 then
2473 let first = first + incr in
2474 let first = max 0 (min first (itemcount - 1)) in
2475 let next =
2476 let next = active + incr in
2477 let next = max 0 (min next (itemcount - 1)) in
2478 find next ~-incr1
2480 let active = if next = -1 then active else next in
2481 active, first
2482 else
2483 let first = min next first in
2484 next, first
2485 else
2486 let first = first + incr in
2487 let first = max 0 (min first (itemcount - 1)) in
2488 let active =
2489 let next = active + incr in
2490 let next = max 0 (min next (itemcount - 1)) in
2491 let next = find next incr1 in
2492 if next = -1 || abs (active - first) > maxrows
2493 then active
2494 else next
2496 active, first
2498 set active first;
2499 Glut.postRedisplay ()
2501 begin match key with
2502 | Glut.KEY_UP -> navigate ~-1
2503 | Glut.KEY_DOWN -> navigate 1
2504 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
2505 | Glut.KEY_PAGE_DOWN -> navigate maxrows
2507 | Glut.KEY_RIGHT ->
2508 state.mode <- Items (
2509 active, first, items, qsearch, min 0 (pan - 1), oldmode
2511 Glut.postRedisplay ()
2513 | Glut.KEY_LEFT ->
2514 state.mode <- Items (
2515 active, first, items, qsearch, min 0 (pan + 1), oldmode
2517 Glut.postRedisplay ()
2519 | Glut.KEY_HOME ->
2520 let active = find 0 1 in
2521 set active 0;
2522 Glut.postRedisplay ()
2524 | Glut.KEY_END ->
2525 let first = max 0 (itemcount - maxrows) in
2526 let active = find (itemcount - 1) ~-1 in
2527 set active first;
2528 Glut.postRedisplay ()
2530 | _ -> ()
2531 end;
2533 | Outline (allowdel, active, first, outlines, qsearch, pan, oldmode) ->
2534 let maxrows = maxoutlinerows () in
2535 let calcfirst first active =
2536 if active > first
2537 then
2538 let rows = active - first in
2539 if rows > maxrows then active - maxrows else first
2540 else active
2542 let navigate incr =
2543 let active = active + incr in
2544 let active = max 0 (min active (Array.length outlines - 1)) in
2545 let first = calcfirst first active in
2546 state.mode <- Outline (
2547 allowdel, active, first, outlines, qsearch, pan, oldmode
2549 Glut.postRedisplay ()
2551 let updownlevel incr =
2552 let len = Array.length outlines in
2553 let (_, curlevel, _) = outlines.(active) in
2554 let rec flow i =
2555 if i = len then i-1 else if i = -1 then 0 else
2556 let (_, l, _) = outlines.(i) in
2557 if l != curlevel then i else flow (i+incr)
2559 let active = flow active in
2560 let first = calcfirst first active in
2561 state.mode <- Outline (
2562 allowdel, active, first, outlines, qsearch, pan, oldmode
2564 Glut.postRedisplay ()
2566 match key with
2567 | Glut.KEY_UP -> navigate ~-1
2568 | Glut.KEY_DOWN -> navigate 1
2569 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
2570 | Glut.KEY_PAGE_DOWN -> navigate maxrows
2572 | Glut.KEY_RIGHT ->
2573 if Glut.getModifiers () land Glut.active_ctrl != 0
2574 then (
2575 state.mode <- Outline (
2576 allowdel, active, first, outlines,
2577 qsearch, min 0 (pan + 1), oldmode
2579 Glut.postRedisplay ();
2581 else (
2582 if not allowdel
2583 then updownlevel 1
2586 | Glut.KEY_LEFT ->
2587 if Glut.getModifiers () land Glut.active_ctrl != 0
2588 then (
2589 state.mode <- Outline (
2590 allowdel, active, first, outlines, qsearch, pan - 1, oldmode
2592 Glut.postRedisplay ();
2594 else (
2595 if not allowdel
2596 then updownlevel ~-1
2599 | Glut.KEY_HOME ->
2600 state.mode <- Outline (
2601 allowdel, 0, 0, outlines, qsearch, pan, oldmode
2603 Glut.postRedisplay ()
2605 | Glut.KEY_END ->
2606 let active = Array.length outlines - 1 in
2607 let first = max 0 (active - maxrows) in
2608 state.mode <- Outline (
2609 allowdel, active, first, outlines, qsearch, pan, oldmode
2611 Glut.postRedisplay ()
2613 | _ -> ()
2616 let drawplaceholder l =
2617 let margin = state.x + (conf.winw - (state.w + conf.scrollw)) / 2 in
2618 GlDraw.rect
2619 (float l.pagex, float l.pagedispy)
2620 (float (l.pagew + l.pagex), float (l.pagedispy + l.pagevh))
2622 let x = float (if margin < 0 then -margin else l.pagex)
2623 and y = float (l.pagedispy + 13) in
2624 let font = Glut.BITMAP_8_BY_13 in
2625 GlDraw.color (0.0, 0.0, 0.0);
2626 GlPix.raster_pos ~x ~y ();
2627 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
2628 ("Loading " ^ string_of_int (l.pageno + 1));
2631 let now () = Unix.gettimeofday ();;
2633 let drawpage l =
2634 let color =
2635 match state.mode with
2636 | Textentry _ -> scalecolor 0.4
2637 | View | Outline _ | Items _ -> scalecolor 1.0
2638 | Birdseye (_, _, pageno, hooverpageno, _) ->
2639 if l.pageno = hooverpageno
2640 then scalecolor 0.9
2641 else (
2642 if l.pageno = pageno
2643 then scalecolor 1.0
2644 else scalecolor 0.8
2647 GlDraw.color color;
2648 begin match getopaque l.pageno with
2649 | Some (opaque, _) when validopaque opaque ->
2650 let a = now () in
2651 draw (l.pagedispy, l.pagew, l.pagevh, l.pagey, conf.hlinks)
2652 opaque;
2653 let b = now () in
2654 let d = b-.a in
2655 vlog "draw %d %f sec" l.pageno d;
2657 | _ ->
2658 drawplaceholder l;
2659 end;
2662 let scrollph y =
2663 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
2664 let sh = (float (maxy + conf.winh) /. float conf.winh) in
2665 let sh = float conf.winh /. sh in
2666 let sh = max sh (float conf.scrollh) in
2668 let percent =
2669 if state.y = state.maxy
2670 then 1.0
2671 else float y /. float maxy
2673 let position = (float conf.winh -. sh) *. percent in
2675 let position =
2676 if position +. sh > float conf.winh
2677 then float conf.winh -. sh
2678 else position
2680 position, sh;
2683 let scrollindicator () =
2684 GlDraw.color (0.64 , 0.64, 0.64);
2685 GlDraw.rect
2686 (float (conf.winw - conf.scrollw), 0.)
2687 (float conf.winw, float conf.winh)
2689 GlDraw.color (0.0, 0.0, 0.0);
2691 let position, sh = scrollph state.y in
2692 GlDraw.rect
2693 (float (conf.winw - conf.scrollw), position)
2694 (float conf.winw, position +. sh)
2698 let showsel margin =
2699 match state.mstate with
2700 | Mnone | Mscroll _ | Mpan _ | Mzoom _ ->
2703 | Msel ((x0, y0), (x1, y1)) ->
2704 let rec loop = function
2705 | l :: ls ->
2706 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
2707 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
2708 then
2709 match getopaque l.pageno with
2710 | Some (opaque, _) when validopaque opaque ->
2711 let oy = -l.pagey + l.pagedispy in
2712 seltext opaque
2713 (x0 - margin - state.x, y0,
2714 x1 - margin - state.x, y1) oy;
2716 | _ -> ()
2717 else loop ls
2718 | [] -> ()
2720 loop state.layout
2723 let showrects () =
2724 let panx = float state.x in
2725 Gl.enable `blend;
2726 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
2727 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
2728 List.iter
2729 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
2730 List.iter (fun l ->
2731 if l.pageno = pageno
2732 then (
2733 let d = float (l.pagedispy - l.pagey) in
2734 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
2735 GlDraw.begins `quads;
2737 GlDraw.vertex2 (x0+.panx, y0+.d);
2738 GlDraw.vertex2 (x1+.panx, y1+.d);
2739 GlDraw.vertex2 (x2+.panx, y2+.d);
2740 GlDraw.vertex2 (x3+.panx, y3+.d);
2742 GlDraw.ends ();
2744 ) state.layout
2745 ) state.rects
2747 Gl.disable `blend;
2750 let showstrings active first pan strings =
2751 Gl.enable `blend;
2752 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
2753 GlDraw.color (0., 0., 0.) ~alpha:0.85;
2754 GlDraw.rect (0., 0.) (float conf.winw, float conf.winh);
2755 Gl.disable `blend;
2757 GlDraw.color (1., 1., 1.);
2758 let font = Glut.BITMAP_9_BY_15 in
2759 let draw_string x y s =
2760 GlPix.raster_pos ~x ~y ();
2761 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
2763 let rec loop row =
2764 if row = Array.length strings || (row - first) * 16 > conf.winh
2765 then ()
2766 else (
2767 let (s, level, _) = strings.(row) in
2768 let y = (row - first) * 16 in
2769 let x = 5 + 15*(max 0 (level+pan)) in
2770 if row = active
2771 then (
2772 Gl.enable `blend;
2773 GlDraw.polygon_mode `both `line;
2774 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
2775 GlDraw.color (1., 1., 1.) ~alpha:0.9;
2776 GlDraw.rect (0., float (y + 1))
2777 (float (conf.winw - 1), float (y + 18));
2778 GlDraw.polygon_mode `both `fill;
2779 Gl.disable `blend;
2780 GlDraw.color (1., 1., 1.);
2782 let draw_string s =
2783 let l = String.length s in
2784 if pan < 0
2785 then (
2786 let pan = pan * 2 in
2787 let pos = pan + level in
2788 let left = l + pos in
2789 if left > 0
2790 then
2791 let s =
2792 if left > l
2793 then s
2794 else String.sub s (-pos) left
2796 draw_string (float x) (float (y + 16)) s
2798 else
2799 draw_string (float (x + pan*15)) (float (y + 16)) s
2801 draw_string s;
2802 loop (row+1)
2805 loop first
2808 let showoutline (_, active, first, outlines, _, pan, _) =
2809 showstrings active first pan outlines;
2812 let showitems (active, first, items, _, pan, _) =
2813 showstrings active first pan items;
2816 let display () =
2817 let margin = (conf.winw - (state.w + conf.scrollw)) / 2 in
2818 GlDraw.viewport margin 0 state.w conf.winh;
2819 pagematrix ();
2820 GlClear.color (scalecolor2 conf.bgcolor);
2821 GlClear.clear [`color];
2822 if conf.zoom > 1.0
2823 then (
2824 Gl.enable `scissor_test;
2825 GlMisc.scissor 0 0 (conf.winw - conf.scrollw) conf.winh;
2827 List.iter drawpage state.layout;
2828 if conf.zoom > 1.0
2829 then
2830 Gl.disable `scissor_test
2832 if state.x != 0
2833 then (
2834 let x = -.float state.x in
2835 GlMat.translate ~x ();
2837 showrects ();
2838 showsel margin;
2839 GlDraw.viewport 0 0 conf.winw conf.winh;
2840 winmatrix ();
2841 scrollindicator ();
2842 begin match state.mode with
2843 | Items items -> showitems items
2844 | Outline outline -> showoutline outline
2845 | _ -> ()
2846 end;
2847 enttext ();
2848 Glut.swapBuffers ();
2851 let getunder x y =
2852 let margin = (conf.winw - (state.w + conf.scrollw)) / 2 in
2853 let x = x - margin - state.x in
2854 let rec f = function
2855 | l :: rest ->
2856 begin match getopaque l.pageno with
2857 | Some (opaque, _) when validopaque opaque ->
2858 let y = y - l.pagedispy in
2859 if y > 0
2860 then
2861 let y = l.pagey + y in
2862 let x = x - l.pagex in
2863 match whatsunder opaque x y with
2864 | Unone -> f rest
2865 | under -> under
2866 else
2867 f rest
2868 | _ ->
2869 f rest
2871 | [] -> Unone
2873 f state.layout
2876 let viewmouse button bstate x y =
2877 match button with
2878 | Glut.OTHER_BUTTON n when (n == 3 || n == 4) && bstate = Glut.UP ->
2879 if Glut.getModifiers () land Glut.active_ctrl != 0
2880 then (
2881 match state.mstate with
2882 | Mzoom (oldn, i) ->
2883 if oldn = n
2884 then (
2885 if i = 2
2886 then
2887 let incr =
2888 match n with
2889 | 4 ->
2890 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
2891 | _ ->
2892 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
2894 let zoom = conf.zoom +. incr in
2895 setzoom zoom;
2896 state.mstate <- Mzoom (n, 0);
2897 else
2898 state.mstate <- Mzoom (n, i+1);
2900 else state.mstate <- Mzoom (n, 0)
2902 | _ -> state.mstate <- Mzoom (n, 0)
2904 else (
2905 if state.ascrollstep > 0
2906 then
2907 setautoscrollspeed (n=4)
2908 else
2909 let incr =
2910 if n = 3
2911 then -conf.scrollstep
2912 else conf.scrollstep
2914 let incr = incr * 2 in
2915 let y = clamp incr in
2916 gotoy_and_clear_text y
2919 | Glut.LEFT_BUTTON when Glut.getModifiers () land Glut.active_ctrl != 0 ->
2920 if bstate = Glut.DOWN
2921 then (
2922 Glut.setCursor Glut.CURSOR_CROSSHAIR;
2923 state.mstate <- Mpan (x, y)
2925 else
2926 state.mstate <- Mnone
2928 | Glut.LEFT_BUTTON when x > conf.winw - conf.scrollw ->
2929 if bstate = Glut.DOWN
2930 then
2931 let position, sh = scrollph state.y in
2932 if y > truncate position && y < truncate (position +. sh)
2933 then
2934 state.mstate <- Mscroll
2935 else
2936 let percent = float y /. float conf.winh in
2937 let desty = truncate (float (state.maxy - conf.winh) *. percent) in
2938 gotoy desty;
2939 state.mstate <- Mscroll
2940 else
2941 state.mstate <- Mnone
2943 | Glut.LEFT_BUTTON ->
2944 let dest = if bstate = Glut.DOWN then getunder x y else Unone in
2945 begin match dest with
2946 | Ulinkgoto (pageno, top) ->
2947 if pageno >= 0
2948 then (
2949 addnav ();
2950 gotopage1 pageno top;
2953 | Ulinkuri s ->
2954 print_endline s
2956 | Unone when bstate = Glut.DOWN ->
2957 Glut.setCursor Glut.CURSOR_CROSSHAIR;
2958 state.mstate <- Mpan (x, y);
2960 | Unone | Utext _ ->
2961 if bstate = Glut.DOWN
2962 then (
2963 if conf.angle mod 360 = 0
2964 then (
2965 state.mstate <- Msel ((x, y), (x, y));
2966 Glut.postRedisplay ()
2969 else (
2970 match state.mstate with
2971 | Mnone -> ()
2973 | Mzoom _ | Mscroll ->
2974 state.mstate <- Mnone
2976 | Mpan _ ->
2977 Glut.setCursor Glut.CURSOR_INHERIT;
2978 state.mstate <- Mnone
2980 | Msel ((_, y0), (_, y1)) ->
2981 let f l =
2982 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
2983 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh)))
2984 then
2985 match getopaque l.pageno with
2986 | Some (opaque, _) when validopaque opaque ->
2987 copysel opaque
2988 | _ -> ()
2990 List.iter f state.layout;
2991 copysel ""; (* ugly *)
2992 Glut.setCursor Glut.CURSOR_INHERIT;
2993 state.mstate <- Mnone;
2997 | _ -> ()
3000 let birdseyemouse button bstate x y
3001 (conf, leftx, _, hooverpageno, anchor) =
3002 match button with
3003 | Glut.LEFT_BUTTON when bstate = Glut.UP ->
3004 let margin = (conf.winw - (state.w + conf.scrollw)) / 2 in
3005 let rec loop = function
3006 | [] -> ()
3007 | l :: rest ->
3008 if y > l.pagedispy && y < l.pagedispy + l.pagevh
3009 && x > margin && x < margin + l.pagew
3010 then (
3011 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
3013 else loop rest
3015 loop state.layout
3016 | Glut.OTHER_BUTTON _ -> viewmouse button bstate x y
3017 | _ -> ()
3020 let mouse bstate button x y =
3021 match state.mode with
3022 | View -> viewmouse button bstate x y
3023 | Birdseye beye -> birdseyemouse button bstate x y beye
3024 | Textentry _ | Outline _ | Items _ -> ()
3027 let mouse ~button ~state ~x ~y = mouse state button x y;;
3029 let motion ~x ~y =
3030 match state.mode with
3031 | Outline _ -> ()
3032 | _ ->
3033 match state.mstate with
3034 | Mzoom _ | Mnone -> ()
3036 | Mpan (x0, y0) ->
3037 let dx = x - x0
3038 and dy = y0 - y in
3039 state.mstate <- Mpan (x, y);
3040 if conf.zoom > 1.0 then state.x <- state.x + dx;
3041 let y = clamp dy in
3042 gotoy_and_clear_text y
3044 | Msel (a, _) ->
3045 state.mstate <- Msel (a, (x, y));
3046 Glut.postRedisplay ()
3048 | Mscroll ->
3049 let y = min conf.winh (max 0 y) in
3050 let percent = float y /. float conf.winh in
3051 let y = truncate (float (state.maxy - conf.winh) *. percent) in
3052 gotoy_and_clear_text y
3055 let pmotion ~x ~y =
3056 match state.mode with
3057 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
3058 let margin = (conf.winw - (state.w + conf.scrollw)) / 2 in
3059 let rec loop = function
3060 | [] ->
3061 if hooverpageno != -1
3062 then (
3063 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
3064 Glut.postRedisplay ();
3066 | l :: rest ->
3067 if y > l.pagedispy && y < l.pagedispy + l.pagevh
3068 && x > margin && x < margin + l.pagew
3069 then (
3070 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
3071 Glut.postRedisplay ();
3073 else loop rest
3075 loop state.layout
3077 | Outline _ | Items _ | Textentry _ -> ()
3078 | View ->
3079 match state.mstate with
3080 | Mnone ->
3081 begin match getunder x y with
3082 | Unone -> Glut.setCursor Glut.CURSOR_INHERIT
3083 | Ulinkuri uri ->
3084 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
3085 Glut.setCursor Glut.CURSOR_INFO
3086 | Ulinkgoto (page, _) ->
3087 if conf.underinfo
3088 then showtext 'p' ("age: " ^ string_of_int page);
3089 Glut.setCursor Glut.CURSOR_INFO
3090 | Utext s ->
3091 if conf.underinfo then showtext 'f' ("ont: " ^ s);
3092 Glut.setCursor Glut.CURSOR_TEXT
3095 | Mpan _ | Msel _ | Mzoom _ | Mscroll ->
3100 module State =
3101 struct
3102 open Parser
3104 let home =
3106 match Sys.os_type with
3107 | "Win32" -> Sys.getenv "HOMEPATH"
3108 | _ -> Sys.getenv "HOME"
3109 with exn ->
3110 prerr_endline
3111 ("Can not determine home directory location: " ^
3112 Printexc.to_string exn);
3116 let color_of_string s =
3117 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3118 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3122 let config_of c attrs =
3123 let apply c k v =
3125 match k with
3126 | "scroll-bar-width" -> { c with scrollw = max 0 (int_of_string v) }
3127 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
3128 | "case-insensitive-search" -> { c with icase = bool_of_string v }
3129 | "preload" -> { c with preload = bool_of_string v }
3130 | "page-bias" -> { c with pagebias = int_of_string v }
3131 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
3132 | "auto-scroll-step" ->
3133 { c with autoscrollstep = max 0 (int_of_string v) }
3134 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
3135 | "crop-hack" -> { c with crophack = bool_of_string v }
3136 | "throttle" -> { c with showall = bool_of_string v }
3137 | "highlight-links" -> { c with hlinks = bool_of_string v }
3138 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
3139 | "vertical-margin" ->
3140 { c with interpagespace = max 0 (int_of_string v) }
3141 | "zoom" ->
3142 let zoom = float_of_string v /. 100. in
3143 let zoom = max 0.01 (min 2.2 zoom) in
3144 { c with zoom = zoom }
3145 | "presentation" -> { c with presentation = bool_of_string v }
3146 | "rotation-angle" -> { c with angle = int_of_string v }
3147 | "width" -> { c with winw = max 20 (int_of_string v) }
3148 | "height" -> { c with winh = max 20 (int_of_string v) }
3149 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
3150 | "proportional-display" -> { c with proportional = bool_of_string v }
3151 | "pixmap-cache-size" -> { c with memlimit = max 2 (int_of_string v) }
3152 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
3153 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
3154 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
3155 | "persistent-location" -> { c with jumpback = bool_of_string v }
3156 | "background-color" -> { c with bgcolor = color_of_string v }
3157 | _ -> c
3158 with exn ->
3159 prerr_endline ("Error processing attribute (`" ^
3160 k ^ "'=`" ^ v ^ "'): " ^ Printexc.to_string exn);
3163 let rec fold c = function
3164 | [] -> c
3165 | (k, v) :: rest ->
3166 let c = apply c k v in
3167 fold c rest
3169 fold c attrs;
3172 let fromstring f pos n v d =
3173 try f v
3174 with exn ->
3175 dolog "Error processing attribute (%S=%S) at %d\n%s"
3176 n v pos (Printexc.to_string exn)
3181 let bookmark_of attrs =
3182 let rec fold title page rely = function
3183 | ("title", v) :: rest -> fold v page rely rest
3184 | ("page", v) :: rest -> fold title v rely rest
3185 | ("rely", v) :: rest -> fold title page v rest
3186 | _ :: rest -> fold title page rely rest
3187 | [] -> title, page, rely
3189 fold "invalid" "0" "0" attrs
3192 let doc_of attrs =
3193 let rec fold path page rely pan = function
3194 | ("path", v) :: rest -> fold v page rely pan rest
3195 | ("page", v) :: rest -> fold path v rely pan rest
3196 | ("rely", v) :: rest -> fold path page v pan rest
3197 | ("pan", v) :: rest -> fold path page rely v rest
3198 | _ :: rest -> fold path page rely pan rest
3199 | [] -> path, page, rely, pan
3201 fold "" "0" "0" "0" attrs
3204 let setconf dst src =
3205 dst.scrollw <- src.scrollw;
3206 dst.scrollh <- src.scrollh;
3207 dst.icase <- src.icase;
3208 dst.preload <- src.preload;
3209 dst.pagebias <- src.pagebias;
3210 dst.verbose <- src.verbose;
3211 dst.scrollstep <- src.scrollstep;
3212 dst.maxhfit <- src.maxhfit;
3213 dst.crophack <- src.crophack;
3214 dst.autoscrollstep <- src.autoscrollstep;
3215 dst.showall <- src.showall;
3216 dst.hlinks <- src.hlinks;
3217 dst.underinfo <- src.underinfo;
3218 dst.interpagespace <- src.interpagespace;
3219 dst.zoom <- src.zoom;
3220 dst.presentation <- src.presentation;
3221 dst.angle <- src.angle;
3222 dst.winw <- src.winw;
3223 dst.winh <- src.winh;
3224 dst.savebmarks <- src.savebmarks;
3225 dst.memlimit <- src.memlimit;
3226 dst.proportional <- src.proportional;
3227 dst.texcount <- src.texcount;
3228 dst.sliceheight <- src.sliceheight;
3229 dst.thumbw <- src.thumbw;
3230 dst.jumpback <- src.jumpback;
3231 dst.bgcolor <- src.bgcolor;
3234 let unent s =
3235 let l = String.length s in
3236 let b = Buffer.create l in
3237 unent b s 0 l;
3238 Buffer.contents b;
3241 let get s =
3242 let h = Hashtbl.create 10 in
3243 let dc = { defconf with angle = defconf.angle } in
3244 let rec toplevel v t spos _ =
3245 match t with
3246 | Vdata | Vcdata | Vend -> v
3247 | Vopen ("llppconfig", _, closed) ->
3248 if closed
3249 then v
3250 else { v with f = llppconfig }
3251 | Vopen _ ->
3252 error "unexpected subelement at top level" s spos
3253 | Vclose _ -> error "unexpected close at top level" s spos
3255 and llppconfig v t spos _ =
3256 match t with
3257 | Vdata | Vcdata | Vend -> v
3258 | Vopen ("defaults", attrs, closed) ->
3259 let c = config_of dc attrs in
3260 setconf dc c;
3261 if closed
3262 then v
3263 else { v with f = skip "defaults" (fun () -> v) }
3265 | Vopen ("doc", attrs, closed) ->
3266 let pathent, spage, srely, span = doc_of attrs in
3267 let path = unent pathent
3268 and pageno = fromstring int_of_string spos "page" spage 0
3269 and rely = fromstring float_of_string spos "rely" srely 0.0
3270 and pan = fromstring int_of_string spos "pan" span 0 in
3271 let c = config_of dc attrs in
3272 let anchor = (pageno, rely) in
3273 if closed
3274 then (Hashtbl.add h path (c, [], pan, anchor); v)
3275 else { v with f = doc path pan anchor c [] }
3277 | Vopen _ ->
3278 error "unexpected subelement in llppconfig" s spos
3280 | Vclose "llppconfig" -> { v with f = toplevel }
3281 | Vclose _ -> error "unexpected close in llppconfig" s spos
3283 and doc path pan anchor c bookmarks v t spos _ =
3284 match t with
3285 | Vdata | Vcdata -> v
3286 | Vend -> error "unexpected end of input in doc" s spos
3287 | Vopen ("bookmarks", _, closed) ->
3288 if closed
3289 then v
3290 else { v with f = pbookmarks path pan anchor c bookmarks }
3292 | Vopen (_, _, _) ->
3293 error "unexpected subelement in doc" s spos
3295 | Vclose "doc" ->
3296 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
3297 { v with f = llppconfig }
3299 | Vclose _ -> error "unexpected close in doc" s spos
3301 and pbookmarks path pan anchor c bookmarks v t spos _ =
3302 match t with
3303 | Vdata | Vcdata -> v
3304 | Vend -> error "unexpected end of input in bookmarks" s spos
3305 | Vopen ("item", attrs, closed) ->
3306 let titleent, spage, srely = bookmark_of attrs in
3307 let page = fromstring int_of_string spos "page" spage 0
3308 and rely = fromstring float_of_string spos "rely" srely 0.0 in
3309 let bookmarks = (unent titleent, 0, (page, rely)) :: bookmarks in
3310 if closed
3311 then { v with f = pbookmarks path pan anchor c bookmarks }
3312 else
3313 let f () = v in
3314 { v with f = skip "item" f }
3316 | Vopen _ ->
3317 error "unexpected subelement in bookmarks" s spos
3319 | Vclose "bookmarks" ->
3320 { v with f = doc path pan anchor c bookmarks }
3322 | Vclose _ -> error "unexpected close in bookmarks" s spos
3324 and skip tag f v t spos _ =
3325 match t with
3326 | Vdata | Vcdata -> v
3327 | Vend ->
3328 error ("unexpected end of input in skipped " ^ tag) s spos
3329 | Vopen (tag', _, closed) ->
3330 if closed
3331 then v
3332 else
3333 let f' () = { v with f = skip tag f } in
3334 { v with f = skip tag' f' }
3335 | Vclose ctag ->
3336 if tag = ctag
3337 then f ()
3338 else error ("unexpected close in skipped " ^ tag) s spos
3341 parse { f = toplevel; accu = () } s;
3342 h, dc;
3345 let do_load f ic =
3347 let len = in_channel_length ic in
3348 let s = String.create len in
3349 really_input ic s 0 len;
3350 f s;
3351 with
3352 | Parse_error (msg, s, pos) ->
3353 let subs = subs s pos in
3354 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
3355 failwith ("parse error: " ^ s)
3357 | exn ->
3358 failwith ("config load error: " ^ Printexc.to_string exn)
3361 let path =
3362 let dir =
3364 let dir = Filename.concat home ".config" in
3365 if Sys.is_directory dir then dir else home
3366 with _ -> home
3368 Filename.concat dir "llpp.conf"
3371 let load1 f =
3372 if Sys.file_exists path
3373 then
3374 match
3375 (try Some (open_in_bin path)
3376 with exn ->
3377 prerr_endline
3378 ("Error opening configuation file `" ^ path ^ "': " ^
3379 Printexc.to_string exn);
3380 None
3382 with
3383 | Some ic ->
3384 begin try
3385 f (do_load get ic)
3386 with exn ->
3387 prerr_endline
3388 ("Error loading configuation from `" ^ path ^ "': " ^
3389 Printexc.to_string exn);
3390 end;
3391 close_in ic;
3393 | None -> ()
3394 else
3395 f (Hashtbl.create 0, defconf)
3398 let load () =
3399 let f (h, dc) =
3400 let pc, pb, px, pa =
3402 Hashtbl.find h (Filename.basename state.path)
3403 with Not_found -> dc, [], 0, (0, 0.0)
3405 setconf defconf dc;
3406 setconf conf pc;
3407 state.bookmarks <- pb;
3408 state.x <- px;
3409 if conf.jumpback
3410 then state.anchor <- pa;
3411 cbput state.hists.nav pa;
3413 load1 f
3416 let add_attrs bb always dc c =
3417 let ob s a b =
3418 if always || a != b
3419 then Printf.bprintf bb "\n %s='%b'" s a
3420 and oi s a b =
3421 if always || a != b
3422 then Printf.bprintf bb "\n %s='%d'" s a
3423 and oz s a b =
3424 if always || a <> b
3425 then Printf.bprintf bb "\n %s='%f'" s (a*.100.)
3426 and oc s a b =
3427 if always || a <> b
3428 then
3429 let r, g, b = a in
3430 let r = truncate (r *. 256.0)
3431 and g = truncate (g *. 256.0)
3432 and b = truncate (b *. 256.0) in
3433 Printf.bprintf bb "\n %s='%d/%d/%d'" s r g b
3435 let w, h =
3436 if always
3437 then dc.winw, dc.winh
3438 else
3439 match state.fullscreen with
3440 | Some wh -> wh
3441 | None -> c.winw, c.winh
3443 let zoom, presentation, interpagespace, showall=
3444 if always
3445 then dc.zoom, dc.presentation, dc.interpagespace, dc.showall
3446 else
3447 match state.mode with
3448 | Birdseye (bc, _, _, _, _) ->
3449 bc.zoom, bc.presentation, bc.interpagespace, bc.showall
3450 | _ -> c.zoom, c.presentation, c.interpagespace, c.showall
3452 oi "width" w dc.winw;
3453 oi "height" h dc.winh;
3454 oi "scroll-bar-width" c.scrollw dc.scrollw;
3455 oi "scroll-handle-height" c.scrollh dc.scrollh;
3456 ob "case-insensitive-search" c.icase dc.icase;
3457 ob "preload" c.preload dc.preload;
3458 oi "page-bias" c.pagebias dc.pagebias;
3459 oi "scroll-step" c.scrollstep dc.scrollstep;
3460 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
3461 ob "max-height-fit" c.maxhfit dc.maxhfit;
3462 ob "crop-hack" c.crophack dc.crophack;
3463 ob "throttle" showall dc.showall;
3464 ob "highlight-links" c.hlinks dc.hlinks;
3465 ob "under-cursor-info" c.underinfo dc.underinfo;
3466 oi "vertical-margin" interpagespace dc.interpagespace;
3467 oz "zoom" zoom dc.zoom;
3468 ob "presentation" presentation dc.presentation;
3469 oi "rotation-angle" c.angle dc.angle;
3470 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
3471 ob "proportional-display" c.proportional dc.proportional;
3472 oi "pixmap-cache-size" c.memlimit dc.memlimit;
3473 oi "texcount" c.texcount dc.texcount;
3474 oi "slice-height" c.sliceheight dc.sliceheight;
3475 oi "thumbnail-width" c.thumbw dc.thumbw;
3476 ob "persistent-location" c.jumpback dc.jumpback;
3477 oc "background-color" c.bgcolor dc.bgcolor;
3480 let save () =
3481 let bb = Buffer.create 32768 in
3482 let f (h, dc) =
3483 let dc = if conf.bedefault then conf else dc in
3484 Buffer.add_string bb "<llppconfig>\n<defaults ";
3485 add_attrs bb true dc dc;
3486 Buffer.add_string bb "/>\n";
3488 let adddoc path pan anchor c bookmarks =
3489 if bookmarks == [] && c = dc && anchor = emptyanchor
3490 then ()
3491 else (
3492 Printf.bprintf bb "<doc path='%s'"
3493 (enent path 0 (String.length path));
3495 if anchor <> emptyanchor
3496 then (
3497 let n, y = anchor in
3498 Printf.bprintf bb " page='%d'" n;
3499 if y > 1e-6
3500 then
3501 Printf.bprintf bb " rely='%f'" y
3505 if pan != 0
3506 then Printf.bprintf bb " pan='%d'" pan;
3508 add_attrs bb false dc c;
3510 begin match bookmarks with
3511 | [] -> Buffer.add_string bb "/>\n"
3512 | _ ->
3513 Buffer.add_string bb ">\n<bookmarks>\n";
3514 List.iter (fun (title, _level, (page, rely)) ->
3515 Printf.bprintf bb
3516 "<item title='%s' page='%d'"
3517 (enent title 0 (String.length title))
3518 page
3520 if rely > 1e-6
3521 then
3522 Printf.bprintf bb " rely='%f'" rely
3524 Buffer.add_string bb "/>\n";
3525 ) bookmarks;
3526 Buffer.add_string bb "</bookmarks>\n</doc>\n";
3527 end;
3531 let pan =
3532 match state.mode with
3533 | Birdseye (_, pan, _, _, _) -> pan
3534 | _ -> state.x
3536 let basename = Filename.basename state.path in
3537 adddoc basename pan (getanchor ())
3538 { conf with
3539 autoscrollstep =
3540 if state.ascrollstep > 0
3541 then state.ascrollstep
3542 else conf.autoscrollstep }
3543 (if conf.savebmarks then state.bookmarks else []);
3545 Hashtbl.iter (fun path (c, bookmarks, x, y) ->
3546 if basename <> path
3547 then adddoc path x y c bookmarks
3548 ) h;
3549 Buffer.add_string bb "</llppconfig>";
3551 load1 f;
3552 if Buffer.length bb > 0
3553 then
3555 let tmp = path ^ ".tmp" in
3556 let oc = open_out_bin tmp in
3557 Buffer.output_buffer oc bb;
3558 close_out oc;
3559 Sys.rename tmp path;
3560 with exn ->
3561 prerr_endline
3562 ("error while saving configuration: " ^ Printexc.to_string exn)
3564 end;;
3566 let () =
3567 Arg.parse
3568 (Arg.align
3569 [("-p", Arg.String (fun s -> state.password <- s) , " Set password")
3570 ;("-v", Arg.Unit (fun () -> print_endline Help.version; exit 0),
3571 " Print version and exit")]
3573 (fun s -> state.path <- s)
3574 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
3576 if String.length state.path = 0
3577 then (prerr_endline "file name missing"; exit 1);
3579 State.load ();
3581 let _ = Glut.init Sys.argv in
3582 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
3583 let () = Glut.initWindowSize conf.winw conf.winh in
3584 let _ = Glut.createWindow ("llpp " ^ Filename.basename state.path) in
3586 let csock, ssock =
3587 if Sys.os_type = "Unix"
3588 then
3589 Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0
3590 else
3591 let addr = Unix.ADDR_INET (Unix.inet_addr_loopback, 1337) in
3592 let sock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
3593 Unix.setsockopt sock Unix.SO_REUSEADDR true;
3594 Unix.bind sock addr;
3595 Unix.listen sock 1;
3596 let csock = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
3597 Unix.connect csock addr;
3598 let ssock, _ = Unix.accept sock in
3599 Unix.close sock;
3600 let opts sock =
3601 Unix.setsockopt sock Unix.TCP_NODELAY true;
3602 Unix.setsockopt_optint sock Unix.SO_LINGER None;
3604 opts ssock;
3605 opts csock;
3606 at_exit (fun () -> Unix.shutdown ssock Unix.SHUTDOWN_ALL);
3607 ssock, csock
3610 let () = Glut.displayFunc display in
3611 let () = Glut.reshapeFunc reshape in
3612 let () = Glut.keyboardFunc keyboard in
3613 let () = Glut.specialFunc special in
3614 let () = Glut.idleFunc (Some idle) in
3615 let () = Glut.mouseFunc mouse in
3616 let () = Glut.motionFunc motion in
3617 let () = Glut.passiveMotionFunc pmotion in
3619 init ssock (conf.angle, conf.proportional, conf.texcount, conf.sliceheight);
3620 state.csock <- csock;
3621 state.ssock <- ssock;
3622 state.text <- "Opening " ^ state.path;
3623 writeopen state.path state.password;
3625 at_exit State.save;
3627 let rec handlelablglutbug () =
3629 Glut.mainLoop ();
3630 with Glut.BadEnum "key in special_of_int" ->
3631 showtext '!' " LablGlut bug: special key not recognized";
3632 handlelablglutbug ()
3634 handlelablglutbug ();