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