build.bash: update OCaml to 4.09 release url
[llpp.git] / main.ml
blobac143041417ab706e420ca8418ae023e6967a471
1 open Utils;;
2 open Config;;
3 open Glutils;;
4 open Listview;;
5 open Ffi;;
7 let selfexec = ref E.s;;
8 let ignoredoctitlte = ref false;;
9 let layouth = ref ~-1;;
10 let checkerstexid = ref None;;
12 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
13 dolog {|rect {
14 x0,y0=(% f, % f)
15 x1,y1=(% f, % f)
16 x2,y2=(% f, % f)
17 x3,y3=(% f, % f)
18 }|} x0 y0 x1 y1 x2 y2 x3 y3;
21 let pgscale h = truncate (float h *. conf.pgscale);;
23 let hscrollh () =
24 if ((conf.scrollb land scrollbhv != 0) && (state.w > state.winw))
25 || state.uioh#alwaysscrolly
26 then conf.scrollbw
27 else 0
30 let setfontsize n =
31 fstate.fontsize <- n;
32 fstate.wwidth <- measurestr fstate.fontsize "w";
33 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
36 let launchpath () =
37 if emptystr conf.pathlauncher
38 then dolog "%s" state.path
39 else (
40 let command =
41 Str.global_replace Utils.Re.percent state.path conf.pathlauncher in
42 match spawn command [] with
43 | _pid -> ()
44 | exception exn -> dolog "failed to execute `%s': %s" command @@ exntos exn
48 let getopaque pageno =
49 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
50 with Not_found -> None
53 let pagetranslatepoint l x y =
54 let dy = y - l.pagedispy in
55 let y = dy + l.pagey in
56 let dx = x - l.pagedispx in
57 let x = dx + l.pagex in
58 (x, y);
61 let onppundermouse g x y d =
62 let rec f = function
63 | l :: rest ->
64 begin match getopaque l.pageno with
65 | Some opaque ->
66 let x0 = l.pagedispx in
67 let x1 = x0 + l.pagevw in
68 let y0 = l.pagedispy in
69 let y1 = y0 + l.pagevh in
70 if y >= y0 && y <= y1 && x >= x0 && x <= x1
71 then
72 let px, py = pagetranslatepoint l x y in
73 match g opaque l px py with
74 | Some res -> res
75 | None -> f rest
76 else f rest
77 | _ -> f rest
78 end
79 | [] -> d
81 f state.layout
84 let getunder x y =
85 let g opaque l px py =
86 if state.bzoom
87 then (
88 match rectofblock opaque px py with
89 | Some [|x0;x1;y0;y1|] ->
90 let rect = (x0, y0, x1, y0, x1, y1, x0, y1) in
91 let color = (0.0, 0.0, 1.0 /. (l.pageno mod 3 |> float), 0.5) in
92 state.rects <- [l.pageno, color, rect];
93 postRedisplay "getunder";
94 | _ -> ()
96 let under = whatsunder opaque px py in
97 if under = Unone then None else Some under
99 onppundermouse g x y Unone
102 let unproject x y =
103 let g opaque l x y =
104 match unproject opaque x y with
105 | Some (x, y) -> Some (Some (opaque, l.pageno, x, y))
106 | None -> None
108 onppundermouse g x y None;
111 let showtext c s =
112 state.text <- Printf.sprintf "%c%s" c s;
113 postRedisplay "showtext";
116 let impmsg fmt = Format.ksprintf (fun s -> showtext '!' s) fmt;;
118 let pipesel opaque cmd =
119 if hassel opaque
120 then pipef ~closew:false "pipesel"
121 (fun w ->
122 copysel w opaque;
123 postRedisplay "pipesel"
124 ) cmd
127 let paxunder x y =
128 let g opaque l px py =
129 if markunder opaque px py conf.paxmark
130 then
131 Some (fun () ->
132 match getopaque l.pageno with
133 | None -> ()
134 | Some opaque -> pipesel opaque conf.paxcmd
136 else None
138 postRedisplay "paxunder";
139 if conf.paxmark = Mark_page
140 then
141 List.iter (fun l ->
142 match getopaque l.pageno with
143 | None -> ()
144 | Some opaque -> clearmark opaque) state.layout;
145 state.roam <- onppundermouse g x y (fun () -> impmsg "whoopsie daisy");
148 let undertext = function
149 | Unone -> "none"
150 | Ulinkuri s -> s
151 | Utext s -> "font: " ^ s
152 | Uannotation (opaque, slinkindex) ->
153 "annotation: " ^ getannotcontents opaque slinkindex
156 let updateunder x y =
157 match getunder x y with
158 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
159 | Ulinkuri uri ->
160 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
161 Wsi.setcursor Wsi.CURSOR_INFO
162 | Utext s ->
163 if conf.underinfo then showtext 'f' ("ont: " ^ s);
164 Wsi.setcursor Wsi.CURSOR_TEXT
165 | Uannotation _ ->
166 if conf.underinfo then showtext 'a' "nnotation";
167 Wsi.setcursor Wsi.CURSOR_INFO
170 let showlinktype under =
171 if conf.underinfo && under != Unone
172 then showtext ' ' @@ undertext under
175 let intentry_with_suffix text key =
176 let text =
177 match [@warning "-4"] key with
178 | Keys.Ascii ('0'..'9' as c) -> addchar text c
179 | Keys.Ascii ('k' | 'm' | 'g' | 'K' | 'M' | 'G' as c) ->
180 addchar text @@ asciilower c
181 | _ ->
182 state.text <- "invalid key";
183 text
185 TEcont text
188 let wcmd fmt =
189 let b = Buffer.create 16 in
190 Printf.kbprintf
191 (fun b ->
192 let b = Buffer.to_bytes b in
193 wcmd state.ss b @@ Bytes.length b
194 ) b fmt
197 let nogeomcmds = function
198 | s, [] -> emptystr s
199 | _ -> false
202 let layoutN ((columns, coverA, coverB), b) x y sw sh =
203 let rec fold accu n =
204 if n = Array.length b
205 then accu
206 else
207 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
208 if (vy - y) > sh &&
209 (n = coverA - 1
210 || n = state.pagecount - coverB
211 || (n - coverA) mod columns = columns - 1)
212 then accu
213 else
214 let accu =
215 if vy + h > y
216 then
217 let pagey = max 0 (y - vy) in
218 let pagedispy = if pagey > 0 then 0 else vy - y in
219 let pagedispx, pagex =
220 let pdx =
221 if n = coverA - 1 || n = state.pagecount - coverB
222 then x + (sw - w) / 2
223 else dx + xoff + x
225 if pdx < 0
226 then 0, -pdx
227 else pdx, 0
229 let pagevw =
230 let vw = sw - pagedispx in
231 let pw = w - pagex in
232 min vw pw
234 let pagevh = min (h - pagey) (sh - pagedispy) in
235 if pagevw > 0 && pagevh > 0
236 then
237 { pageno = n
238 ; pagedimno = pdimno
239 ; pagew = w
240 ; pageh = h
241 ; pagex = pagex
242 ; pagey = pagey
243 ; pagevw = pagevw
244 ; pagevh = pagevh
245 ; pagedispx = pagedispx
246 ; pagedispy = pagedispy
247 ; pagecol = 0
248 } :: accu
249 else accu
250 else accu
252 fold accu (n+1)
254 if Array.length b = 0
255 then []
256 else List.rev (fold [] (page_of_y y))
259 let layoutS (columns, b) x y sw sh =
260 let rec fold accu n =
261 if n = Array.length b
262 then accu
263 else
264 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
265 if (vy - y) > sh
266 then accu
267 else
268 let accu =
269 if vy + pageh > y
270 then
271 let x = xoff + x in
272 let pagey = max 0 (y - vy) in
273 let pagedispy = if pagey > 0 then 0 else vy - y in
274 let pagedispx, pagex =
275 if px = 0
276 then (
277 if x < 0
278 then 0, -x
279 else x, 0
281 else (
282 let px = px - x in
283 if px < 0
284 then -px, 0
285 else 0, px
288 let pagecolw = pagew/columns in
289 let pagedispx =
290 if pagecolw < sw
291 then pagedispx + ((sw - pagecolw) / 2)
292 else pagedispx
294 let pagevw =
295 let vw = sw - pagedispx in
296 let pw = pagew - pagex in
297 min vw pw
299 let pagevw = min pagevw pagecolw in
300 let pagevh = min (pageh - pagey) (sh - pagedispy) in
301 if pagevw > 0 && pagevh > 0
302 then
303 { pageno = n/columns
304 ; pagedimno = pdimno
305 ; pagew = pagew
306 ; pageh = pageh
307 ; pagex = pagex
308 ; pagey = pagey
309 ; pagevw = pagevw
310 ; pagevh = pagevh
311 ; pagedispx = pagedispx
312 ; pagedispy = pagedispy
313 ; pagecol = n mod columns
314 } :: accu
315 else accu
316 else accu
318 fold accu (n+1)
320 List.rev (fold [] 0)
323 let layout x y sw sh =
324 if nogeomcmds state.geomcmds
325 then
326 match conf.columns with
327 | Csingle b -> layoutN ((1, 0, 0), b) x y sw sh
328 | Cmulti c -> layoutN c x y sw sh
329 | Csplit s -> layoutS s x y sw sh
330 else []
333 let maxy () = state.maxy - if conf.maxhfit then state.winh else 0;;
334 let clamp incr = bound (state.y + incr) 0 @@ maxy ();;
336 let itertiles l f =
337 let tilex = l.pagex mod conf.tilew in
338 let tiley = l.pagey mod conf.tileh in
340 let col = l.pagex / conf.tilew in
341 let row = l.pagey / conf.tileh in
343 let rec rowloop row y0 dispy h =
344 if h != 0
345 then
346 let dh = conf.tileh - y0 in
347 let dh = min h dh in
348 let rec colloop col x0 dispx w =
349 if w != 0
350 then
351 let dw = conf.tilew - x0 in
352 let dw = min w dw in
353 f col row dispx dispy x0 y0 dw dh;
354 colloop (col+1) 0 (dispx+dw) (w-dw)
356 colloop col tilex l.pagedispx l.pagevw;
357 rowloop (row+1) 0 (dispy+dh) (h-dh)
359 if l.pagevw > 0 && l.pagevh > 0
360 then rowloop row tiley l.pagedispy l.pagevh;
363 let gettileopaque l col row =
364 let key = l.pageno, state.gen, conf.colorspace,
365 conf.angle, l.pagew, l.pageh, col, row in
366 try Some (Hashtbl.find state.tilemap key)
367 with Not_found -> None
370 let puttileopaque l col row gen colorspace angle opaque size elapsed =
371 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
372 Hashtbl.add state.tilemap key (opaque, size, elapsed)
375 let drawtiles l color =
376 GlDraw.color color;
377 begintiles ();
378 let f col row x y tilex tiley w h =
379 match gettileopaque l col row with
380 | Some (opaque, _, t) ->
381 let params = x, y, w, h, tilex, tiley in
382 if conf.invert
383 then GlTex.env (`mode `blend);
384 drawtile params opaque;
385 if conf.invert
386 then GlTex.env (`mode `modulate);
387 if conf.debug
388 then (
389 endtiles ();
390 let s = Printf.sprintf "%d[%d,%d] %f sec" l.pageno col row t in
391 let w = measurestr fstate.fontsize s in
392 GlDraw.color (0.0, 0.0, 0.0);
393 filledrect
394 (float (x-2))
395 (float (y-2))
396 (float (x+2) +. w)
397 (float (y + fstate.fontsize + 2));
398 GlDraw.color color;
399 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
400 begintiles ();
403 | None ->
404 endtiles ();
405 let w = let lw = state.winw - x in min lw w
406 and h = let lh = state.winh - y in min lh h
408 if conf.invert
409 then GlTex.env (`mode `blend);
410 begin match !checkerstexid with
411 | Some id ->
412 Gl.enable `texture_2d;
413 GlTex.bind_texture ~target:`texture_2d id;
414 let x0 = float x
415 and y0 = float y
416 and x1 = float (x+w)
417 and y1 = float (y+h) in
419 let tw = float w /. 16.0
420 and th = float h /. 16.0 in
421 let tx0 = float tilex /. 16.0
422 and ty0 = float tiley /. 16.0 in
423 let tx1 = tx0 +. tw
424 and ty1 = ty0 +. th in
425 Raw.sets_float Glutils.vraw ~pos:0
426 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
427 Raw.sets_float Glutils.traw ~pos:0
428 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
429 GlArray.vertex `two Glutils.vraw;
430 GlArray.tex_coord `two Glutils.traw;
431 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
432 Gl.disable `texture_2d;
434 | None ->
435 GlDraw.color (1.0, 1.0, 1.0);
436 filledrect (float x) (float y) (float (x+w)) (float (y+h));
437 end;
438 if conf.invert
439 then GlTex.env (`mode `modulate);
440 if w > 128 && h > fstate.fontsize + 10
441 then (
442 let c = if conf.invert then 1.0 else 0.0 in
443 GlDraw.color (c, c, c);
444 let c, r =
445 if conf.verbose
446 then (col*conf.tilew, row*conf.tileh)
447 else col, row
449 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
451 GlDraw.color color;
452 begintiles ();
454 itertiles l f;
455 endtiles ();
458 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
460 let tilevisible1 l x y =
461 let ax0 = l.pagex
462 and ax1 = l.pagex + l.pagevw
463 and ay0 = l.pagey
464 and ay1 = l.pagey + l.pagevh in
466 let bx0 = x
467 and by0 = y in
468 let bx1 = min (bx0 + conf.tilew) l.pagew
469 and by1 = min (by0 + conf.tileh) l.pageh in
471 let rx0 = max ax0 bx0
472 and ry0 = max ay0 by0
473 and rx1 = min ax1 bx1
474 and ry1 = min ay1 by1 in
476 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
477 nonemptyintersection
480 let tilevisible layout n x y =
481 let rec findpageinlayout m = function
482 | l :: rest when l.pageno = n ->
483 tilevisible1 l x y || (
484 match conf.columns with
485 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
486 | Csplit _ | Csingle _ | Cmulti _ -> false
488 | _ :: rest -> findpageinlayout 0 rest
489 | [] -> false
491 findpageinlayout 0 layout;
494 let tileready l x y =
495 tilevisible1 l x y &&
496 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
499 let tilepage n p layout =
500 let rec loop = function
501 | l :: rest ->
502 if l.pageno = n
503 then
504 let f col row _ _ _ _ _ _ =
505 if state.currently = Idle
506 then
507 match gettileopaque l col row with
508 | Some _ -> ()
509 | None ->
510 let x = col*conf.tilew
511 and y = row*conf.tileh in
512 let w =
513 let w = l.pagew - x in
514 min w conf.tilew
516 let h =
517 let h = l.pageh - y in
518 min h conf.tileh
520 let pbo =
521 if conf.usepbo
522 then getpbo w h conf.colorspace
523 else ~< "0"
525 wcmd "tile %s %d %d %d %d %s" (~> p) x y w h (~> pbo);
526 state.currently <-
527 Tiling (
528 l, p, conf.colorspace, conf.angle,
529 state.gen, col, row, conf.tilew, conf.tileh
532 itertiles l f;
533 else
534 loop rest
536 | [] -> ()
538 if nogeomcmds state.geomcmds
539 then loop layout;
542 let preloadlayout x y sw sh =
543 let y = if y < sh then 0 else y - sh in
544 let x = min 0 (x + sw) in
545 let h = sh*3 in
546 let w = sw*3 in
547 layout x y w h;
550 let load pages =
551 let rec loop pages =
552 if state.currently = Idle
553 then
554 match pages with
555 | l :: rest ->
556 begin match getopaque l.pageno with
557 | None ->
558 wcmd "page %d %d" l.pageno l.pagedimno;
559 state.currently <- Loading (l, state.gen);
560 | Some opaque ->
561 tilepage l.pageno opaque pages;
562 loop rest
563 end;
564 | _ -> ()
566 if nogeomcmds state.geomcmds
567 then loop pages
570 let preload pages =
571 load pages;
572 if conf.preload && state.currently = Idle
573 then load (preloadlayout state.x state.y state.winw state.winh);
576 let layoutready layout =
577 let rec fold all ls =
578 all && match ls with
579 | l :: rest ->
580 let seen = ref false in
581 let allvisible = ref true in
582 let foo col row _ _ _ _ _ _ =
583 seen := true;
584 allvisible := !allvisible &&
585 begin match gettileopaque l col row with
586 | Some _ -> true
587 | None -> false
590 itertiles l foo;
591 fold (!seen && !allvisible) rest
592 | [] -> true
594 let alltilesvisible = fold true layout in
595 alltilesvisible;
598 let gotoxy x y =
599 let y = bound y 0 state.maxy in
600 let y, layout =
601 let layout = layout x y state.winw state.winh in
602 postRedisplay "gotoxy ready";
603 y, layout
605 state.x <- x;
606 state.y <- y;
607 state.layout <- layout;
608 begin match state.mode with
609 | LinkNav ln ->
610 begin match ln with
611 | Ltexact (pageno, linkno) ->
612 let rec loop = function
613 | [] ->
614 state.lnava <- Some (pageno, linkno);
615 state.mode <- LinkNav (Ltgendir 0)
616 | l :: _ when l.pageno = pageno ->
617 begin match getopaque pageno with
618 | None -> state.mode <- LinkNav (Ltnotready (pageno, 0))
619 | Some opaque ->
620 let x0, y0, x1, y1 = getlinkrect opaque linkno in
621 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
622 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
623 then state.mode <- LinkNav (Ltgendir 0)
625 | _ :: rest -> loop rest
627 loop layout
628 | Ltnotready _ | Ltgendir _ -> ()
630 | Birdseye _ | Textentry _ | View -> ()
631 end;
632 begin match state.mode with
633 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
634 if not (pagevisible layout pageno)
635 then (
636 match state.layout with
637 | [] -> ()
638 | l :: _ ->
639 state.mode <- Birdseye (conf, leftx, l.pageno, hooverpageno, anchor)
641 | LinkNav lt ->
642 begin match lt with
643 | Ltnotready (_, dir)
644 | Ltgendir dir ->
645 let linknav =
646 let rec loop = function
647 | [] -> lt
648 | l :: rest ->
649 match getopaque l.pageno with
650 | None -> Ltnotready (l.pageno, dir)
651 | Some opaque ->
652 let link =
653 let ld =
654 if dir = 0
655 then LDfirstvisible (l.pagex, l.pagey, dir)
656 else if dir > 0 then LDfirst else LDlast
658 findlink opaque ld
660 match link with
661 | Lnotfound -> loop rest
662 | Lfound n ->
663 showlinktype (getlink opaque n);
664 Ltexact (l.pageno, n)
666 loop state.layout
668 state.mode <- LinkNav linknav
669 | Ltexact _ -> ()
671 | Textentry _ | View -> ()
672 end;
673 preload layout;
674 if conf.updatecurs
675 then (
676 let mx, my = state.mpos in
677 updateunder mx my;
681 let conttiling pageno opaque =
682 tilepage pageno opaque
683 (if conf.preload
684 then preloadlayout state.x state.y state.winw state.winh
685 else state.layout)
688 let gotoxy x y =
689 if not conf.verbose then state.text <- E.s;
690 gotoxy x y;
693 let getanchory (n, top, dtop) =
694 let y, h = getpageyh n in
695 if conf.presentation
696 then
697 let ips = calcips h in
698 y + truncate (top*.float h -. dtop*.float ips) + ips;
699 else y + truncate (top*.float h -. dtop*.float conf.interpagespace)
702 let addnav () = getanchor () |> cbput state.hists.nav;;
703 let addnavnorc () = getanchor () |> cbput_dont_update_rc state.hists.nav;;
705 let getnav dir =
706 let anchor = cbgetc state.hists.nav dir in
707 getanchory anchor;
710 let gotopage n top =
711 let y, h = getpageyh n in
712 let y = y + (truncate (top *. float h)) in
713 gotoxy state.x y
716 let gotopage1 n top =
717 let y = getpagey n in
718 let y = y + top in
719 gotoxy state.x y
722 let invalidate s f =
723 Glutils.redisplay := false;
724 state.layout <- [];
725 state.pdims <- [];
726 state.rects <- [];
727 state.rects1 <- [];
728 match state.geomcmds with
729 | ps, [] when emptystr ps ->
730 f ();
731 state.geomcmds <- s, [];
732 | ps, [] -> state.geomcmds <- ps, [s, f];
733 | ps, (s', _) :: rest when s' = s -> state.geomcmds <- ps, ((s, f) :: rest);
734 | ps, cmds -> state.geomcmds <- ps, ((s, f) :: cmds);
737 let flushpages () =
738 Hashtbl.iter (fun _ opaque -> wcmd "freepage %s" (~> opaque)) state.pagemap;
739 Hashtbl.clear state.pagemap;
742 let flushtiles () =
743 if not (Queue.is_empty state.tilelru)
744 then (
745 Queue.iter (fun (k, p, s) ->
746 wcmd "freetile %s" (~> p);
747 state.memused <- state.memused - s;
748 Hashtbl.remove state.tilemap k;
749 ) state.tilelru;
750 state.uioh#infochanged Memused;
751 Queue.clear state.tilelru;
753 load state.layout;
756 let stateh h =
757 let h = truncate (float h*.conf.zoom) in
758 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
759 h - d
762 let fillhelp () =
763 state.help <-
764 let sl = keystostrlist conf in
765 let rec loop accu =
766 function | [] -> accu
767 | s :: rest -> loop ((s, 0, Noaction) :: accu) rest
768 in Help.makehelp conf.urilauncher
769 @ (("", 0, Noaction) :: loop [] sl) |> Array.of_list
772 let opendoc path password =
773 state.path <- path;
774 state.password <- password;
775 state.gen <- state.gen + 1;
776 state.docinfo <- [];
777 state.outlines <- [||];
779 flushpages ();
780 setaalevel conf.aalevel;
781 setpapercolor conf.papercolor;
782 let titlepath =
783 if emptystr state.origin
784 then path
785 else state.origin
787 Wsi.settitle ("llpp " ^ mbtoutf8 (Filename.basename titlepath));
788 wcmd "open %d %d %s\000%s\000%s\000"
789 (btod conf.usedoccss) !layouth
790 path password conf.css;
791 invalidate "reqlayout"
792 (fun () ->
793 wcmd "reqlayout %d %d %d %s\000"
794 conf.angle (FMTE.to_int conf.fitmodel)
795 (stateh state.winh) state.nameddest
797 fillhelp ();
800 let reload () =
801 state.anchor <- getanchor ();
802 state.reload <- Some (state.x, state.y, now ());
803 opendoc state.path state.password;
806 let scalecolor c = let c = c *. conf.colorscale in (c, c, c);;
807 let scalecolor2 (r, g, b) =
808 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
811 let docolumns columns =
812 match columns with
813 | Csingle _ ->
814 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
815 let rec loop pageno pdimno pdim y ph pdims =
816 if pageno != state.pagecount
817 then
818 let pdimno, ((_, w, h, xoff) as pdim), pdims =
819 match pdims with
820 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
821 pdimno+1, pdim, rest
822 | _ ->
823 pdimno, pdim, pdims
825 let x = max 0 (((state.winw - w) / 2) - xoff) in
826 let y =
827 y + (if conf.presentation
828 then (if pageno = 0 then calcips h else calcips ph + calcips h)
829 else (if pageno = 0 then 0 else conf.interpagespace))
831 a.(pageno) <- (pdimno, x, y, pdim);
832 loop (pageno+1) pdimno pdim (y + h) h pdims
834 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
835 conf.columns <- Csingle a;
837 | Cmulti ((columns, coverA, coverB), _) ->
838 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
839 let rec loop pageno pdimno pdim x y rowh pdims =
840 let rec fixrow m =
841 if m = pageno then () else
842 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
843 if h < rowh
844 then (
845 let y = y + (rowh - h) / 2 in
846 a.(m) <- (pdimno, x, y, pdim);
848 fixrow (m+1)
850 if pageno = state.pagecount
851 then fixrow (((pageno - 1) / columns) * columns)
852 else
853 let pdimno, ((_, w, h, xoff) as pdim), pdims =
854 match pdims with
855 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
856 pdimno+1, pdim, rest
857 | _ -> pdimno, pdim, pdims
859 let x, y, rowh' =
860 if pageno = coverA - 1 || pageno = state.pagecount - coverB
861 then (
862 let x = (state.winw - w) / 2 in
863 let ips =
864 if conf.presentation then calcips h else conf.interpagespace in
865 x, y + ips + rowh, h
867 else (
868 if (pageno - coverA) mod columns = 0
869 then (
870 let x = max 0 (state.winw - state.w) / 2 in
871 let y =
872 if conf.presentation
873 then
874 let ips = calcips h in
875 y + (if pageno = 0 then 0 else calcips rowh + ips)
876 else
877 y + (if pageno = 0 then 0 else conf.interpagespace)
879 x, y + rowh, h
881 else x, y, max rowh h
884 let y =
885 if pageno > 1 && (pageno - coverA) mod columns = 0
886 then (
887 let y =
888 if pageno = columns && conf.presentation
889 then (
890 let ips = calcips rowh in
891 for i = 0 to pred columns
893 let (pdimno, x, y, pdim) = a.(i) in
894 a.(i) <- (pdimno, x, y+ips, pdim)
895 done;
896 y+ips;
898 else y
900 fixrow (pageno - columns);
903 else y
905 a.(pageno) <- (pdimno, x, y, pdim);
906 let x = x + w + xoff*2 + conf.interpagespace in
907 loop (pageno+1) pdimno pdim x y rowh' pdims
909 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
910 conf.columns <- Cmulti ((columns, coverA, coverB), a);
912 | Csplit (c, _) ->
913 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
914 let rec loop pageno pdimno pdim y pdims =
915 if pageno != state.pagecount
916 then
917 let pdimno, ((_, w, h, _) as pdim), pdims =
918 match pdims with
919 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
920 pdimno+1, pdim, rest
921 | _ -> pdimno, pdim, pdims
923 let cw = w / c in
924 let rec loop1 n x y =
925 if n = c then y else (
926 a.(pageno*c + n) <- (pdimno, x, y, pdim);
927 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
930 let y = loop1 0 0 y in
931 loop (pageno+1) pdimno pdim y pdims
933 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
934 conf.columns <- Csplit (c, a);
937 let represent () =
938 docolumns conf.columns;
939 state.maxy <- calcheight ();
940 if state.reprf == noreprf
941 then (
942 match state.mode with
943 | Birdseye (_, _, pageno, _, _) ->
944 let y, h = getpageyh pageno in
945 let top = (state.winh - h) / 2 in
946 gotoxy state.x (max 0 (y - top))
947 | Textentry _ | View | LinkNav _ ->
948 let y = getanchory state.anchor in
949 let y = min y (state.maxy - state.winh) in
950 gotoxy state.x y;
952 else (
953 state.reprf ();
954 state.reprf <- noreprf;
958 let reshape ?(firsttime=false) w h =
959 GlDraw.viewport ~x:0 ~y:0 ~w ~h;
960 if not firsttime && nogeomcmds state.geomcmds
961 then state.anchor <- getanchor ();
963 state.winw <- w;
964 let w = truncate (float w *. conf.zoom) in
965 let w = max w 2 in
966 state.winh <- h;
967 setfontsize fstate.fontsize;
968 GlMat.mode `modelview;
969 GlMat.load_identity ();
971 GlMat.mode `projection;
972 GlMat.load_identity ();
973 GlMat.rotate ~x:1.0 ~angle:180.0 ();
974 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
975 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
977 let relx =
978 if conf.zoom <= 1.0
979 then 0.0
980 else float state.x /. float state.w
982 invalidate "geometry"
983 (fun () ->
984 state.w <- w;
985 if not firsttime
986 then state.x <- truncate (relx *. float w);
987 let w =
988 match conf.columns with
989 | Csingle _ -> w
990 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
991 | Csplit (c, _) -> w * c
993 wcmd "geometry %d %d %d" w (stateh h) (FMTE.to_int conf.fitmodel)
997 let gctiles () =
998 let len = Queue.length state.tilelru in
999 let layout = lazy (if conf.preload
1000 then preloadlayout state.x state.y state.winw state.winh
1001 else state.layout) in
1002 let rec loop qpos =
1003 if state.memused > conf.memlimit
1004 then (
1005 if qpos < len
1006 then
1007 let (k, p, s) as lruitem = Queue.pop state.tilelru in
1008 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
1009 let (_, pw, ph, _) = getpagedim n in
1010 if gen = state.gen
1011 && colorspace = conf.colorspace
1012 && angle = conf.angle
1013 && pagew = pw
1014 && pageh = ph
1015 && (
1016 let x = col*conf.tilew and y = row*conf.tileh in
1017 tilevisible (Lazy.force_val layout) n x y
1019 then Queue.push lruitem state.tilelru
1020 else (
1021 freepbo p;
1022 wcmd "freetile %s" (~> p);
1023 state.memused <- state.memused - s;
1024 state.uioh#infochanged Memused;
1025 Hashtbl.remove state.tilemap k;
1027 loop (qpos+1)
1030 loop 0
1033 let onpagerect pageno f =
1034 let b =
1035 match conf.columns with
1036 | Cmulti (_, b) -> b
1037 | Csingle b -> b
1038 | Csplit (_, b) -> b
1040 if pageno >= 0 && pageno < Array.length b
1041 then
1042 let (_, _, _, (_, w, h, _)) = b.(pageno) in
1043 f w h
1046 let gotopagexy1 pageno x y =
1047 let _,w1,h1,leftx = getpagedim pageno in
1048 let top = y /. (float h1) in
1049 let left = x /. (float w1) in
1050 let py, w, h = getpageywh pageno in
1051 let wh = state.winh in
1052 let x = left *. (float w) in
1053 let x = leftx + state.x + truncate x in
1054 let sx =
1055 if x < 0 || x >= state.winw
1056 then state.x - x
1057 else state.x
1059 let pdy = truncate (top *. float h) in
1060 let y' = py + pdy in
1061 let dy = y' - state.y in
1062 let sy =
1063 if x != state.x || not (dy > 0 && dy < wh)
1064 then (
1065 if conf.presentation
1066 then
1067 if abs (py - y') > wh
1068 then y'
1069 else py
1070 else y';
1072 else state.y
1074 if state.x != sx || state.y != sy
1075 then gotoxy sx sy
1076 else gotoxy state.x state.y;
1079 let gotopagexy pageno x y =
1080 match state.mode with
1081 | Birdseye _ -> gotopage pageno 0.0
1082 | Textentry _ | View | LinkNav _ -> gotopagexy1 pageno x y
1085 let getpassword () =
1086 let passcmd = getenvdef "LLPP_ASKPASS" conf.passcmd in
1087 if emptystr passcmd
1088 then E.s
1089 else getcmdoutput (fun s ->
1090 impmsg "error getting password: %s" s;
1091 dolog "%s" s) passcmd;
1094 let pgoto opaque pageno x y =
1095 let pdimno = getpdimno pageno in
1096 let x, y = project opaque pageno pdimno x y in
1097 gotopagexy pageno x y;
1100 let act cmds =
1101 (* dolog "%S" cmds; *)
1102 let spl = splitatchar cmds ' ' in
1103 let scan s fmt f =
1104 try Scanf.sscanf s fmt f
1105 with exn ->
1106 dolog "error processing '%S': %s" cmds @@ exntos exn;
1107 exit 1
1109 let addoutline outline =
1110 match state.currently with
1111 | Outlining outlines -> state.currently <- Outlining (outline :: outlines)
1112 | Idle -> state.currently <- Outlining [outline]
1113 | Loading _ | Tiling _ ->
1114 dolog "invalid outlining state";
1115 logcurrently state.currently
1117 match spl with
1118 | "clear", "" ->
1119 state.pdims <- [];
1120 state.uioh#infochanged Pdim;
1122 | "clearrects", "" ->
1123 state.rects <- state.rects1;
1124 postRedisplay "clearrects";
1126 | "continue", args ->
1127 let n = scan args "%u" (fun n -> n) in
1128 state.pagecount <- n;
1129 begin match state.currently with
1130 | Outlining l ->
1131 state.currently <- Idle;
1132 state.outlines <- Array.of_list (List.rev l)
1133 | Idle | Loading _ | Tiling _ -> ()
1134 end;
1136 let cur, cmds = state.geomcmds in
1137 if emptystr cur then error "empty geomcmd";
1139 begin match List.rev cmds with
1140 | [] ->
1141 state.geomcmds <- E.s, [];
1142 represent ();
1143 | (s, f) :: rest ->
1144 f ();
1145 state.geomcmds <- s, List.rev rest;
1146 end;
1147 postRedisplay "continue";
1149 | "msg", args ->
1150 showtext ' ' args
1152 | "vmsg", args ->
1153 if conf.verbose then showtext ' ' args
1155 | "emsg", args ->
1156 Buffer.add_string state.errmsgs args;
1157 state.newerrmsgs <- true;
1158 postRedisplay "error message"
1160 | "progress", args ->
1161 let progress, text =
1162 scan args "%f %n"
1163 (fun f pos -> f, String.sub args pos (String.length args - pos))
1165 state.text <- text;
1166 state.progress <- progress;
1167 postRedisplay "progress"
1169 | "firstmatch", args ->
1170 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1171 scan args "%u %d %f %f %f %f %f %f %f %f"
1172 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1173 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1175 let y = (getpagey pageno) + truncate y0 in
1176 let x =
1177 if (state.x < - truncate x0) || (state.x > state.winw - truncate x1)
1178 then state.winw/2 - truncate (x0 /. 2. +. x1 /. 2.)
1179 else state.x
1181 addnav ();
1182 gotoxy x y;
1183 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1184 state.rects1 <- [pageno, color, (x0, y0, x1, y1, x2, y2, x3, y3)]
1186 | "match", args ->
1187 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1188 scan args "%u %d %f %f %f %f %f %f %f %f"
1189 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1190 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1192 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1193 state.rects1 <-
1194 (pageno, color, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
1196 | "page", args ->
1197 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
1198 let pageopaque = ~< pageopaques in
1199 begin match state.currently with
1200 | Loading (l, gen) ->
1201 vlog "page %d took %f sec" l.pageno t;
1202 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
1203 let preloadedpages =
1204 if conf.preload
1205 then preloadlayout state.x state.y state.winw state.winh
1206 else state.layout
1208 let evict () =
1209 let set = List.fold_left (fun s l -> IntSet.add l.pageno s)
1210 IntSet.empty preloadedpages
1212 let evictedpages =
1213 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
1214 if not (IntSet.mem pageno set)
1215 then (
1216 wcmd "freepage %s" (~> opaque);
1217 key :: accu
1219 else accu
1220 ) state.pagemap []
1222 List.iter (Hashtbl.remove state.pagemap) evictedpages;
1224 evict ();
1225 state.currently <- Idle;
1226 if gen = state.gen
1227 then (
1228 tilepage l.pageno pageopaque state.layout;
1229 load state.layout;
1230 load preloadedpages;
1231 let visible = pagevisible state.layout l.pageno in
1232 if visible
1233 then (
1234 match state.mode with
1235 | LinkNav (Ltnotready (pageno, dir)) ->
1236 if pageno = l.pageno
1237 then (
1238 let link =
1239 let ld =
1240 if dir = 0
1241 then LDfirstvisible (l.pagex, l.pagey, dir)
1242 else if dir > 0 then LDfirst else LDlast
1244 findlink pageopaque ld
1246 match link with
1247 | Lnotfound -> ()
1248 | Lfound n ->
1249 showlinktype (getlink pageopaque n);
1250 state.mode <- LinkNav (Ltexact (l.pageno, n))
1252 | LinkNav (Ltgendir _)
1253 | LinkNav (Ltexact _)
1254 | View
1255 | Birdseye _
1256 | Textentry _ -> ()
1259 if visible && layoutready state.layout
1260 then postRedisplay "page";
1263 | Idle | Tiling _ | Outlining _ ->
1264 dolog "Inconsistent loading state";
1265 logcurrently state.currently;
1266 exit 1
1269 | "tile" , args ->
1270 let (x, y, opaques, size, t) =
1271 scan args "%u %u %s %u %f" (fun x y p size t -> (x, y, p, size, t))
1273 let opaque = ~< opaques in
1274 begin match state.currently with
1275 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
1276 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
1278 unmappbo opaque;
1279 if tilew != conf.tilew || tileh != conf.tileh
1280 then (
1281 wcmd "freetile %s" (~> opaque);
1282 state.currently <- Idle;
1283 load state.layout;
1285 else (
1286 puttileopaque l col row gen cs angle opaque size t;
1287 state.memused <- state.memused + size;
1288 state.uioh#infochanged Memused;
1289 gctiles ();
1290 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
1291 opaque, size) state.tilelru;
1293 state.currently <- Idle;
1294 if gen = state.gen
1295 && conf.colorspace = cs
1296 && conf.angle = angle
1297 && tilevisible state.layout l.pageno x y
1298 then conttiling l.pageno pageopaque;
1300 preload state.layout;
1301 if gen = state.gen
1302 && conf.colorspace = cs
1303 && conf.angle = angle
1304 && tilevisible state.layout l.pageno x y
1305 && layoutready state.layout
1306 then postRedisplay "tile nothrottle";
1309 | Idle | Loading _ | Outlining _ ->
1310 dolog "Inconsistent tiling state";
1311 logcurrently state.currently;
1312 exit 1
1315 | "pdim", args ->
1316 let (n, w, h, _) as pdim =
1317 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
1319 let pdim =
1320 match conf.fitmodel with
1321 | FitWidth -> pdim
1322 | FitPage | FitProportional ->
1323 match conf.columns with
1324 | Csplit _ -> (n, w, h, 0)
1325 | Csingle _ | Cmulti _ -> pdim
1327 state.pdims <- pdim :: state.pdims;
1328 state.uioh#infochanged Pdim
1330 | "o", args ->
1331 let (l, n, t, h, pos) =
1332 scan args "%u %u %d %u %n" (fun l n t h pos -> l, n, t, h, pos)
1334 let s = String.sub args pos (String.length args - pos) in
1335 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
1337 | "ou", args ->
1338 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
1339 let s = String.sub args pos len in
1340 let pos2 = pos + len + 1 in
1341 let uri = String.sub args pos2 (String.length args - pos2) in
1342 addoutline (s, l, Ouri uri)
1344 | "on", args ->
1345 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
1346 let s = String.sub args pos (String.length args - pos) in
1347 addoutline (s, l, Onone)
1349 | "a", args ->
1350 let (n, l, t) = scan args "%u %d %d" (fun n l t -> n, l, t) in
1351 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
1353 | "info", args ->
1354 let c, v = splitatchar args '\t' in
1355 let s =
1356 if nonemptystr v
1357 then
1358 if c = "Title"
1359 then (
1360 conf.title <- v;
1361 if not !ignoredoctitlte then Wsi.settitle v;
1362 args
1364 else
1365 if let len = String.length c in
1366 len > 6 && ((String.sub c (len-4) 4) = "date")
1367 then (
1368 if String.length v >= 7 && v.[0] = 'D' && v.[1] = ':'
1369 then
1370 let b = Buffer.create 10 in
1371 Printf.bprintf b "%s\t" c;
1372 let sub p l c =
1374 Buffer.add_substring b v p l;
1375 Buffer.add_char b c;
1376 with exn -> Buffer.add_string b @@ exntos exn
1378 sub 2 4 '/';
1379 sub 6 2 '/';
1380 sub 8 2 ' ';
1381 sub 10 2 ':';
1382 sub 12 2 ':';
1383 sub 14 2 ' ';
1384 Printf.bprintf b "[%s]" v;
1385 Buffer.contents b
1386 else args
1388 else args
1389 else args
1391 state.docinfo <- (1, s) :: state.docinfo
1393 | "infoend", "" ->
1394 state.docinfo <- List.rev state.docinfo;
1395 state.uioh#infochanged Docinfo
1397 | "pass", args ->
1398 if args = "fail"
1399 then Wsi.settitle "Wrong password";
1400 let password = getpassword () in
1401 if emptystr password
1402 then error "document is password protected"
1403 else opendoc state.path password
1405 | _ -> error "unknown cmd `%S'" cmds
1408 let onhist cb =
1409 let rc = cb.rc in
1410 let action = function
1411 | HCprev -> cbget cb ~-1
1412 | HCnext -> cbget cb 1
1413 | HCfirst -> cbget cb ~-(cb.rc)
1414 | HClast -> cbget cb (cb.len - 1 - cb.rc)
1415 and cancel () = cb.rc <- rc
1416 in (action, cancel)
1419 let search pattern forward =
1420 match conf.columns with
1421 | Csplit _ -> impmsg "searching does not work properly in split columns mode"
1422 | Csingle _ | Cmulti _ ->
1423 if nonemptystr pattern
1424 then
1425 let pn, py =
1426 match state.layout with
1427 | [] -> 0, 0
1428 | l :: _ -> l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
1430 wcmd "search %d %d %d %d,%s\000"
1431 (btod conf.icase) pn py (btod forward) pattern;
1434 let intentry text key =
1435 let text =
1436 if emptystr text && key = Keys.Ascii '-'
1437 then addchar text '-'
1438 else
1439 match [@warning "-4"] key with
1440 | Keys.Ascii ('0'..'9' as c) -> addchar text c
1441 | _ ->
1442 state.text <- "invalid key";
1443 text
1445 TEcont text
1448 let linknact f s =
1449 if nonemptystr s
1450 then
1451 let n =
1452 let l = String.length s in
1453 let rec loop pos n =
1454 if pos = l
1455 then n
1456 else
1457 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
1458 loop (pos+1) (n*26 + m)
1459 in loop 0 0
1461 let rec loop n = function
1462 | [] -> ()
1463 | l :: rest ->
1464 match getopaque l.pageno with
1465 | None -> loop n rest
1466 | Some opaque ->
1467 let m = getlinkcount opaque in
1468 if n < m
1469 then
1470 let under = getlink opaque n in
1471 f under
1472 else loop (n-m) rest
1474 loop n state.layout;
1477 let linknentry text key = match [@warning "-4"] key with
1478 | Keys.Ascii ('a' .. 'z' as c) ->
1479 let text = addchar text c in
1480 linknact (fun under -> state.text <- undertext under) text;
1481 TEcont text
1482 | _ ->
1483 state.text <- Printf.sprintf "invalid key %s" @@ Keys.to_string key;
1484 TEcont text
1487 let textentry text key = match [@warning "-4"] key with
1488 | Keys.Ascii c -> TEcont (addchar text c)
1489 | Keys.Code c -> TEcont (text ^ toutf8 c)
1490 | _ -> TEcont text
1493 let reqlayout angle fitmodel =
1494 if nogeomcmds state.geomcmds
1495 then state.anchor <- getanchor ();
1496 conf.angle <- angle mod 360;
1497 if conf.angle != 0
1498 then (
1499 match state.mode with
1500 | LinkNav _ -> state.mode <- View
1501 | Birdseye _ | Textentry _ | View -> ()
1503 conf.fitmodel <- fitmodel;
1504 invalidate "reqlayout"
1505 (fun () -> wcmd "reqlayout %d %d %d"
1506 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh));
1509 let settrim trimmargins trimfuzz =
1510 if nogeomcmds state.geomcmds
1511 then state.anchor <- getanchor ();
1512 conf.trimmargins <- trimmargins;
1513 conf.trimfuzz <- trimfuzz;
1514 let x0, y0, x1, y1 = trimfuzz in
1515 invalidate "settrim"
1516 (fun () -> wcmd "settrim %d %d %d %d %d"
1517 (btod conf.trimmargins) x0 y0 x1 y1);
1518 flushpages ();
1521 let setzoom zoom =
1522 let zoom = max 0.0001 zoom in
1523 if zoom <> conf.zoom
1524 then (
1525 state.prevzoom <- (conf.zoom, state.x);
1526 conf.zoom <- zoom;
1527 reshape state.winw state.winh;
1528 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
1532 let pivotzoom ?(vw=min state.w state.winw)
1533 ?(vh=min (state.maxy-state.y) state.winh)
1534 ?(x=vw/2) ?(y=vh/2) zoom =
1535 let w = float state.w /. zoom in
1536 let hw = w /. 2.0 in
1537 let ratio = float vh /. float vw in
1538 let hh = hw *. ratio in
1539 let x0 = float x -. hw
1540 and y0 = float y -. hh in
1541 gotoxy (state.x - truncate x0) (state.y + truncate y0);
1542 setzoom zoom;
1545 let pivotzoom ?vw ?vh ?x ?y zoom =
1546 if nogeomcmds state.geomcmds
1547 then
1548 if zoom > 1.0
1549 then pivotzoom ?vw ?vh ?x ?y zoom
1550 else setzoom zoom
1553 let setcolumns mode columns coverA coverB =
1554 state.prevcolumns <- Some (conf.columns, conf.zoom);
1555 if columns < 0
1556 then (
1557 if isbirdseye mode
1558 then impmsg "split mode doesn't work in bird's eye"
1559 else (
1560 conf.columns <- Csplit (-columns, E.a);
1561 state.x <- 0;
1562 conf.zoom <- 1.0;
1565 else (
1566 if columns < 2
1567 then (
1568 conf.columns <- Csingle E.a;
1569 state.x <- 0;
1570 setzoom 1.0;
1572 else (
1573 conf.columns <- Cmulti ((columns, coverA, coverB), E.a);
1574 conf.zoom <- 1.0;
1577 reshape state.winw state.winh;
1580 let resetmstate () =
1581 state.mstate <- Mnone;
1582 Wsi.setcursor Wsi.CURSOR_INHERIT;
1585 let enterbirdseye () =
1586 let zoom = float conf.thumbw /. float state.winw in
1587 let birdseyepageno =
1588 let cy = state.winh / 2 in
1589 let fold = function
1590 | [] -> 0
1591 | l :: rest ->
1592 let rec fold best = function
1593 | [] -> best.pageno
1594 | l :: rest ->
1595 let d = cy - (l.pagedispy + l.pagevh/2)
1596 and dbest = cy - (best.pagedispy + best.pagevh/2) in
1597 if abs d < abs dbest
1598 then fold l rest
1599 else best.pageno
1600 in fold l rest
1602 fold state.layout
1604 state.mode <-
1605 Birdseye (
1606 { conf with zoom = conf.zoom },
1607 state.x, birdseyepageno, -1, getanchor ()
1609 resetmstate ();
1610 conf.zoom <- zoom;
1611 conf.presentation <- false;
1612 conf.interpagespace <- 10;
1613 conf.hlinks <- false;
1614 conf.fitmodel <- FitPage;
1615 state.x <- 0;
1616 conf.columns <- (
1617 match conf.beyecolumns with
1618 | Some c ->
1619 conf.zoom <- 1.0;
1620 Cmulti ((c, 0, 0), E.a)
1621 | None -> Csingle E.a
1623 if conf.verbose
1624 then state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
1625 (100.0*.zoom)
1626 else state.text <- E.s;
1627 reshape state.winw state.winh;
1630 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
1631 state.mode <- View;
1632 conf.zoom <- c.zoom;
1633 conf.presentation <- c.presentation;
1634 conf.interpagespace <- c.interpagespace;
1635 conf.hlinks <- c.hlinks;
1636 conf.fitmodel <- c.fitmodel;
1637 conf.beyecolumns <- (
1638 match conf.columns with
1639 | Cmulti ((c, _, _), _) -> Some c
1640 | Csingle _ -> None
1641 | Csplit _ -> error "leaving bird's eye split mode"
1643 conf.columns <- (
1644 match c.columns with
1645 | Cmulti (c, _) -> Cmulti (c, E.a)
1646 | Csingle _ -> Csingle E.a
1647 | Csplit (c, _) -> Csplit (c, E.a)
1649 if conf.verbose
1650 then state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
1651 (100.0*.conf.zoom);
1652 reshape state.winw state.winh;
1653 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
1654 state.x <- leftx;
1657 let togglebirdseye () =
1658 match state.mode with
1659 | Birdseye vals -> leavebirdseye vals true
1660 | View -> enterbirdseye ()
1661 | Textentry _ | LinkNav _ -> ()
1664 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
1665 let pageno = max 0 (pageno - incr) in
1666 let rec loop = function
1667 | [] -> gotopage1 pageno 0
1668 | l :: _ when l.pageno = pageno ->
1669 if l.pagedispy >= 0 && l.pagey = 0
1670 then postRedisplay "upbirdseye"
1671 else gotopage1 pageno 0
1672 | _ :: rest -> loop rest
1674 loop state.layout;
1675 state.text <- E.s;
1676 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
1679 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
1680 let pageno = min (state.pagecount - 1) (pageno + incr) in
1681 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
1682 let rec loop = function
1683 | [] ->
1684 let y, h = getpageyh pageno in
1685 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
1686 gotoxy state.x (clamp dy)
1687 | l :: _ when l.pageno = pageno ->
1688 if l.pagevh != l.pageh
1689 then gotoxy state.x (clamp (l.pageh - l.pagevh + conf.interpagespace))
1690 else postRedisplay "downbirdseye"
1691 | _ :: rest -> loop rest
1693 loop state.layout;
1694 state.text <- E.s;
1697 let optentry mode _ key =
1698 let btos b = if b then "on" else "off" in
1699 match [@warning "-4"] key with
1700 | Keys.Ascii 'C' ->
1701 let ondone s =
1703 let n, a, b = multicolumns_of_string s in
1704 setcolumns mode n a b;
1705 with exn ->
1706 state.text <- Printf.sprintf "bad columns `%s': %s" s @@ exntos exn
1708 TEswitch ("columns: ", E.s, None, textentry, ondone, true)
1710 | Keys.Ascii 'Z' ->
1711 let ondone s =
1713 let zoom = float (int_of_string s) /. 100.0 in
1714 pivotzoom zoom
1715 with exn ->
1716 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
1718 TEswitch ("zoom: ", E.s, None, intentry, ondone, true)
1720 | Keys.Ascii 'i' ->
1721 conf.icase <- not conf.icase;
1722 TEdone ("case insensitive search " ^ (btos conf.icase))
1724 | Keys.Ascii 'v' ->
1725 conf.verbose <- not conf.verbose;
1726 TEdone ("verbose " ^ (btos conf.verbose))
1728 | Keys.Ascii 'd' ->
1729 conf.debug <- not conf.debug;
1730 TEdone ("debug " ^ (btos conf.debug))
1732 | Keys.Ascii 'f' ->
1733 conf.underinfo <- not conf.underinfo;
1734 TEdone ("underinfo " ^ btos conf.underinfo)
1736 | Keys.Ascii 'T' ->
1737 settrim (not conf.trimmargins) conf.trimfuzz;
1738 TEdone ("trim margins " ^ btos conf.trimmargins)
1740 | Keys.Ascii 'I' ->
1741 conf.invert <- not conf.invert;
1742 TEdone ("invert colors " ^ btos conf.invert)
1744 | Keys.Ascii 'x' ->
1745 let ondone s =
1746 cbput state.hists.sel s;
1747 conf.selcmd <- s;
1749 TEswitch ("selection command: ", E.s, Some (onhist state.hists.sel),
1750 textentry, ondone, true)
1752 | Keys.Ascii 'M' ->
1753 if conf.pax == None
1754 then conf.pax <- Some 0.0
1755 else conf.pax <- None;
1756 TEdone ("PAX " ^ btos (conf.pax != None))
1758 | (Keys.Ascii c) ->
1759 state.text <- Printf.sprintf "bad option %d `%c'" (Char.code c) c;
1760 TEstop
1762 | _ -> TEcont state.text
1765 let adderrmsg src msg =
1766 Buffer.add_string state.errmsgs msg;
1767 state.newerrmsgs <- true;
1768 postRedisplay src
1771 let adderrfmt src fmt = Format.ksprintf (fun s -> adderrmsg src s) fmt;;
1773 class outlinelistview ~zebra ~source =
1774 let settext autonarrow s =
1775 if autonarrow
1776 then
1777 let ss = source#statestr in
1778 state.text <- if emptystr ss
1779 then "[" ^ s ^ "]"
1780 else "{" ^ ss ^ "} [" ^ s ^ "]"
1781 else state.text <- s
1783 object (self)
1784 inherit listview
1785 ~zebra
1786 ~helpmode:false
1787 ~source:(source :> lvsource)
1788 ~trusted:false
1789 ~modehash:(findkeyhash conf "outline")
1790 as super
1792 val m_autonarrow = false
1794 method! key key mask =
1795 let maxrows =
1796 if emptystr state.text
1797 then fstate.maxrows
1798 else fstate.maxrows - 2
1800 let calcfirst first active =
1801 if active > first
1802 then
1803 let rows = active - first in
1804 if rows > maxrows then active - maxrows else first
1805 else active
1807 let navigate incr =
1808 let active = m_active + incr in
1809 let active = bound active 0 (source#getitemcount - 1) in
1810 let first = calcfirst m_first active in
1811 postRedisplay "outline navigate";
1812 coe {< m_active = active; m_first = first >}
1814 let navscroll first =
1815 let active =
1816 let dist = m_active - first in
1817 if dist < 0
1818 then first
1819 else (
1820 if dist < maxrows
1821 then m_active
1822 else first + maxrows
1825 postRedisplay "outline navscroll";
1826 coe {< m_first = first; m_active = active >}
1828 let ctrl = Wsi.withctrl mask in
1829 let open Keys in
1830 match Wsi.kc2kt key with
1831 | Ascii 'a' when ctrl ->
1832 let text =
1833 if m_autonarrow
1834 then (
1835 source#denarrow;
1838 else (
1839 let pattern = source#renarrow in
1840 if nonemptystr m_qsearch
1841 then (source#narrow m_qsearch; m_qsearch)
1842 else pattern
1845 settext (not m_autonarrow) text;
1846 postRedisplay "toggle auto narrowing";
1847 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
1849 | Ascii '/' when emptystr m_qsearch && not m_autonarrow ->
1850 settext true E.s;
1851 postRedisplay "toggle auto narrowing";
1852 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
1854 | Ascii 'n' when ctrl ->
1855 source#narrow m_qsearch;
1856 if not m_autonarrow
1857 then source#add_narrow_pattern m_qsearch;
1858 postRedisplay "outline ctrl-n";
1859 coe {< m_first = 0; m_active = 0 >}
1861 | Ascii 'S' when ctrl ->
1862 let active = source#calcactive (getanchor ()) in
1863 let first = firstof m_first active in
1864 postRedisplay "outline ctrl-s";
1865 coe {< m_first = first; m_active = active >}
1867 | Ascii 'u' when ctrl ->
1868 postRedisplay "outline ctrl-u";
1869 if m_autonarrow && nonemptystr m_qsearch
1870 then (
1871 ignore (source#renarrow);
1872 settext m_autonarrow E.s;
1873 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
1875 else (
1876 source#del_narrow_pattern;
1877 let pattern = source#renarrow in
1878 let text =
1879 if emptystr pattern then E.s else "Narrowed to " ^ pattern
1881 settext m_autonarrow text;
1882 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
1885 | Ascii 'l' when ctrl ->
1886 let first = max 0 (m_active - (fstate.maxrows / 2)) in
1887 postRedisplay "outline ctrl-l";
1888 coe {< m_first = first >}
1890 | Ascii '\t' when m_autonarrow ->
1891 if nonemptystr m_qsearch
1892 then (
1893 postRedisplay "outline list view tab";
1894 source#add_narrow_pattern m_qsearch;
1895 settext true E.s;
1896 coe {< m_qsearch = E.s >}
1898 else coe self
1900 | Escape when m_autonarrow ->
1901 if nonemptystr m_qsearch
1902 then source#add_narrow_pattern m_qsearch;
1903 super#key key mask
1905 | Enter when m_autonarrow ->
1906 if nonemptystr m_qsearch
1907 then source#add_narrow_pattern m_qsearch;
1908 super#key key mask
1910 | (Ascii _ | Code _) when m_autonarrow ->
1911 let pattern = m_qsearch ^ toutf8 key in
1912 postRedisplay "outlinelistview autonarrow add";
1913 source#narrow pattern;
1914 settext true pattern;
1915 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
1917 | Backspace when m_autonarrow ->
1918 if emptystr m_qsearch
1919 then coe self
1920 else
1921 let pattern = withoutlastutf8 m_qsearch in
1922 postRedisplay "outlinelistview autonarrow backspace";
1923 ignore (source#renarrow);
1924 source#narrow pattern;
1925 settext true pattern;
1926 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
1928 | Up when ctrl -> navscroll (max 0 (m_first - 1))
1930 | Down when ctrl ->
1931 navscroll (min (source#getitemcount - 1) (m_first + 1))
1933 | Up -> navigate ~-1
1934 | Down -> navigate 1
1935 | Prior -> navigate ~-(fstate.maxrows)
1936 | Next -> navigate fstate.maxrows
1938 | Right ->
1939 let o =
1940 if ctrl
1941 then (
1942 postRedisplay "outline ctrl right";
1943 {< m_pan = m_pan + 1 >}
1945 else (
1946 if Wsi.withshift mask
1947 then self#nextcurlevel 1
1948 else self#updownlevel 1
1951 coe o
1953 | Left ->
1954 let o =
1955 if ctrl
1956 then (
1957 postRedisplay "outline ctrl left";
1958 {< m_pan = m_pan - 1 >}
1960 else (
1961 if Wsi.withshift mask
1962 then self#nextcurlevel ~-1
1963 else self#updownlevel ~-1
1966 coe o
1968 | Home ->
1969 postRedisplay "outline home";
1970 coe {< m_first = 0; m_active = 0 >}
1972 | End ->
1973 let active = source#getitemcount - 1 in
1974 let first = max 0 (active - fstate.maxrows) in
1975 postRedisplay "outline end";
1976 coe {< m_active = active; m_first = first >}
1978 | Delete|Escape|Insert|Enter|Ascii _|Code _|Ctrl _|Backspace|Fn _ ->
1979 super#key key mask
1980 end;;
1982 let genhistoutlines () =
1983 Config.gethist ()
1984 |> List.sort (fun (_, c1, _, _, _, _) (_, c2, _, _, _, _) ->
1985 compare c2.lastvisit c1.lastvisit)
1986 |> List.map (fun ((path, c, _, _, _, origin) as hist) ->
1987 let path = if nonemptystr origin then origin else path in
1988 let base = mbtoutf8 @@ Filename.basename path in
1989 (base ^ "\000" ^ c.title, 1, Ohistory hist)
1993 let gotohist (path, c, bookmarks, x, anchor, origin) =
1994 Config.save leavebirdseye;
1995 state.anchor <- anchor;
1996 state.bookmarks <- bookmarks;
1997 state.origin <- origin;
1998 state.x <- x;
1999 setconf conf c;
2000 let x0, y0, x1, y1 = conf.trimfuzz in
2001 wcmd "trimset %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1;
2002 reshape ~firsttime:true state.winw state.winh;
2003 opendoc path origin;
2004 setzoom c.zoom;
2007 let setcheckers enabled =
2008 match !checkerstexid with
2009 | None -> if enabled then checkerstexid := Some (makecheckers ())
2010 | Some id ->
2011 if not enabled
2012 then (
2013 GlTex.delete_texture id;
2014 checkerstexid := None;
2018 let describe_layout layout =
2019 let d =
2020 match layout with
2021 | [] -> "Page 0"
2022 | l :: [] -> Printf.sprintf "Page %d" (l.pageno+1)
2023 | l :: rest ->
2024 let rangestr a b =
2025 if a.pageno = b.pageno then Printf.sprintf "%d" (a.pageno+1)
2026 else Printf.sprintf "%d%s%d" (a.pageno+1)
2027 (if a.pageno+1 = b.pageno then ", " else Utf8syms.ellipsis)
2028 (b.pageno+1)
2030 let rec fold s la lb = function
2031 | [] -> Printf.sprintf "%s %s" s (rangestr la lb)
2032 | l :: rest when l.pageno = succ lb.pageno -> fold s la l rest
2033 | l :: rest -> fold (s ^ " " ^ rangestr la lb ^ ",") l l rest
2035 fold "Pages" l l rest
2037 let percent =
2038 let maxy = maxy () in
2039 if maxy <= 0
2040 then 100.
2041 else 100. *. (float state.y /. float maxy)
2043 Printf.sprintf "%s of %d [%.2f%%]" d state.pagecount percent
2046 let setpresentationmode v =
2047 let n = page_of_y state.y in
2048 state.anchor <- (n, 0.0, 1.0);
2049 conf.presentation <- v;
2050 if conf.fitmodel = FitPage
2051 then reqlayout conf.angle conf.fitmodel;
2052 represent ();
2055 let enterinfomode =
2056 let btos b = if b then Utf8syms.radical else E.s in
2057 let showextended = ref false in
2058 let showcolors = ref false in
2059 let leave mode _ = state.mode <- mode in
2060 let src =
2061 (object
2062 val mutable m_l = []
2063 val mutable m_a = E.a
2064 val mutable m_prev_uioh = nouioh
2065 val mutable m_prev_mode = View
2067 inherit lvsourcebase
2069 method reset prev_mode prev_uioh =
2070 m_a <- Array.of_list (List.rev m_l);
2071 m_l <- [];
2072 m_prev_mode <- prev_mode;
2073 m_prev_uioh <- prev_uioh;
2075 method int name get set =
2076 m_l <-
2077 (name, `int get, 1,
2078 Action (
2079 fun u ->
2080 let ondone s =
2081 try set (int_of_string s)
2082 with exn ->
2083 state.text <- Printf.sprintf "bad integer `%s': %s"
2084 s @@ exntos exn
2086 state.text <- E.s;
2087 let te = name ^ ": ", E.s, None, intentry, ondone, true in
2088 state.mode <- Textentry (te, leave m_prev_mode);
2090 )) :: m_l
2092 method int_with_suffix name get set =
2093 m_l <-
2094 (name, `intws get, 1,
2095 Action (
2096 fun u ->
2097 let ondone s =
2098 try set (int_of_string_with_suffix s)
2099 with exn ->
2100 state.text <- Printf.sprintf "bad integer `%s': %s"
2101 s @@ exntos exn
2103 state.text <- E.s;
2104 let te =
2105 name ^ ": ", E.s, None, intentry_with_suffix, ondone, true
2107 state.mode <- Textentry (te, leave m_prev_mode);
2109 )) :: m_l
2111 method bool ?(offset=1) ?(btos=btos) name get set =
2112 m_l <-
2113 (name, `bool (btos, get), offset, Action (
2114 fun u ->
2115 let v = get () in
2116 set (not v);
2118 )) :: m_l
2120 method color name get set =
2121 m_l <-
2122 (name, `color get, 1,
2123 Action (
2124 fun u ->
2125 let invalid = (nan, nan, nan) in
2126 let ondone s =
2127 let c =
2128 try color_of_string s
2129 with exn ->
2130 state.text <- Printf.sprintf "bad color `%s': %s"
2131 s @@ exntos exn;
2132 invalid
2134 if c <> invalid
2135 then set c;
2137 let te = name ^ ": ", E.s, None, textentry, ondone, true in
2138 state.text <- color_to_string (get ());
2139 state.mode <- Textentry (te, leave m_prev_mode);
2141 )) :: m_l
2143 method string name get set =
2144 m_l <-
2145 (name, `string get, 1,
2146 Action (
2147 fun u ->
2148 let ondone s = set s in
2149 let te = name ^ ": ", E.s, None, textentry, ondone, true in
2150 state.mode <- Textentry (te, leave m_prev_mode);
2152 )) :: m_l
2154 method colorspace name get set =
2155 m_l <-
2156 (name, `string get, 1,
2157 Action (
2158 fun _ ->
2159 let source =
2160 (object
2161 inherit lvsourcebase
2163 initializer
2164 m_active <- CSTE.to_int conf.colorspace;
2165 m_first <- 0;
2167 method getitemcount =
2168 Array.length CSTE.names
2169 method getitem n =
2170 (CSTE.names.(n), 0)
2171 method exit ~uioh ~cancel ~active ~first ~pan =
2172 ignore (uioh, first, pan);
2173 if not cancel then set active;
2174 None
2175 method hasaction _ = true
2176 end)
2178 state.text <- E.s;
2179 let modehash = findkeyhash conf "info" in
2180 coe (new listview ~zebra:false ~helpmode:false
2181 ~source ~trusted:true ~modehash)
2182 )) :: m_l
2184 method paxmark name get set =
2185 m_l <-
2186 (name, `string get, 1,
2187 Action (
2188 fun _ ->
2189 let source =
2190 (object
2191 inherit lvsourcebase
2193 initializer
2194 m_active <- MTE.to_int conf.paxmark;
2195 m_first <- 0;
2197 method getitemcount = Array.length MTE.names
2198 method getitem n = (MTE.names.(n), 0)
2199 method exit ~uioh ~cancel ~active ~first ~pan =
2200 ignore (uioh, first, pan);
2201 if not cancel then set active;
2202 None
2203 method hasaction _ = true
2204 end)
2206 state.text <- E.s;
2207 let modehash = findkeyhash conf "info" in
2208 coe (new listview ~zebra:false ~helpmode:false
2209 ~source ~trusted:true ~modehash)
2210 )) :: m_l
2212 method fitmodel name get set =
2213 m_l <-
2214 (name, `string get, 1,
2215 Action (
2216 fun _ ->
2217 let source =
2218 (object
2219 inherit lvsourcebase
2221 initializer
2222 m_active <- FMTE.to_int conf.fitmodel;
2223 m_first <- 0;
2225 method getitemcount = Array.length FMTE.names
2226 method getitem n = (FMTE.names.(n), 0)
2227 method exit ~uioh ~cancel ~active ~first ~pan =
2228 ignore (uioh, first, pan);
2229 if not cancel then set active;
2230 None
2231 method hasaction _ = true
2232 end)
2234 state.text <- E.s;
2235 let modehash = findkeyhash conf "info" in
2236 coe (new listview ~zebra:false ~helpmode:false
2237 ~source ~trusted:true ~modehash)
2238 )) :: m_l
2240 method caption s offset =
2241 m_l <- (s, `empty, offset, Noaction) :: m_l
2243 method caption2 s f offset =
2244 m_l <- (s, `string f, offset, Noaction) :: m_l
2246 method getitemcount = Array.length m_a
2248 method getitem n =
2249 let tostr = function
2250 | `int f -> string_of_int (f ())
2251 | `intws f -> string_with_suffix_of_int (f ())
2252 | `string f -> f ()
2253 | `color f -> color_to_string (f ())
2254 | `bool (btos, f) -> btos (f ())
2255 | `empty -> E.s
2257 let name, t, offset, _ = m_a.(n) in
2258 ((let s = tostr t in
2259 if nonemptystr s
2260 then Printf.sprintf "%s\t%s" name s
2261 else name),
2262 offset)
2264 method exit ~uioh ~cancel ~active ~first ~pan =
2265 let uiohopt =
2266 if not cancel
2267 then (
2268 let uioh =
2269 match m_a.(active) with
2270 | _, _, _, Action f -> f uioh
2271 | _, _, _, Noaction -> uioh
2273 Some uioh
2275 else None
2277 m_active <- active;
2278 m_first <- first;
2279 m_pan <- pan;
2280 uiohopt
2282 method hasaction n =
2283 match m_a.(n) with
2284 | _, _, _, Action _ -> true
2285 | _, _, _, Noaction -> false
2287 initializer m_active <- 1
2288 end)
2290 let rec fillsrc prevmode prevuioh =
2291 let sep () = src#caption E.s 0 in
2292 let colorp name get set =
2293 src#string name
2294 (fun () -> color_to_string (get ()))
2295 (fun v ->
2296 try set @@ color_of_string v
2297 with exn ->
2298 state.text <-
2299 Printf.sprintf "bad color `%s': %s" v @@ exntos exn
2302 let rgba name get set =
2303 src#string name
2304 (fun () -> get () |> rgba_to_string)
2305 (fun v ->
2306 try set @@ rgba_of_string v
2307 with exn ->
2308 state.text <-
2309 Printf.sprintf "bad color `%s': %s" v @@ exntos exn
2312 let oldmode = state.mode in
2313 let birdseye = isbirdseye state.mode in
2315 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
2317 src#bool "presentation mode"
2318 (fun () -> conf.presentation)
2319 (fun v -> setpresentationmode v);
2321 src#bool "ignore case in searches"
2322 (fun () -> conf.icase)
2323 (fun v -> conf.icase <- v);
2325 src#bool "preload"
2326 (fun () -> conf.preload)
2327 (fun v -> conf.preload <- v);
2329 src#bool "highlight links"
2330 (fun () -> conf.hlinks)
2331 (fun v -> conf.hlinks <- v);
2333 src#bool "under info"
2334 (fun () -> conf.underinfo)
2335 (fun v -> conf.underinfo <- v);
2337 src#fitmodel "fit model"
2338 (fun () -> FMTE.to_string conf.fitmodel)
2339 (fun v -> reqlayout conf.angle (FMTE.of_int v));
2341 src#bool "trim margins"
2342 (fun () -> conf.trimmargins)
2343 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
2345 sep ();
2346 src#int "inter-page space"
2347 (fun () -> conf.interpagespace)
2348 (fun n ->
2349 conf.interpagespace <- n;
2350 docolumns conf.columns;
2351 let pageno, py =
2352 match state.layout with
2353 | [] -> 0, 0
2354 | l :: _ -> l.pageno, l.pagey
2356 state.maxy <- calcheight ();
2357 let y = getpagey pageno in
2358 gotoxy state.x (y + py)
2361 src#int "page bias"
2362 (fun () -> conf.pagebias)
2363 (fun v -> conf.pagebias <- v);
2365 src#int "scroll step"
2366 (fun () -> conf.scrollstep)
2367 (fun n -> conf.scrollstep <- n);
2369 src#int "horizontal scroll step"
2370 (fun () -> conf.hscrollstep)
2371 (fun v -> conf.hscrollstep <- v);
2373 src#int "auto scroll step"
2374 (fun () ->
2375 match state.autoscroll with
2376 | Some step -> step
2377 | _ -> conf.autoscrollstep)
2378 (fun n ->
2379 let n = boundastep state.winh n in
2380 if state.autoscroll <> None
2381 then state.autoscroll <- Some n;
2382 conf.autoscrollstep <- n);
2384 src#int "zoom"
2385 (fun () -> truncate (conf.zoom *. 100.))
2386 (fun v -> pivotzoom ((float v) /. 100.));
2388 src#int "rotation"
2389 (fun () -> conf.angle)
2390 (fun v -> reqlayout v conf.fitmodel);
2392 src#int "scroll bar width"
2393 (fun () -> conf.scrollbw)
2394 (fun v ->
2395 conf.scrollbw <- v;
2396 reshape state.winw state.winh;
2399 src#int "scroll handle height"
2400 (fun () -> conf.scrollh)
2401 (fun v -> conf.scrollh <- v;);
2403 src#int "thumbnail width"
2404 (fun () -> conf.thumbw)
2405 (fun v ->
2406 conf.thumbw <- min 4096 v;
2407 match oldmode with
2408 | Birdseye beye ->
2409 leavebirdseye beye false;
2410 enterbirdseye ()
2411 | Textentry _
2412 | View
2413 | LinkNav _ -> ()
2416 let mode = state.mode in
2417 src#string "columns"
2418 (fun () ->
2419 match conf.columns with
2420 | Csingle _ -> "1"
2421 | Cmulti (multi, _) -> multicolumns_to_string multi
2422 | Csplit (count, _) -> "-" ^ string_of_int count
2424 (fun v ->
2425 let n, a, b = multicolumns_of_string v in
2426 setcolumns mode n a b);
2428 sep ();
2429 src#caption "Pixmap cache" 0;
2430 src#int_with_suffix "size (advisory)"
2431 (fun () -> conf.memlimit)
2432 (fun v -> conf.memlimit <- v);
2434 src#caption2 "used"
2435 (fun () ->
2436 Printf.sprintf "%s bytes, %d tiles"
2437 (string_with_suffix_of_int state.memused)
2438 (Hashtbl.length state.tilemap)) 1;
2440 sep ();
2441 src#caption "Layout" 0;
2442 src#caption2 "Dimension"
2443 (fun () -> Printf.sprintf "%dx%d (virtual %dx%d)"
2444 state.winw state.winh
2445 state.w state.maxy)
2447 if conf.debug
2448 then src#caption2 "Position" (fun () ->
2449 Printf.sprintf "%dx%d" state.x state.y
2451 else src#caption2 "Position" (fun () -> describe_layout state.layout) 1;
2453 sep ();
2454 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
2455 "Save these parameters as global defaults at exit"
2456 (fun () -> conf.bedefault)
2457 (fun v -> conf.bedefault <- v);
2459 sep ();
2460 let btos b = Utf8syms.(if b then lguillemet else rguillemet) in
2461 src#bool ~offset:0 ~btos "Extended parameters"
2462 (fun () -> !showextended)
2463 (fun v -> showextended := v; fillsrc prevmode prevuioh);
2464 if !showextended
2465 then (
2466 src#bool "checkers"
2467 (fun () -> conf.checkers)
2468 (fun v -> conf.checkers <- v; setcheckers v);
2469 src#bool "update cursor"
2470 (fun () -> conf.updatecurs)
2471 (fun v -> conf.updatecurs <- v);
2472 src#bool "scroll-bar on the left"
2473 (fun () -> conf.leftscroll)
2474 (fun v -> conf.leftscroll <- v);
2475 src#bool "verbose"
2476 (fun () -> conf.verbose)
2477 (fun v -> conf.verbose <- v);
2478 src#bool "invert colors"
2479 (fun () -> conf.invert)
2480 (fun v -> conf.invert <- v);
2481 src#bool "max fit"
2482 (fun () -> conf.maxhfit)
2483 (fun v -> conf.maxhfit <- v);
2484 src#bool "pax mode"
2485 (fun () -> conf.pax != None)
2486 (fun v ->
2487 if v
2488 then conf.pax <- Some (now ())
2489 else conf.pax <- None);
2490 src#string "uri launcher"
2491 (fun () -> conf.urilauncher)
2492 (fun v -> conf.urilauncher <- v);
2493 src#string "path launcher"
2494 (fun () -> conf.pathlauncher)
2495 (fun v -> conf.pathlauncher <- v);
2496 src#string "tile size"
2497 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
2498 (fun v ->
2500 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
2501 conf.tilew <- max 64 w;
2502 conf.tileh <- max 64 h;
2503 flushtiles ();
2504 with exn ->
2505 state.text <- Printf.sprintf "bad tile size `%s': %s"
2506 v @@ exntos exn
2508 src#int "texture count"
2509 (fun () -> conf.texcount)
2510 (fun v ->
2511 if realloctexts v
2512 then conf.texcount <- v
2513 else impmsg "failed to set texture count please retry later"
2515 src#int "slice height"
2516 (fun () -> conf.sliceheight)
2517 (fun v ->
2518 conf.sliceheight <- v;
2519 wcmd "sliceh %d" conf.sliceheight;
2521 src#int "anti-aliasing level"
2522 (fun () -> conf.aalevel)
2523 (fun v ->
2524 conf.aalevel <- bound v 0 8;
2525 state.anchor <- getanchor ();
2526 opendoc state.path state.password;
2528 src#string "page scroll scaling factor"
2529 (fun () -> string_of_float conf.pgscale)
2530 (fun v ->
2531 try conf.pgscale <- float_of_string v
2532 with exn ->
2533 state.text <-
2534 Printf.sprintf "bad page scroll scaling factor `%s': %s" v
2535 @@ exntos exn
2537 src#int "ui font size"
2538 (fun () -> fstate.fontsize)
2539 (fun v -> setfontsize (bound v 5 100));
2540 src#int "hint font size"
2541 (fun () -> conf.hfsize)
2542 (fun v -> conf.hfsize <- bound v 5 100);
2543 src#string "trim fuzz"
2544 (fun () -> irect_to_string conf.trimfuzz)
2545 (fun v ->
2547 conf.trimfuzz <- irect_of_string v;
2548 if conf.trimmargins
2549 then settrim true conf.trimfuzz;
2550 with exn ->
2551 state.text <- Printf.sprintf "bad irect `%s': %s" v
2552 @@ exntos exn
2554 src#string "selection command"
2555 (fun () -> conf.selcmd)
2556 (fun v -> conf.selcmd <- v);
2557 src#string "synctex command"
2558 (fun () -> conf.stcmd)
2559 (fun v -> conf.stcmd <- v);
2560 src#string "pax command"
2561 (fun () -> conf.paxcmd)
2562 (fun v -> conf.paxcmd <- v);
2563 src#string "ask password command"
2564 (fun () -> conf.passcmd)
2565 (fun v -> conf.passcmd <- v);
2566 src#string "save path command"
2567 (fun () -> conf.savecmd)
2568 (fun v -> conf.savecmd <- v);
2569 src#colorspace "color space"
2570 (fun () -> CSTE.to_string conf.colorspace)
2571 (fun v ->
2572 conf.colorspace <- CSTE.of_int v;
2573 wcmd "cs %d" v;
2574 load state.layout;
2576 src#paxmark "pax mark method"
2577 (fun () -> MTE.to_string conf.paxmark)
2578 (fun v -> conf.paxmark <- MTE.of_int v);
2579 if bousable ()
2580 then
2581 src#bool "use PBO"
2582 (fun () -> conf.usepbo)
2583 (fun v -> conf.usepbo <- v);
2584 src#bool "mouse wheel scrolls pages"
2585 (fun () -> conf.wheelbypage)
2586 (fun v -> conf.wheelbypage <- v);
2587 src#bool "open remote links in a new instance"
2588 (fun () -> conf.riani)
2589 (fun v -> conf.riani <- v);
2590 src#bool "edit annotations inline"
2591 (fun () -> conf.annotinline)
2592 (fun v -> conf.annotinline <- v);
2593 src#bool "coarse positioning in presentation mode"
2594 (fun () -> conf.coarseprespos)
2595 (fun v -> conf.coarseprespos <- v);
2596 src#bool "use document CSS"
2597 (fun () -> conf.usedoccss)
2598 (fun v ->
2599 conf.usedoccss <- v;
2600 state.anchor <- getanchor ();
2601 opendoc state.path state.password;
2603 src#bool ~btos "colors"
2604 (fun () -> !showcolors)
2605 (fun v -> showcolors := v; fillsrc prevmode prevuioh);
2606 if !showcolors
2607 then (
2608 colorp " background"
2609 (fun () -> conf.bgcolor)
2610 (fun v -> conf.bgcolor <- v);
2612 rgba " paper color"
2613 (fun () -> conf.papercolor)
2614 (fun v ->
2615 conf.papercolor <- v;
2616 setpapercolor conf.papercolor;
2617 flushtiles ();
2619 rgba " scrollbar"
2620 (fun () -> conf.sbarcolor)
2621 (fun v -> conf.sbarcolor <- v);
2622 rgba " scrollbar handle"
2623 (fun () -> conf.sbarhndlcolor)
2624 (fun v -> conf.sbarhndlcolor <- v);
2625 rgba " texture color"
2626 (fun () -> conf.texturecolor)
2627 (fun v ->
2628 GlTex.env (`color v);
2629 conf.texturecolor <- v;
2634 sep ();
2635 src#caption "Document" 0;
2636 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
2637 src#caption2 "Pages" (fun () -> string_of_int state.pagecount) 1;
2638 src#caption2 "Dimensions"
2639 (fun () -> string_of_int (List.length state.pdims)) 1;
2640 if nonemptystr conf.css
2641 then src#caption2 "CSS" (fun () -> conf.css) 1;
2642 if conf.trimmargins
2643 then (
2644 sep ();
2645 src#caption "Trimmed margins" 0;
2646 src#caption2 "Dimensions"
2647 (fun () -> string_of_int (List.length state.pdims)) 1;
2650 sep ();
2651 src#caption "OpenGL" 0;
2652 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
2653 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
2655 sep ();
2656 src#caption "Location" 0;
2657 if nonemptystr state.origin
2658 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
2659 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
2661 src#reset prevmode prevuioh;
2663 fun () -> (
2664 state.text <- E.s;
2665 resetmstate ();
2666 let prevmode = state.mode
2667 and prevuioh = state.uioh in
2668 fillsrc prevmode prevuioh;
2669 let source = (src :> lvsource) in
2670 let modehash = findkeyhash conf "info" in
2671 state.uioh <-
2672 coe (object (self)
2673 inherit listview ~zebra:false ~helpmode:false
2674 ~source ~trusted:true ~modehash as super
2675 val mutable m_prevmemused = 0
2676 method! infochanged = function
2677 | Memused ->
2678 if m_prevmemused != state.memused
2679 then (
2680 m_prevmemused <- state.memused;
2681 postRedisplay "memusedchanged";
2683 | Pdim -> postRedisplay "pdimchanged"
2684 | Docinfo -> fillsrc prevmode prevuioh
2686 method! key key mask =
2687 if not (Wsi.withctrl mask)
2688 then
2689 match [@warning "-4"] Wsi.kc2kt key with
2690 | Keys.Left -> coe (self#updownlevel ~-1)
2691 | Keys.Right -> coe (self#updownlevel 1)
2692 | _ -> super#key key mask
2693 else super#key key mask
2694 end);
2695 postRedisplay "info";
2699 let enterhelpmode =
2700 let source =
2701 (object
2702 inherit lvsourcebase
2703 method getitemcount = Array.length state.help
2704 method getitem n =
2705 let s, l, _ = state.help.(n) in
2706 (s, l)
2708 method exit ~uioh ~cancel ~active ~first ~pan =
2709 let optuioh =
2710 if not cancel
2711 then (
2712 match state.help.(active) with
2713 | _, _, Action f -> Some (f uioh)
2714 | _, _, Noaction -> Some uioh
2716 else None
2718 m_active <- active;
2719 m_first <- first;
2720 m_pan <- pan;
2721 optuioh
2723 method hasaction n =
2724 match state.help.(n) with
2725 | _, _, Action _ -> true
2726 | _, _, Noaction -> false
2728 initializer
2729 m_active <- -1
2730 end)
2732 fun () ->
2733 let modehash = findkeyhash conf "help" in
2734 resetmstate ();
2735 state.uioh <- coe (new listview
2736 ~zebra:false ~helpmode:true
2737 ~source ~trusted:true ~modehash);
2738 postRedisplay "help";
2741 let entermsgsmode =
2742 let msgsource =
2743 (object
2744 inherit lvsourcebase
2745 val mutable m_items = E.a
2747 method getitemcount = 1 + Array.length m_items
2749 method getitem n =
2750 if n = 0
2751 then "[Clear]", 0
2752 else m_items.(n-1), 0
2754 method exit ~uioh ~cancel ~active ~first ~pan =
2755 ignore uioh;
2756 if not cancel
2757 then (
2758 if active = 0
2759 then Buffer.clear state.errmsgs;
2761 m_active <- active;
2762 m_first <- first;
2763 m_pan <- pan;
2764 None
2766 method hasaction n =
2767 n = 0
2769 method reset =
2770 state.newerrmsgs <- false;
2771 let l = Str.split Utils.Re.crlf (Buffer.contents state.errmsgs) in
2772 m_items <- Array.of_list l
2774 initializer
2775 m_active <- 0
2776 end)
2777 in fun () ->
2778 state.text <- E.s;
2779 resetmstate ();
2780 msgsource#reset;
2781 let source = (msgsource :> lvsource) in
2782 let modehash = findkeyhash conf "listview" in
2783 state.uioh <-
2784 coe (object
2785 inherit listview ~zebra:false ~helpmode:false
2786 ~source ~trusted:false ~modehash as super
2787 method! display =
2788 if state.newerrmsgs
2789 then msgsource#reset;
2790 super#display
2791 end);
2792 postRedisplay "msgs";
2795 let getusertext s =
2796 let editor = getenvdef "EDITOR" E.s in
2797 if emptystr editor
2798 then E.s
2799 else
2800 let tmppath = Filename.temp_file "llpp" "note" in
2801 if nonemptystr s
2802 then (
2803 let oc = open_out tmppath in
2804 output_string oc s;
2805 close_out oc;
2807 let execstr = editor ^ " " ^ tmppath in
2808 let s =
2809 match spawn execstr [] with
2810 | exception exn ->
2811 impmsg "spawn(%S) failed: %s" execstr @@ exntos exn;
2813 | pid ->
2814 match Unix.waitpid [] pid with
2815 | exception exn ->
2816 impmsg "waitpid(%d) failed: %s" pid @@ exntos exn;
2818 | (_pid, status) ->
2819 match status with
2820 | Unix.WEXITED 0 -> filecontents tmppath
2821 | Unix.WEXITED n ->
2822 impmsg "editor process(%s) exited abnormally: %d" execstr n;
2824 | Unix.WSIGNALED n ->
2825 impmsg "editor process(%s) was killed by signal %d" execstr n;
2827 | Unix.WSTOPPED n ->
2828 impmsg "editor(%s) process was stopped by signal %d" execstr n;
2831 match Unix.unlink tmppath with
2832 | exception exn ->
2833 impmsg "failed to ulink %S: %s" tmppath @@ exntos exn;
2835 | () -> s
2838 let enterannotmode opaque slinkindex =
2839 let msgsource =
2840 (object
2841 inherit lvsourcebase
2842 val mutable m_text = E.s
2843 val mutable m_items = E.a
2845 method getitemcount = Array.length m_items
2847 method getitem n =
2848 let label, _func = m_items.(n) in
2849 label, 0
2851 method exit ~uioh ~cancel ~active ~first ~pan =
2852 ignore (uioh, first, pan);
2853 if not cancel
2854 then (
2855 let _label, func = m_items.(active) in
2856 func ()
2858 None
2860 method hasaction n = nonemptystr @@ fst m_items.(n)
2862 method reset s =
2863 let rec split accu b i =
2864 let p = b+i in
2865 if p = String.length s
2866 then (String.sub s b (p-b), fun () -> ()) :: accu
2867 else
2868 if (i > 70 && s.[p] = ' ') || s.[p] = '\r' || s.[p] = '\n'
2869 then
2870 let ss = if i = 0 then E.s else String.sub s b i in
2871 split ((ss, fun () -> ())::accu) (p+1) 0
2872 else split accu b (i+1)
2874 let cleanup () =
2875 wcmd "freepage %s" (~> opaque);
2876 let keys =
2877 Hashtbl.fold (fun key opaque' accu ->
2878 if opaque' = opaque'
2879 then key :: accu else accu) state.pagemap []
2881 List.iter (Hashtbl.remove state.pagemap) keys;
2882 flushtiles ();
2883 gotoxy state.x state.y
2885 let dele () =
2886 delannot opaque slinkindex;
2887 cleanup ();
2889 let edit inline () =
2890 let update s =
2891 if emptystr s
2892 then dele ()
2893 else (
2894 modannot opaque slinkindex s;
2895 cleanup ();
2898 if inline
2899 then
2900 let mode = state.mode in
2901 state.mode <-
2902 Textentry (
2903 ("annotation: ", m_text, None, textentry, update, true),
2904 fun _ -> state.mode <- mode
2906 state.text <- E.s;
2907 enttext ();
2908 else
2909 let s = getusertext m_text in
2910 update s
2912 m_text <- s;
2913 m_items <-
2914 ( "[Copy]", fun () -> selstring conf.selcmd m_text)
2915 :: ("[Delete]", dele)
2916 :: ("[Edit]", edit conf.annotinline)
2917 :: (E.s, fun () -> ())
2918 :: split [] 0 0 |> List.rev |> Array.of_list
2920 initializer
2921 m_active <- 0
2922 end)
2924 state.text <- E.s;
2925 let s = getannotcontents opaque slinkindex in
2926 resetmstate ();
2927 msgsource#reset s;
2928 let source = (msgsource :> lvsource) in
2929 let modehash = findkeyhash conf "listview" in
2930 state.uioh <- coe (object
2931 inherit listview ~zebra:false ~helpmode:false
2932 ~source ~trusted:false ~modehash
2933 end);
2934 postRedisplay "enterannotmode";
2937 let gotoremote spec =
2938 let filename, dest = splitatchar spec '#' in
2939 let getpath filename =
2940 let path =
2941 if nonemptystr filename
2942 then
2943 if Filename.is_relative filename
2944 then
2945 let dir = Filename.dirname state.path in
2946 let dir =
2947 if Filename.is_implicit dir
2948 then Filename.concat (Sys.getcwd ()) dir
2949 else dir
2951 Filename.concat dir filename
2952 else filename
2953 else E.s
2955 if Sys.file_exists path
2956 then path
2957 else E.s
2959 let path = getpath filename in
2960 let dospawn lcmd =
2961 if conf.riani
2962 then
2963 let cmd = Lazy.force_val lcmd in
2964 match spawn cmd with
2965 | _pid -> ()
2966 | exception exn -> dolog "failed to execute `%s': %s" cmd @@ exntos exn
2967 else
2968 let anchor = getanchor () in
2969 let ranchor = state.path, state.password, anchor, state.origin in
2970 state.origin <- E.s;
2971 state.ranchors <- ranchor :: state.ranchors;
2972 opendoc path E.s;
2974 if substratis spec 0 "page="
2975 then
2976 match Scanf.sscanf spec "page=%d" (fun n -> n) with
2977 | pageno ->
2978 state.anchor <- (pageno, 0.0, 0.0);
2979 dospawn @@ lazy (Printf.sprintf "%s -page %d %S" !selfexec pageno path);
2980 | exception exn ->
2981 adderrfmt "error parsing remote destination" "page: %s" @@ exntos exn
2982 else (
2983 state.nameddest <- dest;
2984 dospawn @@ lazy (!selfexec ^ " " ^ path ^ " -dest " ^ dest)
2988 let gotounder = function
2989 | Ulinkuri s when isexternallink s ->
2990 if substratis s 0 "file://"
2991 then gotoremote @@ String.sub s 7 (String.length s - 7)
2992 else Help.gotouri conf.urilauncher s
2993 | Ulinkuri s ->
2994 let pageno, x, y = uritolocation s in
2995 addnav ();
2996 gotopagexy pageno x y
2997 | Utext _ | Unone -> ()
2998 | Uannotation (opaque, slinkindex) -> enterannotmode opaque slinkindex
3001 let gotooutline (_, _, kind) =
3002 match kind with
3003 | Onone -> ()
3004 | Oanchor ((pageno, y, _) as anchor) ->
3005 addnav ();
3006 gotoxy state.x @@
3007 getanchory (if conf.presentation then (pageno, y, 1.0) else anchor)
3008 | Ouri uri -> gotounder (Ulinkuri uri)
3009 | Olaunch cmd -> error "gotounder (Ulaunch %S)" cmd
3010 | Oremote (remote, pageno) ->
3011 error "gotounder (Uremote (%S,%d) )" remote pageno
3012 | Ohistory hist -> gotohist hist
3013 | Oremotedest (path, dest) ->
3014 error "gotounder (Uremotedest (%S, %S))" path dest
3017 class outlinesoucebase fetchoutlines = object (self)
3018 inherit lvsourcebase
3019 val mutable m_items = E.a
3020 val mutable m_minfo = E.a
3021 val mutable m_orig_items = E.a
3022 val mutable m_orig_minfo = E.a
3023 val mutable m_narrow_patterns = []
3024 val mutable m_gen = -1
3026 method getitemcount = Array.length m_items
3028 method getitem n =
3029 let s, n, _ = m_items.(n) in
3030 (s, n+0)
3032 method exit ~(uioh:uioh) ~cancel ~active ~(first:int) ~pan : uioh option =
3033 ignore (uioh, first);
3034 let items, minfo =
3035 if m_narrow_patterns = []
3036 then m_orig_items, m_orig_minfo
3037 else m_items, m_minfo
3039 m_pan <- pan;
3040 if not cancel
3041 then (
3042 m_items <- items;
3043 m_minfo <- minfo;
3044 gotooutline m_items.(active);
3046 else (
3047 m_items <- items;
3048 m_minfo <- minfo;
3050 None
3052 method hasaction (_:int) = true
3054 method greetmsg =
3055 if Array.length m_items != Array.length m_orig_items
3056 then
3057 let s =
3058 match m_narrow_patterns with
3059 | one :: [] -> one
3060 | many -> String.concat Utf8syms.ellipsis (List.rev many)
3062 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
3063 else E.s
3065 method statestr =
3066 match m_narrow_patterns with
3067 | [] -> E.s
3068 | one :: [] -> one
3069 | head :: _ -> Utf8syms.ellipsis ^ head
3071 method narrow pattern =
3072 match Str.regexp_case_fold pattern with
3073 | exception _ -> ()
3074 | re ->
3075 let rec loop accu minfo n =
3076 if n = -1
3077 then (
3078 m_items <- Array.of_list accu;
3079 m_minfo <- Array.of_list minfo;
3081 else
3082 let (s, _, _) as o = m_items.(n) in
3083 let accu, minfo =
3084 match Str.search_forward re s 0 with
3085 | exception Not_found -> accu, minfo
3086 | first -> o :: accu, (first, Str.match_end ()) :: minfo
3088 loop accu minfo (n-1)
3090 loop [] [] (Array.length m_items - 1)
3092 method! getminfo = m_minfo
3094 method denarrow =
3095 m_orig_items <- fetchoutlines ();
3096 m_minfo <- m_orig_minfo;
3097 m_items <- m_orig_items
3099 method add_narrow_pattern pattern =
3100 m_narrow_patterns <- pattern :: m_narrow_patterns
3102 method del_narrow_pattern =
3103 match m_narrow_patterns with
3104 | _ :: rest -> m_narrow_patterns <- rest
3105 | [] -> ()
3107 method renarrow =
3108 self#denarrow;
3109 match m_narrow_patterns with
3110 | pattern :: [] -> self#narrow pattern; pattern
3111 | list ->
3112 List.fold_left (fun accu pattern ->
3113 self#narrow pattern;
3114 pattern ^ Utf8syms.ellipsis ^ accu) E.s list
3116 method calcactive (_:anchor) = 0
3118 method reset anchor items =
3119 if state.gen != m_gen
3120 then (
3121 m_orig_items <- items;
3122 m_items <- items;
3123 m_narrow_patterns <- [];
3124 m_minfo <- E.a;
3125 m_orig_minfo <- E.a;
3126 m_gen <- state.gen;
3128 else (
3129 if items != m_orig_items
3130 then (
3131 m_orig_items <- items;
3132 if m_narrow_patterns == []
3133 then m_items <- items;
3136 let active = self#calcactive anchor in
3137 m_active <- active;
3138 m_first <- firstof m_first active
3142 let outlinesource fetchoutlines =
3143 (object
3144 inherit outlinesoucebase fetchoutlines
3145 method! calcactive anchor =
3146 let rely = getanchory anchor in
3147 let rec loop n best bestd =
3148 if n = Array.length m_items
3149 then best
3150 else
3151 let _, _, kind = m_items.(n) in
3152 match kind with
3153 | Oanchor anchor ->
3154 let orely = getanchory anchor in
3155 let d = abs (orely - rely) in
3156 if d < bestd
3157 then loop (n+1) n d
3158 else loop (n+1) best bestd
3159 | Onone | Oremote _ | Olaunch _
3160 | Oremotedest _ | Ouri _ | Ohistory _ ->
3161 loop (n+1) best bestd
3163 loop 0 ~-1 max_int
3164 end)
3167 let enteroutlinemode, enterbookmarkmode, enterhistmode =
3168 let fetchoutlines sourcetype () =
3169 match sourcetype with
3170 | `bookmarks -> Array.of_list state.bookmarks
3171 | `outlines -> state.outlines
3172 | `history -> genhistoutlines () |> Array.of_list
3174 let so = outlinesource (fetchoutlines `outlines) in
3175 let sb = outlinesource (fetchoutlines `bookmarks) in
3176 let sh = outlinesource (fetchoutlines `history) in
3177 let mkselector sourcetype source =
3178 (fun errmsg ->
3179 let outlines = fetchoutlines sourcetype () in
3180 if Array.length outlines = 0
3181 then showtext ' ' errmsg
3182 else (
3183 resetmstate ();
3184 Wsi.setcursor Wsi.CURSOR_INHERIT;
3185 let anchor = getanchor () in
3186 source#reset anchor outlines;
3187 state.text <- source#greetmsg;
3188 state.uioh <-
3189 coe (new outlinelistview ~zebra:(sourcetype=`history) ~source);
3190 postRedisplay "enter selector";
3194 let mkenter sourcetype errmsg s = fun () -> mkselector sourcetype s errmsg in
3195 ( mkenter `outlines "document has no outline" so
3196 , mkenter `bookmarks "document has no bookmarks (yet)" sb
3197 , mkenter `history "history is empty" sh )
3200 let quickbookmark ?title () =
3201 match state.layout with
3202 | [] -> ()
3203 | l :: _ ->
3204 let title =
3205 match title with
3206 | None ->
3207 Unix.(
3208 let tm = localtime (now ()) in
3209 Printf.sprintf
3210 "Quick (page %d) (bookmarked on %02d/%02d/%d at %02d:%02d)"
3211 (l.pageno+1)
3212 tm.tm_mday (tm.tm_mon+1) (tm.tm_year+1900) tm.tm_hour tm.tm_min
3214 | Some title -> title
3216 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
3219 let setautoscrollspeed step goingdown =
3220 let incr = max 1 ((abs step) / 2) in
3221 let incr = if goingdown then incr else -incr in
3222 let astep = boundastep state.winh (step + incr) in
3223 state.autoscroll <- Some astep;
3226 let canpan () =
3227 match conf.columns with
3228 | Csplit _ -> true
3229 | Csingle _ | Cmulti _ -> state.x != 0 || conf.zoom > 1.0
3232 let panbound x = bound x (-state.w) state.winw;;
3234 let existsinrow pageno (columns, coverA, coverB) p =
3235 let last = ((pageno - coverA) mod columns) + columns in
3236 let rec any = function
3237 | [] -> false
3238 | l :: rest ->
3239 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
3240 then p l
3241 else (
3242 if not (p l)
3243 then (if l.pageno = last then false else any rest)
3244 else true
3247 any state.layout
3250 let nextpage () =
3251 match state.layout with
3252 | [] ->
3253 let pageno = page_of_y state.y in
3254 gotoxy state.x (getpagey (pageno+1))
3255 | l :: rest ->
3256 match conf.columns with
3257 | Csingle _ ->
3258 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
3259 then
3260 let y = clamp (pgscale state.winh) in
3261 gotoxy state.x y
3262 else
3263 let pageno = min (l.pageno+1) (state.pagecount-1) in
3264 gotoxy state.x (getpagey pageno)
3265 | Cmulti ((c, _, _) as cl, _) ->
3266 if conf.presentation
3267 && (existsinrow l.pageno cl
3268 (fun l -> l.pageh > l.pagey + l.pagevh))
3269 then
3270 let y = clamp (pgscale state.winh) in
3271 gotoxy state.x y
3272 else
3273 let pageno = min (l.pageno+c) (state.pagecount-1) in
3274 gotoxy state.x (getpagey pageno)
3275 | Csplit (n, _) ->
3276 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
3277 then
3278 let pagey, pageh = getpageyh l.pageno in
3279 let pagey = pagey + pageh * l.pagecol in
3280 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
3281 gotoxy state.x (pagey + pageh + ips)
3284 let prevpage () =
3285 match state.layout with
3286 | [] ->
3287 let pageno = page_of_y state.y in
3288 gotoxy state.x (getpagey (pageno-1))
3289 | l :: _ ->
3290 match conf.columns with
3291 | Csingle _ ->
3292 if conf.presentation && l.pagey != 0
3293 then gotoxy state.x (clamp (pgscale ~-(state.winh)))
3294 else
3295 let pageno = max 0 (l.pageno-1) in
3296 gotoxy state.x (getpagey pageno)
3297 | Cmulti ((c, _, coverB) as cl, _) ->
3298 if conf.presentation &&
3299 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
3300 then gotoxy state.x (clamp (pgscale ~-(state.winh)))
3301 else
3302 let decr =
3303 if l.pageno = state.pagecount - coverB
3304 then 1
3305 else c
3307 let pageno = max 0 (l.pageno-decr) in
3308 gotoxy state.x (getpagey pageno)
3309 | Csplit (n, _) ->
3310 let y =
3311 if l.pagecol = 0
3312 then
3313 if l.pageno = 0
3314 then l.pagey
3315 else
3316 let pageno = max 0 (l.pageno-1) in
3317 let pagey, pageh = getpageyh pageno in
3318 pagey + (n-1)*pageh
3319 else
3320 let pagey, pageh = getpageyh l.pageno in
3321 pagey + pageh * (l.pagecol-1) - conf.interpagespace
3323 gotoxy state.x y
3326 let save () =
3327 if emptystr conf.savecmd
3328 then adderrmsg "savepath-command is empty"
3329 "don't know where to save modified document"
3330 else
3331 let savecmd = Str.global_replace Utils.Re.percent state.path conf.savecmd in
3332 let path =
3333 getcmdoutput
3334 (fun exn ->
3335 adderrfmt savecmd "failed to produce path to the saved copy: %s" exn)
3336 savecmd
3338 if nonemptystr path
3339 then
3340 let tmp = path ^ ".tmp" in
3341 savedoc tmp;
3342 Unix.rename tmp path;
3345 let viewkeyboard key mask =
3346 let enttext te =
3347 let mode = state.mode in
3348 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
3349 state.text <- E.s;
3350 enttext ();
3351 postRedisplay "view:enttext"
3353 let ctrl = Wsi.withctrl mask in
3354 let open Keys in
3355 match Wsi.kc2kt key with
3356 | Ascii 'S' -> state.slideshow <- state.slideshow lxor 1
3358 | Ascii 'Q' -> exit 0
3360 | Ascii 'z' ->
3361 let yloc f =
3362 match List.rev state.rects with
3363 | [] -> ()
3364 | (pageno, _, (_, y0, _, y1, _, y2, _, y3)) :: _ ->
3365 f pageno (y0, y1, y2, y3)
3366 and yminmax (y0, y1, y2, y3) =
3367 let ym = min y0 y1 |> min y2 |> min y3 |> truncate in
3368 let yM = max y0 y1 |> max y2 |> max y3 |> truncate in
3369 ym, yM
3371 let ondone msg = state.text <- msg
3372 and zmod _ _ k =
3373 match [@warning "-4"] k with
3374 | Keys.Ascii 'z' ->
3375 let f pageno ys =
3376 let ym, yM = yminmax ys in
3377 let hh = (yM - ym)/2 in
3378 gotopage1 pageno (ym + hh - state.winh/2)
3380 yloc f;
3381 TEdone "center"
3382 | Keys.Ascii 't' ->
3383 let f pageno ys =
3384 let ym, _ = yminmax ys in
3385 gotopage1 pageno ym
3387 yloc f;
3388 TEdone "top"
3389 | Keys.Ascii 'b' ->
3390 let f pageno ys =
3391 let _, yM = yminmax ys in
3392 gotopage1 pageno (yM - state.winh)
3394 yloc f;
3395 TEdone "bottom"
3396 | _ -> TEstop
3398 enttext (": ", E.s, None, zmod state.mode, ondone, true)
3400 | Ascii 'W' ->
3401 if hasunsavedchanges ()
3402 then save ()
3404 | Insert ->
3405 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
3406 then (
3407 state.mode <- (
3408 match state.lnava with
3409 | None -> LinkNav (Ltgendir 0)
3410 | Some pn -> LinkNav (Ltexact pn)
3412 gotoxy state.x state.y;
3414 else impmsg "keyboard link navigation does not work under rotation"
3416 | Escape | Ascii 'q' ->
3417 begin match state.mstate with
3418 | Mzoomrect _ ->
3419 resetmstate ();
3420 postRedisplay "kill rect";
3421 | Msel _
3422 | Mpan _
3423 | Mscrolly | Mscrollx
3424 | Mzoom _
3425 | Mnone ->
3426 begin match state.mode with
3427 | LinkNav ln ->
3428 begin match ln with
3429 | Ltexact pl -> state.lnava <- Some pl
3430 | Ltgendir _ | Ltnotready _ -> state.lnava <- None
3431 end;
3432 state.mode <- View;
3433 postRedisplay "esc leave linknav"
3434 | Birdseye _ | Textentry _ | View ->
3435 match state.ranchors with
3436 | [] -> raise Quit
3437 | (path, password, anchor, origin) :: rest ->
3438 state.ranchors <- rest;
3439 state.anchor <- anchor;
3440 state.origin <- origin;
3441 state.nameddest <- E.s;
3442 opendoc path password
3443 end;
3444 end;
3446 | Backspace ->
3447 addnavnorc ();
3448 gotoxy state.x (getnav ~-1)
3450 | Ascii 'o' -> enteroutlinemode ()
3451 | Ascii 'H' -> enterhistmode ()
3453 | Ascii 'u' ->
3454 state.rects <- [];
3455 state.text <- E.s;
3456 Hashtbl.iter (fun _ opaque ->
3457 clearmark opaque;
3458 Hashtbl.clear state.prects) state.pagemap;
3459 postRedisplay "dehighlight";
3461 | Ascii (('/' | '?') as c) ->
3462 let ondone isforw s =
3463 cbput state.hists.pat s;
3464 state.searchpattern <- s;
3465 search s isforw
3467 let s = String.make 1 c in
3468 enttext (s, E.s, Some (onhist state.hists.pat),
3469 textentry, ondone (c = '/'), true)
3471 | Ascii '+' | Ascii '=' when ctrl ->
3472 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
3473 pivotzoom (conf.zoom +. incr)
3475 | Ascii '+' ->
3476 let ondone s =
3477 let n =
3478 try int_of_string s with exn ->
3479 state.text <-
3480 Printf.sprintf "bad integer `%s': %s" s @@ exntos exn;
3481 max_int
3483 if n != max_int
3484 then (
3485 conf.pagebias <- n;
3486 state.text <- "page bias is now " ^ string_of_int n;
3489 enttext ("page bias: ", E.s, None, intentry, ondone, true)
3491 | Ascii '-' when ctrl ->
3492 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
3493 pivotzoom (max 0.01 (conf.zoom -. decr))
3495 | Ascii '-' ->
3496 let ondone msg = state.text <- msg in
3497 enttext ("option: ", E.s, None,
3498 optentry state.mode, ondone, true)
3500 | Ascii '0' when ctrl ->
3501 if conf.zoom = 1.0
3502 then gotoxy 0 state.y
3503 else setzoom 1.0
3505 | Ascii ('1'|'2' as c) when ctrl && conf.fitmodel != FitPage ->
3506 let cols =
3507 match conf.columns with
3508 | Csingle _ | Cmulti _ -> 1
3509 | Csplit (n, _) -> n
3511 let h = state.winh -
3512 conf.interpagespace lsl (if conf.presentation then 1 else 0)
3514 let zoom = zoomforh state.winw h 0 cols in
3515 if zoom > 0.0 && (c = '2' || zoom < 1.0)
3516 then setzoom zoom
3518 | Ascii '3' when ctrl ->
3519 let fm =
3520 match conf.fitmodel with
3521 | FitWidth -> FitProportional
3522 | FitProportional -> FitPage
3523 | FitPage -> FitWidth
3525 state.text <- "fit model: " ^ FMTE.to_string fm;
3526 reqlayout conf.angle fm
3528 | Ascii '4' when ctrl ->
3529 let zoom = getmaxw () /. float state.winw in
3530 if zoom > 0.0 then setzoom zoom
3532 | Fn 9 | Ascii '9' when ctrl -> togglebirdseye ()
3534 | Ascii ('0'..'9' as c) when not ctrl ->
3535 let ondone s =
3536 let n =
3537 try int_of_string s with exn ->
3538 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn;
3541 if n >= 0
3542 then (
3543 addnav ();
3544 cbput state.hists.pag (string_of_int n);
3545 gotopage1 (n + conf.pagebias - 1) 0;
3548 let pageentry text = function [@warning "-4"]
3549 | Keys.Ascii 'g' -> TEdone text
3550 | key -> intentry text key
3552 let text = String.make 1 c in
3553 enttext (":", text, Some (onhist state.hists.pag),
3554 pageentry, ondone, true)
3556 | Ascii 'b' ->
3557 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
3558 postRedisplay "toggle scrollbar";
3560 | Ascii 'B' ->
3561 state.bzoom <- not state.bzoom;
3562 state.rects <- [];
3563 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
3565 | Ascii 'l' ->
3566 conf.hlinks <- not conf.hlinks;
3567 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
3568 postRedisplay "toggle highlightlinks";
3570 | Ascii 'F' ->
3571 if conf.angle mod 360 = 0
3572 then (
3573 state.glinks <- true;
3574 let mode = state.mode in
3575 state.mode <-
3576 Textentry (
3577 ("goto: ", E.s, None, linknentry, linknact gotounder, false),
3578 (fun _ ->
3579 state.glinks <- false;
3580 state.mode <- mode)
3582 state.text <- E.s;
3583 postRedisplay "view:linkent(F)"
3585 else impmsg "hint mode does not work under rotation"
3587 | Ascii 'y' ->
3588 state.glinks <- true;
3589 let mode = state.mode in
3590 state.mode <-
3591 Textentry (
3592 ("copy: ", E.s, None, linknentry,
3593 linknact (fun under ->
3594 selstring conf.selcmd (undertext under)), false),
3595 (fun _ ->
3596 state.glinks <- false;
3597 state.mode <- mode)
3599 state.text <- E.s;
3600 postRedisplay "view:linkent"
3602 | Ascii 'a' ->
3603 begin match state.autoscroll with
3604 | Some step ->
3605 conf.autoscrollstep <- step;
3606 state.autoscroll <- None
3607 | None ->
3608 state.autoscroll <- Some conf.autoscrollstep;
3609 state.slideshow <- state.slideshow land lnot 2
3612 | Ascii 'p' when ctrl ->
3613 launchpath () (* XXX where do error messages go? *)
3615 | Ascii 'P' ->
3616 setpresentationmode (not conf.presentation);
3617 showtext ' ' ("presentation mode " ^
3618 if conf.presentation then "on" else "off");
3620 | Ascii 'f' ->
3621 if List.mem Wsi.Fullscreen state.winstate
3622 then Wsi.reshape conf.cwinw conf.cwinh
3623 else Wsi.fullscreen ()
3625 | Ascii ('p'|'N') -> search state.searchpattern false
3626 | Ascii 'n' | Fn 3 -> search state.searchpattern true
3628 | Ascii 't' ->
3629 begin match state.layout with
3630 | [] -> ()
3631 | l :: _ -> gotoxy state.x (getpagey l.pageno)
3634 | Ascii ' ' -> nextpage ()
3635 | Delete -> prevpage ()
3636 | Ascii '=' -> showtext ' ' (describe_layout state.layout);
3638 | Ascii 'w' ->
3639 begin match state.layout with
3640 | [] -> ()
3641 | l :: _ ->
3642 Wsi.reshape l.pagew l.pageh;
3643 postRedisplay "w"
3646 | Ascii '\'' -> enterbookmarkmode ()
3647 | Ascii 'h' | Fn 1 -> enterhelpmode ()
3648 | Ascii 'i' -> enterinfomode ()
3649 | Ascii 'e' when Buffer.length state.errmsgs > 0 -> entermsgsmode ()
3651 | Ascii 'm' ->
3652 let ondone s =
3653 match state.layout with
3654 | l :: _ when nonemptystr s ->
3655 state.bookmarks <- (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
3656 | _ -> ()
3658 enttext ("bookmark: ", E.s, None, textentry, ondone, true)
3660 | Ascii '~' ->
3661 quickbookmark ();
3662 showtext ' ' "Quick bookmark added";
3664 | Ascii 'x' -> state.roam ()
3666 | Ascii ('<'|'>' as c) ->
3667 reqlayout (conf.angle + (if c = '>' then 30 else -30)) conf.fitmodel
3669 | Ascii ('['|']' as c) ->
3670 conf.colorscale <-
3671 bound (conf.colorscale +. (if c = ']' then 0.1 else -0.1)) 0.0 1.0;
3672 postRedisplay "brightness";
3674 | Ascii 'c' when state.mode = View ->
3675 if Wsi.withalt mask
3676 then (
3677 if conf.zoom > 1.0
3678 then
3679 let m = (state.winw - state.w) / 2 in
3680 gotoxy m state.y
3682 else
3683 let (c, a, b), z =
3684 match state.prevcolumns with
3685 | None -> (1, 0, 0), 1.0
3686 | Some (columns, z) ->
3687 let cab =
3688 match columns with
3689 | Csplit (c, _) -> -c, 0, 0
3690 | Cmulti ((c, a, b), _) -> c, a, b
3691 | Csingle _ -> 1, 0, 0
3693 cab, z
3695 setcolumns View c a b;
3696 setzoom z
3698 | Down | Up when ctrl && Wsi.withshift mask ->
3699 let zoom, x = state.prevzoom in
3700 setzoom zoom;
3701 state.x <- x;
3703 | Up ->
3704 begin match state.autoscroll with
3705 | None ->
3706 begin match state.mode with
3707 | Birdseye beye -> upbirdseye 1 beye
3708 | Textentry _ | View | LinkNav _ ->
3709 if ctrl
3710 then gotoxy state.x (clamp ~-(state.winh/2))
3711 else (
3712 if not (Wsi.withshift mask) && conf.presentation
3713 then prevpage ()
3714 else gotoxy state.x (clamp (-conf.scrollstep))
3717 | Some n -> setautoscrollspeed n false
3720 | Down ->
3721 begin match state.autoscroll with
3722 | None ->
3723 begin match state.mode with
3724 | Birdseye beye -> downbirdseye 1 beye
3725 | Textentry _ | View | LinkNav _ ->
3726 if ctrl
3727 then gotoxy state.x (clamp (state.winh/2))
3728 else (
3729 if not (Wsi.withshift mask) && conf.presentation
3730 then nextpage ()
3731 else gotoxy state.x (clamp (conf.scrollstep))
3734 | Some n -> setautoscrollspeed n true
3737 | Left | Right when not (Wsi.withalt mask) ->
3738 if canpan ()
3739 then
3740 let dx =
3741 if ctrl
3742 then state.winw / 2
3743 else conf.hscrollstep
3745 let dx =
3746 let pv = Wsi.kc2kt key in
3747 if pv = Keys.Left then dx else -dx
3749 gotoxy (panbound (state.x + dx)) state.y
3750 else (
3751 state.text <- E.s;
3752 postRedisplay "left/right"
3755 | Prior ->
3756 let y =
3757 if ctrl
3758 then
3759 match state.layout with
3760 | [] -> state.y
3761 | l :: _ -> state.y - l.pagey
3762 else clamp (pgscale (-state.winh))
3764 gotoxy state.x y
3766 | Next ->
3767 let y =
3768 if ctrl
3769 then
3770 match List.rev state.layout with
3771 | [] -> state.y
3772 | l :: _ -> getpagey l.pageno
3773 else clamp (pgscale state.winh)
3775 gotoxy state.x y
3777 | Ascii 'g' | Home ->
3778 addnav ();
3779 gotoxy 0 0
3780 | Ascii 'G' | End ->
3781 addnav ();
3782 gotoxy 0 (clamp state.maxy)
3784 | Right when Wsi.withalt mask ->
3785 addnavnorc ();
3786 gotoxy state.x (getnav 1)
3787 | Left when Wsi.withalt mask ->
3788 addnavnorc ();
3789 gotoxy state.x (getnav ~-1)
3791 | Ascii 'r' ->
3792 reload ()
3794 | Ascii 'v' when conf.debug ->
3795 state.rects <- [];
3796 List.iter (fun l ->
3797 match getopaque l.pageno with
3798 | None -> ()
3799 | Some opaque ->
3800 let x0, y0, x1, y1 = pagebbox opaque in
3801 let rect = (float x0, float y0,
3802 float x1, float y0,
3803 float x1, float y1,
3804 float x0, float y1) in
3805 debugrect rect;
3806 let color = (0.0, 0.0, 1.0 /. (l.pageno mod 3 |> float), 0.5) in
3807 state.rects <- (l.pageno, color, rect) :: state.rects;
3808 ) state.layout;
3809 postRedisplay "v";
3811 | Ascii '|' ->
3812 let mode = state.mode in
3813 let cmd = ref E.s in
3814 let onleave = function
3815 | Cancel -> state.mode <- mode
3816 | Confirm ->
3817 List.iter (fun l ->
3818 match getopaque l.pageno with
3819 | Some opaque -> pipesel opaque !cmd
3820 | None -> ()) state.layout;
3821 state.mode <- mode
3823 let ondone s =
3824 cbput state.hists.sel s;
3825 cmd := s
3827 let te =
3828 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
3830 postRedisplay "|";
3831 state.mode <- Textentry (te, onleave);
3833 | (Ascii _|Fn _|Enter|Left|Right|Code _|Ctrl _) ->
3834 vlog "huh? %s" (Wsi.keyname key)
3837 let linknavkeyboard key mask linknav =
3838 let pv = Wsi.kc2kt key in
3839 let getpage pageno =
3840 let rec loop = function
3841 | [] -> None
3842 | l :: _ when l.pageno = pageno -> Some l
3843 | _ :: rest -> loop rest
3844 in loop state.layout
3846 let doexact (pageno, n) =
3847 match getopaque pageno, getpage pageno with
3848 | Some opaque, Some l ->
3849 if pv = Keys.Enter
3850 then
3851 let under = getlink opaque n in
3852 postRedisplay "link gotounder";
3853 gotounder under;
3854 state.mode <- View;
3855 else
3856 let opt, dir =
3857 let open Keys in
3858 match pv with
3859 | Home -> Some (findlink opaque LDfirst), -1
3860 | End -> Some (findlink opaque LDlast), 1
3861 | Left -> Some (findlink opaque (LDleft n)), -1
3862 | Right -> Some (findlink opaque (LDright n)), 1
3863 | Up -> Some (findlink opaque (LDup n)), -1
3864 | Down -> Some (findlink opaque (LDdown n)), 1
3865 | Delete|Escape|Insert|Enter|Next|Prior|Ascii _
3866 | Code _|Fn _|Ctrl _|Backspace -> None, 0
3868 let pwl l dir =
3869 begin match findpwl l.pageno dir with
3870 | Pwlnotfound -> ()
3871 | Pwl pageno ->
3872 let notfound dir =
3873 state.mode <- LinkNav (Ltgendir dir);
3874 let y, h = getpageyh pageno in
3875 let y =
3876 if dir < 0
3877 then y + h - state.winh
3878 else y
3880 gotoxy state.x y
3882 begin match getopaque pageno, getpage pageno with
3883 | Some opaque, Some _ ->
3884 let link =
3885 let ld = if dir > 0 then LDfirst else LDlast in
3886 findlink opaque ld
3888 begin match link with
3889 | Lfound m ->
3890 showlinktype (getlink opaque m);
3891 state.mode <- LinkNav (Ltexact (pageno, m));
3892 postRedisplay "linknav jpage";
3893 | Lnotfound -> notfound dir
3894 end;
3895 | _ -> notfound dir
3896 end;
3897 end;
3899 begin match opt with
3900 | Some Lnotfound -> pwl l dir;
3901 | Some (Lfound m) ->
3902 if m = n
3903 then pwl l dir
3904 else (
3905 let _, y0, _, y1 = getlinkrect opaque m in
3906 if y0 < l.pagey
3907 then gotopage1 l.pageno y0
3908 else (
3909 let d = fstate.fontsize + 1 in
3910 if y1 - l.pagey > l.pagevh - d
3911 then gotopage1 l.pageno (y1 - state.winh + d)
3912 else postRedisplay "linknav";
3914 showlinktype (getlink opaque m);
3915 state.mode <- LinkNav (Ltexact (l.pageno, m));
3918 | None -> viewkeyboard key mask
3919 end;
3920 | _ -> viewkeyboard key mask
3922 if pv = Keys.Insert
3923 then (
3924 begin match linknav with
3925 | Ltexact pa -> state.lnava <- Some pa
3926 | Ltgendir _ | Ltnotready _ -> ()
3927 end;
3928 state.mode <- View;
3929 postRedisplay "leave linknav"
3931 else
3932 match linknav with
3933 | Ltgendir _ | Ltnotready _ -> viewkeyboard key mask
3934 | Ltexact exact -> doexact exact
3937 let keyboard key mask =
3938 if (key = Char.code 'g' && Wsi.withctrl mask) && not (istextentry state.mode)
3939 then wcmd "interrupt"
3940 else state.uioh <- state.uioh#key key mask
3943 let birdseyekeyboard key mask
3944 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
3945 let incr =
3946 match conf.columns with
3947 | Csingle _ -> 1
3948 | Cmulti ((c, _, _), _) -> c
3949 | Csplit _ -> error "bird's eye split mode"
3951 let pgh layout = List.fold_left
3952 (fun m l -> max l.pageh m) state.winh layout in
3953 let open Keys in
3954 match Wsi.kc2kt key with
3955 | Ascii 'l' when Wsi.withctrl mask ->
3956 let y, h = getpageyh pageno in
3957 let top = (state.winh - h) / 2 in
3958 gotoxy state.x (max 0 (y - top))
3959 | Enter -> leavebirdseye beye false
3960 | Escape -> leavebirdseye beye true
3961 | Up -> upbirdseye incr beye
3962 | Down -> downbirdseye incr beye
3963 | Left -> upbirdseye 1 beye
3964 | Right -> downbirdseye 1 beye
3966 | Prior ->
3967 begin match state.layout with
3968 | l :: _ ->
3969 if l.pagey != 0
3970 then (
3971 state.mode <- Birdseye (
3972 oconf, leftx, l.pageno, hooverpageno, anchor
3974 gotopage1 l.pageno 0;
3976 else (
3977 let layout = layout state.x (state.y-state.winh)
3978 state.winw
3979 (pgh state.layout) in
3980 match layout with
3981 | [] -> gotoxy state.x (clamp (-state.winh))
3982 | l :: _ ->
3983 state.mode <- Birdseye (
3984 oconf, leftx, l.pageno, hooverpageno, anchor
3986 gotopage1 l.pageno 0
3989 | [] -> gotoxy state.x (clamp (-state.winh))
3990 end;
3992 | Next ->
3993 begin match List.rev state.layout with
3994 | l :: _ ->
3995 let layout = layout state.x
3996 (state.y + (pgh state.layout))
3997 state.winw state.winh in
3998 begin match layout with
3999 | [] ->
4000 let incr = l.pageh - l.pagevh in
4001 if incr = 0
4002 then (
4003 state.mode <-
4004 Birdseye (
4005 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
4007 postRedisplay "birdseye pagedown";
4009 else gotoxy state.x (clamp (incr + conf.interpagespace*2));
4011 | l :: _ ->
4012 state.mode <-
4013 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
4014 gotopage1 l.pageno 0;
4017 | [] -> gotoxy state.x (clamp state.winh)
4018 end;
4020 | Home ->
4021 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
4022 gotopage1 0 0
4024 | End ->
4025 let pageno = state.pagecount - 1 in
4026 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
4027 if not (pagevisible state.layout pageno)
4028 then
4029 let h =
4030 match List.rev state.pdims with
4031 | [] -> state.winh
4032 | (_, _, h, _) :: _ -> h
4034 gotoxy
4035 state.x
4036 (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
4037 else postRedisplay "birdseye end";
4039 | Delete|Insert|Ascii _|Code _|Ctrl _|Fn _|Backspace -> viewkeyboard key mask
4042 let drawpage l =
4043 let color =
4044 match state.mode with
4045 | Textentry _ -> scalecolor 0.4
4046 | LinkNav _ | View -> scalecolor 1.0
4047 | Birdseye (_, _, pageno, hooverpageno, _) ->
4048 if l.pageno = hooverpageno
4049 then scalecolor 0.9
4050 else (
4051 if l.pageno = pageno
4052 then (
4053 let c = scalecolor 1.0 in
4054 GlDraw.color c;
4055 GlDraw.line_width 3.0;
4056 let dispx = l.pagedispx in
4057 linerect
4058 (float (dispx-1)) (float (l.pagedispy-1))
4059 (float (dispx+l.pagevw+1))
4060 (float (l.pagedispy+l.pagevh+1));
4061 GlDraw.line_width 1.0;
4064 else scalecolor 0.8
4067 drawtiles l color;
4070 let postdrawpage l linkindexbase =
4071 match getopaque l.pageno with
4072 | Some opaque ->
4073 if tileready l l.pagex l.pagey
4074 then
4075 let x = l.pagedispx - l.pagex
4076 and y = l.pagedispy - l.pagey in
4077 let hlmask =
4078 match conf.columns with
4079 | Csingle _ | Cmulti _ ->
4080 (if conf.hlinks then 1 else 0)
4081 + (if state.glinks
4082 && not (isbirdseye state.mode) then 2 else 0)
4083 | Csplit _ -> 0
4085 let s =
4086 match state.mode with
4087 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
4088 | Textentry _
4089 | Birdseye _
4090 | View
4091 | LinkNav _ -> E.s
4093 Hashtbl.find_all state.prects l.pageno |>
4094 List.iter (fun vals -> drawprect opaque x y vals);
4095 let n = postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize) in
4096 if n < 0
4097 then (Glutils.redisplay := true; 0)
4098 else n
4099 else 0
4100 | _ -> 0
4103 let scrollindicator () =
4104 let sbw, ph, sh = state.uioh#scrollph in
4105 let sbh, pw, sw = state.uioh#scrollpw in
4107 let x0,x1,hx0 =
4108 if conf.leftscroll
4109 then (0, sbw, sbw)
4110 else ((state.winw - sbw), state.winw, 0)
4113 Gl.enable `blend;
4114 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
4115 let (r, g, b, alpha) = conf.sbarcolor in
4116 GlDraw.color (r, g, b) ~alpha;
4117 filledrect (float x0) 0. (float x1) (float state.winh);
4118 filledrect
4119 (float hx0) (float (state.winh - sbh))
4120 (float (hx0 + state.winw)) (float state.winh);
4121 let (r, g, b, alpha) = conf.sbarhndlcolor in
4122 GlDraw.color (r, g, b) ~alpha;
4124 filledrect (float x0) ph (float x1) (ph +. sh);
4125 let pw = pw +. float hx0 in
4126 filledrect pw (float (state.winh - sbh)) (pw +. sw) (float state.winh);
4127 Gl.disable `blend;
4130 let showsel () =
4131 match state.mstate with
4132 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ -> ()
4133 | Msel ((x0, y0), (x1, y1)) ->
4134 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
4135 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< E.s, -1, 0, 0) in
4136 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< E.s, -1, 0, 0) in
4137 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
4140 let showrects = function
4141 | [] -> ()
4142 | rects ->
4143 Gl.enable `blend;
4144 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
4145 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
4146 List.iter
4147 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
4148 List.iter (fun l ->
4149 if l.pageno = pageno
4150 then
4151 let dx = float (l.pagedispx - l.pagex) in
4152 let dy = float (l.pagedispy - l.pagey) in
4153 let r, g, b, alpha = c in
4154 GlDraw.color (r, g, b) ~alpha;
4155 filledrect2
4156 (x0+.dx) (y0+.dy)
4157 (x1+.dx) (y1+.dy)
4158 (x3+.dx) (y3+.dy)
4159 (x2+.dx) (y2+.dy);
4160 ) state.layout
4161 ) rects;
4162 Gl.disable `blend;
4165 let display () =
4166 GlDraw.color (scalecolor2 conf.bgcolor);
4167 GlClear.color (scalecolor2 conf.bgcolor);
4168 GlClear.clear [`color];
4169 List.iter drawpage state.layout;
4170 let rects =
4171 match state.mode with
4172 | LinkNav (Ltexact (pageno, linkno)) ->
4173 begin match getopaque pageno with
4174 | Some opaque ->
4175 let x0, y0, x1, y1 = getlinkrect opaque linkno in
4176 let color = (0.0, 0.0, 0.5, 0.5) in
4177 (pageno, color,
4178 (float x0, float y0,
4179 float x1, float y0,
4180 float x1, float y1,
4181 float x0, float y1)
4182 ) :: state.rects
4183 | None -> state.rects
4185 | LinkNav (Ltgendir _) | LinkNav (Ltnotready _)
4186 | Birdseye _
4187 | Textentry _
4188 | View -> state.rects
4190 showrects rects;
4191 let rec postloop linkindexbase = function
4192 | l :: rest ->
4193 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
4194 postloop linkindexbase rest
4195 | [] -> ()
4197 showsel ();
4198 postloop 0 state.layout;
4199 state.uioh#display;
4200 begin match state.mstate with
4201 | Mzoomrect ((x0, y0), (x1, y1)) ->
4202 Gl.enable `blend;
4203 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
4204 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
4205 filledrect (float x0) (float y0) (float x1) (float y1);
4206 Gl.disable `blend;
4207 | Msel _
4208 | Mpan _
4209 | Mscrolly | Mscrollx
4210 | Mzoom _
4211 | Mnone -> ()
4212 end;
4213 enttext ();
4214 scrollindicator ();
4215 Wsi.swapb ();
4218 let display () =
4219 match state.reload with
4220 | Some (x, y, t) ->
4221 if x != state.x || y != state.y || abs_float @@ now () -. t > 0.5
4222 || (state.layout != [] && layoutready state.layout)
4223 then (
4224 state.reload <- None;
4225 display ()
4227 | None -> display ()
4230 let zoomrect x y x1 y1 =
4231 let x0 = min x x1
4232 and x1 = max x x1
4233 and y0 = min y y1 in
4234 let zoom = (float state.w) /. float (x1 - x0) in
4235 let margin =
4236 let simple () =
4237 if state.w < state.winw
4238 then (state.winw - state.w) / 2
4239 else 0
4241 match conf.fitmodel with
4242 | FitWidth | FitProportional -> simple ()
4243 | FitPage ->
4244 match conf.columns with
4245 | Csplit _ ->
4246 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
4247 | Cmulti _ | Csingle _ -> simple ()
4249 gotoxy ((state.x + margin) - x0) (state.y + y0);
4250 state.anchor <- getanchor ();
4251 setzoom zoom;
4252 resetmstate ();
4255 let annot inline x y =
4256 match unproject x y with
4257 | Some (opaque, n, ux, uy) ->
4258 let add text =
4259 addannot opaque ux uy text;
4260 wcmd "freepage %s" (~> opaque);
4261 Hashtbl.remove state.pagemap (n, state.gen);
4262 flushtiles ();
4263 gotoxy state.x state.y
4265 if inline
4266 then
4267 let ondone s = add s in
4268 let mode = state.mode in
4269 state.mode <- Textentry (
4270 ("annotation: ", E.s, None, textentry, ondone, true),
4271 fun _ -> state.mode <- mode);
4272 state.text <- E.s;
4273 enttext ();
4274 postRedisplay "annot"
4275 else add @@ getusertext E.s
4276 | _ -> ()
4279 let zoomblock x y =
4280 let g opaque l px py =
4281 match rectofblock opaque px py with
4282 | Some a ->
4283 let x0 = a.(0) -. 20. in
4284 let x1 = a.(1) +. 20. in
4285 let y0 = a.(2) -. 20. in
4286 let zoom = (float state.w) /. (x1 -. x0) in
4287 let pagey = getpagey l.pageno in
4288 let margin = (state.w - l.pagew)/2 in
4289 let nx = -truncate x0 - margin in
4290 gotoxy nx (pagey + truncate y0);
4291 state.anchor <- getanchor ();
4292 setzoom zoom;
4293 None
4294 | None -> None
4296 match conf.columns with
4297 | Csplit _ ->
4298 impmsg "block zooming does not work properly in split columns mode"
4299 | Cmulti _ | Csingle _ -> onppundermouse g x y ()
4302 let scrollx x =
4303 let winw = state.winw - 1 in
4304 let s = float x /. float winw in
4305 let destx = truncate (float (state.w + winw) *. s) in
4306 gotoxy (winw - destx) state.y;
4307 state.mstate <- Mscrollx;
4310 let scrolly y =
4311 let s = float y /. float state.winh in
4312 let desty = truncate (s *. float (maxy ())) in
4313 gotoxy state.x desty;
4314 state.mstate <- Mscrolly;
4317 let viewmulticlick clicks x y mask =
4318 let g opaque l px py =
4319 let mark =
4320 match clicks with
4321 | 2 -> Mark_word
4322 | 3 -> Mark_line
4323 | 4 -> Mark_block
4324 | _ -> Mark_page
4326 if markunder opaque px py mark
4327 then (
4328 Some (fun () ->
4329 let dopipe cmd =
4330 match getopaque l.pageno with
4331 | None -> ()
4332 | Some opaque -> pipesel opaque cmd
4334 state.roam <- (fun () -> dopipe conf.paxcmd);
4335 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
4338 else None
4340 postRedisplay "viewmulticlick";
4341 onppundermouse g x y (fun () -> impmsg "nothing to select") ();
4344 let canselect () =
4345 match conf.columns with
4346 | Csplit _ -> false
4347 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
4350 let viewmouse button down x y mask =
4351 match button with
4352 | n when (n == 4 || n == 5) && not down ->
4353 if Wsi.withctrl mask
4354 then (
4355 let incr =
4356 if n = 5
4357 then if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
4358 else if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
4360 let fx, fy =
4361 match state.mstate with
4362 | Mzoom (oldn, _, pos) when n = oldn -> pos
4363 | Mzoomrect _ | Mnone | Mpan _
4364 | Msel _ | Mscrollx | Mscrolly | Mzoom _ -> (x, y)
4366 let zoom = conf.zoom -. incr in
4367 state.mstate <- Mzoom (n, 0, (x, y));
4368 if false && abs (fx - x) > 5 || abs (fy - y) > 5
4369 then pivotzoom ~x ~y zoom
4370 else pivotzoom zoom
4372 else (
4373 match state.autoscroll with
4374 | Some step -> setautoscrollspeed step (n=4)
4375 | None ->
4376 if conf.wheelbypage || conf.presentation
4377 then (
4378 if n = 4
4379 then prevpage ()
4380 else nextpage ()
4382 else
4383 let incr = if n = 4 then -conf.scrollstep else conf.scrollstep in
4384 let incr = incr * 2 in
4385 let y = clamp incr in
4386 gotoxy state.x y
4389 | n when (n = 6 || n = 7) && not down && canpan () ->
4390 let x =
4391 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep) in
4392 gotoxy x state.y
4394 | 1 when Wsi.withshift mask ->
4395 state.mstate <- Mnone;
4396 if not down
4397 then (
4398 match unproject x y with
4399 | None -> ()
4400 | Some (_, pageno, ux, uy) ->
4401 let cmd = Printf.sprintf
4402 "%s %s %d %d %d"
4403 conf.stcmd state.path pageno ux uy
4405 match spawn cmd [] with
4406 | exception exn ->
4407 impmsg "execution of synctex command(%S) failed: %S"
4408 conf.stcmd @@ exntos exn
4409 | _pid -> ()
4412 | 1 when Wsi.withctrl mask ->
4413 if down
4414 then (
4415 Wsi.setcursor Wsi.CURSOR_FLEUR;
4416 state.mstate <- Mpan (x, y)
4418 else state.mstate <- Mnone
4420 | 3 ->
4421 if down
4422 then (
4423 if Wsi.withshift mask
4424 then (
4425 annot conf.annotinline x y;
4426 postRedisplay "addannot"
4428 else
4429 let p = (x, y) in
4430 Wsi.setcursor Wsi.CURSOR_CYCLE;
4431 state.mstate <- Mzoomrect (p, p)
4433 else (
4434 match state.mstate with
4435 | Mzoomrect ((x0, y0), _) ->
4436 if abs (x-x0) > 10 && abs (y - y0) > 10
4437 then zoomrect x0 y0 x y
4438 else (
4439 resetmstate ();
4440 postRedisplay "kill accidental zoom rect";
4442 | Msel _
4443 | Mpan _
4444 | Mscrolly | Mscrollx
4445 | Mzoom _
4446 | Mnone -> resetmstate ()
4449 | 1 when vscrollhit x ->
4450 if down
4451 then
4452 let _, position, sh = state.uioh#scrollph in
4453 if y > truncate position && y < truncate (position +. sh)
4454 then state.mstate <- Mscrolly
4455 else scrolly y
4456 else state.mstate <- Mnone
4458 | 1 when y > state.winh - hscrollh () ->
4459 if down
4460 then
4461 let _, position, sw = state.uioh#scrollpw in
4462 if x > truncate position && x < truncate (position +. sw)
4463 then state.mstate <- Mscrollx
4464 else scrollx x
4465 else state.mstate <- Mnone
4467 | 1 when state.bzoom -> if not down then zoomblock x y
4469 | 1 ->
4470 let dest = if down then getunder x y else Unone in
4471 begin match dest with
4472 | Ulinkuri _ -> gotounder dest
4473 | Unone when down ->
4474 Wsi.setcursor Wsi.CURSOR_FLEUR;
4475 state.mstate <- Mpan (x, y);
4476 | Uannotation (opaque, slinkindex) -> enterannotmode opaque slinkindex
4477 | Unone | Utext _ ->
4478 if down
4479 then (
4480 if canselect ()
4481 then (
4482 state.mstate <- Msel ((x, y), (x, y));
4483 postRedisplay "mouse select";
4486 else (
4487 match state.mstate with
4488 | Mnone -> ()
4489 | Mzoom _ | Mscrollx | Mscrolly -> state.mstate <- Mnone
4490 | Mzoomrect ((x0, y0), _) -> zoomrect x0 y0 x y
4491 | Mpan _ ->
4492 Wsi.setcursor Wsi.CURSOR_INHERIT;
4493 state.mstate <- Mnone
4494 | Msel ((x0, y0), (x1, y1)) ->
4495 let rec loop = function
4496 | [] -> ()
4497 | l :: rest ->
4498 let inside =
4499 let a0 = l.pagedispy in
4500 let a1 = a0 + l.pagevh in
4501 let b0 = l.pagedispx in
4502 let b1 = b0 + l.pagevw in
4503 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
4504 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
4506 if inside
4507 then
4508 match getopaque l.pageno with
4509 | Some opaque ->
4510 let dosel cmd () =
4511 pipef ~closew:false "Msel"
4512 (fun w ->
4513 copysel w opaque;
4514 postRedisplay "Msel") cmd
4516 dosel conf.selcmd ();
4517 state.roam <- dosel conf.paxcmd;
4518 | None -> ()
4519 else loop rest
4521 loop state.layout;
4522 resetmstate ();
4525 | _ -> ()
4528 let birdseyemouse button down x y mask
4529 (conf, leftx, _, hooverpageno, anchor) =
4530 match button with
4531 | 1 when down ->
4532 let rec loop = function
4533 | [] -> ()
4534 | l :: rest ->
4535 if y > l.pagedispy && y < l.pagedispy + l.pagevh
4536 && x > l.pagedispx && x < l.pagedispx + l.pagevw
4537 then
4538 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false
4539 else loop rest
4541 loop state.layout
4542 | 3 -> ()
4543 | _ -> viewmouse button down x y mask
4546 let uioh = object
4547 method display = ()
4549 method key key mask =
4550 begin match state.mode with
4551 | Textentry textentry -> textentrykeyboard key mask textentry
4552 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
4553 | View -> viewkeyboard key mask
4554 | LinkNav linknav -> linknavkeyboard key mask linknav
4555 end;
4556 state.uioh
4558 method button button bstate x y mask =
4559 begin match state.mode with
4560 | LinkNav _ | View -> viewmouse button bstate x y mask
4561 | Birdseye beye -> birdseyemouse button bstate x y mask beye
4562 | Textentry _ -> ()
4563 end;
4564 state.uioh
4566 method multiclick clicks x y mask =
4567 begin match state.mode with
4568 | LinkNav _ | View -> viewmulticlick clicks x y mask
4569 | Birdseye _ | Textentry _ -> ()
4570 end;
4571 state.uioh
4573 method motion x y =
4574 begin match state.mode with
4575 | Textentry _ -> ()
4576 | View | Birdseye _ | LinkNav _ ->
4577 match state.mstate with
4578 | Mzoom _ | Mnone -> ()
4579 | Mpan (x0, y0) ->
4580 let dx = x - x0
4581 and dy = y0 - y in
4582 state.mstate <- Mpan (x, y);
4583 let x = if canpan () then panbound (state.x + dx) else state.x in
4584 let y = clamp dy in
4585 gotoxy x y
4587 | Msel (a, _) ->
4588 state.mstate <- Msel (a, (x, y));
4589 postRedisplay "motion select";
4591 | Mscrolly ->
4592 let y = min state.winh (max 0 y) in
4593 scrolly y
4595 | Mscrollx ->
4596 let x = min state.winw (max 0 x) in
4597 scrollx x
4599 | Mzoomrect (p0, _) ->
4600 state.mstate <- Mzoomrect (p0, (x, y));
4601 postRedisplay "motion zoomrect";
4602 end;
4603 state.uioh
4605 method pmotion x y =
4606 begin match state.mode with
4607 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
4608 let rec loop = function
4609 | [] ->
4610 if hooverpageno != -1
4611 then (
4612 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
4613 postRedisplay "pmotion birdseye no hoover";
4615 | l :: rest ->
4616 if y > l.pagedispy && y < l.pagedispy + l.pagevh
4617 && x > l.pagedispx && x < l.pagedispx + l.pagevw
4618 then (
4619 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
4620 postRedisplay "pmotion birdseye hoover";
4622 else loop rest
4624 loop state.layout
4626 | Textentry _ -> ()
4628 | LinkNav _ | View ->
4629 match state.mstate with
4630 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ -> ()
4631 | Mnone ->
4632 updateunder x y;
4633 if canselect ()
4634 then
4635 match conf.pax with
4636 | None -> ()
4637 | Some past ->
4638 let now = now () in
4639 let delta = now -. past in
4640 if delta > 0.01
4641 then paxunder x y
4642 else conf.pax <- Some now
4643 end;
4644 state.uioh
4646 method infochanged _ = ()
4648 method scrollph =
4649 let maxy = maxy () in
4650 let p, h =
4651 if maxy = 0
4652 then 0.0, float state.winh
4653 else scrollph state.y maxy
4655 vscrollw (), p, h
4657 method scrollpw =
4658 let fwinw = float (state.winw - vscrollw ()) in
4659 let sw =
4660 let sw = fwinw /. float state.w in
4661 let sw = fwinw *. sw in
4662 max sw (float conf.scrollh)
4664 let position =
4665 let maxx = state.w + state.winw in
4666 let x = state.winw - state.x in
4667 let percent = float x /. float maxx in
4668 (fwinw -. sw) *. percent
4670 hscrollh (), position, sw
4672 method modehash =
4673 let modename =
4674 match state.mode with
4675 | LinkNav _ -> "links"
4676 | Textentry _ -> "textentry"
4677 | Birdseye _ -> "birdseye"
4678 | View -> "view"
4680 findkeyhash conf modename
4682 method eformsgs = true
4683 method alwaysscrolly = false
4684 method scroll dx dy =
4685 let x = if canpan () then panbound (state.x + dx) else state.x in
4686 gotoxy x (clamp (2 * dy));
4687 state.uioh
4688 method zoom z x y =
4689 pivotzoom ~x ~y (conf.zoom *. exp z);
4690 end;;
4692 let addrect pageno r g b a x0 y0 x1 y1 =
4693 Hashtbl.add state.prects pageno [|r; g; b; a; x0; y0; x1; y1|];
4696 let ract cmds =
4697 let cl = splitatchar cmds ' ' in
4698 let scan s fmt f =
4699 try Scanf.sscanf s fmt f
4700 with exn -> adderrfmt "remote exec" "error processing '%S': %s\n"
4701 cmds @@ exntos exn
4703 let rectx s pageno (r, g, b, a) x0 y0 x1 y1 =
4704 vlog "%s page %d color (%f %f %f %f) x0,y0,x1,y1 = %f %f %f %f"
4705 s pageno r g b a x0 y0 x1 y1;
4706 onpagerect
4707 pageno
4708 (fun w h ->
4709 let _,w1,h1,_ = getpagedim pageno in
4710 let sw = float w1 /. float w
4711 and sh = float h1 /. float h in
4712 let x0s = x0 *. sw
4713 and x1s = x1 *. sw
4714 and y0s = y0 *. sh
4715 and y1s = y1 *. sh in
4716 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
4717 let color = (r, g, b, a) in
4718 if conf.verbose then debugrect rect;
4719 state.rects <- (pageno, color, rect) :: state.rects;
4720 postRedisplay s;
4723 match cl with
4724 | "reload", "" -> reload ()
4725 | "goto", args ->
4726 scan args "%u %f %f"
4727 (fun pageno x y ->
4728 let cmd, _ = state.geomcmds in
4729 if emptystr cmd
4730 then gotopagexy pageno x y
4731 else
4732 let f prevf () =
4733 gotopagexy pageno x y;
4734 prevf ()
4736 state.reprf <- f state.reprf
4738 | "goto1", args -> scan args "%u %f" gotopage
4739 | "gotor", args -> scan args "%S" gotoremote
4740 | "rect", args ->
4741 scan args "%u %u %f %f %f %f"
4742 (fun pageno c x0 y0 x1 y1 ->
4743 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
4744 rectx "rect" pageno color x0 y0 x1 y1;
4746 | "prect", args ->
4747 scan args "%u %f %f %f %f %f %f %f %f"
4748 (fun pageno r g b alpha x0 y0 x1 y1 ->
4749 addrect pageno r g b alpha x0 y0 x1 y1;
4750 postRedisplay "prect"
4752 | "pgoto", args ->
4753 scan args "%u %f %f"
4754 (fun pageno x y ->
4755 let optopaque =
4756 match getopaque pageno with
4757 | Some opaque -> opaque
4758 | None -> ~< E.s
4760 pgoto optopaque pageno x y;
4761 let rec fixx = function
4762 | [] -> ()
4763 | l :: rest ->
4764 if l.pageno = pageno
4765 then gotoxy (state.x - l.pagedispx) state.y
4766 else fixx rest
4768 let layout =
4769 let mult =
4770 match conf.columns with
4771 | Csingle _ | Csplit _ -> 1
4772 | Cmulti ((n, _, _), _) -> n
4774 layout 0 state.y (state.winw * mult) state.winh
4776 fixx layout
4778 | "activatewin", "" -> Wsi.activatewin ()
4779 | "quit", "" -> raise Quit
4780 | "keys", keys ->
4781 begin try
4782 let l = Config.keys_of_string keys in
4783 List.iter (fun (k, m) -> keyboard k m) l
4784 with exn -> adderrfmt "error processing keys" "`%S': %s\n"
4785 cmds @@ exntos exn
4787 | "clearrects", "" ->
4788 Hashtbl.clear state.prects;
4789 postRedisplay "clearrects"
4790 | _ ->
4791 adderrfmt "remote command"
4792 "error processing remote command: %S\n" cmds;
4795 let remote =
4796 let scratch = Bytes.create 80 in
4797 let buf = Buffer.create 80 in
4798 fun fd ->
4799 match tempfailureretry (Unix.read fd scratch 0) 80 with
4800 | exception Unix.Unix_error (Unix.EAGAIN, _, _) -> None
4801 | 0 ->
4802 Unix.close fd;
4803 if Buffer.length buf > 0
4804 then (
4805 let s = Buffer.contents buf in
4806 Buffer.clear buf;
4807 ract s;
4809 None
4810 | n ->
4811 let rec eat ppos =
4812 let nlpos =
4813 match Bytes.index_from scratch ppos '\n' with
4814 | pos -> if pos >= n then -1 else pos
4815 | exception Not_found -> -1
4817 if nlpos >= 0
4818 then (
4819 Buffer.add_subbytes buf scratch ppos (nlpos-ppos);
4820 let s = Buffer.contents buf in
4821 Buffer.clear buf;
4822 ract s;
4823 eat (nlpos+1);
4825 else (
4826 Buffer.add_subbytes buf scratch ppos (n-ppos);
4827 Some fd
4829 in eat 0
4832 let remoteopen path =
4833 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
4834 with exn ->
4835 adderrfmt "remoteopen" "error opening %S: %s" path @@ exntos exn;
4836 None
4839 let () =
4840 Utils.vlogf := (fun s -> if conf.verbose then prerr_endline s else ignore s);
4841 let gcconfig = ref false in
4842 let trimcachepath = ref E.s in
4843 let rcmdpath = ref E.s in
4844 let pageno = ref None in
4845 let openlast = ref false in
4846 let doreap = ref false in
4847 let csspath = ref None in
4848 selfexec := Sys.executable_name;
4849 Arg.parse
4850 (Arg.align
4851 [("-p", Arg.String (fun s -> state.password <- s),
4852 "<password> Set password");
4854 ("-f", Arg.String
4855 (fun s ->
4856 Config.fontpath := s;
4857 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
4859 "<path> Set path to the user interface font");
4861 ("-c", Arg.String
4862 (fun s ->
4863 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
4864 Config.confpath := s),
4865 "<path> Set path to the configuration file");
4867 ("-last", Arg.Set openlast, " Open last document");
4869 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
4870 "<page-number> Jump to page");
4872 ("-tcf", Arg.String (fun s -> trimcachepath := s),
4873 "<path> Set path to the trim cache file");
4875 ("-dest", Arg.String (fun s -> state.nameddest <- s),
4876 "<named-destination> Set named destination");
4878 ("-remote", Arg.String (fun s -> rcmdpath := s),
4879 "<path> Set path to the source of remote commands");
4881 ("-gc", Arg.Set gcconfig, " Collect config garbage");
4883 ("-v", Arg.Unit (fun () ->
4884 Printf.printf
4885 "%s\nconfiguration file: %s\n"
4886 (Help.version ())
4887 Config.defconfpath;
4888 exit 0), " Print version and exit");
4890 ("-css", Arg.String (fun s -> csspath := Some s),
4891 "<path> Set path to the style sheet to use with EPUB/HTML");
4893 ("-origin", Arg.String (fun s -> state.origin <- s),
4894 "<origin> <undocumented>");
4896 ("-no-title", Arg.Set ignoredoctitlte, " ignore document title");
4897 ("-layout-height", Arg.Set_int layouth,
4898 "<height> layout height html/epub/etc (-1, 0, N)");
4901 (fun s -> state.path <- s)
4902 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:");
4904 let histmode = emptystr state.path && not !openlast in
4906 if not (Config.load !openlast)
4907 then dolog "failed to load configuration";
4909 begin match !pageno with
4910 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
4911 | None -> ()
4912 end;
4914 fillhelp ();
4915 if !gcconfig
4916 then (
4917 Config.gc ();
4918 exit 0
4921 let mu =
4922 object (self)
4923 val mutable m_clicks = 0
4924 val mutable m_click_x = 0
4925 val mutable m_click_y = 0
4926 val mutable m_lastclicktime = infinity
4928 method private cleanup =
4929 state.roam <- noroam;
4930 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap
4931 method expose = postRedisplay "expose"
4932 method visible v =
4933 let name =
4934 match v with
4935 | Wsi.Unobscured -> "unobscured"
4936 | Wsi.PartiallyObscured -> "partiallyobscured"
4937 | Wsi.FullyObscured -> "fullyobscured"
4939 vlog "visibility change %s" name
4940 method display = display ()
4941 method map mapped = vlog "mapped %b" mapped
4942 method reshape w h =
4943 self#cleanup;
4944 reshape w h
4945 method mouse b d x y m =
4946 if d && canselect ()
4947 then (
4949 * http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx
4951 m_click_x <- x;
4952 m_click_y <- y;
4953 if b = 1
4954 then (
4955 let t = now () in
4956 if abs x - m_click_x > 10
4957 || abs y - m_click_y > 10
4958 || abs_float (t -. m_lastclicktime) > 0.3
4959 then m_clicks <- 0;
4960 m_clicks <- m_clicks + 1;
4961 m_lastclicktime <- t;
4962 if m_clicks = 1
4963 then (
4964 self#cleanup;
4965 postRedisplay "cleanup";
4966 state.uioh <- state.uioh#button b d x y m;
4968 else state.uioh <- state.uioh#multiclick m_clicks x y m
4970 else (
4971 self#cleanup;
4972 m_clicks <- 0;
4973 m_lastclicktime <- infinity;
4974 state.uioh <- state.uioh#button b d x y m
4977 else state.uioh <- state.uioh#button b d x y m
4978 method motion x y =
4979 state.mpos <- (x, y);
4980 state.uioh <- state.uioh#motion x y
4981 method pmotion x y =
4982 state.mpos <- (x, y);
4983 state.uioh <- state.uioh#pmotion x y
4984 method key k m =
4985 vlog "k=%#x m=%#x" k m;
4986 let mascm = m land (
4987 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
4988 ) in
4989 let keyboard k m =
4990 let x = state.x and y = state.y in
4991 keyboard k m;
4992 if x != state.x || y != state.y then self#cleanup
4994 match state.keystate with
4995 | KSnone ->
4996 let km = k, mascm in
4997 begin
4998 match
4999 let modehash = state.uioh#modehash in
5000 try Hashtbl.find modehash km
5001 with Not_found ->
5002 try Hashtbl.find (findkeyhash conf "global") km
5003 with Not_found -> KMinsrt (k, m)
5004 with
5005 | KMinsrt (k, m) -> keyboard k m
5006 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
5007 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
5009 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
5010 List.iter (fun (k, m) -> keyboard k m) insrt;
5011 state.keystate <- KSnone
5012 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
5013 state.keystate <- KSinto (keys, insrt)
5014 | KSinto _ -> state.keystate <- KSnone
5016 method enter x y =
5017 state.mpos <- (x, y);
5018 state.uioh <- state.uioh#pmotion x y
5019 method leave = state.mpos <- (-1, -1)
5020 method winstate wsl = state.winstate <- wsl
5021 method quit : 'a. 'a = raise Quit
5022 method scroll dx dy = state.uioh <- state.uioh#scroll dx dy
5023 method zoom z x y = state.uioh#zoom z x y
5024 method opendoc path =
5025 state.mode <- View;
5026 state.uioh <- uioh;
5027 postRedisplay "opendoc";
5028 opendoc path state.password
5031 let wsfd, winw, winh = Wsi.init mu conf.cwinw conf.cwinh platform in
5032 state.wsfd <- wsfd;
5034 if not @@ List.exists GlMisc.check_extension
5035 [ "GL_ARB_texture_rectangle"
5036 ; "GL_EXT_texture_recangle"
5037 ; "GL_NV_texture_rectangle" ]
5038 then (dolog "OpenGL does not suppport rectangular textures"; exit 1);
5040 let cs, ss =
5041 match Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0 with
5042 | exception exn ->
5043 dolog "socketpair failed: %s" @@ exntos exn;
5044 exit 1
5045 | (r, w) ->
5046 cloexec r;
5047 cloexec w;
5048 r, w
5051 setcheckers conf.checkers;
5052 begin match !csspath with
5053 | None -> ()
5054 | Some "" -> conf.css <- E.s
5055 | Some path ->
5056 let css = filecontents path in
5057 let l = String.length css in
5058 conf.css <-
5059 if substratis css (l-2) "\r\n"
5060 then String.sub css 0 (l-2)
5061 else (if css.[l-1] = '\n' then String.sub css 0 (l-1) else css)
5062 end;
5063 init cs (
5064 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
5065 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
5066 !Config.fontpath, !trimcachepath
5068 List.iter GlArray.enable [`texture_coord; `vertex];
5069 GlTex.env (`color conf.texturecolor);
5070 state.ss <- ss;
5071 reshape ~firsttime:true winw winh;
5072 state.uioh <- uioh;
5073 if histmode
5074 then (
5075 Wsi.settitle "llpp (history)";
5076 enterhistmode ();
5078 else (
5079 state.text <- "Opening " ^ (mbtoutf8 state.path);
5080 opendoc state.path state.password;
5082 display ();
5083 Wsi.mapwin ();
5084 Wsi.setcursor Wsi.CURSOR_INHERIT;
5085 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
5087 let rec reap () =
5088 match Unix.waitpid [Unix.WNOHANG] ~-1 with
5089 | exception (Unix.Unix_error (Unix.ECHILD, _, _)) -> ()
5090 | exception exn -> dolog "Unix.waitpid: %s" @@ exntos exn
5091 | 0, _ -> ()
5092 | _pid, _status -> reap ()
5094 Sys.set_signal Sys.sigchld (Sys.Signal_handle (fun _ -> doreap := true));
5096 let optrfd =
5097 ref (if nonemptystr !rcmdpath then remoteopen !rcmdpath else None)
5100 let rec loop deadline =
5101 if !doreap
5102 then (
5103 doreap := false;
5104 reap ()
5106 let r = [state.ss; state.wsfd] in
5107 let r =
5108 match !optrfd with
5109 | None -> r
5110 | Some fd -> fd :: r
5112 if !redisplay
5113 then (
5114 Glutils.redisplay := false;
5115 display ();
5117 let timeout =
5118 let now = now () in
5119 if deadline > now
5120 then (
5121 if deadline = infinity
5122 then ~-.1.0
5123 else max 0.0 (deadline -. now)
5125 else 0.0
5127 let r, _, _ =
5128 try Unix.select r [] [] timeout
5129 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
5131 begin match r with
5132 | [] ->
5133 let newdeadline =
5134 match state.autoscroll with
5135 | Some step when step != 0 ->
5136 if state.slideshow land 1 = 1
5137 then (
5138 if state.slideshow land 2 = 0
5139 then state.slideshow <- state.slideshow lor 2
5140 else if step < 0 then prevpage () else nextpage ();
5141 deadline +. (float (abs step))
5143 else
5144 let y = state.y + step in
5145 let fy = if conf.maxhfit then state.winh else 0 in
5146 let y =
5147 if y < 0
5148 then state.maxy - fy
5149 else if y >= state.maxy - fy then 0 else y
5151 gotoxy state.x y;
5152 deadline +. 0.01
5153 | _ -> infinity
5155 loop newdeadline
5157 | l ->
5158 let rec checkfds = function
5159 | [] -> ()
5160 | fd :: rest when fd = state.ss ->
5161 let cmd = rcmd state.ss in
5162 act cmd;
5163 checkfds rest
5165 | fd :: rest when fd = state.wsfd ->
5166 Wsi.readresp fd;
5167 checkfds rest
5169 | fd :: rest when Some fd = !optrfd ->
5170 begin match remote fd with
5171 | None -> optrfd := remoteopen !rcmdpath;
5172 | opt -> optrfd := opt
5173 end;
5174 checkfds rest
5176 | _ :: rest ->
5177 dolog "select returned unknown descriptor";
5178 checkfds rest
5180 checkfds l;
5181 let newdeadline =
5182 let deadline1 =
5183 if deadline = infinity
5184 then now () +. 0.01
5185 else deadline
5187 match state.autoscroll with
5188 | Some step when step != 0 -> deadline1
5189 | _ -> infinity
5191 loop newdeadline
5192 end;
5194 match loop infinity with
5195 | exception Quit ->
5196 Config.save leavebirdseye;
5197 if hasunsavedchanges ()
5198 then save ()
5199 | _ -> error "umpossible - infinity reached"