Fix pivotzoom
[llpp.git] / main.ml
blobc903e8a48830d3085e70c1781bfbea6beccc69c7
1 open Utils;;
2 open Config;;
4 exception Quit;;
6 external init : Unix.file_descr -> params -> unit = "ml_init";;
7 external seltext : opaque -> (int * int * int * int) -> unit = "ml_seltext";;
8 external hassel : opaque -> bool = "ml_hassel";;
9 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
10 external getpdimrect : int -> float array = "ml_getpdimrect";;
11 external whatsunder : opaque -> int -> int -> under = "ml_whatsunder";;
12 external markunder : opaque -> int -> int -> mark -> bool = "ml_markunder";;
13 external clearmark : opaque -> unit = "ml_clearmark";;
14 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
15 external getmaxw : unit -> float = "ml_getmaxw";;
16 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
17 external measurestr : int -> string -> float = "ml_measure_string";;
18 external postprocess :
19 opaque -> int -> int -> int -> (int * string * int) -> int
20 = "ml_postprocess";;
21 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
22 external setaalevel : int -> unit = "ml_setaalevel";;
23 external realloctexts : int -> bool = "ml_realloctexts";;
24 external findlink : opaque -> linkdir -> link = "ml_findlink";;
25 external getlink : opaque -> int -> under = "ml_getlink";;
26 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
27 external getlinkcount : opaque -> int = "ml_getlinkcount";;
28 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links";;
29 external getpbo : width -> height -> colorspace -> opaque = "ml_getpbo";;
30 external freepbo : opaque -> unit = "ml_freepbo";;
31 external unmappbo : opaque -> unit = "ml_unmappbo";;
32 external bousable : unit -> bool = "ml_bo_usable";;
33 external unproject : opaque -> int -> int -> (int * int) option
34 = "ml_unproject";;
35 external project : opaque -> int -> int -> float -> float -> (float * float)
36 = "ml_project";;
37 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
38 external rectofblock : opaque -> int -> int -> float array option
39 = "ml_rectofblock";;
40 external begintiles : unit -> unit = "ml_begintiles";;
41 external endtiles : unit -> unit = "ml_endtiles";;
42 external addannot : opaque -> int -> int -> string -> unit = "ml_addannot";;
43 external modannot : opaque -> slinkindex -> string -> unit = "ml_modannot";;
44 external delannot : opaque -> slinkindex -> unit = "ml_delannot";;
45 external hasunsavedchanges : unit -> bool = "ml_hasunsavedchanges";;
46 external savedoc : string -> unit = "ml_savedoc";;
47 external getannotcontents : opaque -> slinkindex -> string
48 = "ml_getannotcontents";;
49 external drawprect : opaque -> int -> int -> float array -> unit =
50 "ml_drawprect";;
51 external wcmd : Unix.file_descr -> bytes -> int -> unit = "ml_wcmd";;
52 external rcmd : Unix.file_descr -> string = "ml_rcmd";;
54 let selfexec = ref E.s;;
55 let opengl_has_pbo = ref false;;
57 let drawstring size x y s =
58 Gl.enable `blend;
59 Gl.enable `texture_2d;
60 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
61 ignore (drawstr size x y s);
62 Gl.disable `blend;
63 Gl.disable `texture_2d;
66 let drawstring1 size x y s =
67 drawstr size x y s;
70 let drawstring2 size x y fmt =
71 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
74 let _debugl l =
75 dolog "l %d dim=%d {" l.pageno l.pagedimno;
76 dolog " WxH %dx%d" l.pagew l.pageh;
77 dolog " vWxH %dx%d" l.pagevw l.pagevh;
78 dolog " pagex,y %d,%d" l.pagex l.pagey;
79 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
80 dolog " column %d" l.pagecol;
81 dolog "}";
84 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
85 dolog "rect {";
86 dolog " x0,y0=(% f, % f)" x0 y0;
87 dolog " x1,y1=(% f, % f)" x1 y1;
88 dolog " x2,y2=(% f, % f)" x2 y2;
89 dolog " x3,y3=(% f, % f)" x3 y3;
90 dolog "}";
93 let isbirdseye = function
94 | Birdseye _ -> true
95 | Textentry _
96 | View
97 | LinkNav _ -> false
100 let istextentry = function
101 | Textentry _ -> true
102 | Birdseye _
103 | View
104 | LinkNav _ -> false
107 let wtmode = ref false;;
108 let cxack = ref false;;
110 let pgscale h = truncate (float h *. conf.pgscale);;
112 let hscrollh () =
113 if state.uioh#alwaysscrolly || ((conf.scrollb land scrollbhv != 0)
114 && (state.w > state.winw))
115 then conf.scrollbw
116 else 0
119 let vscrollw () =
120 if state.uioh#alwaysscrolly || ((conf.scrollb land scrollbvv != 0)
121 && (state.maxy > state.winh))
122 then conf.scrollbw
123 else 0
126 let vscrollhit x =
127 if conf.leftscroll
128 then x < vscrollw ()
129 else x > state.winw - vscrollw ()
132 let setfontsize n =
133 fstate.fontsize <- n;
134 fstate.wwidth <- measurestr fstate.fontsize "w";
135 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
138 let vlog fmt =
139 if conf.verbose
140 then dolog fmt
141 else Printf.kprintf ignore fmt
144 let launchpath () =
145 if emptystr conf.pathlauncher
146 then dolog "%s" state.path
147 else (
148 let command = Str.global_replace percentsre state.path conf.pathlauncher in
149 match spawn command [] with
150 | _pid -> ()
151 | (exception exn) ->
152 dolog "failed to execute `%s': %s" command @@ exntos exn
156 module G =
157 struct
158 let postRedisplay who =
159 vlog "redisplay for [%S]" who;
160 state.redisplay <- true;
162 end;;
164 let getopaque pageno =
165 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
166 with Not_found -> None
169 let pagetranslatepoint l x y =
170 let dy = y - l.pagedispy in
171 let y = dy + l.pagey in
172 let dx = x - l.pagedispx in
173 let x = dx + l.pagex in
174 (x, y);
177 let onppundermouse g x y d =
178 let rec f = function
179 | l :: rest ->
180 begin match getopaque l.pageno with
181 | Some opaque ->
182 let x0 = l.pagedispx in
183 let x1 = x0 + l.pagevw in
184 let y0 = l.pagedispy in
185 let y1 = y0 + l.pagevh in
186 if y >= y0 && y <= y1 && x >= x0 && x <= x1
187 then
188 let px, py = pagetranslatepoint l x y in
189 match g opaque l px py with
190 | Some res -> res
191 | None -> f rest
192 else f rest
193 | _ ->
194 f rest
196 | [] -> d
198 f state.layout
201 let getunder x y =
202 let g opaque l px py =
203 if state.bzoom
204 then (
205 match rectofblock opaque px py with
206 | Some [|x0;x1;y0;y1|] ->
207 let rect = (x0, y0, x1, y0, x1, y1, x0, y1) in
208 let color = (0.0, 0.0, 1.0 /. (l.pageno mod 3 |> float), 0.5) in
209 state.rects <- [l.pageno, color, rect];
210 G.postRedisplay "getunder";
211 | _otherwise -> ()
213 let under = whatsunder opaque px py in
214 if under = Unone then None else Some under
216 onppundermouse g x y Unone
219 let unproject x y =
220 let g opaque l x y =
221 match unproject opaque x y with
222 | Some (x, y) -> Some (Some (opaque, l.pageno, x, y))
223 | None -> None
225 onppundermouse g x y None;
228 let showtext c s =
229 state.text <- Printf.sprintf "%c%s" c s;
230 G.postRedisplay "showtext";
233 let impmsg fmt =
234 Format.ksprintf (fun s -> showtext '!' s) fmt;
237 let pipesel opaque cmd =
238 if hassel opaque
239 then
240 match Unix.pipe () with
241 | (exception exn) -> dolog "pipesel cannot create pipe: %S" @@ exntos exn;
242 | (r, w) ->
243 let doclose what fd =
244 Ne.clo fd (fun msg -> dolog "%s close failed: %s" what msg)
246 let pid =
247 try spawn cmd [r, 0; w, -1]
248 with exn ->
249 dolog "cannot execute %S: %s" cmd @@ exntos exn;
252 if pid > 0
253 then (
254 copysel w opaque;
255 G.postRedisplay "pipesel";
257 else doclose "pipesel pipe/w" w;
258 doclose "pipesel pipe/r" r;
261 let paxunder x y =
262 let g opaque l px py =
263 if markunder opaque px py conf.paxmark
264 then (
265 Some (fun () ->
266 match getopaque l.pageno with
267 | None -> ()
268 | Some opaque -> pipesel opaque conf.paxcmd
271 else None
273 G.postRedisplay "paxunder";
274 if conf.paxmark = Mark_page
275 then
276 List.iter (fun l ->
277 match getopaque l.pageno with
278 | None -> ()
279 | Some opaque -> clearmark opaque) state.layout;
280 state.roam <- onppundermouse g x y (fun () -> impmsg "whoopsie daisy");
283 let selstring s =
284 match Unix.pipe () with
285 | (exception exn) -> impmsg "pipe failed: %s" @@ exntos exn
286 | (r, w) ->
287 let clo cap fd =
288 Ne.clo fd (fun msg -> impmsg "failed to close %s: %s" cap msg)
290 let pid =
291 try spawn conf.selcmd [r, 0; w, -1]
292 with exn ->
293 impmsg "failed to execute %s: %s" conf.selcmd @@ exntos exn;
296 if pid > 0
297 then (
299 let l = String.length s in
300 let bytes = Bytes.unsafe_of_string s in
301 let n = tempfailureretry (Unix.write w bytes 0) l in
302 if n != l
303 then impmsg "failed to write %d characters to sel pipe, wrote %d"
305 with exn ->
306 impmsg "failed to write to sel pipe: %s" @@ exntos exn
308 else dolog "%s" s;
309 clo "selstring pipe/r" r;
310 clo "selstring pipe/w" w;
313 let undertext ?(nopath=false) = function
314 | Unone -> "none"
315 | Ulinkuri s -> s
316 | Ulinkgoto (pageno, _) ->
317 if nopath
318 then "page " ^ string_of_int (pageno+1)
319 else Printf.sprintf "%s: page %d" state.path (pageno+1)
320 | Utext s -> "font: " ^ s
321 | Uunexpected s -> "unexpected: " ^ s
322 | Ulaunch s -> "launch: " ^ s
323 | Unamed s -> "named: " ^ s
324 | Uremote (filename, pageno) ->
325 Printf.sprintf "%s: page %d" filename (pageno+1)
326 | Uremotedest (filename, destname) ->
327 Printf.sprintf "%s: destination %S" filename destname
328 | Uannotation (opaque, slinkindex) ->
329 "annotation: " ^ getannotcontents opaque slinkindex
332 let updateunder x y =
333 match getunder x y with
334 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
335 | Ulinkuri uri ->
336 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
337 Wsi.setcursor Wsi.CURSOR_INFO
338 | Ulinkgoto (pageno, _) ->
339 if conf.underinfo
340 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
341 Wsi.setcursor Wsi.CURSOR_INFO
342 | Utext s ->
343 if conf.underinfo then showtext 'f' ("ont: " ^ s);
344 Wsi.setcursor Wsi.CURSOR_TEXT
345 | Uunexpected s ->
346 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
347 Wsi.setcursor Wsi.CURSOR_INHERIT
348 | Ulaunch s ->
349 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
350 Wsi.setcursor Wsi.CURSOR_INHERIT
351 | Unamed s ->
352 if conf.underinfo then showtext 'n' ("amed: " ^ s);
353 Wsi.setcursor Wsi.CURSOR_INHERIT
354 | Uremote (filename, pageno) ->
355 if conf.underinfo then showtext 'r'
356 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
357 Wsi.setcursor Wsi.CURSOR_INFO
358 | Uremotedest (filename, destname) ->
359 if conf.underinfo then showtext 'r'
360 (Printf.sprintf "emote destination: %s (%S)" filename destname);
361 Wsi.setcursor Wsi.CURSOR_INFO
362 | Uannotation _ ->
363 if conf.underinfo then showtext 'a' "nnotation";
364 Wsi.setcursor Wsi.CURSOR_INFO
367 let showlinktype under =
368 if conf.underinfo && under != Unone
369 then showtext ' ' @@ undertext under
372 let intentry_with_suffix text key =
373 let text =
374 if key >= 32 && key < 127
375 then
376 let c = Char.chr key in
377 match c with
378 | '0' .. '9' ->
379 addchar text c
381 | 'k' | 'm' | 'g' | 'K' | 'M' | 'G' ->
382 addchar text @@ asciilower c
383 | _ ->
384 state.text <- Printf.sprintf "invalid key (%d, `%c')" key c;
385 text
386 else (
387 state.text <- Printf.sprintf "invalid key %d" key;
388 text
391 TEcont text
394 let wcmd fmt =
395 let b = Buffer.create 16 in
396 Buffer.add_string b "llll";
397 Printf.kbprintf
398 (fun b ->
399 let b = Buffer.to_bytes b in
400 wcmd state.ss b @@ Bytes.length b
401 ) b fmt
404 let nogeomcmds cmds =
405 match cmds with
406 | s, [] -> emptystr s
407 | _ -> false
410 let layoutN ((columns, coverA, coverB), b) x y sw sh =
411 let rec fold accu n =
412 if n = Array.length b
413 then accu
414 else
415 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
416 if (vy - y) > sh &&
417 (n = coverA - 1
418 || n = state.pagecount - coverB
419 || (n - coverA) mod columns = columns - 1)
420 then accu
421 else
422 let accu =
423 if vy + h > y
424 then
425 let pagey = max 0 (y - vy) in
426 let pagedispy = if pagey > 0 then 0 else vy - y in
427 let pagedispx, pagex =
428 let pdx =
429 if n = coverA - 1 || n = state.pagecount - coverB
430 then x + (sw - w) / 2
431 else dx + xoff + x
433 if pdx < 0
434 then 0, -pdx
435 else pdx, 0
437 let pagevw =
438 let vw = sw - pagedispx in
439 let pw = w - pagex in
440 min vw pw
442 let pagevh = min (h - pagey) (sh - pagedispy) in
443 if pagevw > 0 && pagevh > 0
444 then
445 let e =
446 { pageno = n
447 ; pagedimno = pdimno
448 ; pagew = w
449 ; pageh = h
450 ; pagex = pagex
451 ; pagey = pagey
452 ; pagevw = pagevw
453 ; pagevh = pagevh
454 ; pagedispx = pagedispx
455 ; pagedispy = pagedispy
456 ; pagecol = 0
459 e :: accu
460 else
461 accu
462 else
463 accu
465 fold accu (n+1)
467 if Array.length b = 0
468 then []
469 else List.rev (fold [] (page_of_y y))
472 let layoutS (columns, b) x y sw sh =
473 let rec fold accu n =
474 if n = Array.length b
475 then accu
476 else
477 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
478 if (vy - y) > sh
479 then accu
480 else
481 let accu =
482 if vy + pageh > y
483 then
484 let x = xoff + x in
485 let pagey = max 0 (y - vy) in
486 let pagedispy = if pagey > 0 then 0 else vy - y in
487 let pagedispx, pagex =
488 if px = 0
489 then (
490 if x < 0
491 then 0, -x
492 else x, 0
494 else (
495 let px = px - x in
496 if px < 0
497 then -px, 0
498 else 0, px
501 let pagecolw = pagew/columns in
502 let pagedispx =
503 if pagecolw < sw
504 then pagedispx + ((sw - pagecolw) / 2)
505 else pagedispx
507 let pagevw =
508 let vw = sw - pagedispx in
509 let pw = pagew - pagex in
510 min vw pw
512 let pagevw = min pagevw pagecolw in
513 let pagevh = min (pageh - pagey) (sh - pagedispy) in
514 if pagevw > 0 && pagevh > 0
515 then
516 let e =
517 { pageno = n/columns
518 ; pagedimno = pdimno
519 ; pagew = pagew
520 ; pageh = pageh
521 ; pagex = pagex
522 ; pagey = pagey
523 ; pagevw = pagevw
524 ; pagevh = pagevh
525 ; pagedispx = pagedispx
526 ; pagedispy = pagedispy
527 ; pagecol = n mod columns
530 e :: accu
531 else
532 accu
533 else
534 accu
536 fold accu (n+1)
538 List.rev (fold [] 0)
541 let layout x y sw sh =
542 if nogeomcmds state.geomcmds
543 then
544 match conf.columns with
545 | Csingle b -> layoutN ((1, 0, 0), b) x y sw sh
546 | Cmulti c -> layoutN c x y sw sh
547 | Csplit s -> layoutS s x y sw sh
548 else []
551 let clamp incr =
552 let y = state.y + incr in
553 let y = max 0 y in
554 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
558 let itertiles l f =
559 let tilex = l.pagex mod conf.tilew in
560 let tiley = l.pagey mod conf.tileh in
562 let col = l.pagex / conf.tilew in
563 let row = l.pagey / conf.tileh in
565 let rec rowloop row y0 dispy h =
566 if h = 0
567 then ()
568 else (
569 let dh = conf.tileh - y0 in
570 let dh = min h dh in
571 let rec colloop col x0 dispx w =
572 if w = 0
573 then ()
574 else (
575 let dw = conf.tilew - x0 in
576 let dw = min w dw in
577 f col row dispx dispy x0 y0 dw dh;
578 colloop (col+1) 0 (dispx+dw) (w-dw)
581 colloop col tilex l.pagedispx l.pagevw;
582 rowloop (row+1) 0 (dispy+dh) (h-dh)
585 if l.pagevw > 0 && l.pagevh > 0
586 then rowloop row tiley l.pagedispy l.pagevh;
589 let gettileopaque l col row =
590 let key =
591 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
593 try Some (Hashtbl.find state.tilemap key)
594 with Not_found -> None
597 let puttileopaque l col row gen colorspace angle opaque size elapsed =
598 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
599 Hashtbl.add state.tilemap key (opaque, size, elapsed)
602 let filledrect2 x0 y0 x1 y1 x2 y2 x3 y3 =
603 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x1; y1; x2; y2; x3; y3 |];
604 GlArray.vertex `two state.vraw;
605 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
608 let filledrect1 x0 y0 x1 y1 = filledrect2 x0 y0 x0 y1 x1 y0 x1 y1;;
610 let filledrect x0 y0 x1 y1 =
611 GlArray.disable `texture_coord;
612 filledrect1 x0 y0 x1 y1;
613 GlArray.enable `texture_coord;
616 let linerect x0 y0 x1 y1 =
617 GlArray.disable `texture_coord;
618 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y1; x1; y0 |];
619 GlArray.vertex `two state.vraw;
620 GlArray.draw_arrays `line_loop ~first:0 ~count:4;
621 GlArray.enable `texture_coord;
624 let drawtiles l color =
625 GlDraw.color color;
626 begintiles ();
627 let f col row x y tilex tiley w h =
628 match gettileopaque l col row with
629 | Some (opaque, _, t) ->
630 let params = x, y, w, h, tilex, tiley in
631 if conf.invert
632 then GlTex.env (`mode `blend);
633 drawtile params opaque;
634 if conf.invert
635 then GlTex.env (`mode `modulate);
636 if conf.debug
637 then (
638 endtiles ();
639 let s = Printf.sprintf
640 "%d[%d,%d] %f sec"
641 l.pageno col row t
643 let w = measurestr fstate.fontsize s in
644 GlDraw.color (0.0, 0.0, 0.0);
645 filledrect (float (x-2))
646 (float (y-2))
647 (float (x+2) +. w)
648 (float (y + fstate.fontsize + 2));
649 GlDraw.color color;
650 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
651 begintiles ();
654 | None ->
655 endtiles ();
656 let w =
657 let lw = state.winw - x in
658 min lw w
659 and h =
660 let lh = state.winh - y in
661 min lh h
663 if conf.invert
664 then GlTex.env (`mode `blend);
665 begin match state.checkerstexid with
666 | Some id ->
667 Gl.enable `texture_2d;
668 GlTex.bind_texture ~target:`texture_2d id;
669 let x0 = float x
670 and y0 = float y
671 and x1 = float (x+w)
672 and y1 = float (y+h) in
674 let tw = float w /. 16.0
675 and th = float h /. 16.0 in
676 let tx0 = float tilex /. 16.0
677 and ty0 = float tiley /. 16.0 in
678 let tx1 = tx0 +. tw
679 and ty1 = ty0 +. th in
680 Raw.sets_float state.vraw ~pos:0
681 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
682 Raw.sets_float state.traw ~pos:0
683 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
684 GlArray.vertex `two state.vraw;
685 GlArray.tex_coord `two state.traw;
686 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
687 Gl.disable `texture_2d;
689 | None ->
690 GlDraw.color (1.0, 1.0, 1.0);
691 filledrect (float x) (float y) (float (x+w)) (float (y+h));
692 end;
693 if conf.invert
694 then GlTex.env (`mode `modulate);
695 if w > 128 && h > fstate.fontsize + 10
696 then (
697 let c = if conf.invert then 1.0 else 0.0 in
698 GlDraw.color (c, c, c);
699 let c, r =
700 if conf.verbose
701 then (col*conf.tilew, row*conf.tileh)
702 else col, row
704 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
706 GlDraw.color color;
707 begintiles ();
709 itertiles l f;
710 endtiles ();
713 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
715 let tilevisible1 l x y =
716 let ax0 = l.pagex
717 and ax1 = l.pagex + l.pagevw
718 and ay0 = l.pagey
719 and ay1 = l.pagey + l.pagevh in
721 let bx0 = x
722 and by0 = y in
723 let bx1 = min (bx0 + conf.tilew) l.pagew
724 and by1 = min (by0 + conf.tileh) l.pageh in
726 let rx0 = max ax0 bx0
727 and ry0 = max ay0 by0
728 and rx1 = min ax1 bx1
729 and ry1 = min ay1 by1 in
731 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
732 nonemptyintersection
735 let tilevisible layout n x y =
736 let rec findpageinlayout m = function
737 | l :: rest when l.pageno = n ->
738 tilevisible1 l x y || (
739 match conf.columns with
740 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
741 | Csplit _
742 | Csingle _
743 | Cmulti _ -> false
745 | _ :: rest -> findpageinlayout 0 rest
746 | [] -> false
748 findpageinlayout 0 layout;
751 let tileready l x y =
752 tilevisible1 l x y &&
753 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
756 let tilepage n p layout =
757 let rec loop = function
758 | l :: rest ->
759 if l.pageno = n
760 then
761 let f col row _ _ _ _ _ _ =
762 if state.currently = Idle
763 then
764 match gettileopaque l col row with
765 | Some _ -> ()
766 | None ->
767 let x = col*conf.tilew
768 and y = row*conf.tileh in
769 let w =
770 let w = l.pagew - x in
771 min w conf.tilew
773 let h =
774 let h = l.pageh - y in
775 min h conf.tileh
777 let pbo =
778 if conf.usepbo
779 then getpbo w h conf.colorspace
780 else ~< "0"
782 wcmd "tile %s %d %d %d %d %s"
783 (~> p) x y w h (~> pbo);
784 state.currently <-
785 Tiling (
786 l, p, conf.colorspace, conf.angle,
787 state.gen, col, row, conf.tilew, conf.tileh
790 itertiles l f;
791 else
792 loop rest
794 | [] -> ()
796 if nogeomcmds state.geomcmds
797 then loop layout;
800 let preloadlayout x y sw sh =
801 let y = if y < sh then 0 else y - sh in
802 let x = min 0 (x + sw) in
803 let h = sh*3 in
804 let w = sw*3 in
805 layout x y w h;
808 let load pages =
809 let rec loop pages =
810 if state.currently != Idle
811 then ()
812 else
813 match pages with
814 | l :: rest ->
815 begin match getopaque l.pageno with
816 | None ->
817 wcmd "page %d %d" l.pageno l.pagedimno;
818 state.currently <- Loading (l, state.gen);
819 | Some opaque ->
820 tilepage l.pageno opaque pages;
821 loop rest
822 end;
823 | _ -> ()
825 if nogeomcmds state.geomcmds
826 then loop pages
829 let preload pages =
830 load pages;
831 if conf.preload && state.currently = Idle
832 then load (preloadlayout state.x state.y state.winw state.winh);
835 let layoutready layout =
836 let rec fold all ls =
837 all && match ls with
838 | l :: rest ->
839 let seen = ref false in
840 let allvisible = ref true in
841 let foo col row _ _ _ _ _ _ =
842 seen := true;
843 allvisible := !allvisible &&
844 begin match gettileopaque l col row with
845 | Some _ -> true
846 | None -> false
849 itertiles l foo;
850 fold (!seen && !allvisible) rest
851 | [] -> true
853 let alltilesvisible = fold true layout in
854 alltilesvisible;
857 let gotoxy x y =
858 let y = bound y 0 state.maxy in
859 let y, layout, proceed =
860 match conf.maxwait with
861 | Some time when state.ghyll == noghyll ->
862 begin match state.throttle with
863 | None ->
864 let layout = layout x y state.winw state.winh in
865 let ready = layoutready layout in
866 if not ready
867 then (
868 load layout;
869 state.throttle <- Some (layout, y, now ());
871 else G.postRedisplay "gotoxy showall (None)";
872 y, layout, ready
873 | Some (_, _, started) ->
874 let dt = now () -. started in
875 if dt > time
876 then (
877 state.throttle <- None;
878 let layout = layout x y state.winw state.winh in
879 load layout;
880 G.postRedisplay "maxwait";
881 y, layout, true
883 else -1, [], false
886 | _ ->
887 let layout = layout x y state.winw state.winh in
888 if not !wtmode || layoutready layout
889 then G.postRedisplay "gotoxy ready";
890 y, layout, true
892 if proceed
893 then (
894 state.x <- x;
895 state.y <- y;
896 state.layout <- layout;
897 begin match state.mode with
898 | LinkNav ln ->
899 begin match ln with
900 | Ltexact (pageno, linkno) ->
901 let rec loop = function
902 | [] ->
903 state.mode <- LinkNav (Ltgendir 0)
904 | l :: _ when l.pageno = pageno ->
905 begin match getopaque pageno with
906 | None -> state.mode <- LinkNav (Ltnotready (pageno, 0))
907 | Some opaque ->
908 let x0, y0, x1, y1 = getlinkrect opaque linkno in
909 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
910 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
911 then state.mode <- LinkNav (Ltgendir 0)
913 | _ :: rest -> loop rest
915 loop layout
916 | Ltnotready _ | Ltgendir _ -> ()
918 | Birdseye _
919 | Textentry _
920 | View -> ()
921 end;
922 begin match state.mode with
923 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
924 if not (pagevisible layout pageno)
925 then (
926 match state.layout with
927 | [] -> ()
928 | l :: _ ->
929 state.mode <- Birdseye (
930 conf, leftx, l.pageno, hooverpageno, anchor
933 | LinkNav lt ->
934 begin match lt with
935 | Ltnotready (_, dir)
936 | Ltgendir dir ->
937 let linknav =
938 let rec loop = function
939 | [] -> lt
940 | l :: rest ->
941 match getopaque l.pageno with
942 | None -> Ltnotready (l.pageno, dir)
943 | Some opaque ->
944 let link =
945 let ld =
946 if dir = 0
947 then LDfirstvisible (l.pagex, l.pagey, dir)
948 else (
949 if dir > 0 then LDfirst else LDlast
952 findlink opaque ld
954 match link with
955 | Lnotfound -> loop rest
956 | Lfound n ->
957 showlinktype (getlink opaque n);
958 Ltexact (l.pageno, n)
960 loop state.layout
962 state.mode <- LinkNav linknav
963 | Ltexact _ -> ()
965 | Textentry _
966 | View -> ()
967 end;
968 preload layout;
970 state.ghyll <- noghyll;
971 if conf.updatecurs
972 then (
973 let mx, my = state.mpos in
974 updateunder mx my;
978 let conttiling pageno opaque =
979 tilepage pageno opaque
980 (if conf.preload
981 then preloadlayout state.x state.y state.winw state.winh
982 else state.layout)
985 let gotoxy_and_clear_text x y =
986 if not conf.verbose then state.text <- E.s;
987 gotoxy x y;
990 let getanchory (n, top, dtop) =
991 let y, h = getpageyh n in
992 if conf.presentation
993 then
994 let ips = calcips h in
995 y + truncate (top*.float h -. dtop*.float ips) + ips;
996 else
997 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1000 let gotoanchor anchor =
1001 gotoxy state.x (getanchory anchor);
1004 let addnav () =
1005 cbput state.hists.nav (getanchor ());
1008 let getnav dir =
1009 let anchor = cbgetc state.hists.nav dir in
1010 getanchory anchor;
1013 let gotoghyll1 single y =
1014 let scroll f n a b =
1015 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1016 let snake f a b =
1017 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1018 if f < a
1019 then s (float f /. float a)
1020 else (
1021 if f > b
1022 then 1.0 -. s ((float (f-b) /. float (n-b)))
1023 else 1.0
1026 snake f a b
1027 and summa n a b =
1028 let ins = float a *. 0.5
1029 and outs = float (n-b) *. 0.5 in
1030 let ones = b - a in
1031 ins +. outs +. float ones
1033 let rec set nab y sy =
1034 let (_N, _A, _B), y =
1035 if single
1036 then
1037 let scl = if y > sy then 2 else -2 in
1038 let _N, _, _ = nab in
1039 (_N,0,_N), y+conf.scrollstep*scl
1040 else nab,y in
1041 let sum = summa _N _A _B in
1042 let dy = float (y - sy) in
1043 state.ghyll <- (
1044 let rec gf n y1 o =
1045 if n >= _N
1046 then state.ghyll <- noghyll
1047 else
1048 let go n =
1049 let s = scroll n _N _A _B in
1050 let y1 = y1 +. ((s *. dy) /. sum) in
1051 gotoxy_and_clear_text state.x (truncate y1);
1052 state.ghyll <- gf (n+1) y1;
1054 match o with
1055 | None -> go n
1056 | Some y' when single -> set nab y' state.y
1057 | Some y' -> set (_N/2, 1, 1) y' state.y
1059 gf 0 (float state.y)
1062 match conf.ghyllscroll with
1063 | Some nab when not conf.presentation ->
1064 if state.ghyll == noghyll
1065 then set nab y state.y
1066 else state.ghyll (Some y)
1067 | _ ->
1068 gotoxy_and_clear_text state.x y
1071 let gotoghyll = gotoghyll1 false;;
1073 let gotopage n top =
1074 let y, h = getpageyh n in
1075 let y = y + (truncate (top *. float h)) in
1076 gotoghyll y
1079 let gotopage1 n top =
1080 let y = getpagey n in
1081 let y = y + top in
1082 gotoghyll y
1085 let invalidate s f =
1086 state.redisplay <- false;
1087 state.layout <- [];
1088 state.pdims <- [];
1089 state.rects <- [];
1090 state.rects1 <- [];
1091 match state.geomcmds with
1092 | ps, [] when emptystr ps ->
1093 f ();
1094 state.geomcmds <- s, [];
1096 | ps, [] ->
1097 state.geomcmds <- ps, [s, f];
1099 | ps, (s', _) :: rest when s' = s ->
1100 state.geomcmds <- ps, ((s, f) :: rest);
1102 | ps, cmds ->
1103 state.geomcmds <- ps, ((s, f) :: cmds);
1106 let flushpages () =
1107 Hashtbl.iter (fun _ opaque ->
1108 wcmd "freepage %s" (~> opaque);
1109 ) state.pagemap;
1110 Hashtbl.clear state.pagemap;
1113 let flushtiles () =
1114 if not (Queue.is_empty state.tilelru)
1115 then (
1116 Queue.iter (fun (k, p, s) ->
1117 wcmd "freetile %s" (~> p);
1118 state.memused <- state.memused - s;
1119 Hashtbl.remove state.tilemap k;
1120 ) state.tilelru;
1121 state.uioh#infochanged Memused;
1122 Queue.clear state.tilelru;
1124 load state.layout;
1127 let stateh h =
1128 let h = truncate (float h*.conf.zoom) in
1129 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
1130 h - d
1133 let opendoc path password =
1134 state.path <- path;
1135 state.password <- password;
1136 state.gen <- state.gen + 1;
1137 state.docinfo <- [];
1138 state.outlines <- [||];
1140 flushpages ();
1141 setaalevel conf.aalevel;
1142 let titlepath =
1143 if emptystr state.origin
1144 then path
1145 else state.origin
1147 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename titlepath)));
1148 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password;
1149 invalidate "reqlayout"
1150 (fun () ->
1151 wcmd "reqlayout %d %d %d %s\000"
1152 conf.angle (FMTE.to_int conf.fitmodel)
1153 (stateh state.winh) state.nameddest
1157 let reload () =
1158 state.anchor <- getanchor ();
1159 opendoc state.path state.password;
1162 let scalecolor c =
1163 let c = c *. conf.colorscale in
1164 (c, c, c);
1167 let scalecolor2 (r, g, b) =
1168 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1171 let docolumns columns =
1172 match columns with
1173 | Csingle _ ->
1174 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1175 let rec loop pageno pdimno pdim y ph pdims =
1176 if pageno = state.pagecount
1177 then ()
1178 else
1179 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1180 match pdims with
1181 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1182 pdimno+1, pdim, rest
1183 | _ ->
1184 pdimno, pdim, pdims
1186 let x = max 0 (((state.winw - w) / 2) - xoff) in
1187 let y = y +
1188 (if conf.presentation
1189 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1190 else (if pageno = 0 then 0 else conf.interpagespace)
1193 a.(pageno) <- (pdimno, x, y, pdim);
1194 loop (pageno+1) pdimno pdim (y + h) h pdims
1196 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1197 conf.columns <- Csingle a;
1199 | Cmulti ((columns, coverA, coverB), _) ->
1200 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1201 let rec loop pageno pdimno pdim x y rowh pdims =
1202 let rec fixrow m = if m = pageno then () else
1203 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1204 if h < rowh
1205 then (
1206 let y = y + (rowh - h) / 2 in
1207 a.(m) <- (pdimno, x, y, pdim);
1209 fixrow (m+1)
1211 if pageno = state.pagecount
1212 then fixrow (((pageno - 1) / columns) * columns)
1213 else
1214 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1215 match pdims with
1216 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1217 pdimno+1, pdim, rest
1218 | _ ->
1219 pdimno, pdim, pdims
1221 let x, y, rowh' =
1222 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1223 then (
1224 let x = (state.winw - w) / 2 in
1225 let ips =
1226 if conf.presentation then calcips h else conf.interpagespace in
1227 x, y + ips + rowh, h
1229 else (
1230 if (pageno - coverA) mod columns = 0
1231 then (
1232 let x = max 0 (state.winw - state.w) / 2 in
1233 let y =
1234 if conf.presentation
1235 then
1236 let ips = calcips h in
1237 y + (if pageno = 0 then 0 else calcips rowh + ips)
1238 else
1239 y + (if pageno = 0 then 0 else conf.interpagespace)
1241 x, y + rowh, h
1243 else x, y, max rowh h
1246 let y =
1247 if pageno > 1 && (pageno - coverA) mod columns = 0
1248 then (
1249 let y =
1250 if pageno = columns && conf.presentation
1251 then (
1252 let ips = calcips rowh in
1253 for i = 0 to pred columns
1255 let (pdimno, x, y, pdim) = a.(i) in
1256 a.(i) <- (pdimno, x, y+ips, pdim)
1257 done;
1258 y+ips;
1260 else y
1262 fixrow (pageno - columns);
1265 else y
1267 a.(pageno) <- (pdimno, x, y, pdim);
1268 let x = x + w + xoff*2 + conf.interpagespace in
1269 loop (pageno+1) pdimno pdim x y rowh' pdims
1271 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
1272 conf.columns <- Cmulti ((columns, coverA, coverB), a);
1274 | Csplit (c, _) ->
1275 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1276 let rec loop pageno pdimno pdim y pdims =
1277 if pageno = state.pagecount
1278 then ()
1279 else
1280 let pdimno, ((_, w, h, _) as pdim), pdims =
1281 match pdims with
1282 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1283 pdimno+1, pdim, rest
1284 | _ ->
1285 pdimno, pdim, pdims
1287 let cw = w / c in
1288 let rec loop1 n x y =
1289 if n = c then y else (
1290 a.(pageno*c + n) <- (pdimno, x, y, pdim);
1291 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
1294 let y = loop1 0 0 y in
1295 loop (pageno+1) pdimno pdim y pdims
1297 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
1298 conf.columns <- Csplit (c, a);
1301 let represent () =
1302 docolumns conf.columns;
1303 state.maxy <- calcheight ();
1304 if state.reprf == noreprf
1305 then (
1306 match state.mode with
1307 | Birdseye (_, _, pageno, _, _) ->
1308 let y, h = getpageyh pageno in
1309 let top = (state.winh - h) / 2 in
1310 gotoxy state.x (max 0 (y - top))
1311 | Textentry _
1312 | View
1313 | LinkNav _ ->
1314 let y = getanchory state.anchor in
1315 let y = min y (state.maxy - state.winh) in
1316 gotoxy state.x y;
1318 else (
1319 state.reprf ();
1320 state.reprf <- noreprf;
1324 let reshape ?(firsttime=false) w h =
1325 GlDraw.viewport ~x:0 ~y:0 ~w ~h;
1326 if not firsttime && nogeomcmds state.geomcmds
1327 then state.anchor <- getanchor ();
1329 state.winw <- w;
1330 let w = truncate (float w *. conf.zoom) in
1331 let w = max w 2 in
1332 state.winh <- h;
1333 setfontsize fstate.fontsize;
1334 GlMat.mode `modelview;
1335 GlMat.load_identity ();
1337 GlMat.mode `projection;
1338 GlMat.load_identity ();
1339 GlMat.rotate ~x:1.0 ~angle:180.0 ();
1340 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
1341 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
1343 let relx =
1344 if conf.zoom <= 1.0
1345 then 0.0
1346 else float state.x /. float state.w
1348 invalidate "geometry"
1349 (fun () ->
1350 state.w <- w;
1351 if not firsttime
1352 then state.x <- truncate (relx *. float w);
1353 let w =
1354 match conf.columns with
1355 | Csingle _ -> w
1356 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
1357 | Csplit (c, _) -> w * c
1359 wcmd "geometry %d %d %d"
1360 w (stateh h) (FMTE.to_int conf.fitmodel)
1364 let enttext () =
1365 let len = String.length state.text in
1366 let x0 = if conf.leftscroll then vscrollw () else 0 in
1367 let drawstring s =
1368 let hscrollh =
1369 match state.mode with
1370 | Textentry _ | View | LinkNav _ ->
1371 let h, _, _ = state.uioh#scrollpw in
1373 | Birdseye _ -> 0
1375 let rect x w =
1376 filledrect x (float (state.winh - (fstate.fontsize + 4) - hscrollh))
1377 (x+.w) (float (state.winh - hscrollh))
1380 let w = float (state.winw - 1 - vscrollw ()) in
1381 if state.progress >= 0.0 && state.progress < 1.0
1382 then (
1383 GlDraw.color (0.3, 0.3, 0.3);
1384 let w1 = w *. state.progress in
1385 rect (float x0) w1;
1386 GlDraw.color (0.0, 0.0, 0.0);
1387 rect (float x0+.w1) (float x0+.w-.w1)
1389 else (
1390 GlDraw.color (0.0, 0.0, 0.0);
1391 rect (float x0) w;
1394 GlDraw.color (1.0, 1.0, 1.0);
1395 drawstring fstate.fontsize
1396 (if conf.leftscroll then x0 + 2 else x0 + if len > 0 then 8 else 2)
1397 (state.winh - hscrollh - 5) s;
1399 let s =
1400 match state.mode with
1401 | Textentry ((prefix, text, _, _, _, _), _) ->
1402 let s =
1403 if len > 0
1404 then
1405 Printf.sprintf "%s%s_ [%s]" prefix text state.text
1406 else
1407 Printf.sprintf "%s%s_" prefix text
1411 | Birdseye _
1412 | View
1413 | LinkNav _ -> state.text
1415 let s =
1416 if state.newerrmsgs
1417 then (
1418 if not (istextentry state.mode) && state.uioh#eformsgs
1419 then
1420 let s1 = "(press 'e' to review error messasges)" in
1421 if nonemptystr s then s ^ " " ^ s1 else s1
1422 else s
1424 else s
1426 if nonemptystr s
1427 then drawstring s
1430 let gctiles () =
1431 let len = Queue.length state.tilelru in
1432 let layout = lazy (
1433 match state.throttle with
1434 | None ->
1435 if conf.preload
1436 then preloadlayout state.x state.y state.winw state.winh
1437 else state.layout
1438 | Some (layout, _, _) ->
1439 layout
1440 ) in
1441 let rec loop qpos =
1442 if state.memused <= conf.memlimit
1443 then ()
1444 else (
1445 if qpos < len
1446 then
1447 let (k, p, s) as lruitem = Queue.pop state.tilelru in
1448 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
1449 let (_, pw, ph, _) = getpagedim n in
1451 gen = state.gen
1452 && colorspace = conf.colorspace
1453 && angle = conf.angle
1454 && pagew = pw
1455 && pageh = ph
1456 && (
1457 let x = col*conf.tilew
1458 and y = row*conf.tileh in
1459 tilevisible (Lazy.force_val layout) n x y
1461 then Queue.push lruitem state.tilelru
1462 else (
1463 freepbo p;
1464 wcmd "freetile %s" (~> p);
1465 state.memused <- state.memused - s;
1466 state.uioh#infochanged Memused;
1467 Hashtbl.remove state.tilemap k;
1469 loop (qpos+1)
1472 loop 0
1475 let onpagerect pageno f =
1476 let b =
1477 match conf.columns with
1478 | Cmulti (_, b) -> b
1479 | Csingle b -> b
1480 | Csplit (_, b) -> b
1482 if pageno >= 0 && pageno < Array.length b
1483 then
1484 let (_, _, _, (_, w, h, _)) = b.(pageno) in
1485 f w h
1488 let gotopagexy1 wtmode pageno x y =
1489 let _,w1,h1,leftx = getpagedim pageno in
1490 let top = y /. (float h1) in
1491 let left = x /. (float w1) in
1492 let py, w, h = getpageywh pageno in
1493 let wh = state.winh in
1494 let x = left *. (float w) in
1495 let x = leftx + state.x + truncate x in
1496 let sx =
1497 if x < 0 || x >= state.winw
1498 then state.x - x
1499 else state.x
1501 let pdy = truncate (top *. float h) in
1502 let y' = py + pdy in
1503 let dy = y' - state.y in
1504 let sy =
1505 if x != state.x || not (dy > 0 && dy < wh)
1506 then (
1507 if conf.presentation
1508 then
1509 if abs (py - y') > wh
1510 then y'
1511 else py
1512 else y';
1514 else state.y
1516 if state.x != sx || state.y != sy
1517 then (
1518 let x, y =
1519 if wtmode
1520 then (
1521 let ww = state.winw in
1522 let qx = sx / ww
1523 and qy = pdy / wh in
1524 let x = qx * ww
1525 and y = py + qy * wh in
1526 let x = if -x + ww > w1 then -(w1-ww) else x
1527 and y' = if y + wh > state.maxy then state.maxy - wh else y in
1528 let y =
1529 if conf.presentation
1530 then
1531 if abs (py - y') > wh
1532 then y'
1533 else py
1534 else y';
1536 (x, y)
1538 else (sx, sy)
1540 gotoxy_and_clear_text x y;
1542 else gotoxy_and_clear_text state.x state.y;
1545 let gotopagexy wtmode pageno x y =
1546 match state.mode with
1547 | Birdseye _ -> gotopage pageno 0.0
1548 | Textentry _
1549 | View
1550 | LinkNav _ -> gotopagexy1 wtmode pageno x y
1553 let getpassword () =
1554 let passcmd = getenvwithdef "LLPP_ASKPASS" conf.passcmd in
1555 if emptystr passcmd
1556 then E.s
1557 else getcmdoutput
1558 (fun s ->
1559 impmsg "error getting password: %s" s;
1560 dolog "%s" s) passcmd;
1563 let pgoto opaque pageno x y =
1564 let pdimno = getpdimno pageno in
1565 let x, y = project opaque pageno pdimno x y in
1566 gotopagexy false pageno x y;
1569 let act cmds =
1570 (* dolog "%S" cmds; *)
1571 let spl = splitatspace cmds in
1572 let scan s fmt f =
1573 try Scanf.sscanf s fmt f
1574 with exn ->
1575 dolog "error processing '%S': %s" cmds @@ exntos exn;
1576 exit 1
1578 let addoutline outline =
1579 match state.currently with
1580 | Outlining outlines ->
1581 state.currently <- Outlining (outline :: outlines)
1582 | Idle -> state.currently <- Outlining [outline]
1583 | Loading _
1584 | Tiling _ ->
1585 dolog "invalid outlining state";
1586 logcurrently state.currently
1588 match spl with
1589 | "clear", "" ->
1590 state.uioh#infochanged Pdim;
1591 state.pdims <- [];
1593 | "clearrects", "" ->
1594 state.rects <- state.rects1;
1595 G.postRedisplay "clearrects";
1597 | "continue", args ->
1598 let n = scan args "%u" (fun n -> n) in
1599 state.pagecount <- n;
1600 begin match state.currently with
1601 | Outlining l ->
1602 state.currently <- Idle;
1603 state.outlines <- Array.of_list (List.rev l)
1604 | Idle
1605 | Loading _
1606 | Tiling _ -> ()
1607 end;
1609 let cur, cmds = state.geomcmds in
1610 if emptystr cur
1611 then failwith "umpossible";
1613 begin match List.rev cmds with
1614 | [] ->
1615 state.geomcmds <- E.s, [];
1616 state.throttle <- None;
1617 represent ();
1618 | (s, f) :: rest ->
1619 f ();
1620 state.geomcmds <- s, List.rev rest;
1621 end;
1622 if conf.maxwait = None && not !wtmode
1623 then G.postRedisplay "continue";
1625 | "msg", args ->
1626 showtext ' ' args
1628 | "vmsg", args ->
1629 if conf.verbose
1630 then showtext ' ' args
1632 | "emsg", args ->
1633 Buffer.add_string state.errmsgs args;
1634 state.newerrmsgs <- true;
1635 G.postRedisplay "error message"
1637 | "progress", args ->
1638 let progress, text =
1639 scan args "%f %n"
1640 (fun f pos ->
1641 f, String.sub args pos (String.length args - pos))
1643 state.text <- text;
1644 state.progress <- progress;
1645 G.postRedisplay "progress"
1647 | "firstmatch", args ->
1648 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1649 scan args "%u %d %f %f %f %f %f %f %f %f"
1650 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1651 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1653 let y = (getpagey pageno) + truncate y0 in
1654 let x =
1655 if conf.zoom > 1.0
1656 then state.winw/2
1657 else state.x
1659 addnav ();
1660 gotoxy x y;
1661 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1662 state.rects1 <- [pageno, color, (x0, y0, x1, y1, x2, y2, x3, y3)]
1664 | "match", args ->
1665 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1666 scan args "%u %d %f %f %f %f %f %f %f %f"
1667 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1668 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1670 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1671 state.rects1 <-
1672 (pageno, color, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
1674 | "page", args ->
1675 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
1676 let pageopaque = ~< pageopaques in
1677 begin match state.currently with
1678 | Loading (l, gen) ->
1679 vlog "page %d took %f sec" l.pageno t;
1680 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
1681 begin match state.throttle with
1682 | None ->
1683 let preloadedpages =
1684 if conf.preload
1685 then preloadlayout state.x state.y state.winw state.winh
1686 else state.layout
1688 let evict () =
1689 let set =
1690 List.fold_left (fun s l -> IntSet.add l.pageno s)
1691 IntSet.empty preloadedpages
1693 let evictedpages =
1694 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
1695 if not (IntSet.mem pageno set)
1696 then (
1697 wcmd "freepage %s" (~> opaque);
1698 key :: accu
1700 else accu
1701 ) state.pagemap []
1703 List.iter (Hashtbl.remove state.pagemap) evictedpages;
1705 evict ();
1706 state.currently <- Idle;
1707 if gen = state.gen
1708 then (
1709 tilepage l.pageno pageopaque state.layout;
1710 load state.layout;
1711 load preloadedpages;
1712 let visible = pagevisible state.layout l.pageno in
1713 if visible
1714 then (
1715 match state.mode with
1716 | LinkNav (Ltnotready (pageno, dir)) ->
1717 if pageno = l.pageno
1718 then (
1719 let link =
1720 let ld =
1721 if dir = 0
1722 then LDfirstvisible (l.pagex, l.pagey, dir)
1723 else (
1724 if dir > 0 then LDfirst else LDlast
1727 findlink pageopaque ld
1729 match link with
1730 | Lnotfound -> ()
1731 | Lfound n ->
1732 showlinktype (getlink pageopaque n);
1733 state.mode <- LinkNav (Ltexact (l.pageno, n))
1735 | LinkNav (Ltgendir _)
1736 | LinkNav (Ltexact _)
1737 | View
1738 | Birdseye _
1739 | Textentry _ -> ()
1742 if visible && layoutready state.layout
1743 then (
1744 G.postRedisplay "page";
1748 | Some (layout, _, _) ->
1749 state.currently <- Idle;
1750 tilepage l.pageno pageopaque layout;
1751 load state.layout
1752 end;
1754 | Idle
1755 | Tiling _
1756 | Outlining _ ->
1757 dolog "Inconsistent loading state";
1758 logcurrently state.currently;
1759 exit 1
1762 | "tile" , args ->
1763 let (x, y, opaques, size, t) =
1764 scan args "%u %u %s %u %f"
1765 (fun x y p size t -> (x, y, p, size, t))
1767 let opaque = ~< opaques in
1768 begin match state.currently with
1769 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
1770 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
1772 unmappbo opaque;
1773 if tilew != conf.tilew || tileh != conf.tileh
1774 then (
1775 wcmd "freetile %s" (~> opaque);
1776 state.currently <- Idle;
1777 load state.layout;
1779 else (
1780 puttileopaque l col row gen cs angle opaque size t;
1781 state.memused <- state.memused + size;
1782 state.uioh#infochanged Memused;
1783 gctiles ();
1784 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
1785 opaque, size) state.tilelru;
1787 let layout =
1788 match state.throttle with
1789 | None -> state.layout
1790 | Some (layout, _, _) -> layout
1793 state.currently <- Idle;
1794 if gen = state.gen
1795 && conf.colorspace = cs
1796 && conf.angle = angle
1797 && tilevisible layout l.pageno x y
1798 then conttiling l.pageno pageopaque;
1800 begin match state.throttle with
1801 | None ->
1802 preload state.layout;
1803 if gen = state.gen
1804 && conf.colorspace = cs
1805 && conf.angle = angle
1806 && tilevisible state.layout l.pageno x y
1807 && (not !wtmode || layoutready state.layout)
1808 then G.postRedisplay "tile nothrottle";
1810 | Some (layout, y, _) ->
1811 let ready = layoutready layout in
1812 if ready
1813 then (
1814 state.y <- y;
1815 state.layout <- layout;
1816 state.throttle <- None;
1817 G.postRedisplay "throttle";
1819 else load layout;
1820 end;
1823 | Idle
1824 | Loading _
1825 | Outlining _ ->
1826 dolog "Inconsistent tiling state";
1827 logcurrently state.currently;
1828 exit 1
1831 | "pdim", args ->
1832 let (n, w, h, _) as pdim =
1833 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
1835 let pdim =
1836 match conf.fitmodel with
1837 | FitWidth -> pdim
1838 | FitPage | FitProportional ->
1839 match conf.columns with
1840 | Csplit _ -> (n, w, h, 0)
1841 | Csingle _ | Cmulti _ -> pdim
1843 state.uioh#infochanged Pdim;
1844 state.pdims <- pdim :: state.pdims
1846 | "o", args ->
1847 let (l, n, t, h, pos) =
1848 scan args "%u %u %d %u %n"
1849 (fun l n t h pos -> l, n, t, h, pos)
1851 let s = String.sub args pos (String.length args - pos) in
1852 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
1854 | "ou", args ->
1855 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
1856 let s = String.sub args pos len in
1857 let pos2 = pos + len + 1 in
1858 let uri = String.sub args pos2 (String.length args - pos2) in
1859 addoutline (s, l, Ouri uri)
1861 | "on", args ->
1862 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
1863 let s = String.sub args pos (String.length args - pos) in
1864 addoutline (s, l, Onone)
1866 | "a", args ->
1867 let (n, l, t) =
1868 scan args "%u %d %d" (fun n l t -> n, l, t)
1870 state.reprf <- (fun () -> gotopagexy !wtmode n (float l) (float t))
1872 | "info", args ->
1873 let pos = nindex args '\t' in
1874 if pos >= 0 && String.sub args 0 pos = "Title"
1875 then (
1876 let s = String.sub args (pos+1) @@ String.length args - pos - 1 in
1877 conf.title <- s;
1878 Wsi.settitle s;
1880 state.docinfo <- (1, args) :: state.docinfo
1882 | "infoend", "" ->
1883 state.uioh#infochanged Docinfo;
1884 state.docinfo <- List.rev state.docinfo
1886 | "pass", args ->
1887 if args = "fail"
1888 then Wsi.settitle "Wrong password";
1889 let password = getpassword () in
1890 if emptystr password
1891 then error "document is password protected"
1892 else opendoc state.path password
1894 | _ ->
1895 error "unknown cmd `%S'" cmds
1898 let onhist cb =
1899 let rc = cb.rc in
1900 let action = function
1901 | HCprev -> cbget cb ~-1
1902 | HCnext -> cbget cb 1
1903 | HCfirst -> cbget cb ~-(cb.rc)
1904 | HClast -> cbget cb (cb.len - 1 - cb.rc)
1905 and cancel () = cb.rc <- rc
1906 in (action, cancel)
1909 let search pattern forward =
1910 match conf.columns with
1911 | Csplit _ -> impmsg "searching does not work properly in split columns mode"
1912 | Csingle _
1913 | Cmulti _ ->
1914 if nonemptystr pattern
1915 then
1916 let pn, py =
1917 match state.layout with
1918 | [] -> 0, 0
1919 | l :: _ ->
1920 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
1922 wcmd "search %d %d %d %d,%s\000"
1923 (btod conf.icase) pn py (btod forward) pattern;
1926 let intentry text key =
1927 let text =
1928 if key >= 32 && key < 127
1929 then
1930 let c = Char.chr key in
1931 match c with
1932 | '0' .. '9' -> addchar text c
1933 | _ ->
1934 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1935 text
1936 else (
1937 state.text <- Printf.sprintf "invalid key (%d)" key;
1938 text
1941 TEcont text
1944 let linknact f s =
1945 if nonemptystr s
1946 then (
1947 let n =
1948 let l = String.length s in
1949 let rec loop pos n = if pos = l then n else
1950 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
1951 loop (pos+1) (n*26 + m)
1952 in loop 0 0
1954 let rec loop n = function
1955 | [] -> ()
1956 | l :: rest ->
1957 match getopaque l.pageno with
1958 | None -> loop n rest
1959 | Some opaque ->
1960 let m = getlinkcount opaque in
1961 if n < m
1962 then (
1963 let under = getlink opaque n in
1964 f under
1966 else loop (n-m) rest
1968 loop n state.layout;
1972 let linknentry text key =
1973 if key >= 32 && key < 127
1974 then
1975 let text = addchar text (Char.chr key) in
1976 linknact (fun under -> state.text <- undertext ~nopath:true under) text;
1977 TEcont text
1978 else (
1979 state.text <- Printf.sprintf "invalid key %d" key;
1980 TEcont text
1984 let textentry text key =
1985 if Wsi.isspecialkey key
1986 then TEcont text
1987 else TEcont (text ^ toutf8 key)
1990 let reqlayout angle fitmodel =
1991 match state.throttle with
1992 | None ->
1993 if nogeomcmds state.geomcmds
1994 then state.anchor <- getanchor ();
1995 conf.angle <- angle mod 360;
1996 if conf.angle != 0
1997 then (
1998 match state.mode with
1999 | LinkNav _ -> state.mode <- View
2000 | Birdseye _
2001 | Textentry _
2002 | View -> ()
2004 conf.fitmodel <- fitmodel;
2005 invalidate "reqlayout"
2006 (fun () ->
2007 wcmd "reqlayout %d %d %d"
2008 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh)
2010 | _ -> ()
2013 let settrim trimmargins trimfuzz =
2014 if nogeomcmds state.geomcmds
2015 then state.anchor <- getanchor ();
2016 conf.trimmargins <- trimmargins;
2017 conf.trimfuzz <- trimfuzz;
2018 let x0, y0, x1, y1 = trimfuzz in
2019 invalidate "settrim"
2020 (fun () ->
2021 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2022 flushpages ();
2025 let setzoom zoom =
2026 match state.throttle with
2027 | None ->
2028 let zoom = max 0.0001 zoom in
2029 if zoom <> conf.zoom
2030 then (
2031 state.prevzoom <- (conf.zoom, state.x);
2032 conf.zoom <- zoom;
2033 reshape state.winw state.winh;
2034 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2037 | Some (layout, y, started) ->
2038 let time =
2039 match conf.maxwait with
2040 | None -> 0.0
2041 | Some t -> t
2043 let dt = now () -. started in
2044 if dt > time
2045 then (
2046 state.y <- y;
2047 load layout;
2051 let pivotzoom ?(vw=min state.w state.winw)
2052 ?(vh=min (state.maxy-state.y) state.winh)
2053 ?(x=vw/2) ?(y=vh/2) zoom =
2054 let w = float state.w /. zoom in
2055 let hw = w /. 2.0 in
2056 let ratio = float vh /. float vw in
2057 let hh = hw *. ratio in
2058 let x0 = if zoom < 1.0 then 0.0 else float x -. hw in
2059 let y0 = float y -. hh in
2060 gotoxy (state.x - truncate x0) (state.y + truncate y0);
2061 setzoom zoom;
2064 let pivotzoom ?vw ?vh ?x ?y zoom =
2065 if nogeomcmds state.geomcmds then pivotzoom ?vw ?vh ?x ?y zoom
2068 let setcolumns mode columns coverA coverB =
2069 state.prevcolumns <- Some (conf.columns, conf.zoom);
2070 if columns < 0
2071 then (
2072 if isbirdseye mode
2073 then impmsg "split mode doesn't work in bird's eye"
2074 else (
2075 conf.columns <- Csplit (-columns, E.a);
2076 state.x <- 0;
2077 conf.zoom <- 1.0;
2080 else (
2081 if columns < 2
2082 then (
2083 conf.columns <- Csingle E.a;
2084 state.x <- 0;
2085 setzoom 1.0;
2087 else (
2088 conf.columns <- Cmulti ((columns, coverA, coverB), E.a);
2089 conf.zoom <- 1.0;
2092 reshape state.winw state.winh;
2095 let resetmstate () =
2096 state.mstate <- Mnone;
2097 Wsi.setcursor Wsi.CURSOR_INHERIT;
2100 let enterbirdseye () =
2101 let zoom = float conf.thumbw /. float state.winw in
2102 let birdseyepageno =
2103 let cy = state.winh / 2 in
2104 let fold = function
2105 | [] -> 0
2106 | l :: rest ->
2107 let rec fold best = function
2108 | [] -> best.pageno
2109 | l :: rest ->
2110 let d = cy - (l.pagedispy + l.pagevh/2)
2111 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2112 if abs d < abs dbest
2113 then fold l rest
2114 else best.pageno
2115 in fold l rest
2117 fold state.layout
2119 state.mode <- Birdseye (
2120 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2122 resetmstate ();
2123 conf.zoom <- zoom;
2124 conf.presentation <- false;
2125 conf.interpagespace <- 10;
2126 conf.hlinks <- false;
2127 conf.fitmodel <- FitPage;
2128 state.x <- 0;
2129 conf.maxwait <- None;
2130 conf.columns <- (
2131 match conf.beyecolumns with
2132 | Some c ->
2133 conf.zoom <- 1.0;
2134 Cmulti ((c, 0, 0), E.a)
2135 | None -> Csingle E.a
2137 if conf.verbose
2138 then
2139 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2140 (100.0*.zoom)
2141 else
2142 state.text <- E.s
2144 reshape state.winw state.winh;
2147 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2148 state.mode <- View;
2149 conf.zoom <- c.zoom;
2150 conf.presentation <- c.presentation;
2151 conf.interpagespace <- c.interpagespace;
2152 conf.maxwait <- c.maxwait;
2153 conf.hlinks <- c.hlinks;
2154 conf.fitmodel <- c.fitmodel;
2155 conf.beyecolumns <- (
2156 match conf.columns with
2157 | Cmulti ((c, _, _), _) -> Some c
2158 | Csingle _ -> None
2159 | Csplit _ -> failwith "leaving bird's eye split mode"
2161 conf.columns <- (
2162 match c.columns with
2163 | Cmulti (c, _) -> Cmulti (c, E.a)
2164 | Csingle _ -> Csingle E.a
2165 | Csplit (c, _) -> Csplit (c, E.a)
2167 if conf.verbose
2168 then
2169 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2170 (100.0*.conf.zoom)
2172 reshape state.winw state.winh;
2173 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2174 state.x <- leftx;
2177 let togglebirdseye () =
2178 match state.mode with
2179 | Birdseye vals -> leavebirdseye vals true
2180 | View -> enterbirdseye ()
2181 | Textentry _
2182 | LinkNav _ -> ()
2185 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2186 let pageno = max 0 (pageno - incr) in
2187 let rec loop = function
2188 | [] -> gotopage1 pageno 0
2189 | l :: _ when l.pageno = pageno ->
2190 if l.pagedispy >= 0 && l.pagey = 0
2191 then G.postRedisplay "upbirdseye"
2192 else gotopage1 pageno 0
2193 | _ :: rest -> loop rest
2195 loop state.layout;
2196 state.text <- E.s;
2197 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2200 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2201 let pageno = min (state.pagecount - 1) (pageno + incr) in
2202 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2203 let rec loop = function
2204 | [] ->
2205 let y, h = getpageyh pageno in
2206 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2207 gotoxy state.x (clamp dy)
2208 | l :: _ when l.pageno = pageno ->
2209 if l.pagevh != l.pageh
2210 then gotoxy state.x (clamp (l.pageh - l.pagevh + conf.interpagespace))
2211 else G.postRedisplay "downbirdseye"
2212 | _ :: rest -> loop rest
2214 loop state.layout;
2215 state.text <- E.s;
2218 let optentry mode _ key =
2219 let btos b = if b then "on" else "off" in
2220 if key >= 32 && key < 127
2221 then
2222 let c = Char.chr key in
2223 match c with
2224 | 's' ->
2225 let ondone s =
2226 try conf.scrollstep <- int_of_string s with exn ->
2227 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2229 TEswitch ("scroll step: ", E.s, None, intentry, ondone, true)
2231 | 'A' ->
2232 let ondone s =
2234 conf.autoscrollstep <- boundastep state.winh (int_of_string s);
2235 if state.autoscroll <> None
2236 then state.autoscroll <- Some conf.autoscrollstep
2237 with exn ->
2238 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2240 TEswitch ("auto scroll step: ", E.s, None, intentry, ondone, true)
2242 | 'C' ->
2243 let ondone s =
2245 let n, a, b = multicolumns_of_string s in
2246 setcolumns mode n a b;
2247 with exn ->
2248 state.text <- Printf.sprintf "bad columns `%s': %s" s @@ exntos exn
2250 TEswitch ("columns: ", E.s, None, textentry, ondone, true)
2252 | 'Z' ->
2253 let ondone s =
2255 let zoom = float (int_of_string s) /. 100.0 in
2256 pivotzoom zoom
2257 with exn ->
2258 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2260 TEswitch ("zoom: ", E.s, None, intentry, ondone, true)
2262 | 't' ->
2263 let ondone s =
2265 conf.thumbw <- bound (int_of_string s) 2 4096;
2266 state.text <-
2267 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2268 begin match mode with
2269 | Birdseye beye ->
2270 leavebirdseye beye false;
2271 enterbirdseye ();
2272 | Textentry _
2273 | View
2274 | LinkNav _ -> ();
2276 with exn ->
2277 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2279 TEswitch ("thumbnail width: ", E.s, None, intentry, ondone, true)
2281 | 'R' ->
2282 let ondone s =
2283 match int_of_string s with
2284 | angle -> reqlayout angle conf.fitmodel
2285 | exception exn ->
2286 state.text <-
2287 Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2289 TEswitch ("rotation: ", E.s, None, intentry, ondone, true)
2291 | 'i' ->
2292 conf.icase <- not conf.icase;
2293 TEdone ("case insensitive search " ^ (btos conf.icase))
2295 | 'p' ->
2296 conf.preload <- not conf.preload;
2297 gotoxy state.x state.y;
2298 TEdone ("preload " ^ (btos conf.preload))
2300 | 'v' ->
2301 conf.verbose <- not conf.verbose;
2302 TEdone ("verbose " ^ (btos conf.verbose))
2304 | 'd' ->
2305 conf.debug <- not conf.debug;
2306 TEdone ("debug " ^ (btos conf.debug))
2308 | 'h' ->
2309 conf.maxhfit <- not conf.maxhfit;
2310 state.maxy <- calcheight ();
2311 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2313 | 'c' ->
2314 conf.crophack <- not conf.crophack;
2315 TEdone ("crophack " ^ btos conf.crophack)
2317 | 'a' ->
2318 let s =
2319 match conf.maxwait with
2320 | None ->
2321 conf.maxwait <- Some infinity;
2322 "always wait for page to complete"
2323 | Some _ ->
2324 conf.maxwait <- None;
2325 "show placeholder if page is not ready"
2327 TEdone s
2329 | 'f' ->
2330 conf.underinfo <- not conf.underinfo;
2331 TEdone ("underinfo " ^ btos conf.underinfo)
2333 | 'P' ->
2334 conf.savebmarks <- not conf.savebmarks;
2335 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2337 | 'S' ->
2338 let ondone s =
2340 let pageno, py =
2341 match state.layout with
2342 | [] -> 0, 0
2343 | l :: _ ->
2344 l.pageno, l.pagey
2346 conf.interpagespace <- int_of_string s;
2347 docolumns conf.columns;
2348 state.maxy <- calcheight ();
2349 let y = getpagey pageno in
2350 gotoxy state.x (y + py)
2351 with exn ->
2352 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn
2354 TEswitch ("vertical margin: ", E.s, None, intentry, ondone, true)
2356 | 'l' ->
2357 let fm =
2358 match conf.fitmodel with
2359 | FitProportional -> FitWidth
2360 | FitWidth | FitPage -> FitProportional
2362 reqlayout conf.angle fm;
2363 TEdone ("proportional display " ^ btos (fm == FitProportional))
2365 | 'T' ->
2366 settrim (not conf.trimmargins) conf.trimfuzz;
2367 TEdone ("trim margins " ^ btos conf.trimmargins)
2369 | 'I' ->
2370 conf.invert <- not conf.invert;
2371 TEdone ("invert colors " ^ btos conf.invert)
2373 | 'x' ->
2374 let ondone s =
2375 cbput state.hists.sel s;
2376 conf.selcmd <- s;
2378 TEswitch ("selection command: ", E.s, Some (onhist state.hists.sel),
2379 textentry, ondone, true)
2381 | 'M' ->
2382 if conf.pax == None
2383 then conf.pax <- Some (ref (0.0, 0, 0))
2384 else conf.pax <- None;
2385 TEdone ("PAX " ^ btos (conf.pax != None))
2387 | _ ->
2388 state.text <- Printf.sprintf "bad option %d `%c'" key c;
2389 TEstop
2390 else
2391 TEcont state.text
2394 class type lvsource = object
2395 method getitemcount : int
2396 method getitem : int -> (string * int)
2397 method hasaction : int -> bool
2398 method exit :
2399 uioh:uioh ->
2400 cancel:bool ->
2401 active:int ->
2402 first:int ->
2403 pan:int ->
2404 uioh option
2405 method getactive : int
2406 method getfirst : int
2407 method getpan : int
2408 method getminfo : (int * int) array
2409 end;;
2411 class virtual lvsourcebase = object
2412 val mutable m_active = 0
2413 val mutable m_first = 0
2414 val mutable m_pan = 0
2415 method getactive = m_active
2416 method getfirst = m_first
2417 method getpan = m_pan
2418 method getminfo : (int * int) array = E.a
2419 end;;
2421 let textentrykeyboard
2422 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
2423 state.text <- E.s;
2424 let key = Wsi.keypadtodigitkey key in
2425 let enttext te =
2426 state.mode <- Textentry (te, onleave);
2427 enttext ();
2428 G.postRedisplay "textentrykeyboard enttext";
2430 let histaction cmd =
2431 match opthist with
2432 | None -> ()
2433 | Some (action, _) ->
2434 state.mode <- Textentry (
2435 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
2437 G.postRedisplay "textentry histaction"
2439 match key with
2440 | @backspace ->
2441 if emptystr text && cancelonempty
2442 then (
2443 onleave Cancel;
2444 G.postRedisplay "textentrykeyboard after cancel";
2446 else
2447 let s = withoutlastutf8 text in
2448 enttext (c, s, opthist, onkey, ondone, cancelonempty)
2450 | @enter | @kpenter ->
2451 ondone text;
2452 onleave Confirm;
2453 G.postRedisplay "textentrykeyboard after confirm"
2455 | @up | @kpup -> histaction HCprev
2456 | @down | @kpdown -> histaction HCnext
2457 | @home | @kphome -> histaction HCfirst
2458 | @jend | @kpend -> histaction HClast
2460 | @escape ->
2461 if emptystr text
2462 then (
2463 begin match opthist with
2464 | None -> ()
2465 | Some (_, onhistcancel) -> onhistcancel ()
2466 end;
2467 onleave Cancel;
2468 state.text <- E.s;
2469 G.postRedisplay "textentrykeyboard after cancel2"
2471 else (
2472 enttext (c, E.s, opthist, onkey, ondone, cancelonempty)
2475 | @delete | @kpdelete -> ()
2477 | _ when key != 0 && not (Wsi.isspecialkey key) ->
2478 begin match onkey text key with
2479 | TEdone text ->
2480 ondone text;
2481 onleave Confirm;
2482 G.postRedisplay "textentrykeyboard after confirm2";
2484 | TEcont text ->
2485 enttext (c, text, opthist, onkey, ondone, cancelonempty);
2487 | TEstop ->
2488 onleave Cancel;
2489 G.postRedisplay "textentrykeyboard after cancel3"
2491 | TEswitch te ->
2492 state.mode <- Textentry (te, onleave);
2493 G.postRedisplay "textentrykeyboard switch";
2494 end;
2496 | _ ->
2497 vlog "unhandled key %s" (Wsi.keyname key)
2500 let firstof first active =
2501 if first > active || abs (first - active) > fstate.maxrows - 1
2502 then max 0 (active - (fstate.maxrows/2))
2503 else first
2506 let calcfirst first active =
2507 if active > first
2508 then
2509 let rows = active - first in
2510 if rows > fstate.maxrows then active - fstate.maxrows else first
2511 else active
2514 let scrollph y maxy =
2515 let sh = float (maxy + state.winh) /. float state.winh in
2516 let sh = float state.winh /. sh in
2517 let sh = max sh (float conf.scrollh) in
2519 let percent = float y /. float maxy in
2520 let position = (float state.winh -. sh) *. percent in
2522 let position =
2523 if position +. sh > float state.winh
2524 then float state.winh -. sh
2525 else position
2527 position, sh;
2530 let adderrmsg src msg =
2531 Buffer.add_string state.errmsgs msg;
2532 state.newerrmsgs <- true;
2533 G.postRedisplay src
2536 let adderrfmt src fmt =
2537 Format.ksprintf (fun s -> adderrmsg src s) fmt;
2540 let coe s = (s :> uioh);;
2542 class listview ~zebra ~helpmode ~(source:lvsource) ~trusted ~modehash =
2543 object (self)
2544 val m_pan = source#getpan
2545 val m_first = source#getfirst
2546 val m_active = source#getactive
2547 val m_qsearch = E.s
2548 val m_prev_uioh = state.uioh
2550 method private elemunder y =
2551 if y < 0
2552 then None
2553 else
2554 let n = y / (fstate.fontsize+1) in
2555 if m_first + n < source#getitemcount
2556 then (
2557 if source#hasaction (m_first + n)
2558 then Some (m_first + n)
2559 else None
2561 else None
2563 method display =
2564 Gl.enable `blend;
2565 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
2566 GlDraw.color (0., 0., 0.) ~alpha:0.85;
2567 filledrect 0. 0. (float state.winw) (float state.winh);
2568 GlDraw.color (1., 1., 1.);
2569 Gl.enable `texture_2d;
2570 let fs = fstate.fontsize in
2571 let nfs = fs + 1 in
2572 let hw = state.winw/3 in
2573 let ww = fstate.wwidth in
2574 let tabw = 17.0*.ww in
2575 let itemcount = source#getitemcount in
2576 let minfo = source#getminfo in
2577 if conf.leftscroll
2578 then (
2579 GlMat.push ();
2580 GlMat.translate ~x:(float conf.scrollbw) ();
2582 let x0 = 0.0 and x1 = float (state.winw - conf.scrollbw - 1) in
2583 let rec loop row =
2584 if (row - m_first) > fstate.maxrows
2585 then ()
2586 else (
2587 if row >= 0 && row < itemcount
2588 then (
2589 let (s, level) = source#getitem row in
2590 let y = (row - m_first) * nfs in
2591 let x = 5.0 +. (float (level + m_pan)) *. ww in
2592 if helpmode
2593 then GlDraw.color
2594 (let c = if row land 1 = 0 then 1.0 else 0.92 in (c,c,c));
2596 if row = m_active
2597 then (
2598 Gl.disable `texture_2d;
2599 let alpha = if source#hasaction row then 0.9 else 0.3 in
2600 GlDraw.color (1., 1., 1.) ~alpha;
2601 linerect (x0 +. 1.) (float (y + 1)) (x1) (float (y + fs + 3));
2602 Gl.enable `texture_2d;
2604 let c =
2605 if zebra && row land 1 = 1
2606 then 0.8
2607 else 1.0
2609 GlDraw.color (c,c,c);
2610 let drawtabularstring s =
2611 let drawstr x s =
2612 let x' = truncate (x0 +. x) in
2613 let pos = nindex s '\000' in
2614 if pos = -1
2615 then drawstring1 fs x' (y+nfs) s
2616 else
2617 let s1 = String.sub s 0 pos
2618 and s2 = String.sub s (pos+1) (String.length s - pos - 1) in
2619 let rec e s =
2620 if emptystr s
2621 then s
2622 else
2623 let s' = withoutlastutf8 s in
2624 let s = s' ^ "@Uellipsis" in
2625 let w = measurestr fs s in
2626 if float x' +. w +. ww < float (hw + x')
2627 then s
2628 else e s'
2630 let s1 =
2631 if float x' +. ww +. measurestr fs s1 > float (hw + x')
2632 then e s1
2633 else s1
2635 ignore (drawstring1 fs x' (y+nfs) s1);
2636 drawstring1 fs (hw + x') (y+nfs) s2
2638 if trusted
2639 then
2640 let x = if helpmode && row > 0 then x +. ww else x in
2641 let tabpos = nindex s '\t' in
2642 if tabpos > 0
2643 then
2644 let len = String.length s - tabpos - 1 in
2645 let s1 = String.sub s 0 tabpos
2646 and s2 = String.sub s (tabpos + 1) len in
2647 let nx = drawstr x s1 in
2648 let sw = nx -. x in
2649 let x = x +. (max tabw sw) in
2650 drawstr x s2
2651 else
2652 let len = String.length s - 2 in
2653 if len > 0 && s.[0] = '\xc2' && s.[1] = '\xb7'
2654 then
2655 let s = String.sub s 2 len in
2656 let x = if not helpmode then x +. ww else x in
2657 GlDraw.color (1.2, 1.2, 1.2);
2658 let vinc = drawstring1 (fs+fs/4)
2659 (truncate (x -. ww)) (y+nfs) s in
2660 GlDraw.color (1., 1., 1.);
2661 vinc +. (float fs *. 0.8)
2662 else
2663 drawstr x s
2664 else
2665 drawstr x s
2667 ignore (drawtabularstring s);
2668 loop (row+1)
2672 loop m_first;
2673 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
2674 let xadj = 5.0 in
2675 let rec loop row =
2676 if (row - m_first) > fstate.maxrows
2677 then ()
2678 else (
2679 if row >= 0 && row < itemcount
2680 then (
2681 let (s, level) = source#getitem row in
2682 let pos0 = nindex s '\000' in
2683 let y = (row - m_first) * nfs in
2684 let x = float (level + m_pan) *. ww in
2685 let (first, last) = minfo.(row) in
2686 let prefix =
2687 if pos0 > 0 && first > pos0
2688 then String.sub s (pos0+1) (first-pos0-1)
2689 else String.sub s 0 first
2691 let suffix = String.sub s first (last - first) in
2692 let w1 = measurestr fstate.fontsize prefix in
2693 let w2 = measurestr fstate.fontsize suffix in
2694 let x = x +. if conf.leftscroll then xadj else 5.0 in
2695 let x = if pos0 > 0 && first > pos0 then x +. float hw else x in
2696 let x0 = x +. w1
2697 and y0 = float (y+2) in
2698 let x1 = x0 +. w2
2699 and y1 = float (y+fs+3) in
2700 filledrect x0 y0 x1 y1;
2701 loop (row+1)
2705 Gl.disable `texture_2d;
2706 if Array.length minfo > 0 then loop m_first;
2707 Gl.disable `blend;
2708 if conf.leftscroll
2709 then GlMat.pop ();
2711 method updownlevel incr =
2712 let len = source#getitemcount in
2713 let curlevel =
2714 if m_active >= 0 && m_active < len
2715 then snd (source#getitem m_active)
2716 else -1
2718 let rec flow i =
2719 if i = len then i-1 else if i = -1 then 0 else
2720 let _, l = source#getitem i in
2721 if l != curlevel then i else flow (i+incr)
2723 let active = flow m_active in
2724 let first = calcfirst m_first active in
2725 G.postRedisplay "outline updownlevel";
2726 {< m_active = active; m_first = first >}
2728 method private key1 key mask =
2729 let set1 active first qsearch =
2730 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
2732 let search active pattern incr =
2733 let active = if active = -1 then m_first else active in
2734 let dosearch re =
2735 let rec loop n =
2736 if n >= 0 && n < source#getitemcount
2737 then (
2738 let s, _ = source#getitem n in
2739 match Str.search_forward re s 0 with
2740 | (exception Not_found) -> loop (n + incr)
2741 | _ -> Some n
2743 else None
2745 loop active
2747 let qpat = Str.quote pattern in
2748 match Str.regexp_case_fold qpat with
2749 | s -> dosearch s
2750 | exception exn ->
2751 adderrfmt "listview key1" "regexp_case_fold for `%S' failed: %S\n"
2752 qpat @@ Printexc.to_string exn;
2753 None
2755 let itemcount = source#getitemcount in
2756 let find start incr =
2757 let rec find i =
2758 if i = -1 || i = itemcount
2759 then -1
2760 else (
2761 if source#hasaction i
2762 then i
2763 else find (i + incr)
2766 find start
2768 let set active first =
2769 let first = bound first 0 (itemcount - fstate.maxrows) in
2770 state.text <- E.s;
2771 coe {< m_active = active; m_first = first; m_qsearch = E.s >}
2773 let navigate incr =
2774 let isvisible first n = n >= first && n - first <= fstate.maxrows in
2775 let active, first =
2776 let incr1 = if incr > 0 then 1 else -1 in
2777 if isvisible m_first m_active
2778 then
2779 let next =
2780 let next = m_active + incr in
2781 let next =
2782 if next < 0 || next >= itemcount
2783 then -1
2784 else find next incr1
2786 if abs (m_active - next) > fstate.maxrows
2787 then -1
2788 else next
2790 if next = -1
2791 then
2792 let first = m_first + incr in
2793 let first = bound first 0 (itemcount - fstate.maxrows) in
2794 let next =
2795 let next = m_active + incr in
2796 let next = bound next 0 (itemcount - 1) in
2797 find next ~-incr1
2799 let active =
2800 if next = -1
2801 then m_active
2802 else (
2803 if isvisible first next
2804 then next
2805 else m_active
2808 active, first
2809 else
2810 let first = min next m_first in
2811 let first =
2812 if abs (next - first) > fstate.maxrows
2813 then first + incr
2814 else first
2816 next, first
2817 else
2818 let first = m_first + incr in
2819 let first = bound first 0 (itemcount - 1) in
2820 let active =
2821 let next = m_active + incr in
2822 let next = bound next 0 (itemcount - 1) in
2823 let next = find next incr1 in
2824 let active =
2825 if next = -1 || abs (m_active - first) > fstate.maxrows
2826 then (
2827 let active = if m_active = -1 then next else m_active in
2828 active
2830 else next
2832 if isvisible first active
2833 then active
2834 else -1
2836 active, first
2838 G.postRedisplay "listview navigate";
2839 set active first;
2841 match key with
2842 | (@r|@s) when Wsi.withctrl mask ->
2843 let incr = if key = @r then -1 else 1 in
2844 let active, first =
2845 match search (m_active + incr) m_qsearch incr with
2846 | None ->
2847 state.text <- m_qsearch ^ " [not found]";
2848 m_active, m_first
2849 | Some active ->
2850 state.text <- m_qsearch;
2851 active, firstof m_first active
2853 G.postRedisplay "listview ctrl-r/s";
2854 set1 active first m_qsearch;
2856 | @insert when Wsi.withctrl mask ->
2857 if m_active >= 0 && m_active < source#getitemcount
2858 then (
2859 let s, _ = source#getitem m_active in
2860 selstring s;
2862 coe self
2864 | @backspace ->
2865 if emptystr m_qsearch
2866 then coe self
2867 else (
2868 let qsearch = withoutlastutf8 m_qsearch in
2869 if emptystr qsearch
2870 then (
2871 state.text <- E.s;
2872 G.postRedisplay "listview empty qsearch";
2873 set1 m_active m_first E.s;
2875 else
2876 let active, first =
2877 match search m_active qsearch ~-1 with
2878 | None ->
2879 state.text <- qsearch ^ " [not found]";
2880 m_active, m_first
2881 | Some active ->
2882 state.text <- qsearch;
2883 active, firstof m_first active
2885 G.postRedisplay "listview backspace qsearch";
2886 set1 active first qsearch
2889 | key when (key != 0 && not (Wsi.isspecialkey key)) ->
2890 let pattern = m_qsearch ^ toutf8 key in
2891 let active, first =
2892 match search m_active pattern 1 with
2893 | None ->
2894 state.text <- pattern ^ " [not found]";
2895 m_active, m_first
2896 | Some active ->
2897 state.text <- pattern;
2898 active, firstof m_first active
2900 G.postRedisplay "listview qsearch add";
2901 set1 active first pattern;
2903 | @escape ->
2904 state.text <- E.s;
2905 if emptystr m_qsearch
2906 then (
2907 G.postRedisplay "list view escape";
2908 let mx, my = state.mpos in
2909 updateunder mx my;
2910 begin
2911 match
2912 source#exit ~uioh:(coe self)
2913 ~cancel:true ~active:m_active ~first:m_first ~pan:m_pan
2914 with
2915 | None -> m_prev_uioh
2916 | Some uioh -> uioh
2919 else (
2920 G.postRedisplay "list view kill qsearch";
2921 coe {< m_qsearch = E.s >}
2924 | @enter | @kpenter ->
2925 state.text <- E.s;
2926 let self = {< m_qsearch = E.s >} in
2927 let opt =
2928 G.postRedisplay "listview enter";
2929 if m_active >= 0 && m_active < source#getitemcount
2930 then (
2931 source#exit ~uioh:(coe self) ~cancel:false
2932 ~active:m_active ~first:m_first ~pan:m_pan;
2934 else (
2935 source#exit ~uioh:(coe self) ~cancel:true
2936 ~active:m_active ~first:m_first ~pan:m_pan;
2939 begin match opt with
2940 | None -> m_prev_uioh
2941 | Some uioh -> uioh
2944 | @delete | @kpdelete ->
2945 coe self
2947 | @up | @kpup -> navigate ~-1
2948 | @down | @kpdown -> navigate 1
2949 | @prior | @kpprior -> navigate ~-(fstate.maxrows)
2950 | @next | @kpnext -> navigate fstate.maxrows
2952 | @right | @kpright ->
2953 state.text <- E.s;
2954 G.postRedisplay "listview right";
2955 coe {< m_pan = m_pan - 1 >}
2957 | @left | @kpleft ->
2958 state.text <- E.s;
2959 G.postRedisplay "listview left";
2960 coe {< m_pan = m_pan + 1 >}
2962 | @home | @kphome ->
2963 let active = find 0 1 in
2964 G.postRedisplay "listview home";
2965 set active 0;
2967 | @jend | @kpend ->
2968 let first = max 0 (itemcount - fstate.maxrows) in
2969 let active = find (itemcount - 1) ~-1 in
2970 G.postRedisplay "listview end";
2971 set active first;
2973 | key when (key = 0 || Wsi.isspecialkey key) ->
2974 coe self
2976 | _ ->
2977 dolog "listview unknown key %#x" key; coe self
2979 method key key mask =
2980 match state.mode with
2981 | Textentry te -> textentrykeyboard key mask te; coe self
2982 | Birdseye _
2983 | View
2984 | LinkNav _ -> self#key1 key mask
2986 method button button down x y _ =
2987 let opt =
2988 match button with
2989 | 1 when vscrollhit x ->
2990 G.postRedisplay "listview scroll";
2991 if down
2992 then
2993 let _, position, sh = self#scrollph in
2994 if y > truncate position && y < truncate (position +. sh)
2995 then (
2996 state.mstate <- Mscrolly;
2997 Some (coe self)
2999 else
3000 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3001 let first = truncate (s *. float source#getitemcount) in
3002 let first = min source#getitemcount first in
3003 Some (coe {< m_first = first; m_active = first >})
3004 else (
3005 state.mstate <- Mnone;
3006 Some (coe self);
3008 | 1 when down ->
3009 begin match self#elemunder y with
3010 | Some n ->
3011 G.postRedisplay "listview click";
3012 source#exit ~uioh:(coe {< m_active = n >})
3013 ~cancel:false ~active:n ~first:m_first ~pan:m_pan
3014 | _ ->
3015 Some (coe self)
3017 | n when (n == 4 || n == 5) && not down ->
3018 let len = source#getitemcount in
3019 let first =
3020 if n = 5 && m_first + fstate.maxrows >= len
3021 then
3022 m_first
3023 else
3024 let first = m_first + (if n == 4 then -1 else 1) in
3025 bound first 0 (len - 1)
3027 G.postRedisplay "listview wheel";
3028 Some (coe {< m_first = first >})
3029 | n when (n = 6 || n = 7) && not down ->
3030 let inc = if n = 7 then -1 else 1 in
3031 G.postRedisplay "listview hwheel";
3032 Some (coe {< m_pan = m_pan + inc >})
3033 | _ ->
3034 Some (coe self)
3036 match opt with
3037 | None -> m_prev_uioh
3038 | Some uioh -> uioh
3040 method multiclick _ x y = self#button 1 true x y
3042 method motion _ y =
3043 match state.mstate with
3044 | Mscrolly ->
3045 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3046 let first = truncate (s *. float source#getitemcount) in
3047 let first = min source#getitemcount first in
3048 G.postRedisplay "listview motion";
3049 coe {< m_first = first; m_active = first >}
3050 | Msel _
3051 | Mpan _
3052 | Mscrollx
3053 | Mzoom _
3054 | Mzoomrect _
3055 | Mnone -> coe self
3057 method pmotion x y =
3058 if x < state.winw - conf.scrollbw
3059 then
3060 let n =
3061 match self#elemunder y with
3062 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3063 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3065 let o =
3066 if n != m_active
3067 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3068 else self
3070 coe o
3071 else (
3072 Wsi.setcursor Wsi.CURSOR_INHERIT;
3073 coe self
3076 method infochanged _ = ()
3078 method scrollpw = (0, 0.0, 0.0)
3079 method scrollph =
3080 let nfs = fstate.fontsize + 1 in
3081 let y = m_first * nfs in
3082 let itemcount = source#getitemcount in
3083 let maxi = max 0 (itemcount - fstate.maxrows) in
3084 let maxy = maxi * nfs in
3085 let p, h = scrollph y maxy in
3086 conf.scrollbw, p, h
3088 method modehash = modehash
3089 method eformsgs = false
3090 method alwaysscrolly = true
3091 end;;
3093 class outlinelistview ~zebra ~source =
3094 let settext autonarrow s =
3095 if autonarrow
3096 then
3097 let ss = source#statestr in
3098 state.text <-
3099 if emptystr ss
3100 then "[" ^ s ^ "]"
3101 else "{" ^ ss ^ "} [" ^ s ^ "]"
3102 else state.text <- s
3104 object (self)
3105 inherit listview
3106 ~zebra
3107 ~helpmode:false
3108 ~source:(source :> lvsource)
3109 ~trusted:false
3110 ~modehash:(findkeyhash conf "outline")
3111 as super
3113 val m_autonarrow = false
3115 method! key key mask =
3116 let maxrows =
3117 if emptystr state.text
3118 then fstate.maxrows
3119 else fstate.maxrows - 2
3121 let calcfirst first active =
3122 if active > first
3123 then
3124 let rows = active - first in
3125 if rows > maxrows then active - maxrows else first
3126 else active
3128 let navigate incr =
3129 let active = m_active + incr in
3130 let active = bound active 0 (source#getitemcount - 1) in
3131 let first = calcfirst m_first active in
3132 G.postRedisplay "outline navigate";
3133 coe {< m_active = active; m_first = first >}
3135 let navscroll first =
3136 let active =
3137 let dist = m_active - first in
3138 if dist < 0
3139 then first
3140 else (
3141 if dist < maxrows
3142 then m_active
3143 else first + maxrows
3146 G.postRedisplay "outline navscroll";
3147 coe {< m_first = first; m_active = active >}
3149 let ctrl = Wsi.withctrl mask in
3150 match key with
3151 | @a when ctrl ->
3152 let text =
3153 if m_autonarrow
3154 then (source#denarrow; E.s)
3155 else (
3156 let pattern = source#renarrow in
3157 if nonemptystr m_qsearch
3158 then (source#narrow m_qsearch; m_qsearch)
3159 else pattern
3162 settext (not m_autonarrow) text;
3163 G.postRedisplay "toggle auto narrowing";
3164 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
3166 | @slash when emptystr m_qsearch && not m_autonarrow ->
3167 settext true E.s;
3168 G.postRedisplay "toggle auto narrowing";
3169 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
3171 | @n when ctrl ->
3172 source#narrow m_qsearch;
3173 if not m_autonarrow
3174 then source#add_narrow_pattern m_qsearch;
3175 G.postRedisplay "outline ctrl-n";
3176 coe {< m_first = 0; m_active = 0 >}
3178 | @S when ctrl ->
3179 let active = source#calcactive (getanchor ()) in
3180 let first = firstof m_first active in
3181 G.postRedisplay "outline ctrl-s";
3182 coe {< m_first = first; m_active = active >}
3184 | @u when ctrl ->
3185 G.postRedisplay "outline ctrl-u";
3186 if m_autonarrow && nonemptystr m_qsearch
3187 then (
3188 ignore (source#renarrow);
3189 settext m_autonarrow E.s;
3190 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3192 else (
3193 source#del_narrow_pattern;
3194 let pattern = source#renarrow in
3195 let text =
3196 if emptystr pattern then E.s else "Narrowed to " ^ pattern
3198 settext m_autonarrow text;
3199 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3202 | @l when ctrl ->
3203 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3204 G.postRedisplay "outline ctrl-l";
3205 coe {< m_first = first >}
3207 | @tab when m_autonarrow ->
3208 if nonemptystr m_qsearch
3209 then (
3210 G.postRedisplay "outline list view tab";
3211 source#add_narrow_pattern m_qsearch;
3212 settext true E.s;
3213 coe {< m_qsearch = E.s >}
3215 else coe self
3217 | @escape when m_autonarrow ->
3218 if nonemptystr m_qsearch
3219 then source#add_narrow_pattern m_qsearch;
3220 super#key key mask
3222 | @enter | @kpenter when m_autonarrow ->
3223 if nonemptystr m_qsearch
3224 then source#add_narrow_pattern m_qsearch;
3225 super#key key mask
3227 | key when m_autonarrow && (not (Wsi.isspecialkey key)) ->
3228 let pattern = m_qsearch ^ toutf8 key in
3229 G.postRedisplay "outlinelistview autonarrow add";
3230 source#narrow pattern;
3231 settext true pattern;
3232 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3234 | key when m_autonarrow && key = @backspace ->
3235 if emptystr m_qsearch
3236 then coe self
3237 else
3238 let pattern = withoutlastutf8 m_qsearch in
3239 G.postRedisplay "outlinelistview autonarrow backspace";
3240 ignore (source#renarrow);
3241 source#narrow pattern;
3242 settext true pattern;
3243 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3245 | @up | @kpup when ctrl ->
3246 navscroll (max 0 (m_first - 1))
3248 | @down | @kpdown when ctrl ->
3249 navscroll (min (source#getitemcount - 1) (m_first + 1))
3251 | @up | @kpup -> navigate ~-1
3252 | @down | @kpdown -> navigate 1
3253 | @prior | @kpprior -> navigate ~-(fstate.maxrows)
3254 | @next | @kpnext -> navigate fstate.maxrows
3256 | @right | @kpright ->
3257 let o =
3258 if ctrl
3259 then (
3260 G.postRedisplay "outline ctrl right";
3261 {< m_pan = m_pan + 1 >}
3263 else self#updownlevel 1
3265 coe o
3267 | @left | @kpleft ->
3268 let o =
3269 if ctrl
3270 then (
3271 G.postRedisplay "outline ctrl left";
3272 {< m_pan = m_pan - 1 >}
3274 else self#updownlevel ~-1
3276 coe o
3278 | @home | @kphome ->
3279 G.postRedisplay "outline home";
3280 coe {< m_first = 0; m_active = 0 >}
3282 | @jend | @kpend ->
3283 let active = source#getitemcount - 1 in
3284 let first = max 0 (active - fstate.maxrows) in
3285 G.postRedisplay "outline end";
3286 coe {< m_active = active; m_first = first >}
3288 | _ -> super#key key mask
3289 end;;
3291 let genhistoutlines () =
3292 Config.gethist ()
3293 |> List.sort (fun (_, c1, _, _, _, _) (_, c2, _, _, _, _) ->
3294 compare c2.lastvisit c1.lastvisit)
3295 |> List.map
3296 (fun ((path, c, _, _, _, origin) as hist) ->
3297 let path = if nonemptystr origin then origin else path in
3298 let base = mbtoutf8 @@ Filename.basename path in
3299 (base ^ "\000" ^ c.title, 1, Ohistory hist)
3301 |> Array.of_list
3304 let gotohist (path, c, bookmarks, x, anchor, origin) =
3305 Config.save leavebirdseye;
3306 state.anchor <- anchor;
3307 state.bookmarks <- bookmarks;
3308 state.origin <- origin;
3309 state.x <- x;
3310 setconf conf c;
3311 let x0, y0, x1, y1 = conf.trimfuzz in
3312 wcmd "trimset %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1;
3313 reshape ~firsttime:true state.winw state.winh;
3314 opendoc path origin;
3315 setzoom c.zoom;
3318 let makecheckers () =
3319 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3320 following to say:
3321 converted by Issac Trotts. July 25, 2002 *)
3322 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3323 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3324 let id = GlTex.gen_texture () in
3325 GlTex.bind_texture ~target:`texture_2d id;
3326 GlPix.store (`unpack_alignment 1);
3327 GlTex.image2d image;
3328 List.iter (GlTex.parameter ~target:`texture_2d)
3329 [ `mag_filter `nearest; `min_filter `nearest ];
3333 let setcheckers enabled =
3334 match state.checkerstexid with
3335 | None ->
3336 if enabled then state.checkerstexid <- Some (makecheckers ())
3338 | Some checkerstexid ->
3339 if not enabled
3340 then (
3341 GlTex.delete_texture checkerstexid;
3342 state.checkerstexid <- None;
3346 let describe_location () =
3347 let fn = page_of_y state.y in
3348 let ln = page_of_y (state.y + state.winh - 1) in
3349 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
3350 let percent =
3351 if maxy <= 0
3352 then 100.
3353 else (100. *. (float state.y /. float maxy))
3355 if fn = ln
3356 then
3357 Printf.sprintf "page %d of %d [%.2f%%]"
3358 (fn+1) state.pagecount percent
3359 else
3360 Printf.sprintf
3361 "pages %d-%d of %d [%.2f%%]"
3362 (fn+1) (ln+1) state.pagecount percent
3365 let setpresentationmode v =
3366 let n = page_of_y state.y in
3367 state.anchor <- (n, 0.0, 1.0);
3368 conf.presentation <- v;
3369 if conf.fitmodel = FitPage
3370 then reqlayout conf.angle conf.fitmodel;
3371 represent ();
3374 let setbgcol (r, g, b) =
3375 let col =
3376 let r = r *. 255.0 |> truncate
3377 and g = g *. 255.0 |> truncate
3378 and b = b *. 255.0 |> truncate in
3379 r lsl 16 |> (lor) (g lsl 8) |> (lor) b
3381 Wsi.setwinbgcol col;
3384 let enterinfomode =
3385 let btos b = if b then "@Uradical" else E.s in
3386 let showextended = ref false in
3387 let leave mode _ = state.mode <- mode in
3388 let src =
3389 (object
3390 val mutable m_l = []
3391 val mutable m_a = E.a
3392 val mutable m_prev_uioh = nouioh
3393 val mutable m_prev_mode = View
3395 inherit lvsourcebase
3397 method reset prev_mode prev_uioh =
3398 m_a <- Array.of_list (List.rev m_l);
3399 m_l <- [];
3400 m_prev_mode <- prev_mode;
3401 m_prev_uioh <- prev_uioh;
3403 method int name get set =
3404 m_l <-
3405 (name, `int get, 1, Action (
3406 fun u ->
3407 let ondone s =
3408 try set (int_of_string s)
3409 with exn ->
3410 state.text <- Printf.sprintf "bad integer `%s': %s"
3411 s @@ exntos exn
3413 state.text <- E.s;
3414 let te = name ^ ": ", E.s, None, intentry, ondone, true in
3415 state.mode <- Textentry (te, leave m_prev_mode);
3417 )) :: m_l
3419 method int_with_suffix name get set =
3420 m_l <-
3421 (name, `intws get, 1, Action (
3422 fun u ->
3423 let ondone s =
3424 try set (int_of_string_with_suffix s)
3425 with exn ->
3426 state.text <- Printf.sprintf "bad integer `%s': %s"
3427 s @@ exntos exn
3429 state.text <- E.s;
3430 let te =
3431 name ^ ": ", E.s, None, intentry_with_suffix, ondone, true
3433 state.mode <- Textentry (te, leave m_prev_mode);
3435 )) :: m_l
3437 method bool ?(offset=1) ?(btos=btos) name get set =
3438 m_l <-
3439 (name, `bool (btos, get), offset, Action (
3440 fun u ->
3441 let v = get () in
3442 set (not v);
3444 )) :: m_l
3446 method color name get set =
3447 m_l <-
3448 (name, `color get, 1, Action (
3449 fun u ->
3450 let invalid = (nan, nan, nan) in
3451 let ondone s =
3452 let c =
3453 try color_of_string s
3454 with exn ->
3455 state.text <- Printf.sprintf "bad color `%s': %s"
3456 s @@ exntos exn;
3457 invalid
3459 if c <> invalid
3460 then set c;
3462 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3463 state.text <- color_to_string (get ());
3464 state.mode <- Textentry (te, leave m_prev_mode);
3466 )) :: m_l
3468 method string name get set =
3469 m_l <-
3470 (name, `string get, 1, Action (
3471 fun u ->
3472 let ondone s = set s in
3473 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3474 state.mode <- Textentry (te, leave m_prev_mode);
3476 )) :: m_l
3478 method colorspace name get set =
3479 m_l <-
3480 (name, `string get, 1, Action (
3481 fun _ ->
3482 let source =
3483 (object
3484 inherit lvsourcebase
3486 initializer
3487 m_active <- CSTE.to_int conf.colorspace;
3488 m_first <- 0;
3490 method getitemcount =
3491 Array.length CSTE.names
3492 method getitem n =
3493 (CSTE.names.(n), 0)
3494 method exit ~uioh ~cancel ~active ~first ~pan =
3495 ignore (uioh, first, pan);
3496 if not cancel then set active;
3497 None
3498 method hasaction _ = true
3499 end)
3501 state.text <- E.s;
3502 let modehash = findkeyhash conf "info" in
3503 coe (new listview ~zebra:false ~helpmode:false
3504 ~source ~trusted:true ~modehash)
3505 )) :: m_l
3507 method paxmark name get set =
3508 m_l <-
3509 (name, `string get, 1, Action (
3510 fun _ ->
3511 let source =
3512 (object
3513 inherit lvsourcebase
3515 initializer
3516 m_active <- MTE.to_int conf.paxmark;
3517 m_first <- 0;
3519 method getitemcount = Array.length MTE.names
3520 method getitem n = (MTE.names.(n), 0)
3521 method exit ~uioh ~cancel ~active ~first ~pan =
3522 ignore (uioh, first, pan);
3523 if not cancel then set active;
3524 None
3525 method hasaction _ = true
3526 end)
3528 state.text <- E.s;
3529 let modehash = findkeyhash conf "info" in
3530 coe (new listview ~zebra:false ~helpmode:false
3531 ~source ~trusted:true ~modehash)
3532 )) :: m_l
3534 method fitmodel name get set =
3535 m_l <-
3536 (name, `string get, 1, Action (
3537 fun _ ->
3538 let source =
3539 (object
3540 inherit lvsourcebase
3542 initializer
3543 m_active <- FMTE.to_int conf.fitmodel;
3544 m_first <- 0;
3546 method getitemcount = Array.length FMTE.names
3547 method getitem n = (FMTE.names.(n), 0)
3548 method exit ~uioh ~cancel ~active ~first ~pan =
3549 ignore (uioh, first, pan);
3550 if not cancel then set active;
3551 None
3552 method hasaction _ = true
3553 end)
3555 state.text <- E.s;
3556 let modehash = findkeyhash conf "info" in
3557 coe (new listview ~zebra:false ~helpmode:false
3558 ~source ~trusted:true ~modehash)
3559 )) :: m_l
3561 method caption s offset =
3562 m_l <- (s, `empty, offset, Noaction) :: m_l
3564 method caption2 s f offset =
3565 m_l <- (s, `string f, offset, Noaction) :: m_l
3567 method getitemcount = Array.length m_a
3569 method getitem n =
3570 let tostr = function
3571 | `int f -> string_of_int (f ())
3572 | `intws f -> string_with_suffix_of_int (f ())
3573 | `string f -> f ()
3574 | `color f -> color_to_string (f ())
3575 | `bool (btos, f) -> btos (f ())
3576 | `empty -> E.s
3578 let name, t, offset, _ = m_a.(n) in
3579 ((let s = tostr t in
3580 if nonemptystr s
3581 then Printf.sprintf "%s\t%s" name s
3582 else name),
3583 offset)
3585 method exit ~uioh ~cancel ~active ~first ~pan =
3586 let uiohopt =
3587 if not cancel
3588 then (
3589 let uioh =
3590 match m_a.(active) with
3591 | _, _, _, Action f -> f uioh
3592 | _, _, _, Noaction -> uioh
3594 Some uioh
3596 else None
3598 m_active <- active;
3599 m_first <- first;
3600 m_pan <- pan;
3601 uiohopt
3603 method hasaction n =
3604 match m_a.(n) with
3605 | _, _, _, Action _ -> true
3606 | _, _, _, Noaction -> false
3608 initializer m_active <- 1
3609 end)
3611 let rec fillsrc prevmode prevuioh =
3612 let sep () = src#caption E.s 0 in
3613 let colorp name get set =
3614 src#string name
3615 (fun () -> color_to_string (get ()))
3616 (fun v ->
3618 let c = color_of_string v in
3619 set c
3620 with exn ->
3621 state.text <- Printf.sprintf "bad color `%s': %s" v @@ exntos exn
3624 let oldmode = state.mode in
3625 let birdseye = isbirdseye state.mode in
3627 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
3629 src#bool "presentation mode"
3630 (fun () -> conf.presentation)
3631 (fun v -> setpresentationmode v);
3633 src#bool "ignore case in searches"
3634 (fun () -> conf.icase)
3635 (fun v -> conf.icase <- v);
3637 src#bool "preload"
3638 (fun () -> conf.preload)
3639 (fun v -> conf.preload <- v);
3641 src#bool "highlight links"
3642 (fun () -> conf.hlinks)
3643 (fun v -> conf.hlinks <- v);
3645 src#bool "under info"
3646 (fun () -> conf.underinfo)
3647 (fun v -> conf.underinfo <- v);
3649 src#bool "persistent bookmarks"
3650 (fun () -> conf.savebmarks)
3651 (fun v -> conf.savebmarks <- v);
3653 src#fitmodel "fit model"
3654 (fun () -> FMTE.to_string conf.fitmodel)
3655 (fun v -> reqlayout conf.angle (FMTE.of_int v));
3657 src#bool "trim margins"
3658 (fun () -> conf.trimmargins)
3659 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
3661 src#bool "persistent location"
3662 (fun () -> conf.jumpback)
3663 (fun v -> conf.jumpback <- v);
3665 sep ();
3666 src#int "inter-page space"
3667 (fun () -> conf.interpagespace)
3668 (fun n ->
3669 conf.interpagespace <- n;
3670 docolumns conf.columns;
3671 let pageno, py =
3672 match state.layout with
3673 | [] -> 0, 0
3674 | l :: _ ->
3675 l.pageno, l.pagey
3677 state.maxy <- calcheight ();
3678 let y = getpagey pageno in
3679 gotoxy state.x (y + py)
3682 src#int "page bias"
3683 (fun () -> conf.pagebias)
3684 (fun v -> conf.pagebias <- v);
3686 src#int "scroll step"
3687 (fun () -> conf.scrollstep)
3688 (fun n -> conf.scrollstep <- n);
3690 src#int "horizontal scroll step"
3691 (fun () -> conf.hscrollstep)
3692 (fun v -> conf.hscrollstep <- v);
3694 src#int "auto scroll step"
3695 (fun () ->
3696 match state.autoscroll with
3697 | Some step -> step
3698 | _ -> conf.autoscrollstep)
3699 (fun n ->
3700 let n = boundastep state.winh n in
3701 if state.autoscroll <> None
3702 then state.autoscroll <- Some n;
3703 conf.autoscrollstep <- n);
3705 src#int "zoom"
3706 (fun () -> truncate (conf.zoom *. 100.))
3707 (fun v -> pivotzoom ((float v) /. 100.));
3709 src#int "rotation"
3710 (fun () -> conf.angle)
3711 (fun v -> reqlayout v conf.fitmodel);
3713 src#int "scroll bar width"
3714 (fun () -> conf.scrollbw)
3715 (fun v ->
3716 conf.scrollbw <- v;
3717 reshape state.winw state.winh;
3720 src#int "scroll handle height"
3721 (fun () -> conf.scrollh)
3722 (fun v -> conf.scrollh <- v;);
3724 src#int "thumbnail width"
3725 (fun () -> conf.thumbw)
3726 (fun v ->
3727 conf.thumbw <- min 4096 v;
3728 match oldmode with
3729 | Birdseye beye ->
3730 leavebirdseye beye false;
3731 enterbirdseye ()
3732 | Textentry _
3733 | View
3734 | LinkNav _ -> ()
3737 let mode = state.mode in
3738 src#string "columns"
3739 (fun () ->
3740 match conf.columns with
3741 | Csingle _ -> "1"
3742 | Cmulti (multi, _) -> multicolumns_to_string multi
3743 | Csplit (count, _) -> "-" ^ string_of_int count
3745 (fun v ->
3746 let n, a, b = multicolumns_of_string v in
3747 setcolumns mode n a b);
3749 sep ();
3750 src#caption "Pixmap cache" 0;
3751 src#int_with_suffix "size (advisory)"
3752 (fun () -> conf.memlimit)
3753 (fun v -> conf.memlimit <- v);
3755 src#caption2 "used"
3756 (fun () -> Printf.sprintf "%s bytes, %d tiles"
3757 (string_with_suffix_of_int state.memused)
3758 (Hashtbl.length state.tilemap)) 1;
3760 sep ();
3761 src#caption "Layout" 0;
3762 src#caption2 "Dimension"
3763 (fun () ->
3764 Printf.sprintf "%dx%d (virtual %dx%d)"
3765 state.winw state.winh
3766 state.w state.maxy)
3768 if conf.debug
3769 then
3770 src#caption2 "Position" (fun () ->
3771 Printf.sprintf "%dx%d" state.x state.y
3773 else
3774 src#caption2 "Position" (fun () -> describe_location ()) 1
3777 sep ();
3778 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
3779 "Save these parameters as global defaults at exit"
3780 (fun () -> conf.bedefault)
3781 (fun v -> conf.bedefault <- v)
3784 sep ();
3785 let btos b = if b then "@Ulguillemet" else "@Urguillemet" in
3786 src#bool ~offset:0 ~btos "Extended parameters"
3787 (fun () -> !showextended)
3788 (fun v -> showextended := v; fillsrc prevmode prevuioh);
3789 if !showextended
3790 then (
3791 src#bool "checkers"
3792 (fun () -> conf.checkers)
3793 (fun v -> conf.checkers <- v; setcheckers v);
3794 src#bool "update cursor"
3795 (fun () -> conf.updatecurs)
3796 (fun v -> conf.updatecurs <- v);
3797 src#bool "scroll-bar on the left"
3798 (fun () -> conf.leftscroll)
3799 (fun v -> conf.leftscroll <- v);
3800 src#bool "verbose"
3801 (fun () -> conf.verbose)
3802 (fun v -> conf.verbose <- v);
3803 src#bool "invert colors"
3804 (fun () -> conf.invert)
3805 (fun v -> conf.invert <- v);
3806 src#bool "max fit"
3807 (fun () -> conf.maxhfit)
3808 (fun v -> conf.maxhfit <- v);
3809 src#bool "pax mode"
3810 (fun () -> conf.pax != None)
3811 (fun v ->
3812 if v
3813 then conf.pax <- Some (ref (now (), 0, 0))
3814 else conf.pax <- None);
3815 src#string "uri launcher"
3816 (fun () -> conf.urilauncher)
3817 (fun v -> conf.urilauncher <- v);
3818 src#string "path launcher"
3819 (fun () -> conf.pathlauncher)
3820 (fun v -> conf.pathlauncher <- v);
3821 src#string "tile size"
3822 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
3823 (fun v ->
3825 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
3826 conf.tilew <- max 64 w;
3827 conf.tileh <- max 64 h;
3828 flushtiles ();
3829 with exn ->
3830 state.text <- Printf.sprintf "bad tile size `%s': %s"
3831 v @@ exntos exn
3833 src#int "texture count"
3834 (fun () -> conf.texcount)
3835 (fun v ->
3836 if realloctexts v
3837 then conf.texcount <- v
3838 else impmsg "failed to set texture count please retry later"
3840 src#int "slice height"
3841 (fun () -> conf.sliceheight)
3842 (fun v ->
3843 conf.sliceheight <- v;
3844 wcmd "sliceh %d" conf.sliceheight;
3846 src#int "anti-aliasing level"
3847 (fun () -> conf.aalevel)
3848 (fun v ->
3849 conf.aalevel <- bound v 0 8;
3850 state.anchor <- getanchor ();
3851 opendoc state.path state.password;
3853 src#string "page scroll scaling factor"
3854 (fun () -> string_of_float conf.pgscale)
3855 (fun v ->
3857 let s = float_of_string v in
3858 conf.pgscale <- s
3859 with exn ->
3860 state.text <- Printf.sprintf
3861 "bad page scroll scaling factor `%s': %s" v @@ exntos exn
3864 src#int "ui font size"
3865 (fun () -> fstate.fontsize)
3866 (fun v -> setfontsize (bound v 5 100));
3867 src#int "hint font size"
3868 (fun () -> conf.hfsize)
3869 (fun v -> conf.hfsize <- bound v 5 100);
3870 colorp "background color"
3871 (fun () -> conf.bgcolor)
3872 (fun v -> conf.bgcolor <- v; setbgcol v);
3873 src#bool "crop hack"
3874 (fun () -> conf.crophack)
3875 (fun v -> conf.crophack <- v);
3876 src#string "trim fuzz"
3877 (fun () -> irect_to_string conf.trimfuzz)
3878 (fun v ->
3880 conf.trimfuzz <- irect_of_string v;
3881 if conf.trimmargins
3882 then settrim true conf.trimfuzz;
3883 with exn ->
3884 state.text <- Printf.sprintf "bad irect `%s': %s" v @@ exntos exn
3886 src#string "throttle"
3887 (fun () ->
3888 match conf.maxwait with
3889 | None -> "show place holder if page is not ready"
3890 | Some time ->
3891 if time = infinity
3892 then "wait for page to fully render"
3893 else
3894 "wait " ^ string_of_float time
3895 ^ " seconds before showing placeholder"
3897 (fun v ->
3899 let f = float_of_string v in
3900 if f <= 0.0
3901 then conf.maxwait <- None
3902 else conf.maxwait <- Some f
3903 with exn ->
3904 state.text <- Printf.sprintf "bad time `%s': %s" v @@ exntos exn
3906 src#string "ghyll scroll"
3907 (fun () ->
3908 match conf.ghyllscroll with
3909 | None -> E.s
3910 | Some nab -> ghyllscroll_to_string nab
3912 (fun v ->
3913 try conf.ghyllscroll <- ghyllscroll_of_string v
3914 with
3915 | Failure msg ->
3916 state.text <- Printf.sprintf "bad ghyll `%s': %s" v msg
3917 | exn ->
3918 state.text <- Printf.sprintf "bad ghyll `%s': %s" v @@ exntos exn
3920 src#string "selection command"
3921 (fun () -> conf.selcmd)
3922 (fun v -> conf.selcmd <- v);
3923 src#string "synctex command"
3924 (fun () -> conf.stcmd)
3925 (fun v -> conf.stcmd <- v);
3926 src#string "pax command"
3927 (fun () -> conf.paxcmd)
3928 (fun v -> conf.paxcmd <- v);
3929 src#string "ask password command"
3930 (fun () -> conf.passcmd)
3931 (fun v -> conf.passcmd <- v);
3932 src#string "save path command"
3933 (fun () -> conf.savecmd)
3934 (fun v -> conf.savecmd <- v);
3935 src#colorspace "color space"
3936 (fun () -> CSTE.to_string conf.colorspace)
3937 (fun v ->
3938 conf.colorspace <- CSTE.of_int v;
3939 wcmd "cs %d" v;
3940 load state.layout;
3942 src#paxmark "pax mark method"
3943 (fun () -> MTE.to_string conf.paxmark)
3944 (fun v -> conf.paxmark <- MTE.of_int v);
3945 if bousable () && !opengl_has_pbo
3946 then
3947 src#bool "use PBO"
3948 (fun () -> conf.usepbo)
3949 (fun v -> conf.usepbo <- v);
3950 src#bool "mouse wheel scrolls pages"
3951 (fun () -> conf.wheelbypage)
3952 (fun v -> conf.wheelbypage <- v);
3953 src#bool "open remote links in a new instance"
3954 (fun () -> conf.riani)
3955 (fun v -> conf.riani <- v);
3956 src#bool "edit annotations inline"
3957 (fun () -> conf.annotinline)
3958 (fun v -> conf.annotinline <- v);
3959 src#bool "coarse positioning in presentation mode"
3960 (fun () -> conf.coarseprespos)
3961 (fun v -> conf.coarseprespos <- v);
3964 sep ();
3965 src#caption "Document" 0;
3966 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
3967 src#caption2 "Pages"
3968 (fun () -> string_of_int state.pagecount) 1;
3969 src#caption2 "Dimensions"
3970 (fun () -> string_of_int (List.length state.pdims)) 1;
3971 if conf.trimmargins
3972 then (
3973 sep ();
3974 src#caption "Trimmed margins" 0;
3975 src#caption2 "Dimensions"
3976 (fun () -> string_of_int (List.length state.pdims)) 1;
3979 sep ();
3980 src#caption "OpenGL" 0;
3981 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
3982 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
3984 sep ();
3985 src#caption "Location" 0;
3986 if nonemptystr state.origin
3987 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
3988 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
3990 src#reset prevmode prevuioh;
3992 fun () ->
3993 state.text <- E.s;
3994 resetmstate ();
3995 let prevmode = state.mode
3996 and prevuioh = state.uioh in
3997 fillsrc prevmode prevuioh;
3998 let source = (src :> lvsource) in
3999 let modehash = findkeyhash conf "info" in
4000 state.uioh <- coe (object (self)
4001 inherit listview ~zebra:false ~helpmode:false
4002 ~source ~trusted:true ~modehash as super
4003 val mutable m_prevmemused = 0
4004 method! infochanged = function
4005 | Memused ->
4006 if m_prevmemused != state.memused
4007 then (
4008 m_prevmemused <- state.memused;
4009 G.postRedisplay "memusedchanged";
4011 | Pdim -> G.postRedisplay "pdimchanged"
4012 | Docinfo -> fillsrc prevmode prevuioh
4014 method! key key mask =
4015 if not (Wsi.withctrl mask)
4016 then
4017 match key with
4018 | @left | @kpleft -> coe (self#updownlevel ~-1)
4019 | @right | @kpright -> coe (self#updownlevel 1)
4020 | _ -> super#key key mask
4021 else super#key key mask
4022 end);
4023 G.postRedisplay "info";
4026 let enterhelpmode =
4027 let source =
4028 (object
4029 inherit lvsourcebase
4030 method getitemcount = Array.length state.help
4031 method getitem n =
4032 let s, l, _ = state.help.(n) in
4033 (s, l)
4035 method exit ~uioh ~cancel ~active ~first ~pan =
4036 let optuioh =
4037 if not cancel
4038 then (
4039 match state.help.(active) with
4040 | _, _, Action f -> Some (f uioh)
4041 | _, _, Noaction -> Some uioh
4043 else None
4045 m_active <- active;
4046 m_first <- first;
4047 m_pan <- pan;
4048 optuioh
4050 method hasaction n =
4051 match state.help.(n) with
4052 | _, _, Action _ -> true
4053 | _, _, Noaction -> false
4055 initializer
4056 m_active <- -1
4057 end)
4058 in fun () ->
4059 let modehash = findkeyhash conf "help" in
4060 resetmstate ();
4061 state.uioh <- coe (new listview
4062 ~zebra:false ~helpmode:true
4063 ~source ~trusted:true ~modehash);
4064 G.postRedisplay "help";
4067 let entermsgsmode =
4068 let msgsource =
4069 (object
4070 inherit lvsourcebase
4071 val mutable m_items = E.a
4073 method getitemcount = 1 + Array.length m_items
4075 method getitem n =
4076 if n = 0
4077 then "[Clear]", 0
4078 else m_items.(n-1), 0
4080 method exit ~uioh ~cancel ~active ~first ~pan =
4081 ignore uioh;
4082 if not cancel
4083 then (
4084 if active = 0
4085 then Buffer.clear state.errmsgs;
4087 m_active <- active;
4088 m_first <- first;
4089 m_pan <- pan;
4090 None
4092 method hasaction n =
4093 n = 0
4095 method reset =
4096 state.newerrmsgs <- false;
4097 let l = Str.split newlinere (Buffer.contents state.errmsgs) in
4098 m_items <- Array.of_list l
4100 initializer
4101 m_active <- 0
4102 end)
4103 in fun () ->
4104 state.text <- E.s;
4105 resetmstate ();
4106 msgsource#reset;
4107 let source = (msgsource :> lvsource) in
4108 let modehash = findkeyhash conf "listview" in
4109 state.uioh <- coe (object
4110 inherit listview ~zebra:false ~helpmode:false
4111 ~source ~trusted:false ~modehash as super
4112 method! display =
4113 if state.newerrmsgs
4114 then msgsource#reset;
4115 super#display
4116 end);
4117 G.postRedisplay "msgs";
4120 let getusertext s =
4121 let editor = getenvwithdef "EDITOR" E.s in
4122 if emptystr editor
4123 then E.s
4124 else
4125 let tmppath = Filename.temp_file "llpp" "note" in
4126 if nonemptystr s
4127 then (
4128 let oc = open_out tmppath in
4129 output_string oc s;
4130 close_out oc;
4132 let execstr = editor ^ " " ^ tmppath in
4133 let s =
4134 match spawn execstr [] with
4135 | (exception exn) ->
4136 impmsg "spawn(%S) failed: %s" execstr @@ exntos exn;
4138 | pid ->
4139 match Unix.waitpid [] pid with
4140 | (exception exn) ->
4141 impmsg "waitpid(%d) failed: %s" pid @@ exntos exn;
4143 | (_pid, status) ->
4144 match status with
4145 | Unix.WEXITED 0 -> filecontents tmppath
4146 | Unix.WEXITED n ->
4147 impmsg "editor process(%s) exited abnormally: %d" execstr n;
4149 | Unix.WSIGNALED n ->
4150 impmsg "editor process(%s) was killed by signal %d" execstr n;
4152 | Unix.WSTOPPED n ->
4153 impmsg "editor(%s) process was stopped by signal %d" execstr n;
4156 match Unix.unlink tmppath with
4157 | (exception exn) ->
4158 impmsg "failed to ulink %S: %s" tmppath @@ exntos exn;
4160 | () -> s
4163 let enterannotmode opaque slinkindex =
4164 let msgsource =
4165 (object
4166 inherit lvsourcebase
4167 val mutable m_text = E.s
4168 val mutable m_items = E.a
4170 method getitemcount = Array.length m_items
4172 method getitem n =
4173 let label, _func = m_items.(n) in
4174 label, 0
4176 method exit ~uioh ~cancel ~active ~first ~pan =
4177 ignore (uioh, first, pan);
4178 if not cancel
4179 then (
4180 let _label, func = m_items.(active) in
4181 func ()
4183 None
4185 method hasaction n = nonemptystr @@ fst m_items.(n)
4187 method reset s =
4188 let rec split accu b i =
4189 let p = b+i in
4190 if p = String.length s
4191 then (String.sub s b (p-b), unit) :: accu
4192 else
4193 if (i > 70 && s.[p] = ' ') || s.[p] = '\r' || s.[p] = '\n'
4194 then
4195 let ss = if i = 0 then E.s else String.sub s b i in
4196 split ((ss, unit)::accu) (p+1) 0
4197 else
4198 split accu b (i+1)
4200 let cleanup () =
4201 wcmd "freepage %s" (~> opaque);
4202 let keys =
4203 Hashtbl.fold (fun key opaque' accu ->
4204 if opaque' = opaque'
4205 then key :: accu else accu) state.pagemap []
4207 List.iter (Hashtbl.remove state.pagemap) keys;
4208 flushtiles ();
4209 gotoxy state.x state.y
4211 let dele () =
4212 delannot opaque slinkindex;
4213 cleanup ();
4215 let edit inline () =
4216 let update s =
4217 if emptystr s
4218 then dele ()
4219 else (
4220 modannot opaque slinkindex s;
4221 cleanup ();
4224 if inline
4225 then
4226 let mode = state.mode in
4227 state.mode <-
4228 Textentry (
4229 ("annotation: ", m_text, None, textentry, update, true),
4230 fun _ -> state.mode <- mode);
4231 state.text <- E.s;
4232 enttext ();
4233 else
4234 let s = getusertext m_text in
4235 update s
4237 m_text <- s;
4238 m_items <-
4239 ( "[Copy]", fun () -> selstring m_text)
4240 :: ("[Delete]", dele)
4241 :: ("[Edit]", edit conf.annotinline)
4242 :: (E.s, unit)
4243 :: split [] 0 0 |> List.rev |> Array.of_list
4245 initializer
4246 m_active <- 0
4247 end)
4249 state.text <- E.s;
4250 let s = getannotcontents opaque slinkindex in
4251 resetmstate ();
4252 msgsource#reset s;
4253 let source = (msgsource :> lvsource) in
4254 let modehash = findkeyhash conf "listview" in
4255 state.uioh <- coe (object
4256 inherit listview ~zebra:false ~helpmode:false
4257 ~source ~trusted:false ~modehash
4258 end);
4259 G.postRedisplay "enterannotmode";
4262 let gotounder under =
4263 let getpath filename =
4264 let path =
4265 if nonemptystr filename
4266 then
4267 if Filename.is_relative filename
4268 then
4269 let dir = Filename.dirname state.path in
4270 let dir =
4271 if Filename.is_implicit dir
4272 then Filename.concat (Sys.getcwd ()) dir
4273 else dir
4275 Filename.concat dir filename
4276 else filename
4277 else E.s
4279 if Sys.file_exists path
4280 then path
4281 else E.s
4283 match under with
4284 | Ulinkgoto (pageno, top) ->
4285 if pageno >= 0
4286 then (
4287 addnav ();
4288 let top =
4289 if conf.presentation && conf.coarseprespos
4290 then 0
4291 else top
4293 gotopage1 pageno top;
4296 | Ulinkuri s -> gotouri s
4298 | Uremote (filename, pageno) ->
4299 let path = getpath filename in
4300 if nonemptystr path
4301 then (
4302 if conf.riani
4303 then
4304 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
4305 match spawn command [] with
4306 | _pid -> ()
4307 | (exception exn) ->
4308 dolog "failed to execute `%s': %s" command @@ exntos exn
4309 else
4310 let anchor = getanchor () in
4311 let ranchor = state.path, state.password, anchor, state.origin in
4312 state.origin <- E.s;
4313 state.anchor <- (pageno, 0.0, 0.0);
4314 state.ranchors <- ranchor :: state.ranchors;
4315 opendoc path E.s;
4317 else impmsg "cannot find %s" filename
4319 | Uremotedest (filename, destname) ->
4320 let path = getpath filename in
4321 if nonemptystr path
4322 then (
4323 if conf.riani
4324 then
4325 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
4326 match spawn command [] with
4327 | (exception exn) ->
4328 dolog "failed to execute `%s': %s" command @@ exntos exn
4329 | _pid -> ()
4330 else
4331 let anchor = getanchor () in
4332 let ranchor = state.path, state.password, anchor, state.origin in
4333 state.origin <- E.s;
4334 state.nameddest <- destname;
4335 state.ranchors <- ranchor :: state.ranchors;
4336 opendoc path E.s;
4338 else impmsg "cannot find %s" filename
4340 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4341 | Uannotation (opaque, slinkindex) -> enterannotmode opaque slinkindex
4344 let gotooutline (_, _, kind) =
4345 match kind with
4346 | Onone -> ()
4347 | Oanchor anchor ->
4348 let (pageno, y, _) = anchor in
4349 let y = getanchory
4350 (if conf.presentation then (pageno, y, 1.0) else anchor)
4352 addnav ();
4353 gotoghyll y
4354 | Ouri uri -> gotounder (Ulinkuri uri)
4355 | Olaunch cmd -> gotounder (Ulaunch cmd)
4356 | Oremote remote -> gotounder (Uremote remote)
4357 | Ohistory hist -> gotohist hist
4358 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
4361 class outlinesoucebase fetchoutlines = object (self)
4362 inherit lvsourcebase
4363 val mutable m_items = E.a
4364 val mutable m_minfo = E.a
4365 val mutable m_orig_items = E.a
4366 val mutable m_orig_minfo = E.a
4367 val mutable m_narrow_patterns = []
4368 val mutable m_gen = -1
4370 method getitemcount = Array.length m_items
4372 method getitem n =
4373 let s, n, _ = m_items.(n) in
4374 (s, n+0)
4376 method exit ~(uioh:uioh) ~cancel ~active ~(first:int) ~pan :
4377 uioh option =
4378 ignore (uioh, first);
4379 let items, minfo =
4380 if m_narrow_patterns = []
4381 then m_orig_items, m_orig_minfo
4382 else m_items, m_minfo
4384 m_pan <- pan;
4385 if not cancel
4386 then (
4387 m_items <- items;
4388 m_minfo <- minfo;
4389 gotooutline m_items.(active);
4391 else (
4392 m_items <- items;
4393 m_minfo <- minfo;
4395 None
4397 method hasaction (_:int) = true
4399 method greetmsg =
4400 if Array.length m_items != Array.length m_orig_items
4401 then
4402 let s =
4403 match m_narrow_patterns with
4404 | one :: [] -> one
4405 | many -> String.concat "@Uellipsis" (List.rev many)
4407 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
4408 else E.s
4410 method statestr =
4411 match m_narrow_patterns with
4412 | [] -> E.s
4413 | one :: [] -> one
4414 | head :: _ -> "@Uellipsis" ^ head
4416 method narrow pattern =
4417 match Str.regexp_case_fold pattern with
4418 | (exception _) -> ()
4419 | re ->
4420 let rec loop accu minfo n =
4421 if n = -1
4422 then (
4423 m_items <- Array.of_list accu;
4424 m_minfo <- Array.of_list minfo;
4426 else
4427 let (s, _, _) as o = m_items.(n) in
4428 let accu, minfo =
4429 match Str.search_forward re s 0 with
4430 | (exception Not_found) -> accu, minfo
4431 | first -> o :: accu, (first, Str.match_end ()) :: minfo
4433 loop accu minfo (n-1)
4435 loop [] [] (Array.length m_items - 1)
4437 method! getminfo = m_minfo
4439 method denarrow =
4440 m_orig_items <- fetchoutlines ();
4441 m_minfo <- m_orig_minfo;
4442 m_items <- m_orig_items
4444 method add_narrow_pattern pattern =
4445 m_narrow_patterns <- pattern :: m_narrow_patterns
4447 method del_narrow_pattern =
4448 match m_narrow_patterns with
4449 | _ :: rest -> m_narrow_patterns <- rest
4450 | [] -> ()
4452 method renarrow =
4453 self#denarrow;
4454 match m_narrow_patterns with
4455 | pattern :: [] -> self#narrow pattern; pattern
4456 | list ->
4457 List.fold_left (fun accu pattern ->
4458 self#narrow pattern;
4459 pattern ^ "@Uellipsis" ^ accu) E.s list
4461 method calcactive (_:anchor) = 0
4463 method reset anchor items =
4464 if state.gen != m_gen
4465 then (
4466 m_orig_items <- items;
4467 m_items <- items;
4468 m_narrow_patterns <- [];
4469 m_minfo <- E.a;
4470 m_orig_minfo <- E.a;
4471 m_gen <- state.gen;
4473 else (
4474 if items != m_orig_items
4475 then (
4476 m_orig_items <- items;
4477 if m_narrow_patterns == []
4478 then m_items <- items;
4481 let active = self#calcactive anchor in
4482 m_active <- active;
4483 m_first <- firstof m_first active
4487 let outlinesource fetchoutlines =
4488 (object
4489 inherit outlinesoucebase fetchoutlines
4490 method! calcactive anchor =
4491 let rely = getanchory anchor in
4492 let rec loop n best bestd =
4493 if n = Array.length m_items
4494 then best
4495 else
4496 let _, _, kind = m_items.(n) in
4497 match kind with
4498 | Oanchor anchor ->
4499 let orely = getanchory anchor in
4500 let d = abs (orely - rely) in
4501 if d < bestd
4502 then loop (n+1) n d
4503 else loop (n+1) best bestd
4504 | Onone | Oremote _ | Olaunch _
4505 | Oremotedest _ | Ouri _ | Ohistory _ ->
4506 loop (n+1) best bestd
4508 loop 0 ~-1 max_int
4509 end)
4512 let enteroutlinemode, enterbookmarkmode, enterhistmode =
4513 let mkselector sourcetype =
4514 let fetchoutlines () =
4515 match sourcetype with
4516 | `bookmarks -> Array.of_list state.bookmarks
4517 | `outlines -> state.outlines
4518 | `history -> genhistoutlines ()
4520 let source =
4521 if sourcetype = `history
4522 then new outlinesoucebase fetchoutlines
4523 else outlinesource fetchoutlines
4525 fun errmsg ->
4526 let outlines = fetchoutlines () in
4527 if Array.length outlines = 0
4528 then (
4529 showtext ' ' errmsg;
4531 else (
4532 resetmstate ();
4533 Wsi.setcursor Wsi.CURSOR_INHERIT;
4534 let anchor = getanchor () in
4535 source#reset anchor outlines;
4536 state.text <- source#greetmsg;
4537 state.uioh <-
4538 coe (new outlinelistview ~zebra:(sourcetype=`history) ~source);
4539 G.postRedisplay "enter selector";
4542 let mkenter sourcetype errmsg =
4543 let enter = mkselector sourcetype in
4544 fun () -> enter errmsg
4546 (**)mkenter `outlines "document has no outline"
4547 , mkenter `bookmarks "document has no bookmarks (yet)"
4548 , mkenter `history "history is empty"
4551 let quickbookmark ?title () =
4552 match state.layout with
4553 | [] -> ()
4554 | l :: _ ->
4555 let title =
4556 match title with
4557 | None ->
4558 let tm = Unix.localtime (now ()) in
4559 Printf.sprintf
4560 "Quick (page %d) (bookmarked at %02d/%02d/%d %02d:%02d)"
4561 (l.pageno+1)
4562 tm.Unix.tm_mday
4563 (tm.Unix.tm_mon+1)
4564 (tm.Unix.tm_year + 1900)
4565 tm.Unix.tm_hour
4566 tm.Unix.tm_min
4567 | Some title -> title
4569 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4572 let setautoscrollspeed step goingdown =
4573 let incr = max 1 ((abs step) / 2) in
4574 let incr = if goingdown then incr else -incr in
4575 let astep = boundastep state.winh (step + incr) in
4576 state.autoscroll <- Some astep;
4579 let canpan () =
4580 match conf.columns with
4581 | Csplit _ -> true
4582 | Csingle _ | Cmulti _ -> state.x != 0 || conf.zoom > 1.0
4585 let panbound x = bound x (-state.w) state.winw;;
4587 let existsinrow pageno (columns, coverA, coverB) p =
4588 let last = ((pageno - coverA) mod columns) + columns in
4589 let rec any = function
4590 | [] -> false
4591 | l :: rest ->
4592 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4593 then p l
4594 else (
4595 if not (p l)
4596 then (if l.pageno = last then false else any rest)
4597 else true
4600 any state.layout
4603 let nextpage () =
4604 match state.layout with
4605 | [] ->
4606 let pageno = page_of_y state.y in
4607 gotoghyll (getpagey (pageno+1))
4608 | l :: rest ->
4609 match conf.columns with
4610 | Csingle _ ->
4611 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4612 then
4613 let y = clamp (pgscale state.winh) in
4614 gotoghyll y
4615 else
4616 let pageno = min (l.pageno+1) (state.pagecount-1) in
4617 gotoghyll (getpagey pageno)
4618 | Cmulti ((c, _, _) as cl, _) ->
4619 if conf.presentation
4620 && (existsinrow l.pageno cl
4621 (fun l -> l.pageh > l.pagey + l.pagevh))
4622 then
4623 let y = clamp (pgscale state.winh) in
4624 gotoghyll y
4625 else
4626 let pageno = min (l.pageno+c) (state.pagecount-1) in
4627 gotoghyll (getpagey pageno)
4628 | Csplit (n, _) ->
4629 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4630 then
4631 let pagey, pageh = getpageyh l.pageno in
4632 let pagey = pagey + pageh * l.pagecol in
4633 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4634 gotoghyll (pagey + pageh + ips)
4637 let prevpage () =
4638 match state.layout with
4639 | [] ->
4640 let pageno = page_of_y state.y in
4641 gotoghyll (getpagey (pageno-1))
4642 | l :: _ ->
4643 match conf.columns with
4644 | Csingle _ ->
4645 if conf.presentation && l.pagey != 0
4646 then
4647 gotoghyll (clamp (pgscale ~-(state.winh)))
4648 else
4649 let pageno = max 0 (l.pageno-1) in
4650 gotoghyll (getpagey pageno)
4651 | Cmulti ((c, _, coverB) as cl, _) ->
4652 if conf.presentation &&
4653 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4654 then
4655 gotoghyll (clamp (pgscale ~-(state.winh)))
4656 else
4657 let decr =
4658 if l.pageno = state.pagecount - coverB
4659 then 1
4660 else c
4662 let pageno = max 0 (l.pageno-decr) in
4663 gotoghyll (getpagey pageno)
4664 | Csplit (n, _) ->
4665 let y =
4666 if l.pagecol = 0
4667 then
4668 if l.pageno = 0
4669 then l.pagey
4670 else
4671 let pageno = max 0 (l.pageno-1) in
4672 let pagey, pageh = getpageyh pageno in
4673 pagey + (n-1)*pageh
4674 else
4675 let pagey, pageh = getpageyh l.pageno in
4676 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4678 gotoghyll y
4681 let save () =
4682 if emptystr conf.savecmd
4683 then error "don't know where to save modified document"
4684 else
4685 let savecmd = Str.global_replace percentsre state.path conf.savecmd in
4686 let path =
4687 getcmdoutput
4688 (fun s -> error "failed to obtain path to the saved copy: %s" s)
4689 savecmd
4691 if nonemptystr path
4692 then
4693 let tmp = path ^ ".tmp" in
4694 savedoc tmp;
4695 Unix.rename tmp path;
4698 let viewkeyboard key mask =
4699 let enttext te =
4700 let mode = state.mode in
4701 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4702 state.text <- E.s;
4703 enttext ();
4704 G.postRedisplay "view:enttext"
4706 let ctrl = Wsi.withctrl mask in
4707 let key = Wsi.keypadtodigitkey key in
4708 match key with
4709 | @Q -> exit 0
4711 | @W ->
4712 if hasunsavedchanges ()
4713 then save ()
4715 | @insert ->
4716 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4717 then (
4718 state.mode <- LinkNav (Ltgendir 0);
4719 gotoxy state.x state.y;
4721 else impmsg "keyboard link navigation does not work under rotation"
4723 | @escape | @q ->
4724 begin match state.mstate with
4725 | Mzoomrect _ ->
4726 resetmstate ();
4727 G.postRedisplay "kill rect";
4728 | Msel _
4729 | Mpan _
4730 | Mscrolly | Mscrollx
4731 | Mzoom _
4732 | Mnone ->
4733 begin match state.mode with
4734 | LinkNav _ ->
4735 state.mode <- View;
4736 G.postRedisplay "esc leave linknav"
4737 | Birdseye _
4738 | Textentry _
4739 | View ->
4740 match state.ranchors with
4741 | [] -> raise Quit
4742 | (path, password, anchor, origin) :: rest ->
4743 state.ranchors <- rest;
4744 state.anchor <- anchor;
4745 state.origin <- origin;
4746 state.nameddest <- E.s;
4747 opendoc path password
4748 end;
4749 end;
4751 | @backspace ->
4752 gotoghyll (getnav ~-1)
4754 | @o ->
4755 enteroutlinemode ()
4757 | @H ->
4758 enterhistmode ()
4760 | @u ->
4761 state.rects <- [];
4762 state.text <- E.s;
4763 Hashtbl.iter (fun _ opaque ->
4764 clearmark opaque;
4765 Hashtbl.clear state.prects) state.pagemap;
4766 G.postRedisplay "dehighlight";
4768 | @slash | @question ->
4769 let ondone isforw s =
4770 cbput state.hists.pat s;
4771 state.searchpattern <- s;
4772 search s isforw
4774 let s = String.make 1 (Char.chr key) in
4775 enttext (s, E.s, Some (onhist state.hists.pat),
4776 textentry, ondone (key = @slash), true)
4778 | @plus | @kpplus | @equals when ctrl ->
4779 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4780 pivotzoom (conf.zoom +. incr)
4782 | @plus | @kpplus ->
4783 let ondone s =
4784 let n =
4785 try int_of_string s with exn ->
4786 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn;
4787 max_int
4789 if n != max_int
4790 then (
4791 conf.pagebias <- n;
4792 state.text <- "page bias is now " ^ string_of_int n;
4795 enttext ("page bias: ", E.s, None, intentry, ondone, true)
4797 | @minus | @kpminus when ctrl ->
4798 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4799 pivotzoom (max 0.01 (conf.zoom -. decr))
4801 | @minus | @kpminus ->
4802 let ondone msg = state.text <- msg in
4803 enttext (
4804 "option [acfhilpstvxACFPRSZTISM]: ", E.s, None,
4805 optentry state.mode, ondone, true
4808 | @0 when ctrl ->
4809 if conf.zoom = 1.0
4810 then gotoxy 0 state.y
4811 else setzoom 1.0
4813 | (@1 | @2) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
4814 let cols =
4815 match conf.columns with
4816 | Csingle _ | Cmulti _ -> 1
4817 | Csplit (n, _) -> n
4819 let h = state.winh -
4820 conf.interpagespace lsl (if conf.presentation then 1 else 0)
4822 let zoom = zoomforh state.winw h 0 cols in
4823 if zoom > 0.0 && (key = @2 || zoom < 1.0)
4824 then setzoom zoom
4826 | @3 when ctrl ->
4827 let fm =
4828 match conf.fitmodel with
4829 | FitWidth -> FitProportional
4830 | FitProportional -> FitPage
4831 | FitPage -> FitWidth
4833 state.text <- "fit model: " ^ FMTE.to_string fm;
4834 reqlayout conf.angle fm
4836 | @4 when ctrl -> (* ctrl-4 *)
4837 let zoom = getmaxw () /. float state.winw in
4838 if zoom > 0.0 then setzoom zoom
4840 | @F9 ->
4841 togglebirdseye ()
4843 | @9 when ctrl ->
4844 togglebirdseye ()
4846 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4847 when not ctrl -> (* 0..9 *)
4848 let ondone s =
4849 let n =
4850 try int_of_string s with exn ->
4851 state.text <- Printf.sprintf "bad integer `%s': %s" s @@ exntos exn;
4854 if n >= 0
4855 then (
4856 addnav ();
4857 cbput state.hists.pag (string_of_int n);
4858 gotopage1 (n + conf.pagebias - 1) 0;
4861 let pageentry text key =
4862 match Char.unsafe_chr key with
4863 | 'g' -> TEdone text
4864 | _ -> intentry text key
4866 let text = String.make 1 (Char.chr key) in
4867 enttext (":", text, Some (onhist state.hists.pag),
4868 pageentry, ondone, true)
4870 | @b ->
4871 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
4872 reshape state.winw state.winh;
4874 | @B ->
4875 state.bzoom <- not state.bzoom;
4876 state.rects <- [];
4877 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
4879 | @l ->
4880 conf.hlinks <- not conf.hlinks;
4881 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4882 G.postRedisplay "toggle highlightlinks";
4884 | @F ->
4885 if conf.angle mod 360 = 0
4886 then (
4887 state.glinks <- true;
4888 let mode = state.mode in
4889 state.mode <-
4890 Textentry (
4891 (":", E.s, None, linknentry, linknact gotounder, false),
4892 (fun _ ->
4893 state.glinks <- false;
4894 state.mode <- mode)
4896 state.text <- E.s;
4897 G.postRedisplay "view:linkent(F)"
4899 else impmsg "hint mode does not work under rotation"
4901 | @y ->
4902 state.glinks <- true;
4903 let mode = state.mode in
4904 state.mode <- Textentry (
4906 ":", E.s, None, linknentry, linknact (fun under ->
4907 selstring (undertext under);
4908 ), false
4910 fun _ ->
4911 state.glinks <- false;
4912 state.mode <- mode
4914 state.text <- E.s;
4915 G.postRedisplay "view:linkent"
4917 | @a ->
4918 begin match state.autoscroll with
4919 | Some step ->
4920 conf.autoscrollstep <- step;
4921 state.autoscroll <- None
4922 | None ->
4923 if conf.autoscrollstep = 0
4924 then state.autoscroll <- Some 1
4925 else state.autoscroll <- Some conf.autoscrollstep
4928 | @p when ctrl ->
4929 launchpath () (* XXX where do error messages go? *)
4931 | @P ->
4932 setpresentationmode (not conf.presentation);
4933 showtext ' ' ("presentation mode " ^
4934 if conf.presentation then "on" else "off");
4936 | @f ->
4937 if List.mem Wsi.Fullscreen state.winstate
4938 then Wsi.reshape conf.cwinw conf.cwinh
4939 else Wsi.fullscreen ()
4941 | @p | @N ->
4942 search state.searchpattern false
4944 | @n | @F3 ->
4945 search state.searchpattern true
4947 | @t ->
4948 begin match state.layout with
4949 | [] -> ()
4950 | l :: _ ->
4951 gotoghyll (getpagey l.pageno)
4954 | @space ->
4955 nextpage ()
4957 | @delete | @kpdelete -> (* delete *)
4958 prevpage ()
4960 | @equals ->
4961 showtext ' ' (describe_location ());
4963 | @w ->
4964 begin match state.layout with
4965 | [] -> ()
4966 | l :: _ ->
4967 Wsi.reshape l.pagew l.pageh;
4968 G.postRedisplay "w"
4971 | @apos ->
4972 enterbookmarkmode ()
4974 | @h | @F1 ->
4975 enterhelpmode ()
4977 | @i ->
4978 enterinfomode ()
4980 | @e when Buffer.length state.errmsgs > 0 ->
4981 entermsgsmode ()
4983 | @m ->
4984 let ondone s =
4985 match state.layout with
4986 | l :: _ ->
4987 if nonemptystr s
4988 then
4989 state.bookmarks <-
4990 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4991 | _ -> ()
4993 enttext ("bookmark: ", E.s, None, textentry, ondone, true)
4995 | @tilde ->
4996 quickbookmark ();
4997 showtext ' ' "Quick bookmark added";
4999 | @z ->
5000 begin match state.layout with
5001 | l :: _ ->
5002 let rect = getpdimrect l.pagedimno in
5003 let w, h =
5004 if conf.crophack
5005 then
5006 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5007 truncate (1.2 *. (rect.(3) -. rect.(0))))
5008 else
5009 (truncate (rect.(1) -. rect.(0)),
5010 truncate (rect.(3) -. rect.(0)))
5012 let w = truncate ((float w)*.conf.zoom)
5013 and h = truncate ((float h)*.conf.zoom) in
5014 if w != 0 && h != 0
5015 then (
5016 state.anchor <- getanchor ();
5017 Wsi.reshape w (h + conf.interpagespace)
5019 G.postRedisplay "z";
5021 | [] -> ()
5024 | @x -> state.roam ()
5026 | @Lt | @Gt ->
5027 reqlayout (conf.angle +
5028 (if key = @Gt then 30 else -30)) conf.fitmodel
5030 | @Lb | @Rb ->
5031 conf.colorscale <-
5032 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5034 G.postRedisplay "brightness";
5036 | @c when state.mode = View ->
5037 if Wsi.withalt mask
5038 then (
5039 if conf.zoom > 1.0
5040 then
5041 let m = (state.winw - state.w) / 2 in
5042 gotoxy_and_clear_text m state.y
5044 else
5045 let (c, a, b), z =
5046 match state.prevcolumns with
5047 | None -> (1, 0, 0), 1.0
5048 | Some (columns, z) ->
5049 let cab =
5050 match columns with
5051 | Csplit (c, _) -> -c, 0, 0
5052 | Cmulti ((c, a, b), _) -> c, a, b
5053 | Csingle _ -> 1, 0, 0
5055 cab, z
5057 setcolumns View c a b;
5058 setzoom z
5060 | @down | @up when ctrl && Wsi.withshift mask ->
5061 let zoom, x = state.prevzoom in
5062 setzoom zoom;
5063 state.x <- x;
5065 | @k | @up | @kpup ->
5066 begin match state.autoscroll with
5067 | None ->
5068 begin match state.mode with
5069 | Birdseye beye -> upbirdseye 1 beye
5070 | Textentry _
5071 | View
5072 | LinkNav _ ->
5073 if ctrl
5074 then gotoxy_and_clear_text state.x (clamp ~-(state.winh/2))
5075 else (
5076 if not (Wsi.withshift mask) && conf.presentation
5077 then prevpage ()
5078 else gotoghyll1 true (clamp (-conf.scrollstep))
5081 | Some n ->
5082 setautoscrollspeed n false
5085 | @j | @down | @kpdown ->
5086 begin match state.autoscroll with
5087 | None ->
5088 begin match state.mode with
5089 | Birdseye beye -> downbirdseye 1 beye
5090 | Textentry _
5091 | View
5092 | LinkNav _ ->
5093 if ctrl
5094 then gotoxy_and_clear_text state.x (clamp (state.winh/2))
5095 else (
5096 if not (Wsi.withshift mask) && conf.presentation
5097 then nextpage ()
5098 else gotoghyll1 true (clamp (conf.scrollstep))
5101 | Some n ->
5102 setautoscrollspeed n true
5105 | @left | @right | @kpleft | @kpright when not (Wsi.withalt mask) ->
5106 if canpan ()
5107 then
5108 let dx =
5109 if ctrl
5110 then state.winw / 2
5111 else conf.hscrollstep
5113 let dx = if key = @left || key = @kpleft then dx else -dx in
5114 gotoxy_and_clear_text (panbound (state.x + dx)) state.y
5115 else (
5116 state.text <- E.s;
5117 G.postRedisplay "left/right"
5120 | @prior | @kpprior ->
5121 let y =
5122 if ctrl
5123 then
5124 match state.layout with
5125 | [] -> state.y
5126 | l :: _ -> state.y - l.pagey
5127 else
5128 clamp (pgscale (-state.winh))
5130 gotoghyll y
5132 | @next | @kpnext ->
5133 let y =
5134 if ctrl
5135 then
5136 match List.rev state.layout with
5137 | [] -> state.y
5138 | l :: _ -> getpagey l.pageno
5139 else
5140 clamp (pgscale state.winh)
5142 gotoghyll y
5144 | @g | @home | @kphome ->
5145 addnav ();
5146 gotoghyll 0
5147 | @G | @jend | @kpend ->
5148 addnav ();
5149 gotoghyll (clamp state.maxy)
5151 | @right | @kpright when Wsi.withalt mask ->
5152 gotoghyll (getnav 1)
5153 | @left | @kpleft when Wsi.withalt mask ->
5154 gotoghyll (getnav ~-1)
5156 | @r ->
5157 reload ()
5159 | @v when conf.debug ->
5160 state.rects <- [];
5161 List.iter (fun l ->
5162 match getopaque l.pageno with
5163 | None -> ()
5164 | Some opaque ->
5165 let x0, y0, x1, y1 = pagebbox opaque in
5166 let rect = (float x0, float y0,
5167 float x1, float y0,
5168 float x1, float y1,
5169 float x0, float y1) in
5170 debugrect rect;
5171 let color = (0.0, 0.0, 1.0 /. (l.pageno mod 3 |> float), 0.5) in
5172 state.rects <- (l.pageno, color, rect) :: state.rects;
5173 ) state.layout;
5174 G.postRedisplay "v";
5176 | @pipe ->
5177 let mode = state.mode in
5178 let cmd = ref E.s in
5179 let onleave = function
5180 | Cancel -> state.mode <- mode
5181 | Confirm ->
5182 List.iter (fun l ->
5183 match getopaque l.pageno with
5184 | Some opaque -> pipesel opaque !cmd
5185 | None -> ()) state.layout;
5186 state.mode <- mode
5188 let ondone s =
5189 cbput state.hists.sel s;
5190 cmd := s
5192 let te =
5193 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5195 G.postRedisplay "|";
5196 state.mode <- Textentry (te, onleave);
5198 | _ ->
5199 vlog "huh? %s" (Wsi.keyname key)
5202 let linknavkeyboard key mask linknav =
5203 let getpage pageno =
5204 let rec loop = function
5205 | [] -> None
5206 | l :: _ when l.pageno = pageno -> Some l
5207 | _ :: rest -> loop rest
5208 in loop state.layout
5210 let doexact (pageno, n) =
5211 match getopaque pageno, getpage pageno with
5212 | Some opaque, Some l ->
5213 if key = @enter || key = @kpenter
5214 then
5215 let under = getlink opaque n in
5216 G.postRedisplay "link gotounder";
5217 gotounder under;
5218 state.mode <- View;
5219 else
5220 let opt, dir =
5221 match key with
5222 | @home ->
5223 Some (findlink opaque LDfirst), -1
5225 | @jend ->
5226 Some (findlink opaque LDlast), 1
5228 | @left ->
5229 Some (findlink opaque (LDleft n)), -1
5231 | @right ->
5232 Some (findlink opaque (LDright n)), 1
5234 | @up ->
5235 Some (findlink opaque (LDup n)), -1
5237 | @down ->
5238 Some (findlink opaque (LDdown n)), 1
5240 | _ -> None, 0
5242 let pwl l dir =
5243 begin match findpwl l.pageno dir with
5244 | Pwlnotfound -> ()
5245 | Pwl pageno ->
5246 let notfound dir =
5247 state.mode <- LinkNav (Ltgendir dir);
5248 let y, h = getpageyh pageno in
5249 let y =
5250 if dir < 0
5251 then y + h - state.winh
5252 else y
5254 gotoxy state.x y
5256 begin match getopaque pageno, getpage pageno with
5257 | Some opaque, Some _ ->
5258 let link =
5259 let ld = if dir > 0 then LDfirst else LDlast in
5260 findlink opaque ld
5262 begin match link with
5263 | Lfound m ->
5264 showlinktype (getlink opaque m);
5265 state.mode <- LinkNav (Ltexact (pageno, m));
5266 G.postRedisplay "linknav jpage";
5267 | Lnotfound -> notfound dir
5268 end;
5269 | _ -> notfound dir
5270 end;
5271 end;
5273 begin match opt with
5274 | Some Lnotfound -> pwl l dir;
5275 | Some (Lfound m) ->
5276 if m = n
5277 then pwl l dir
5278 else (
5279 let _, y0, _, y1 = getlinkrect opaque m in
5280 if y0 < l.pagey
5281 then gotopage1 l.pageno y0
5282 else (
5283 let d = fstate.fontsize + 1 in
5284 if y1 - l.pagey > l.pagevh - d
5285 then gotopage1 l.pageno (y1 - state.winh + d)
5286 else G.postRedisplay "linknav";
5288 showlinktype (getlink opaque m);
5289 state.mode <- LinkNav (Ltexact (l.pageno, m));
5292 | None -> viewkeyboard key mask
5293 end;
5294 | _ -> viewkeyboard key mask
5296 if key = @insert
5297 then (
5298 state.mode <- View;
5299 G.postRedisplay "leave linknav"
5301 else
5302 match linknav with
5303 | Ltgendir _ | Ltnotready _ -> viewkeyboard key mask
5304 | Ltexact exact -> doexact exact
5307 let keyboard key mask =
5308 if (key = @g && Wsi.withctrl mask) && not (istextentry state.mode)
5309 then wcmd "interrupt"
5310 else state.uioh <- state.uioh#key key mask
5313 let birdseyekeyboard key mask
5314 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5315 let incr =
5316 match conf.columns with
5317 | Csingle _ -> 1
5318 | Cmulti ((c, _, _), _) -> c
5319 | Csplit _ -> failwith "bird's eye split mode"
5321 let pgh layout = List.fold_left
5322 (fun m l -> max l.pageh m) state.winh layout in
5323 match key with
5324 | @l when Wsi.withctrl mask ->
5325 let y, h = getpageyh pageno in
5326 let top = (state.winh - h) / 2 in
5327 gotoxy state.x (max 0 (y - top))
5328 | @enter | @kpenter -> leavebirdseye beye false
5329 | @escape -> leavebirdseye beye true
5330 | @up -> upbirdseye incr beye
5331 | @down -> downbirdseye incr beye
5332 | @left -> upbirdseye 1 beye
5333 | @right -> downbirdseye 1 beye
5335 | @prior ->
5336 begin match state.layout with
5337 | l :: _ ->
5338 if l.pagey != 0
5339 then (
5340 state.mode <- Birdseye (
5341 oconf, leftx, l.pageno, hooverpageno, anchor
5343 gotopage1 l.pageno 0;
5345 else (
5346 let layout = layout state.x (state.y-state.winh)
5347 state.winw
5348 (pgh state.layout) in
5349 match layout with
5350 | [] -> gotoxy state.x (clamp (-state.winh))
5351 | l :: _ ->
5352 state.mode <- Birdseye (
5353 oconf, leftx, l.pageno, hooverpageno, anchor
5355 gotopage1 l.pageno 0
5358 | [] -> gotoxy state.x (clamp (-state.winh))
5359 end;
5361 | @next ->
5362 begin match List.rev state.layout with
5363 | l :: _ ->
5364 let layout = layout state.x
5365 (state.y + (pgh state.layout))
5366 state.winw state.winh in
5367 begin match layout with
5368 | [] ->
5369 let incr = l.pageh - l.pagevh in
5370 if incr = 0
5371 then (
5372 state.mode <-
5373 Birdseye (
5374 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5376 G.postRedisplay "birdseye pagedown";
5378 else gotoxy state.x (clamp (incr + conf.interpagespace*2));
5380 | l :: _ ->
5381 state.mode <-
5382 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5383 gotopage1 l.pageno 0;
5386 | [] -> gotoxy state.x (clamp state.winh)
5387 end;
5389 | @home ->
5390 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5391 gotopage1 0 0
5393 | @jend ->
5394 let pageno = state.pagecount - 1 in
5395 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5396 if not (pagevisible state.layout pageno)
5397 then
5398 let h =
5399 match List.rev state.pdims with
5400 | [] -> state.winh
5401 | (_, _, h, _) :: _ -> h
5403 gotoxy
5404 state.x
5405 (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5406 else G.postRedisplay "birdseye end";
5408 | _ -> viewkeyboard key mask
5411 let drawpage l =
5412 let color =
5413 match state.mode with
5414 | Textentry _ -> scalecolor 0.4
5415 | LinkNav _
5416 | View -> scalecolor 1.0
5417 | Birdseye (_, _, pageno, hooverpageno, _) ->
5418 if l.pageno = hooverpageno
5419 then scalecolor 0.9
5420 else (
5421 if l.pageno = pageno
5422 then (
5423 let c = scalecolor 1.0 in
5424 GlDraw.color c;
5425 GlDraw.line_width 3.0;
5426 let dispx = l.pagedispx in
5427 linerect
5428 (float (dispx-1)) (float (l.pagedispy-1))
5429 (float (dispx+l.pagevw+1))
5430 (float (l.pagedispy+l.pagevh+1))
5432 GlDraw.line_width 1.0;
5435 else scalecolor 0.8
5438 drawtiles l color;
5441 let postdrawpage l linkindexbase =
5442 match getopaque l.pageno with
5443 | Some opaque ->
5444 if tileready l l.pagex l.pagey
5445 then
5446 let x = l.pagedispx - l.pagex
5447 and y = l.pagedispy - l.pagey in
5448 let hlmask =
5449 match conf.columns with
5450 | Csingle _ | Cmulti _ ->
5451 (if conf.hlinks then 1 else 0)
5452 + (if state.glinks
5453 && not (isbirdseye state.mode) then 2 else 0)
5454 | Csplit _ -> 0
5456 let s =
5457 match state.mode with
5458 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5459 | Textentry _
5460 | Birdseye _
5461 | View
5462 | LinkNav _ -> E.s
5464 Hashtbl.find_all state.prects l.pageno |>
5465 List.iter (fun vals -> drawprect opaque x y vals);
5466 let n = postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize) in
5467 if n < 0
5468 then (state.redisplay <- true; 0)
5469 else n
5470 else 0
5471 | _ -> 0
5474 let scrollindicator () =
5475 let sbw, ph, sh = state.uioh#scrollph in
5476 let sbh, pw, sw = state.uioh#scrollpw in
5478 let x0,x1,hx0 =
5479 if conf.leftscroll
5480 then (0, sbw, sbw)
5481 else ((state.winw - sbw), state.winw, 0)
5484 Gl.enable `blend;
5485 GlDraw.color (0.64, 0.64, 0.64) ~alpha:0.7;
5486 filledrect (float x0) 0. (float x1) (float state.winh);
5487 filledrect
5488 (float hx0) (float (state.winh - sbh))
5489 (float (hx0 + state.winw)) (float state.winh)
5491 GlDraw.color (0.0, 0.0, 0.0) ~alpha:0.7;
5493 filledrect (float x0) ph (float x1) (ph +. sh);
5494 let pw = pw +. float hx0 in
5495 filledrect pw (float (state.winh - sbh)) (pw +. sw) (float state.winh);
5496 Gl.disable `blend;
5499 let showsel () =
5500 match state.mstate with
5501 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5504 | Msel ((x0, y0), (x1, y1)) ->
5505 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
5506 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< E.s, -1, 0, 0) in
5507 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< E.s, -1, 0, 0) in
5508 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
5511 let showrects = function [] -> () | rects ->
5512 Gl.enable `blend;
5513 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5514 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
5515 List.iter
5516 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5517 List.iter (fun l ->
5518 if l.pageno = pageno
5519 then (
5520 let dx = float (l.pagedispx - l.pagex) in
5521 let dy = float (l.pagedispy - l.pagey) in
5522 let r, g, b, alpha = c in
5523 GlDraw.color (r, g, b) ~alpha;
5524 filledrect2 (x0+.dx) (y0+.dy)
5525 (x1+.dx) (y1+.dy)
5526 (x3+.dx) (y3+.dy)
5527 (x2+.dx) (y2+.dy);
5529 ) state.layout
5530 ) rects
5532 Gl.disable `blend;
5535 let display () =
5536 begin match conf.columns, state.layout with
5537 | Csingle _, _ :: _ ->
5538 GlDraw.color (scalecolor2 conf.bgcolor);
5539 let y =
5540 List.fold_left (fun y l ->
5541 let x0 = 0 in
5542 let y0 = y in
5543 let x1 = l.pagedispx in
5544 let y1 = (l.pagedispy + l.pagevh) in
5545 filledrect (float x0) (float y0) (float x1) (float y1);
5546 let x0 = x1 + l.pagevw in
5547 let x1 = state.winw in
5548 filledrect1 (float x0) (float y0) (float x1) (float y1);
5549 if y != l.pagedispy
5550 then (
5551 let x0 = 0
5552 and x1 = state.winw in
5553 let y0 = y
5554 and y1 = l.pagedispy in
5555 filledrect1 (float x0) (float y0) (float x1) (float y1);
5557 l.pagedispy + l.pagevh) 0 state.layout
5559 let x0 = 0
5560 and x1 = state.winw in
5561 let y0 = y
5562 and y1 = state.winh in
5563 filledrect1 (float x0) (float y0) (float x1) (float y1)
5564 | (Cmulti _ | Csplit _), _ | Csingle _, [] ->
5565 GlClear.color (scalecolor2 conf.bgcolor);
5566 GlClear.clear [`color];
5567 end;
5568 List.iter drawpage state.layout;
5569 let rects =
5570 match state.mode with
5571 | LinkNav (Ltexact (pageno, linkno)) ->
5572 begin match getopaque pageno with
5573 | Some opaque ->
5574 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5575 let color = (0.0, 0.0, 0.5, 0.5) in
5576 (pageno, color, (
5577 float x0, float y0,
5578 float x1, float y0,
5579 float x1, float y1,
5580 float x0, float y1)
5581 ) :: state.rects
5582 | None -> state.rects
5584 | LinkNav (Ltgendir _) | LinkNav (Ltnotready _)
5585 | Birdseye _
5586 | Textentry _
5587 | View -> state.rects
5589 showrects rects;
5590 let rec postloop linkindexbase = function
5591 | l :: rest ->
5592 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
5593 postloop linkindexbase rest
5594 | [] -> ()
5596 showsel ();
5597 postloop 0 state.layout;
5598 state.uioh#display;
5599 begin match state.mstate with
5600 | Mzoomrect ((x0, y0), (x1, y1)) ->
5601 Gl.enable `blend;
5602 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5603 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
5604 filledrect (float x0) (float y0) (float x1) (float y1);
5605 Gl.disable `blend;
5606 | Msel _
5607 | Mpan _
5608 | Mscrolly | Mscrollx
5609 | Mzoom _
5610 | Mnone -> ()
5611 end;
5612 enttext ();
5613 scrollindicator ();
5614 Wsi.swapb ();
5617 let zoomrect x y x1 y1 =
5618 let x0 = min x x1
5619 and x1 = max x x1
5620 and y0 = min y y1 in
5621 let zoom = (float state.w) /. float (x1 - x0) in
5622 let margin =
5623 let simple () = if state.w < state.winw then state.w / 2 else 0 in
5624 match conf.fitmodel with
5625 | FitWidth | FitProportional -> simple ()
5626 | FitPage ->
5627 match conf.columns with
5628 | Csplit _ ->
5629 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
5630 | Cmulti _ | Csingle _ -> simple ()
5632 gotoxy ((state.x + margin) - x0) (state.y + y0);
5633 state.anchor <- getanchor ();
5634 setzoom zoom;
5635 resetmstate ();
5638 let annot inline x y =
5639 match unproject x y with
5640 | Some (opaque, n, ux, uy) ->
5641 let add text =
5642 addannot opaque ux uy text;
5643 wcmd "freepage %s" (~> opaque);
5644 Hashtbl.remove state.pagemap (n, state.gen);
5645 flushtiles ();
5646 gotoxy state.x state.y
5648 if inline
5649 then
5650 let ondone s = add s in
5651 let mode = state.mode in
5652 state.mode <- Textentry (
5653 ("annotation: ", E.s, None, textentry, ondone, true),
5654 fun _ -> state.mode <- mode);
5655 state.text <- E.s;
5656 enttext ();
5657 G.postRedisplay "annot"
5658 else
5659 add @@ getusertext E.s
5660 | _ -> ()
5663 let zoomblock x y =
5664 let g opaque l px py =
5665 match rectofblock opaque px py with
5666 | Some a ->
5667 let x0 = a.(0) -. 20. in
5668 let x1 = a.(1) +. 20. in
5669 let y0 = a.(2) -. 20. in
5670 let zoom = (float state.w) /. (x1 -. x0) in
5671 let pagey = getpagey l.pageno in
5672 let margin = (state.w - l.pagew)/2 in
5673 let nx = -truncate x0 - margin in
5674 gotoxy_and_clear_text nx (pagey + truncate y0);
5675 state.anchor <- getanchor ();
5676 setzoom zoom;
5677 None
5678 | None -> None
5680 match conf.columns with
5681 | Csplit _ ->
5682 impmsg "block zooming does not work properly in split columns mode"
5683 | Cmulti _ | Csingle _ -> onppundermouse g x y ()
5686 let scrollx x =
5687 let winw = state.winw - 1 in
5688 let s = float x /. float winw in
5689 let destx = truncate (float (state.w + winw) *. s) in
5690 gotoxy_and_clear_text (winw - destx) state.y;
5691 state.mstate <- Mscrollx;
5694 let scrolly y =
5695 let s = float y /. float state.winh in
5696 let desty = truncate (float (state.maxy -
5697 (if conf.maxhfit then state.winh else 0))
5698 *. s) in
5699 gotoxy_and_clear_text state.x desty;
5700 state.mstate <- Mscrolly;
5703 let viewmulticlick clicks x y mask =
5704 let g opaque l px py =
5705 let mark =
5706 match clicks with
5707 | 2 -> Mark_word
5708 | 3 -> Mark_line
5709 | 4 -> Mark_block
5710 | _ -> Mark_page
5712 if markunder opaque px py mark
5713 then (
5714 Some (fun () ->
5715 let dopipe cmd =
5716 match getopaque l.pageno with
5717 | None -> ()
5718 | Some opaque -> pipesel opaque cmd
5720 state.roam <- (fun () -> dopipe conf.paxcmd);
5721 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
5724 else None
5726 G.postRedisplay "viewmulticlick";
5727 onppundermouse g x y (fun () -> impmsg "nothing to select") ();
5730 let canselect () =
5731 match conf.columns with
5732 | Csplit _ -> false
5733 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
5736 let viewmouse button down x y mask =
5737 match button with
5738 | n when (n == 4 || n == 5) && not down ->
5739 if Wsi.withctrl mask
5740 then (
5741 match state.mstate with
5742 | Mzoom (oldn, i, (ftx, fty)) ->
5743 let recenter =
5744 if false
5745 then abs (ftx - x) > 5 || abs (fty - y) > 5
5746 else false
5748 if oldn = n
5749 then (
5750 if i = 2
5751 then
5752 let incr =
5753 match n with
5754 | 5 ->
5755 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5756 | _ ->
5757 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5759 let zoom = conf.zoom -. incr in
5760 if recenter
5761 then pivotzoom ~x ~y zoom
5762 else pivotzoom zoom;
5763 state.mstate <- Mzoom (n, 0, (x, y));
5764 else
5765 state.mstate <- Mzoom (n, i+1, (ftx, fty));
5767 else state.mstate <- Mzoom (n, 0, (ftx, fty))
5769 | Msel _
5770 | Mpan _
5771 | Mscrolly | Mscrollx
5772 | Mzoomrect _
5773 | Mnone -> state.mstate <- Mzoom (n, 0, (0, 0))
5775 else (
5776 match state.autoscroll with
5777 | Some step -> setautoscrollspeed step (n=4)
5778 | None ->
5779 if conf.wheelbypage || conf.presentation
5780 then (
5781 if n = 4
5782 then prevpage ()
5783 else nextpage ()
5785 else
5786 let incr =
5787 if n = 4
5788 then -conf.scrollstep
5789 else conf.scrollstep
5791 let incr = incr * 2 in
5792 let y = clamp incr in
5793 gotoxy_and_clear_text state.x y
5796 | n when (n = 6 || n = 7) && not down && canpan () ->
5797 let x =
5798 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep) in
5799 gotoxy_and_clear_text x state.y
5801 | 1 when Wsi.withshift mask ->
5802 state.mstate <- Mnone;
5803 if not down
5804 then (
5805 match unproject x y with
5806 | None -> ()
5807 | Some (_, pageno, ux, uy) ->
5808 let cmd = Printf.sprintf
5809 "%s %s %d %d %d"
5810 conf.stcmd state.path pageno ux uy
5812 match spawn cmd [] with
5813 | (exception exn) ->
5814 impmsg "execution of synctex command(%S) failed: %S"
5815 conf.stcmd @@ exntos exn
5816 | _pid -> ()
5819 | 1 when Wsi.withctrl mask ->
5820 if down
5821 then (
5822 Wsi.setcursor Wsi.CURSOR_FLEUR;
5823 state.mstate <- Mpan (x, y)
5825 else
5826 state.mstate <- Mnone
5828 | 3 ->
5829 if down
5830 then (
5831 if Wsi.withshift mask
5832 then (
5833 annot conf.annotinline x y;
5834 G.postRedisplay "addannot"
5836 else
5837 let p = (x, y) in
5838 Wsi.setcursor Wsi.CURSOR_CYCLE;
5839 state.mstate <- Mzoomrect (p, p)
5841 else (
5842 match state.mstate with
5843 | Mzoomrect ((x0, y0), _) ->
5844 if abs (x-x0) > 10 && abs (y - y0) > 10
5845 then zoomrect x0 y0 x y
5846 else (
5847 resetmstate ();
5848 G.postRedisplay "kill accidental zoom rect";
5850 | Msel _
5851 | Mpan _
5852 | Mscrolly | Mscrollx
5853 | Mzoom _
5854 | Mnone ->
5855 resetmstate ()
5858 | 1 when vscrollhit x ->
5859 if down
5860 then
5861 let _, position, sh = state.uioh#scrollph in
5862 if y > truncate position && y < truncate (position +. sh)
5863 then state.mstate <- Mscrolly
5864 else scrolly y
5865 else
5866 state.mstate <- Mnone
5868 | 1 when y > state.winh - hscrollh () ->
5869 if down
5870 then
5871 let _, position, sw = state.uioh#scrollpw in
5872 if x > truncate position && x < truncate (position +. sw)
5873 then state.mstate <- Mscrollx
5874 else scrollx x
5875 else
5876 state.mstate <- Mnone
5878 | 1 when state.bzoom -> if not down then zoomblock x y
5880 | 1 ->
5881 let dest = if down then getunder x y else Unone in
5882 begin match dest with
5883 | Ulinkgoto _
5884 | Ulinkuri _
5885 | Uremote _ | Uremotedest _
5886 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5887 gotounder dest
5889 | Unone when down ->
5890 Wsi.setcursor Wsi.CURSOR_FLEUR;
5891 state.mstate <- Mpan (x, y);
5893 | Uannotation (opaque, slinkindex) -> enterannotmode opaque slinkindex
5895 | Unone | Utext _ ->
5896 if down
5897 then (
5898 if canselect ()
5899 then (
5900 state.mstate <- Msel ((x, y), (x, y));
5901 G.postRedisplay "mouse select";
5904 else (
5905 match state.mstate with
5906 | Mnone -> ()
5908 | Mzoom _ | Mscrollx | Mscrolly ->
5909 state.mstate <- Mnone
5911 | Mzoomrect ((x0, y0), _) ->
5912 zoomrect x0 y0 x y
5914 | Mpan _ ->
5915 Wsi.setcursor Wsi.CURSOR_INHERIT;
5916 state.mstate <- Mnone
5918 | Msel ((x0, y0), (x1, y1)) ->
5919 let rec loop = function
5920 | [] -> ()
5921 | l :: rest ->
5922 let inside =
5923 let a0 = l.pagedispy in
5924 let a1 = a0 + l.pagevh in
5925 let b0 = l.pagedispx in
5926 let b1 = b0 + l.pagevw in
5927 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5928 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5930 if inside
5931 then
5932 match getopaque l.pageno with
5933 | Some opaque ->
5934 let dosel cmd () =
5935 match Unix.pipe () with
5936 | (exception exn) ->
5937 impmsg "cannot create sel pipe: %s" @@
5938 exntos exn;
5939 | (r, w) ->
5940 let clo what fd =
5941 Ne.clo fd (fun msg ->
5942 dolog "%s close failed: %s" what msg)
5944 let pid =
5945 try spawn cmd [r, 0; w, -1]
5946 with exn ->
5947 dolog "cannot execute %S: %s"
5948 cmd @@ exntos exn;
5951 if pid > 0
5952 then (
5953 copysel w opaque;
5954 G.postRedisplay "copysel";
5956 else clo "Msel pipe/w" w;
5957 clo "Msel pipe/r" r;
5959 dosel conf.selcmd ();
5960 state.roam <- dosel conf.paxcmd;
5961 | None -> ()
5962 else loop rest
5964 loop state.layout;
5965 resetmstate ();
5969 | _ -> ()
5972 let birdseyemouse button down x y mask
5973 (conf, leftx, _, hooverpageno, anchor) =
5974 match button with
5975 | 1 when down ->
5976 let rec loop = function
5977 | [] -> ()
5978 | l :: rest ->
5979 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5980 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5981 then (
5982 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5984 else loop rest
5986 loop state.layout
5987 | 3 -> ()
5988 | _ -> viewmouse button down x y mask
5991 let uioh = object
5992 method display = ()
5994 method key key mask =
5995 begin match state.mode with
5996 | Textentry textentry -> textentrykeyboard key mask textentry
5997 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5998 | View -> viewkeyboard key mask
5999 | LinkNav linknav -> linknavkeyboard key mask linknav
6000 end;
6001 state.uioh
6003 method button button bstate x y mask =
6004 begin match state.mode with
6005 | LinkNav _
6006 | View -> viewmouse button bstate x y mask
6007 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6008 | Textentry _ -> ()
6009 end;
6010 state.uioh
6012 method multiclick clicks x y mask =
6013 begin match state.mode with
6014 | LinkNav _
6015 | View -> viewmulticlick clicks x y mask
6016 | Birdseye _
6017 | Textentry _ -> ()
6018 end;
6019 state.uioh
6021 method motion x y =
6022 begin match state.mode with
6023 | Textentry _ -> ()
6024 | View | Birdseye _ | LinkNav _ ->
6025 match state.mstate with
6026 | Mzoom _ | Mnone -> ()
6028 | Mpan (x0, y0) ->
6029 let dx = x - x0
6030 and dy = y0 - y in
6031 state.mstate <- Mpan (x, y);
6032 let x = if canpan () then panbound (state.x + dx) else state.x in
6033 let y = clamp dy in
6034 gotoxy_and_clear_text x y
6036 | Msel (a, _) ->
6037 state.mstate <- Msel (a, (x, y));
6038 G.postRedisplay "motion select";
6040 | Mscrolly ->
6041 let y = min state.winh (max 0 y) in
6042 scrolly y
6044 | Mscrollx ->
6045 let x = min state.winw (max 0 x) in
6046 scrollx x
6048 | Mzoomrect (p0, _) ->
6049 state.mstate <- Mzoomrect (p0, (x, y));
6050 G.postRedisplay "motion zoomrect";
6051 end;
6052 state.uioh
6054 method pmotion x y =
6055 begin match state.mode with
6056 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6057 let rec loop = function
6058 | [] ->
6059 if hooverpageno != -1
6060 then (
6061 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6062 G.postRedisplay "pmotion birdseye no hoover";
6064 | l :: rest ->
6065 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6066 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6067 then (
6068 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6069 G.postRedisplay "pmotion birdseye hoover";
6071 else loop rest
6073 loop state.layout
6075 | Textentry _ -> ()
6077 | LinkNav _
6078 | View ->
6079 match state.mstate with
6080 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ -> ()
6081 | Mnone ->
6082 updateunder x y;
6083 if canselect ()
6084 then
6085 match conf.pax with
6086 | None -> ()
6087 | Some r ->
6088 let past, _, _ = !r in
6089 let now = now () in
6090 let delta = now -. past in
6091 if delta > 0.01
6092 then paxunder x y
6093 else r := (now, x, y)
6094 end;
6095 state.uioh
6097 method infochanged _ = ()
6099 method scrollph =
6100 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6101 let p, h =
6102 if maxy = 0
6103 then 0.0, float state.winh
6104 else scrollph state.y maxy
6106 vscrollw (), p, h
6108 method scrollpw =
6109 let fwinw = float (state.winw - vscrollw ()) in
6110 let sw =
6111 let sw = fwinw /. float state.w in
6112 let sw = fwinw *. sw in
6113 max sw (float conf.scrollh)
6115 let position =
6116 let maxx = state.w + state.winw in
6117 let x = state.winw - state.x in
6118 let percent = float x /. float maxx in
6119 (fwinw -. sw) *. percent
6121 hscrollh (), position, sw
6123 method modehash =
6124 let modename =
6125 match state.mode with
6126 | LinkNav _ -> "links"
6127 | Textentry _ -> "textentry"
6128 | Birdseye _ -> "birdseye"
6129 | View -> "view"
6131 findkeyhash conf modename
6133 method eformsgs = true
6134 method alwaysscrolly = false
6135 end;;
6137 let addrect pageno r g b a x0 y0 x1 y1 =
6138 Hashtbl.add state.prects pageno [|r; g; b; a; x0; y0; x1; y1|];
6141 let ract cmds =
6142 let cl = splitatspace cmds in
6143 let scan s fmt f =
6144 try Scanf.sscanf s fmt f
6145 with exn ->
6146 adderrfmt "remote exec"
6147 "error processing '%S': %s\n" cmds @@ exntos exn
6149 let rectx s pageno (r, g, b, a) x0 y0 x1 y1 =
6150 vlog "%s page %d color (%f %f %f %f) x0,y0,x1,y1 = %f %f %f %f"
6151 s pageno r g b a x0 y0 x1 y1;
6152 onpagerect
6153 pageno
6154 (fun w h ->
6155 let _,w1,h1,_ = getpagedim pageno in
6156 let sw = float w1 /. float w
6157 and sh = float h1 /. float h in
6158 let x0s = x0 *. sw
6159 and x1s = x1 *. sw
6160 and y0s = y0 *. sh
6161 and y1s = y1 *. sh in
6162 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
6163 let color = (r, g, b, a) in
6164 if conf.verbose then debugrect rect;
6165 state.rects <- (pageno, color, rect) :: state.rects;
6166 G.postRedisplay s;
6169 match cl with
6170 | "reload", "" -> reload ()
6171 | "goto", args ->
6172 scan args "%u %f %f"
6173 (fun pageno x y ->
6174 let cmd, _ = state.geomcmds in
6175 if emptystr cmd
6176 then gotopagexy !wtmode pageno x y
6177 else
6178 let f prevf () =
6179 gotopagexy !wtmode pageno x y;
6180 prevf ()
6182 state.reprf <- f state.reprf
6184 | "goto1", args -> scan args "%u %f" gotopage
6185 | "gotor", args ->
6186 scan args "%S %u"
6187 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
6188 | "gotord", args ->
6189 scan args "%S %S"
6190 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
6191 | "rect", args ->
6192 scan args "%u %u %f %f %f %f"
6193 (fun pageno c x0 y0 x1 y1 ->
6194 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
6195 rectx "rect" pageno color x0 y0 x1 y1;
6197 | "prect", args ->
6198 scan args "%u %f %f %f %f %f %f %f %f"
6199 (fun pageno r g b alpha x0 y0 x1 y1 ->
6200 addrect pageno r g b alpha x0 y0 x1 y1;
6201 G.postRedisplay "prect"
6203 | "pgoto", args ->
6204 scan args "%u %f %f"
6205 (fun pageno x y ->
6206 let optopaque =
6207 match getopaque pageno with
6208 | Some opaque -> opaque
6209 | None -> ~< E.s
6211 pgoto optopaque pageno x y;
6212 let rec fixx = function
6213 | [] -> ()
6214 | l :: rest ->
6215 if l.pageno = pageno
6216 then gotoxy (state.x - l.pagedispx) state.y
6217 else fixx rest
6219 let layout =
6220 let mult =
6221 match conf.columns with
6222 | Csingle _ | Csplit _ -> 1
6223 | Cmulti ((n, _, _), _) -> n
6225 layout 0 state.y (state.winw * mult) state.winh
6227 fixx layout
6229 | "activatewin", "" -> Wsi.activatewin ()
6230 | "quit", "" -> raise Quit
6231 | "keys", keys ->
6232 begin try
6233 let l = Config.keys_of_string keys in
6234 List.iter (fun (k, m) -> keyboard k m) l
6235 with exn ->
6236 adderrfmt "error processing keys" "`%S': %s\n" cmds @@ exntos exn
6238 | "clearrects", "" ->
6239 Hashtbl.clear state.prects;
6240 G.postRedisplay "clearrects"
6241 | _ ->
6242 adderrfmt "remote command"
6243 "error processing remote command: %S\n" cmds;
6246 let remote =
6247 let scratch = Bytes.create 80 in
6248 let buf = Buffer.create 80 in
6249 fun fd ->
6250 match tempfailureretry (Unix.read fd scratch 0) 80 with
6251 | (exception Unix.Unix_error (Unix.EAGAIN, _, _)) -> None
6252 | 0 ->
6253 Unix.close fd;
6254 if Buffer.length buf > 0
6255 then (
6256 let s = Buffer.contents buf in
6257 Buffer.clear buf;
6258 ract s;
6260 None
6261 | n ->
6262 let rec eat ppos =
6263 let nlpos =
6264 match Bytes.index_from scratch ppos '\n' with
6265 | pos -> if pos >= n then -1 else pos
6266 | (exception Not_found) -> -1
6268 if nlpos >= 0
6269 then (
6270 Buffer.add_subbytes buf scratch ppos (nlpos-ppos);
6271 let s = Buffer.contents buf in
6272 Buffer.clear buf;
6273 ract s;
6274 eat (nlpos+1);
6276 else (
6277 Buffer.add_subbytes buf scratch ppos (n-ppos);
6278 Some fd
6280 in eat 0
6283 let remoteopen path =
6284 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
6285 with exn ->
6286 adderrfmt "remoteopen" "error opening %S: %s" path @@ exntos exn;
6287 None
6290 let () =
6291 let gcconfig = ref E.s in
6292 let trimcachepath = ref E.s in
6293 let rcmdpath = ref E.s in
6294 let pageno = ref None in
6295 let rootwid = ref 0 in
6296 let openlast = ref false in
6297 let nofc = ref false in
6298 let doreap = ref false in
6299 selfexec := Sys.executable_name;
6300 Arg.parse
6301 (Arg.align
6302 [("-p", Arg.String (fun s -> state.password <- s),
6303 "<password> Set password");
6305 ("-f", Arg.String
6306 (fun s ->
6307 Config.fontpath := s;
6308 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
6310 "<path> Set path to the user interface font");
6312 ("-c", Arg.String
6313 (fun s ->
6314 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
6315 Config.confpath := s),
6316 "<path> Set path to the configuration file");
6318 ("-last", Arg.Set openlast, " Open last document");
6320 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
6321 "<page-number> Jump to page");
6323 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6324 "<path> Set path to the trim cache file");
6326 ("-dest", Arg.String (fun s -> state.nameddest <- s),
6327 "<named-destination> Set named destination");
6329 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
6330 ("-cxack", Arg.Set cxack, " Cut corners");
6332 ("-remote", Arg.String (fun s -> rcmdpath := s),
6333 "<path> Set path to the remote commands source");
6335 ("-origin", Arg.String (fun s -> state.origin <- s),
6336 "<original-path> Set original path");
6338 ("-gc", Arg.Set_string gcconfig,
6339 "<script-path> Collect garbage with the help of a script");
6341 ("-nofc", Arg.Set nofc, " Do not use fontconfig");
6343 ("-v", Arg.Unit (fun () ->
6344 Printf.printf
6345 "%s\nconfiguration path: %s\n"
6346 (version ())
6347 Config.defconfpath
6349 exit 0), " Print version and exit");
6351 ("-embed", Arg.Set_int rootwid,
6352 "<window-id> Embed into window")
6355 (fun s -> state.path <- s)
6356 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6358 if !wtmode
6359 then selfexec := !selfexec ^ " -wtmode";
6361 let histmode = emptystr state.path && not !openlast in
6363 if not (Config.load !openlast)
6364 then dolog "failed to load configuration";
6366 begin match !pageno with
6367 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
6368 | None -> ()
6369 end;
6371 if nonemptystr !gcconfig
6372 then (
6373 let (c, s) =
6374 match Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0 with
6375 | (exception exn) -> error "socketpair for gc failed: %s" @@ exntos exn
6376 | fds -> fds
6378 match spawn !gcconfig [(c, 0); (c, 1); (s, -1)] with
6379 | (exception exn) -> error "failed to execute gc script: %s" @@ exntos exn
6380 | _pid ->
6381 Ne.clo c @@ (fun s -> error "failed to close gc fd %s" s);
6382 Config.gc s;
6383 exit 0
6386 let wsfd, winw, winh = Wsi.init (object (self)
6387 val mutable m_clicks = 0
6388 val mutable m_click_x = 0
6389 val mutable m_click_y = 0
6390 val mutable m_lastclicktime = infinity
6392 method private cleanup =
6393 state.roam <- noroam;
6394 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap
6395 method expose = G.postRedisplay "expose"
6396 method visible v =
6397 let name =
6398 match v with
6399 | Wsi.Unobscured -> "unobscured"
6400 | Wsi.PartiallyObscured -> "partiallyobscured"
6401 | Wsi.FullyObscured -> "fullyobscured"
6403 vlog "visibility change %s" name
6404 method display = display ()
6405 method map mapped = vlog "mapped %b" mapped
6406 method reshape w h =
6407 self#cleanup;
6408 reshape w h
6409 method mouse b d x y m =
6410 if d && canselect ()
6411 then (
6412 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
6413 m_click_x <- x;
6414 m_click_y <- y;
6415 if b = 1
6416 then (
6417 let t = now () in
6418 if abs x - m_click_x > 10
6419 || abs y - m_click_y > 10
6420 || abs_float (t -. m_lastclicktime) > 0.3
6421 then m_clicks <- 0;
6422 m_clicks <- m_clicks + 1;
6423 m_lastclicktime <- t;
6424 if m_clicks = 1
6425 then (
6426 self#cleanup;
6427 G.postRedisplay "cleanup";
6428 state.uioh <- state.uioh#button b d x y m;
6430 else state.uioh <- state.uioh#multiclick m_clicks x y m
6432 else (
6433 self#cleanup;
6434 m_clicks <- 0;
6435 m_lastclicktime <- infinity;
6436 state.uioh <- state.uioh#button b d x y m
6439 else (
6440 state.uioh <- state.uioh#button b d x y m
6442 method motion x y =
6443 state.mpos <- (x, y);
6444 state.uioh <- state.uioh#motion x y
6445 method pmotion x y =
6446 state.mpos <- (x, y);
6447 state.uioh <- state.uioh#pmotion x y
6448 method key k m =
6449 let mascm = m land (
6450 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6451 ) in
6452 let keyboard k m =
6453 let x = state.x and y = state.y in
6454 keyboard k m;
6455 if x != state.x || y != state.y then self#cleanup
6457 match state.keystate with
6458 | KSnone ->
6459 let km = k, mascm in
6460 begin
6461 match
6462 let modehash = state.uioh#modehash in
6463 try Hashtbl.find modehash km
6464 with Not_found ->
6465 try Hashtbl.find (findkeyhash conf "global") km
6466 with Not_found -> KMinsrt (k, m)
6467 with
6468 | KMinsrt (k, m) -> keyboard k m
6469 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6470 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6472 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6473 List.iter (fun (k, m) -> keyboard k m) insrt;
6474 state.keystate <- KSnone
6475 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6476 state.keystate <- KSinto (keys, insrt)
6477 | KSinto _ -> state.keystate <- KSnone
6479 method enter x y =
6480 state.mpos <- (x, y);
6481 state.uioh <- state.uioh#pmotion x y
6482 method leave = state.mpos <- (-1, -1)
6483 method winstate wsl = state.winstate <- wsl
6484 method quit = raise Quit
6485 end) !rootwid conf.cwinw conf.cwinh platform in
6487 setbgcol conf.bgcolor;
6488 state.wsfd <- wsfd;
6490 if not (
6491 List.exists GlMisc.check_extension
6492 [ "GL_ARB_texture_rectangle"
6493 ; "GL_EXT_texture_recangle"
6494 ; "GL_NV_texture_rectangle" ]
6496 then (dolog "OpenGL does not suppport rectangular textures"; exit 1);
6498 if (
6499 let r = GlMisc.get_string `renderer in
6500 let p = "Mesa DRI Intel(" in
6501 let l = String.length p in
6502 String.length r > l && String.sub r 0 l = p
6504 then (
6505 defconf.sliceheight <- 1024;
6506 defconf.texcount <- 32;
6507 defconf.usepbo <- true;
6510 let cs, ss =
6511 match Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0 with
6512 | (exception exn) ->
6513 dolog "socketpair failed: %s" @@ exntos exn;
6514 exit 1
6515 | (r, w) ->
6516 cloexec r;
6517 cloexec w;
6518 r, w
6521 setcheckers conf.checkers;
6523 opengl_has_pbo := GlMisc.check_extension "GL_ARB_pixel_buffer_object";
6525 init cs (
6526 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
6527 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6528 !Config.fontpath, !trimcachepath,
6529 !opengl_has_pbo,
6530 not !nofc
6532 List.iter GlArray.enable [`texture_coord; `vertex];
6533 state.ss <- ss;
6534 reshape ~firsttime:true winw winh;
6535 state.uioh <- uioh;
6536 if histmode
6537 then (
6538 Wsi.settitle "llpp (history)";
6539 enterhistmode ();
6541 else (
6542 state.text <- "Opening " ^ (mbtoutf8 state.path);
6543 opendoc state.path state.password;
6545 display ();
6546 Wsi.mapwin ();
6547 Wsi.setcursor Wsi.CURSOR_INHERIT;
6548 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
6550 let rec reap () =
6551 match Unix.waitpid [Unix.WNOHANG] ~-1 with
6552 | (exception (Unix.Unix_error (Unix.ECHILD, _, _))) -> ()
6553 | (exception exn) -> dolog "Unix.waitpid: %s" @@ exntos exn
6554 | 0, _ -> ()
6555 | _pid, _status -> reap ()
6557 Sys.set_signal Sys.sigchld (Sys.Signal_handle (fun _ -> doreap := true));
6559 let optrfd =
6560 ref (
6561 if nonemptystr !rcmdpath
6562 then remoteopen !rcmdpath
6563 else None
6567 let rec loop deadline =
6568 if !doreap
6569 then (
6570 doreap := false;
6571 reap ()
6573 let r = [state.ss; state.wsfd] in
6574 let r =
6575 match !optrfd with
6576 | None -> r
6577 | Some fd -> fd :: r
6579 if state.redisplay
6580 then (
6581 state.redisplay <- false;
6582 display ();
6584 let timeout =
6585 let now = now () in
6586 if deadline > now
6587 then (
6588 if deadline = infinity
6589 then ~-.1.0
6590 else max 0.0 (deadline -. now)
6592 else 0.0
6594 let r, _, _ =
6595 try Unix.select r [] [] timeout
6596 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
6598 begin match r with
6599 | [] ->
6600 state.ghyll None;
6601 let newdeadline =
6602 if state.ghyll == noghyll
6603 then
6604 match state.autoscroll with
6605 | Some step when step != 0 ->
6606 let y = state.y + step in
6607 let fy = if conf.maxhfit then state.winh else 0 in
6608 let y =
6609 if y < 0
6610 then state.maxy - fy
6611 else if y >= state.maxy - fy then 0 else y
6613 if state.mode = View
6614 then gotoxy_and_clear_text state.x y
6615 else gotoxy state.x y;
6616 deadline +. 0.01
6617 | _ -> infinity
6618 else deadline +. 0.01
6620 loop newdeadline
6622 | l ->
6623 let rec checkfds = function
6624 | [] -> ()
6625 | fd :: rest when fd = state.ss ->
6626 let cmd = rcmd state.ss in
6627 act cmd;
6628 checkfds rest
6630 | fd :: rest when fd = state.wsfd ->
6631 Wsi.readresp fd;
6632 checkfds rest
6634 | fd :: rest when Some fd = !optrfd ->
6635 begin match remote fd with
6636 | None -> optrfd := remoteopen !rcmdpath;
6637 | opt -> optrfd := opt
6638 end;
6639 checkfds rest
6641 | _ :: rest ->
6642 dolog "select returned unknown descriptor";
6643 checkfds rest
6645 checkfds l;
6646 let newdeadline =
6647 let deadline1 =
6648 if deadline = infinity
6649 then now () +. 0.01
6650 else deadline
6652 match state.autoscroll with
6653 | Some step when step != 0 -> deadline1
6654 | _ -> if state.ghyll == noghyll then infinity else deadline1
6656 loop newdeadline
6657 end;
6660 loop infinity;
6661 with Quit ->
6662 Config.save leavebirdseye;
6663 if hasunsavedchanges ()
6664 then save ();