Do not die on openxref errors, report and continue instead
[llpp.git] / main.ml
blob300a19af21da83a1ea01ed2df64e0d689d943d60
1 open Utils;;
2 open Config;;
4 exception Quit;;
6 type pipe = (Unix.file_descr * Unix.file_descr);;
8 external init : pipe -> params -> unit = "ml_init";;
9 external seltext : opaque -> (int * int * int * int) -> unit = "ml_seltext";;
10 external hassel : opaque -> bool = "ml_hassel";;
11 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
12 external getpdimrect : int -> float array = "ml_getpdimrect";;
13 external whatsunder : opaque -> int -> int -> under = "ml_whatsunder";;
14 external markunder : opaque -> int -> int -> mark -> bool = "ml_markunder";;
15 external clearmark : opaque -> unit = "ml_clearmark";;
16 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
17 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
18 external measurestr : int -> string -> float = "ml_measure_string";;
19 external postprocess :
20 opaque -> int -> int -> int -> (int * string * int) -> int
21 = "ml_postprocess";;
22 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
23 external setaalevel : int -> unit = "ml_setaalevel";;
24 external realloctexts : int -> bool = "ml_realloctexts";;
25 external findlink : opaque -> linkdir -> link = "ml_findlink";;
26 external getlink : opaque -> int -> under = "ml_getlink";;
27 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
28 external getlinkcount : opaque -> int = "ml_getlinkcount";;
29 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
30 external getpbo : width -> height -> colorspace -> opaque = "ml_getpbo";;
31 external freepbo : opaque -> unit = "ml_freepbo";;
32 external unmappbo : opaque -> unit = "ml_unmappbo";;
33 external pbousable : unit -> bool = "ml_pbo_usable";;
34 external unproject : opaque -> int -> int -> (int * int) option
35 = "ml_unproject";;
36 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
37 external rectofblock : opaque -> int -> int -> float array option
38 = "ml_rectofblock";;
39 external begintiles : unit -> unit = "ml_begintiles";;
40 external endtiles : unit -> unit = "ml_endtiles";;
42 let selfexec = ref E.s;;
44 let drawstring size x y s =
45 Gl.enable `blend;
46 Gl.enable `texture_2d;
47 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
48 ignore (drawstr size x y s);
49 Gl.disable `blend;
50 Gl.disable `texture_2d;
53 let drawstring1 size x y s =
54 drawstr size x y s;
57 let drawstring2 size x y fmt =
58 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
61 let debugl l =
62 dolog "l %d dim=%d {" l.pageno l.pagedimno;
63 dolog " WxH %dx%d" l.pagew l.pageh;
64 dolog " vWxH %dx%d" l.pagevw l.pagevh;
65 dolog " pagex,y %d,%d" l.pagex l.pagey;
66 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
67 dolog " column %d" l.pagecol;
68 dolog "}";
71 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
72 dolog "rect {";
73 dolog " x0,y0=(% f, % f)" x0 y0;
74 dolog " x1,y1=(% f, % f)" x1 y1;
75 dolog " x2,y2=(% f, % f)" x2 y2;
76 dolog " x3,y3=(% f, % f)" x3 y3;
77 dolog "}";
80 let isbirdseye = function Birdseye _ -> true | _ -> false;;
81 let istextentry = function Textentry _ -> true | _ -> false;;
83 let wtmode = ref false;;
84 let cxack = ref false;;
86 let pgscale h = truncate (float h *. conf.pgscale);;
88 let hscrollh () =
89 if (conf.scrollb land scrollbhv = 0)
90 || (state.x = 0 && state.w <= state.winw - conf.scrollbw)
91 then 0
92 else conf.scrollbw
95 let vscrollw () =
96 if (conf.scrollb land scrollbvv = 0)
97 then 0
98 else conf.scrollbw
101 let wadjsb w = w - vscrollw ();;
102 let xadjsb x = if conf.leftscroll then x + vscrollw () else x;;
104 let setfontsize n =
105 fstate.fontsize <- n;
106 fstate.wwidth <- measurestr fstate.fontsize "w";
107 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
110 let vlog fmt =
111 if conf.verbose
112 then
113 Printf.kprintf prerr_endline fmt
114 else
115 Printf.kprintf ignore fmt
118 let launchpath () =
119 if emptystr conf.pathlauncher
120 then print_endline state.path
121 else (
122 let re = Str.regexp "%s" in
123 let command = Str.global_replace re state.path conf.pathlauncher in
124 try popen command []
125 with exn ->
126 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
127 flush stderr;
131 module Ne = struct
132 type 'a t = | Res of 'a | Exn of exn;;
134 let res f =
135 try Res (f ())
136 with exn -> Exn exn
139 let clo fd f =
140 try tempfailureretry Unix.close fd
141 with exn -> f (exntos exn)
144 let dup fd =
145 try Res (tempfailureretry Unix.dup fd)
146 with exn -> Exn exn
149 let dup2 fd1 fd2 =
150 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
151 with exn -> Exn exn
153 end;;
155 let redirectstderr () =
156 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
157 if conf.redirectstderr
158 then
159 match Ne.res Unix.pipe with
160 | Ne.Exn exn ->
161 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
163 | Ne.Res (r, w) ->
164 begin match Ne.dup Unix.stderr with
165 | Ne.Exn exn ->
166 dolog "failed to dup stderr: %s" (exntos exn);
167 Ne.clo r (clofail "pipe/r");
168 Ne.clo w (clofail "pipe/w");
170 | Ne.Res dupstderr ->
171 begin match Ne.dup2 w Unix.stderr with
172 | Ne.Exn exn ->
173 dolog "failed to dup2 to stderr: %s" (exntos exn);
174 Ne.clo dupstderr (clofail "stderr duplicate");
175 Ne.clo r (clofail "redir pipe/r");
176 Ne.clo w (clofail "redir pipe/w");
178 | Ne.Res () ->
179 state.stderr <- dupstderr;
180 state.errfd <- Some r;
181 end;
183 else (
184 state.newerrmsgs <- false;
185 begin match state.errfd with
186 | Some fd ->
187 begin match Ne.dup2 state.stderr Unix.stderr with
188 | Ne.Exn exn ->
189 dolog "failed to dup2 original stderr: %s" (exntos exn)
190 | Ne.Res () ->
191 Ne.clo fd (clofail "dup of stderr");
192 state.errfd <- None;
193 end;
194 | None -> ()
195 end;
196 prerr_string (Buffer.contents state.errmsgs);
197 flush stderr;
198 Buffer.clear state.errmsgs;
202 module G =
203 struct
204 let postRedisplay who =
205 if conf.verbose
206 then prerr_endline ("redisplay for " ^ who);
207 state.redisplay <- true;
209 end;;
211 let getopaque pageno =
212 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
213 with Not_found -> None
216 let putopaque pageno opaque =
217 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
220 let pagetranslatepoint l x y =
221 let dy = y - l.pagedispy in
222 let y = dy + l.pagey in
223 let dx = x - l.pagedispx in
224 let x = dx + l.pagex in
225 (x, y);
228 let onppundermouse g x y d =
229 let rec f = function
230 | l :: rest ->
231 begin match getopaque l.pageno with
232 | Some opaque ->
233 let x0 = l.pagedispx in
234 let x1 = x0 + l.pagevw in
235 let y0 = l.pagedispy in
236 let y1 = y0 + l.pagevh in
237 if y >= y0 && y <= y1 && x >= x0 && x <= x1
238 then
239 let px, py = pagetranslatepoint l x y in
240 match g opaque l px py with
241 | Some res -> res
242 | None -> f rest
243 else f rest
244 | _ ->
245 f rest
247 | [] -> d
249 f state.layout
252 let getunder x y =
253 let g opaque l px py =
254 if state.bzoom
255 then (
256 match rectofblock opaque px py with
257 | Some a ->
258 let rect = (a.(0),a.(2),a.(1),a.(2),a.(1),a.(3),a.(0),a.(3)) in
259 state.rects <- [l.pageno, l.pageno mod 3, rect];
260 G.postRedisplay "getunder";
261 | None -> ()
263 match whatsunder opaque px py with
264 | Unone -> None
265 | under -> Some under
267 onppundermouse g x y Unone
270 let unproject x y =
271 let g opaque l x y =
272 match unproject opaque x y with
273 | Some (x, y) -> Some (Some (l.pageno, x, y))
274 | None -> None
276 onppundermouse g x y None;
279 let showtext c s =
280 state.text <- Printf.sprintf "%c%s" c s;
281 G.postRedisplay "showtext";
284 let pipesel opaque cmd =
285 if hassel opaque
286 then
287 match Ne.res Unix.pipe with
288 | Ne.Exn exn ->
289 showtext '!'
290 (Printf.sprintf "pipesel can not create pipe: %s" (exntos exn));
291 | Ne.Res (r, w) ->
292 let doclose what fd =
293 Ne.clo fd (fun msg -> dolog "%s close failed: %s" what msg)
295 let popened =
296 try popen cmd [r, 0; w, -1]; true
297 with exn ->
298 dolog "can not execute %S: %s" cmd (exntos exn);
299 false
301 if popened
302 then (
303 copysel w opaque;
304 G.postRedisplay "pipesel";
306 else doclose "pipesel pipe/w" w;
307 doclose "pipesel pipe/r" r;
310 let paxunder x y =
311 let g opaque l px py =
312 if markunder opaque px py conf.paxmark
313 then (
314 Some (fun () ->
315 match getopaque l.pageno with
316 | None -> ()
317 | Some opaque -> pipesel opaque conf.paxcmd
320 else None
322 G.postRedisplay "paxunder";
323 if conf.paxmark = Mark_page
324 then
325 List.iter (fun l ->
326 match getopaque l.pageno with
327 | None -> ()
328 | Some opaque -> clearmark opaque) state.layout;
329 state.roam <-
330 onppundermouse g x y (fun () -> showtext '!' "Whoopsie daisy");
333 let selstring s =
334 match Ne.res Unix.pipe with
335 | Ne.Exn exn ->
336 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
337 | Ne.Res (r, w) ->
338 let clo cap fd =
339 Ne.clo fd (fun msg ->
340 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
343 let popened =
344 try popen conf.selcmd [r, 0; w, -1]; true
345 with exn ->
346 showtext '!'
347 (Printf.sprintf "failed to execute %s: %s"
348 conf.selcmd (exntos exn));
349 false
351 if popened
352 then (
354 let l = String.length s in
355 let n = tempfailureretry (Unix.write w s 0) l in
356 if n != l
357 then
358 showtext '!'
359 (Printf.sprintf
360 "failed to write %d characters to sel pipe, wrote %d"
363 with exn ->
364 showtext '!'
365 (Printf.sprintf "failed to write to sel pipe: %s"
366 (exntos exn)
369 else dolog "%s" s;
370 clo "selstring pipe/r" r;
371 clo "selstring pipe/w" w;
374 let undertext = function
375 | Unone -> "none"
376 | Ulinkuri s -> s
377 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
378 | Utext s -> "font: " ^ s
379 | Uunexpected s -> "unexpected: " ^ s
380 | Ulaunch s -> "launch: " ^ s
381 | Unamed s -> "named: " ^ s
382 | Uremote (filename, pageno) ->
383 Printf.sprintf "%s: page %d" filename (pageno+1)
384 | Uremotedest (filename, destname) ->
385 Printf.sprintf "%s: destination %S" filename destname
388 let updateunder x y =
389 match getunder x y with
390 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
391 | Ulinkuri uri ->
392 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
393 Wsi.setcursor Wsi.CURSOR_INFO
394 | Ulinkgoto (pageno, _) ->
395 if conf.underinfo
396 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
397 Wsi.setcursor Wsi.CURSOR_INFO
398 | Utext s ->
399 if conf.underinfo then showtext 'f' ("ont: " ^ s);
400 Wsi.setcursor Wsi.CURSOR_TEXT
401 | Uunexpected s ->
402 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
403 Wsi.setcursor Wsi.CURSOR_INHERIT
404 | Ulaunch s ->
405 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
406 Wsi.setcursor Wsi.CURSOR_INHERIT
407 | Unamed s ->
408 if conf.underinfo then showtext 'n' ("amed: " ^ s);
409 Wsi.setcursor Wsi.CURSOR_INHERIT
410 | Uremote (filename, pageno) ->
411 if conf.underinfo then showtext 'r'
412 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
413 Wsi.setcursor Wsi.CURSOR_INFO
414 | Uremotedest (filename, destname) ->
415 if conf.underinfo then showtext 'r'
416 (Printf.sprintf "emote destination: %s (%S)" filename destname);
417 Wsi.setcursor Wsi.CURSOR_INFO
420 let showlinktype under =
421 if conf.underinfo
422 then
423 match under with
424 | Unone -> ()
425 | under ->
426 let s = undertext under in
427 showtext ' ' s
430 let addchar s c =
431 let b = Buffer.create (String.length s + 1) in
432 Buffer.add_string b s;
433 Buffer.add_char b c;
434 Buffer.contents b;
437 let intentry_with_suffix text key =
438 let c =
439 if key >= 32 && key < 127
440 then Char.chr key
441 else '\000'
443 match Char.lowercase c with
444 | '0' .. '9' ->
445 let text = addchar text c in
446 TEcont text
448 | 'k' | 'm' | 'g' ->
449 let text = addchar text c in
450 TEcont text
452 | _ ->
453 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
454 TEcont text
457 let readcmd fd =
458 let s = "xxxx" in
459 let n = tempfailureretry (Unix.read fd s 0) 4 in
460 if n != 4 then error "incomplete read(len) = %d" n;
461 let len = 0
462 lor (Char.code s.[0] lsl 24)
463 lor (Char.code s.[1] lsl 16)
464 lor (Char.code s.[2] lsl 8)
465 lor (Char.code s.[3] lsl 0)
467 let s = String.create len in
468 let n = tempfailureretry (Unix.read fd s 0) len in
469 if n != len then error "incomplete read(data) %d vs %d" n len;
473 let btod b = if b then 1 else 0;;
475 let wcmd fmt =
476 let b = Buffer.create 16 in
477 Buffer.add_string b "llll";
478 Printf.kbprintf
479 (fun b ->
480 let s = Buffer.contents b in
481 let n = String.length s in
482 let len = n - 4 in
483 (* dolog "wcmd %S" (String.sub s 4 len); *)
484 s.[0] <- Char.chr ((len lsr 24) land 0xff);
485 s.[1] <- Char.chr ((len lsr 16) land 0xff);
486 s.[2] <- Char.chr ((len lsr 8) land 0xff);
487 s.[3] <- Char.chr (len land 0xff);
488 let n' = tempfailureretry (Unix.write state.sw s 0) n in
489 if n' != n then error "write failed %d vs %d" n' n;
490 ) b fmt;
493 let nogeomcmds cmds =
494 match cmds with
495 | s, [] -> emptystr s
496 | _ -> false
499 let layoutN ((columns, coverA, coverB), b) y sh =
500 let sh = sh - (hscrollh ()) in
501 let rec fold accu n =
502 if n = Array.length b
503 then accu
504 else
505 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
506 if (vy - y) > sh &&
507 (n = coverA - 1
508 || n = state.pagecount - coverB
509 || (n - coverA) mod columns = columns - 1)
510 then accu
511 else
512 let accu =
513 if vy + h > y
514 then
515 let pagey = max 0 (y - vy) in
516 let pagedispy = if pagey > 0 then 0 else vy - y in
517 let pagedispx, pagex =
518 let pdx =
519 if n = coverA - 1 || n = state.pagecount - coverB
520 then state.x + (wadjsb state.winw - w) / 2
521 else dx + xoff + state.x
523 if pdx < 0
524 then 0, -pdx
525 else pdx, 0
527 let pagevw =
528 let vw = wadjsb state.winw - pagedispx in
529 let pw = w - pagex in
530 min vw pw
532 let pagevh = min (h - pagey) (sh - pagedispy) in
533 if pagevw > 0 && pagevh > 0
534 then
535 let e =
536 { pageno = n
537 ; pagedimno = pdimno
538 ; pagew = w
539 ; pageh = h
540 ; pagex = pagex
541 ; pagey = pagey
542 ; pagevw = pagevw
543 ; pagevh = pagevh
544 ; pagedispx = pagedispx
545 ; pagedispy = pagedispy
546 ; pagecol = 0
549 e :: accu
550 else
551 accu
552 else
553 accu
555 fold accu (n+1)
557 if Array.length b = 0
558 then []
559 else List.rev (fold [] (page_of_y y))
562 let layoutS (columns, b) y sh =
563 let sh = sh - hscrollh () in
564 let rec fold accu n =
565 if n = Array.length b
566 then accu
567 else
568 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
569 if (vy - y) > sh
570 then accu
571 else
572 let accu =
573 if vy + pageh > y
574 then
575 let x = xoff + state.x in
576 let pagey = max 0 (y - vy) in
577 let pagedispy = if pagey > 0 then 0 else vy - y in
578 let pagedispx, pagex =
579 if px = 0
580 then (
581 if x < 0
582 then 0, -x
583 else x, 0
585 else (
586 let px = px - x in
587 if px < 0
588 then -px, 0
589 else 0, px
592 let pagecolw = pagew/columns in
593 let pagedispx =
594 if pagecolw < state.winw
595 then pagedispx + ((wadjsb state.winw - pagecolw) / 2)
596 else pagedispx
598 let pagevw =
599 let vw = wadjsb state.winw - pagedispx in
600 let pw = pagew - pagex in
601 min vw pw
603 let pagevw = min pagevw pagecolw in
604 let pagevh = min (pageh - pagey) (sh - pagedispy) in
605 if pagevw > 0 && pagevh > 0
606 then
607 let e =
608 { pageno = n/columns
609 ; pagedimno = pdimno
610 ; pagew = pagew
611 ; pageh = pageh
612 ; pagex = pagex
613 ; pagey = pagey
614 ; pagevw = pagevw
615 ; pagevh = pagevh
616 ; pagedispx = pagedispx
617 ; pagedispy = pagedispy
618 ; pagecol = n mod columns
621 e :: accu
622 else
623 accu
624 else
625 accu
627 fold accu (n+1)
629 List.rev (fold [] 0)
632 let layout y sh =
633 if nogeomcmds state.geomcmds
634 then
635 match conf.columns with
636 | Csingle b -> layoutN ((1, 0, 0), b) y sh
637 | Cmulti c -> layoutN c y sh
638 | Csplit s -> layoutS s y sh
639 else []
642 let clamp incr =
643 let y = state.y + incr in
644 let y = max 0 y in
645 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
649 let itertiles l f =
650 let tilex = l.pagex mod conf.tilew in
651 let tiley = l.pagey mod conf.tileh in
653 let col = l.pagex / conf.tilew in
654 let row = l.pagey / conf.tileh in
656 let rec rowloop row y0 dispy h =
657 if h = 0
658 then ()
659 else (
660 let dh = conf.tileh - y0 in
661 let dh = min h dh in
662 let rec colloop col x0 dispx w =
663 if w = 0
664 then ()
665 else (
666 let dw = conf.tilew - x0 in
667 let dw = min w dw in
668 let dispx' = xadjsb dispx in
669 f col row dispx' dispy x0 y0 dw dh;
670 colloop (col+1) 0 (dispx+dw) (w-dw)
673 colloop col tilex l.pagedispx l.pagevw;
674 rowloop (row+1) 0 (dispy+dh) (h-dh)
677 if l.pagevw > 0 && l.pagevh > 0
678 then rowloop row tiley l.pagedispy l.pagevh;
681 let gettileopaque l col row =
682 let key =
683 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
685 try Some (Hashtbl.find state.tilemap key)
686 with Not_found -> None
689 let puttileopaque l col row gen colorspace angle opaque size elapsed =
690 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
691 Hashtbl.add state.tilemap key (opaque, size, elapsed)
694 let filledrect x0 y0 x1 y1 =
695 GlArray.disable `texture_coord;
696 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
697 GlArray.vertex `two state.vraw;
698 GlArray.draw_arrays `triangle_strip 0 4;
699 GlArray.enable `texture_coord;
702 let linerect x0 y0 x1 y1 =
703 GlArray.disable `texture_coord;
704 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y1; x1; y0 |];
705 GlArray.vertex `two state.vraw;
706 GlArray.draw_arrays `line_loop 0 4;
707 GlArray.enable `texture_coord;
710 let drawtiles l color =
711 GlDraw.color color;
712 begintiles ();
713 let f col row x y tilex tiley w h =
714 match gettileopaque l col row with
715 | Some (opaque, _, t) ->
716 let params = x, y, w, h, tilex, tiley in
717 if conf.invert
718 then GlTex.env (`mode `blend);
719 drawtile params opaque;
720 if conf.invert
721 then GlTex.env (`mode `modulate);
722 if conf.debug
723 then (
724 endtiles ();
725 let s = Printf.sprintf
726 "%d[%d,%d] %f sec"
727 l.pageno col row t
729 let w = measurestr fstate.fontsize s in
730 GlDraw.color (0.0, 0.0, 0.0);
731 filledrect (float (x-2))
732 (float (y-2))
733 (float (x+2) +. w)
734 (float (y + fstate.fontsize + 2));
735 GlDraw.color (1.0, 1.0, 1.0);
736 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
737 begintiles ();
740 | None ->
741 endtiles ();
742 let w =
743 if conf.leftscroll
744 then w
745 else
746 let lw = wadjsb state.winw - x in
747 min lw w
748 and h =
749 let lh = state.winh - y in
750 min lh h
752 if conf.invert
753 then GlTex.env (`mode `blend);
754 begin match state.checkerstexid with
755 | Some id ->
756 Gl.enable `texture_2d;
757 GlTex.bind_texture `texture_2d id;
758 let x0 = float x
759 and y0 = float y
760 and x1 = float (x+w)
761 and y1 = float (y+h) in
763 let tw = float w /. 16.0
764 and th = float h /. 16.0 in
765 let tx0 = float tilex /. 16.0
766 and ty0 = float tiley /. 16.0 in
767 let tx1 = tx0 +. tw
768 and ty1 = ty0 +. th in
769 Raw.sets_float state.vraw ~pos:0
770 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
771 Raw.sets_float state.traw ~pos:0
772 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
773 GlArray.vertex `two state.vraw;
774 GlArray.tex_coord `two state.traw;
775 GlArray.draw_arrays `triangle_strip 0 4;
776 Gl.disable `texture_2d;
778 | None ->
779 GlDraw.color (1.0, 1.0, 1.0);
780 filledrect (float x) (float y) (float (x+w)) (float (y+h));
781 end;
782 if conf.invert
783 then GlTex.env (`mode `modulate);
784 if w > 128 && h > fstate.fontsize + 10
785 then (
786 let c = if conf.invert then 1.0 else 0.0 in
787 GlDraw.color (c, c, c);
788 let c, r =
789 if conf.verbose
790 then (col*conf.tilew, row*conf.tileh)
791 else col, row
793 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
795 GlDraw.color color;
796 begintiles ();
798 itertiles l f;
799 endtiles ();
802 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
804 let tilevisible1 l x y =
805 let ax0 = l.pagex
806 and ax1 = l.pagex + l.pagevw
807 and ay0 = l.pagey
808 and ay1 = l.pagey + l.pagevh in
810 let bx0 = x
811 and by0 = y in
812 let bx1 = min (bx0 + conf.tilew) l.pagew
813 and by1 = min (by0 + conf.tileh) l.pageh in
815 let rx0 = max ax0 bx0
816 and ry0 = max ay0 by0
817 and rx1 = min ax1 bx1
818 and ry1 = min ay1 by1 in
820 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
821 nonemptyintersection
824 let tilevisible layout n x y =
825 let rec findpageinlayout m = function
826 | l :: rest when l.pageno = n ->
827 tilevisible1 l x y || (
828 match conf.columns with
829 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
830 | _ -> false
832 | _ :: rest -> findpageinlayout 0 rest
833 | [] -> false
835 findpageinlayout 0 layout;
838 let tileready l x y =
839 tilevisible1 l x y &&
840 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
843 let tilepage n p layout =
844 let rec loop = function
845 | l :: rest ->
846 if l.pageno = n
847 then
848 let f col row _ _ _ _ _ _ =
849 if state.currently = Idle
850 then
851 match gettileopaque l col row with
852 | Some _ -> ()
853 | None ->
854 let x = col*conf.tilew
855 and y = row*conf.tileh in
856 let w =
857 let w = l.pagew - x in
858 min w conf.tilew
860 let h =
861 let h = l.pageh - y in
862 min h conf.tileh
864 let pbo =
865 if conf.usepbo
866 then getpbo w h conf.colorspace
867 else ~< "0"
869 wcmd "tile %s %d %d %d %d %s"
870 (~> p) x y w h (~> pbo);
871 state.currently <-
872 Tiling (
873 l, p, conf.colorspace, conf.angle,
874 state.gen, col, row, conf.tilew, conf.tileh
877 itertiles l f;
878 else
879 loop rest
881 | [] -> ()
883 if nogeomcmds state.geomcmds
884 then loop layout;
887 let preloadlayout y =
888 let y = if y < state.winh then 0 else y - state.winh in
889 let h = state.winh*3 in
890 layout y h;
893 let load pages =
894 let rec loop pages =
895 if state.currently != Idle
896 then ()
897 else
898 match pages with
899 | l :: rest ->
900 begin match getopaque l.pageno with
901 | None ->
902 wcmd "page %d %d" l.pageno l.pagedimno;
903 state.currently <- Loading (l, state.gen);
904 | Some opaque ->
905 tilepage l.pageno opaque pages;
906 loop rest
907 end;
908 | _ -> ()
910 if nogeomcmds state.geomcmds
911 then loop pages
914 let preload pages =
915 load pages;
916 if conf.preload && state.currently = Idle
917 then load (preloadlayout state.y);
920 let layoutready layout =
921 let rec fold all ls =
922 all && match ls with
923 | l :: rest ->
924 let seen = ref false in
925 let allvisible = ref true in
926 let foo col row _ _ _ _ _ _ =
927 seen := true;
928 allvisible := !allvisible &&
929 begin match gettileopaque l col row with
930 | Some _ -> true
931 | None -> false
934 itertiles l foo;
935 fold (!seen && !allvisible) rest
936 | [] -> true
938 let alltilesvisible = fold true layout in
939 alltilesvisible;
942 let gotoy y =
943 let y = bound y 0 state.maxy in
944 let y, layout, proceed =
945 match conf.maxwait with
946 | Some time when state.ghyll == noghyll ->
947 begin match state.throttle with
948 | None ->
949 let layout = layout y state.winh in
950 let ready = layoutready layout in
951 if not ready
952 then (
953 load layout;
954 state.throttle <- Some (layout, y, now ());
956 else G.postRedisplay "gotoy showall (None)";
957 y, layout, ready
958 | Some (_, _, started) ->
959 let dt = now () -. started in
960 if dt > time
961 then (
962 state.throttle <- None;
963 let layout = layout y state.winh in
964 load layout;
965 G.postRedisplay "maxwait";
966 y, layout, true
968 else -1, [], false
971 | _ ->
972 let layout = layout y state.winh in
973 if not !wtmode || layoutready layout
974 then G.postRedisplay "gotoy ready";
975 y, layout, true
977 if proceed
978 then (
979 state.y <- y;
980 state.layout <- layout;
981 begin match state.mode with
982 | LinkNav (Ltexact (pageno, linkno)) ->
983 let rec loop = function
984 | [] ->
985 state.mode <- LinkNav (Ltgendir 0)
986 | l :: _ when l.pageno = pageno ->
987 begin match getopaque pageno with
988 | None ->
989 state.mode <- LinkNav (Ltgendir 0)
990 | Some opaque ->
991 let x0, y0, x1, y1 = getlinkrect opaque linkno in
992 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
993 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
994 then state.mode <- LinkNav (Ltgendir 0)
996 | _ :: rest -> loop rest
998 loop layout
999 | _ -> ()
1000 end;
1001 begin match state.mode with
1002 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1003 if not (pagevisible layout pageno)
1004 then (
1005 match state.layout with
1006 | [] -> ()
1007 | l :: _ ->
1008 state.mode <- Birdseye (
1009 conf, leftx, l.pageno, hooverpageno, anchor
1012 | LinkNav (Ltgendir dir as lt) ->
1013 let linknav =
1014 let rec loop = function
1015 | [] -> lt
1016 | l :: rest ->
1017 match getopaque l.pageno with
1018 | None -> loop rest
1019 | Some opaque ->
1020 let link =
1021 let ld =
1022 if dir = 0
1023 then LDfirstvisible (l.pagex, l.pagey, dir)
1024 else (
1025 if dir > 0 then LDfirst else LDlast
1028 findlink opaque ld
1030 match link with
1031 | Lnotfound -> loop rest
1032 | Lfound n ->
1033 showlinktype (getlink opaque n);
1034 Ltexact (l.pageno, n)
1036 loop state.layout
1038 state.mode <- LinkNav linknav
1039 | _ -> ()
1040 end;
1041 preload layout;
1043 state.ghyll <- noghyll;
1044 if conf.updatecurs
1045 then (
1046 let mx, my = state.mpos in
1047 updateunder mx my;
1051 let conttiling pageno opaque =
1052 tilepage pageno opaque
1053 (if conf.preload then preloadlayout state.y else state.layout)
1056 let gotoy_and_clear_text y =
1057 if not conf.verbose then state.text <- E.s;
1058 gotoy y;
1061 let getanchory (n, top, dtop) =
1062 let y, h = getpageyh n in
1063 if conf.presentation
1064 then
1065 let ips = calcips h in
1066 y + truncate (top*.float h -. dtop*.float ips) + ips;
1067 else
1068 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1071 let gotoanchor anchor =
1072 gotoy (getanchory anchor);
1075 let addnav () =
1076 cbput state.hists.nav (getanchor ());
1079 let getnav dir =
1080 let anchor = cbgetc state.hists.nav dir in
1081 getanchory anchor;
1084 let gotoghyll1 single y =
1085 let scroll f n a b =
1086 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1087 let snake f a b =
1088 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1089 if f < a
1090 then s (float f /. float a)
1091 else (
1092 if f > b
1093 then 1.0 -. s ((float (f-b) /. float (n-b)))
1094 else 1.0
1097 snake f a b
1098 and summa n a b =
1099 let ins = float a *. 0.5
1100 and outs = float (n-b) *. 0.5 in
1101 let ones = b - a in
1102 ins +. outs +. float ones
1104 let rec set nab y sy =
1105 let (_N, _A, _B), y =
1106 if single
1107 then
1108 let scl = if y > sy then 2 else -2 in
1109 let _N, _, _ = nab in
1110 (_N,0,_N), y+conf.scrollstep*scl
1111 else nab,y in
1112 let sum = summa _N _A _B in
1113 let dy = float (y - sy) in
1114 state.ghyll <- (
1115 let rec gf n y1 o =
1116 if n >= _N
1117 then state.ghyll <- noghyll
1118 else
1119 let go n =
1120 let s = scroll n _N _A _B in
1121 let y1 = y1 +. ((s *. dy) /. sum) in
1122 gotoy_and_clear_text (truncate y1);
1123 state.ghyll <- gf (n+1) y1;
1125 match o with
1126 | None -> go n
1127 | Some y' when single -> set nab y' state.y
1128 | Some y' -> set (_N/2, 1, 1) y' state.y
1130 gf 0 (float state.y)
1133 match conf.ghyllscroll with
1134 | Some nab when not conf.presentation ->
1135 if state.ghyll == noghyll
1136 then set nab y state.y
1137 else state.ghyll (Some y)
1138 | _ ->
1139 gotoy_and_clear_text y
1142 let gotoghyll = gotoghyll1 false;;
1144 let gotopage n top =
1145 let y, h = getpageyh n in
1146 let y = y + (truncate (top *. float h)) in
1147 gotoghyll y
1150 let gotopage1 n top =
1151 let y = getpagey n in
1152 let y = y + top in
1153 gotoghyll y
1156 let invalidate s f =
1157 state.layout <- [];
1158 state.pdims <- [];
1159 state.rects <- [];
1160 state.rects1 <- [];
1161 match state.geomcmds with
1162 | ps, [] when emptystr ps ->
1163 f ();
1164 state.geomcmds <- s, [];
1166 | ps, [] ->
1167 state.geomcmds <- ps, [s, f];
1169 | ps, (s', _) :: rest when s' = s ->
1170 state.geomcmds <- ps, ((s, f) :: rest);
1172 | ps, cmds ->
1173 state.geomcmds <- ps, ((s, f) :: cmds);
1176 let flushpages () =
1177 Hashtbl.iter (fun _ opaque ->
1178 wcmd "freepage %s" (~> opaque);
1179 ) state.pagemap;
1180 Hashtbl.clear state.pagemap;
1183 let flushtiles () =
1184 if not (Queue.is_empty state.tilelru)
1185 then (
1186 Queue.iter (fun (k, p, s) ->
1187 wcmd "freetile %s" (~> p);
1188 state.memused <- state.memused - s;
1189 Hashtbl.remove state.tilemap k;
1190 ) state.tilelru;
1191 state.uioh#infochanged Memused;
1192 Queue.clear state.tilelru;
1194 load state.layout;
1197 let stateh h =
1198 let h = truncate (float h*.conf.zoom) in
1199 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
1200 h - d
1203 let opendoc path password =
1204 state.path <- path;
1205 state.password <- password;
1206 state.gen <- state.gen + 1;
1207 state.docinfo <- [];
1209 flushpages ();
1210 setaalevel conf.aalevel;
1211 let titlepath =
1212 if emptystr state.origin
1213 then path
1214 else state.origin
1216 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename titlepath)));
1217 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password;
1218 invalidate "reqlayout"
1219 (fun () ->
1220 wcmd "reqlayout %d %d %d %s\000"
1221 conf.angle (FMTE.to_int conf.fitmodel)
1222 (stateh state.winh) state.nameddest
1226 let reload () =
1227 state.anchor <- getanchor ();
1228 opendoc state.path state.password;
1231 let scalecolor c =
1232 let c = c *. conf.colorscale in
1233 (c, c, c);
1236 let scalecolor2 (r, g, b) =
1237 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1240 let docolumns = function
1241 | Csingle _ ->
1242 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1243 let rec loop pageno pdimno pdim y ph pdims =
1244 if pageno = state.pagecount
1245 then ()
1246 else
1247 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1248 match pdims with
1249 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1250 pdimno+1, pdim, rest
1251 | _ ->
1252 pdimno, pdim, pdims
1254 let x = max 0 (((wadjsb state.winw - w) / 2) - xoff) in
1255 let y = y +
1256 (if conf.presentation
1257 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1258 else (if pageno = 0 then 0 else conf.interpagespace)
1261 a.(pageno) <- (pdimno, x, y, pdim);
1262 loop (pageno+1) pdimno pdim (y + h) h pdims
1264 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1265 conf.columns <- Csingle a;
1267 | Cmulti ((columns, coverA, coverB), _) ->
1268 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1269 let rec loop pageno pdimno pdim x y rowh pdims =
1270 let rec fixrow m = if m = pageno then () else
1271 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1272 if h < rowh
1273 then (
1274 let y = y + (rowh - h) / 2 in
1275 a.(m) <- (pdimno, x, y, pdim);
1277 fixrow (m+1)
1279 if pageno = state.pagecount
1280 then fixrow (((pageno - 1) / columns) * columns)
1281 else
1282 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1283 match pdims with
1284 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1285 pdimno+1, pdim, rest
1286 | _ ->
1287 pdimno, pdim, pdims
1289 let x, y, rowh' =
1290 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1291 then (
1292 let x = (wadjsb state.winw - w) / 2 in
1293 let ips =
1294 if conf.presentation then calcips h else conf.interpagespace in
1295 x, y + ips + rowh, h
1297 else (
1298 if (pageno - coverA) mod columns = 0
1299 then (
1300 let x = max 0 (wadjsb state.winw - state.w) / 2 in
1301 let y =
1302 if conf.presentation
1303 then
1304 let ips = calcips h in
1305 y + (if pageno = 0 then 0 else calcips rowh + ips)
1306 else
1307 y + (if pageno = 0 then 0 else conf.interpagespace)
1309 x, y + rowh, h
1311 else x, y, max rowh h
1314 let y =
1315 if pageno > 1 && (pageno - coverA) mod columns = 0
1316 then (
1317 let y =
1318 if pageno = columns && conf.presentation
1319 then (
1320 let ips = calcips rowh in
1321 for i = 0 to pred columns
1323 let (pdimno, x, y, pdim) = a.(i) in
1324 a.(i) <- (pdimno, x, y+ips, pdim)
1325 done;
1326 y+ips;
1328 else y
1330 fixrow (pageno - columns);
1333 else y
1335 a.(pageno) <- (pdimno, x, y, pdim);
1336 let x = x + w + xoff*2 + conf.interpagespace in
1337 loop (pageno+1) pdimno pdim x y rowh' pdims
1339 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
1340 conf.columns <- Cmulti ((columns, coverA, coverB), a);
1342 | Csplit (c, _) ->
1343 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1344 let rec loop pageno pdimno pdim y pdims =
1345 if pageno = state.pagecount
1346 then ()
1347 else
1348 let pdimno, ((_, w, h, _) as pdim), pdims =
1349 match pdims with
1350 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1351 pdimno+1, pdim, rest
1352 | _ ->
1353 pdimno, pdim, pdims
1355 let cw = w / c in
1356 let rec loop1 n x y =
1357 if n = c then y else (
1358 a.(pageno*c + n) <- (pdimno, x, y, pdim);
1359 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
1362 let y = loop1 0 0 y in
1363 loop (pageno+1) pdimno pdim y pdims
1365 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
1366 conf.columns <- Csplit (c, a);
1369 let represent () =
1370 docolumns conf.columns;
1371 state.maxy <- calcheight ();
1372 if state.reprf == noreprf
1373 then (
1374 match state.mode with
1375 | Birdseye (_, _, pageno, _, _) ->
1376 let y, h = getpageyh pageno in
1377 let top = (state.winh - h) / 2 in
1378 gotoy (max 0 (y - top))
1379 | _ -> gotoanchor state.anchor
1381 else (
1382 state.reprf ();
1383 state.reprf <- noreprf;
1387 let reshape w h =
1388 GlDraw.viewport 0 0 w h;
1389 let firsttime = state.geomcmds == firstgeomcmds in
1390 if not firsttime && nogeomcmds state.geomcmds
1391 then state.anchor <- getanchor ();
1393 state.winw <- w;
1394 let w = wadjsb (truncate (float w *. conf.zoom)) in
1395 let w = max w 2 in
1396 state.winh <- h;
1397 setfontsize fstate.fontsize;
1398 GlMat.mode `modelview;
1399 GlMat.load_identity ();
1401 GlMat.mode `projection;
1402 GlMat.load_identity ();
1403 GlMat.rotate ~x:1.0 ~angle:180.0 ();
1404 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
1405 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
1407 let relx =
1408 if conf.zoom <= 1.0
1409 then 0.0
1410 else float state.x /. float state.w
1412 invalidate "geometry"
1413 (fun () ->
1414 state.w <- w;
1415 if not firsttime
1416 then state.x <- truncate (relx *. float w);
1417 let w =
1418 match conf.columns with
1419 | Csingle _ -> w
1420 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
1421 | Csplit (c, _) -> w * c
1423 wcmd "geometry %d %d %d"
1424 w (stateh h) (FMTE.to_int conf.fitmodel)
1428 let enttext () =
1429 let len = String.length state.text in
1430 let x0 = xadjsb 0 in
1431 let drawstring s =
1432 let hscrollh =
1433 match state.mode with
1434 | Textentry _ | View | LinkNav _ ->
1435 let h, _, _ = state.uioh#scrollpw in
1437 | _ -> 0
1439 let rect x w =
1440 filledrect x (float (state.winh - (fstate.fontsize + 4) - hscrollh))
1441 (x+.w) (float (state.winh - hscrollh))
1444 let w = float (wadjsb state.winw - 1) in
1445 if state.progress >= 0.0 && state.progress < 1.0
1446 then (
1447 GlDraw.color (0.3, 0.3, 0.3);
1448 let w1 = w *. state.progress in
1449 rect (float x0) w1;
1450 GlDraw.color (0.0, 0.0, 0.0);
1451 rect (float x0+.w1) (float x0+.w-.w1)
1453 else (
1454 GlDraw.color (0.0, 0.0, 0.0);
1455 rect (float x0) w;
1458 GlDraw.color (1.0, 1.0, 1.0);
1459 drawstring fstate.fontsize
1460 (if conf.leftscroll then x0 else x0 + if len > 0 then 8 else 2)
1461 (state.winh - hscrollh - 5) s;
1463 let s =
1464 match state.mode with
1465 | Textentry ((prefix, text, _, _, _, _), _) ->
1466 let s =
1467 if len > 0
1468 then
1469 Printf.sprintf "%s%s_ [%s]" prefix text state.text
1470 else
1471 Printf.sprintf "%s%s_" prefix text
1475 | _ -> state.text
1477 let s =
1478 if state.newerrmsgs
1479 then (
1480 if not (istextentry state.mode) && state.uioh#eformsgs
1481 then
1482 let s1 = "(press 'e' to review error messasges)" in
1483 if nonemptystr s then s ^ " " ^ s1 else s1
1484 else s
1486 else s
1488 if nonemptystr s
1489 then drawstring s
1492 let gctiles () =
1493 let len = Queue.length state.tilelru in
1494 let layout = lazy (
1495 match state.throttle with
1496 | None ->
1497 if conf.preload
1498 then preloadlayout state.y
1499 else state.layout
1500 | Some (layout, _, _) ->
1501 layout
1502 ) in
1503 let rec loop qpos =
1504 if state.memused <= conf.memlimit
1505 then ()
1506 else (
1507 if qpos < len
1508 then
1509 let (k, p, s) as lruitem = Queue.pop state.tilelru in
1510 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
1511 let (_, pw, ph, _) = getpagedim n in
1513 gen = state.gen
1514 && colorspace = conf.colorspace
1515 && angle = conf.angle
1516 && pagew = pw
1517 && pageh = ph
1518 && (
1519 let x = col*conf.tilew
1520 and y = row*conf.tileh in
1521 tilevisible (Lazy.force_val layout) n x y
1523 then Queue.push lruitem state.tilelru
1524 else (
1525 freepbo p;
1526 wcmd "freetile %s" (~> p);
1527 state.memused <- state.memused - s;
1528 state.uioh#infochanged Memused;
1529 Hashtbl.remove state.tilemap k;
1531 loop (qpos+1)
1534 loop 0
1537 let logcurrently = function
1538 | Idle -> dolog "Idle"
1539 | Loading (l, gen) ->
1540 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
1541 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
1542 dolog
1543 "Tiling %d[%d,%d] page=%s cs=%s angle"
1544 l.pageno col row (~> pageopaque)
1545 (CSTE.to_string colorspace)
1547 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
1548 angle gen conf.angle state.gen
1549 tilew tileh
1550 conf.tilew conf.tileh
1552 | Outlining _ ->
1553 dolog "outlining"
1556 let splitatspace =
1557 let r = Str.regexp " " in
1558 fun s -> Str.bounded_split r s 2;
1561 let onpagerect pageno f =
1562 let b =
1563 match conf.columns with
1564 | Cmulti (_, b) -> b
1565 | Csingle b -> b
1566 | Csplit (_, b) -> b
1568 if pageno >= 0 && pageno < Array.length b
1569 then
1570 let (_, _, _, (w, h, _, _)) = b.(pageno) in
1571 f w h
1574 let gotopagexy1 pageno x y =
1575 let _,w1,h1,leftx = getpagedim pageno in
1576 let top = y /. (float h1) in
1577 let left = x /. (float w1) in
1578 let py, w, h = getpageywh pageno in
1579 let wh = state.winh - hscrollh () in
1580 let x = left *. (float w) in
1581 let x = leftx + state.x + truncate x in
1582 let sx =
1583 if x < 0 || x >= wadjsb state.winw
1584 then state.x - x
1585 else state.x
1587 let pdy = truncate (top *. float h) in
1588 let y' = py + pdy in
1589 let dy = y' - state.y in
1590 let sy =
1591 if x != state.x || not (dy > 0 && dy < wh)
1592 then (
1593 if conf.presentation
1594 then
1595 if abs (py - y') > wh
1596 then y'
1597 else py
1598 else y';
1600 else state.y
1602 if state.x != sx || state.y != sy
1603 then (
1604 let x, y =
1605 if !wtmode
1606 then (
1607 let ww = wadjsb state.winw in
1608 let qx = sx / ww
1609 and qy = pdy / wh in
1610 let x = qx * ww
1611 and y = py + qy * wh in
1612 let x = if -x + ww > w1 then -(w1-ww) else x
1613 and y' = if y + wh > state.maxy then state.maxy - wh else y in
1614 let y =
1615 if conf.presentation
1616 then
1617 if abs (py - y') > wh
1618 then y'
1619 else py
1620 else y';
1622 (x, y)
1624 else (sx, sy)
1626 state.x <- x;
1627 gotoy_and_clear_text y;
1629 else gotoy_and_clear_text state.y;
1632 let gotopagexy pageno x y =
1633 match state.mode with
1634 | Birdseye _ -> gotopage pageno 0.0
1635 | _ -> gotopagexy1 pageno x y
1638 let act cmds =
1639 (* dolog "%S" cmds; *)
1640 let cl = splitatspace cmds in
1641 let scan s fmt f =
1642 try Scanf.sscanf s fmt f
1643 with exn ->
1644 dolog "error processing '%S': %s" cmds (exntos exn);
1645 exit 1
1647 let addoutline outline =
1648 match state.currently with
1649 | Outlining outlines ->
1650 state.currently <- Outlining (outline :: outlines)
1651 | Idle -> state.currently <- Outlining [outline]
1652 | currently ->
1653 dolog "invalid outlining state";
1654 logcurrently currently
1656 match cl with
1657 | "clear" :: [] ->
1658 state.uioh#infochanged Pdim;
1659 state.pdims <- [];
1661 | "clearrects" :: [] ->
1662 state.rects <- state.rects1;
1663 G.postRedisplay "clearrects";
1665 | "continue" :: args :: [] ->
1666 let n = scan args "%u" (fun n -> n) in
1667 state.pagecount <- n;
1668 begin match state.currently with
1669 | Outlining l ->
1670 state.currently <- Idle;
1671 state.outlines <- Array.of_list (List.rev l)
1672 | _ -> ()
1673 end;
1675 let cur, cmds = state.geomcmds in
1676 if emptystr cur
1677 then failwith "umpossible";
1679 begin match List.rev cmds with
1680 | [] ->
1681 state.geomcmds <- E.s, [];
1682 state.throttle <- None;
1683 represent ();
1684 | (s, f) :: rest ->
1685 f ();
1686 state.geomcmds <- s, List.rev rest;
1687 end;
1688 if conf.maxwait = None && not !wtmode
1689 then G.postRedisplay "continue";
1691 | "title" :: args :: [] ->
1692 conf.title <- args;
1693 Wsi.settitle args
1695 | "msg" :: args :: [] ->
1696 showtext ' ' args
1698 | "vmsg" :: args :: [] ->
1699 if conf.verbose
1700 then showtext ' ' args
1702 | "emsg" :: args :: [] ->
1703 Buffer.add_string state.errmsgs args;
1704 state.newerrmsgs <- true;
1705 G.postRedisplay "error message"
1707 | "progress" :: args :: [] ->
1708 let progress, text =
1709 scan args "%f %n"
1710 (fun f pos ->
1711 f, String.sub args pos (String.length args - pos))
1713 state.text <- text;
1714 state.progress <- progress;
1715 G.postRedisplay "progress"
1717 | "firstmatch" :: args :: [] ->
1718 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1719 scan args "%u %d %f %f %f %f %f %f %f %f"
1720 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1721 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1723 let xoff = float (xadjsb 0) in
1724 let x0 = x0 +. xoff
1725 and x1 = x1 +. xoff
1726 and x2 = x2 +. xoff
1727 and x3 = x3 +. xoff in
1728 let y = (getpagey pageno) + truncate y0 in
1729 addnav ();
1730 gotoy y;
1731 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
1733 | "match" :: args :: [] ->
1734 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1735 scan args "%u %d %f %f %f %f %f %f %f %f"
1736 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1737 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1739 let xoff = float (xadjsb 0) in
1740 let x0 = x0 +. xoff
1741 and x1 = x1 +. xoff
1742 and x2 = x2 +. xoff
1743 and x3 = x3 +. xoff in
1744 state.rects1 <-
1745 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
1747 | "page" :: args :: [] ->
1748 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
1749 let pageopaque = ~< pageopaques in
1750 begin match state.currently with
1751 | Loading (l, gen) ->
1752 vlog "page %d took %f sec" l.pageno t;
1753 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
1754 begin match state.throttle with
1755 | None ->
1756 let preloadedpages =
1757 if conf.preload
1758 then preloadlayout state.y
1759 else state.layout
1761 let evict () =
1762 let set =
1763 List.fold_left (fun s l -> IntSet.add l.pageno s)
1764 IntSet.empty preloadedpages
1766 let evictedpages =
1767 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
1768 if not (IntSet.mem pageno set)
1769 then (
1770 wcmd "freepage %s" (~> opaque);
1771 key :: accu
1773 else accu
1774 ) state.pagemap []
1776 List.iter (Hashtbl.remove state.pagemap) evictedpages;
1778 evict ();
1779 state.currently <- Idle;
1780 if gen = state.gen
1781 then (
1782 tilepage l.pageno pageopaque state.layout;
1783 load state.layout;
1784 load preloadedpages;
1785 if pagevisible state.layout l.pageno
1786 && layoutready state.layout
1787 then G.postRedisplay "page";
1790 | Some (layout, _, _) ->
1791 state.currently <- Idle;
1792 tilepage l.pageno pageopaque layout;
1793 load state.layout
1794 end;
1796 | _ ->
1797 dolog "Inconsistent loading state";
1798 logcurrently state.currently;
1799 exit 1
1802 | "tile" :: args :: [] ->
1803 let (x, y, opaques, size, t) =
1804 scan args "%u %u %s %u %f"
1805 (fun x y p size t -> (x, y, p, size, t))
1807 let opaque = ~< opaques in
1808 begin match state.currently with
1809 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
1810 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
1812 unmappbo opaque;
1813 if tilew != conf.tilew || tileh != conf.tileh
1814 then (
1815 wcmd "freetile %s" (~> opaque);
1816 state.currently <- Idle;
1817 load state.layout;
1819 else (
1820 puttileopaque l col row gen cs angle opaque size t;
1821 state.memused <- state.memused + size;
1822 state.uioh#infochanged Memused;
1823 gctiles ();
1824 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
1825 opaque, size) state.tilelru;
1827 let layout =
1828 match state.throttle with
1829 | None -> state.layout
1830 | Some (layout, _, _) -> layout
1833 state.currently <- Idle;
1834 if gen = state.gen
1835 && conf.colorspace = cs
1836 && conf.angle = angle
1837 && tilevisible layout l.pageno x y
1838 then conttiling l.pageno pageopaque;
1840 begin match state.throttle with
1841 | None ->
1842 preload state.layout;
1843 if gen = state.gen
1844 && conf.colorspace = cs
1845 && conf.angle = angle
1846 && tilevisible state.layout l.pageno x y
1847 && (not !wtmode || layoutready state.layout)
1848 then G.postRedisplay "tile nothrottle";
1850 | Some (layout, y, _) ->
1851 let ready = layoutready layout in
1852 if ready
1853 then (
1854 state.y <- y;
1855 state.layout <- layout;
1856 state.throttle <- None;
1857 G.postRedisplay "throttle";
1859 else load layout;
1860 end;
1863 | _ ->
1864 dolog "Inconsistent tiling state";
1865 logcurrently state.currently;
1866 exit 1
1869 | "pdim" :: args :: [] ->
1870 let (n, w, h, _) as pdim =
1871 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
1873 let pdim =
1874 match conf.fitmodel, conf.columns with
1875 | (FitPage | FitProportional), Csplit _ -> (n, w, h, 0)
1876 | _ -> pdim
1878 state.uioh#infochanged Pdim;
1879 state.pdims <- pdim :: state.pdims
1881 | "o" :: args :: [] ->
1882 let (l, n, t, h, pos) =
1883 scan args "%u %u %d %u %n"
1884 (fun l n t h pos -> l, n, t, h, pos)
1886 let s = String.sub args pos (String.length args - pos) in
1887 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
1889 | "ou" :: args :: [] ->
1890 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
1891 let s = String.sub args pos len in
1892 let pos2 = pos + len + 1 in
1893 let uri = String.sub args pos2 (String.length args - pos2) in
1894 addoutline (s, l, Ouri uri)
1896 | "on" :: args :: [] ->
1897 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
1898 let s = String.sub args pos (String.length args - pos) in
1899 addoutline (s, l, Onone)
1901 | "a" :: args :: [] ->
1902 let (n, l, t) =
1903 scan args "%u %d %d" (fun n l t -> n, l, t)
1905 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
1907 | "info" :: args :: [] ->
1908 state.docinfo <- (1, args) :: state.docinfo
1910 | "infoend" :: [] ->
1911 state.uioh#infochanged Docinfo;
1912 state.docinfo <- List.rev state.docinfo
1914 | _ ->
1915 error "unknown cmd `%S'" cmds
1918 let onhist cb =
1919 let rc = cb.rc in
1920 let action = function
1921 | HCprev -> cbget cb ~-1
1922 | HCnext -> cbget cb 1
1923 | HCfirst -> cbget cb ~-(cb.rc)
1924 | HClast -> cbget cb (cb.len - 1 - cb.rc)
1925 and cancel () = cb.rc <- rc
1926 in (action, cancel)
1929 let search pattern forward =
1930 match conf.columns with
1931 | Csplit _ ->
1932 showtext '!' "searching does not work properly in split columns mode"
1933 | _ ->
1934 if nonemptystr pattern
1935 then
1936 let pn, py =
1937 match state.layout with
1938 | [] -> 0, 0
1939 | l :: _ ->
1940 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
1942 wcmd "search %d %d %d %d,%s\000"
1943 (btod conf.icase) pn py (btod forward) pattern;
1946 let intentry text key =
1947 let c =
1948 if key >= 32 && key < 127
1949 then Char.chr key
1950 else '\000'
1952 match c with
1953 | '0' .. '9' ->
1954 let text = addchar text c in
1955 TEcont text
1957 | _ ->
1958 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1959 TEcont text
1962 let linknentry text key =
1963 let c =
1964 if key >= 32 && key < 127
1965 then Char.chr key
1966 else '\000'
1968 match c with
1969 | 'a' .. 'z' ->
1970 let text = addchar text c in
1971 TEcont text
1973 | _ ->
1974 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1975 TEcont text
1978 let linkndone f s =
1979 if nonemptystr s
1980 then (
1981 let n =
1982 let l = String.length s in
1983 let rec loop pos n = if pos = l then n else
1984 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
1985 loop (pos+1) (n*26 + m)
1986 in loop 0 0
1988 let rec loop n = function
1989 | [] -> ()
1990 | l :: rest ->
1991 match getopaque l.pageno with
1992 | None -> loop n rest
1993 | Some opaque ->
1994 let m = getlinkcount opaque in
1995 if n < m
1996 then (
1997 let under = getlink opaque n in
1998 f under
2000 else loop (n-m) rest
2002 loop n state.layout;
2006 let textentry text key =
2007 if key land 0xff00 = 0xff00
2008 then TEcont text
2009 else TEcont (text ^ toutf8 key)
2012 let reqlayout angle fitmodel =
2013 match state.throttle with
2014 | None ->
2015 if nogeomcmds state.geomcmds
2016 then state.anchor <- getanchor ();
2017 conf.angle <- angle mod 360;
2018 if conf.angle != 0
2019 then (
2020 match state.mode with
2021 | LinkNav _ -> state.mode <- View
2022 | _ -> ()
2024 conf.fitmodel <- fitmodel;
2025 invalidate "reqlayout"
2026 (fun () ->
2027 wcmd "reqlayout %d %d %d"
2028 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh)
2030 | _ -> ()
2033 let settrim trimmargins trimfuzz =
2034 if nogeomcmds state.geomcmds
2035 then state.anchor <- getanchor ();
2036 conf.trimmargins <- trimmargins;
2037 conf.trimfuzz <- trimfuzz;
2038 let x0, y0, x1, y1 = trimfuzz in
2039 invalidate "settrim"
2040 (fun () ->
2041 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2042 flushpages ();
2045 let setzoom zoom =
2046 match state.throttle with
2047 | None ->
2048 let zoom = max 0.0001 zoom in
2049 if zoom <> conf.zoom
2050 then (
2051 state.prevzoom <- (conf.zoom, state.x);
2052 conf.zoom <- zoom;
2053 reshape state.winw state.winh;
2054 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2057 | Some (layout, y, started) ->
2058 let time =
2059 match conf.maxwait with
2060 | None -> 0.0
2061 | Some t -> t
2063 let dt = now () -. started in
2064 if dt > time
2065 then (
2066 state.y <- y;
2067 load layout;
2071 let setcolumns mode columns coverA coverB =
2072 state.prevcolumns <- Some (conf.columns, conf.zoom);
2073 if columns < 0
2074 then (
2075 if isbirdseye mode
2076 then showtext '!' "split mode doesn't work in bird's eye"
2077 else (
2078 conf.columns <- Csplit (-columns, E.a);
2079 state.x <- 0;
2080 conf.zoom <- 1.0;
2083 else (
2084 if columns < 2
2085 then (
2086 conf.columns <- Csingle E.a;
2087 state.x <- 0;
2088 setzoom 1.0;
2090 else (
2091 conf.columns <- Cmulti ((columns, coverA, coverB), E.a);
2092 conf.zoom <- 1.0;
2095 reshape state.winw state.winh;
2098 let resetmstate () =
2099 state.mstate <- Mnone;
2100 Wsi.setcursor Wsi.CURSOR_INHERIT;
2103 let enterbirdseye () =
2104 let zoom = float conf.thumbw /. float state.winw in
2105 let birdseyepageno =
2106 let cy = state.winh / 2 in
2107 let fold = function
2108 | [] -> 0
2109 | l :: rest ->
2110 let rec fold best = function
2111 | [] -> best.pageno
2112 | l :: rest ->
2113 let d = cy - (l.pagedispy + l.pagevh/2)
2114 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2115 if abs d < abs dbest
2116 then fold l rest
2117 else best.pageno
2118 in fold l rest
2120 fold state.layout
2122 state.mode <- Birdseye (
2123 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2125 resetmstate ();
2126 conf.zoom <- zoom;
2127 conf.presentation <- false;
2128 conf.interpagespace <- 10;
2129 conf.hlinks <- false;
2130 conf.fitmodel <- FitProportional;
2131 state.x <- 0;
2132 conf.maxwait <- None;
2133 conf.columns <- (
2134 match conf.beyecolumns with
2135 | Some c ->
2136 conf.zoom <- 1.0;
2137 Cmulti ((c, 0, 0), E.a)
2138 | None -> Csingle E.a
2140 if conf.verbose
2141 then
2142 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2143 (100.0*.zoom)
2144 else
2145 state.text <- E.s
2147 reshape state.winw state.winh;
2150 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2151 state.mode <- View;
2152 conf.zoom <- c.zoom;
2153 conf.presentation <- c.presentation;
2154 conf.interpagespace <- c.interpagespace;
2155 conf.maxwait <- c.maxwait;
2156 conf.hlinks <- c.hlinks;
2157 conf.fitmodel <- c.fitmodel;
2158 conf.beyecolumns <- (
2159 match conf.columns with
2160 | Cmulti ((c, _, _), _) -> Some c
2161 | Csingle _ -> None
2162 | Csplit _ -> failwith "leaving bird's eye split mode"
2164 conf.columns <- (
2165 match c.columns with
2166 | Cmulti (c, _) -> Cmulti (c, E.a)
2167 | Csingle _ -> Csingle E.a
2168 | Csplit (c, _) -> Csplit (c, E.a)
2170 if conf.verbose
2171 then
2172 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2173 (100.0*.conf.zoom)
2175 reshape state.winw state.winh;
2176 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2177 state.x <- leftx;
2180 let togglebirdseye () =
2181 match state.mode with
2182 | Birdseye vals -> leavebirdseye vals true
2183 | View -> enterbirdseye ()
2184 | _ -> ()
2187 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2188 let pageno = max 0 (pageno - incr) in
2189 let rec loop = function
2190 | [] -> gotopage1 pageno 0
2191 | l :: _ when l.pageno = pageno ->
2192 if l.pagedispy >= 0 && l.pagey = 0
2193 then G.postRedisplay "upbirdseye"
2194 else gotopage1 pageno 0
2195 | _ :: rest -> loop rest
2197 loop state.layout;
2198 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2201 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2202 let pageno = min (state.pagecount - 1) (pageno + incr) in
2203 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2204 let rec loop = function
2205 | [] ->
2206 let y, h = getpageyh pageno in
2207 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2208 gotoy (clamp dy)
2209 | l :: _ when l.pageno = pageno ->
2210 if l.pagevh != l.pageh
2211 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2212 else G.postRedisplay "downbirdseye"
2213 | _ :: rest -> loop rest
2215 loop state.layout
2218 let boundastep h step =
2219 if step < 0
2220 then bound step ~-h 0
2221 else bound step 0 h
2224 let optentry mode _ key =
2225 let btos b = if b then "on" else "off" in
2226 if key >= 32 && key < 127
2227 then
2228 let c = Char.chr key in
2229 match c with
2230 | 's' ->
2231 let ondone s =
2232 try conf.scrollstep <- int_of_string s with exc ->
2233 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2235 TEswitch ("scroll step: ", E.s, None, intentry, ondone, true)
2237 | 'A' ->
2238 let ondone s =
2240 conf.autoscrollstep <- boundastep state.winh (int_of_string s);
2241 if state.autoscroll <> None
2242 then state.autoscroll <- Some conf.autoscrollstep
2243 with exc ->
2244 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2246 TEswitch ("auto scroll step: ", E.s, None, intentry, ondone, true)
2248 | 'C' ->
2249 let ondone s =
2251 let n, a, b = multicolumns_of_string s in
2252 setcolumns mode n a b;
2253 with exc ->
2254 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2256 TEswitch ("columns: ", E.s, None, textentry, ondone, true)
2258 | 'Z' ->
2259 let ondone s =
2261 let zoom = float (int_of_string s) /. 100.0 in
2262 setzoom zoom
2263 with exc ->
2264 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2266 TEswitch ("zoom: ", E.s, None, intentry, ondone, true)
2268 | 't' ->
2269 let ondone s =
2271 conf.thumbw <- bound (int_of_string s) 2 4096;
2272 state.text <-
2273 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2274 begin match mode with
2275 | Birdseye beye ->
2276 leavebirdseye beye false;
2277 enterbirdseye ();
2278 | _ -> ();
2280 with exc ->
2281 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2283 TEswitch ("thumbnail width: ", E.s, None, intentry, ondone, true)
2285 | 'R' ->
2286 let ondone s =
2287 match try
2288 Some (int_of_string s)
2289 with exc ->
2290 state.text <- Printf.sprintf "bad integer `%s': %s"
2291 s (exntos exc);
2292 None
2293 with
2294 | Some angle -> reqlayout angle conf.fitmodel
2295 | None -> ()
2297 TEswitch ("rotation: ", E.s, None, intentry, ondone, true)
2299 | 'i' ->
2300 conf.icase <- not conf.icase;
2301 TEdone ("case insensitive search " ^ (btos conf.icase))
2303 | 'p' ->
2304 conf.preload <- not conf.preload;
2305 gotoy state.y;
2306 TEdone ("preload " ^ (btos conf.preload))
2308 | 'v' ->
2309 conf.verbose <- not conf.verbose;
2310 TEdone ("verbose " ^ (btos conf.verbose))
2312 | 'd' ->
2313 conf.debug <- not conf.debug;
2314 TEdone ("debug " ^ (btos conf.debug))
2316 | 'h' ->
2317 conf.maxhfit <- not conf.maxhfit;
2318 state.maxy <- calcheight ();
2319 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2321 | 'c' ->
2322 conf.crophack <- not conf.crophack;
2323 TEdone ("crophack " ^ btos conf.crophack)
2325 | 'a' ->
2326 let s =
2327 match conf.maxwait with
2328 | None ->
2329 conf.maxwait <- Some infinity;
2330 "always wait for page to complete"
2331 | Some _ ->
2332 conf.maxwait <- None;
2333 "show placeholder if page is not ready"
2335 TEdone s
2337 | 'f' ->
2338 conf.underinfo <- not conf.underinfo;
2339 TEdone ("underinfo " ^ btos conf.underinfo)
2341 | 'P' ->
2342 conf.savebmarks <- not conf.savebmarks;
2343 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2345 | 'S' ->
2346 let ondone s =
2348 let pageno, py =
2349 match state.layout with
2350 | [] -> 0, 0
2351 | l :: _ ->
2352 l.pageno, l.pagey
2354 conf.interpagespace <- int_of_string s;
2355 docolumns conf.columns;
2356 state.maxy <- calcheight ();
2357 let y = getpagey pageno in
2358 gotoy (y + py)
2359 with exc ->
2360 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2362 TEswitch ("vertical margin: ", E.s, None, intentry, ondone, true)
2364 | 'l' ->
2365 let fm =
2366 match conf.fitmodel with
2367 | FitProportional -> FitWidth
2368 | _ -> FitProportional
2370 reqlayout conf.angle fm;
2371 TEdone ("proportional display " ^ btos (fm == FitProportional))
2373 | 'T' ->
2374 settrim (not conf.trimmargins) conf.trimfuzz;
2375 TEdone ("trim margins " ^ btos conf.trimmargins)
2377 | 'I' ->
2378 conf.invert <- not conf.invert;
2379 TEdone ("invert colors " ^ btos conf.invert)
2381 | 'x' ->
2382 let ondone s =
2383 cbput state.hists.sel s;
2384 conf.selcmd <- s;
2386 TEswitch ("selection command: ", E.s, Some (onhist state.hists.sel),
2387 textentry, ondone, true)
2389 | 'M' ->
2390 if conf.pax == None
2391 then conf.pax <- Some (ref (0.0, 0, 0))
2392 else conf.pax <- None;
2393 TEdone ("PAX " ^ btos (conf.pax != None))
2395 | _ ->
2396 state.text <- Printf.sprintf "bad option %d `%c'" key c;
2397 TEstop
2398 else
2399 TEcont state.text
2402 class type lvsource = object
2403 method getitemcount : int
2404 method getitem : int -> (string * int)
2405 method hasaction : int -> bool
2406 method exit :
2407 uioh:uioh ->
2408 cancel:bool ->
2409 active:int ->
2410 first:int ->
2411 pan:int ->
2412 uioh option
2413 method getactive : int
2414 method getfirst : int
2415 method getpan : int
2416 method getminfo : (int * int) array
2417 end;;
2419 class virtual lvsourcebase = object
2420 val mutable m_active = 0
2421 val mutable m_first = 0
2422 val mutable m_pan = 0
2423 method getactive = m_active
2424 method getfirst = m_first
2425 method getpan = m_pan
2426 method getminfo : (int * int) array = E.a
2427 end;;
2429 let withoutlastutf8 s =
2430 let len = String.length s in
2431 if len = 0
2432 then s
2433 else
2434 let rec find pos =
2435 if pos = 0
2436 then pos
2437 else
2438 let b = Char.code s.[pos] in
2439 if b land 0b11000000 = 0b11000000
2440 then pos
2441 else find (pos-1)
2443 let first =
2444 if Char.code s.[len-1] land 0x80 = 0
2445 then len-1
2446 else find (len-1)
2448 String.sub s 0 first;
2451 let textentrykeyboard
2452 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
2453 let key =
2454 if key >= 0xffb0 && key <= 0xffb9
2455 then key - 0xffb0 + 48 else key
2457 let enttext te =
2458 state.mode <- Textentry (te, onleave);
2459 state.text <- E.s;
2460 enttext ();
2461 G.postRedisplay "textentrykeyboard enttext";
2463 let histaction cmd =
2464 match opthist with
2465 | None -> ()
2466 | Some (action, _) ->
2467 state.mode <- Textentry (
2468 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
2470 G.postRedisplay "textentry histaction"
2472 match key with
2473 | 0xff08 -> (* backspace *)
2474 if emptystr text && cancelonempty
2475 then (
2476 onleave Cancel;
2477 G.postRedisplay "textentrykeyboard after cancel";
2479 else
2480 let s = withoutlastutf8 text in
2481 enttext (c, s, opthist, onkey, ondone, cancelonempty)
2483 | 0xff0d | 0xff8d -> (* (kp) enter *)
2484 ondone text;
2485 onleave Confirm;
2486 G.postRedisplay "textentrykeyboard after confirm"
2488 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
2489 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
2490 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
2491 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
2493 | 0xff1b -> (* escape*)
2494 if emptystr text
2495 then (
2496 begin match opthist with
2497 | None -> ()
2498 | Some (_, onhistcancel) -> onhistcancel ()
2499 end;
2500 onleave Cancel;
2501 state.text <- E.s;
2502 G.postRedisplay "textentrykeyboard after cancel2"
2504 else (
2505 enttext (c, E.s, opthist, onkey, ondone, cancelonempty)
2508 | 0xff9f | 0xffff -> () (* delete *)
2510 | _ when key != 0
2511 && key land 0xff00 != 0xff00 (* keyboard *)
2512 && key land 0xfe00 != 0xfe00 (* xkb *)
2513 && key land 0xfd00 != 0xfd00 (* 3270 *)
2515 begin match onkey text key with
2516 | TEdone text ->
2517 ondone text;
2518 onleave Confirm;
2519 G.postRedisplay "textentrykeyboard after confirm2";
2521 | TEcont text ->
2522 enttext (c, text, opthist, onkey, ondone, cancelonempty);
2524 | TEstop ->
2525 onleave Cancel;
2526 G.postRedisplay "textentrykeyboard after cancel3"
2528 | TEswitch te ->
2529 state.mode <- Textentry (te, onleave);
2530 G.postRedisplay "textentrykeyboard switch";
2531 end;
2533 | _ ->
2534 vlog "unhandled key %s" (Wsi.keyname key)
2537 let firstof first active =
2538 if first > active || abs (first - active) > fstate.maxrows - 1
2539 then max 0 (active - (fstate.maxrows/2))
2540 else first
2543 let calcfirst first active =
2544 if active > first
2545 then
2546 let rows = active - first in
2547 if rows > fstate.maxrows then active - fstate.maxrows else first
2548 else active
2551 let scrollph y maxy =
2552 let sh = float (maxy + state.winh) /. float state.winh in
2553 let sh = float state.winh /. sh in
2554 let sh = max sh (float conf.scrollh) in
2556 let percent = float y /. float maxy in
2557 let position = (float state.winh -. sh) *. percent in
2559 let position =
2560 if position +. sh > float state.winh
2561 then float state.winh -. sh
2562 else position
2564 position, sh;
2567 let coe s = (s :> uioh);;
2569 class listview ~zebra ~helpmode ~(source:lvsource) ~trusted ~modehash =
2570 object (self)
2571 val m_pan = source#getpan
2572 val m_first = source#getfirst
2573 val m_active = source#getactive
2574 val m_qsearch = E.s
2575 val m_prev_uioh = state.uioh
2577 method private elemunder y =
2578 if y < 0
2579 then None
2580 else
2581 let n = y / (fstate.fontsize+1) in
2582 if m_first + n < source#getitemcount
2583 then (
2584 if source#hasaction (m_first + n)
2585 then Some (m_first + n)
2586 else None
2588 else None
2590 method display =
2591 Gl.enable `blend;
2592 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
2593 GlDraw.color (0., 0., 0.) ~alpha:0.85;
2594 filledrect 0. 0. (float state.winw) (float state.winh);
2595 GlDraw.color (1., 1., 1.);
2596 Gl.enable `texture_2d;
2597 let fs = fstate.fontsize in
2598 let nfs = fs + 1 in
2599 let ww = fstate.wwidth in
2600 let tabw = 17.0*.ww in
2601 let itemcount = source#getitemcount in
2602 let minfo = source#getminfo in
2603 let x0, x1 =
2604 if conf.leftscroll
2605 then float (xadjsb 0), float (state.winw - 1)
2606 else 0.0, float (state.winw - conf.scrollbw - 1)
2608 let rec loop row =
2609 if (row - m_first) > fstate.maxrows
2610 then ()
2611 else (
2612 if row >= 0 && row < itemcount
2613 then (
2614 let (s, level) = source#getitem row in
2615 let y = (row - m_first) * nfs in
2616 let x =
2617 (if conf.leftscroll then float (xadjsb 0) else 5.0)
2618 +. (float (level + m_pan)) *. ww in
2619 if helpmode
2620 then GlDraw.color
2621 (let c = if row land 1 = 0 then 1.0 else 0.92 in (c,c,c));
2623 if row = m_active
2624 then (
2625 Gl.disable `texture_2d;
2626 let alpha = if source#hasaction row then 0.9 else 0.3 in
2627 GlDraw.color (1., 1., 1.) ~alpha;
2628 linerect (x0 +. 1.) (float (y + 1)) (x1) (float (y + fs + 3));
2629 Gl.enable `texture_2d;
2631 let c =
2632 if zebra && row land 1 = 1
2633 then 0.8
2634 else 1.0
2636 GlDraw.color (c,c,c);
2637 let drawtabularstring s =
2638 let drawstr x s =
2639 let pos =
2640 try String.index s '\000'
2641 with Not_found -> -1
2643 if pos = -1
2644 then drawstring1 fs (truncate (x +. x0)) (y+nfs) s
2645 else
2646 let s1 = String.sub s 0 pos
2647 and s2 = String.sub s (pos+1) (String.length s - pos - 1) in
2648 let xx = ww +. drawstring1 fs (truncate (x+.x0)) (y+nfs) s1 in
2649 let x2 = (wadjsb (xadjsb state.winw))/2 in
2650 let x = max x2 (truncate xx) in
2651 drawstring1 fs x (y+nfs) s2
2653 if trusted
2654 then
2655 let x = if helpmode && row > 0 then x +. ww else x in
2656 let tabpos = try String.index s '\t' with Not_found -> -1 in
2657 if tabpos > 0
2658 then
2659 let len = String.length s - tabpos - 1 in
2660 let s1 = String.sub s 0 tabpos
2661 and s2 = String.sub s (tabpos + 1) len in
2662 let nx = drawstr x s1 in
2663 let sw = nx -. x in
2664 let x = x +. (max tabw sw) in
2665 drawstr x s2
2666 else
2667 let len = String.length s - 2 in
2668 if len > 0 && s.[0] = '\xc2' && s.[1] = '\xb7'
2669 then
2670 let s = String.sub s 2 len in
2671 let x = if not helpmode then x +. ww else x in
2672 GlDraw.color (1.2, 1.2, 1.2);
2673 let vinc = drawstring1 (fs+fs/4)
2674 (truncate (x -. ww)) (y+nfs) s in
2675 GlDraw.color (1., 1., 1.);
2676 vinc +. (float fs *. 0.8)
2677 else
2678 drawstr x s
2679 else
2680 drawstr x s
2682 let _ = drawtabularstring s in
2683 loop (row+1)
2687 loop m_first;
2688 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
2689 let rec loop row =
2690 if (row - m_first) > fstate.maxrows
2691 then ()
2692 else (
2693 if row >= 0 && row < itemcount
2694 then (
2695 let (s, level) = source#getitem row in
2696 let y = (row - m_first) * nfs in
2697 let x = float (level + m_pan) *. ww in
2698 let (first, last) = minfo.(row) in
2699 let prefix = String.sub s 0 first in
2700 let suffix = String.sub s first (last - first) in
2701 let w1 = measurestr fstate.fontsize prefix in
2702 let w2 = measurestr fstate.fontsize suffix in
2703 let x = x +. if conf.leftscroll then float (xadjsb 5) else 5.0 in
2704 let x0 = x +. w1
2705 and y0 = float (y+2) in
2706 let x1 = x0 +. w2
2707 and y1 = float (y+fs+3) in
2708 filledrect x0 y0 x1 y1;
2709 loop (row+1)
2713 Gl.disable `texture_2d;
2714 if Array.length minfo > 0 then loop m_first;
2715 Gl.disable `blend;
2717 method updownlevel incr =
2718 let len = source#getitemcount in
2719 let curlevel =
2720 if m_active >= 0 && m_active < len
2721 then snd (source#getitem m_active)
2722 else -1
2724 let rec flow i =
2725 if i = len then i-1 else if i = -1 then 0 else
2726 let _, l = source#getitem i in
2727 if l != curlevel then i else flow (i+incr)
2729 let active = flow m_active in
2730 let first = calcfirst m_first active in
2731 G.postRedisplay "outline updownlevel";
2732 {< m_active = active; m_first = first >}
2734 method private key1 key mask =
2735 let set1 active first qsearch =
2736 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
2738 let search active pattern incr =
2739 let active = if active = -1 then m_first else active in
2740 let dosearch re =
2741 let rec loop n =
2742 if n >= 0 && n < source#getitemcount
2743 then (
2744 let s, _ = source#getitem n in
2746 (try ignore (Str.search_forward re s 0); true
2747 with Not_found -> false)
2748 then Some n
2749 else loop (n + incr)
2751 else None
2753 loop active
2756 let re = Str.regexp_case_fold pattern in
2757 dosearch re
2758 with Failure s ->
2759 state.text <- s;
2760 None
2762 let itemcount = source#getitemcount in
2763 let find start incr =
2764 let rec find i =
2765 if i = -1 || i = itemcount
2766 then -1
2767 else (
2768 if source#hasaction i
2769 then i
2770 else find (i + incr)
2773 find start
2775 let set active first =
2776 let first = bound first 0 (itemcount - fstate.maxrows) in
2777 state.text <- E.s;
2778 coe {< m_active = active; m_first = first; m_qsearch = E.s >}
2780 let navigate incr =
2781 let isvisible first n = n >= first && n - first <= fstate.maxrows in
2782 let active, first =
2783 let incr1 = if incr > 0 then 1 else -1 in
2784 if isvisible m_first m_active
2785 then
2786 let next =
2787 let next = m_active + incr in
2788 let next =
2789 if next < 0 || next >= itemcount
2790 then -1
2791 else find next incr1
2793 if abs (m_active - next) > fstate.maxrows
2794 then -1
2795 else next
2797 if next = -1
2798 then
2799 let first = m_first + incr in
2800 let first = bound first 0 (itemcount - fstate.maxrows) in
2801 let next =
2802 let next = m_active + incr in
2803 let next = bound next 0 (itemcount - 1) in
2804 find next ~-incr1
2806 let active =
2807 if next = -1
2808 then m_active
2809 else (
2810 if isvisible first next
2811 then next
2812 else m_active
2815 active, first
2816 else
2817 let first = min next m_first in
2818 let first =
2819 if abs (next - first) > fstate.maxrows
2820 then first + incr
2821 else first
2823 next, first
2824 else
2825 let first = m_first + incr in
2826 let first = bound first 0 (itemcount - 1) in
2827 let active =
2828 let next = m_active + incr in
2829 let next = bound next 0 (itemcount - 1) in
2830 let next = find next incr1 in
2831 let active =
2832 if next = -1 || abs (m_active - first) > fstate.maxrows
2833 then (
2834 let active = if m_active = -1 then next else m_active in
2835 active
2837 else next
2839 if isvisible first active
2840 then active
2841 else -1
2843 active, first
2845 G.postRedisplay "listview navigate";
2846 set active first;
2848 match key with
2849 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
2850 let incr = if key = 0x72 then -1 else 1 in
2851 let active, first =
2852 match search (m_active + incr) m_qsearch incr with
2853 | None ->
2854 state.text <- m_qsearch ^ " [not found]";
2855 m_active, m_first
2856 | Some active ->
2857 state.text <- m_qsearch;
2858 active, firstof m_first active
2860 G.postRedisplay "listview ctrl-r/s";
2861 set1 active first m_qsearch;
2863 | 0xff63 when Wsi.withctrl mask -> (* ctrl-insert *)
2864 if m_active >= 0 && m_active < source#getitemcount
2865 then (
2866 let s, _ = source#getitem m_active in
2867 selstring s;
2869 coe self
2871 | 0xff08 -> (* backspace *)
2872 if emptystr m_qsearch
2873 then coe self
2874 else (
2875 let qsearch = withoutlastutf8 m_qsearch in
2876 if emptystr qsearch
2877 then (
2878 state.text <- E.s;
2879 G.postRedisplay "listview empty qsearch";
2880 set1 m_active m_first E.s;
2882 else
2883 let active, first =
2884 match search m_active qsearch ~-1 with
2885 | None ->
2886 state.text <- qsearch ^ " [not found]";
2887 m_active, m_first
2888 | Some active ->
2889 state.text <- qsearch;
2890 active, firstof m_first active
2892 G.postRedisplay "listview backspace qsearch";
2893 set1 active first qsearch
2896 | key when (key != 0 && key land 0xff00 != 0xff00) ->
2897 let pattern = m_qsearch ^ toutf8 key in
2898 let active, first =
2899 match search m_active pattern 1 with
2900 | None ->
2901 state.text <- pattern ^ " [not found]";
2902 m_active, m_first
2903 | Some active ->
2904 state.text <- pattern;
2905 active, firstof m_first active
2907 G.postRedisplay "listview qsearch add";
2908 set1 active first pattern;
2910 | 0xff1b -> (* escape *)
2911 state.text <- E.s;
2912 if emptystr m_qsearch
2913 then (
2914 G.postRedisplay "list view escape";
2915 begin
2916 match
2917 source#exit (coe self) true m_active m_first m_pan
2918 with
2919 | None -> m_prev_uioh
2920 | Some uioh -> uioh
2923 else (
2924 G.postRedisplay "list view kill qsearch";
2925 coe {< m_qsearch = E.s >}
2928 | 0xff0d | 0xff8d -> (* (kp) enter *)
2929 state.text <- E.s;
2930 let self = {< m_qsearch = E.s >} in
2931 let opt =
2932 G.postRedisplay "listview enter";
2933 if m_active >= 0 && m_active < source#getitemcount
2934 then (
2935 source#exit (coe self) false m_active m_first m_pan;
2937 else (
2938 source#exit (coe self) true m_active m_first m_pan;
2941 begin match opt with
2942 | None -> m_prev_uioh
2943 | Some uioh -> uioh
2946 | 0xff9f | 0xffff -> (* (kp) delete *)
2947 coe self
2949 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
2950 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
2951 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
2952 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
2954 | 0xff53 | 0xff98 -> (* (kp) right *)
2955 state.text <- E.s;
2956 G.postRedisplay "listview right";
2957 coe {< m_pan = m_pan - 1 >}
2959 | 0xff51 | 0xff96 -> (* (kp) left *)
2960 state.text <- E.s;
2961 G.postRedisplay "listview left";
2962 coe {< m_pan = m_pan + 1 >}
2964 | 0xff50 | 0xff95 -> (* (kp) home *)
2965 let active = find 0 1 in
2966 G.postRedisplay "listview home";
2967 set active 0;
2969 | 0xff57 | 0xff9c -> (* (kp) end *)
2970 let first = max 0 (itemcount - fstate.maxrows) in
2971 let active = find (itemcount - 1) ~-1 in
2972 G.postRedisplay "listview end";
2973 set active first;
2975 | key when (key = 0 || key land 0xff00 = 0xff00) ->
2976 coe self
2978 | _ ->
2979 dolog "listview unknown key %#x" key; coe self
2981 method key key mask =
2982 match state.mode with
2983 | Textentry te -> textentrykeyboard key mask te; coe self
2984 | _ -> self#key1 key mask
2986 method button button down x y _ =
2987 let opt =
2988 match button with
2989 | 1 when x > state.winw - conf.scrollbw ->
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 not down ->
3009 begin match self#elemunder y with
3010 | Some n ->
3011 G.postRedisplay "listview click";
3012 source#exit (coe {< m_active = n >}) false n m_first m_pan
3013 | _ ->
3014 Some (coe self)
3016 | n when (n == 4 || n == 5) && not down ->
3017 let len = source#getitemcount in
3018 let first =
3019 if n = 5 && m_first + fstate.maxrows >= len
3020 then
3021 m_first
3022 else
3023 let first = m_first + (if n == 4 then -1 else 1) in
3024 bound first 0 (len - 1)
3026 G.postRedisplay "listview wheel";
3027 Some (coe {< m_first = first >})
3028 | n when (n = 6 || n = 7) && not down ->
3029 let inc = if n = 7 then -1 else 1 in
3030 G.postRedisplay "listview hwheel";
3031 Some (coe {< m_pan = m_pan + inc >})
3032 | _ ->
3033 Some (coe self)
3035 match opt with
3036 | None -> m_prev_uioh
3037 | Some uioh -> uioh
3039 method multiclick _ x y = self#button 1 true x y
3041 method motion _ y =
3042 match state.mstate with
3043 | Mscrolly ->
3044 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3045 let first = truncate (s *. float source#getitemcount) in
3046 let first = min source#getitemcount first in
3047 G.postRedisplay "listview motion";
3048 coe {< m_first = first; m_active = first >}
3049 | _ -> coe self
3051 method pmotion x y =
3052 if x < state.winw - conf.scrollbw
3053 then
3054 let n =
3055 match self#elemunder y with
3056 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3057 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3059 let o =
3060 if n != m_active
3061 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3062 else self
3064 coe o
3065 else (
3066 Wsi.setcursor Wsi.CURSOR_INHERIT;
3067 coe self
3070 method infochanged _ = ()
3072 method scrollpw = (0, 0.0, 0.0)
3073 method scrollph =
3074 let nfs = fstate.fontsize + 1 in
3075 let y = m_first * nfs in
3076 let itemcount = source#getitemcount in
3077 let maxi = max 0 (itemcount - fstate.maxrows) in
3078 let maxy = maxi * nfs in
3079 let p, h = scrollph y maxy in
3080 conf.scrollbw, p, h
3082 method modehash = modehash
3083 method eformsgs = false
3084 end;;
3086 class outlinelistview ~zebra ~source =
3087 let settext autonarrow s =
3088 if autonarrow
3089 then
3090 let ss = source#statestr in
3091 state.text <-
3092 if emptystr ss
3093 then "[" ^ s ^ "]"
3094 else "{" ^ ss ^ "} [" ^ s ^ "]"
3095 else state.text <- s
3097 object (self)
3098 inherit listview
3099 ~zebra
3100 ~helpmode:false
3101 ~source:(source :> lvsource)
3102 ~trusted:false
3103 ~modehash:(findkeyhash conf "outline")
3104 as super
3106 val m_autonarrow = false
3108 method key key mask =
3109 let maxrows =
3110 if emptystr state.text
3111 then fstate.maxrows
3112 else fstate.maxrows - 2
3114 let calcfirst first active =
3115 if active > first
3116 then
3117 let rows = active - first in
3118 if rows > maxrows then active - maxrows else first
3119 else active
3121 let navigate incr =
3122 let active = m_active + incr in
3123 let active = bound active 0 (source#getitemcount - 1) in
3124 let first = calcfirst m_first active in
3125 G.postRedisplay "outline navigate";
3126 coe {< m_active = active; m_first = first >}
3128 let navscroll first =
3129 let active =
3130 let dist = m_active - first in
3131 if dist < 0
3132 then first
3133 else (
3134 if dist < maxrows
3135 then m_active
3136 else first + maxrows
3139 G.postRedisplay "outline navscroll";
3140 coe {< m_first = first; m_active = active >}
3142 let ctrl = Wsi.withctrl mask in
3143 match key with
3144 | 97 when ctrl -> (* ctrl-a *)
3145 let text =
3146 if m_autonarrow
3147 then (source#denarrow; E.s)
3148 else (
3149 let pattern = source#renarrow in
3150 if nonemptystr m_qsearch
3151 then (source#narrow m_qsearch; m_qsearch)
3152 else pattern
3155 settext (not m_autonarrow) text;
3156 G.postRedisplay "toggle auto narrowing";
3157 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
3159 | 47 when emptystr m_qsearch && not m_autonarrow -> (* / *)
3160 settext true E.s;
3161 G.postRedisplay "toggle auto narrowing";
3162 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
3164 | 110 when ctrl -> (* ctrl-n *)
3165 source#narrow m_qsearch;
3166 if not m_autonarrow
3167 then source#add_narrow_pattern m_qsearch;
3168 G.postRedisplay "outline ctrl-n";
3169 coe {< m_first = 0; m_active = 0 >}
3171 | 83 when ctrl -> (* ctrl-S *)
3172 let active = source#calcactive (getanchor ()) in
3173 let first = firstof m_first active in
3174 G.postRedisplay "outline ctrl-s";
3175 coe {< m_first = first; m_active = active >}
3177 | 117 when ctrl -> (* ctrl-u *)
3178 G.postRedisplay "outline ctrl-u";
3179 if m_autonarrow && nonemptystr m_qsearch
3180 then (
3181 ignore (source#renarrow);
3182 settext m_autonarrow E.s;
3183 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3185 else (
3186 source#del_narrow_pattern;
3187 let pattern = source#renarrow in
3188 let text =
3189 if emptystr pattern then E.s else "Narrowed to " ^ pattern
3191 settext m_autonarrow text;
3192 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3195 | 108 when ctrl -> (* ctrl-l *)
3196 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3197 G.postRedisplay "outline ctrl-l";
3198 coe {< m_first = first >}
3200 | 0xff09 when m_autonarrow -> (* tab *)
3201 if nonemptystr m_qsearch
3202 then (
3203 G.postRedisplay "outline list view tab";
3204 source#add_narrow_pattern m_qsearch;
3205 settext true E.s;
3206 coe {< m_qsearch = E.s >}
3208 else coe self
3210 | 0xff1b when m_autonarrow -> (* escape *)
3211 if nonemptystr m_qsearch
3212 then source#add_narrow_pattern m_qsearch;
3213 super#key key mask
3215 | 0xff0d | 0xff8d when m_autonarrow -> (* (kp) enter *)
3216 if nonemptystr m_qsearch
3217 then source#add_narrow_pattern m_qsearch;
3218 super#key key mask
3220 | key when m_autonarrow && (key != 0 && key land 0xff00 != 0xff00) ->
3221 let pattern = m_qsearch ^ toutf8 key in
3222 G.postRedisplay "outlinelistview autonarrow add";
3223 source#narrow pattern;
3224 settext true pattern;
3225 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3227 | key when m_autonarrow && key = 0xff08 -> (* backspace *)
3228 if emptystr m_qsearch
3229 then coe self
3230 else
3231 let pattern = withoutlastutf8 m_qsearch in
3232 G.postRedisplay "outlinelistview autonarrow backspace";
3233 ignore (source#renarrow);
3234 source#narrow pattern;
3235 settext true pattern;
3236 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3238 | 0xff9f | 0xffff -> (* (kp) delete *)
3239 source#remove m_active;
3240 G.postRedisplay "outline delete";
3241 let active = max 0 (m_active-1) in
3242 coe {< m_first = firstof m_first active;
3243 m_active = active >}
3245 | 0xff52 | 0xff97 when ctrl -> (* ctrl-(kp) up *)
3246 navscroll (max 0 (m_first - 1))
3248 | 0xff54 | 0xff99 when ctrl -> (* ctrl-(kp) down *)
3249 navscroll (min (source#getitemcount - 1) (m_first + 1))
3251 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3252 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3253 | 0xff55 | 0xff9a -> (* (kp) prior *)
3254 navigate ~-(fstate.maxrows)
3255 | 0xff56 | 0xff9b -> (* (kp) next *)
3256 navigate fstate.maxrows
3258 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3259 let o =
3260 if ctrl
3261 then (
3262 G.postRedisplay "outline ctrl right";
3263 {< m_pan = m_pan + 1 >}
3265 else self#updownlevel 1
3267 coe o
3269 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3270 let o =
3271 if ctrl
3272 then (
3273 G.postRedisplay "outline ctrl left";
3274 {< m_pan = m_pan - 1 >}
3276 else self#updownlevel ~-1
3278 coe o
3280 | 0xff50 | 0xff95 -> (* (kp) home *)
3281 G.postRedisplay "outline home";
3282 coe {< m_first = 0; m_active = 0 >}
3284 | 0xff57 | 0xff9c -> (* (kp) end *)
3285 let active = source#getitemcount - 1 in
3286 let first = max 0 (active - fstate.maxrows) in
3287 G.postRedisplay "outline end";
3288 coe {< m_active = active; m_first = first >}
3290 | _ -> super#key key mask
3293 let gotounder under =
3294 let getpath filename =
3295 let path =
3296 if nonemptystr filename
3297 then
3298 if Filename.is_relative filename
3299 then
3300 let dir = Filename.dirname state.path in
3301 let dir =
3302 if Filename.is_implicit dir
3303 then Filename.concat (Sys.getcwd ()) dir
3304 else dir
3306 Filename.concat dir filename
3307 else filename
3308 else E.s
3310 if Sys.file_exists path
3311 then path
3312 else E.s
3314 match under with
3315 | Ulinkgoto (pageno, top) ->
3316 if pageno >= 0
3317 then (
3318 addnav ();
3319 gotopage1 pageno top;
3322 | Ulinkuri s ->
3323 gotouri s
3325 | Uremote (filename, pageno) ->
3326 let path = getpath filename in
3327 if nonemptystr path
3328 then (
3329 if conf.riani
3330 then
3331 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
3332 try popen command []
3333 with exn ->
3334 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
3335 flush stderr;
3336 else
3337 let anchor = getanchor () in
3338 let ranchor = state.path, state.password, anchor, state.origin in
3339 state.origin <- E.s;
3340 state.anchor <- (pageno, 0.0, 0.0);
3341 state.ranchors <- ranchor :: state.ranchors;
3342 opendoc path E.s;
3344 else showtext '!' ("Could not find " ^ filename)
3346 | Uremotedest (filename, destname) ->
3347 let path = getpath filename in
3348 if nonemptystr path
3349 then (
3350 if conf.riani
3351 then
3352 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
3353 try popen command []
3354 with exn ->
3355 Printf.eprintf
3356 "failed to execute `%s': %s\n" command (exntos exn);
3357 flush stderr;
3358 else
3359 let anchor = getanchor () in
3360 let ranchor = state.path, state.password, anchor, state.origin in
3361 state.origin <- E.s;
3362 state.nameddest <- destname;
3363 state.ranchors <- ranchor :: state.ranchors;
3364 opendoc path E.s;
3366 else showtext '!' ("Could not find " ^ filename)
3368 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
3371 let gotohist (path, (c, bookmarks, x, anchor)) =
3372 Config.save leavebirdseye;
3373 state.anchor <- anchor;
3374 state.x <- x;
3375 state.bookmarks <- bookmarks;
3376 state.origin <- E.s;
3377 opendoc path E.s;
3378 conf.presentation <- c.presentation;
3381 let gotooutline (_, _, kind) =
3382 match kind with
3383 | Onone -> ()
3384 | Oanchor anchor ->
3385 let (pageno, y, _) = anchor in
3386 let y = getanchory
3387 (if conf.presentation then (pageno, y, 1.0) else anchor)
3389 addnav ();
3390 gotoghyll y
3391 | Ouri uri -> gotounder (Ulinkuri uri)
3392 | Olaunch cmd -> gotounder (Ulaunch cmd)
3393 | Oremote remote -> gotounder (Uremote remote)
3394 | Ohistory hist -> gotohist hist
3395 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
3398 let genhistoutlines () =
3399 let list = ref [] in
3400 if Config.gethist list
3401 then
3402 let order (path1, c1, _, _, _) (path2, c2, _, _, _) =
3403 -(compare (c1.lastvisit, path1) (c2.lastvisit, path2))
3405 let ol =
3406 List.fold_left (fun accu (path, c, b, x, a) ->
3407 let hist = (path, (c, b, x, a)) in
3408 let base = mbtoutf8 (Filename.basename path) in
3409 (base ^ "\000" ^ c.title, 0, Ohistory hist) :: accu
3410 ) [] (List.sort order !list)
3412 Array.of_list ol
3413 else E.a;
3416 let outlinesource sourcetype =
3417 let empty = E.a in
3418 (object (self)
3419 inherit lvsourcebase
3420 val mutable m_items = empty
3421 val mutable m_minfo = empty
3422 val mutable m_orig_items = empty
3423 val mutable m_orig_minfo = empty
3424 val mutable m_narrow_patterns = []
3425 val mutable m_hadremovals = false
3426 val mutable m_gen = -1
3428 method getitemcount =
3429 Array.length m_items + (if m_hadremovals then 1 else 0)
3431 method getitem n =
3432 if n == Array.length m_items && m_hadremovals
3433 then
3434 ("[Confirm removal]", 0)
3435 else
3436 let s, n, _ = m_items.(n) in
3437 (s, n)
3439 method exit ~uioh ~cancel ~active ~first ~pan =
3440 ignore (uioh, first);
3441 let confrimremoval = m_hadremovals && active = Array.length m_items in
3442 let items, minfo =
3443 if m_narrow_patterns = []
3444 then m_orig_items, m_orig_minfo
3445 else m_items, m_minfo
3447 if not cancel
3448 then (
3449 if not confrimremoval
3450 then (
3451 gotooutline m_items.(active);
3452 m_items <- items;
3453 m_minfo <- minfo;
3455 else (
3456 state.bookmarks <- Array.to_list m_items;
3457 m_orig_items <- m_items;
3458 m_orig_minfo <- m_minfo;
3461 else (
3462 m_items <- items;
3463 m_minfo <- minfo;
3465 m_pan <- pan;
3466 None
3468 method hasaction _ = true
3470 method greetmsg =
3471 if Array.length m_items != Array.length m_orig_items
3472 then
3473 let s =
3474 match m_narrow_patterns with
3475 | one :: [] -> one
3476 | many -> String.concat "\xe2\x80\xa6" (List.rev many)
3478 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
3479 else E.s
3481 method statestr =
3482 match m_narrow_patterns with
3483 | [] -> E.s
3484 | one :: [] -> one
3485 | head :: _ -> "\xe2\x80\xa6" ^ head
3487 method narrow pattern =
3488 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3489 match reopt with
3490 | None -> ()
3491 | Some re ->
3492 let rec loop accu minfo n =
3493 if n = -1
3494 then (
3495 m_items <- Array.of_list accu;
3496 m_minfo <- Array.of_list minfo;
3498 else
3499 let (s, _, _) as o = m_items.(n) in
3500 let accu, minfo =
3501 let first =
3502 try Str.search_forward re s 0
3503 with Not_found -> -1
3505 if first >= 0
3506 then o :: accu, (first, Str.match_end ()) :: minfo
3507 else accu, minfo
3509 loop accu minfo (n-1)
3511 loop [] [] (Array.length m_items - 1)
3513 method getminfo = m_minfo
3515 method denarrow =
3516 m_orig_items <- (
3517 match sourcetype with
3518 | `bookmarks -> Array.of_list state.bookmarks
3519 | `outlines -> state.outlines
3520 | `history -> genhistoutlines ()
3522 m_minfo <- m_orig_minfo;
3523 m_items <- m_orig_items
3525 method remove m =
3526 if sourcetype = `bookmarks
3527 then
3528 if m >= 0 && m < Array.length m_items
3529 then (
3530 m_hadremovals <- true;
3531 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3532 let n = if n >= m then n+1 else n in
3533 m_items.(n)
3537 method add_narrow_pattern pattern =
3538 m_narrow_patterns <- pattern :: m_narrow_patterns
3540 method del_narrow_pattern =
3541 match m_narrow_patterns with
3542 | _ :: rest -> m_narrow_patterns <- rest
3543 | [] -> ()
3545 method renarrow =
3546 self#denarrow;
3547 match m_narrow_patterns with
3548 | pattern :: [] -> self#narrow pattern; pattern
3549 | list ->
3550 List.fold_left (fun accu pattern ->
3551 self#narrow pattern;
3552 pattern ^ "\xe2\x80\xa6" ^ accu) E.s list
3554 method calcactive anchor =
3555 let rely = getanchory anchor in
3556 let rec loop n best bestd =
3557 if n = Array.length m_items
3558 then best
3559 else
3560 let _, _, kind = m_items.(n) in
3561 match kind with
3562 | Oanchor anchor ->
3563 let orely = getanchory anchor in
3564 let d = abs (orely - rely) in
3565 if d < bestd
3566 then loop (n+1) n d
3567 else loop (n+1) best bestd
3568 | Onone | Oremote _ | Olaunch _
3569 | Oremotedest _ | Ouri _ | Ohistory _ ->
3570 loop (n+1) best bestd
3572 loop 0 ~-1 max_int
3574 method reset anchor items =
3575 m_hadremovals <- false;
3576 if state.gen != m_gen
3577 then (
3578 m_orig_items <- items;
3579 m_items <- items;
3580 m_narrow_patterns <- [];
3581 m_minfo <- empty;
3582 m_orig_minfo <- empty;
3583 m_gen <- state.gen;
3585 else (
3586 if items != m_orig_items
3587 then (
3588 m_orig_items <- items;
3589 if m_narrow_patterns == []
3590 then m_items <- items;
3593 let active = self#calcactive anchor in
3594 m_active <- active;
3595 m_first <- firstof m_first active
3596 end)
3599 let enterselector sourcetype =
3600 resetmstate ();
3601 let source = outlinesource sourcetype in
3602 fun errmsg ->
3603 let outlines =
3604 match sourcetype with
3605 | `bookmarks -> Array.of_list state.bookmarks
3606 | `outlines -> state.outlines
3607 | `history -> genhistoutlines ()
3609 if Array.length outlines = 0
3610 then (
3611 showtext ' ' errmsg;
3613 else (
3614 state.text <- source#greetmsg;
3615 Wsi.setcursor Wsi.CURSOR_INHERIT;
3616 let anchor = getanchor () in
3617 source#reset anchor outlines;
3618 state.uioh <-
3619 coe (new outlinelistview ~zebra:(sourcetype=`history) ~source);
3620 G.postRedisplay "enter selector";
3624 let enteroutlinemode =
3625 let f = enterselector `outlines in
3626 fun () -> f "Document has no outline";
3629 let enterbookmarkmode =
3630 let f = enterselector `bookmarks in
3631 fun () -> f "Document has no bookmarks (yet)";
3634 let enterhistmode () = enterselector `history "No history (yet)";;
3636 let makecheckers () =
3637 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3638 following to say:
3639 converted by Issac Trotts. July 25, 2002 *)
3640 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3641 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3642 let id = GlTex.gen_texture () in
3643 GlTex.bind_texture `texture_2d id;
3644 GlPix.store (`unpack_alignment 1);
3645 GlTex.image2d image;
3646 List.iter (GlTex.parameter ~target:`texture_2d)
3647 [ `mag_filter `nearest; `min_filter `nearest ];
3651 let setcheckers enabled =
3652 match state.checkerstexid with
3653 | None ->
3654 if enabled then state.checkerstexid <- Some (makecheckers ())
3656 | Some checkerstexid ->
3657 if not enabled
3658 then (
3659 GlTex.delete_texture checkerstexid;
3660 state.checkerstexid <- None;
3664 let describe_location () =
3665 let fn = page_of_y state.y in
3666 let ln = page_of_y (state.y + state.winh - hscrollh () - 1) in
3667 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
3668 let percent =
3669 if maxy <= 0
3670 then 100.
3671 else (100. *. (float state.y /. float maxy))
3673 if fn = ln
3674 then
3675 Printf.sprintf "page %d of %d [%.2f%%]"
3676 (fn+1) state.pagecount percent
3677 else
3678 Printf.sprintf
3679 "pages %d-%d of %d [%.2f%%]"
3680 (fn+1) (ln+1) state.pagecount percent
3683 let setpresentationmode v =
3684 let n = page_of_y state.y in
3685 state.anchor <- (n, 0.0, 1.0);
3686 conf.presentation <- v;
3687 if conf.fitmodel = FitPage
3688 then reqlayout conf.angle conf.fitmodel;
3689 represent ();
3692 let enterinfomode =
3693 let btos b = if b then "\xe2\x88\x9a" else E.s in
3694 let showextended = ref false in
3695 let leave mode = function
3696 | Confirm -> state.mode <- mode
3697 | Cancel -> state.mode <- mode in
3698 let src =
3699 (object
3700 val mutable m_first_time = true
3701 val mutable m_l = []
3702 val mutable m_a = E.a
3703 val mutable m_prev_uioh = nouioh
3704 val mutable m_prev_mode = View
3706 inherit lvsourcebase
3708 method reset prev_mode prev_uioh =
3709 m_a <- Array.of_list (List.rev m_l);
3710 m_l <- [];
3711 m_prev_mode <- prev_mode;
3712 m_prev_uioh <- prev_uioh;
3713 if m_first_time
3714 then (
3715 let rec loop n =
3716 if n >= Array.length m_a
3717 then ()
3718 else
3719 match m_a.(n) with
3720 | _, _, _, Action _ -> m_active <- n
3721 | _ -> loop (n+1)
3723 loop 0;
3724 m_first_time <- false;
3727 method int name get set =
3728 m_l <-
3729 (name, `int get, 1, Action (
3730 fun u ->
3731 let ondone s =
3732 try set (int_of_string s)
3733 with exn ->
3734 state.text <- Printf.sprintf "bad integer `%s': %s"
3735 s (exntos exn)
3737 state.text <- E.s;
3738 let te = name ^ ": ", E.s, None, intentry, ondone, true in
3739 state.mode <- Textentry (te, leave m_prev_mode);
3741 )) :: m_l
3743 method int_with_suffix name get set =
3744 m_l <-
3745 (name, `intws get, 1, Action (
3746 fun u ->
3747 let ondone s =
3748 try set (int_of_string_with_suffix s)
3749 with exn ->
3750 state.text <- Printf.sprintf "bad integer `%s': %s"
3751 s (exntos exn)
3753 state.text <- E.s;
3754 let te =
3755 name ^ ": ", E.s, None, intentry_with_suffix, ondone, true
3757 state.mode <- Textentry (te, leave m_prev_mode);
3759 )) :: m_l
3761 method bool ?(offset=1) ?(btos=btos) name get set =
3762 m_l <-
3763 (name, `bool (btos, get), offset, Action (
3764 fun u ->
3765 let v = get () in
3766 set (not v);
3768 )) :: m_l
3770 method color name get set =
3771 m_l <-
3772 (name, `color get, 1, Action (
3773 fun u ->
3774 let invalid = (nan, nan, nan) in
3775 let ondone s =
3776 let c =
3777 try color_of_string s
3778 with exn ->
3779 state.text <- Printf.sprintf "bad color `%s': %s"
3780 s (exntos exn);
3781 invalid
3783 if c <> invalid
3784 then set c;
3786 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3787 state.text <- color_to_string (get ());
3788 state.mode <- Textentry (te, leave m_prev_mode);
3790 )) :: m_l
3792 method string name get set =
3793 m_l <-
3794 (name, `string get, 1, Action (
3795 fun u ->
3796 let ondone s = set s in
3797 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3798 state.mode <- Textentry (te, leave m_prev_mode);
3800 )) :: m_l
3802 method colorspace name get set =
3803 m_l <-
3804 (name, `string get, 1, Action (
3805 fun _ ->
3806 let source =
3807 (object
3808 inherit lvsourcebase
3810 initializer
3811 m_active <- CSTE.to_int conf.colorspace;
3812 m_first <- 0;
3814 method getitemcount =
3815 Array.length CSTE.names
3816 method getitem n =
3817 (CSTE.names.(n), 0)
3818 method exit ~uioh ~cancel ~active ~first ~pan =
3819 ignore (uioh, first, pan);
3820 if not cancel then set active;
3821 None
3822 method hasaction _ = true
3823 end)
3825 state.text <- E.s;
3826 let modehash = findkeyhash conf "info" in
3827 coe (new listview ~zebra:false ~helpmode:false
3828 ~source ~trusted:true ~modehash)
3829 )) :: m_l
3831 method paxmark name get set =
3832 m_l <-
3833 (name, `string get, 1, Action (
3834 fun _ ->
3835 let source =
3836 (object
3837 inherit lvsourcebase
3839 initializer
3840 m_active <- MTE.to_int conf.paxmark;
3841 m_first <- 0;
3843 method getitemcount = Array.length MTE.names
3844 method getitem n = (MTE.names.(n), 0)
3845 method exit ~uioh ~cancel ~active ~first ~pan =
3846 ignore (uioh, first, pan);
3847 if not cancel then set active;
3848 None
3849 method hasaction _ = true
3850 end)
3852 state.text <- E.s;
3853 let modehash = findkeyhash conf "info" in
3854 coe (new listview ~zebra:false ~helpmode:false
3855 ~source ~trusted:true ~modehash)
3856 )) :: m_l
3858 method fitmodel name get set =
3859 m_l <-
3860 (name, `string get, 1, Action (
3861 fun _ ->
3862 let source =
3863 (object
3864 inherit lvsourcebase
3866 initializer
3867 m_active <- FMTE.to_int conf.fitmodel;
3868 m_first <- 0;
3870 method getitemcount = Array.length FMTE.names
3871 method getitem n = (FMTE.names.(n), 0)
3872 method exit ~uioh ~cancel ~active ~first ~pan =
3873 ignore (uioh, first, pan);
3874 if not cancel then set active;
3875 None
3876 method hasaction _ = true
3877 end)
3879 state.text <- E.s;
3880 let modehash = findkeyhash conf "info" in
3881 coe (new listview ~zebra:false ~helpmode:false
3882 ~source ~trusted:true ~modehash)
3883 )) :: m_l
3885 method caption s offset =
3886 m_l <- (s, `empty, offset, Noaction) :: m_l
3888 method caption2 s f offset =
3889 m_l <- (s, `string f, offset, Noaction) :: m_l
3891 method getitemcount = Array.length m_a
3893 method getitem n =
3894 let tostr = function
3895 | `int f -> string_of_int (f ())
3896 | `intws f -> string_with_suffix_of_int (f ())
3897 | `string f -> f ()
3898 | `color f -> color_to_string (f ())
3899 | `bool (btos, f) -> btos (f ())
3900 | `empty -> E.s
3902 let name, t, offset, _ = m_a.(n) in
3903 ((let s = tostr t in
3904 if nonemptystr s
3905 then Printf.sprintf "%s\t%s" name s
3906 else name),
3907 offset)
3909 method exit ~uioh ~cancel ~active ~first ~pan =
3910 let uiohopt =
3911 if not cancel
3912 then (
3913 let uioh =
3914 match m_a.(active) with
3915 | _, _, _, Action f -> f uioh
3916 | _ -> uioh
3918 Some uioh
3920 else None
3922 m_active <- active;
3923 m_first <- first;
3924 m_pan <- pan;
3925 uiohopt
3927 method hasaction n =
3928 match m_a.(n) with
3929 | _, _, _, Action _ -> true
3930 | _ -> false
3931 end)
3933 let rec fillsrc prevmode prevuioh =
3934 let sep () = src#caption E.s 0 in
3935 let colorp name get set =
3936 src#string name
3937 (fun () -> color_to_string (get ()))
3938 (fun v ->
3940 let c = color_of_string v in
3941 set c
3942 with exn ->
3943 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
3946 let oldmode = state.mode in
3947 let birdseye = isbirdseye state.mode in
3949 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
3951 src#bool "presentation mode"
3952 (fun () -> conf.presentation)
3953 (fun v -> setpresentationmode v);
3955 src#bool "ignore case in searches"
3956 (fun () -> conf.icase)
3957 (fun v -> conf.icase <- v);
3959 src#bool "preload"
3960 (fun () -> conf.preload)
3961 (fun v -> conf.preload <- v);
3963 src#bool "highlight links"
3964 (fun () -> conf.hlinks)
3965 (fun v -> conf.hlinks <- v);
3967 src#bool "under info"
3968 (fun () -> conf.underinfo)
3969 (fun v -> conf.underinfo <- v);
3971 src#bool "persistent bookmarks"
3972 (fun () -> conf.savebmarks)
3973 (fun v -> conf.savebmarks <- v);
3975 src#fitmodel "fit model"
3976 (fun () -> FMTE.to_string conf.fitmodel)
3977 (fun v -> reqlayout conf.angle (FMTE.of_int v));
3979 src#bool "trim margins"
3980 (fun () -> conf.trimmargins)
3981 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
3983 src#bool "persistent location"
3984 (fun () -> conf.jumpback)
3985 (fun v -> conf.jumpback <- v);
3987 sep ();
3988 src#int "inter-page space"
3989 (fun () -> conf.interpagespace)
3990 (fun n ->
3991 conf.interpagespace <- n;
3992 docolumns conf.columns;
3993 let pageno, py =
3994 match state.layout with
3995 | [] -> 0, 0
3996 | l :: _ ->
3997 l.pageno, l.pagey
3999 state.maxy <- calcheight ();
4000 let y = getpagey pageno in
4001 gotoy (y + py)
4004 src#int "page bias"
4005 (fun () -> conf.pagebias)
4006 (fun v -> conf.pagebias <- v);
4008 src#int "scroll step"
4009 (fun () -> conf.scrollstep)
4010 (fun n -> conf.scrollstep <- n);
4012 src#int "horizontal scroll step"
4013 (fun () -> conf.hscrollstep)
4014 (fun v -> conf.hscrollstep <- v);
4016 src#int "auto scroll step"
4017 (fun () ->
4018 match state.autoscroll with
4019 | Some step -> step
4020 | _ -> conf.autoscrollstep)
4021 (fun n ->
4022 let n = boundastep state.winh n in
4023 if state.autoscroll <> None
4024 then state.autoscroll <- Some n;
4025 conf.autoscrollstep <- n);
4027 src#int "zoom"
4028 (fun () -> truncate (conf.zoom *. 100.))
4029 (fun v -> setzoom ((float v) /. 100.));
4031 src#int "rotation"
4032 (fun () -> conf.angle)
4033 (fun v -> reqlayout v conf.fitmodel);
4035 src#int "scroll bar width"
4036 (fun () -> conf.scrollbw)
4037 (fun v ->
4038 conf.scrollbw <- v;
4039 reshape state.winw state.winh;
4042 src#int "scroll handle height"
4043 (fun () -> conf.scrollh)
4044 (fun v -> conf.scrollh <- v;);
4046 src#int "thumbnail width"
4047 (fun () -> conf.thumbw)
4048 (fun v ->
4049 conf.thumbw <- min 4096 v;
4050 match oldmode with
4051 | Birdseye beye ->
4052 leavebirdseye beye false;
4053 enterbirdseye ()
4054 | _ -> ()
4057 let mode = state.mode in
4058 src#string "columns"
4059 (fun () ->
4060 match conf.columns with
4061 | Csingle _ -> "1"
4062 | Cmulti (multi, _) -> multicolumns_to_string multi
4063 | Csplit (count, _) -> "-" ^ string_of_int count
4065 (fun v ->
4066 let n, a, b = multicolumns_of_string v in
4067 setcolumns mode n a b);
4069 sep ();
4070 src#caption "Pixmap cache" 0;
4071 src#int_with_suffix "size (advisory)"
4072 (fun () -> conf.memlimit)
4073 (fun v -> conf.memlimit <- v);
4075 src#caption2 "used"
4076 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4077 (string_with_suffix_of_int state.memused)
4078 (Hashtbl.length state.tilemap)) 1;
4080 sep ();
4081 src#caption "Layout" 0;
4082 src#caption2 "Dimension"
4083 (fun () ->
4084 Printf.sprintf "%dx%d (virtual %dx%d)"
4085 state.winw state.winh
4086 state.w state.maxy)
4088 if conf.debug
4089 then
4090 src#caption2 "Position" (fun () ->
4091 Printf.sprintf "%dx%d" state.x state.y
4093 else
4094 src#caption2 "Position" (fun () -> describe_location ()) 1
4097 sep ();
4098 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4099 "Save these parameters as global defaults at exit"
4100 (fun () -> conf.bedefault)
4101 (fun v -> conf.bedefault <- v)
4104 sep ();
4105 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4106 src#bool ~offset:0 ~btos "Extended parameters"
4107 (fun () -> !showextended)
4108 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4109 if !showextended
4110 then (
4111 src#bool "checkers"
4112 (fun () -> conf.checkers)
4113 (fun v -> conf.checkers <- v; setcheckers v);
4114 src#bool "update cursor"
4115 (fun () -> conf.updatecurs)
4116 (fun v -> conf.updatecurs <- v);
4117 src#bool "scroll-bar on the left"
4118 (fun () -> conf.leftscroll)
4119 (fun v -> conf.leftscroll <- v);
4120 src#bool "verbose"
4121 (fun () -> conf.verbose)
4122 (fun v -> conf.verbose <- v);
4123 src#bool "invert colors"
4124 (fun () -> conf.invert)
4125 (fun v -> conf.invert <- v);
4126 src#bool "max fit"
4127 (fun () -> conf.maxhfit)
4128 (fun v -> conf.maxhfit <- v);
4129 src#bool "redirect stderr"
4130 (fun () -> conf.redirectstderr)
4131 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4132 src#bool "pax mode"
4133 (fun () -> conf.pax != None)
4134 (fun v ->
4135 if v
4136 then conf.pax <- Some (ref (now (), 0, 0))
4137 else conf.pax <- None);
4138 src#string "uri launcher"
4139 (fun () -> conf.urilauncher)
4140 (fun v -> conf.urilauncher <- v);
4141 src#string "path launcher"
4142 (fun () -> conf.pathlauncher)
4143 (fun v -> conf.pathlauncher <- v);
4144 src#string "tile size"
4145 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4146 (fun v ->
4148 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4149 conf.tilew <- max 64 w;
4150 conf.tileh <- max 64 h;
4151 flushtiles ();
4152 with exn ->
4153 state.text <- Printf.sprintf "bad tile size `%s': %s"
4154 v (exntos exn)
4156 src#int "texture count"
4157 (fun () -> conf.texcount)
4158 (fun v ->
4159 if realloctexts v
4160 then conf.texcount <- v
4161 else showtext '!' " Failed to set texture count please retry later"
4163 src#int "slice height"
4164 (fun () -> conf.sliceheight)
4165 (fun v ->
4166 conf.sliceheight <- v;
4167 wcmd "sliceh %d" conf.sliceheight;
4169 src#int "anti-aliasing level"
4170 (fun () -> conf.aalevel)
4171 (fun v ->
4172 conf.aalevel <- bound v 0 8;
4173 state.anchor <- getanchor ();
4174 opendoc state.path state.password;
4176 src#string "page scroll scaling factor"
4177 (fun () -> string_of_float conf.pgscale)
4178 (fun v ->
4180 let s = float_of_string v in
4181 conf.pgscale <- s
4182 with exn ->
4183 state.text <- Printf.sprintf
4184 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4187 src#int "ui font size"
4188 (fun () -> fstate.fontsize)
4189 (fun v -> setfontsize (bound v 5 100));
4190 src#int "hint font size"
4191 (fun () -> conf.hfsize)
4192 (fun v -> conf.hfsize <- bound v 5 100);
4193 colorp "background color"
4194 (fun () -> conf.bgcolor)
4195 (fun v -> conf.bgcolor <- v);
4196 src#bool "crop hack"
4197 (fun () -> conf.crophack)
4198 (fun v -> conf.crophack <- v);
4199 src#string "trim fuzz"
4200 (fun () -> irect_to_string conf.trimfuzz)
4201 (fun v ->
4203 conf.trimfuzz <- irect_of_string v;
4204 if conf.trimmargins
4205 then settrim true conf.trimfuzz;
4206 with exn ->
4207 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4209 src#string "throttle"
4210 (fun () ->
4211 match conf.maxwait with
4212 | None -> "show place holder if page is not ready"
4213 | Some time ->
4214 if time = infinity
4215 then "wait for page to fully render"
4216 else
4217 "wait " ^ string_of_float time
4218 ^ " seconds before showing placeholder"
4220 (fun v ->
4222 let f = float_of_string v in
4223 if f <= 0.0
4224 then conf.maxwait <- None
4225 else conf.maxwait <- Some f
4226 with exn ->
4227 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4229 src#string "ghyll scroll"
4230 (fun () ->
4231 match conf.ghyllscroll with
4232 | None -> E.s
4233 | Some nab -> ghyllscroll_to_string nab
4235 (fun v ->
4236 try conf.ghyllscroll <- ghyllscroll_of_string v
4237 with exn ->
4238 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4240 src#string "selection command"
4241 (fun () -> conf.selcmd)
4242 (fun v -> conf.selcmd <- v);
4243 src#string "synctex command"
4244 (fun () -> conf.stcmd)
4245 (fun v -> conf.stcmd <- v);
4246 src#string "pax command"
4247 (fun () -> conf.paxcmd)
4248 (fun v -> conf.paxcmd <- v);
4249 src#colorspace "color space"
4250 (fun () -> CSTE.to_string conf.colorspace)
4251 (fun v ->
4252 conf.colorspace <- CSTE.of_int v;
4253 wcmd "cs %d" v;
4254 load state.layout;
4256 src#paxmark "pax mark method"
4257 (fun () -> MTE.to_string conf.paxmark)
4258 (fun v -> conf.paxmark <- MTE.of_int v);
4259 if pbousable ()
4260 then
4261 src#bool "use PBO"
4262 (fun () -> conf.usepbo)
4263 (fun v -> conf.usepbo <- v);
4264 src#bool "mouse wheel scrolls pages"
4265 (fun () -> conf.wheelbypage)
4266 (fun v -> conf.wheelbypage <- v);
4267 src#bool "open remote links in a new instance"
4268 (fun () -> conf.riani)
4269 (fun v -> conf.riani <- v);
4272 sep ();
4273 src#caption "Document" 0;
4274 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4275 src#caption2 "Pages"
4276 (fun () -> string_of_int state.pagecount) 1;
4277 src#caption2 "Dimensions"
4278 (fun () -> string_of_int (List.length state.pdims)) 1;
4279 if conf.trimmargins
4280 then (
4281 sep ();
4282 src#caption "Trimmed margins" 0;
4283 src#caption2 "Dimensions"
4284 (fun () -> string_of_int (List.length state.pdims)) 1;
4287 sep ();
4288 src#caption "OpenGL" 0;
4289 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4290 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4292 sep ();
4293 src#caption "Location" 0;
4294 if nonemptystr state.origin
4295 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
4296 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
4298 src#reset prevmode prevuioh;
4300 fun () ->
4301 state.text <- E.s;
4302 resetmstate ();
4303 let prevmode = state.mode
4304 and prevuioh = state.uioh in
4305 fillsrc prevmode prevuioh;
4306 let source = (src :> lvsource) in
4307 let modehash = findkeyhash conf "info" in
4308 state.uioh <- coe (object (self)
4309 inherit listview ~zebra:false ~helpmode:false
4310 ~source ~trusted:true ~modehash as super
4311 val mutable m_prevmemused = 0
4312 method infochanged = function
4313 | Memused ->
4314 if m_prevmemused != state.memused
4315 then (
4316 m_prevmemused <- state.memused;
4317 G.postRedisplay "memusedchanged";
4319 | Pdim -> G.postRedisplay "pdimchanged"
4320 | Docinfo -> fillsrc prevmode prevuioh
4322 method key key mask =
4323 if not (Wsi.withctrl mask)
4324 then
4325 match key with
4326 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4327 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4328 | _ -> super#key key mask
4329 else super#key key mask
4330 end);
4331 G.postRedisplay "info";
4334 let enterhelpmode =
4335 let source =
4336 (object
4337 inherit lvsourcebase
4338 method getitemcount = Array.length state.help
4339 method getitem n =
4340 let s, l, _ = state.help.(n) in
4341 (s, l)
4343 method exit ~uioh ~cancel ~active ~first ~pan =
4344 let optuioh =
4345 if not cancel
4346 then (
4347 match state.help.(active) with
4348 | _, _, Action f -> Some (f uioh)
4349 | _ -> Some (uioh)
4351 else None
4353 m_active <- active;
4354 m_first <- first;
4355 m_pan <- pan;
4356 optuioh
4358 method hasaction n =
4359 match state.help.(n) with
4360 | _, _, Action _ -> true
4361 | _ -> false
4363 initializer
4364 m_active <- -1
4365 end)
4366 in fun () ->
4367 let modehash = findkeyhash conf "help" in
4368 resetmstate ();
4369 state.uioh <- coe (new listview
4370 ~zebra:false ~helpmode:true
4371 ~source ~trusted:true ~modehash);
4372 G.postRedisplay "help";
4375 let entermsgsmode =
4376 let msgsource =
4377 let re = Str.regexp "[\r\n]" in
4378 (object
4379 inherit lvsourcebase
4380 val mutable m_items = E.a
4382 method getitemcount = 1 + Array.length m_items
4384 method getitem n =
4385 if n = 0
4386 then "[Clear]", 0
4387 else m_items.(n-1), 0
4389 method exit ~uioh ~cancel ~active ~first ~pan =
4390 ignore uioh;
4391 if not cancel
4392 then (
4393 if active = 0
4394 then Buffer.clear state.errmsgs;
4396 m_active <- active;
4397 m_first <- first;
4398 m_pan <- pan;
4399 None
4401 method hasaction n =
4402 n = 0
4404 method reset =
4405 state.newerrmsgs <- false;
4406 let l = Str.split re (Buffer.contents state.errmsgs) in
4407 m_items <- Array.of_list l
4409 initializer
4410 m_active <- 0
4411 end)
4412 in fun () ->
4413 state.text <- E.s;
4414 resetmstate ();
4415 msgsource#reset;
4416 let source = (msgsource :> lvsource) in
4417 let modehash = findkeyhash conf "listview" in
4418 state.uioh <- coe (object
4419 inherit listview ~zebra:false ~helpmode:false
4420 ~source ~trusted:false ~modehash as super
4421 method display =
4422 if state.newerrmsgs
4423 then msgsource#reset;
4424 super#display
4425 end);
4426 G.postRedisplay "msgs";
4429 let quickbookmark ?title () =
4430 match state.layout with
4431 | [] -> ()
4432 | l :: _ ->
4433 let title =
4434 match title with
4435 | None ->
4436 let tm = Unix.localtime (now ()) in
4437 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4438 (l.pageno+1)
4439 tm.Unix.tm_mday
4440 tm.Unix.tm_mon
4441 (tm.Unix.tm_year + 1900)
4442 tm.Unix.tm_hour
4443 tm.Unix.tm_min
4444 | Some title -> title
4446 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4449 let setautoscrollspeed step goingdown =
4450 let incr = max 1 ((abs step) / 2) in
4451 let incr = if goingdown then incr else -incr in
4452 let astep = boundastep state.winh (step + incr) in
4453 state.autoscroll <- Some astep;
4456 let canpan () =
4457 match conf.columns with
4458 | Csplit _ -> true
4459 | _ -> state.x != 0 || conf.zoom > 1.0
4462 let panbound x = bound x (-state.w) (wadjsb state.winw);;
4464 let existsinrow pageno (columns, coverA, coverB) p =
4465 let last = ((pageno - coverA) mod columns) + columns in
4466 let rec any = function
4467 | [] -> false
4468 | l :: rest ->
4469 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4470 then p l
4471 else (
4472 if not (p l)
4473 then (if l.pageno = last then false else any rest)
4474 else true
4477 any state.layout
4480 let nextpage () =
4481 match state.layout with
4482 | [] ->
4483 let pageno = page_of_y state.y in
4484 gotoghyll (getpagey (pageno+1))
4485 | l :: rest ->
4486 match conf.columns with
4487 | Csingle _ ->
4488 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4489 then
4490 let y = clamp (pgscale state.winh) in
4491 gotoghyll y
4492 else
4493 let pageno = min (l.pageno+1) (state.pagecount-1) in
4494 gotoghyll (getpagey pageno)
4495 | Cmulti ((c, _, _) as cl, _) ->
4496 if conf.presentation
4497 && (existsinrow l.pageno cl
4498 (fun l -> l.pageh > l.pagey + l.pagevh))
4499 then
4500 let y = clamp (pgscale state.winh) in
4501 gotoghyll y
4502 else
4503 let pageno = min (l.pageno+c) (state.pagecount-1) in
4504 gotoghyll (getpagey pageno)
4505 | Csplit (n, _) ->
4506 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4507 then
4508 let pagey, pageh = getpageyh l.pageno in
4509 let pagey = pagey + pageh * l.pagecol in
4510 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4511 gotoghyll (pagey + pageh + ips)
4514 let prevpage () =
4515 match state.layout with
4516 | [] ->
4517 let pageno = page_of_y state.y in
4518 gotoghyll (getpagey (pageno-1))
4519 | l :: _ ->
4520 match conf.columns with
4521 | Csingle _ ->
4522 if conf.presentation && l.pagey != 0
4523 then
4524 gotoghyll (clamp (pgscale ~-(state.winh)))
4525 else
4526 let pageno = max 0 (l.pageno-1) in
4527 gotoghyll (getpagey pageno)
4528 | Cmulti ((c, _, coverB) as cl, _) ->
4529 if conf.presentation &&
4530 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4531 then
4532 gotoghyll (clamp (pgscale ~-(state.winh)))
4533 else
4534 let decr =
4535 if l.pageno = state.pagecount - coverB
4536 then 1
4537 else c
4539 let pageno = max 0 (l.pageno-decr) in
4540 gotoghyll (getpagey pageno)
4541 | Csplit (n, _) ->
4542 let y =
4543 if l.pagecol = 0
4544 then
4545 if l.pageno = 0
4546 then l.pagey
4547 else
4548 let pageno = max 0 (l.pageno-1) in
4549 let pagey, pageh = getpageyh pageno in
4550 pagey + (n-1)*pageh
4551 else
4552 let pagey, pageh = getpageyh l.pageno in
4553 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4555 gotoghyll y
4558 let viewkeyboard key mask =
4559 let enttext te =
4560 let mode = state.mode in
4561 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4562 state.text <- E.s;
4563 enttext ();
4564 G.postRedisplay "view:enttext"
4566 let ctrl = Wsi.withctrl mask in
4567 let key =
4568 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4570 match key with
4571 | 81 -> (* Q *)
4572 exit 0
4574 | 0xff63 -> (* insert *)
4575 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4576 then (
4577 state.mode <- LinkNav (Ltgendir 0);
4578 gotoy state.y;
4580 else showtext '!' "Keyboard link navigation does not work under rotation"
4582 | 0xff1b | 113 -> (* escape / q *)
4583 begin match state.mstate with
4584 | Mzoomrect _ ->
4585 resetmstate ();
4586 G.postRedisplay "kill zoom rect";
4587 | _ ->
4588 begin match state.mode with
4589 | LinkNav _ ->
4590 state.mode <- View;
4591 G.postRedisplay "esc leave linknav"
4592 | _ ->
4593 match state.ranchors with
4594 | [] -> raise Quit
4595 | (path, password, anchor, origin) :: rest ->
4596 state.ranchors <- rest;
4597 state.anchor <- anchor;
4598 state.origin <- origin;
4599 state.nameddest <- E.s;
4600 opendoc path password
4601 end;
4602 end;
4604 | 0xff08 -> (* backspace *)
4605 gotoghyll (getnav ~-1)
4607 | 111 -> (* o *)
4608 enteroutlinemode ()
4610 | 72 -> (* H *)
4611 enterhistmode ()
4613 | 117 -> (* u *)
4614 state.rects <- [];
4615 state.text <- E.s;
4616 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
4617 G.postRedisplay "dehighlight";
4619 | 47 | 63 -> (* / ? *)
4620 let ondone isforw s =
4621 cbput state.hists.pat s;
4622 state.searchpattern <- s;
4623 search s isforw
4625 let s = String.create 1 in
4626 s.[0] <- Char.chr key;
4627 enttext (s, E.s, Some (onhist state.hists.pat),
4628 textentry, ondone (key = 47), true)
4630 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4631 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4632 setzoom (conf.zoom +. incr)
4634 | 43 | 0xffab -> (* + *)
4635 let ondone s =
4636 let n =
4637 try int_of_string s with exc ->
4638 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4639 max_int
4641 if n != max_int
4642 then (
4643 conf.pagebias <- n;
4644 state.text <- "page bias is now " ^ string_of_int n;
4647 enttext ("page bias: ", E.s, None, intentry, ondone, true)
4649 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4650 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4651 setzoom (max 0.01 (conf.zoom -. decr))
4653 | 45 | 0xffad -> (* - *)
4654 let ondone msg = state.text <- msg in
4655 enttext (
4656 "option [acfhilpstvxACFPRSZTISM]: ", E.s, None,
4657 optentry state.mode, ondone, true
4660 | 48 when ctrl -> (* ctrl-0 *)
4661 if conf.zoom = 1.0
4662 then (
4663 state.x <- 0;
4664 gotoy state.y
4666 else setzoom 1.0
4668 | (49 | 50) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
4669 let cols =
4670 match conf.columns with
4671 | Csingle _ | Cmulti _ -> 1
4672 | Csplit (n, _) -> n
4674 let h = state.winh -
4675 conf.interpagespace lsl (if conf.presentation then 1 else 0)
4677 let zoom = zoomforh state.winw h (vscrollw ()) cols in
4678 if zoom > 0.0 && (key = 50 || zoom < 1.0)
4679 then setzoom zoom
4681 | 51 when ctrl -> (* ctrl-3 *)
4682 let fm =
4683 match conf.fitmodel with
4684 | FitWidth -> FitProportional
4685 | FitProportional -> FitPage
4686 | FitPage -> FitWidth
4688 state.text <- "fit model: " ^ FMTE.to_string fm;
4689 reqlayout conf.angle fm
4691 | 0xffc6 -> (* f9 *)
4692 togglebirdseye ()
4694 | 57 when ctrl -> (* ctrl-9 *)
4695 togglebirdseye ()
4697 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4698 when not ctrl -> (* 0..9 *)
4699 let ondone s =
4700 let n =
4701 try int_of_string s with exc ->
4702 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4705 if n >= 0
4706 then (
4707 addnav ();
4708 cbput state.hists.pag (string_of_int n);
4709 gotopage1 (n + conf.pagebias - 1) 0;
4712 let pageentry text key =
4713 match Char.unsafe_chr key with
4714 | 'g' -> TEdone text
4715 | _ -> intentry text key
4717 let text = "x" in text.[0] <- Char.chr key;
4718 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4720 | 98 -> (* b *)
4721 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
4722 reshape state.winw state.winh;
4724 | 66 -> (* B *)
4725 state.bzoom <- not state.bzoom;
4726 state.rects <- [];
4727 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
4729 | 108 -> (* l *)
4730 conf.hlinks <- not conf.hlinks;
4731 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4732 G.postRedisplay "toggle highlightlinks";
4734 | 70 -> (* F *)
4735 state.glinks <- true;
4736 let mode = state.mode in
4737 state.mode <- Textentry (
4738 (":", E.s, None, linknentry, linkndone gotounder, false),
4739 (fun _ ->
4740 state.glinks <- false;
4741 state.mode <- mode)
4743 state.text <- E.s;
4744 G.postRedisplay "view:linkent(F)"
4746 | 121 -> (* y *)
4747 state.glinks <- true;
4748 let mode = state.mode in
4749 state.mode <- Textentry (
4751 ":", E.s, None, linknentry, linkndone (fun under ->
4752 selstring (undertext under);
4753 ), false
4755 fun _ ->
4756 state.glinks <- false;
4757 state.mode <- mode
4759 state.text <- E.s;
4760 G.postRedisplay "view:linkent"
4762 | 97 -> (* a *)
4763 begin match state.autoscroll with
4764 | Some step ->
4765 conf.autoscrollstep <- step;
4766 state.autoscroll <- None
4767 | None ->
4768 if conf.autoscrollstep = 0
4769 then state.autoscroll <- Some 1
4770 else state.autoscroll <- Some conf.autoscrollstep
4773 | 112 when ctrl -> (* ctrl-p *)
4774 launchpath ()
4776 | 80 -> (* P *)
4777 setpresentationmode (not conf.presentation);
4778 showtext ' ' ("presentation mode " ^
4779 if conf.presentation then "on" else "off");
4781 | 102 -> (* f *)
4782 if List.mem Wsi.Fullscreen state.winstate
4783 then Wsi.reshape conf.cwinw conf.cwinh
4784 else Wsi.fullscreen ()
4786 | 112 | 78 -> (* p|N *)
4787 search state.searchpattern false
4789 | 110 | 0xffc0 -> (* n|F3 *)
4790 search state.searchpattern true
4792 | 116 -> (* t *)
4793 begin match state.layout with
4794 | [] -> ()
4795 | l :: _ ->
4796 gotoghyll (getpagey l.pageno)
4799 | 32 -> (* space *)
4800 nextpage ()
4802 | 0xff9f | 0xffff -> (* delete *)
4803 prevpage ()
4805 | 61 -> (* = *)
4806 showtext ' ' (describe_location ());
4808 | 119 -> (* w *)
4809 begin match state.layout with
4810 | [] -> ()
4811 | l :: _ ->
4812 Wsi.reshape (l.pagew + vscrollw ()) l.pageh;
4813 G.postRedisplay "w"
4816 | 39 -> (* ' *)
4817 enterbookmarkmode ()
4819 | 104 | 0xffbe -> (* h|F1 *)
4820 enterhelpmode ()
4822 | 105 -> (* i *)
4823 enterinfomode ()
4825 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
4826 entermsgsmode ()
4828 | 109 -> (* m *)
4829 let ondone s =
4830 match state.layout with
4831 | l :: _ ->
4832 if nonemptystr s
4833 then
4834 state.bookmarks <-
4835 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4836 | _ -> ()
4838 enttext ("bookmark: ", E.s, None, textentry, ondone, true)
4840 | 126 -> (* ~ *)
4841 quickbookmark ();
4842 showtext ' ' "Quick bookmark added";
4844 | 122 -> (* z *)
4845 begin match state.layout with
4846 | l :: _ ->
4847 let rect = getpdimrect l.pagedimno in
4848 let w, h =
4849 if conf.crophack
4850 then
4851 (truncate (1.8 *. (rect.(1) -. rect.(0))),
4852 truncate (1.2 *. (rect.(3) -. rect.(0))))
4853 else
4854 (truncate (rect.(1) -. rect.(0)),
4855 truncate (rect.(3) -. rect.(0)))
4857 let w = truncate ((float w)*.conf.zoom)
4858 and h = truncate ((float h)*.conf.zoom) in
4859 if w != 0 && h != 0
4860 then (
4861 state.anchor <- getanchor ();
4862 Wsi.reshape (w + vscrollw ()) (h + conf.interpagespace)
4864 G.postRedisplay "z";
4866 | [] -> ()
4869 | 120 -> (* x *)
4870 state.roam ()
4871 | 60 | 62 -> (* < > *)
4872 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
4874 | 91 | 93 -> (* [ ] *)
4875 conf.colorscale <-
4876 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
4878 G.postRedisplay "brightness";
4880 | 99 when state.mode = View -> (* [alt-]c *)
4881 if Wsi.withalt mask
4882 then (
4883 if conf.zoom > 1.0
4884 then
4885 let m = (wadjsb state.winw - state.w) / 2 in
4886 state.x <- m;
4887 gotoy_and_clear_text state.y
4889 else
4890 let (c, a, b), z =
4891 match state.prevcolumns with
4892 | None -> (1, 0, 0), 1.0
4893 | Some (columns, z) ->
4894 let cab =
4895 match columns with
4896 | Csplit (c, _) -> -c, 0, 0
4897 | Cmulti ((c, a, b), _) -> c, a, b
4898 | Csingle _ -> 1, 0, 0
4900 cab, z
4902 setcolumns View c a b;
4903 setzoom z
4905 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
4906 -> (* ctrl-shift- (kp) [up|down] *)
4907 let zoom, x = state.prevzoom in
4908 setzoom zoom;
4909 state.x <- x;
4911 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
4912 begin match state.autoscroll with
4913 | None ->
4914 begin match state.mode with
4915 | Birdseye beye -> upbirdseye 1 beye
4916 | _ ->
4917 if ctrl
4918 then gotoy_and_clear_text (clamp ~-(state.winh/2))
4919 else (
4920 if not (Wsi.withshift mask) && conf.presentation
4921 then prevpage ()
4922 else gotoghyll1 true (clamp (-conf.scrollstep))
4925 | Some n ->
4926 setautoscrollspeed n false
4929 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
4930 begin match state.autoscroll with
4931 | None ->
4932 begin match state.mode with
4933 | Birdseye beye -> downbirdseye 1 beye
4934 | _ ->
4935 if ctrl
4936 then gotoy_and_clear_text (clamp (state.winh/2))
4937 else (
4938 if not (Wsi.withshift mask) && conf.presentation
4939 then nextpage ()
4940 else gotoghyll1 true (clamp (conf.scrollstep))
4943 | Some n ->
4944 setautoscrollspeed n true
4947 | 0xff51 | 0xff53 | 0xff96 | 0xff98
4948 when not (Wsi.withalt mask) -> (* (kp) left / right *)
4949 if canpan ()
4950 then
4951 let dx =
4952 if ctrl
4953 then state.winw / 2
4954 else conf.hscrollstep
4956 let dx = if key = 0xff51 || key = 0xff96 then dx else -dx in
4957 state.x <- panbound (state.x + dx);
4958 gotoy_and_clear_text state.y
4959 else (
4960 state.text <- E.s;
4961 G.postRedisplay "left/right"
4964 | 0xff55 | 0xff9a -> (* (kp) prior *)
4965 let y =
4966 if ctrl
4967 then
4968 match state.layout with
4969 | [] -> state.y
4970 | l :: _ -> state.y - l.pagey
4971 else
4972 clamp (pgscale (-state.winh))
4974 gotoghyll y
4976 | 0xff56 | 0xff9b -> (* (kp) next *)
4977 let y =
4978 if ctrl
4979 then
4980 match List.rev state.layout with
4981 | [] -> state.y
4982 | l :: _ -> getpagey l.pageno
4983 else
4984 clamp (pgscale state.winh)
4986 gotoghyll y
4988 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
4989 gotoghyll 0
4990 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
4991 gotoghyll (clamp state.maxy)
4993 | 0xff53 | 0xff98
4994 when Wsi.withalt mask -> (* alt-(kp) right *)
4995 gotoghyll (getnav 1)
4996 | 0xff51 | 0xff96
4997 when Wsi.withalt mask -> (* alt-(kp) left *)
4998 gotoghyll (getnav ~-1)
5000 | 114 -> (* r *)
5001 reload ()
5003 | 118 when conf.debug -> (* v *)
5004 state.rects <- [];
5005 List.iter (fun l ->
5006 match getopaque l.pageno with
5007 | None -> ()
5008 | Some opaque ->
5009 let x0, y0, x1, y1 = pagebbox opaque in
5010 let a,b = float x0, float y0 in
5011 let c,d = float x1, float y0 in
5012 let e,f = float x1, float y1 in
5013 let h,j = float x0, float y1 in
5014 let rect = (a,b,c,d,e,f,h,j) in
5015 debugrect rect;
5016 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5017 ) state.layout;
5018 G.postRedisplay "v";
5020 | 124 -> (* | *)
5021 let mode = state.mode in
5022 let cmd = ref E.s in
5023 let onleave = function
5024 | Cancel -> state.mode <- mode
5025 | Confirm ->
5026 List.iter (fun l ->
5027 match getopaque l.pageno with
5028 | Some opaque -> pipesel opaque !cmd
5029 | None -> ()) state.layout;
5030 state.mode <- mode
5032 let ondone s =
5033 cbput state.hists.sel s;
5034 cmd := s
5036 let te =
5037 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5039 G.postRedisplay "|";
5040 state.mode <- Textentry (te, onleave);
5042 | _ ->
5043 vlog "huh? %s" (Wsi.keyname key)
5046 let linknavkeyboard key mask linknav =
5047 let getpage pageno =
5048 let rec loop = function
5049 | [] -> None
5050 | l :: _ when l.pageno = pageno -> Some l
5051 | _ :: rest -> loop rest
5052 in loop state.layout
5054 let doexact (pageno, n) =
5055 match getopaque pageno, getpage pageno with
5056 | Some opaque, Some l ->
5057 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5058 then
5059 let under = getlink opaque n in
5060 G.postRedisplay "link gotounder";
5061 gotounder under;
5062 state.mode <- View;
5063 else
5064 let opt, dir =
5065 match key with
5066 | 0xff50 -> (* home *)
5067 Some (findlink opaque LDfirst), -1
5069 | 0xff57 -> (* end *)
5070 Some (findlink opaque LDlast), 1
5072 | 0xff51 -> (* left *)
5073 Some (findlink opaque (LDleft n)), -1
5075 | 0xff53 -> (* right *)
5076 Some (findlink opaque (LDright n)), 1
5078 | 0xff52 -> (* up *)
5079 Some (findlink opaque (LDup n)), -1
5081 | 0xff54 -> (* down *)
5082 Some (findlink opaque (LDdown n)), 1
5084 | _ -> None, 0
5086 let pwl l dir =
5087 begin match findpwl l.pageno dir with
5088 | Pwlnotfound -> ()
5089 | Pwl pageno ->
5090 let notfound dir =
5091 state.mode <- LinkNav (Ltgendir dir);
5092 let y, h = getpageyh pageno in
5093 let y =
5094 if dir < 0
5095 then y + h - state.winh
5096 else y
5098 gotoy y
5100 begin match getopaque pageno, getpage pageno with
5101 | Some opaque, Some _ ->
5102 let link =
5103 let ld = if dir > 0 then LDfirst else LDlast in
5104 findlink opaque ld
5106 begin match link with
5107 | Lfound m ->
5108 showlinktype (getlink opaque m);
5109 state.mode <- LinkNav (Ltexact (pageno, m));
5110 G.postRedisplay "linknav jpage";
5111 | _ -> notfound dir
5112 end;
5113 | _ -> notfound dir
5114 end;
5115 end;
5117 begin match opt with
5118 | Some Lnotfound -> pwl l dir;
5119 | Some (Lfound m) ->
5120 if m = n
5121 then pwl l dir
5122 else (
5123 let _, y0, _, y1 = getlinkrect opaque m in
5124 if y0 < l.pagey
5125 then gotopage1 l.pageno y0
5126 else (
5127 let d = fstate.fontsize + 1 in
5128 if y1 - l.pagey > l.pagevh - d
5129 then gotopage1 l.pageno (y1 - state.winh - hscrollh () + d)
5130 else G.postRedisplay "linknav";
5132 showlinktype (getlink opaque m);
5133 state.mode <- LinkNav (Ltexact (l.pageno, m));
5136 | None -> viewkeyboard key mask
5137 end;
5138 | _ -> viewkeyboard key mask
5140 if key = 0xff63
5141 then (
5142 state.mode <- View;
5143 G.postRedisplay "leave linknav"
5145 else
5146 match linknav with
5147 | Ltgendir _ -> viewkeyboard key mask
5148 | Ltexact exact -> doexact exact
5151 let keyboard key mask =
5152 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5153 then wcmd "interrupt"
5154 else state.uioh <- state.uioh#key key mask
5157 let birdseyekeyboard key mask
5158 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5159 let incr =
5160 match conf.columns with
5161 | Csingle _ -> 1
5162 | Cmulti ((c, _, _), _) -> c
5163 | Csplit _ -> failwith "bird's eye split mode"
5165 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5166 match key with
5167 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5168 let y, h = getpageyh pageno in
5169 let top = (state.winh - h) / 2 in
5170 gotoy (max 0 (y - top))
5171 | 0xff0d (* enter *)
5172 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5173 | 0xff1b -> leavebirdseye beye true (* escape *)
5174 | 0xff52 -> upbirdseye incr beye (* up *)
5175 | 0xff54 -> downbirdseye incr beye (* down *)
5176 | 0xff51 -> upbirdseye 1 beye (* left *)
5177 | 0xff53 -> downbirdseye 1 beye (* right *)
5179 | 0xff55 -> (* prior *)
5180 begin match state.layout with
5181 | l :: _ ->
5182 if l.pagey != 0
5183 then (
5184 state.mode <- Birdseye (
5185 oconf, leftx, l.pageno, hooverpageno, anchor
5187 gotopage1 l.pageno 0;
5189 else (
5190 let layout = layout (state.y-state.winh) (pgh state.layout) in
5191 match layout with
5192 | [] -> gotoy (clamp (-state.winh))
5193 | l :: _ ->
5194 state.mode <- Birdseye (
5195 oconf, leftx, l.pageno, hooverpageno, anchor
5197 gotopage1 l.pageno 0
5200 | [] -> gotoy (clamp (-state.winh))
5201 end;
5203 | 0xff56 -> (* next *)
5204 begin match List.rev state.layout with
5205 | l :: _ ->
5206 let layout = layout (state.y + (pgh state.layout)) state.winh in
5207 begin match layout with
5208 | [] ->
5209 let incr = l.pageh - l.pagevh in
5210 if incr = 0
5211 then (
5212 state.mode <-
5213 Birdseye (
5214 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5216 G.postRedisplay "birdseye pagedown";
5218 else gotoy (clamp (incr + conf.interpagespace*2));
5220 | l :: _ ->
5221 state.mode <-
5222 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5223 gotopage1 l.pageno 0;
5226 | [] -> gotoy (clamp state.winh)
5227 end;
5229 | 0xff50 -> (* home *)
5230 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5231 gotopage1 0 0
5233 | 0xff57 -> (* end *)
5234 let pageno = state.pagecount - 1 in
5235 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5236 if not (pagevisible state.layout pageno)
5237 then
5238 let h =
5239 match List.rev state.pdims with
5240 | [] -> state.winh
5241 | (_, _, h, _) :: _ -> h
5243 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5244 else G.postRedisplay "birdseye end";
5245 | _ -> viewkeyboard key mask
5248 let drawpage l =
5249 let color =
5250 match state.mode with
5251 | Textentry _ -> scalecolor 0.4
5252 | LinkNav _
5253 | View -> scalecolor 1.0
5254 | Birdseye (_, _, pageno, hooverpageno, _) ->
5255 if l.pageno = hooverpageno
5256 then scalecolor 0.9
5257 else (
5258 if l.pageno = pageno
5259 then scalecolor 1.0
5260 else scalecolor 0.8
5263 drawtiles l color;
5266 let postdrawpage l linkindexbase =
5267 match getopaque l.pageno with
5268 | Some opaque ->
5269 if tileready l l.pagex l.pagey
5270 then
5271 let x = l.pagedispx - l.pagex + xadjsb 0
5272 and y = l.pagedispy - l.pagey in
5273 let hlmask =
5274 match conf.columns with
5275 | Csingle _ | Cmulti _ ->
5276 (if conf.hlinks then 1 else 0)
5277 + (if state.glinks
5278 && not (isbirdseye state.mode) then 2 else 0)
5279 | _ -> 0
5281 let s =
5282 match state.mode with
5283 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5284 | _ -> E.s
5286 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5287 else 0
5288 | _ -> 0
5291 let scrollindicator () =
5292 let sbw, ph, sh = state.uioh#scrollph in
5293 let sbh, pw, sw = state.uioh#scrollpw in
5295 let x0,x1 =
5296 if conf.leftscroll
5297 then (0, sbw)
5298 else (state.winw - sbw), state.winw
5301 GlDraw.color (0.64, 0.64, 0.64);
5302 filledrect (float x0) 0. (float x1) (float state.winh);
5303 filledrect
5304 0. (float (state.winh - sbh))
5305 (float (wadjsb state.winw - 1)) (float state.winh)
5307 GlDraw.color (0.0, 0.0, 0.0);
5309 filledrect (float x0) ph (float x1) (ph +. sh);
5310 filledrect pw (float (state.winh - sbh)) (pw +. sw) (float state.winh);
5313 let showsel () =
5314 match state.mstate with
5315 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5318 | Msel ((x0, y0), (x1, y1)) ->
5319 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
5320 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< E.s, -1, 0, 0) in
5321 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< E.s, -1, 0, 0) in
5322 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
5325 let showrects = function [] -> () | rects ->
5326 Gl.enable `blend;
5327 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5328 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5329 List.iter
5330 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5331 List.iter (fun l ->
5332 if l.pageno = pageno
5333 then (
5334 let dx = float (l.pagedispx - l.pagex) in
5335 let dy = float (l.pagedispy - l.pagey) in
5336 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5337 Raw.sets_float state.vraw ~pos:0
5338 [| x0+.dx; y0+.dy;
5339 x1+.dx; y1+.dy;
5340 x3+.dx; y3+.dy;
5341 x2+.dx; y2+.dy |];
5342 GlArray.vertex `two state.vraw;
5343 GlArray.draw_arrays `triangle_strip 0 4;
5345 ) state.layout
5346 ) rects
5348 Gl.disable `blend;
5351 let display () =
5352 GlClear.color (scalecolor2 conf.bgcolor);
5353 GlClear.clear [`color];
5354 List.iter drawpage state.layout;
5355 let rects =
5356 match state.mode with
5357 | LinkNav (Ltexact (pageno, linkno)) ->
5358 begin match getopaque pageno with
5359 | Some opaque ->
5360 let dx = xadjsb 0 in
5361 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5362 let x0 = x0 + dx and x1 = x1 + dx in
5363 (pageno, 5, (
5364 float x0, float y0,
5365 float x1, float y0,
5366 float x1, float y1,
5367 float x0, float y1)
5368 ) :: state.rects
5369 | None -> state.rects
5371 | _ -> state.rects
5373 showrects rects;
5374 let rec postloop linkindexbase = function
5375 | l :: rest ->
5376 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
5377 postloop linkindexbase rest
5378 | [] -> ()
5380 showsel ();
5381 postloop 0 state.layout;
5382 state.uioh#display;
5383 begin match state.mstate with
5384 | Mzoomrect ((x0, y0), (x1, y1)) ->
5385 Gl.enable `blend;
5386 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5387 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5388 filledrect (float x0) (float y0) (float x1) (float y1);
5389 Gl.disable `blend;
5390 | _ -> ()
5391 end;
5392 enttext ();
5393 scrollindicator ();
5394 Wsi.swapb ();
5397 let zoomrect x y x1 y1 =
5398 let x0 = min x x1
5399 and x1 = max x x1
5400 and y0 = min y y1 in
5401 gotoy (state.y + y0);
5402 state.anchor <- getanchor ();
5403 let zoom = (float state.w) /. float (x1 - x0) in
5404 let margin =
5405 match conf.fitmodel, conf.columns with
5406 | FitPage, Csplit _ ->
5407 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
5409 | _, _ ->
5410 let adjw = wadjsb state.winw in
5411 if state.w < adjw
5412 then (adjw - state.w) / 2
5413 else 0
5415 state.x <- (state.x + margin) - x0;
5416 setzoom zoom;
5417 resetmstate ();
5420 let zoomblock x y =
5421 let g opaque l px py =
5422 match rectofblock opaque px py with
5423 | Some a ->
5424 let x0 = a.(0) -. 20. in
5425 let x1 = a.(1) +. 20. in
5426 let y0 = a.(2) -. 20. in
5427 let zoom = (float state.w) /. (x1 -. x0) in
5428 let pagey = getpagey l.pageno in
5429 gotoy_and_clear_text (pagey + truncate y0);
5430 state.anchor <- getanchor ();
5431 let margin = (state.w - l.pagew)/2 in
5432 state.x <- -truncate x0 - margin;
5433 setzoom zoom;
5434 None
5435 | None -> None
5437 match conf.columns with
5438 | Csplit _ ->
5439 showtext '!' "block zooming does not work properly in split columns mode"
5440 | _ -> onppundermouse g x y ()
5443 let scrollx x =
5444 let winw = wadjsb state.winw - 1 in
5445 let s = float x /. float winw in
5446 let destx = truncate (float (state.w + winw) *. s) in
5447 state.x <- winw - destx;
5448 gotoy_and_clear_text state.y;
5449 state.mstate <- Mscrollx;
5452 let scrolly y =
5453 let s = float y /. float state.winh in
5454 let desty = truncate (float (state.maxy - state.winh) *. s) in
5455 gotoy_and_clear_text desty;
5456 state.mstate <- Mscrolly;
5459 let viewmulticlick clicks x y mask =
5460 let g opaque l px py =
5461 let mark =
5462 match clicks with
5463 | 2 -> Mark_word
5464 | 3 -> Mark_line
5465 | 4 -> Mark_block
5466 | _ -> Mark_page
5468 if markunder opaque px py mark
5469 then (
5470 Some (fun () ->
5471 let dopipe cmd =
5472 match getopaque l.pageno with
5473 | None -> ()
5474 | Some opaque -> pipesel opaque cmd
5476 state.roam <- (fun () -> dopipe conf.paxcmd);
5477 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
5480 else None
5482 G.postRedisplay "viewmulticlick";
5483 onppundermouse g x y (fun () -> showtext '!' "Nothing to select") ();
5486 let canselect () =
5487 match conf.columns with
5488 | Csplit _ -> false
5489 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
5492 let viewmouse button down x y mask =
5493 match button with
5494 | n when (n == 4 || n == 5) && not down ->
5495 if Wsi.withctrl mask
5496 then (
5497 match state.mstate with
5498 | Mzoom (oldn, i) ->
5499 if oldn = n
5500 then (
5501 if i = 2
5502 then
5503 let incr =
5504 match n with
5505 | 5 ->
5506 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5507 | _ ->
5508 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5510 let zoom = conf.zoom -. incr in
5511 setzoom zoom;
5512 state.mstate <- Mzoom (n, 0);
5513 else
5514 state.mstate <- Mzoom (n, i+1);
5516 else state.mstate <- Mzoom (n, 0)
5518 | _ -> state.mstate <- Mzoom (n, 0)
5520 else (
5521 match state.autoscroll with
5522 | Some step -> setautoscrollspeed step (n=4)
5523 | None ->
5524 if conf.wheelbypage || conf.presentation
5525 then (
5526 if n = 4
5527 then prevpage ()
5528 else nextpage ()
5530 else
5531 let incr =
5532 if n = 4
5533 then -conf.scrollstep
5534 else conf.scrollstep
5536 let incr = incr * 2 in
5537 let y = clamp incr in
5538 gotoy_and_clear_text y
5541 | n when (n = 6 || n = 7) && not down && canpan () ->
5542 state.x <-
5543 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep);
5544 gotoy_and_clear_text state.y
5546 | 1 when Wsi.withshift mask ->
5547 state.mstate <- Mnone;
5548 if not down
5549 then (
5550 match unproject x y with
5551 | Some (pageno, ux, uy) ->
5552 let cmd = Printf.sprintf
5553 "%s %s %d %d %d"
5554 conf.stcmd state.path pageno ux uy
5556 popen cmd []
5557 | None -> ()
5560 | 1 when Wsi.withctrl mask ->
5561 if down
5562 then (
5563 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5564 state.mstate <- Mpan (x, y)
5566 else
5567 state.mstate <- Mnone
5569 | 3 ->
5570 if down
5571 then (
5572 Wsi.setcursor Wsi.CURSOR_CYCLE;
5573 let p = (x, y) in
5574 state.mstate <- Mzoomrect (p, p)
5576 else (
5577 match state.mstate with
5578 | Mzoomrect ((x0, y0), _) ->
5579 if abs (x-x0) > 10 && abs (y - y0) > 10
5580 then zoomrect x0 y0 x y
5581 else (
5582 resetmstate ();
5583 G.postRedisplay "kill accidental zoom rect";
5585 | _ ->
5586 resetmstate ()
5589 | 1 when x > state.winw - vscrollw () ->
5590 if down
5591 then
5592 let _, position, sh = state.uioh#scrollph in
5593 if y > truncate position && y < truncate (position +. sh)
5594 then state.mstate <- Mscrolly
5595 else scrolly y
5596 else
5597 state.mstate <- Mnone
5599 | 1 when y > state.winh - hscrollh () ->
5600 if down
5601 then
5602 let _, position, sw = state.uioh#scrollpw in
5603 if x > truncate position && x < truncate (position +. sw)
5604 then state.mstate <- Mscrollx
5605 else scrollx x
5606 else
5607 state.mstate <- Mnone
5609 | 1 when state.bzoom -> if not down then zoomblock x y
5611 | 1 ->
5612 let dest = if down then getunder x y else Unone in
5613 begin match dest with
5614 | Ulinkgoto _
5615 | Ulinkuri _
5616 | Uremote _ | Uremotedest _
5617 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5618 gotounder dest
5620 | Unone when down ->
5621 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5622 state.mstate <- Mpan (x, y);
5624 | Unone | Utext _ ->
5625 if down
5626 then (
5627 if canselect ()
5628 then (
5629 state.mstate <- Msel ((x, y), (x, y));
5630 G.postRedisplay "mouse select";
5633 else (
5634 match state.mstate with
5635 | Mnone -> ()
5637 | Mzoom _ | Mscrollx | Mscrolly ->
5638 state.mstate <- Mnone
5640 | Mzoomrect ((x0, y0), _) ->
5641 zoomrect x0 y0 x y
5643 | Mpan _ ->
5644 Wsi.setcursor Wsi.CURSOR_INHERIT;
5645 state.mstate <- Mnone
5647 | Msel ((x0, y0), (x1, y1)) ->
5648 let rec loop = function
5649 | [] -> ()
5650 | l :: rest ->
5651 let inside =
5652 let a0 = l.pagedispy in
5653 let a1 = a0 + l.pagevh in
5654 let b0 = l.pagedispx in
5655 let b1 = b0 + l.pagevw in
5656 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5657 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5659 if inside
5660 then
5661 match getopaque l.pageno with
5662 | Some opaque ->
5663 let dosel cmd () =
5664 match Ne.res Unix.pipe with
5665 | Ne.Exn exn ->
5666 showtext '!'
5667 (Printf.sprintf
5668 "can not create sel pipe: %s"
5669 (exntos exn));
5670 | Ne.Res (r, w) ->
5671 let clo what fd =
5672 Ne.clo fd (fun msg ->
5673 dolog "%s close failed: %s" what msg)
5675 let popened =
5676 try popen cmd [r, 0; w, -1]; true
5677 with exn ->
5678 dolog "can not execute %S: %s"
5679 cmd (exntos exn);
5680 false
5682 if popened
5683 then (
5684 copysel w opaque;
5685 G.postRedisplay "copysel";
5687 else clo "Msel pipe/w" w;
5688 clo "Msel pipe/r" r;
5690 dosel conf.selcmd ();
5691 state.roam <- dosel conf.paxcmd;
5692 | None -> ()
5693 else loop rest
5695 loop state.layout;
5696 resetmstate ();
5700 | _ -> ()
5703 let birdseyemouse button down x y mask
5704 (conf, leftx, _, hooverpageno, anchor) =
5705 match button with
5706 | 1 when down ->
5707 let rec loop = function
5708 | [] -> ()
5709 | l :: rest ->
5710 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5711 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5712 then (
5713 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5715 else loop rest
5717 loop state.layout
5718 | 3 -> ()
5719 | _ -> viewmouse button down x y mask
5722 let uioh = object
5723 method display = ()
5725 method key key mask =
5726 begin match state.mode with
5727 | Textentry textentry -> textentrykeyboard key mask textentry
5728 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5729 | View -> viewkeyboard key mask
5730 | LinkNav linknav -> linknavkeyboard key mask linknav
5731 end;
5732 state.uioh
5734 method button button bstate x y mask =
5735 begin match state.mode with
5736 | LinkNav _
5737 | View -> viewmouse button bstate x y mask
5738 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5739 | Textentry _ -> ()
5740 end;
5741 state.uioh
5743 method multiclick clicks x y mask =
5744 begin match state.mode with
5745 | LinkNav _
5746 | View -> viewmulticlick clicks x y mask
5747 | Birdseye _
5748 | Textentry _ -> ()
5749 end;
5750 state.uioh
5752 method motion x y =
5753 begin match state.mode with
5754 | Textentry _ -> ()
5755 | View | Birdseye _ | LinkNav _ ->
5756 match state.mstate with
5757 | Mzoom _ | Mnone -> ()
5759 | Mpan (x0, y0) ->
5760 let dx = x - x0
5761 and dy = y0 - y in
5762 state.mstate <- Mpan (x, y);
5763 if canpan ()
5764 then state.x <- panbound (state.x + dx);
5765 let y = clamp dy in
5766 gotoy_and_clear_text y
5768 | Msel (a, _) ->
5769 state.mstate <- Msel (a, (x, y));
5770 G.postRedisplay "motion select";
5772 | Mscrolly ->
5773 let y = min state.winh (max 0 y) in
5774 scrolly y
5776 | Mscrollx ->
5777 let x = min state.winw (max 0 x) in
5778 scrollx x
5780 | Mzoomrect (p0, _) ->
5781 state.mstate <- Mzoomrect (p0, (x, y));
5782 G.postRedisplay "motion zoomrect";
5783 end;
5784 state.uioh
5786 method pmotion x y =
5787 begin match state.mode with
5788 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5789 let rec loop = function
5790 | [] ->
5791 if hooverpageno != -1
5792 then (
5793 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5794 G.postRedisplay "pmotion birdseye no hoover";
5796 | l :: rest ->
5797 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5798 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5799 then (
5800 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5801 G.postRedisplay "pmotion birdseye hoover";
5803 else loop rest
5805 loop state.layout
5807 | Textentry _ -> ()
5809 | LinkNav _
5810 | View ->
5811 match state.mstate with
5812 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5814 | Mnone ->
5815 updateunder x y;
5816 if canselect ()
5817 then
5818 match conf.pax with
5819 | None -> ()
5820 | Some r ->
5821 let past, _, _ = !r in
5822 let now = now () in
5823 let delta = now -. past in
5824 if delta > 0.01
5825 then paxunder x y
5826 else r := (now, x, y)
5827 end;
5828 state.uioh
5830 method infochanged _ = ()
5832 method scrollph =
5833 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
5834 let p, h =
5835 if maxy = 0
5836 then 0.0, float state.winh
5837 else scrollph state.y maxy
5839 vscrollw (), p, h
5841 method scrollpw =
5842 let winw = wadjsb state.winw in
5843 let fwinw = float winw in
5844 let sw =
5845 let sw = fwinw /. float state.w in
5846 let sw = fwinw *. sw in
5847 max sw (float conf.scrollh)
5849 let position =
5850 let maxx = state.w + winw in
5851 let x = winw - state.x in
5852 let percent = float x /. float maxx in
5853 (fwinw -. sw) *. percent
5855 hscrollh (), position, sw
5857 method modehash =
5858 let modename =
5859 match state.mode with
5860 | LinkNav _ -> "links"
5861 | Textentry _ -> "textentry"
5862 | Birdseye _ -> "birdseye"
5863 | View -> "view"
5865 findkeyhash conf modename
5867 method eformsgs = true
5868 end;;
5870 let adderrmsg src msg =
5871 Buffer.add_string state.errmsgs msg;
5872 state.newerrmsgs <- true;
5873 G.postRedisplay src
5876 let adderrfmt src fmt =
5877 Format.kprintf (fun s -> adderrmsg src s) fmt;
5880 let ract cmds =
5881 let cl = splitatspace cmds in
5882 let scan s fmt f =
5883 try Scanf.sscanf s fmt f
5884 with exn ->
5885 adderrfmt "remote exec"
5886 "error processing '%S': %s\n" cmds (exntos exn)
5888 match cl with
5889 | "reload" :: [] -> reload ()
5890 | "goto" :: args :: [] ->
5891 scan args "%u %f %f"
5892 (fun pageno x y ->
5893 let cmd, _ = state.geomcmds in
5894 if emptystr cmd
5895 then gotopagexy pageno x y
5896 else
5897 let f prevf () =
5898 gotopagexy pageno x y;
5899 prevf ()
5901 state.reprf <- f state.reprf
5903 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
5904 | "gotor" :: args :: [] ->
5905 scan args "%S %u"
5906 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
5907 | "gotord" :: args :: [] ->
5908 scan args "%S %S"
5909 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
5910 | "rect" :: args :: [] ->
5911 scan args "%u %u %f %f %f %f"
5912 (fun pageno color x0 y0 x1 y1 ->
5913 onpagerect pageno (fun w h ->
5914 let _,w1,h1,_ = getpagedim pageno in
5915 let sw = float w1 /. float w
5916 and sh = float h1 /. float h in
5917 let x0s = x0 *. sw
5918 and x1s = x1 *. sw
5919 and y0s = y0 *. sh
5920 and y1s = y1 *. sh in
5921 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
5922 debugrect rect;
5923 state.rects <- (pageno, color, rect) :: state.rects;
5924 G.postRedisplay "rect";
5927 | "activatewin" :: [] -> Wsi.activatewin ()
5928 | "quit" :: [] -> raise Quit
5929 | _ ->
5930 adderrfmt "remote command"
5931 "error processing remote command: %S\n" cmds;
5934 let remote =
5935 let scratch = String.create 80 in
5936 let buf = Buffer.create 80 in
5937 fun fd ->
5938 let rec tempfr () =
5939 try Some (Unix.read fd scratch 0 80)
5940 with
5941 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
5942 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
5943 | exn -> raise exn
5945 match tempfr () with
5946 | None -> Some fd
5947 | Some n ->
5948 if n = 0
5949 then (
5950 Unix.close fd;
5951 if Buffer.length buf > 0
5952 then (
5953 let s = Buffer.contents buf in
5954 Buffer.clear buf;
5955 ract s;
5957 None
5959 else
5960 let rec eat ppos =
5961 let nlpos =
5963 let pos = String.index_from scratch ppos '\n' in
5964 if pos >= n then -1 else pos
5965 with Not_found -> -1
5967 if nlpos >= 0
5968 then (
5969 Buffer.add_substring buf scratch ppos (nlpos-ppos);
5970 let s = Buffer.contents buf in
5971 Buffer.clear buf;
5972 ract s;
5973 eat (nlpos+1);
5975 else (
5976 Buffer.add_substring buf scratch ppos (n-ppos);
5977 Some fd
5979 in eat 0
5982 let remoteopen path =
5983 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
5984 with exn ->
5985 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
5986 None
5989 let () =
5990 let trimcachepath = ref E.s in
5991 let rcmdpath = ref E.s in
5992 let pageno = ref None in
5993 selfexec := Sys.executable_name;
5994 Arg.parse
5995 (Arg.align
5996 [("-p", Arg.String (fun s -> state.password <- s),
5997 "<password> Set password");
5999 ("-f", Arg.String
6000 (fun s ->
6001 Config.fontpath := s;
6002 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
6004 "<path> Set path to the user interface font");
6006 ("-c", Arg.String
6007 (fun s ->
6008 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
6009 Config.confpath := s),
6010 "<path> Set path to the configuration file");
6012 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
6013 "<page-number> Jump to page");
6015 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6016 "<path> Set path to the trim cache file");
6018 ("-dest", Arg.String (fun s -> state.nameddest <- s),
6019 "<named-destination> Set named destination");
6021 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
6022 ("-cxack", Arg.Set cxack, " Cut corners");
6024 ("-remote", Arg.String (fun s -> rcmdpath := s),
6025 "<path> Set path to the remote commands source");
6027 ("-origin", Arg.String (fun s -> state.origin <- s),
6028 "<original-path> Set original path");
6030 ("-v", Arg.Unit (fun () ->
6031 Printf.printf
6032 "%s\nconfiguration path: %s\n"
6033 (version ())
6034 Config.defconfpath
6036 exit 0), " Print version and exit");
6039 (fun s -> state.path <- s)
6040 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6042 if !wtmode
6043 then selfexec := !selfexec ^ " -wtmode";
6045 let histmode = emptystr state.path in
6047 if not (Config.load ())
6048 then prerr_endline "failed to load configuration";
6049 begin match !pageno with
6050 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
6051 | None -> ()
6052 end;
6054 let wsfd, winw, winh = Wsi.init (object (self)
6055 val mutable m_hack = false
6056 val mutable m_clicks = 0
6057 val mutable m_click_x = 0
6058 val mutable m_click_y = 0
6059 val mutable m_lastclicktime = infinity
6061 method private cleanup =
6062 state.roam <- noroam;
6063 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
6064 method expose = if not m_hack then G.postRedisplay "expose"
6065 method visible = G.postRedisplay "visible"
6066 method display = m_hack <- false; display ()
6067 method reshape w h =
6068 self#cleanup;
6069 m_hack <- w < state.winw && h < state.winh;
6070 reshape w h
6071 method mouse b d x y m =
6072 if d && canselect ()
6073 then (
6074 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
6075 m_click_x <- x;
6076 m_click_y <- y;
6077 if b = 1
6078 then (
6079 let t = now () in
6080 if abs x - m_click_x > 10
6081 || abs y - m_click_y > 10
6082 || abs_float (t -. m_lastclicktime) > 0.3
6083 then m_clicks <- 0;
6084 m_clicks <- m_clicks + 1;
6085 m_lastclicktime <- t;
6086 if m_clicks = 1
6087 then (
6088 self#cleanup;
6089 G.postRedisplay "cleanup";
6090 state.uioh <- state.uioh#button b d x y m;
6092 else state.uioh <- state.uioh#multiclick m_clicks x y m
6094 else (
6095 self#cleanup;
6096 m_clicks <- 0;
6097 m_lastclicktime <- infinity;
6098 state.uioh <- state.uioh#button b d x y m
6101 else (
6102 state.uioh <- state.uioh#button b d x y m
6104 method motion x y =
6105 state.mpos <- (x, y);
6106 state.uioh <- state.uioh#motion x y
6107 method pmotion x y =
6108 state.mpos <- (x, y);
6109 state.uioh <- state.uioh#pmotion x y
6110 method key k m =
6111 let mascm = m land (
6112 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6113 ) in
6114 let keyboard k m =
6115 let x = state.x and y = state.y in
6116 keyboard k m;
6117 if x != state.x || y != state.y then self#cleanup
6119 match state.keystate with
6120 | KSnone ->
6121 let km = k, mascm in
6122 begin
6123 match
6124 let modehash = state.uioh#modehash in
6125 try Hashtbl.find modehash km
6126 with Not_found ->
6127 try Hashtbl.find (findkeyhash conf "global") km
6128 with Not_found -> KMinsrt (k, m)
6129 with
6130 | KMinsrt (k, m) -> keyboard k m
6131 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6132 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6134 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6135 List.iter (fun (k, m) -> keyboard k m) insrt;
6136 state.keystate <- KSnone
6137 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6138 state.keystate <- KSinto (keys, insrt)
6139 | _ ->
6140 state.keystate <- KSnone
6142 method enter x y =
6143 state.mpos <- (x, y);
6144 state.uioh <- state.uioh#pmotion x y
6145 method leave = state.mpos <- (-1, -1)
6146 method winstate wsl = state.winstate <- wsl; m_hack <- false
6147 method quit = raise Quit
6148 end) conf.cwinw conf.cwinh (platform = Posx) in
6150 state.wsfd <- wsfd;
6152 if not (
6153 List.exists GlMisc.check_extension
6154 [ "GL_ARB_texture_rectangle"
6155 ; "GL_EXT_texture_recangle"
6156 ; "GL_NV_texture_rectangle" ]
6158 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6160 if (
6161 let r = GlMisc.get_string `renderer in
6162 let p = "Mesa DRI Intel(" in
6163 let l = String.length p in
6164 String.length r > l && String.sub r 0 l = p
6166 then (
6167 defconf.sliceheight <- 1024;
6168 defconf.texcount <- 32;
6169 defconf.usepbo <- true;
6172 let cr, sw =
6173 match Ne.res Unix.pipe with
6174 | Ne.Exn exn ->
6175 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
6176 exit 1
6177 | Ne.Res rw -> rw
6178 and sr, cw =
6179 match Ne.res Unix.pipe with
6180 | Ne.Exn exn ->
6181 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
6182 exit 1
6183 | Ne.Res rw -> rw
6186 cloexec cr;
6187 cloexec sw;
6188 cloexec sr;
6189 cloexec cw;
6191 setcheckers conf.checkers;
6192 redirectstderr ();
6193 if conf.redirectstderr
6194 then
6195 at_exit (fun () ->
6196 let s = Buffer.contents state.errmsgs ^
6197 (match state.errfd with
6198 | Some fd ->
6199 let s = String.create (80*24) in
6200 let n =
6202 let r, _, _ = Unix.select [fd] [] [] 0.0 in
6203 if List.mem fd r
6204 then Unix.read fd s 0 (String.length s)
6205 else 0
6206 with _ -> 0
6208 if n = 0
6209 then E.s
6210 else String.sub s 0 n
6211 | None -> E.s
6214 try ignore (Unix.write state.stderr s 0 (String.length s))
6215 with exn -> print_endline (exntos exn)
6219 init (cr, cw) (
6220 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
6221 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6222 !Config.fontpath, !trimcachepath,
6223 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
6225 List.iter GlArray.enable [`texture_coord; `vertex];
6226 state.sr <- sr;
6227 state.sw <- sw;
6228 reshape winw winh;
6229 if histmode
6230 then (
6231 state.uioh <- uioh;
6232 enterhistmode ();
6234 else (
6235 state.text <- "Opening " ^ (mbtoutf8 state.path);
6236 opendoc state.path state.password;
6237 state.uioh <- uioh;
6239 display ();
6240 Wsi.mapwin ();
6241 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
6242 let optrfd =
6243 ref (
6244 if nonemptystr !rcmdpath
6245 then remoteopen !rcmdpath
6246 else None
6250 let rec loop deadline =
6251 let r =
6252 match state.errfd with
6253 | None -> [state.sr; state.wsfd]
6254 | Some fd -> [state.sr; state.wsfd; fd]
6256 let r =
6257 match !optrfd with
6258 | None -> r
6259 | Some fd -> fd :: r
6261 if state.redisplay
6262 then (
6263 state.redisplay <- false;
6264 display ();
6266 let timeout =
6267 let now = now () in
6268 if deadline > now
6269 then (
6270 if deadline = infinity
6271 then ~-.1.0
6272 else max 0.0 (deadline -. now)
6274 else 0.0
6276 let r, _, _ =
6277 try Unix.select r [] [] timeout
6278 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
6280 begin match r with
6281 | [] ->
6282 state.ghyll None;
6283 let newdeadline =
6284 if state.ghyll == noghyll
6285 then
6286 match state.autoscroll with
6287 | Some step when step != 0 ->
6288 let y = state.y + step in
6289 let y =
6290 if y < 0
6291 then state.maxy
6292 else if y >= state.maxy then 0 else y
6294 gotoy y;
6295 if state.mode = View
6296 then state.text <- E.s;
6297 deadline +. 0.01
6298 | _ -> infinity
6299 else deadline +. 0.01
6301 loop newdeadline
6303 | l ->
6304 let rec checkfds = function
6305 | [] -> ()
6306 | fd :: rest when fd = state.sr ->
6307 let cmd = readcmd state.sr in
6308 act cmd;
6309 checkfds rest
6311 | fd :: rest when fd = state.wsfd ->
6312 Wsi.readresp fd;
6313 checkfds rest
6315 | fd :: rest when Some fd = !optrfd ->
6316 begin match remote fd with
6317 | None -> optrfd := remoteopen !rcmdpath;
6318 | opt -> optrfd := opt
6319 end;
6320 checkfds rest
6322 | fd :: rest ->
6323 let s = String.create 80 in
6324 let n = tempfailureretry (Unix.read fd s 0) 80 in
6325 if conf.redirectstderr
6326 then (
6327 Buffer.add_substring state.errmsgs s 0 n;
6328 state.newerrmsgs <- true;
6329 state.redisplay <- true;
6331 else (
6332 prerr_string (String.sub s 0 n);
6333 flush stderr;
6335 checkfds rest
6337 checkfds l;
6338 let newdeadline =
6339 let deadline1 =
6340 if deadline = infinity
6341 then now () +. 0.01
6342 else deadline
6344 match state.autoscroll with
6345 | Some step when step != 0 -> deadline1
6346 | _ -> if state.ghyll == noghyll then infinity else deadline1
6348 loop newdeadline
6349 end;
6352 loop infinity;
6353 with Quit ->
6354 Config.save leavebirdseye;