Save date of last visit (and sort history based on that)
[llpp.git] / main.ml
blob6e111a5b71020d53939629d5501ca81eca81e25d
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 ?(helpmode=false) ~(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 not helpmode && 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 = drawstring1 fs (truncate (x +. x0)) (y+nfs) s in
2639 if trusted
2640 then
2641 let x = if helpmode && row > 0 then x +. ww else x in
2642 let tabpos = try String.index s '\t' with Not_found -> -1 in
2643 if tabpos > 0
2644 then
2645 let len = String.length s - tabpos - 1 in
2646 let s1 = String.sub s 0 tabpos
2647 and s2 = String.sub s (tabpos + 1) len in
2648 let nx = drawstr x s1 in
2649 let sw = nx -. x in
2650 let x = x +. (max tabw sw) in
2651 drawstr x s2
2652 else
2653 let len = String.length s - 2 in
2654 if len > 0 && s.[0] = '\xc2' && s.[1] = '\xb7'
2655 then
2656 let s = String.sub s 2 len in
2657 let x = if not helpmode then x +. ww else x in
2658 GlDraw.color (1.2, 1.2, 1.2);
2659 let vinc = drawstring1 (fs+fs/4)
2660 (truncate (x -. ww)) (y+nfs) s in
2661 GlDraw.color (1., 1., 1.);
2662 vinc +. (float fs *. 0.8)
2663 else
2664 drawstr x s
2665 else
2666 drawstr x s
2668 let _ = drawtabularstring s in
2669 loop (row+1)
2673 loop m_first;
2674 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
2675 let rec loop row =
2676 if (row - m_first) > fstate.maxrows
2677 then ()
2678 else (
2679 if row >= 0 && row < itemcount
2680 then (
2681 let (s, level) = source#getitem row in
2682 let y = (row - m_first) * nfs in
2683 let x = float (level + m_pan) *. ww in
2684 let (first, last) = minfo.(row) in
2685 let prefix = String.sub s 0 first in
2686 let suffix = String.sub s first (last - first) in
2687 let w1 = measurestr fstate.fontsize prefix in
2688 let w2 = measurestr fstate.fontsize suffix in
2689 let x = x +. if conf.leftscroll then float (xadjsb 5) else 5.0 in
2690 let x0 = x +. w1
2691 and y0 = (float (y+2)) in
2692 let x1 = x0 +. w2
2693 and y1 = (float (y+fs+3)) in
2694 filledrect x0 y0 x1 y1;
2695 loop (row+1)
2699 Gl.disable `texture_2d;
2700 if Array.length minfo > 0 then loop m_first;
2701 Gl.disable `blend;
2703 method updownlevel incr =
2704 let len = source#getitemcount in
2705 let curlevel =
2706 if m_active >= 0 && m_active < len
2707 then snd (source#getitem m_active)
2708 else -1
2710 let rec flow i =
2711 if i = len then i-1 else if i = -1 then 0 else
2712 let _, l = source#getitem i in
2713 if l != curlevel then i else flow (i+incr)
2715 let active = flow m_active in
2716 let first = calcfirst m_first active in
2717 G.postRedisplay "outline updownlevel";
2718 {< m_active = active; m_first = first >}
2720 method private key1 key mask =
2721 let set1 active first qsearch =
2722 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
2724 let search active pattern incr =
2725 let active = if active = -1 then m_first else active in
2726 let dosearch re =
2727 let rec loop n =
2728 if n >= 0 && n < source#getitemcount
2729 then (
2730 let s, _ = source#getitem n in
2732 (try ignore (Str.search_forward re s 0); true
2733 with Not_found -> false)
2734 then Some n
2735 else loop (n + incr)
2737 else None
2739 loop active
2742 let re = Str.regexp_case_fold pattern in
2743 dosearch re
2744 with Failure s ->
2745 state.text <- s;
2746 None
2748 let itemcount = source#getitemcount in
2749 let find start incr =
2750 let rec find i =
2751 if i = -1 || i = itemcount
2752 then -1
2753 else (
2754 if source#hasaction i
2755 then i
2756 else find (i + incr)
2759 find start
2761 let set active first =
2762 let first = bound first 0 (itemcount - fstate.maxrows) in
2763 state.text <- E.s;
2764 coe {< m_active = active; m_first = first; m_qsearch = E.s >}
2766 let navigate incr =
2767 let isvisible first n = n >= first && n - first <= fstate.maxrows in
2768 let active, first =
2769 let incr1 = if incr > 0 then 1 else -1 in
2770 if isvisible m_first m_active
2771 then
2772 let next =
2773 let next = m_active + incr in
2774 let next =
2775 if next < 0 || next >= itemcount
2776 then -1
2777 else find next incr1
2779 if abs (m_active - next) > fstate.maxrows
2780 then -1
2781 else next
2783 if next = -1
2784 then
2785 let first = m_first + incr in
2786 let first = bound first 0 (itemcount - fstate.maxrows) in
2787 let next =
2788 let next = m_active + incr in
2789 let next = bound next 0 (itemcount - 1) in
2790 find next ~-incr1
2792 let active =
2793 if next = -1
2794 then m_active
2795 else (
2796 if isvisible first next
2797 then next
2798 else m_active
2801 active, first
2802 else
2803 let first = min next m_first in
2804 let first =
2805 if abs (next - first) > fstate.maxrows
2806 then first + incr
2807 else first
2809 next, first
2810 else
2811 let first = m_first + incr in
2812 let first = bound first 0 (itemcount - 1) in
2813 let active =
2814 let next = m_active + incr in
2815 let next = bound next 0 (itemcount - 1) in
2816 let next = find next incr1 in
2817 let active =
2818 if next = -1 || abs (m_active - first) > fstate.maxrows
2819 then (
2820 let active = if m_active = -1 then next else m_active in
2821 active
2823 else next
2825 if isvisible first active
2826 then active
2827 else -1
2829 active, first
2831 G.postRedisplay "listview navigate";
2832 set active first;
2834 match key with
2835 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
2836 let incr = if key = 0x72 then -1 else 1 in
2837 let active, first =
2838 match search (m_active + incr) m_qsearch incr with
2839 | None ->
2840 state.text <- m_qsearch ^ " [not found]";
2841 m_active, m_first
2842 | Some active ->
2843 state.text <- m_qsearch;
2844 active, firstof m_first active
2846 G.postRedisplay "listview ctrl-r/s";
2847 set1 active first m_qsearch;
2849 | 0xff63 when Wsi.withctrl mask -> (* ctrl-insert *)
2850 if m_active >= 0 && m_active < source#getitemcount
2851 then (
2852 let s, _ = source#getitem m_active in
2853 selstring s;
2855 coe self
2857 | 0xff08 -> (* backspace *)
2858 if emptystr m_qsearch
2859 then coe self
2860 else (
2861 let qsearch = withoutlastutf8 m_qsearch in
2862 if emptystr qsearch
2863 then (
2864 state.text <- E.s;
2865 G.postRedisplay "listview empty qsearch";
2866 set1 m_active m_first E.s;
2868 else
2869 let active, first =
2870 match search m_active qsearch ~-1 with
2871 | None ->
2872 state.text <- qsearch ^ " [not found]";
2873 m_active, m_first
2874 | Some active ->
2875 state.text <- qsearch;
2876 active, firstof m_first active
2878 G.postRedisplay "listview backspace qsearch";
2879 set1 active first qsearch
2882 | key when (key != 0 && key land 0xff00 != 0xff00) ->
2883 let pattern = m_qsearch ^ toutf8 key in
2884 let active, first =
2885 match search m_active pattern 1 with
2886 | None ->
2887 state.text <- pattern ^ " [not found]";
2888 m_active, m_first
2889 | Some active ->
2890 state.text <- pattern;
2891 active, firstof m_first active
2893 G.postRedisplay "listview qsearch add";
2894 set1 active first pattern;
2896 | 0xff1b -> (* escape *)
2897 state.text <- E.s;
2898 if emptystr m_qsearch
2899 then (
2900 G.postRedisplay "list view escape";
2901 begin
2902 match
2903 source#exit (coe self) true m_active m_first m_pan
2904 with
2905 | None -> m_prev_uioh
2906 | Some uioh -> uioh
2909 else (
2910 G.postRedisplay "list view kill qsearch";
2911 coe {< m_qsearch = E.s >}
2914 | 0xff0d | 0xff8d -> (* (kp) enter *)
2915 state.text <- E.s;
2916 let self = {< m_qsearch = E.s >} in
2917 let opt =
2918 G.postRedisplay "listview enter";
2919 if m_active >= 0 && m_active < source#getitemcount
2920 then (
2921 source#exit (coe self) false m_active m_first m_pan;
2923 else (
2924 source#exit (coe self) true m_active m_first m_pan;
2927 begin match opt with
2928 | None -> m_prev_uioh
2929 | Some uioh -> uioh
2932 | 0xff9f | 0xffff -> (* (kp) delete *)
2933 coe self
2935 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
2936 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
2937 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
2938 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
2940 | 0xff53 | 0xff98 -> (* (kp) right *)
2941 state.text <- E.s;
2942 G.postRedisplay "listview right";
2943 coe {< m_pan = m_pan - 1 >}
2945 | 0xff51 | 0xff96 -> (* (kp) left *)
2946 state.text <- E.s;
2947 G.postRedisplay "listview left";
2948 coe {< m_pan = m_pan + 1 >}
2950 | 0xff50 | 0xff95 -> (* (kp) home *)
2951 let active = find 0 1 in
2952 G.postRedisplay "listview home";
2953 set active 0;
2955 | 0xff57 | 0xff9c -> (* (kp) end *)
2956 let first = max 0 (itemcount - fstate.maxrows) in
2957 let active = find (itemcount - 1) ~-1 in
2958 G.postRedisplay "listview end";
2959 set active first;
2961 | key when (key = 0 || key land 0xff00 = 0xff00) ->
2962 coe self
2964 | _ ->
2965 dolog "listview unknown key %#x" key; coe self
2967 method key key mask =
2968 match state.mode with
2969 | Textentry te -> textentrykeyboard key mask te; coe self
2970 | _ -> self#key1 key mask
2972 method button button down x y _ =
2973 let opt =
2974 match button with
2975 | 1 when x > state.winw - conf.scrollbw ->
2976 G.postRedisplay "listview scroll";
2977 if down
2978 then
2979 let _, position, sh = self#scrollph in
2980 if y > truncate position && y < truncate (position +. sh)
2981 then (
2982 state.mstate <- Mscrolly;
2983 Some (coe self)
2985 else
2986 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
2987 let first = truncate (s *. float source#getitemcount) in
2988 let first = min source#getitemcount first in
2989 Some (coe {< m_first = first; m_active = first >})
2990 else (
2991 state.mstate <- Mnone;
2992 Some (coe self);
2994 | 1 when not down ->
2995 begin match self#elemunder y with
2996 | Some n ->
2997 G.postRedisplay "listview click";
2998 source#exit (coe {< m_active = n >}) false n m_first m_pan
2999 | _ ->
3000 Some (coe self)
3002 | n when (n == 4 || n == 5) && not down ->
3003 let len = source#getitemcount in
3004 let first =
3005 if n = 5 && m_first + fstate.maxrows >= len
3006 then
3007 m_first
3008 else
3009 let first = m_first + (if n == 4 then -1 else 1) in
3010 bound first 0 (len - 1)
3012 G.postRedisplay "listview wheel";
3013 Some (coe {< m_first = first >})
3014 | n when (n = 6 || n = 7) && not down ->
3015 let inc = if n = 7 then -1 else 1 in
3016 G.postRedisplay "listview hwheel";
3017 Some (coe {< m_pan = m_pan + inc >})
3018 | _ ->
3019 Some (coe self)
3021 match opt with
3022 | None -> m_prev_uioh
3023 | Some uioh -> uioh
3025 method multiclick _ x y = self#button 1 true x y
3027 method motion _ y =
3028 match state.mstate with
3029 | Mscrolly ->
3030 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3031 let first = truncate (s *. float source#getitemcount) in
3032 let first = min source#getitemcount first in
3033 G.postRedisplay "listview motion";
3034 coe {< m_first = first; m_active = first >}
3035 | _ -> coe self
3037 method pmotion x y =
3038 if x < state.winw - conf.scrollbw
3039 then
3040 let n =
3041 match self#elemunder y with
3042 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3043 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3045 let o =
3046 if n != m_active
3047 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3048 else self
3050 coe o
3051 else (
3052 Wsi.setcursor Wsi.CURSOR_INHERIT;
3053 coe self
3056 method infochanged _ = ()
3058 method scrollpw = (0, 0.0, 0.0)
3059 method scrollph =
3060 let nfs = fstate.fontsize + 1 in
3061 let y = m_first * nfs in
3062 let itemcount = source#getitemcount in
3063 let maxi = max 0 (itemcount - fstate.maxrows) in
3064 let maxy = maxi * nfs in
3065 let p, h = scrollph y maxy in
3066 conf.scrollbw, p, h
3068 method modehash = modehash
3069 method eformsgs = false
3070 end;;
3072 class outlinelistview ~source =
3073 let settext autonarrow s =
3074 if autonarrow
3075 then
3076 let ss = source#statestr in
3077 state.text <-
3078 if emptystr ss
3079 then "[" ^ s ^ "]"
3080 else "{" ^ ss ^ "} [" ^ s ^ "]"
3081 else state.text <- s
3083 object (self)
3084 inherit listview
3085 ~helpmode:false
3086 ~source:(source :> lvsource)
3087 ~trusted:false
3088 ~modehash:(findkeyhash conf "outline")
3089 as super
3091 val m_autonarrow = false
3093 method key key mask =
3094 let maxrows =
3095 if emptystr state.text
3096 then fstate.maxrows
3097 else fstate.maxrows - 2
3099 let calcfirst first active =
3100 if active > first
3101 then
3102 let rows = active - first in
3103 if rows > maxrows then active - maxrows else first
3104 else active
3106 let navigate incr =
3107 let active = m_active + incr in
3108 let active = bound active 0 (source#getitemcount - 1) in
3109 let first = calcfirst m_first active in
3110 G.postRedisplay "outline navigate";
3111 coe {< m_active = active; m_first = first >}
3113 let navscroll first =
3114 let active =
3115 let dist = m_active - first in
3116 if dist < 0
3117 then first
3118 else (
3119 if dist < maxrows
3120 then m_active
3121 else first + maxrows
3124 G.postRedisplay "outline navscroll";
3125 coe {< m_first = first; m_active = active >}
3127 let ctrl = Wsi.withctrl mask in
3128 match key with
3129 | 97 when ctrl -> (* ctrl-a *)
3130 let text =
3131 if m_autonarrow
3132 then (source#denarrow; E.s)
3133 else (
3134 let pattern = source#renarrow in
3135 if nonemptystr m_qsearch
3136 then (source#narrow m_qsearch; m_qsearch)
3137 else pattern
3140 settext (not m_autonarrow) text;
3141 G.postRedisplay "toggle auto narrowing";
3142 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
3144 | 47 when emptystr m_qsearch && not m_autonarrow -> (* / *)
3145 settext true E.s;
3146 G.postRedisplay "toggle auto narrowing";
3147 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
3149 | 110 when ctrl -> (* ctrl-n *)
3150 source#narrow m_qsearch;
3151 if not m_autonarrow
3152 then source#add_narrow_pattern m_qsearch;
3153 G.postRedisplay "outline ctrl-n";
3154 coe {< m_first = 0; m_active = 0 >}
3156 | 83 when ctrl -> (* ctrl-S *)
3157 let active = source#calcactive (getanchor ()) in
3158 let first = firstof m_first active in
3159 G.postRedisplay "outline ctrl-s";
3160 coe {< m_first = first; m_active = active >}
3162 | 117 when ctrl -> (* ctrl-u *)
3163 G.postRedisplay "outline ctrl-u";
3164 if m_autonarrow && nonemptystr m_qsearch
3165 then (
3166 ignore (source#renarrow);
3167 settext m_autonarrow E.s;
3168 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3170 else (
3171 source#del_narrow_pattern;
3172 let pattern = source#renarrow in
3173 let text =
3174 if emptystr pattern then E.s else "Narrowed to " ^ pattern
3176 settext m_autonarrow text;
3177 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3180 | 108 when ctrl -> (* ctrl-l *)
3181 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3182 G.postRedisplay "outline ctrl-l";
3183 coe {< m_first = first >}
3185 | 0xff09 when m_autonarrow -> (* tab *)
3186 if nonemptystr m_qsearch
3187 then (
3188 G.postRedisplay "outline list view tab";
3189 source#add_narrow_pattern m_qsearch;
3190 settext true E.s;
3191 coe {< m_qsearch = E.s >}
3193 else coe self
3195 | 0xff1b when m_autonarrow -> (* escape *)
3196 if nonemptystr m_qsearch
3197 then source#add_narrow_pattern m_qsearch;
3198 super#key key mask
3200 | 0xff0d | 0xff8d when m_autonarrow -> (* (kp) enter *)
3201 if nonemptystr m_qsearch
3202 then source#add_narrow_pattern m_qsearch;
3203 super#key key mask
3205 | key when m_autonarrow && (key != 0 && key land 0xff00 != 0xff00) ->
3206 let pattern = m_qsearch ^ toutf8 key in
3207 G.postRedisplay "outlinelistview autonarrow add";
3208 source#narrow pattern;
3209 settext true pattern;
3210 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3212 | key when m_autonarrow && key = 0xff08 -> (* backspace *)
3213 if emptystr m_qsearch
3214 then coe self
3215 else
3216 let pattern = withoutlastutf8 m_qsearch in
3217 G.postRedisplay "outlinelistview autonarrow backspace";
3218 ignore (source#renarrow);
3219 source#narrow pattern;
3220 settext true pattern;
3221 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3223 | 0xff9f | 0xffff -> (* (kp) delete *)
3224 source#remove m_active;
3225 G.postRedisplay "outline delete";
3226 let active = max 0 (m_active-1) in
3227 coe {< m_first = firstof m_first active;
3228 m_active = active >}
3230 | 0xff52 | 0xff97 when ctrl -> (* ctrl-(kp) up *)
3231 navscroll (max 0 (m_first - 1))
3233 | 0xff54 | 0xff99 when ctrl -> (* ctrl-(kp) down *)
3234 navscroll (min (source#getitemcount - 1) (m_first + 1))
3236 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3237 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3238 | 0xff55 | 0xff9a -> (* (kp) prior *)
3239 navigate ~-(fstate.maxrows)
3240 | 0xff56 | 0xff9b -> (* (kp) next *)
3241 navigate fstate.maxrows
3243 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3244 let o =
3245 if ctrl
3246 then (
3247 G.postRedisplay "outline ctrl right";
3248 {< m_pan = m_pan + 1 >}
3250 else self#updownlevel 1
3252 coe o
3254 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3255 let o =
3256 if ctrl
3257 then (
3258 G.postRedisplay "outline ctrl left";
3259 {< m_pan = m_pan - 1 >}
3261 else self#updownlevel ~-1
3263 coe o
3265 | 0xff50 | 0xff95 -> (* (kp) home *)
3266 G.postRedisplay "outline home";
3267 coe {< m_first = 0; m_active = 0 >}
3269 | 0xff57 | 0xff9c -> (* (kp) end *)
3270 let active = source#getitemcount - 1 in
3271 let first = max 0 (active - fstate.maxrows) in
3272 G.postRedisplay "outline end";
3273 coe {< m_active = active; m_first = first >}
3275 | _ -> super#key key mask
3278 let gotounder under =
3279 let getpath filename =
3280 let path =
3281 if nonemptystr filename
3282 then
3283 if Filename.is_relative filename
3284 then
3285 let dir = Filename.dirname state.path in
3286 let dir =
3287 if Filename.is_implicit dir
3288 then Filename.concat (Sys.getcwd ()) dir
3289 else dir
3291 Filename.concat dir filename
3292 else filename
3293 else E.s
3295 if Sys.file_exists path
3296 then path
3297 else E.s
3299 match under with
3300 | Ulinkgoto (pageno, top) ->
3301 if pageno >= 0
3302 then (
3303 addnav ();
3304 gotopage1 pageno top;
3307 | Ulinkuri s ->
3308 gotouri s
3310 | Uremote (filename, pageno) ->
3311 let path = getpath filename in
3312 if nonemptystr path
3313 then (
3314 if conf.riani
3315 then
3316 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
3317 try popen command []
3318 with exn ->
3319 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
3320 flush stderr;
3321 else
3322 let anchor = getanchor () in
3323 let ranchor = state.path, state.password, anchor, state.origin in
3324 state.origin <- E.s;
3325 state.anchor <- (pageno, 0.0, 0.0);
3326 state.ranchors <- ranchor :: state.ranchors;
3327 opendoc path E.s;
3329 else showtext '!' ("Could not find " ^ filename)
3331 | Uremotedest (filename, destname) ->
3332 let path = getpath filename in
3333 if nonemptystr path
3334 then (
3335 if conf.riani
3336 then
3337 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
3338 try popen command []
3339 with exn ->
3340 Printf.eprintf
3341 "failed to execute `%s': %s\n" command (exntos exn);
3342 flush stderr;
3343 else
3344 let anchor = getanchor () in
3345 let ranchor = state.path, state.password, anchor, state.origin in
3346 state.origin <- E.s;
3347 state.nameddest <- destname;
3348 state.ranchors <- ranchor :: state.ranchors;
3349 opendoc path E.s;
3351 else showtext '!' ("Could not find " ^ filename)
3353 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
3356 let gotohist (path, (c, bookmarks, x, anchor)) =
3357 Config.save leavebirdseye;
3358 state.anchor <- anchor;
3359 state.x <- x;
3360 state.bookmarks <- bookmarks;
3361 state.origin <- E.s;
3362 opendoc path E.s;
3363 conf.presentation <- c.presentation;
3366 let gotooutline (_, _, kind) =
3367 match kind with
3368 | Onone -> ()
3369 | Oanchor anchor ->
3370 let (pageno, y, _) = anchor in
3371 let y = getanchory
3372 (if conf.presentation then (pageno, y, 1.0) else anchor)
3374 addnav ();
3375 gotoghyll y
3376 | Ouri uri -> gotounder (Ulinkuri uri)
3377 | Olaunch cmd -> gotounder (Ulaunch cmd)
3378 | Oremote remote -> gotounder (Uremote remote)
3379 | Ohistory hist -> gotohist hist
3380 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
3383 let genhistoutlines () =
3384 let list = ref [] in
3385 if Config.gethist list
3386 then
3387 let order (path1, c1, _, _, _) (path2, c2, _, _, _) =
3388 -(compare (c1.lastvisit, path1) (c2.lastvisit, path2))
3390 let ol =
3391 List.fold_left (fun accu (path, c, b, x, a) ->
3392 let hist = (path, (c, b, x, a)) in
3393 let base = mbtoutf8 (Filename.basename path) in
3394 (base ^ "\000" ^ c.title, 0, Ohistory hist) :: accu
3395 ) [] (List.sort order !list)
3397 Array.of_list ol
3398 else E.a;
3401 let outlinesource sourcetype =
3402 let empty = E.a in
3403 (object (self)
3404 inherit lvsourcebase
3405 val mutable m_items = empty
3406 val mutable m_minfo = empty
3407 val mutable m_orig_items = empty
3408 val mutable m_orig_minfo = empty
3409 val mutable m_narrow_patterns = []
3410 val mutable m_hadremovals = false
3411 val mutable m_gen = -1
3413 method getitemcount =
3414 Array.length m_items + (if m_hadremovals then 1 else 0)
3416 method getitem n =
3417 if n == Array.length m_items && m_hadremovals
3418 then
3419 ("[Confirm removal]", 0)
3420 else
3421 let s, n, _ = m_items.(n) in
3422 (s, n)
3424 method exit ~uioh ~cancel ~active ~first ~pan =
3425 ignore (uioh, first);
3426 let confrimremoval = m_hadremovals && active = Array.length m_items in
3427 let items, minfo =
3428 if m_narrow_patterns = []
3429 then m_orig_items, m_orig_minfo
3430 else m_items, m_minfo
3432 if not cancel
3433 then (
3434 if not confrimremoval
3435 then (
3436 gotooutline m_items.(active);
3437 m_items <- items;
3438 m_minfo <- minfo;
3440 else (
3441 state.bookmarks <- Array.to_list m_items;
3442 m_orig_items <- m_items;
3443 m_orig_minfo <- m_minfo;
3446 else (
3447 m_items <- items;
3448 m_minfo <- minfo;
3450 m_pan <- pan;
3451 None
3453 method hasaction _ = true
3455 method greetmsg =
3456 if Array.length m_items != Array.length m_orig_items
3457 then
3458 let s =
3459 match m_narrow_patterns with
3460 | one :: [] -> one
3461 | many -> String.concat "\xe2\x80\xa6" (List.rev many)
3463 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
3464 else E.s
3466 method statestr =
3467 match m_narrow_patterns with
3468 | [] -> E.s
3469 | one :: [] -> one
3470 | head :: _ -> "\xe2\x80\xa6" ^ head
3472 method narrow pattern =
3473 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3474 match reopt with
3475 | None -> ()
3476 | Some re ->
3477 let rec loop accu minfo n =
3478 if n = -1
3479 then (
3480 m_items <- Array.of_list accu;
3481 m_minfo <- Array.of_list minfo;
3483 else
3484 let (s, _, _) as o = m_items.(n) in
3485 let accu, minfo =
3486 let first =
3487 try Str.search_forward re s 0
3488 with Not_found -> -1
3490 if first >= 0
3491 then o :: accu, (first, Str.match_end ()) :: minfo
3492 else accu, minfo
3494 loop accu minfo (n-1)
3496 loop [] [] (Array.length m_items - 1)
3498 method getminfo = m_minfo
3500 method denarrow =
3501 m_orig_items <- (
3502 match sourcetype with
3503 | `bookmarks -> Array.of_list state.bookmarks
3504 | `outlines -> state.outlines
3505 | `history -> genhistoutlines ()
3507 m_minfo <- m_orig_minfo;
3508 m_items <- m_orig_items
3510 method remove m =
3511 if sourcetype = `bookmarks
3512 then
3513 if m >= 0 && m < Array.length m_items
3514 then (
3515 m_hadremovals <- true;
3516 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3517 let n = if n >= m then n+1 else n in
3518 m_items.(n)
3522 method add_narrow_pattern pattern =
3523 m_narrow_patterns <- pattern :: m_narrow_patterns
3525 method del_narrow_pattern =
3526 match m_narrow_patterns with
3527 | _ :: rest -> m_narrow_patterns <- rest
3528 | [] -> ()
3530 method renarrow =
3531 self#denarrow;
3532 match m_narrow_patterns with
3533 | pattern :: [] -> self#narrow pattern; pattern
3534 | list ->
3535 List.fold_left (fun accu pattern ->
3536 self#narrow pattern;
3537 pattern ^ "\xe2\x80\xa6" ^ accu) E.s list
3539 method calcactive anchor =
3540 let rely = getanchory anchor in
3541 let rec loop n best bestd =
3542 if n = Array.length m_items
3543 then best
3544 else
3545 let _, _, kind = m_items.(n) in
3546 match kind with
3547 | Oanchor anchor ->
3548 let orely = getanchory anchor in
3549 let d = abs (orely - rely) in
3550 if d < bestd
3551 then loop (n+1) n d
3552 else loop (n+1) best bestd
3553 | Onone | Oremote _ | Olaunch _
3554 | Oremotedest _ | Ouri _ | Ohistory _ ->
3555 loop (n+1) best bestd
3557 loop 0 ~-1 max_int
3559 method reset anchor items =
3560 m_hadremovals <- false;
3561 if state.gen != m_gen
3562 then (
3563 m_orig_items <- items;
3564 m_items <- items;
3565 m_narrow_patterns <- [];
3566 m_minfo <- empty;
3567 m_orig_minfo <- empty;
3568 m_gen <- state.gen;
3570 else (
3571 if items != m_orig_items
3572 then (
3573 m_orig_items <- items;
3574 if m_narrow_patterns == []
3575 then m_items <- items;
3578 let active = self#calcactive anchor in
3579 m_active <- active;
3580 m_first <- firstof m_first active
3581 end)
3584 let enterselector sourcetype =
3585 resetmstate ();
3586 let source = outlinesource sourcetype in
3587 fun errmsg ->
3588 let outlines =
3589 match sourcetype with
3590 | `bookmarks -> Array.of_list state.bookmarks
3591 | `outlines -> state.outlines
3592 | `history -> genhistoutlines ()
3594 if Array.length outlines = 0
3595 then (
3596 showtext ' ' errmsg;
3598 else (
3599 state.text <- source#greetmsg;
3600 Wsi.setcursor Wsi.CURSOR_INHERIT;
3601 let anchor = getanchor () in
3602 source#reset anchor outlines;
3603 state.uioh <- coe (new outlinelistview ~source);
3604 G.postRedisplay "enter selector";
3608 let enteroutlinemode =
3609 let f = enterselector `outlines in
3610 fun () -> f "Document has no outline";
3613 let enterbookmarkmode =
3614 let f = enterselector `bookmarks in
3615 fun () -> f "Document has no bookmarks (yet)";
3618 let enterhistmode =
3619 let f = enterselector `history in
3620 fun () -> f "No history (yet)";
3623 let makecheckers () =
3624 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3625 following to say:
3626 converted by Issac Trotts. July 25, 2002 *)
3627 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3628 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3629 let id = GlTex.gen_texture () in
3630 GlTex.bind_texture `texture_2d id;
3631 GlPix.store (`unpack_alignment 1);
3632 GlTex.image2d image;
3633 List.iter (GlTex.parameter ~target:`texture_2d)
3634 [ `mag_filter `nearest; `min_filter `nearest ];
3638 let setcheckers enabled =
3639 match state.checkerstexid with
3640 | None ->
3641 if enabled then state.checkerstexid <- Some (makecheckers ())
3643 | Some checkerstexid ->
3644 if not enabled
3645 then (
3646 GlTex.delete_texture checkerstexid;
3647 state.checkerstexid <- None;
3651 let describe_location () =
3652 let fn = page_of_y state.y in
3653 let ln = page_of_y (state.y + state.winh - hscrollh () - 1) in
3654 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
3655 let percent =
3656 if maxy <= 0
3657 then 100.
3658 else (100. *. (float state.y /. float maxy))
3660 if fn = ln
3661 then
3662 Printf.sprintf "page %d of %d [%.2f%%]"
3663 (fn+1) state.pagecount percent
3664 else
3665 Printf.sprintf
3666 "pages %d-%d of %d [%.2f%%]"
3667 (fn+1) (ln+1) state.pagecount percent
3670 let setpresentationmode v =
3671 let n = page_of_y state.y in
3672 state.anchor <- (n, 0.0, 1.0);
3673 conf.presentation <- v;
3674 if conf.fitmodel = FitPage
3675 then reqlayout conf.angle conf.fitmodel;
3676 represent ();
3679 let enterinfomode =
3680 let btos b = if b then "\xe2\x88\x9a" else E.s in
3681 let showextended = ref false in
3682 let leave mode = function
3683 | Confirm -> state.mode <- mode
3684 | Cancel -> state.mode <- mode in
3685 let src =
3686 (object
3687 val mutable m_first_time = true
3688 val mutable m_l = []
3689 val mutable m_a = E.a
3690 val mutable m_prev_uioh = nouioh
3691 val mutable m_prev_mode = View
3693 inherit lvsourcebase
3695 method reset prev_mode prev_uioh =
3696 m_a <- Array.of_list (List.rev m_l);
3697 m_l <- [];
3698 m_prev_mode <- prev_mode;
3699 m_prev_uioh <- prev_uioh;
3700 if m_first_time
3701 then (
3702 let rec loop n =
3703 if n >= Array.length m_a
3704 then ()
3705 else
3706 match m_a.(n) with
3707 | _, _, _, Action _ -> m_active <- n
3708 | _ -> loop (n+1)
3710 loop 0;
3711 m_first_time <- false;
3714 method int name get set =
3715 m_l <-
3716 (name, `int get, 1, Action (
3717 fun u ->
3718 let ondone s =
3719 try set (int_of_string s)
3720 with exn ->
3721 state.text <- Printf.sprintf "bad integer `%s': %s"
3722 s (exntos exn)
3724 state.text <- E.s;
3725 let te = name ^ ": ", E.s, None, intentry, ondone, true in
3726 state.mode <- Textentry (te, leave m_prev_mode);
3728 )) :: m_l
3730 method int_with_suffix name get set =
3731 m_l <-
3732 (name, `intws get, 1, Action (
3733 fun u ->
3734 let ondone s =
3735 try set (int_of_string_with_suffix s)
3736 with exn ->
3737 state.text <- Printf.sprintf "bad integer `%s': %s"
3738 s (exntos exn)
3740 state.text <- E.s;
3741 let te =
3742 name ^ ": ", E.s, None, intentry_with_suffix, ondone, true
3744 state.mode <- Textentry (te, leave m_prev_mode);
3746 )) :: m_l
3748 method bool ?(offset=1) ?(btos=btos) name get set =
3749 m_l <-
3750 (name, `bool (btos, get), offset, Action (
3751 fun u ->
3752 let v = get () in
3753 set (not v);
3755 )) :: m_l
3757 method color name get set =
3758 m_l <-
3759 (name, `color get, 1, Action (
3760 fun u ->
3761 let invalid = (nan, nan, nan) in
3762 let ondone s =
3763 let c =
3764 try color_of_string s
3765 with exn ->
3766 state.text <- Printf.sprintf "bad color `%s': %s"
3767 s (exntos exn);
3768 invalid
3770 if c <> invalid
3771 then set c;
3773 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3774 state.text <- color_to_string (get ());
3775 state.mode <- Textentry (te, leave m_prev_mode);
3777 )) :: m_l
3779 method string name get set =
3780 m_l <-
3781 (name, `string get, 1, Action (
3782 fun u ->
3783 let ondone s = set s in
3784 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3785 state.mode <- Textentry (te, leave m_prev_mode);
3787 )) :: m_l
3789 method colorspace name get set =
3790 m_l <-
3791 (name, `string get, 1, Action (
3792 fun _ ->
3793 let source =
3794 (object
3795 inherit lvsourcebase
3797 initializer
3798 m_active <- CSTE.to_int conf.colorspace;
3799 m_first <- 0;
3801 method getitemcount =
3802 Array.length CSTE.names
3803 method getitem n =
3804 (CSTE.names.(n), 0)
3805 method exit ~uioh ~cancel ~active ~first ~pan =
3806 ignore (uioh, first, pan);
3807 if not cancel then set active;
3808 None
3809 method hasaction _ = true
3810 end)
3812 state.text <- E.s;
3813 let modehash = findkeyhash conf "info" in
3814 coe (new listview ~helpmode:false ~source ~trusted:true ~modehash)
3815 )) :: m_l
3817 method paxmark name get set =
3818 m_l <-
3819 (name, `string get, 1, Action (
3820 fun _ ->
3821 let source =
3822 (object
3823 inherit lvsourcebase
3825 initializer
3826 m_active <- MTE.to_int conf.paxmark;
3827 m_first <- 0;
3829 method getitemcount = Array.length MTE.names
3830 method getitem n = (MTE.names.(n), 0)
3831 method exit ~uioh ~cancel ~active ~first ~pan =
3832 ignore (uioh, first, pan);
3833 if not cancel then set active;
3834 None
3835 method hasaction _ = true
3836 end)
3838 state.text <- E.s;
3839 let modehash = findkeyhash conf "info" in
3840 coe (new listview ~helpmode:false ~source ~trusted:true ~modehash)
3841 )) :: m_l
3843 method fitmodel name get set =
3844 m_l <-
3845 (name, `string get, 1, Action (
3846 fun _ ->
3847 let source =
3848 (object
3849 inherit lvsourcebase
3851 initializer
3852 m_active <- FMTE.to_int conf.fitmodel;
3853 m_first <- 0;
3855 method getitemcount = Array.length FMTE.names
3856 method getitem n = (FMTE.names.(n), 0)
3857 method exit ~uioh ~cancel ~active ~first ~pan =
3858 ignore (uioh, first, pan);
3859 if not cancel then set active;
3860 None
3861 method hasaction _ = true
3862 end)
3864 state.text <- E.s;
3865 let modehash = findkeyhash conf "info" in
3866 coe (new listview ~helpmode:false ~source ~trusted:true ~modehash)
3867 )) :: m_l
3869 method caption s offset =
3870 m_l <- (s, `empty, offset, Noaction) :: m_l
3872 method caption2 s f offset =
3873 m_l <- (s, `string f, offset, Noaction) :: m_l
3875 method getitemcount = Array.length m_a
3877 method getitem n =
3878 let tostr = function
3879 | `int f -> string_of_int (f ())
3880 | `intws f -> string_with_suffix_of_int (f ())
3881 | `string f -> f ()
3882 | `color f -> color_to_string (f ())
3883 | `bool (btos, f) -> btos (f ())
3884 | `empty -> E.s
3886 let name, t, offset, _ = m_a.(n) in
3887 ((let s = tostr t in
3888 if nonemptystr s
3889 then Printf.sprintf "%s\t%s" name s
3890 else name),
3891 offset)
3893 method exit ~uioh ~cancel ~active ~first ~pan =
3894 let uiohopt =
3895 if not cancel
3896 then (
3897 let uioh =
3898 match m_a.(active) with
3899 | _, _, _, Action f -> f uioh
3900 | _ -> uioh
3902 Some uioh
3904 else None
3906 m_active <- active;
3907 m_first <- first;
3908 m_pan <- pan;
3909 uiohopt
3911 method hasaction n =
3912 match m_a.(n) with
3913 | _, _, _, Action _ -> true
3914 | _ -> false
3915 end)
3917 let rec fillsrc prevmode prevuioh =
3918 let sep () = src#caption E.s 0 in
3919 let colorp name get set =
3920 src#string name
3921 (fun () -> color_to_string (get ()))
3922 (fun v ->
3924 let c = color_of_string v in
3925 set c
3926 with exn ->
3927 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
3930 let oldmode = state.mode in
3931 let birdseye = isbirdseye state.mode in
3933 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
3935 src#bool "presentation mode"
3936 (fun () -> conf.presentation)
3937 (fun v -> setpresentationmode v);
3939 src#bool "ignore case in searches"
3940 (fun () -> conf.icase)
3941 (fun v -> conf.icase <- v);
3943 src#bool "preload"
3944 (fun () -> conf.preload)
3945 (fun v -> conf.preload <- v);
3947 src#bool "highlight links"
3948 (fun () -> conf.hlinks)
3949 (fun v -> conf.hlinks <- v);
3951 src#bool "under info"
3952 (fun () -> conf.underinfo)
3953 (fun v -> conf.underinfo <- v);
3955 src#bool "persistent bookmarks"
3956 (fun () -> conf.savebmarks)
3957 (fun v -> conf.savebmarks <- v);
3959 src#fitmodel "fit model"
3960 (fun () -> FMTE.to_string conf.fitmodel)
3961 (fun v -> reqlayout conf.angle (FMTE.of_int v));
3963 src#bool "trim margins"
3964 (fun () -> conf.trimmargins)
3965 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
3967 src#bool "persistent location"
3968 (fun () -> conf.jumpback)
3969 (fun v -> conf.jumpback <- v);
3971 sep ();
3972 src#int "inter-page space"
3973 (fun () -> conf.interpagespace)
3974 (fun n ->
3975 conf.interpagespace <- n;
3976 docolumns conf.columns;
3977 let pageno, py =
3978 match state.layout with
3979 | [] -> 0, 0
3980 | l :: _ ->
3981 l.pageno, l.pagey
3983 state.maxy <- calcheight ();
3984 let y = getpagey pageno in
3985 gotoy (y + py)
3988 src#int "page bias"
3989 (fun () -> conf.pagebias)
3990 (fun v -> conf.pagebias <- v);
3992 src#int "scroll step"
3993 (fun () -> conf.scrollstep)
3994 (fun n -> conf.scrollstep <- n);
3996 src#int "horizontal scroll step"
3997 (fun () -> conf.hscrollstep)
3998 (fun v -> conf.hscrollstep <- v);
4000 src#int "auto scroll step"
4001 (fun () ->
4002 match state.autoscroll with
4003 | Some step -> step
4004 | _ -> conf.autoscrollstep)
4005 (fun n ->
4006 let n = boundastep state.winh n in
4007 if state.autoscroll <> None
4008 then state.autoscroll <- Some n;
4009 conf.autoscrollstep <- n);
4011 src#int "zoom"
4012 (fun () -> truncate (conf.zoom *. 100.))
4013 (fun v -> setzoom ((float v) /. 100.));
4015 src#int "rotation"
4016 (fun () -> conf.angle)
4017 (fun v -> reqlayout v conf.fitmodel);
4019 src#int "scroll bar width"
4020 (fun () -> conf.scrollbw)
4021 (fun v ->
4022 conf.scrollbw <- v;
4023 reshape state.winw state.winh;
4026 src#int "scroll handle height"
4027 (fun () -> conf.scrollh)
4028 (fun v -> conf.scrollh <- v;);
4030 src#int "thumbnail width"
4031 (fun () -> conf.thumbw)
4032 (fun v ->
4033 conf.thumbw <- min 4096 v;
4034 match oldmode with
4035 | Birdseye beye ->
4036 leavebirdseye beye false;
4037 enterbirdseye ()
4038 | _ -> ()
4041 let mode = state.mode in
4042 src#string "columns"
4043 (fun () ->
4044 match conf.columns with
4045 | Csingle _ -> "1"
4046 | Cmulti (multi, _) -> multicolumns_to_string multi
4047 | Csplit (count, _) -> "-" ^ string_of_int count
4049 (fun v ->
4050 let n, a, b = multicolumns_of_string v in
4051 setcolumns mode n a b);
4053 sep ();
4054 src#caption "Pixmap cache" 0;
4055 src#int_with_suffix "size (advisory)"
4056 (fun () -> conf.memlimit)
4057 (fun v -> conf.memlimit <- v);
4059 src#caption2 "used"
4060 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4061 (string_with_suffix_of_int state.memused)
4062 (Hashtbl.length state.tilemap)) 1;
4064 sep ();
4065 src#caption "Layout" 0;
4066 src#caption2 "Dimension"
4067 (fun () ->
4068 Printf.sprintf "%dx%d (virtual %dx%d)"
4069 state.winw state.winh
4070 state.w state.maxy)
4072 if conf.debug
4073 then
4074 src#caption2 "Position" (fun () ->
4075 Printf.sprintf "%dx%d" state.x state.y
4077 else
4078 src#caption2 "Position" (fun () -> describe_location ()) 1
4081 sep ();
4082 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4083 "Save these parameters as global defaults at exit"
4084 (fun () -> conf.bedefault)
4085 (fun v -> conf.bedefault <- v)
4088 sep ();
4089 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4090 src#bool ~offset:0 ~btos "Extended parameters"
4091 (fun () -> !showextended)
4092 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4093 if !showextended
4094 then (
4095 src#bool "checkers"
4096 (fun () -> conf.checkers)
4097 (fun v -> conf.checkers <- v; setcheckers v);
4098 src#bool "update cursor"
4099 (fun () -> conf.updatecurs)
4100 (fun v -> conf.updatecurs <- v);
4101 src#bool "scroll-bar on the left"
4102 (fun () -> conf.leftscroll)
4103 (fun v -> conf.leftscroll <- v);
4104 src#bool "verbose"
4105 (fun () -> conf.verbose)
4106 (fun v -> conf.verbose <- v);
4107 src#bool "invert colors"
4108 (fun () -> conf.invert)
4109 (fun v -> conf.invert <- v);
4110 src#bool "max fit"
4111 (fun () -> conf.maxhfit)
4112 (fun v -> conf.maxhfit <- v);
4113 src#bool "redirect stderr"
4114 (fun () -> conf.redirectstderr)
4115 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4116 src#bool "pax mode"
4117 (fun () -> conf.pax != None)
4118 (fun v ->
4119 if v
4120 then conf.pax <- Some (ref (now (), 0, 0))
4121 else conf.pax <- None);
4122 src#string "uri launcher"
4123 (fun () -> conf.urilauncher)
4124 (fun v -> conf.urilauncher <- v);
4125 src#string "path launcher"
4126 (fun () -> conf.pathlauncher)
4127 (fun v -> conf.pathlauncher <- v);
4128 src#string "tile size"
4129 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4130 (fun v ->
4132 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4133 conf.tilew <- max 64 w;
4134 conf.tileh <- max 64 h;
4135 flushtiles ();
4136 with exn ->
4137 state.text <- Printf.sprintf "bad tile size `%s': %s"
4138 v (exntos exn)
4140 src#int "texture count"
4141 (fun () -> conf.texcount)
4142 (fun v ->
4143 if realloctexts v
4144 then conf.texcount <- v
4145 else showtext '!' " Failed to set texture count please retry later"
4147 src#int "slice height"
4148 (fun () -> conf.sliceheight)
4149 (fun v ->
4150 conf.sliceheight <- v;
4151 wcmd "sliceh %d" conf.sliceheight;
4153 src#int "anti-aliasing level"
4154 (fun () -> conf.aalevel)
4155 (fun v ->
4156 conf.aalevel <- bound v 0 8;
4157 state.anchor <- getanchor ();
4158 opendoc state.path state.password;
4160 src#string "page scroll scaling factor"
4161 (fun () -> string_of_float conf.pgscale)
4162 (fun v ->
4164 let s = float_of_string v in
4165 conf.pgscale <- s
4166 with exn ->
4167 state.text <- Printf.sprintf
4168 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4171 src#int "ui font size"
4172 (fun () -> fstate.fontsize)
4173 (fun v -> setfontsize (bound v 5 100));
4174 src#int "hint font size"
4175 (fun () -> conf.hfsize)
4176 (fun v -> conf.hfsize <- bound v 5 100);
4177 colorp "background color"
4178 (fun () -> conf.bgcolor)
4179 (fun v -> conf.bgcolor <- v);
4180 src#bool "crop hack"
4181 (fun () -> conf.crophack)
4182 (fun v -> conf.crophack <- v);
4183 src#string "trim fuzz"
4184 (fun () -> irect_to_string conf.trimfuzz)
4185 (fun v ->
4187 conf.trimfuzz <- irect_of_string v;
4188 if conf.trimmargins
4189 then settrim true conf.trimfuzz;
4190 with exn ->
4191 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4193 src#string "throttle"
4194 (fun () ->
4195 match conf.maxwait with
4196 | None -> "show place holder if page is not ready"
4197 | Some time ->
4198 if time = infinity
4199 then "wait for page to fully render"
4200 else
4201 "wait " ^ string_of_float time
4202 ^ " seconds before showing placeholder"
4204 (fun v ->
4206 let f = float_of_string v in
4207 if f <= 0.0
4208 then conf.maxwait <- None
4209 else conf.maxwait <- Some f
4210 with exn ->
4211 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4213 src#string "ghyll scroll"
4214 (fun () ->
4215 match conf.ghyllscroll with
4216 | None -> E.s
4217 | Some nab -> ghyllscroll_to_string nab
4219 (fun v ->
4220 try conf.ghyllscroll <- ghyllscroll_of_string v
4221 with exn ->
4222 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4224 src#string "selection command"
4225 (fun () -> conf.selcmd)
4226 (fun v -> conf.selcmd <- v);
4227 src#string "synctex command"
4228 (fun () -> conf.stcmd)
4229 (fun v -> conf.stcmd <- v);
4230 src#string "pax command"
4231 (fun () -> conf.paxcmd)
4232 (fun v -> conf.paxcmd <- v);
4233 src#colorspace "color space"
4234 (fun () -> CSTE.to_string conf.colorspace)
4235 (fun v ->
4236 conf.colorspace <- CSTE.of_int v;
4237 wcmd "cs %d" v;
4238 load state.layout;
4240 src#paxmark "pax mark method"
4241 (fun () -> MTE.to_string conf.paxmark)
4242 (fun v -> conf.paxmark <- MTE.of_int v);
4243 if pbousable ()
4244 then
4245 src#bool "use PBO"
4246 (fun () -> conf.usepbo)
4247 (fun v -> conf.usepbo <- v);
4248 src#bool "mouse wheel scrolls pages"
4249 (fun () -> conf.wheelbypage)
4250 (fun v -> conf.wheelbypage <- v);
4251 src#bool "open remote links in a new instance"
4252 (fun () -> conf.riani)
4253 (fun v -> conf.riani <- v);
4256 sep ();
4257 src#caption "Document" 0;
4258 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4259 src#caption2 "Pages"
4260 (fun () -> string_of_int state.pagecount) 1;
4261 src#caption2 "Dimensions"
4262 (fun () -> string_of_int (List.length state.pdims)) 1;
4263 if conf.trimmargins
4264 then (
4265 sep ();
4266 src#caption "Trimmed margins" 0;
4267 src#caption2 "Dimensions"
4268 (fun () -> string_of_int (List.length state.pdims)) 1;
4271 sep ();
4272 src#caption "OpenGL" 0;
4273 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4274 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4276 sep ();
4277 src#caption "Location" 0;
4278 if nonemptystr state.origin
4279 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
4280 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
4282 src#reset prevmode prevuioh;
4284 fun () ->
4285 state.text <- E.s;
4286 resetmstate ();
4287 let prevmode = state.mode
4288 and prevuioh = state.uioh in
4289 fillsrc prevmode prevuioh;
4290 let source = (src :> lvsource) in
4291 let modehash = findkeyhash conf "info" in
4292 state.uioh <- coe (object (self)
4293 inherit listview ~helpmode:false ~source ~trusted:true ~modehash as super
4294 val mutable m_prevmemused = 0
4295 method infochanged = function
4296 | Memused ->
4297 if m_prevmemused != state.memused
4298 then (
4299 m_prevmemused <- state.memused;
4300 G.postRedisplay "memusedchanged";
4302 | Pdim -> G.postRedisplay "pdimchanged"
4303 | Docinfo -> fillsrc prevmode prevuioh
4305 method key key mask =
4306 if not (Wsi.withctrl mask)
4307 then
4308 match key with
4309 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4310 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4311 | _ -> super#key key mask
4312 else super#key key mask
4313 end);
4314 G.postRedisplay "info";
4317 let enterhelpmode =
4318 let source =
4319 (object
4320 inherit lvsourcebase
4321 method getitemcount = Array.length state.help
4322 method getitem n =
4323 let s, l, _ = state.help.(n) in
4324 (s, l)
4326 method exit ~uioh ~cancel ~active ~first ~pan =
4327 let optuioh =
4328 if not cancel
4329 then (
4330 match state.help.(active) with
4331 | _, _, Action f -> Some (f uioh)
4332 | _ -> Some (uioh)
4334 else None
4336 m_active <- active;
4337 m_first <- first;
4338 m_pan <- pan;
4339 optuioh
4341 method hasaction n =
4342 match state.help.(n) with
4343 | _, _, Action _ -> true
4344 | _ -> false
4346 initializer
4347 m_active <- -1
4348 end)
4349 in fun () ->
4350 let modehash = findkeyhash conf "help" in
4351 resetmstate ();
4352 state.uioh <- coe (new listview
4353 ~helpmode:true ~source ~trusted:true ~modehash);
4354 G.postRedisplay "help";
4357 let entermsgsmode =
4358 let msgsource =
4359 let re = Str.regexp "[\r\n]" in
4360 (object
4361 inherit lvsourcebase
4362 val mutable m_items = E.a
4364 method getitemcount = 1 + Array.length m_items
4366 method getitem n =
4367 if n = 0
4368 then "[Clear]", 0
4369 else m_items.(n-1), 0
4371 method exit ~uioh ~cancel ~active ~first ~pan =
4372 ignore uioh;
4373 if not cancel
4374 then (
4375 if active = 0
4376 then Buffer.clear state.errmsgs;
4378 m_active <- active;
4379 m_first <- first;
4380 m_pan <- pan;
4381 None
4383 method hasaction n =
4384 n = 0
4386 method reset =
4387 state.newerrmsgs <- false;
4388 let l = Str.split re (Buffer.contents state.errmsgs) in
4389 m_items <- Array.of_list l
4391 initializer
4392 m_active <- 0
4393 end)
4394 in fun () ->
4395 state.text <- E.s;
4396 resetmstate ();
4397 msgsource#reset;
4398 let source = (msgsource :> lvsource) in
4399 let modehash = findkeyhash conf "listview" in
4400 state.uioh <- coe (object
4401 inherit listview ~helpmode:false ~source ~trusted:false ~modehash as super
4402 method display =
4403 if state.newerrmsgs
4404 then msgsource#reset;
4405 super#display
4406 end);
4407 G.postRedisplay "msgs";
4410 let quickbookmark ?title () =
4411 match state.layout with
4412 | [] -> ()
4413 | l :: _ ->
4414 let title =
4415 match title with
4416 | None ->
4417 let tm = Unix.localtime (now ()) in
4418 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4419 (l.pageno+1)
4420 tm.Unix.tm_mday
4421 tm.Unix.tm_mon
4422 (tm.Unix.tm_year + 1900)
4423 tm.Unix.tm_hour
4424 tm.Unix.tm_min
4425 | Some title -> title
4427 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4430 let setautoscrollspeed step goingdown =
4431 let incr = max 1 ((abs step) / 2) in
4432 let incr = if goingdown then incr else -incr in
4433 let astep = boundastep state.winh (step + incr) in
4434 state.autoscroll <- Some astep;
4437 let canpan () =
4438 match conf.columns with
4439 | Csplit _ -> true
4440 | _ -> state.x != 0 || conf.zoom > 1.0
4443 let panbound x = bound x (-state.w) (wadjsb state.winw);;
4445 let existsinrow pageno (columns, coverA, coverB) p =
4446 let last = ((pageno - coverA) mod columns) + columns in
4447 let rec any = function
4448 | [] -> false
4449 | l :: rest ->
4450 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4451 then p l
4452 else (
4453 if not (p l)
4454 then (if l.pageno = last then false else any rest)
4455 else true
4458 any state.layout
4461 let nextpage () =
4462 match state.layout with
4463 | [] ->
4464 let pageno = page_of_y state.y in
4465 gotoghyll (getpagey (pageno+1))
4466 | l :: rest ->
4467 match conf.columns with
4468 | Csingle _ ->
4469 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4470 then
4471 let y = clamp (pgscale state.winh) in
4472 gotoghyll y
4473 else
4474 let pageno = min (l.pageno+1) (state.pagecount-1) in
4475 gotoghyll (getpagey pageno)
4476 | Cmulti ((c, _, _) as cl, _) ->
4477 if conf.presentation
4478 && (existsinrow l.pageno cl
4479 (fun l -> l.pageh > l.pagey + l.pagevh))
4480 then
4481 let y = clamp (pgscale state.winh) in
4482 gotoghyll y
4483 else
4484 let pageno = min (l.pageno+c) (state.pagecount-1) in
4485 gotoghyll (getpagey pageno)
4486 | Csplit (n, _) ->
4487 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4488 then
4489 let pagey, pageh = getpageyh l.pageno in
4490 let pagey = pagey + pageh * l.pagecol in
4491 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4492 gotoghyll (pagey + pageh + ips)
4495 let prevpage () =
4496 match state.layout with
4497 | [] ->
4498 let pageno = page_of_y state.y in
4499 gotoghyll (getpagey (pageno-1))
4500 | l :: _ ->
4501 match conf.columns with
4502 | Csingle _ ->
4503 if conf.presentation && l.pagey != 0
4504 then
4505 gotoghyll (clamp (pgscale ~-(state.winh)))
4506 else
4507 let pageno = max 0 (l.pageno-1) in
4508 gotoghyll (getpagey pageno)
4509 | Cmulti ((c, _, coverB) as cl, _) ->
4510 if conf.presentation &&
4511 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4512 then
4513 gotoghyll (clamp (pgscale ~-(state.winh)))
4514 else
4515 let decr =
4516 if l.pageno = state.pagecount - coverB
4517 then 1
4518 else c
4520 let pageno = max 0 (l.pageno-decr) in
4521 gotoghyll (getpagey pageno)
4522 | Csplit (n, _) ->
4523 let y =
4524 if l.pagecol = 0
4525 then
4526 if l.pageno = 0
4527 then l.pagey
4528 else
4529 let pageno = max 0 (l.pageno-1) in
4530 let pagey, pageh = getpageyh pageno in
4531 pagey + (n-1)*pageh
4532 else
4533 let pagey, pageh = getpageyh l.pageno in
4534 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4536 gotoghyll y
4539 let viewkeyboard key mask =
4540 let enttext te =
4541 let mode = state.mode in
4542 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4543 state.text <- E.s;
4544 enttext ();
4545 G.postRedisplay "view:enttext"
4547 let ctrl = Wsi.withctrl mask in
4548 let key =
4549 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4551 match key with
4552 | 81 -> (* Q *)
4553 exit 0
4555 | 0xff63 -> (* insert *)
4556 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4557 then (
4558 state.mode <- LinkNav (Ltgendir 0);
4559 gotoy state.y;
4561 else showtext '!' "Keyboard link navigation does not work under rotation"
4563 | 0xff1b | 113 -> (* escape / q *)
4564 begin match state.mstate with
4565 | Mzoomrect _ ->
4566 resetmstate ();
4567 G.postRedisplay "kill zoom rect";
4568 | _ ->
4569 begin match state.mode with
4570 | LinkNav _ ->
4571 state.mode <- View;
4572 G.postRedisplay "esc leave linknav"
4573 | _ ->
4574 match state.ranchors with
4575 | [] -> raise Quit
4576 | (path, password, anchor, origin) :: rest ->
4577 state.ranchors <- rest;
4578 state.anchor <- anchor;
4579 state.origin <- origin;
4580 state.nameddest <- E.s;
4581 opendoc path password
4582 end;
4583 end;
4585 | 0xff08 -> (* backspace *)
4586 gotoghyll (getnav ~-1)
4588 | 111 -> (* o *)
4589 enteroutlinemode ()
4591 | 72 -> (* H *)
4592 enterhistmode ()
4594 | 117 -> (* u *)
4595 state.rects <- [];
4596 state.text <- E.s;
4597 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
4598 G.postRedisplay "dehighlight";
4600 | 47 | 63 -> (* / ? *)
4601 let ondone isforw s =
4602 cbput state.hists.pat s;
4603 state.searchpattern <- s;
4604 search s isforw
4606 let s = String.create 1 in
4607 s.[0] <- Char.chr key;
4608 enttext (s, E.s, Some (onhist state.hists.pat),
4609 textentry, ondone (key = 47), true)
4611 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4612 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4613 setzoom (conf.zoom +. incr)
4615 | 43 | 0xffab -> (* + *)
4616 let ondone s =
4617 let n =
4618 try int_of_string s with exc ->
4619 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4620 max_int
4622 if n != max_int
4623 then (
4624 conf.pagebias <- n;
4625 state.text <- "page bias is now " ^ string_of_int n;
4628 enttext ("page bias: ", E.s, None, intentry, ondone, true)
4630 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4631 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4632 setzoom (max 0.01 (conf.zoom -. decr))
4634 | 45 | 0xffad -> (* - *)
4635 let ondone msg = state.text <- msg in
4636 enttext (
4637 "option [acfhilpstvxACFPRSZTISM]: ", E.s, None,
4638 optentry state.mode, ondone, true
4641 | 48 when ctrl -> (* ctrl-0 *)
4642 if conf.zoom = 1.0
4643 then (
4644 state.x <- 0;
4645 gotoy state.y
4647 else setzoom 1.0
4649 | (49 | 50) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
4650 let cols =
4651 match conf.columns with
4652 | Csingle _ | Cmulti _ -> 1
4653 | Csplit (n, _) -> n
4655 let h = state.winh -
4656 conf.interpagespace lsl (if conf.presentation then 1 else 0)
4658 let zoom = zoomforh state.winw h (vscrollw ()) cols in
4659 if zoom > 0.0 && (key = 50 || zoom < 1.0)
4660 then setzoom zoom
4662 | 51 when ctrl -> (* ctrl-3 *)
4663 let fm =
4664 match conf.fitmodel with
4665 | FitWidth -> FitProportional
4666 | FitProportional -> FitPage
4667 | FitPage -> FitWidth
4669 state.text <- "fit model: " ^ FMTE.to_string fm;
4670 reqlayout conf.angle fm
4672 | 0xffc6 -> (* f9 *)
4673 togglebirdseye ()
4675 | 57 when ctrl -> (* ctrl-9 *)
4676 togglebirdseye ()
4678 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4679 when not ctrl -> (* 0..9 *)
4680 let ondone s =
4681 let n =
4682 try int_of_string s with exc ->
4683 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4686 if n >= 0
4687 then (
4688 addnav ();
4689 cbput state.hists.pag (string_of_int n);
4690 gotopage1 (n + conf.pagebias - 1) 0;
4693 let pageentry text key =
4694 match Char.unsafe_chr key with
4695 | 'g' -> TEdone text
4696 | _ -> intentry text key
4698 let text = "x" in text.[0] <- Char.chr key;
4699 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4701 | 98 -> (* b *)
4702 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
4703 reshape state.winw state.winh;
4705 | 66 -> (* B *)
4706 state.bzoom <- not state.bzoom;
4707 state.rects <- [];
4708 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
4710 | 108 -> (* l *)
4711 conf.hlinks <- not conf.hlinks;
4712 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4713 G.postRedisplay "toggle highlightlinks";
4715 | 70 -> (* F *)
4716 state.glinks <- true;
4717 let mode = state.mode in
4718 state.mode <- Textentry (
4719 (":", E.s, None, linknentry, linkndone gotounder, false),
4720 (fun _ ->
4721 state.glinks <- false;
4722 state.mode <- mode)
4724 state.text <- E.s;
4725 G.postRedisplay "view:linkent(F)"
4727 | 121 -> (* y *)
4728 state.glinks <- true;
4729 let mode = state.mode in
4730 state.mode <- Textentry (
4732 ":", E.s, None, linknentry, linkndone (fun under ->
4733 selstring (undertext under);
4734 ), false
4736 fun _ ->
4737 state.glinks <- false;
4738 state.mode <- mode
4740 state.text <- E.s;
4741 G.postRedisplay "view:linkent"
4743 | 97 -> (* a *)
4744 begin match state.autoscroll with
4745 | Some step ->
4746 conf.autoscrollstep <- step;
4747 state.autoscroll <- None
4748 | None ->
4749 if conf.autoscrollstep = 0
4750 then state.autoscroll <- Some 1
4751 else state.autoscroll <- Some conf.autoscrollstep
4754 | 112 when ctrl -> (* ctrl-p *)
4755 launchpath ()
4757 | 80 -> (* P *)
4758 setpresentationmode (not conf.presentation);
4759 showtext ' ' ("presentation mode " ^
4760 if conf.presentation then "on" else "off");
4762 | 102 -> (* f *)
4763 if List.mem Wsi.Fullscreen state.winstate
4764 then Wsi.reshape conf.cwinw conf.cwinh
4765 else Wsi.fullscreen ()
4767 | 112 | 78 -> (* p|N *)
4768 search state.searchpattern false
4770 | 110 | 0xffc0 -> (* n|F3 *)
4771 search state.searchpattern true
4773 | 116 -> (* t *)
4774 begin match state.layout with
4775 | [] -> ()
4776 | l :: _ ->
4777 gotoghyll (getpagey l.pageno)
4780 | 32 -> (* space *)
4781 nextpage ()
4783 | 0xff9f | 0xffff -> (* delete *)
4784 prevpage ()
4786 | 61 -> (* = *)
4787 showtext ' ' (describe_location ());
4789 | 119 -> (* w *)
4790 begin match state.layout with
4791 | [] -> ()
4792 | l :: _ ->
4793 Wsi.reshape (l.pagew + vscrollw ()) l.pageh;
4794 G.postRedisplay "w"
4797 | 39 -> (* ' *)
4798 enterbookmarkmode ()
4800 | 104 | 0xffbe -> (* h|F1 *)
4801 enterhelpmode ()
4803 | 105 -> (* i *)
4804 enterinfomode ()
4806 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
4807 entermsgsmode ()
4809 | 109 -> (* m *)
4810 let ondone s =
4811 match state.layout with
4812 | l :: _ ->
4813 if nonemptystr s
4814 then
4815 state.bookmarks <-
4816 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4817 | _ -> ()
4819 enttext ("bookmark: ", E.s, None, textentry, ondone, true)
4821 | 126 -> (* ~ *)
4822 quickbookmark ();
4823 showtext ' ' "Quick bookmark added";
4825 | 122 -> (* z *)
4826 begin match state.layout with
4827 | l :: _ ->
4828 let rect = getpdimrect l.pagedimno in
4829 let w, h =
4830 if conf.crophack
4831 then
4832 (truncate (1.8 *. (rect.(1) -. rect.(0))),
4833 truncate (1.2 *. (rect.(3) -. rect.(0))))
4834 else
4835 (truncate (rect.(1) -. rect.(0)),
4836 truncate (rect.(3) -. rect.(0)))
4838 let w = truncate ((float w)*.conf.zoom)
4839 and h = truncate ((float h)*.conf.zoom) in
4840 if w != 0 && h != 0
4841 then (
4842 state.anchor <- getanchor ();
4843 Wsi.reshape (w + vscrollw ()) (h + conf.interpagespace)
4845 G.postRedisplay "z";
4847 | [] -> ()
4850 | 120 -> (* x *)
4851 state.roam ()
4852 | 60 | 62 -> (* < > *)
4853 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
4855 | 91 | 93 -> (* [ ] *)
4856 conf.colorscale <-
4857 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
4859 G.postRedisplay "brightness";
4861 | 99 when state.mode = View -> (* [alt-]c *)
4862 if Wsi.withalt mask
4863 then (
4864 if conf.zoom > 1.0
4865 then
4866 let m = (wadjsb state.winw - state.w) / 2 in
4867 state.x <- m;
4868 gotoy_and_clear_text state.y
4870 else
4871 let (c, a, b), z =
4872 match state.prevcolumns with
4873 | None -> (1, 0, 0), 1.0
4874 | Some (columns, z) ->
4875 let cab =
4876 match columns with
4877 | Csplit (c, _) -> -c, 0, 0
4878 | Cmulti ((c, a, b), _) -> c, a, b
4879 | Csingle _ -> 1, 0, 0
4881 cab, z
4883 setcolumns View c a b;
4884 setzoom z
4886 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
4887 -> (* ctrl-shift- (kp) [up|down] *)
4888 let zoom, x = state.prevzoom in
4889 setzoom zoom;
4890 state.x <- x;
4892 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
4893 begin match state.autoscroll with
4894 | None ->
4895 begin match state.mode with
4896 | Birdseye beye -> upbirdseye 1 beye
4897 | _ ->
4898 if ctrl
4899 then gotoy_and_clear_text (clamp ~-(state.winh/2))
4900 else (
4901 if not (Wsi.withshift mask) && conf.presentation
4902 then prevpage ()
4903 else gotoghyll1 true (clamp (-conf.scrollstep))
4906 | Some n ->
4907 setautoscrollspeed n false
4910 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
4911 begin match state.autoscroll with
4912 | None ->
4913 begin match state.mode with
4914 | Birdseye beye -> downbirdseye 1 beye
4915 | _ ->
4916 if ctrl
4917 then gotoy_and_clear_text (clamp (state.winh/2))
4918 else (
4919 if not (Wsi.withshift mask) && conf.presentation
4920 then nextpage ()
4921 else gotoghyll1 true (clamp (conf.scrollstep))
4924 | Some n ->
4925 setautoscrollspeed n true
4928 | 0xff51 | 0xff53 | 0xff96 | 0xff98
4929 when not (Wsi.withalt mask) -> (* (kp) left / right *)
4930 if canpan ()
4931 then
4932 let dx =
4933 if ctrl
4934 then state.winw / 2
4935 else conf.hscrollstep
4937 let dx = if key = 0xff51 || key = 0xff96 then dx else -dx in
4938 state.x <- panbound (state.x + dx);
4939 gotoy_and_clear_text state.y
4940 else (
4941 state.text <- E.s;
4942 G.postRedisplay "left/right"
4945 | 0xff55 | 0xff9a -> (* (kp) prior *)
4946 let y =
4947 if ctrl
4948 then
4949 match state.layout with
4950 | [] -> state.y
4951 | l :: _ -> state.y - l.pagey
4952 else
4953 clamp (pgscale (-state.winh))
4955 gotoghyll y
4957 | 0xff56 | 0xff9b -> (* (kp) next *)
4958 let y =
4959 if ctrl
4960 then
4961 match List.rev state.layout with
4962 | [] -> state.y
4963 | l :: _ -> getpagey l.pageno
4964 else
4965 clamp (pgscale state.winh)
4967 gotoghyll y
4969 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
4970 gotoghyll 0
4971 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
4972 gotoghyll (clamp state.maxy)
4974 | 0xff53 | 0xff98
4975 when Wsi.withalt mask -> (* alt-(kp) right *)
4976 gotoghyll (getnav 1)
4977 | 0xff51 | 0xff96
4978 when Wsi.withalt mask -> (* alt-(kp) left *)
4979 gotoghyll (getnav ~-1)
4981 | 114 -> (* r *)
4982 reload ()
4984 | 118 when conf.debug -> (* v *)
4985 state.rects <- [];
4986 List.iter (fun l ->
4987 match getopaque l.pageno with
4988 | None -> ()
4989 | Some opaque ->
4990 let x0, y0, x1, y1 = pagebbox opaque in
4991 let a,b = float x0, float y0 in
4992 let c,d = float x1, float y0 in
4993 let e,f = float x1, float y1 in
4994 let h,j = float x0, float y1 in
4995 let rect = (a,b,c,d,e,f,h,j) in
4996 debugrect rect;
4997 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
4998 ) state.layout;
4999 G.postRedisplay "v";
5001 | 124 -> (* | *)
5002 let mode = state.mode in
5003 let cmd = ref E.s in
5004 let onleave = function
5005 | Cancel -> state.mode <- mode
5006 | Confirm ->
5007 List.iter (fun l ->
5008 match getopaque l.pageno with
5009 | Some opaque -> pipesel opaque !cmd
5010 | None -> ()) state.layout;
5011 state.mode <- mode
5013 let ondone s =
5014 cbput state.hists.sel s;
5015 cmd := s
5017 let te =
5018 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5020 G.postRedisplay "|";
5021 state.mode <- Textentry (te, onleave);
5023 | _ ->
5024 vlog "huh? %s" (Wsi.keyname key)
5027 let linknavkeyboard key mask linknav =
5028 let getpage pageno =
5029 let rec loop = function
5030 | [] -> None
5031 | l :: _ when l.pageno = pageno -> Some l
5032 | _ :: rest -> loop rest
5033 in loop state.layout
5035 let doexact (pageno, n) =
5036 match getopaque pageno, getpage pageno with
5037 | Some opaque, Some l ->
5038 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5039 then
5040 let under = getlink opaque n in
5041 G.postRedisplay "link gotounder";
5042 gotounder under;
5043 state.mode <- View;
5044 else
5045 let opt, dir =
5046 match key with
5047 | 0xff50 -> (* home *)
5048 Some (findlink opaque LDfirst), -1
5050 | 0xff57 -> (* end *)
5051 Some (findlink opaque LDlast), 1
5053 | 0xff51 -> (* left *)
5054 Some (findlink opaque (LDleft n)), -1
5056 | 0xff53 -> (* right *)
5057 Some (findlink opaque (LDright n)), 1
5059 | 0xff52 -> (* up *)
5060 Some (findlink opaque (LDup n)), -1
5062 | 0xff54 -> (* down *)
5063 Some (findlink opaque (LDdown n)), 1
5065 | _ -> None, 0
5067 let pwl l dir =
5068 begin match findpwl l.pageno dir with
5069 | Pwlnotfound -> ()
5070 | Pwl pageno ->
5071 let notfound dir =
5072 state.mode <- LinkNav (Ltgendir dir);
5073 let y, h = getpageyh pageno in
5074 let y =
5075 if dir < 0
5076 then y + h - state.winh
5077 else y
5079 gotoy y
5081 begin match getopaque pageno, getpage pageno with
5082 | Some opaque, Some _ ->
5083 let link =
5084 let ld = if dir > 0 then LDfirst else LDlast in
5085 findlink opaque ld
5087 begin match link with
5088 | Lfound m ->
5089 showlinktype (getlink opaque m);
5090 state.mode <- LinkNav (Ltexact (pageno, m));
5091 G.postRedisplay "linknav jpage";
5092 | _ -> notfound dir
5093 end;
5094 | _ -> notfound dir
5095 end;
5096 end;
5098 begin match opt with
5099 | Some Lnotfound -> pwl l dir;
5100 | Some (Lfound m) ->
5101 if m = n
5102 then pwl l dir
5103 else (
5104 let _, y0, _, y1 = getlinkrect opaque m in
5105 if y0 < l.pagey
5106 then gotopage1 l.pageno y0
5107 else (
5108 let d = fstate.fontsize + 1 in
5109 if y1 - l.pagey > l.pagevh - d
5110 then gotopage1 l.pageno (y1 - state.winh - hscrollh () + d)
5111 else G.postRedisplay "linknav";
5113 showlinktype (getlink opaque m);
5114 state.mode <- LinkNav (Ltexact (l.pageno, m));
5117 | None -> viewkeyboard key mask
5118 end;
5119 | _ -> viewkeyboard key mask
5121 if key = 0xff63
5122 then (
5123 state.mode <- View;
5124 G.postRedisplay "leave linknav"
5126 else
5127 match linknav with
5128 | Ltgendir _ -> viewkeyboard key mask
5129 | Ltexact exact -> doexact exact
5132 let keyboard key mask =
5133 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5134 then wcmd "interrupt"
5135 else state.uioh <- state.uioh#key key mask
5138 let birdseyekeyboard key mask
5139 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5140 let incr =
5141 match conf.columns with
5142 | Csingle _ -> 1
5143 | Cmulti ((c, _, _), _) -> c
5144 | Csplit _ -> failwith "bird's eye split mode"
5146 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5147 match key with
5148 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5149 let y, h = getpageyh pageno in
5150 let top = (state.winh - h) / 2 in
5151 gotoy (max 0 (y - top))
5152 | 0xff0d (* enter *)
5153 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5154 | 0xff1b -> leavebirdseye beye true (* escape *)
5155 | 0xff52 -> upbirdseye incr beye (* up *)
5156 | 0xff54 -> downbirdseye incr beye (* down *)
5157 | 0xff51 -> upbirdseye 1 beye (* left *)
5158 | 0xff53 -> downbirdseye 1 beye (* right *)
5160 | 0xff55 -> (* prior *)
5161 begin match state.layout with
5162 | l :: _ ->
5163 if l.pagey != 0
5164 then (
5165 state.mode <- Birdseye (
5166 oconf, leftx, l.pageno, hooverpageno, anchor
5168 gotopage1 l.pageno 0;
5170 else (
5171 let layout = layout (state.y-state.winh) (pgh state.layout) in
5172 match layout with
5173 | [] -> gotoy (clamp (-state.winh))
5174 | l :: _ ->
5175 state.mode <- Birdseye (
5176 oconf, leftx, l.pageno, hooverpageno, anchor
5178 gotopage1 l.pageno 0
5181 | [] -> gotoy (clamp (-state.winh))
5182 end;
5184 | 0xff56 -> (* next *)
5185 begin match List.rev state.layout with
5186 | l :: _ ->
5187 let layout = layout (state.y + (pgh state.layout)) state.winh in
5188 begin match layout with
5189 | [] ->
5190 let incr = l.pageh - l.pagevh in
5191 if incr = 0
5192 then (
5193 state.mode <-
5194 Birdseye (
5195 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5197 G.postRedisplay "birdseye pagedown";
5199 else gotoy (clamp (incr + conf.interpagespace*2));
5201 | l :: _ ->
5202 state.mode <-
5203 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5204 gotopage1 l.pageno 0;
5207 | [] -> gotoy (clamp state.winh)
5208 end;
5210 | 0xff50 -> (* home *)
5211 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5212 gotopage1 0 0
5214 | 0xff57 -> (* end *)
5215 let pageno = state.pagecount - 1 in
5216 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5217 if not (pagevisible state.layout pageno)
5218 then
5219 let h =
5220 match List.rev state.pdims with
5221 | [] -> state.winh
5222 | (_, _, h, _) :: _ -> h
5224 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5225 else G.postRedisplay "birdseye end";
5226 | _ -> viewkeyboard key mask
5229 let drawpage l =
5230 let color =
5231 match state.mode with
5232 | Textentry _ -> scalecolor 0.4
5233 | LinkNav _
5234 | View -> scalecolor 1.0
5235 | Birdseye (_, _, pageno, hooverpageno, _) ->
5236 if l.pageno = hooverpageno
5237 then scalecolor 0.9
5238 else (
5239 if l.pageno = pageno
5240 then scalecolor 1.0
5241 else scalecolor 0.8
5244 drawtiles l color;
5247 let postdrawpage l linkindexbase =
5248 match getopaque l.pageno with
5249 | Some opaque ->
5250 if tileready l l.pagex l.pagey
5251 then
5252 let x = l.pagedispx - l.pagex + xadjsb 0
5253 and y = l.pagedispy - l.pagey in
5254 let hlmask =
5255 match conf.columns with
5256 | Csingle _ | Cmulti _ ->
5257 (if conf.hlinks then 1 else 0)
5258 + (if state.glinks
5259 && not (isbirdseye state.mode) then 2 else 0)
5260 | _ -> 0
5262 let s =
5263 match state.mode with
5264 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5265 | _ -> E.s
5267 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5268 else 0
5269 | _ -> 0
5272 let scrollindicator () =
5273 let sbw, ph, sh = state.uioh#scrollph in
5274 let sbh, pw, sw = state.uioh#scrollpw in
5276 let x0,x1 =
5277 if conf.leftscroll
5278 then (0, sbw)
5279 else (state.winw - sbw), state.winw
5282 GlDraw.color (0.64, 0.64, 0.64);
5283 filledrect (float x0) 0. (float x1) (float state.winh);
5284 filledrect
5285 0. (float (state.winh - sbh))
5286 (float (wadjsb state.winw - 1)) (float state.winh)
5288 GlDraw.color (0.0, 0.0, 0.0);
5290 filledrect (float x0) ph (float x1) (ph +. sh);
5291 filledrect pw (float (state.winh - sbh)) (pw +. sw) (float state.winh);
5294 let showsel () =
5295 match state.mstate with
5296 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5299 | Msel ((x0, y0), (x1, y1)) ->
5300 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
5301 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< E.s, -1, 0, 0) in
5302 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< E.s, -1, 0, 0) in
5303 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
5306 let showrects = function [] -> () | rects ->
5307 Gl.enable `blend;
5308 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5309 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5310 List.iter
5311 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5312 List.iter (fun l ->
5313 if l.pageno = pageno
5314 then (
5315 let dx = float (l.pagedispx - l.pagex) in
5316 let dy = float (l.pagedispy - l.pagey) in
5317 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5318 Raw.sets_float state.vraw ~pos:0
5319 [| x0+.dx; y0+.dy;
5320 x1+.dx; y1+.dy;
5321 x3+.dx; y3+.dy;
5322 x2+.dx; y2+.dy |];
5323 GlArray.vertex `two state.vraw;
5324 GlArray.draw_arrays `triangle_strip 0 4;
5326 ) state.layout
5327 ) rects
5329 Gl.disable `blend;
5332 let display () =
5333 GlClear.color (scalecolor2 conf.bgcolor);
5334 GlClear.clear [`color];
5335 List.iter drawpage state.layout;
5336 let rects =
5337 match state.mode with
5338 | LinkNav (Ltexact (pageno, linkno)) ->
5339 begin match getopaque pageno with
5340 | Some opaque ->
5341 let dx = xadjsb 0 in
5342 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5343 let x0 = x0 + dx and x1 = x1 + dx in
5344 (pageno, 5, (
5345 float x0, float y0,
5346 float x1, float y0,
5347 float x1, float y1,
5348 float x0, float y1)
5349 ) :: state.rects
5350 | None -> state.rects
5352 | _ -> state.rects
5354 showrects rects;
5355 let rec postloop linkindexbase = function
5356 | l :: rest ->
5357 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
5358 postloop linkindexbase rest
5359 | [] -> ()
5361 showsel ();
5362 postloop 0 state.layout;
5363 state.uioh#display;
5364 begin match state.mstate with
5365 | Mzoomrect ((x0, y0), (x1, y1)) ->
5366 Gl.enable `blend;
5367 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5368 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5369 filledrect (float x0) (float y0) (float x1) (float y1);
5370 Gl.disable `blend;
5371 | _ -> ()
5372 end;
5373 enttext ();
5374 scrollindicator ();
5375 Wsi.swapb ();
5378 let zoomrect x y x1 y1 =
5379 let x0 = min x x1
5380 and x1 = max x x1
5381 and y0 = min y y1 in
5382 gotoy (state.y + y0);
5383 state.anchor <- getanchor ();
5384 let zoom = (float state.w) /. float (x1 - x0) in
5385 let margin =
5386 match conf.fitmodel, conf.columns with
5387 | FitPage, Csplit _ ->
5388 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
5390 | _, _ ->
5391 let adjw = wadjsb state.winw in
5392 if state.w < adjw
5393 then (adjw - state.w) / 2
5394 else 0
5396 state.x <- (state.x + margin) - x0;
5397 setzoom zoom;
5398 resetmstate ();
5401 let zoomblock x y =
5402 let g opaque l px py =
5403 match rectofblock opaque px py with
5404 | Some a ->
5405 let x0 = a.(0) -. 20. in
5406 let x1 = a.(1) +. 20. in
5407 let y0 = a.(2) -. 20. in
5408 let zoom = (float state.w) /. (x1 -. x0) in
5409 let pagey = getpagey l.pageno in
5410 gotoy_and_clear_text (pagey + truncate y0);
5411 state.anchor <- getanchor ();
5412 let margin = (state.w - l.pagew)/2 in
5413 state.x <- -truncate x0 - margin;
5414 setzoom zoom;
5415 None
5416 | None -> None
5418 match conf.columns with
5419 | Csplit _ ->
5420 showtext '!' "block zooming does not work properly in split columns mode"
5421 | _ -> onppundermouse g x y ()
5424 let scrollx x =
5425 let winw = wadjsb state.winw - 1 in
5426 let s = float x /. float winw in
5427 let destx = truncate (float (state.w + winw) *. s) in
5428 state.x <- winw - destx;
5429 gotoy_and_clear_text state.y;
5430 state.mstate <- Mscrollx;
5433 let scrolly y =
5434 let s = float y /. float state.winh in
5435 let desty = truncate (float (state.maxy - state.winh) *. s) in
5436 gotoy_and_clear_text desty;
5437 state.mstate <- Mscrolly;
5440 let viewmulticlick clicks x y mask =
5441 let g opaque l px py =
5442 let mark =
5443 match clicks with
5444 | 2 -> Mark_word
5445 | 3 -> Mark_line
5446 | 4 -> Mark_block
5447 | _ -> Mark_page
5449 if markunder opaque px py mark
5450 then (
5451 Some (fun () ->
5452 let dopipe cmd =
5453 match getopaque l.pageno with
5454 | None -> ()
5455 | Some opaque -> pipesel opaque cmd
5457 state.roam <- (fun () -> dopipe conf.paxcmd);
5458 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
5461 else None
5463 G.postRedisplay "viewmulticlick";
5464 onppundermouse g x y (fun () -> showtext '!' "Nothing to select") ();
5467 let canselect () =
5468 match conf.columns with
5469 | Csplit _ -> false
5470 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
5473 let viewmouse button down x y mask =
5474 match button with
5475 | n when (n == 4 || n == 5) && not down ->
5476 if Wsi.withctrl mask
5477 then (
5478 match state.mstate with
5479 | Mzoom (oldn, i) ->
5480 if oldn = n
5481 then (
5482 if i = 2
5483 then
5484 let incr =
5485 match n with
5486 | 5 ->
5487 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5488 | _ ->
5489 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5491 let zoom = conf.zoom -. incr in
5492 setzoom zoom;
5493 state.mstate <- Mzoom (n, 0);
5494 else
5495 state.mstate <- Mzoom (n, i+1);
5497 else state.mstate <- Mzoom (n, 0)
5499 | _ -> state.mstate <- Mzoom (n, 0)
5501 else (
5502 match state.autoscroll with
5503 | Some step -> setautoscrollspeed step (n=4)
5504 | None ->
5505 if conf.wheelbypage || conf.presentation
5506 then (
5507 if n = 4
5508 then prevpage ()
5509 else nextpage ()
5511 else
5512 let incr =
5513 if n = 4
5514 then -conf.scrollstep
5515 else conf.scrollstep
5517 let incr = incr * 2 in
5518 let y = clamp incr in
5519 gotoy_and_clear_text y
5522 | n when (n = 6 || n = 7) && not down && canpan () ->
5523 state.x <-
5524 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep);
5525 gotoy_and_clear_text state.y
5527 | 1 when Wsi.withshift mask ->
5528 state.mstate <- Mnone;
5529 if not down
5530 then (
5531 match unproject x y with
5532 | Some (pageno, ux, uy) ->
5533 let cmd = Printf.sprintf
5534 "%s %s %d %d %d"
5535 conf.stcmd state.path pageno ux uy
5537 popen cmd []
5538 | None -> ()
5541 | 1 when Wsi.withctrl mask ->
5542 if down
5543 then (
5544 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5545 state.mstate <- Mpan (x, y)
5547 else
5548 state.mstate <- Mnone
5550 | 3 ->
5551 if down
5552 then (
5553 Wsi.setcursor Wsi.CURSOR_CYCLE;
5554 let p = (x, y) in
5555 state.mstate <- Mzoomrect (p, p)
5557 else (
5558 match state.mstate with
5559 | Mzoomrect ((x0, y0), _) ->
5560 if abs (x-x0) > 10 && abs (y - y0) > 10
5561 then zoomrect x0 y0 x y
5562 else (
5563 resetmstate ();
5564 G.postRedisplay "kill accidental zoom rect";
5566 | _ ->
5567 resetmstate ()
5570 | 1 when x > state.winw - vscrollw () ->
5571 if down
5572 then
5573 let _, position, sh = state.uioh#scrollph in
5574 if y > truncate position && y < truncate (position +. sh)
5575 then state.mstate <- Mscrolly
5576 else scrolly y
5577 else
5578 state.mstate <- Mnone
5580 | 1 when y > state.winh - hscrollh () ->
5581 if down
5582 then
5583 let _, position, sw = state.uioh#scrollpw in
5584 if x > truncate position && x < truncate (position +. sw)
5585 then state.mstate <- Mscrollx
5586 else scrollx x
5587 else
5588 state.mstate <- Mnone
5590 | 1 when state.bzoom -> if not down then zoomblock x y
5592 | 1 ->
5593 let dest = if down then getunder x y else Unone in
5594 begin match dest with
5595 | Ulinkgoto _
5596 | Ulinkuri _
5597 | Uremote _ | Uremotedest _
5598 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5599 gotounder dest
5601 | Unone when down ->
5602 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5603 state.mstate <- Mpan (x, y);
5605 | Unone | Utext _ ->
5606 if down
5607 then (
5608 if canselect ()
5609 then (
5610 state.mstate <- Msel ((x, y), (x, y));
5611 G.postRedisplay "mouse select";
5614 else (
5615 match state.mstate with
5616 | Mnone -> ()
5618 | Mzoom _ | Mscrollx | Mscrolly ->
5619 state.mstate <- Mnone
5621 | Mzoomrect ((x0, y0), _) ->
5622 zoomrect x0 y0 x y
5624 | Mpan _ ->
5625 Wsi.setcursor Wsi.CURSOR_INHERIT;
5626 state.mstate <- Mnone
5628 | Msel ((x0, y0), (x1, y1)) ->
5629 let rec loop = function
5630 | [] -> ()
5631 | l :: rest ->
5632 let inside =
5633 let a0 = l.pagedispy in
5634 let a1 = a0 + l.pagevh in
5635 let b0 = l.pagedispx in
5636 let b1 = b0 + l.pagevw in
5637 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5638 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5640 if inside
5641 then
5642 match getopaque l.pageno with
5643 | Some opaque ->
5644 let dosel cmd () =
5645 match Ne.res Unix.pipe with
5646 | Ne.Exn exn ->
5647 showtext '!'
5648 (Printf.sprintf
5649 "can not create sel pipe: %s"
5650 (exntos exn));
5651 | Ne.Res (r, w) ->
5652 let clo what fd =
5653 Ne.clo fd (fun msg ->
5654 dolog "%s close failed: %s" what msg)
5656 let popened =
5657 try popen cmd [r, 0; w, -1]; true
5658 with exn ->
5659 dolog "can not execute %S: %s"
5660 cmd (exntos exn);
5661 false
5663 if popened
5664 then (
5665 copysel w opaque;
5666 G.postRedisplay "copysel";
5668 else clo "Msel pipe/w" w;
5669 clo "Msel pipe/r" r;
5671 dosel conf.selcmd ();
5672 state.roam <- dosel conf.paxcmd;
5673 | None -> ()
5674 else loop rest
5676 loop state.layout;
5677 resetmstate ();
5681 | _ -> ()
5684 let birdseyemouse button down x y mask
5685 (conf, leftx, _, hooverpageno, anchor) =
5686 match button with
5687 | 1 when down ->
5688 let rec loop = function
5689 | [] -> ()
5690 | l :: rest ->
5691 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5692 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5693 then (
5694 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5696 else loop rest
5698 loop state.layout
5699 | 3 -> ()
5700 | _ -> viewmouse button down x y mask
5703 let uioh = object
5704 method display = ()
5706 method key key mask =
5707 begin match state.mode with
5708 | Textentry textentry -> textentrykeyboard key mask textentry
5709 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5710 | View -> viewkeyboard key mask
5711 | LinkNav linknav -> linknavkeyboard key mask linknav
5712 end;
5713 state.uioh
5715 method button button bstate x y mask =
5716 begin match state.mode with
5717 | LinkNav _
5718 | View -> viewmouse button bstate x y mask
5719 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5720 | Textentry _ -> ()
5721 end;
5722 state.uioh
5724 method multiclick clicks x y mask =
5725 begin match state.mode with
5726 | LinkNav _
5727 | View -> viewmulticlick clicks x y mask
5728 | Birdseye _
5729 | Textentry _ -> ()
5730 end;
5731 state.uioh
5733 method motion x y =
5734 begin match state.mode with
5735 | Textentry _ -> ()
5736 | View | Birdseye _ | LinkNav _ ->
5737 match state.mstate with
5738 | Mzoom _ | Mnone -> ()
5740 | Mpan (x0, y0) ->
5741 let dx = x - x0
5742 and dy = y0 - y in
5743 state.mstate <- Mpan (x, y);
5744 if canpan ()
5745 then state.x <- panbound (state.x + dx);
5746 let y = clamp dy in
5747 gotoy_and_clear_text y
5749 | Msel (a, _) ->
5750 state.mstate <- Msel (a, (x, y));
5751 G.postRedisplay "motion select";
5753 | Mscrolly ->
5754 let y = min state.winh (max 0 y) in
5755 scrolly y
5757 | Mscrollx ->
5758 let x = min state.winw (max 0 x) in
5759 scrollx x
5761 | Mzoomrect (p0, _) ->
5762 state.mstate <- Mzoomrect (p0, (x, y));
5763 G.postRedisplay "motion zoomrect";
5764 end;
5765 state.uioh
5767 method pmotion x y =
5768 begin match state.mode with
5769 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5770 let rec loop = function
5771 | [] ->
5772 if hooverpageno != -1
5773 then (
5774 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5775 G.postRedisplay "pmotion birdseye no hoover";
5777 | l :: rest ->
5778 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5779 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5780 then (
5781 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5782 G.postRedisplay "pmotion birdseye hoover";
5784 else loop rest
5786 loop state.layout
5788 | Textentry _ -> ()
5790 | LinkNav _
5791 | View ->
5792 match state.mstate with
5793 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5795 | Mnone ->
5796 updateunder x y;
5797 if canselect ()
5798 then
5799 match conf.pax with
5800 | None -> ()
5801 | Some r ->
5802 let past, _, _ = !r in
5803 let now = now () in
5804 let delta = now -. past in
5805 if delta > 0.01
5806 then paxunder x y
5807 else r := (now, x, y)
5808 end;
5809 state.uioh
5811 method infochanged _ = ()
5813 method scrollph =
5814 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
5815 let p, h =
5816 if maxy = 0
5817 then 0.0, float state.winh
5818 else scrollph state.y maxy
5820 vscrollw (), p, h
5822 method scrollpw =
5823 let winw = wadjsb state.winw in
5824 let fwinw = float winw in
5825 let sw =
5826 let sw = fwinw /. float state.w in
5827 let sw = fwinw *. sw in
5828 max sw (float conf.scrollh)
5830 let position =
5831 let maxx = state.w + winw in
5832 let x = winw - state.x in
5833 let percent = float x /. float maxx in
5834 (fwinw -. sw) *. percent
5836 hscrollh (), position, sw
5838 method modehash =
5839 let modename =
5840 match state.mode with
5841 | LinkNav _ -> "links"
5842 | Textentry _ -> "textentry"
5843 | Birdseye _ -> "birdseye"
5844 | View -> "view"
5846 findkeyhash conf modename
5848 method eformsgs = true
5849 end;;
5851 let adderrmsg src msg =
5852 Buffer.add_string state.errmsgs msg;
5853 state.newerrmsgs <- true;
5854 G.postRedisplay src
5857 let adderrfmt src fmt =
5858 Format.kprintf (fun s -> adderrmsg src s) fmt;
5861 let ract cmds =
5862 let cl = splitatspace cmds in
5863 let scan s fmt f =
5864 try Scanf.sscanf s fmt f
5865 with exn ->
5866 adderrfmt "remote exec"
5867 "error processing '%S': %s\n" cmds (exntos exn)
5869 match cl with
5870 | "reload" :: [] -> reload ()
5871 | "goto" :: args :: [] ->
5872 scan args "%u %f %f"
5873 (fun pageno x y ->
5874 let cmd, _ = state.geomcmds in
5875 if emptystr cmd
5876 then gotopagexy pageno x y
5877 else
5878 let f prevf () =
5879 gotopagexy pageno x y;
5880 prevf ()
5882 state.reprf <- f state.reprf
5884 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
5885 | "gotor" :: args :: [] ->
5886 scan args "%S %u"
5887 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
5888 | "gotord" :: args :: [] ->
5889 scan args "%S %S"
5890 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
5891 | "rect" :: args :: [] ->
5892 scan args "%u %u %f %f %f %f"
5893 (fun pageno color x0 y0 x1 y1 ->
5894 onpagerect pageno (fun w h ->
5895 let _,w1,h1,_ = getpagedim pageno in
5896 let sw = float w1 /. float w
5897 and sh = float h1 /. float h in
5898 let x0s = x0 *. sw
5899 and x1s = x1 *. sw
5900 and y0s = y0 *. sh
5901 and y1s = y1 *. sh in
5902 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
5903 debugrect rect;
5904 state.rects <- (pageno, color, rect) :: state.rects;
5905 G.postRedisplay "rect";
5908 | "activatewin" :: [] -> Wsi.activatewin ()
5909 | "quit" :: [] -> raise Quit
5910 | _ ->
5911 adderrfmt "remote command"
5912 "error processing remote command: %S\n" cmds;
5915 let remote =
5916 let scratch = String.create 80 in
5917 let buf = Buffer.create 80 in
5918 fun fd ->
5919 let rec tempfr () =
5920 try Some (Unix.read fd scratch 0 80)
5921 with
5922 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
5923 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
5924 | exn -> raise exn
5926 match tempfr () with
5927 | None -> Some fd
5928 | Some n ->
5929 if n = 0
5930 then (
5931 Unix.close fd;
5932 if Buffer.length buf > 0
5933 then (
5934 let s = Buffer.contents buf in
5935 Buffer.clear buf;
5936 ract s;
5938 None
5940 else
5941 let rec eat ppos =
5942 let nlpos =
5944 let pos = String.index_from scratch ppos '\n' in
5945 if pos >= n then -1 else pos
5946 with Not_found -> -1
5948 if nlpos >= 0
5949 then (
5950 Buffer.add_substring buf scratch ppos (nlpos-ppos);
5951 let s = Buffer.contents buf in
5952 Buffer.clear buf;
5953 ract s;
5954 eat (nlpos+1);
5956 else (
5957 Buffer.add_substring buf scratch ppos (n-ppos);
5958 Some fd
5960 in eat 0
5963 let remoteopen path =
5964 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
5965 with exn ->
5966 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
5967 None
5970 let () =
5971 let trimcachepath = ref E.s in
5972 let rcmdpath = ref E.s in
5973 let pageno = ref None in
5974 let histmode = ref false in
5975 selfexec := Sys.executable_name;
5976 Arg.parse
5977 (Arg.align
5978 [("-p", Arg.String (fun s -> state.password <- s),
5979 "<password> Set password");
5981 ("-f", Arg.String
5982 (fun s ->
5983 Config.fontpath := s;
5984 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
5986 "<path> Set path to the user interface font");
5988 ("-c", Arg.String
5989 (fun s ->
5990 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
5991 Config.confpath := s),
5992 "<path> Set path to the configuration file");
5994 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
5995 "<page-number> Jump to page");
5997 ("-tcf", Arg.String (fun s -> trimcachepath := s),
5998 "<path> Set path to the trim cache file");
6000 ("-dest", Arg.String (fun s -> state.nameddest <- s),
6001 "<named-destination> Set named destination");
6003 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
6004 ("-cxack", Arg.Set cxack, " Cut corners");
6006 ("-remote", Arg.String (fun s -> rcmdpath := s),
6007 "<path> Set path to the remote commands source");
6009 ("-origin", Arg.String (fun s -> state.origin <- s),
6010 "<original-path> Set original path");
6012 ("-hist", Arg.Set histmode, " Browse history");
6014 ("-v", Arg.Unit (fun () ->
6015 Printf.printf
6016 "%s\nconfiguration path: %s\n"
6017 (version ())
6018 Config.defconfpath
6020 exit 0), " Print version and exit");
6023 (fun s -> state.path <- s)
6024 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6026 if !wtmode
6027 then selfexec := !selfexec ^ " -wtmode";
6029 if emptystr state.path
6030 then (if not !histmode then (prerr_endline "file name missing"; exit 1))
6031 else (if !histmode then (prerr_endline "extra file name"; exit 1));
6033 if not (Config.load ())
6034 then prerr_endline "failed to load configuration";
6035 begin match !pageno with
6036 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
6037 | None -> ()
6038 end;
6040 let wsfd, winw, winh = Wsi.init (object (self)
6041 val mutable m_hack = false
6042 val mutable m_clicks = 0
6043 val mutable m_click_x = 0
6044 val mutable m_click_y = 0
6045 val mutable m_lastclicktime = infinity
6047 method private cleanup =
6048 state.roam <- noroam;
6049 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
6050 method expose = if not m_hack then G.postRedisplay "expose"
6051 method visible = G.postRedisplay "visible"
6052 method display = m_hack <- false; display ()
6053 method reshape w h =
6054 self#cleanup;
6055 m_hack <- w < state.winw && h < state.winh;
6056 reshape w h
6057 method mouse b d x y m =
6058 if d && canselect ()
6059 then (
6060 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
6061 m_click_x <- x;
6062 m_click_y <- y;
6063 if b = 1
6064 then (
6065 let t = now () in
6066 if abs x - m_click_x > 10
6067 || abs y - m_click_y > 10
6068 || abs_float (t -. m_lastclicktime) > 0.3
6069 then m_clicks <- 0;
6070 m_clicks <- m_clicks + 1;
6071 m_lastclicktime <- t;
6072 if m_clicks = 1
6073 then (
6074 self#cleanup;
6075 G.postRedisplay "cleanup";
6076 state.uioh <- state.uioh#button b d x y m;
6078 else state.uioh <- state.uioh#multiclick m_clicks x y m
6080 else (
6081 self#cleanup;
6082 m_clicks <- 0;
6083 m_lastclicktime <- infinity;
6084 state.uioh <- state.uioh#button b d x y m
6087 else (
6088 state.uioh <- state.uioh#button b d x y m
6090 method motion x y =
6091 state.mpos <- (x, y);
6092 state.uioh <- state.uioh#motion x y
6093 method pmotion x y =
6094 state.mpos <- (x, y);
6095 state.uioh <- state.uioh#pmotion x y
6096 method key k m =
6097 let mascm = m land (
6098 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6099 ) in
6100 let keyboard k m =
6101 let x = state.x and y = state.y in
6102 keyboard k m;
6103 if x != state.x || y != state.y then self#cleanup
6105 match state.keystate with
6106 | KSnone ->
6107 let km = k, mascm in
6108 begin
6109 match
6110 let modehash = state.uioh#modehash in
6111 try Hashtbl.find modehash km
6112 with Not_found ->
6113 try Hashtbl.find (findkeyhash conf "global") km
6114 with Not_found -> KMinsrt (k, m)
6115 with
6116 | KMinsrt (k, m) -> keyboard k m
6117 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6118 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6120 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6121 List.iter (fun (k, m) -> keyboard k m) insrt;
6122 state.keystate <- KSnone
6123 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6124 state.keystate <- KSinto (keys, insrt)
6125 | _ ->
6126 state.keystate <- KSnone
6128 method enter x y =
6129 state.mpos <- (x, y);
6130 state.uioh <- state.uioh#pmotion x y
6131 method leave = state.mpos <- (-1, -1)
6132 method winstate wsl = state.winstate <- wsl; m_hack <- false
6133 method quit = raise Quit
6134 end) conf.cwinw conf.cwinh (platform = Posx) in
6136 state.wsfd <- wsfd;
6138 if not (
6139 List.exists GlMisc.check_extension
6140 [ "GL_ARB_texture_rectangle"
6141 ; "GL_EXT_texture_recangle"
6142 ; "GL_NV_texture_rectangle" ]
6144 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6146 if (
6147 let r = GlMisc.get_string `renderer in
6148 let p = "Mesa DRI Intel(" in
6149 let l = String.length p in
6150 String.length r > l && String.sub r 0 l = p
6152 then (
6153 defconf.sliceheight <- 1024;
6154 defconf.texcount <- 32;
6155 defconf.usepbo <- true;
6158 let cr, sw =
6159 match Ne.res Unix.pipe with
6160 | Ne.Exn exn ->
6161 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
6162 exit 1
6163 | Ne.Res rw -> rw
6164 and sr, cw =
6165 match Ne.res Unix.pipe with
6166 | Ne.Exn exn ->
6167 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
6168 exit 1
6169 | Ne.Res rw -> rw
6172 cloexec cr;
6173 cloexec sw;
6174 cloexec sr;
6175 cloexec cw;
6177 setcheckers conf.checkers;
6178 redirectstderr ();
6179 if conf.redirectstderr
6180 then
6181 at_exit (fun () ->
6182 let s = Buffer.contents state.errmsgs ^
6183 (match state.errfd with
6184 | Some fd ->
6185 let s = String.create (80*24) in
6186 let n =
6188 let r, _, _ = Unix.select [fd] [] [] 0.0 in
6189 if List.mem fd r
6190 then Unix.read fd s 0 (String.length s)
6191 else 0
6192 with _ -> 0
6194 if n = 0
6195 then E.s
6196 else String.sub s 0 n
6197 | None -> E.s
6200 try ignore (Unix.write state.stderr s 0 (String.length s))
6201 with exn -> print_endline (exntos exn)
6205 init (cr, cw) (
6206 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
6207 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6208 !Config.fontpath, !trimcachepath,
6209 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
6211 List.iter GlArray.enable [`texture_coord; `vertex];
6212 state.sr <- sr;
6213 state.sw <- sw;
6214 reshape winw winh;
6215 if !histmode
6216 then (
6217 state.uioh <- uioh;
6218 enterhistmode ();
6220 else (
6221 state.text <- "Opening " ^ (mbtoutf8 state.path);
6222 opendoc state.path state.password;
6223 state.uioh <- uioh;
6225 display ();
6226 Wsi.mapwin ();
6227 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
6228 let optrfd =
6229 ref (
6230 if nonemptystr !rcmdpath
6231 then remoteopen !rcmdpath
6232 else None
6236 let rec loop deadline =
6237 let r =
6238 match state.errfd with
6239 | None -> [state.sr; state.wsfd]
6240 | Some fd -> [state.sr; state.wsfd; fd]
6242 let r =
6243 match !optrfd with
6244 | None -> r
6245 | Some fd -> fd :: r
6247 if state.redisplay
6248 then (
6249 state.redisplay <- false;
6250 display ();
6252 let timeout =
6253 let now = now () in
6254 if deadline > now
6255 then (
6256 if deadline = infinity
6257 then ~-.1.0
6258 else max 0.0 (deadline -. now)
6260 else 0.0
6262 let r, _, _ =
6263 try Unix.select r [] [] timeout
6264 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
6266 begin match r with
6267 | [] ->
6268 state.ghyll None;
6269 let newdeadline =
6270 if state.ghyll == noghyll
6271 then
6272 match state.autoscroll with
6273 | Some step when step != 0 ->
6274 let y = state.y + step in
6275 let y =
6276 if y < 0
6277 then state.maxy
6278 else if y >= state.maxy then 0 else y
6280 gotoy y;
6281 if state.mode = View
6282 then state.text <- E.s;
6283 deadline +. 0.01
6284 | _ -> infinity
6285 else deadline +. 0.01
6287 loop newdeadline
6289 | l ->
6290 let rec checkfds = function
6291 | [] -> ()
6292 | fd :: rest when fd = state.sr ->
6293 let cmd = readcmd state.sr in
6294 act cmd;
6295 checkfds rest
6297 | fd :: rest when fd = state.wsfd ->
6298 Wsi.readresp fd;
6299 checkfds rest
6301 | fd :: rest when Some fd = !optrfd ->
6302 begin match remote fd with
6303 | None -> optrfd := remoteopen !rcmdpath;
6304 | opt -> optrfd := opt
6305 end;
6306 checkfds rest
6308 | fd :: rest ->
6309 let s = String.create 80 in
6310 let n = tempfailureretry (Unix.read fd s 0) 80 in
6311 if conf.redirectstderr
6312 then (
6313 Buffer.add_substring state.errmsgs s 0 n;
6314 state.newerrmsgs <- true;
6315 state.redisplay <- true;
6317 else (
6318 prerr_string (String.sub s 0 n);
6319 flush stderr;
6321 checkfds rest
6323 checkfds l;
6324 let newdeadline =
6325 let deadline1 =
6326 if deadline = infinity
6327 then now () +. 0.01
6328 else deadline
6330 match state.autoscroll with
6331 | Some step when step != 0 -> deadline1
6332 | _ -> if state.ghyll == noghyll then infinity else deadline1
6334 loop newdeadline
6335 end;
6338 loop infinity;
6339 with Quit ->
6340 Config.save leavebirdseye;