cbzl creation
[llpp.git] / main.ml
blob2e437b92650f19476672e3df641db0511d5e6c69
1 open Utils;;
2 open Config;;
4 exception Quit;;
6 external init : Unix.file_descr -> params -> unit = "ml_init";;
7 external seltext : opaque -> (int * int * int * int) -> unit = "ml_seltext";;
8 external hassel : opaque -> bool = "ml_hassel";;
9 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
10 external getpdimrect : int -> float array = "ml_getpdimrect";;
11 external whatsunder : opaque -> int -> int -> under = "ml_whatsunder";;
12 external markunder : opaque -> int -> int -> mark -> bool = "ml_markunder";;
13 external clearmark : opaque -> unit = "ml_clearmark";;
14 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
15 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
16 external measurestr : int -> string -> float = "ml_measure_string";;
17 external postprocess :
18 opaque -> int -> int -> int -> (int * string * int) -> int
19 = "ml_postprocess";;
20 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
21 external setaalevel : int -> unit = "ml_setaalevel";;
22 external realloctexts : int -> bool = "ml_realloctexts";;
23 external findlink : opaque -> linkdir -> link = "ml_findlink";;
24 external getlink : opaque -> int -> under = "ml_getlink";;
25 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
26 external getlinkcount : opaque -> int = "ml_getlinkcount";;
27 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
28 external getpbo : width -> height -> colorspace -> opaque = "ml_getpbo";;
29 external freepbo : opaque -> unit = "ml_freepbo";;
30 external unmappbo : opaque -> unit = "ml_unmappbo";;
31 external pbousable : unit -> bool = "ml_pbo_usable";;
32 external unproject : opaque -> int -> int -> (int * int) option
33 = "ml_unproject";;
34 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
35 external rectofblock : opaque -> int -> int -> float array option
36 = "ml_rectofblock";;
37 external begintiles : unit -> unit = "ml_begintiles";;
38 external endtiles : unit -> unit = "ml_endtiles";;
40 let reeenterhist = ref false;;
41 let selfexec = ref E.s;;
43 let drawstring size x y s =
44 Gl.enable `blend;
45 Gl.enable `texture_2d;
46 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
47 ignore (drawstr size x y s);
48 Gl.disable `blend;
49 Gl.disable `texture_2d;
52 let drawstring1 size x y s =
53 drawstr size x y s;
56 let drawstring2 size x y fmt =
57 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
60 let debugl l =
61 dolog "l %d dim=%d {" l.pageno l.pagedimno;
62 dolog " WxH %dx%d" l.pagew l.pageh;
63 dolog " vWxH %dx%d" l.pagevw l.pagevh;
64 dolog " pagex,y %d,%d" l.pagex l.pagey;
65 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
66 dolog " column %d" l.pagecol;
67 dolog "}";
70 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
71 dolog "rect {";
72 dolog " x0,y0=(% f, % f)" x0 y0;
73 dolog " x1,y1=(% f, % f)" x1 y1;
74 dolog " x2,y2=(% f, % f)" x2 y2;
75 dolog " x3,y3=(% f, % f)" x3 y3;
76 dolog "}";
79 let isbirdseye = function
80 | Birdseye _ -> true
81 | Textentry _
82 | View
83 | LinkNav _ -> false
86 let istextentry = function
87 | Textentry _ -> true
88 | Birdseye _
89 | View
90 | LinkNav _ -> false
93 let wtmode = ref false;;
94 let cxack = ref false;;
96 let pgscale h = truncate (float h *. conf.pgscale);;
98 let hscrollh () =
99 if (conf.scrollb land scrollbhv = 0)
100 || (state.x = 0 && state.w <= state.winw - conf.scrollbw)
101 then 0
102 else conf.scrollbw
105 let vscrollw () =
106 if (conf.scrollb land scrollbvv = 0)
107 then 0
108 else conf.scrollbw
111 let wadjsb w = w - vscrollw ();;
112 let xadjsb x = if conf.leftscroll then x + vscrollw () else x;;
114 let setfontsize n =
115 fstate.fontsize <- n;
116 fstate.wwidth <- measurestr fstate.fontsize "w";
117 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
120 let vlog fmt =
121 if conf.verbose
122 then
123 Printf.kprintf prerr_endline fmt
124 else
125 Printf.kprintf ignore fmt
128 let launchpath () =
129 if emptystr conf.pathlauncher
130 then print_endline state.path
131 else (
132 let re = Str.regexp "%s" in
133 let command = Str.global_replace re state.path conf.pathlauncher in
134 try popen command []
135 with exn ->
136 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
137 flush stderr;
141 let redirectstderr () =
142 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
143 if conf.redirectstderr
144 then
145 match Ne.res Unix.pipe () with
146 | Ne.Exn exn ->
147 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
149 | Ne.Res (r, w) ->
150 begin match Ne.dup Unix.stderr with
151 | Ne.Exn exn ->
152 dolog "failed to dup stderr: %s" (exntos exn);
153 Ne.clo r (clofail "pipe/r");
154 Ne.clo w (clofail "pipe/w");
156 | Ne.Res dupstderr ->
157 begin match Ne.dup2 w Unix.stderr with
158 | Ne.Exn exn ->
159 dolog "failed to dup2 to stderr: %s" (exntos exn);
160 Ne.clo dupstderr (clofail "stderr duplicate");
161 Ne.clo r (clofail "redir pipe/r");
162 Ne.clo w (clofail "redir pipe/w");
164 | Ne.Res () ->
165 state.stderr <- dupstderr;
166 state.errfd <- Some r;
167 end;
169 else (
170 state.newerrmsgs <- false;
171 begin match state.errfd with
172 | Some fd ->
173 begin match Ne.dup2 state.stderr Unix.stderr with
174 | Ne.Exn exn ->
175 dolog "failed to dup2 original stderr: %s" (exntos exn)
176 | Ne.Res () ->
177 Ne.clo fd (clofail "dup of stderr");
178 state.errfd <- None;
179 end;
180 | None -> ()
181 end;
182 prerr_string (Buffer.contents state.errmsgs);
183 flush stderr;
184 Buffer.clear state.errmsgs;
188 module G =
189 struct
190 let postRedisplay who =
191 if conf.verbose
192 then prerr_endline ("redisplay for " ^ who);
193 state.redisplay <- true;
195 end;;
197 let getopaque pageno =
198 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
199 with Not_found -> None
202 let putopaque pageno opaque =
203 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
206 let pagetranslatepoint l x y =
207 let dy = y - l.pagedispy in
208 let y = dy + l.pagey in
209 let dx = x - l.pagedispx in
210 let x = dx + l.pagex in
211 (x, y);
214 let onppundermouse g x y d =
215 let rec f = function
216 | l :: rest ->
217 begin match getopaque l.pageno with
218 | Some opaque ->
219 let x0 = l.pagedispx in
220 let x1 = x0 + l.pagevw in
221 let y0 = l.pagedispy in
222 let y1 = y0 + l.pagevh in
223 if y >= y0 && y <= y1 && x >= x0 && x <= x1
224 then
225 let px, py = pagetranslatepoint l x y in
226 match g opaque l px py with
227 | Some res -> res
228 | None -> f rest
229 else f rest
230 | _ ->
231 f rest
233 | [] -> d
235 f state.layout
238 let getunder x y =
239 let g opaque l px py =
240 if state.bzoom
241 then (
242 match rectofblock opaque px py with
243 | Some a ->
244 let rect = (a.(0),a.(2),a.(1),a.(2),a.(1),a.(3),a.(0),a.(3)) in
245 state.rects <- [l.pageno, l.pageno mod 3, rect];
246 G.postRedisplay "getunder";
247 | None -> ()
249 let under = whatsunder opaque px py in
250 match under with
251 | Unone -> None
252 | Ulinkuri _
253 | Ulinkgoto _
254 | Utext _
255 | Uunexpected _
256 | Ulaunch _
257 | Unamed _
258 | Uremote _
259 | Uremotedest _ -> Some under
261 onppundermouse g x y Unone
264 let unproject x y =
265 let g opaque l x y =
266 match unproject opaque x y with
267 | Some (x, y) -> Some (Some (l.pageno, x, y))
268 | None -> None
270 onppundermouse g x y None;
273 let showtext c s =
274 state.text <- Printf.sprintf "%c%s" c s;
275 G.postRedisplay "showtext";
278 let pipesel opaque cmd =
279 if hassel opaque
280 then
281 match Ne.res Unix.pipe () with
282 | Ne.Exn exn ->
283 showtext '!'
284 (Printf.sprintf "pipesel can not create pipe: %s" (exntos exn));
285 | Ne.Res (r, w) ->
286 let doclose what fd =
287 Ne.clo fd (fun msg -> dolog "%s close failed: %s" what msg)
289 let popened =
290 try popen cmd [r, 0; w, -1]; true
291 with exn ->
292 dolog "can not execute %S: %s" cmd (exntos exn);
293 false
295 if popened
296 then (
297 copysel w opaque;
298 G.postRedisplay "pipesel";
300 else doclose "pipesel pipe/w" w;
301 doclose "pipesel pipe/r" r;
304 let paxunder x y =
305 let g opaque l px py =
306 if markunder opaque px py conf.paxmark
307 then (
308 Some (fun () ->
309 match getopaque l.pageno with
310 | None -> ()
311 | Some opaque -> pipesel opaque conf.paxcmd
314 else None
316 G.postRedisplay "paxunder";
317 if conf.paxmark = Mark_page
318 then
319 List.iter (fun l ->
320 match getopaque l.pageno with
321 | None -> ()
322 | Some opaque -> clearmark opaque) state.layout;
323 state.roam <-
324 onppundermouse g x y (fun () -> showtext '!' "Whoopsie daisy");
327 let selstring s =
328 match Ne.res Unix.pipe () with
329 | Ne.Exn exn ->
330 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
331 | Ne.Res (r, w) ->
332 let clo cap fd =
333 Ne.clo fd (fun msg ->
334 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
337 let popened =
338 try popen conf.selcmd [r, 0; w, -1]; true
339 with exn ->
340 showtext '!'
341 (Printf.sprintf "failed to execute %s: %s"
342 conf.selcmd (exntos exn));
343 false
345 if popened
346 then (
348 let l = String.length s in
349 let n = tempfailureretry (Unix.write w s 0) l in
350 if n != l
351 then
352 showtext '!'
353 (Printf.sprintf
354 "failed to write %d characters to sel pipe, wrote %d"
357 with exn ->
358 showtext '!'
359 (Printf.sprintf "failed to write to sel pipe: %s"
360 (exntos exn)
363 else dolog "%s" s;
364 clo "selstring pipe/r" r;
365 clo "selstring pipe/w" w;
368 let undertext = function
369 | Unone -> "none"
370 | Ulinkuri s -> s
371 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
372 | Utext s -> "font: " ^ s
373 | Uunexpected s -> "unexpected: " ^ s
374 | Ulaunch s -> "launch: " ^ s
375 | Unamed s -> "named: " ^ s
376 | Uremote (filename, pageno) ->
377 Printf.sprintf "%s: page %d" filename (pageno+1)
378 | Uremotedest (filename, destname) ->
379 Printf.sprintf "%s: destination %S" filename destname
382 let updateunder x y =
383 match getunder x y with
384 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
385 | Ulinkuri uri ->
386 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
387 Wsi.setcursor Wsi.CURSOR_INFO
388 | Ulinkgoto (pageno, _) ->
389 if conf.underinfo
390 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
391 Wsi.setcursor Wsi.CURSOR_INFO
392 | Utext s ->
393 if conf.underinfo then showtext 'f' ("ont: " ^ s);
394 Wsi.setcursor Wsi.CURSOR_TEXT
395 | Uunexpected s ->
396 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
397 Wsi.setcursor Wsi.CURSOR_INHERIT
398 | Ulaunch s ->
399 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
400 Wsi.setcursor Wsi.CURSOR_INHERIT
401 | Unamed s ->
402 if conf.underinfo then showtext 'n' ("amed: " ^ s);
403 Wsi.setcursor Wsi.CURSOR_INHERIT
404 | Uremote (filename, pageno) ->
405 if conf.underinfo then showtext 'r'
406 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
407 Wsi.setcursor Wsi.CURSOR_INFO
408 | Uremotedest (filename, destname) ->
409 if conf.underinfo then showtext 'r'
410 (Printf.sprintf "emote destination: %s (%S)" filename destname);
411 Wsi.setcursor Wsi.CURSOR_INFO
414 let showlinktype under =
415 if conf.underinfo
416 then
417 match under with
418 | Unone -> ()
419 | Ulinkuri _
420 | Ulinkgoto _
421 | Utext _
422 | Uunexpected _
423 | Ulaunch _
424 | Unamed _
425 | Uremote _
426 | Uremotedest _ ->
427 let s = undertext under in
428 showtext ' ' s
431 let addchar s c =
432 let b = Buffer.create (String.length s + 1) in
433 Buffer.add_string b s;
434 Buffer.add_char b c;
435 Buffer.contents b;
438 let intentry_with_suffix text key =
439 let c =
440 if key >= 32 && key < 127
441 then Char.chr key
442 else '\000'
444 match Char.lowercase c with
445 | '0' .. '9' ->
446 let text = addchar text c in
447 TEcont text
449 | 'k' | 'm' | 'g' ->
450 let text = addchar text c in
451 TEcont text
453 | _ ->
454 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
455 TEcont text
458 let readcmd fd =
459 let s = "xxxx" in
460 let n = tempfailureretry (Unix.read fd s 0) 4 in
461 if n != 4 then error "incomplete read(len) = %d" n;
462 let len = 0
463 lor (Char.code s.[0] lsl 24)
464 lor (Char.code s.[1] lsl 16)
465 lor (Char.code s.[2] lsl 8)
466 lor (Char.code s.[3] lsl 0)
468 let s = String.create len in
469 let n = tempfailureretry (Unix.read fd s 0) len in
470 if n != len then error "incomplete read(data) %d vs %d" n len;
474 let btod b = if b then 1 else 0;;
476 let wcmd fmt =
477 let b = Buffer.create 16 in
478 Buffer.add_string b "llll";
479 Printf.kbprintf
480 (fun b ->
481 let s = Buffer.contents b in
482 let n = String.length s in
483 let len = n - 4 in
484 (* dolog "wcmd %S" (String.sub s 4 len); *)
485 s.[0] <- Char.chr ((len lsr 24) land 0xff);
486 s.[1] <- Char.chr ((len lsr 16) land 0xff);
487 s.[2] <- Char.chr ((len lsr 8) land 0xff);
488 s.[3] <- Char.chr (len land 0xff);
489 let n' = tempfailureretry (Unix.write state.ss s 0) n in
490 if n' != n then error "write failed %d vs %d" n' n;
491 ) b fmt;
494 let nogeomcmds cmds =
495 match cmds with
496 | s, [] -> emptystr s
497 | _ -> false
500 let layoutN ((columns, coverA, coverB), b) y sh =
501 let sh = sh - (hscrollh ()) in
502 let rec fold accu n =
503 if n = Array.length b
504 then accu
505 else
506 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
507 if (vy - y) > sh &&
508 (n = coverA - 1
509 || n = state.pagecount - coverB
510 || (n - coverA) mod columns = columns - 1)
511 then accu
512 else
513 let accu =
514 if vy + h > y
515 then
516 let pagey = max 0 (y - vy) in
517 let pagedispy = if pagey > 0 then 0 else vy - y in
518 let pagedispx, pagex =
519 let pdx =
520 if n = coverA - 1 || n = state.pagecount - coverB
521 then state.x + (wadjsb state.winw - w) / 2
522 else dx + xoff + state.x
524 if pdx < 0
525 then 0, -pdx
526 else pdx, 0
528 let pagevw =
529 let vw = wadjsb state.winw - pagedispx in
530 let pw = w - pagex in
531 min vw pw
533 let pagevh = min (h - pagey) (sh - pagedispy) in
534 if pagevw > 0 && pagevh > 0
535 then
536 let e =
537 { pageno = n
538 ; pagedimno = pdimno
539 ; pagew = w
540 ; pageh = h
541 ; pagex = pagex
542 ; pagey = pagey
543 ; pagevw = pagevw
544 ; pagevh = pagevh
545 ; pagedispx = pagedispx
546 ; pagedispy = pagedispy
547 ; pagecol = 0
550 e :: accu
551 else
552 accu
553 else
554 accu
556 fold accu (n+1)
558 if Array.length b = 0
559 then []
560 else List.rev (fold [] (page_of_y y))
563 let layoutS (columns, b) y sh =
564 let sh = sh - hscrollh () in
565 let rec fold accu n =
566 if n = Array.length b
567 then accu
568 else
569 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
570 if (vy - y) > sh
571 then accu
572 else
573 let accu =
574 if vy + pageh > y
575 then
576 let x = xoff + state.x in
577 let pagey = max 0 (y - vy) in
578 let pagedispy = if pagey > 0 then 0 else vy - y in
579 let pagedispx, pagex =
580 if px = 0
581 then (
582 if x < 0
583 then 0, -x
584 else x, 0
586 else (
587 let px = px - x in
588 if px < 0
589 then -px, 0
590 else 0, px
593 let pagecolw = pagew/columns in
594 let pagedispx =
595 if pagecolw < state.winw
596 then pagedispx + ((wadjsb state.winw - pagecolw) / 2)
597 else pagedispx
599 let pagevw =
600 let vw = wadjsb state.winw - pagedispx in
601 let pw = pagew - pagex in
602 min vw pw
604 let pagevw = min pagevw pagecolw in
605 let pagevh = min (pageh - pagey) (sh - pagedispy) in
606 if pagevw > 0 && pagevh > 0
607 then
608 let e =
609 { pageno = n/columns
610 ; pagedimno = pdimno
611 ; pagew = pagew
612 ; pageh = pageh
613 ; pagex = pagex
614 ; pagey = pagey
615 ; pagevw = pagevw
616 ; pagevh = pagevh
617 ; pagedispx = pagedispx
618 ; pagedispy = pagedispy
619 ; pagecol = n mod columns
622 e :: accu
623 else
624 accu
625 else
626 accu
628 fold accu (n+1)
630 List.rev (fold [] 0)
633 let layout y sh =
634 if nogeomcmds state.geomcmds
635 then
636 match conf.columns with
637 | Csingle b -> layoutN ((1, 0, 0), b) y sh
638 | Cmulti c -> layoutN c y sh
639 | Csplit s -> layoutS s y sh
640 else []
643 let clamp incr =
644 let y = state.y + incr in
645 let y = max 0 y in
646 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
650 let itertiles l f =
651 let tilex = l.pagex mod conf.tilew in
652 let tiley = l.pagey mod conf.tileh in
654 let col = l.pagex / conf.tilew in
655 let row = l.pagey / conf.tileh in
657 let rec rowloop row y0 dispy h =
658 if h = 0
659 then ()
660 else (
661 let dh = conf.tileh - y0 in
662 let dh = min h dh in
663 let rec colloop col x0 dispx w =
664 if w = 0
665 then ()
666 else (
667 let dw = conf.tilew - x0 in
668 let dw = min w dw in
669 let dispx' = xadjsb dispx in
670 f col row dispx' dispy x0 y0 dw dh;
671 colloop (col+1) 0 (dispx+dw) (w-dw)
674 colloop col tilex l.pagedispx l.pagevw;
675 rowloop (row+1) 0 (dispy+dh) (h-dh)
678 if l.pagevw > 0 && l.pagevh > 0
679 then rowloop row tiley l.pagedispy l.pagevh;
682 let gettileopaque l col row =
683 let key =
684 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
686 try Some (Hashtbl.find state.tilemap key)
687 with Not_found -> None
690 let puttileopaque l col row gen colorspace angle opaque size elapsed =
691 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
692 Hashtbl.add state.tilemap key (opaque, size, elapsed)
695 let filledrect x0 y0 x1 y1 =
696 GlArray.disable `texture_coord;
697 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
698 GlArray.vertex `two state.vraw;
699 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
700 GlArray.enable `texture_coord;
703 let linerect x0 y0 x1 y1 =
704 GlArray.disable `texture_coord;
705 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y1; x1; y0 |];
706 GlArray.vertex `two state.vraw;
707 GlArray.draw_arrays `line_loop ~first:0 ~count:4;
708 GlArray.enable `texture_coord;
711 let drawtiles l color =
712 GlDraw.color color;
713 begintiles ();
714 let f col row x y tilex tiley w h =
715 match gettileopaque l col row with
716 | Some (opaque, _, t) ->
717 let params = x, y, w, h, tilex, tiley in
718 if conf.invert
719 then GlTex.env (`mode `blend);
720 drawtile params opaque;
721 if conf.invert
722 then GlTex.env (`mode `modulate);
723 if conf.debug
724 then (
725 endtiles ();
726 let s = Printf.sprintf
727 "%d[%d,%d] %f sec"
728 l.pageno col row t
730 let w = measurestr fstate.fontsize s in
731 GlDraw.color (0.0, 0.0, 0.0);
732 filledrect (float (x-2))
733 (float (y-2))
734 (float (x+2) +. w)
735 (float (y + fstate.fontsize + 2));
736 GlDraw.color (1.0, 1.0, 1.0);
737 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
738 begintiles ();
741 | None ->
742 endtiles ();
743 let w =
744 if conf.leftscroll
745 then w
746 else
747 let lw = wadjsb state.winw - x in
748 min lw w
749 and h =
750 let lh = state.winh - y in
751 min lh h
753 if conf.invert
754 then GlTex.env (`mode `blend);
755 begin match state.checkerstexid with
756 | Some id ->
757 Gl.enable `texture_2d;
758 GlTex.bind_texture ~target:`texture_2d id;
759 let x0 = float x
760 and y0 = float y
761 and x1 = float (x+w)
762 and y1 = float (y+h) in
764 let tw = float w /. 16.0
765 and th = float h /. 16.0 in
766 let tx0 = float tilex /. 16.0
767 and ty0 = float tiley /. 16.0 in
768 let tx1 = tx0 +. tw
769 and ty1 = ty0 +. th in
770 Raw.sets_float state.vraw ~pos:0
771 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
772 Raw.sets_float state.traw ~pos:0
773 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
774 GlArray.vertex `two state.vraw;
775 GlArray.tex_coord `two state.traw;
776 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
777 Gl.disable `texture_2d;
779 | None ->
780 GlDraw.color (1.0, 1.0, 1.0);
781 filledrect (float x) (float y) (float (x+w)) (float (y+h));
782 end;
783 if conf.invert
784 then GlTex.env (`mode `modulate);
785 if w > 128 && h > fstate.fontsize + 10
786 then (
787 let c = if conf.invert then 1.0 else 0.0 in
788 GlDraw.color (c, c, c);
789 let c, r =
790 if conf.verbose
791 then (col*conf.tilew, row*conf.tileh)
792 else col, row
794 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
796 GlDraw.color color;
797 begintiles ();
799 itertiles l f;
800 endtiles ();
803 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
805 let tilevisible1 l x y =
806 let ax0 = l.pagex
807 and ax1 = l.pagex + l.pagevw
808 and ay0 = l.pagey
809 and ay1 = l.pagey + l.pagevh in
811 let bx0 = x
812 and by0 = y in
813 let bx1 = min (bx0 + conf.tilew) l.pagew
814 and by1 = min (by0 + conf.tileh) l.pageh in
816 let rx0 = max ax0 bx0
817 and ry0 = max ay0 by0
818 and rx1 = min ax1 bx1
819 and ry1 = min ay1 by1 in
821 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
822 nonemptyintersection
825 let tilevisible layout n x y =
826 let rec findpageinlayout m = function
827 | l :: rest when l.pageno = n ->
828 tilevisible1 l x y || (
829 match conf.columns with
830 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
831 | Csplit _
832 | Csingle _
833 | Cmulti _ -> false
835 | _ :: rest -> findpageinlayout 0 rest
836 | [] -> false
838 findpageinlayout 0 layout;
841 let tileready l x y =
842 tilevisible1 l x y &&
843 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
846 let tilepage n p layout =
847 let rec loop = function
848 | l :: rest ->
849 if l.pageno = n
850 then
851 let f col row _ _ _ _ _ _ =
852 if state.currently = Idle
853 then
854 match gettileopaque l col row with
855 | Some _ -> ()
856 | None ->
857 let x = col*conf.tilew
858 and y = row*conf.tileh in
859 let w =
860 let w = l.pagew - x in
861 min w conf.tilew
863 let h =
864 let h = l.pageh - y in
865 min h conf.tileh
867 let pbo =
868 if conf.usepbo
869 then getpbo w h conf.colorspace
870 else ~< "0"
872 wcmd "tile %s %d %d %d %d %s"
873 (~> p) x y w h (~> pbo);
874 state.currently <-
875 Tiling (
876 l, p, conf.colorspace, conf.angle,
877 state.gen, col, row, conf.tilew, conf.tileh
880 itertiles l f;
881 else
882 loop rest
884 | [] -> ()
886 if nogeomcmds state.geomcmds
887 then loop layout;
890 let preloadlayout y =
891 let y = if y < state.winh then 0 else y - state.winh in
892 let h = state.winh*3 in
893 layout y h;
896 let load pages =
897 let rec loop pages =
898 if state.currently != Idle
899 then ()
900 else
901 match pages with
902 | l :: rest ->
903 begin match getopaque l.pageno with
904 | None ->
905 wcmd "page %d %d" l.pageno l.pagedimno;
906 state.currently <- Loading (l, state.gen);
907 | Some opaque ->
908 tilepage l.pageno opaque pages;
909 loop rest
910 end;
911 | _ -> ()
913 if nogeomcmds state.geomcmds
914 then loop pages
917 let preload pages =
918 load pages;
919 if conf.preload && state.currently = Idle
920 then load (preloadlayout state.y);
923 let layoutready layout =
924 let rec fold all ls =
925 all && match ls with
926 | l :: rest ->
927 let seen = ref false in
928 let allvisible = ref true in
929 let foo col row _ _ _ _ _ _ =
930 seen := true;
931 allvisible := !allvisible &&
932 begin match gettileopaque l col row with
933 | Some _ -> true
934 | None -> false
937 itertiles l foo;
938 fold (!seen && !allvisible) rest
939 | [] -> true
941 let alltilesvisible = fold true layout in
942 alltilesvisible;
945 let gotoy y =
946 let y = bound y 0 state.maxy in
947 let y, layout, proceed =
948 match conf.maxwait with
949 | Some time when state.ghyll == noghyll ->
950 begin match state.throttle with
951 | None ->
952 let layout = layout y state.winh in
953 let ready = layoutready layout in
954 if not ready
955 then (
956 load layout;
957 state.throttle <- Some (layout, y, now ());
959 else G.postRedisplay "gotoy showall (None)";
960 y, layout, ready
961 | Some (_, _, started) ->
962 let dt = now () -. started in
963 if dt > time
964 then (
965 state.throttle <- None;
966 let layout = layout y state.winh in
967 load layout;
968 G.postRedisplay "maxwait";
969 y, layout, true
971 else -1, [], false
974 | _ ->
975 let layout = layout y state.winh in
976 if not !wtmode || layoutready layout
977 then G.postRedisplay "gotoy ready";
978 y, layout, true
980 if proceed
981 then (
982 state.y <- y;
983 state.layout <- layout;
984 begin match state.mode with
985 | LinkNav ln ->
986 begin match ln with
987 | Ltexact (pageno, linkno) ->
988 let rec loop = function
989 | [] ->
990 state.mode <- LinkNav (Ltgendir 0)
991 | l :: _ when l.pageno = pageno ->
992 begin match getopaque pageno with
993 | None ->
994 state.mode <- LinkNav (Ltgendir 0)
995 | Some opaque ->
996 let x0, y0, x1, y1 = getlinkrect opaque linkno in
997 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
998 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
999 then state.mode <- LinkNav (Ltgendir 0)
1001 | _ :: rest -> loop rest
1003 loop layout
1004 | Ltgendir _ -> ()
1006 | Birdseye _
1007 | Textentry _
1008 | View -> ()
1009 end;
1010 begin match state.mode with
1011 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1012 if not (pagevisible layout pageno)
1013 then (
1014 match state.layout with
1015 | [] -> ()
1016 | l :: _ ->
1017 state.mode <- Birdseye (
1018 conf, leftx, l.pageno, hooverpageno, anchor
1021 | LinkNav lt ->
1022 begin match lt with
1023 | Ltgendir dir ->
1024 let linknav =
1025 let rec loop = function
1026 | [] -> lt
1027 | l :: rest ->
1028 match getopaque l.pageno with
1029 | None -> loop rest
1030 | Some opaque ->
1031 let link =
1032 let ld =
1033 if dir = 0
1034 then LDfirstvisible (l.pagex, l.pagey, dir)
1035 else (
1036 if dir > 0 then LDfirst else LDlast
1039 findlink opaque ld
1041 match link with
1042 | Lnotfound -> loop rest
1043 | Lfound n ->
1044 showlinktype (getlink opaque n);
1045 Ltexact (l.pageno, n)
1047 loop state.layout
1049 state.mode <- LinkNav linknav
1050 | Ltexact _ -> ()
1052 | Textentry _
1053 | View -> ()
1054 end;
1055 preload layout;
1057 state.ghyll <- noghyll;
1058 if conf.updatecurs
1059 then (
1060 let mx, my = state.mpos in
1061 updateunder mx my;
1065 let conttiling pageno opaque =
1066 tilepage pageno opaque
1067 (if conf.preload then preloadlayout state.y else state.layout)
1070 let gotoy_and_clear_text y =
1071 if not conf.verbose then state.text <- E.s;
1072 gotoy y;
1075 let getanchory (n, top, dtop) =
1076 let y, h = getpageyh n in
1077 if conf.presentation
1078 then
1079 let ips = calcips h in
1080 y + truncate (top*.float h -. dtop*.float ips) + ips;
1081 else
1082 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1085 let gotoanchor anchor =
1086 gotoy (getanchory anchor);
1089 let addnav () =
1090 cbput state.hists.nav (getanchor ());
1093 let getnav dir =
1094 let anchor = cbgetc state.hists.nav dir in
1095 getanchory anchor;
1098 let gotoghyll1 single y =
1099 let scroll f n a b =
1100 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1101 let snake f a b =
1102 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1103 if f < a
1104 then s (float f /. float a)
1105 else (
1106 if f > b
1107 then 1.0 -. s ((float (f-b) /. float (n-b)))
1108 else 1.0
1111 snake f a b
1112 and summa n a b =
1113 let ins = float a *. 0.5
1114 and outs = float (n-b) *. 0.5 in
1115 let ones = b - a in
1116 ins +. outs +. float ones
1118 let rec set nab y sy =
1119 let (_N, _A, _B), y =
1120 if single
1121 then
1122 let scl = if y > sy then 2 else -2 in
1123 let _N, _, _ = nab in
1124 (_N,0,_N), y+conf.scrollstep*scl
1125 else nab,y in
1126 let sum = summa _N _A _B in
1127 let dy = float (y - sy) in
1128 state.ghyll <- (
1129 let rec gf n y1 o =
1130 if n >= _N
1131 then state.ghyll <- noghyll
1132 else
1133 let go n =
1134 let s = scroll n _N _A _B in
1135 let y1 = y1 +. ((s *. dy) /. sum) in
1136 gotoy_and_clear_text (truncate y1);
1137 state.ghyll <- gf (n+1) y1;
1139 match o with
1140 | None -> go n
1141 | Some y' when single -> set nab y' state.y
1142 | Some y' -> set (_N/2, 1, 1) y' state.y
1144 gf 0 (float state.y)
1147 match conf.ghyllscroll with
1148 | Some nab when not conf.presentation ->
1149 if state.ghyll == noghyll
1150 then set nab y state.y
1151 else state.ghyll (Some y)
1152 | _ ->
1153 gotoy_and_clear_text y
1156 let gotoghyll = gotoghyll1 false;;
1158 let gotopage n top =
1159 let y, h = getpageyh n in
1160 let y = y + (truncate (top *. float h)) in
1161 gotoghyll y
1164 let gotopage1 n top =
1165 let y = getpagey n in
1166 let y = y + top in
1167 gotoghyll y
1170 let invalidate s f =
1171 state.layout <- [];
1172 state.pdims <- [];
1173 state.rects <- [];
1174 state.rects1 <- [];
1175 match state.geomcmds with
1176 | ps, [] when emptystr ps ->
1177 f ();
1178 state.geomcmds <- s, [];
1180 | ps, [] ->
1181 state.geomcmds <- ps, [s, f];
1183 | ps, (s', _) :: rest when s' = s ->
1184 state.geomcmds <- ps, ((s, f) :: rest);
1186 | ps, cmds ->
1187 state.geomcmds <- ps, ((s, f) :: cmds);
1190 let flushpages () =
1191 Hashtbl.iter (fun _ opaque ->
1192 wcmd "freepage %s" (~> opaque);
1193 ) state.pagemap;
1194 Hashtbl.clear state.pagemap;
1197 let flushtiles () =
1198 if not (Queue.is_empty state.tilelru)
1199 then (
1200 Queue.iter (fun (k, p, s) ->
1201 wcmd "freetile %s" (~> p);
1202 state.memused <- state.memused - s;
1203 Hashtbl.remove state.tilemap k;
1204 ) state.tilelru;
1205 state.uioh#infochanged Memused;
1206 Queue.clear state.tilelru;
1208 load state.layout;
1211 let stateh h =
1212 let h = truncate (float h*.conf.zoom) in
1213 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
1214 h - d
1217 let opendoc path password =
1218 state.path <- path;
1219 state.password <- password;
1220 state.gen <- state.gen + 1;
1221 state.docinfo <- [];
1223 flushpages ();
1224 setaalevel conf.aalevel;
1225 let titlepath =
1226 if emptystr state.origin
1227 then path
1228 else state.origin
1230 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename titlepath)));
1231 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password;
1232 invalidate "reqlayout"
1233 (fun () ->
1234 wcmd "reqlayout %d %d %d %s\000"
1235 conf.angle (FMTE.to_int conf.fitmodel)
1236 (stateh state.winh) state.nameddest
1240 let reload () =
1241 state.anchor <- getanchor ();
1242 opendoc state.path state.password;
1245 let scalecolor c =
1246 let c = c *. conf.colorscale in
1247 (c, c, c);
1250 let scalecolor2 (r, g, b) =
1251 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1254 let docolumns = function
1255 | Csingle _ ->
1256 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1257 let rec loop pageno pdimno pdim y ph pdims =
1258 if pageno = state.pagecount
1259 then ()
1260 else
1261 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1262 match pdims with
1263 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1264 pdimno+1, pdim, rest
1265 | _ ->
1266 pdimno, pdim, pdims
1268 let x = max 0 (((wadjsb state.winw - w) / 2) - xoff) in
1269 let y = y +
1270 (if conf.presentation
1271 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1272 else (if pageno = 0 then 0 else conf.interpagespace)
1275 a.(pageno) <- (pdimno, x, y, pdim);
1276 loop (pageno+1) pdimno pdim (y + h) h pdims
1278 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1279 conf.columns <- Csingle a;
1281 | Cmulti ((columns, coverA, coverB), _) ->
1282 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1283 let rec loop pageno pdimno pdim x y rowh pdims =
1284 let rec fixrow m = if m = pageno then () else
1285 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1286 if h < rowh
1287 then (
1288 let y = y + (rowh - h) / 2 in
1289 a.(m) <- (pdimno, x, y, pdim);
1291 fixrow (m+1)
1293 if pageno = state.pagecount
1294 then fixrow (((pageno - 1) / columns) * columns)
1295 else
1296 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1297 match pdims with
1298 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1299 pdimno+1, pdim, rest
1300 | _ ->
1301 pdimno, pdim, pdims
1303 let x, y, rowh' =
1304 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1305 then (
1306 let x = (wadjsb state.winw - w) / 2 in
1307 let ips =
1308 if conf.presentation then calcips h else conf.interpagespace in
1309 x, y + ips + rowh, h
1311 else (
1312 if (pageno - coverA) mod columns = 0
1313 then (
1314 let x = max 0 (wadjsb state.winw - state.w) / 2 in
1315 let y =
1316 if conf.presentation
1317 then
1318 let ips = calcips h in
1319 y + (if pageno = 0 then 0 else calcips rowh + ips)
1320 else
1321 y + (if pageno = 0 then 0 else conf.interpagespace)
1323 x, y + rowh, h
1325 else x, y, max rowh h
1328 let y =
1329 if pageno > 1 && (pageno - coverA) mod columns = 0
1330 then (
1331 let y =
1332 if pageno = columns && conf.presentation
1333 then (
1334 let ips = calcips rowh in
1335 for i = 0 to pred columns
1337 let (pdimno, x, y, pdim) = a.(i) in
1338 a.(i) <- (pdimno, x, y+ips, pdim)
1339 done;
1340 y+ips;
1342 else y
1344 fixrow (pageno - columns);
1347 else y
1349 a.(pageno) <- (pdimno, x, y, pdim);
1350 let x = x + w + xoff*2 + conf.interpagespace in
1351 loop (pageno+1) pdimno pdim x y rowh' pdims
1353 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
1354 conf.columns <- Cmulti ((columns, coverA, coverB), a);
1356 | Csplit (c, _) ->
1357 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1358 let rec loop pageno pdimno pdim y pdims =
1359 if pageno = state.pagecount
1360 then ()
1361 else
1362 let pdimno, ((_, w, h, _) as pdim), pdims =
1363 match pdims with
1364 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1365 pdimno+1, pdim, rest
1366 | _ ->
1367 pdimno, pdim, pdims
1369 let cw = w / c in
1370 let rec loop1 n x y =
1371 if n = c then y else (
1372 a.(pageno*c + n) <- (pdimno, x, y, pdim);
1373 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
1376 let y = loop1 0 0 y in
1377 loop (pageno+1) pdimno pdim y pdims
1379 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
1380 conf.columns <- Csplit (c, a);
1383 let represent () =
1384 docolumns conf.columns;
1385 state.maxy <- calcheight ();
1386 if state.reprf == noreprf
1387 then (
1388 match state.mode with
1389 | Birdseye (_, _, pageno, _, _) ->
1390 let y, h = getpageyh pageno in
1391 let top = (state.winh - h) / 2 in
1392 gotoy (max 0 (y - top))
1393 | Textentry _
1394 | View
1395 | LinkNav _ -> gotoanchor state.anchor
1397 else (
1398 state.reprf ();
1399 state.reprf <- noreprf;
1403 let reshape w h =
1404 GlDraw.viewport ~x:0 ~y:0 ~w:w ~h:h;
1405 let firsttime = state.geomcmds == firstgeomcmds in
1406 if not firsttime && nogeomcmds state.geomcmds
1407 then state.anchor <- getanchor ();
1409 state.winw <- w;
1410 let w = wadjsb (truncate (float w *. conf.zoom)) in
1411 let w = max w 2 in
1412 state.winh <- h;
1413 setfontsize fstate.fontsize;
1414 GlMat.mode `modelview;
1415 GlMat.load_identity ();
1417 GlMat.mode `projection;
1418 GlMat.load_identity ();
1419 GlMat.rotate ~x:1.0 ~angle:180.0 ();
1420 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
1421 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
1423 let relx =
1424 if conf.zoom <= 1.0
1425 then 0.0
1426 else float state.x /. float state.w
1428 invalidate "geometry"
1429 (fun () ->
1430 state.w <- w;
1431 if not firsttime
1432 then state.x <- truncate (relx *. float w);
1433 let w =
1434 match conf.columns with
1435 | Csingle _ -> w
1436 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
1437 | Csplit (c, _) -> w * c
1439 wcmd "geometry %d %d %d"
1440 w (stateh h) (FMTE.to_int conf.fitmodel)
1444 let enttext () =
1445 let len = String.length state.text in
1446 let x0 = xadjsb 0 in
1447 let drawstring s =
1448 let hscrollh =
1449 match state.mode with
1450 | Textentry _ | View | LinkNav _ ->
1451 let h, _, _ = state.uioh#scrollpw in
1453 | Birdseye _ -> 0
1455 let rect x w =
1456 filledrect x (float (state.winh - (fstate.fontsize + 4) - hscrollh))
1457 (x+.w) (float (state.winh - hscrollh))
1460 let w = float (wadjsb state.winw - 1) in
1461 if state.progress >= 0.0 && state.progress < 1.0
1462 then (
1463 GlDraw.color (0.3, 0.3, 0.3);
1464 let w1 = w *. state.progress in
1465 rect (float x0) w1;
1466 GlDraw.color (0.0, 0.0, 0.0);
1467 rect (float x0+.w1) (float x0+.w-.w1)
1469 else (
1470 GlDraw.color (0.0, 0.0, 0.0);
1471 rect (float x0) w;
1474 GlDraw.color (1.0, 1.0, 1.0);
1475 drawstring fstate.fontsize
1476 (if conf.leftscroll then x0 + 2 else x0 + if len > 0 then 8 else 2)
1477 (state.winh - hscrollh - 5) s;
1479 let s =
1480 match state.mode with
1481 | Textentry ((prefix, text, _, _, _, _), _) ->
1482 let s =
1483 if len > 0
1484 then
1485 Printf.sprintf "%s%s_ [%s]" prefix text state.text
1486 else
1487 Printf.sprintf "%s%s_" prefix text
1491 | Birdseye _
1492 | View
1493 | LinkNav _ -> state.text
1495 let s =
1496 if state.newerrmsgs
1497 then (
1498 if not (istextentry state.mode) && state.uioh#eformsgs
1499 then
1500 let s1 = "(press 'e' to review error messasges)" in
1501 if nonemptystr s then s ^ " " ^ s1 else s1
1502 else s
1504 else s
1506 if nonemptystr s
1507 then drawstring s
1510 let gctiles () =
1511 let len = Queue.length state.tilelru in
1512 let layout = lazy (
1513 match state.throttle with
1514 | None ->
1515 if conf.preload
1516 then preloadlayout state.y
1517 else state.layout
1518 | Some (layout, _, _) ->
1519 layout
1520 ) in
1521 let rec loop qpos =
1522 if state.memused <= conf.memlimit
1523 then ()
1524 else (
1525 if qpos < len
1526 then
1527 let (k, p, s) as lruitem = Queue.pop state.tilelru in
1528 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
1529 let (_, pw, ph, _) = getpagedim n in
1531 gen = state.gen
1532 && colorspace = conf.colorspace
1533 && angle = conf.angle
1534 && pagew = pw
1535 && pageh = ph
1536 && (
1537 let x = col*conf.tilew
1538 and y = row*conf.tileh in
1539 tilevisible (Lazy.force_val layout) n x y
1541 then Queue.push lruitem state.tilelru
1542 else (
1543 freepbo p;
1544 wcmd "freetile %s" (~> p);
1545 state.memused <- state.memused - s;
1546 state.uioh#infochanged Memused;
1547 Hashtbl.remove state.tilemap k;
1549 loop (qpos+1)
1552 loop 0
1555 let logcurrently = function
1556 | Idle -> dolog "Idle"
1557 | Loading (l, gen) ->
1558 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
1559 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
1560 dolog
1561 "Tiling %d[%d,%d] page=%s cs=%s angle"
1562 l.pageno col row (~> pageopaque)
1563 (CSTE.to_string colorspace)
1565 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
1566 angle gen conf.angle state.gen
1567 tilew tileh
1568 conf.tilew conf.tileh
1570 | Outlining _ ->
1571 dolog "outlining"
1574 let splitatspace =
1575 let r = Str.regexp " " in
1576 fun s -> Str.bounded_split r s 2;
1579 let onpagerect pageno f =
1580 let b =
1581 match conf.columns with
1582 | Cmulti (_, b) -> b
1583 | Csingle b -> b
1584 | Csplit (_, b) -> b
1586 if pageno >= 0 && pageno < Array.length b
1587 then
1588 let (_, _, _, (w, h, _, _)) = b.(pageno) in
1589 f w h
1592 let gotopagexy1 pageno x y =
1593 let _,w1,h1,leftx = getpagedim pageno in
1594 let top = y /. (float h1) in
1595 let left = x /. (float w1) in
1596 let py, w, h = getpageywh pageno in
1597 let wh = state.winh - hscrollh () in
1598 let x = left *. (float w) in
1599 let x = leftx + state.x + truncate x in
1600 let sx =
1601 if x < 0 || x >= wadjsb state.winw
1602 then state.x - x
1603 else state.x
1605 let pdy = truncate (top *. float h) in
1606 let y' = py + pdy in
1607 let dy = y' - state.y in
1608 let sy =
1609 if x != state.x || not (dy > 0 && dy < wh)
1610 then (
1611 if conf.presentation
1612 then
1613 if abs (py - y') > wh
1614 then y'
1615 else py
1616 else y';
1618 else state.y
1620 if state.x != sx || state.y != sy
1621 then (
1622 let x, y =
1623 if !wtmode
1624 then (
1625 let ww = wadjsb state.winw in
1626 let qx = sx / ww
1627 and qy = pdy / wh in
1628 let x = qx * ww
1629 and y = py + qy * wh in
1630 let x = if -x + ww > w1 then -(w1-ww) else x
1631 and y' = if y + wh > state.maxy then state.maxy - wh else y in
1632 let y =
1633 if conf.presentation
1634 then
1635 if abs (py - y') > wh
1636 then y'
1637 else py
1638 else y';
1640 (x, y)
1642 else (sx, sy)
1644 state.x <- x;
1645 gotoy_and_clear_text y;
1647 else gotoy_and_clear_text state.y;
1650 let gotopagexy pageno x y =
1651 match state.mode with
1652 | Birdseye _ -> gotopage pageno 0.0
1653 | Textentry _
1654 | View
1655 | LinkNav _ -> gotopagexy1 pageno x y
1658 let act cmds =
1659 (* dolog "%S" cmds; *)
1660 let cl = splitatspace cmds in
1661 let scan s fmt f =
1662 try Scanf.sscanf s fmt f
1663 with exn ->
1664 dolog "error processing '%S': %s" cmds (exntos exn);
1665 exit 1
1667 let addoutline outline =
1668 match state.currently with
1669 | Outlining outlines ->
1670 state.currently <- Outlining (outline :: outlines)
1671 | Idle -> state.currently <- Outlining [outline]
1672 | Loading _
1673 | Tiling _ ->
1674 dolog "invalid outlining state";
1675 logcurrently state.currently
1677 match cl with
1678 | "clear" :: [] ->
1679 state.uioh#infochanged Pdim;
1680 state.pdims <- [];
1682 | "clearrects" :: [] ->
1683 state.rects <- state.rects1;
1684 G.postRedisplay "clearrects";
1686 | "continue" :: args :: [] ->
1687 let n = scan args "%u" (fun n -> n) in
1688 state.pagecount <- n;
1689 begin match state.currently with
1690 | Outlining l ->
1691 state.currently <- Idle;
1692 state.outlines <- Array.of_list (List.rev l)
1693 | Idle
1694 | Loading _
1695 | Tiling _ -> ()
1696 end;
1698 let cur, cmds = state.geomcmds in
1699 if emptystr cur
1700 then failwith "umpossible";
1702 begin match List.rev cmds with
1703 | [] ->
1704 state.geomcmds <- E.s, [];
1705 state.throttle <- None;
1706 represent ();
1707 | (s, f) :: rest ->
1708 f ();
1709 state.geomcmds <- s, List.rev rest;
1710 end;
1711 if conf.maxwait = None && not !wtmode
1712 then G.postRedisplay "continue";
1714 | "title" :: args :: [] ->
1715 conf.title <- args;
1716 Wsi.settitle args
1718 | "msg" :: args :: [] ->
1719 showtext ' ' args
1721 | "vmsg" :: args :: [] ->
1722 if conf.verbose
1723 then showtext ' ' args
1725 | "emsg" :: args :: [] ->
1726 Buffer.add_string state.errmsgs args;
1727 state.newerrmsgs <- true;
1728 G.postRedisplay "error message"
1730 | "progress" :: args :: [] ->
1731 let progress, text =
1732 scan args "%f %n"
1733 (fun f pos ->
1734 f, String.sub args pos (String.length args - pos))
1736 state.text <- text;
1737 state.progress <- progress;
1738 G.postRedisplay "progress"
1740 | "firstmatch" :: args :: [] ->
1741 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1742 scan args "%u %d %f %f %f %f %f %f %f %f"
1743 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1744 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1746 let xoff = float (xadjsb 0) in
1747 let x0 = x0 +. xoff
1748 and x1 = x1 +. xoff
1749 and x2 = x2 +. xoff
1750 and x3 = x3 +. xoff in
1751 let y = (getpagey pageno) + truncate y0 in
1752 addnav ();
1753 gotoy y;
1754 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
1756 | "match" :: args :: [] ->
1757 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
1758 scan args "%u %d %f %f %f %f %f %f %f %f"
1759 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
1760 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
1762 let xoff = float (xadjsb 0) in
1763 let x0 = x0 +. xoff
1764 and x1 = x1 +. xoff
1765 and x2 = x2 +. xoff
1766 and x3 = x3 +. xoff in
1767 state.rects1 <-
1768 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
1770 | "page" :: args :: [] ->
1771 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
1772 let pageopaque = ~< pageopaques in
1773 begin match state.currently with
1774 | Loading (l, gen) ->
1775 vlog "page %d took %f sec" l.pageno t;
1776 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
1777 begin match state.throttle with
1778 | None ->
1779 let preloadedpages =
1780 if conf.preload
1781 then preloadlayout state.y
1782 else state.layout
1784 let evict () =
1785 let set =
1786 List.fold_left (fun s l -> IntSet.add l.pageno s)
1787 IntSet.empty preloadedpages
1789 let evictedpages =
1790 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
1791 if not (IntSet.mem pageno set)
1792 then (
1793 wcmd "freepage %s" (~> opaque);
1794 key :: accu
1796 else accu
1797 ) state.pagemap []
1799 List.iter (Hashtbl.remove state.pagemap) evictedpages;
1801 evict ();
1802 state.currently <- Idle;
1803 if gen = state.gen
1804 then (
1805 tilepage l.pageno pageopaque state.layout;
1806 load state.layout;
1807 load preloadedpages;
1808 if pagevisible state.layout l.pageno
1809 && layoutready state.layout
1810 then G.postRedisplay "page";
1813 | Some (layout, _, _) ->
1814 state.currently <- Idle;
1815 tilepage l.pageno pageopaque layout;
1816 load state.layout
1817 end;
1819 | Idle
1820 | Tiling _
1821 | Outlining _ ->
1822 dolog "Inconsistent loading state";
1823 logcurrently state.currently;
1824 exit 1
1827 | "tile" :: args :: [] ->
1828 let (x, y, opaques, size, t) =
1829 scan args "%u %u %s %u %f"
1830 (fun x y p size t -> (x, y, p, size, t))
1832 let opaque = ~< opaques in
1833 begin match state.currently with
1834 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
1835 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
1837 unmappbo opaque;
1838 if tilew != conf.tilew || tileh != conf.tileh
1839 then (
1840 wcmd "freetile %s" (~> opaque);
1841 state.currently <- Idle;
1842 load state.layout;
1844 else (
1845 puttileopaque l col row gen cs angle opaque size t;
1846 state.memused <- state.memused + size;
1847 state.uioh#infochanged Memused;
1848 gctiles ();
1849 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
1850 opaque, size) state.tilelru;
1852 let layout =
1853 match state.throttle with
1854 | None -> state.layout
1855 | Some (layout, _, _) -> layout
1858 state.currently <- Idle;
1859 if gen = state.gen
1860 && conf.colorspace = cs
1861 && conf.angle = angle
1862 && tilevisible layout l.pageno x y
1863 then conttiling l.pageno pageopaque;
1865 begin match state.throttle with
1866 | None ->
1867 preload state.layout;
1868 if gen = state.gen
1869 && conf.colorspace = cs
1870 && conf.angle = angle
1871 && tilevisible state.layout l.pageno x y
1872 && (not !wtmode || layoutready state.layout)
1873 then G.postRedisplay "tile nothrottle";
1875 | Some (layout, y, _) ->
1876 let ready = layoutready layout in
1877 if ready
1878 then (
1879 state.y <- y;
1880 state.layout <- layout;
1881 state.throttle <- None;
1882 G.postRedisplay "throttle";
1884 else load layout;
1885 end;
1888 | Idle
1889 | Loading _
1890 | Outlining _ ->
1891 dolog "Inconsistent tiling state";
1892 logcurrently state.currently;
1893 exit 1
1896 | "pdim" :: args :: [] ->
1897 let (n, w, h, _) as pdim =
1898 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
1900 let pdim =
1901 match conf.fitmodel with
1902 | FitWidth -> pdim
1903 | FitPage | FitProportional ->
1904 match conf.columns with
1905 | Csplit _ -> (n, w, h, 0)
1906 | Csingle _ | Cmulti _ -> pdim
1908 state.uioh#infochanged Pdim;
1909 state.pdims <- pdim :: state.pdims
1911 | "o" :: args :: [] ->
1912 let (l, n, t, h, pos) =
1913 scan args "%u %u %d %u %n"
1914 (fun l n t h pos -> l, n, t, h, pos)
1916 let s = String.sub args pos (String.length args - pos) in
1917 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
1919 | "ou" :: args :: [] ->
1920 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
1921 let s = String.sub args pos len in
1922 let pos2 = pos + len + 1 in
1923 let uri = String.sub args pos2 (String.length args - pos2) in
1924 addoutline (s, l, Ouri uri)
1926 | "on" :: args :: [] ->
1927 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
1928 let s = String.sub args pos (String.length args - pos) in
1929 addoutline (s, l, Onone)
1931 | "a" :: args :: [] ->
1932 let (n, l, t) =
1933 scan args "%u %d %d" (fun n l t -> n, l, t)
1935 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
1937 | "info" :: args :: [] ->
1938 state.docinfo <- (1, args) :: state.docinfo
1940 | "infoend" :: [] ->
1941 state.uioh#infochanged Docinfo;
1942 state.docinfo <- List.rev state.docinfo
1944 | _ ->
1945 error "unknown cmd `%S'" cmds
1948 let onhist cb =
1949 let rc = cb.rc in
1950 let action = function
1951 | HCprev -> cbget cb ~-1
1952 | HCnext -> cbget cb 1
1953 | HCfirst -> cbget cb ~-(cb.rc)
1954 | HClast -> cbget cb (cb.len - 1 - cb.rc)
1955 and cancel () = cb.rc <- rc
1956 in (action, cancel)
1959 let search pattern forward =
1960 match conf.columns with
1961 | Csplit _ ->
1962 showtext '!' "searching does not work properly in split columns mode"
1963 | Csingle _
1964 | Cmulti _ ->
1965 if nonemptystr pattern
1966 then
1967 let pn, py =
1968 match state.layout with
1969 | [] -> 0, 0
1970 | l :: _ ->
1971 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
1973 wcmd "search %d %d %d %d,%s\000"
1974 (btod conf.icase) pn py (btod forward) pattern;
1977 let intentry text key =
1978 let c =
1979 if key >= 32 && key < 127
1980 then Char.chr key
1981 else '\000'
1983 match c with
1984 | '0' .. '9' ->
1985 let text = addchar text c in
1986 TEcont text
1988 | _ ->
1989 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1990 TEcont text
1993 let linknentry text key =
1994 let c =
1995 if key >= 32 && key < 127
1996 then Char.chr key
1997 else '\000'
1999 match c with
2000 | 'a' .. 'z' ->
2001 let text = addchar text c in
2002 TEcont text
2004 | _ ->
2005 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2006 TEcont text
2009 let linkndone f s =
2010 if nonemptystr s
2011 then (
2012 let n =
2013 let l = String.length s in
2014 let rec loop pos n = if pos = l then n else
2015 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2016 loop (pos+1) (n*26 + m)
2017 in loop 0 0
2019 let rec loop n = function
2020 | [] -> ()
2021 | l :: rest ->
2022 match getopaque l.pageno with
2023 | None -> loop n rest
2024 | Some opaque ->
2025 let m = getlinkcount opaque in
2026 if n < m
2027 then (
2028 let under = getlink opaque n in
2029 f under
2031 else loop (n-m) rest
2033 loop n state.layout;
2037 let textentry text key =
2038 if key land 0xff00 = 0xff00
2039 then TEcont text
2040 else TEcont (text ^ toutf8 key)
2043 let reqlayout angle fitmodel =
2044 match state.throttle with
2045 | None ->
2046 if nogeomcmds state.geomcmds
2047 then state.anchor <- getanchor ();
2048 conf.angle <- angle mod 360;
2049 if conf.angle != 0
2050 then (
2051 match state.mode with
2052 | LinkNav _ -> state.mode <- View
2053 | Birdseye _
2054 | Textentry _
2055 | View -> ()
2057 conf.fitmodel <- fitmodel;
2058 invalidate "reqlayout"
2059 (fun () ->
2060 wcmd "reqlayout %d %d %d"
2061 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh)
2063 | _ -> ()
2066 let settrim trimmargins trimfuzz =
2067 if nogeomcmds state.geomcmds
2068 then state.anchor <- getanchor ();
2069 conf.trimmargins <- trimmargins;
2070 conf.trimfuzz <- trimfuzz;
2071 let x0, y0, x1, y1 = trimfuzz in
2072 invalidate "settrim"
2073 (fun () ->
2074 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2075 flushpages ();
2078 let setzoom zoom =
2079 match state.throttle with
2080 | None ->
2081 let zoom = max 0.0001 zoom in
2082 if zoom <> conf.zoom
2083 then (
2084 state.prevzoom <- (conf.zoom, state.x);
2085 conf.zoom <- zoom;
2086 reshape state.winw state.winh;
2087 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2090 | Some (layout, y, started) ->
2091 let time =
2092 match conf.maxwait with
2093 | None -> 0.0
2094 | Some t -> t
2096 let dt = now () -. started in
2097 if dt > time
2098 then (
2099 state.y <- y;
2100 load layout;
2104 let setcolumns mode columns coverA coverB =
2105 state.prevcolumns <- Some (conf.columns, conf.zoom);
2106 if columns < 0
2107 then (
2108 if isbirdseye mode
2109 then showtext '!' "split mode doesn't work in bird's eye"
2110 else (
2111 conf.columns <- Csplit (-columns, E.a);
2112 state.x <- 0;
2113 conf.zoom <- 1.0;
2116 else (
2117 if columns < 2
2118 then (
2119 conf.columns <- Csingle E.a;
2120 state.x <- 0;
2121 setzoom 1.0;
2123 else (
2124 conf.columns <- Cmulti ((columns, coverA, coverB), E.a);
2125 conf.zoom <- 1.0;
2128 reshape state.winw state.winh;
2131 let resetmstate () =
2132 state.mstate <- Mnone;
2133 Wsi.setcursor Wsi.CURSOR_INHERIT;
2136 let enterbirdseye () =
2137 let zoom = float conf.thumbw /. float state.winw in
2138 let birdseyepageno =
2139 let cy = state.winh / 2 in
2140 let fold = function
2141 | [] -> 0
2142 | l :: rest ->
2143 let rec fold best = function
2144 | [] -> best.pageno
2145 | l :: rest ->
2146 let d = cy - (l.pagedispy + l.pagevh/2)
2147 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2148 if abs d < abs dbest
2149 then fold l rest
2150 else best.pageno
2151 in fold l rest
2153 fold state.layout
2155 state.mode <- Birdseye (
2156 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2158 resetmstate ();
2159 conf.zoom <- zoom;
2160 conf.presentation <- false;
2161 conf.interpagespace <- 10;
2162 conf.hlinks <- false;
2163 conf.fitmodel <- FitProportional;
2164 state.x <- 0;
2165 conf.maxwait <- None;
2166 conf.columns <- (
2167 match conf.beyecolumns with
2168 | Some c ->
2169 conf.zoom <- 1.0;
2170 Cmulti ((c, 0, 0), E.a)
2171 | None -> Csingle E.a
2173 if conf.verbose
2174 then
2175 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2176 (100.0*.zoom)
2177 else
2178 state.text <- E.s
2180 reshape state.winw state.winh;
2183 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2184 state.mode <- View;
2185 conf.zoom <- c.zoom;
2186 conf.presentation <- c.presentation;
2187 conf.interpagespace <- c.interpagespace;
2188 conf.maxwait <- c.maxwait;
2189 conf.hlinks <- c.hlinks;
2190 conf.fitmodel <- c.fitmodel;
2191 conf.beyecolumns <- (
2192 match conf.columns with
2193 | Cmulti ((c, _, _), _) -> Some c
2194 | Csingle _ -> None
2195 | Csplit _ -> failwith "leaving bird's eye split mode"
2197 conf.columns <- (
2198 match c.columns with
2199 | Cmulti (c, _) -> Cmulti (c, E.a)
2200 | Csingle _ -> Csingle E.a
2201 | Csplit (c, _) -> Csplit (c, E.a)
2203 if conf.verbose
2204 then
2205 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2206 (100.0*.conf.zoom)
2208 reshape state.winw state.winh;
2209 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2210 state.x <- leftx;
2213 let togglebirdseye () =
2214 match state.mode with
2215 | Birdseye vals -> leavebirdseye vals true
2216 | View -> enterbirdseye ()
2217 | Textentry _
2218 | LinkNav _ -> ()
2221 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2222 let pageno = max 0 (pageno - incr) in
2223 let rec loop = function
2224 | [] -> gotopage1 pageno 0
2225 | l :: _ when l.pageno = pageno ->
2226 if l.pagedispy >= 0 && l.pagey = 0
2227 then G.postRedisplay "upbirdseye"
2228 else gotopage1 pageno 0
2229 | _ :: rest -> loop rest
2231 loop state.layout;
2232 state.text <- E.s;
2233 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2236 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2237 let pageno = min (state.pagecount - 1) (pageno + incr) in
2238 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2239 let rec loop = function
2240 | [] ->
2241 let y, h = getpageyh pageno in
2242 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2243 gotoy (clamp dy)
2244 | l :: _ when l.pageno = pageno ->
2245 if l.pagevh != l.pageh
2246 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2247 else G.postRedisplay "downbirdseye"
2248 | _ :: rest -> loop rest
2250 loop state.layout;
2251 state.text <- E.s;
2254 let boundastep h step =
2255 if step < 0
2256 then bound step ~-h 0
2257 else bound step 0 h
2260 let optentry mode _ key =
2261 let btos b = if b then "on" else "off" in
2262 if key >= 32 && key < 127
2263 then
2264 let c = Char.chr key in
2265 match c with
2266 | 's' ->
2267 let ondone s =
2268 try conf.scrollstep <- int_of_string s with exc ->
2269 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2271 TEswitch ("scroll step: ", E.s, None, intentry, ondone, true)
2273 | 'A' ->
2274 let ondone s =
2276 conf.autoscrollstep <- boundastep state.winh (int_of_string s);
2277 if state.autoscroll <> None
2278 then state.autoscroll <- Some conf.autoscrollstep
2279 with exc ->
2280 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2282 TEswitch ("auto scroll step: ", E.s, None, intentry, ondone, true)
2284 | 'C' ->
2285 let ondone s =
2287 let n, a, b = multicolumns_of_string s in
2288 setcolumns mode n a b;
2289 with exc ->
2290 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2292 TEswitch ("columns: ", E.s, None, textentry, ondone, true)
2294 | 'Z' ->
2295 let ondone s =
2297 let zoom = float (int_of_string s) /. 100.0 in
2298 setzoom zoom
2299 with exc ->
2300 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2302 TEswitch ("zoom: ", E.s, None, intentry, ondone, true)
2304 | 't' ->
2305 let ondone s =
2307 conf.thumbw <- bound (int_of_string s) 2 4096;
2308 state.text <-
2309 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2310 begin match mode with
2311 | Birdseye beye ->
2312 leavebirdseye beye false;
2313 enterbirdseye ();
2314 | Textentry _
2315 | View
2316 | LinkNav _ -> ();
2318 with exc ->
2319 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2321 TEswitch ("thumbnail width: ", E.s, None, intentry, ondone, true)
2323 | 'R' ->
2324 let ondone s =
2325 match try
2326 Some (int_of_string s)
2327 with exc ->
2328 state.text <- Printf.sprintf "bad integer `%s': %s"
2329 s (exntos exc);
2330 None
2331 with
2332 | Some angle -> reqlayout angle conf.fitmodel
2333 | None -> ()
2335 TEswitch ("rotation: ", E.s, None, intentry, ondone, true)
2337 | 'i' ->
2338 conf.icase <- not conf.icase;
2339 TEdone ("case insensitive search " ^ (btos conf.icase))
2341 | 'p' ->
2342 conf.preload <- not conf.preload;
2343 gotoy state.y;
2344 TEdone ("preload " ^ (btos conf.preload))
2346 | 'v' ->
2347 conf.verbose <- not conf.verbose;
2348 TEdone ("verbose " ^ (btos conf.verbose))
2350 | 'd' ->
2351 conf.debug <- not conf.debug;
2352 TEdone ("debug " ^ (btos conf.debug))
2354 | 'h' ->
2355 conf.maxhfit <- not conf.maxhfit;
2356 state.maxy <- calcheight ();
2357 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2359 | 'c' ->
2360 conf.crophack <- not conf.crophack;
2361 TEdone ("crophack " ^ btos conf.crophack)
2363 | 'a' ->
2364 let s =
2365 match conf.maxwait with
2366 | None ->
2367 conf.maxwait <- Some infinity;
2368 "always wait for page to complete"
2369 | Some _ ->
2370 conf.maxwait <- None;
2371 "show placeholder if page is not ready"
2373 TEdone s
2375 | 'f' ->
2376 conf.underinfo <- not conf.underinfo;
2377 TEdone ("underinfo " ^ btos conf.underinfo)
2379 | 'P' ->
2380 conf.savebmarks <- not conf.savebmarks;
2381 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2383 | 'S' ->
2384 let ondone s =
2386 let pageno, py =
2387 match state.layout with
2388 | [] -> 0, 0
2389 | l :: _ ->
2390 l.pageno, l.pagey
2392 conf.interpagespace <- int_of_string s;
2393 docolumns conf.columns;
2394 state.maxy <- calcheight ();
2395 let y = getpagey pageno in
2396 gotoy (y + py)
2397 with exc ->
2398 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2400 TEswitch ("vertical margin: ", E.s, None, intentry, ondone, true)
2402 | 'l' ->
2403 let fm =
2404 match conf.fitmodel with
2405 | FitProportional -> FitWidth
2406 | FitWidth | FitPage -> FitProportional
2408 reqlayout conf.angle fm;
2409 TEdone ("proportional display " ^ btos (fm == FitProportional))
2411 | 'T' ->
2412 settrim (not conf.trimmargins) conf.trimfuzz;
2413 TEdone ("trim margins " ^ btos conf.trimmargins)
2415 | 'I' ->
2416 conf.invert <- not conf.invert;
2417 TEdone ("invert colors " ^ btos conf.invert)
2419 | 'x' ->
2420 let ondone s =
2421 cbput state.hists.sel s;
2422 conf.selcmd <- s;
2424 TEswitch ("selection command: ", E.s, Some (onhist state.hists.sel),
2425 textentry, ondone, true)
2427 | 'M' ->
2428 if conf.pax == None
2429 then conf.pax <- Some (ref (0.0, 0, 0))
2430 else conf.pax <- None;
2431 TEdone ("PAX " ^ btos (conf.pax != None))
2433 | _ ->
2434 state.text <- Printf.sprintf "bad option %d `%c'" key c;
2435 TEstop
2436 else
2437 TEcont state.text
2440 class type lvsource = object
2441 method getitemcount : int
2442 method getitem : int -> (string * int)
2443 method hasaction : int -> bool
2444 method exit :
2445 uioh:uioh ->
2446 cancel:bool ->
2447 active:int ->
2448 first:int ->
2449 pan:int ->
2450 uioh option
2451 method getactive : int
2452 method getfirst : int
2453 method getpan : int
2454 method getminfo : (int * int) array
2455 end;;
2457 class virtual lvsourcebase = object
2458 val mutable m_active = 0
2459 val mutable m_first = 0
2460 val mutable m_pan = 0
2461 method getactive = m_active
2462 method getfirst = m_first
2463 method getpan = m_pan
2464 method getminfo : (int * int) array = E.a
2465 end;;
2467 let withoutlastutf8 s =
2468 let len = String.length s in
2469 if len = 0
2470 then s
2471 else
2472 let rec find pos =
2473 if pos = 0
2474 then pos
2475 else
2476 let b = Char.code s.[pos] in
2477 if b land 0b11000000 = 0b11000000
2478 then pos
2479 else find (pos-1)
2481 let first =
2482 if Char.code s.[len-1] land 0x80 = 0
2483 then len-1
2484 else find (len-1)
2486 String.sub s 0 first;
2489 let textentrykeyboard
2490 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
2491 let key =
2492 if key >= 0xffb0 && key <= 0xffb9
2493 then key - 0xffb0 + 48 else key
2495 let enttext te =
2496 state.mode <- Textentry (te, onleave);
2497 state.text <- E.s;
2498 enttext ();
2499 G.postRedisplay "textentrykeyboard enttext";
2501 let histaction cmd =
2502 match opthist with
2503 | None -> ()
2504 | Some (action, _) ->
2505 state.mode <- Textentry (
2506 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
2508 G.postRedisplay "textentry histaction"
2510 match key with
2511 | @backspace ->
2512 if emptystr text && cancelonempty
2513 then (
2514 onleave Cancel;
2515 G.postRedisplay "textentrykeyboard after cancel";
2517 else
2518 let s = withoutlastutf8 text in
2519 enttext (c, s, opthist, onkey, ondone, cancelonempty)
2521 | @enter | @kpenter ->
2522 ondone text;
2523 onleave Confirm;
2524 G.postRedisplay "textentrykeyboard after confirm"
2526 | @up | @kpup -> histaction HCprev
2527 | @down | @kpdown -> histaction HCnext
2528 | @home | @kphome -> histaction HCfirst
2529 | @jend | @kpend -> histaction HClast
2531 | @escape ->
2532 if emptystr text
2533 then (
2534 begin match opthist with
2535 | None -> ()
2536 | Some (_, onhistcancel) -> onhistcancel ()
2537 end;
2538 onleave Cancel;
2539 state.text <- E.s;
2540 G.postRedisplay "textentrykeyboard after cancel2"
2542 else (
2543 enttext (c, E.s, opthist, onkey, ondone, cancelonempty)
2546 | @delete | @kpdelete -> ()
2548 | _ when key != 0
2549 && key land 0xff00 != 0xff00 (* keyboard *)
2550 && key land 0xfe00 != 0xfe00 (* xkb *)
2551 && key land 0xfd00 != 0xfd00 (* 3270 *)
2553 begin match onkey text key with
2554 | TEdone text ->
2555 ondone text;
2556 onleave Confirm;
2557 G.postRedisplay "textentrykeyboard after confirm2";
2559 | TEcont text ->
2560 enttext (c, text, opthist, onkey, ondone, cancelonempty);
2562 | TEstop ->
2563 onleave Cancel;
2564 G.postRedisplay "textentrykeyboard after cancel3"
2566 | TEswitch te ->
2567 state.mode <- Textentry (te, onleave);
2568 G.postRedisplay "textentrykeyboard switch";
2569 end;
2571 | _ ->
2572 vlog "unhandled key %s" (Wsi.keyname key)
2575 let firstof first active =
2576 if first > active || abs (first - active) > fstate.maxrows - 1
2577 then max 0 (active - (fstate.maxrows/2))
2578 else first
2581 let calcfirst first active =
2582 if active > first
2583 then
2584 let rows = active - first in
2585 if rows > fstate.maxrows then active - fstate.maxrows else first
2586 else active
2589 let scrollph y maxy =
2590 let sh = float (maxy + state.winh) /. float state.winh in
2591 let sh = float state.winh /. sh in
2592 let sh = max sh (float conf.scrollh) in
2594 let percent = float y /. float maxy in
2595 let position = (float state.winh -. sh) *. percent in
2597 let position =
2598 if position +. sh > float state.winh
2599 then float state.winh -. sh
2600 else position
2602 position, sh;
2605 let coe s = (s :> uioh);;
2607 class listview ~zebra ~helpmode ~(source:lvsource) ~trusted ~modehash =
2608 object (self)
2609 val m_pan = source#getpan
2610 val m_first = source#getfirst
2611 val m_active = source#getactive
2612 val m_qsearch = E.s
2613 val m_prev_uioh = state.uioh
2615 method private elemunder y =
2616 if y < 0
2617 then None
2618 else
2619 let n = y / (fstate.fontsize+1) in
2620 if m_first + n < source#getitemcount
2621 then (
2622 if source#hasaction (m_first + n)
2623 then Some (m_first + n)
2624 else None
2626 else None
2628 method display =
2629 Gl.enable `blend;
2630 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
2631 GlDraw.color (0., 0., 0.) ~alpha:0.85;
2632 filledrect 0. 0. (float state.winw) (float state.winh);
2633 GlDraw.color (1., 1., 1.);
2634 Gl.enable `texture_2d;
2635 let fs = fstate.fontsize in
2636 let nfs = fs + 1 in
2637 let hw = (wadjsb (xadjsb state.winw))/3 in
2638 let ww = fstate.wwidth in
2639 let tabw = 17.0*.ww in
2640 let itemcount = source#getitemcount in
2641 let minfo = source#getminfo in
2642 let x0, x1 =
2643 if conf.leftscroll
2644 then float (xadjsb 0), float (state.winw - 1)
2645 else 0.0, float (state.winw - conf.scrollbw - 1)
2647 let rec loop row =
2648 if (row - m_first) > fstate.maxrows
2649 then ()
2650 else (
2651 if row >= 0 && row < itemcount
2652 then (
2653 let (s, level) = source#getitem row in
2654 let y = (row - m_first) * nfs in
2655 let x =
2656 (if conf.leftscroll then float (xadjsb 0) else 5.0)
2657 +. (float (level + m_pan)) *. ww in
2658 if helpmode
2659 then GlDraw.color
2660 (let c = if row land 1 = 0 then 1.0 else 0.92 in (c,c,c));
2662 if row = m_active
2663 then (
2664 Gl.disable `texture_2d;
2665 let alpha = if source#hasaction row then 0.9 else 0.3 in
2666 GlDraw.color (1., 1., 1.) ~alpha;
2667 linerect (x0 +. 1.) (float (y + 1)) (x1) (float (y + fs + 3));
2668 Gl.enable `texture_2d;
2670 let c =
2671 if zebra && row land 1 = 1
2672 then 0.8
2673 else 1.0
2675 GlDraw.color (c,c,c);
2676 let drawtabularstring s =
2677 let drawstr x s =
2678 let x' = truncate (x0 +. x) in
2679 let pos = nindex s '\000' in
2680 if pos = -1
2681 then drawstring1 fs x' (y+nfs) s
2682 else
2683 let s1 = String.sub s 0 pos
2684 and s2 = String.sub s (pos+1) (String.length s - pos - 1) in
2685 let rec e s =
2686 if emptystr s
2687 then s
2688 else
2689 let s' = withoutlastutf8 s in
2690 let s = s' ^ "@Uellipsis" in
2691 let w = measurestr fs s in
2692 if float x' +. w +. ww < float (hw + x')
2693 then s
2694 else e s'
2696 let s1 =
2697 if float x' +. ww +. measurestr fs s1 > float (hw + x')
2698 then e s1
2699 else s1
2701 ignore (drawstring1 fs x' (y+nfs) s1);
2702 drawstring1 fs (hw + x') (y+nfs) s2
2704 if trusted
2705 then
2706 let x = if helpmode && row > 0 then x +. ww else x in
2707 let tabpos = nindex s '\t' in
2708 if tabpos > 0
2709 then
2710 let len = String.length s - tabpos - 1 in
2711 let s1 = String.sub s 0 tabpos
2712 and s2 = String.sub s (tabpos + 1) len in
2713 let nx = drawstr x s1 in
2714 let sw = nx -. x in
2715 let x = x +. (max tabw sw) in
2716 drawstr x s2
2717 else
2718 let len = String.length s - 2 in
2719 if len > 0 && s.[0] = '\xc2' && s.[1] = '\xb7'
2720 then
2721 let s = String.sub s 2 len in
2722 let x = if not helpmode then x +. ww else x in
2723 GlDraw.color (1.2, 1.2, 1.2);
2724 let vinc = drawstring1 (fs+fs/4)
2725 (truncate (x -. ww)) (y+nfs) s in
2726 GlDraw.color (1., 1., 1.);
2727 vinc +. (float fs *. 0.8)
2728 else
2729 drawstr x s
2730 else
2731 drawstr x s
2733 ignore (drawtabularstring s);
2734 loop (row+1)
2738 loop m_first;
2739 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
2740 let rec loop row =
2741 if (row - m_first) > fstate.maxrows
2742 then ()
2743 else (
2744 if row >= 0 && row < itemcount
2745 then (
2746 let (s, level) = source#getitem row in
2747 let pos0 = nindex s '\000' in
2748 let y = (row - m_first) * nfs in
2749 let x = float (level + m_pan) *. ww in
2750 let (first, last) = minfo.(row) in
2751 let prefix =
2752 if pos0 > 0 && first > pos0
2753 then String.sub s (pos0+1) (first-pos0-1)
2754 else String.sub s 0 first
2756 let suffix = String.sub s first (last - first) in
2757 let w1 = measurestr fstate.fontsize prefix in
2758 let w2 = measurestr fstate.fontsize suffix in
2759 let x = x +. if conf.leftscroll then float (xadjsb 5) else 5.0 in
2760 let x = if pos0 > 0 && first > pos0 then x +. float hw else x in
2761 let x0 = x +. w1
2762 and y0 = float (y+2) in
2763 let x1 = x0 +. w2
2764 and y1 = float (y+fs+3) in
2765 filledrect x0 y0 x1 y1;
2766 loop (row+1)
2770 Gl.disable `texture_2d;
2771 if Array.length minfo > 0 then loop m_first;
2772 Gl.disable `blend;
2774 method updownlevel incr =
2775 let len = source#getitemcount in
2776 let curlevel =
2777 if m_active >= 0 && m_active < len
2778 then snd (source#getitem m_active)
2779 else -1
2781 let rec flow i =
2782 if i = len then i-1 else if i = -1 then 0 else
2783 let _, l = source#getitem i in
2784 if l != curlevel then i else flow (i+incr)
2786 let active = flow m_active in
2787 let first = calcfirst m_first active in
2788 G.postRedisplay "outline updownlevel";
2789 {< m_active = active; m_first = first >}
2791 method private key1 key mask =
2792 let set1 active first qsearch =
2793 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
2795 let search active pattern incr =
2796 let active = if active = -1 then m_first else active in
2797 let dosearch re =
2798 let rec loop n =
2799 if n >= 0 && n < source#getitemcount
2800 then (
2801 let s, _ = source#getitem n in
2803 (try ignore (Str.search_forward re s 0); true
2804 with Not_found -> false)
2805 then Some n
2806 else loop (n + incr)
2808 else None
2810 loop active
2813 let re = Str.regexp_case_fold pattern in
2814 dosearch re
2815 with Failure s ->
2816 state.text <- s;
2817 None
2819 let itemcount = source#getitemcount in
2820 let find start incr =
2821 let rec find i =
2822 if i = -1 || i = itemcount
2823 then -1
2824 else (
2825 if source#hasaction i
2826 then i
2827 else find (i + incr)
2830 find start
2832 let set active first =
2833 let first = bound first 0 (itemcount - fstate.maxrows) in
2834 state.text <- E.s;
2835 coe {< m_active = active; m_first = first; m_qsearch = E.s >}
2837 let navigate incr =
2838 let isvisible first n = n >= first && n - first <= fstate.maxrows in
2839 let active, first =
2840 let incr1 = if incr > 0 then 1 else -1 in
2841 if isvisible m_first m_active
2842 then
2843 let next =
2844 let next = m_active + incr in
2845 let next =
2846 if next < 0 || next >= itemcount
2847 then -1
2848 else find next incr1
2850 if abs (m_active - next) > fstate.maxrows
2851 then -1
2852 else next
2854 if next = -1
2855 then
2856 let first = m_first + incr in
2857 let first = bound first 0 (itemcount - fstate.maxrows) in
2858 let next =
2859 let next = m_active + incr in
2860 let next = bound next 0 (itemcount - 1) in
2861 find next ~-incr1
2863 let active =
2864 if next = -1
2865 then m_active
2866 else (
2867 if isvisible first next
2868 then next
2869 else m_active
2872 active, first
2873 else
2874 let first = min next m_first in
2875 let first =
2876 if abs (next - first) > fstate.maxrows
2877 then first + incr
2878 else first
2880 next, first
2881 else
2882 let first = m_first + incr in
2883 let first = bound first 0 (itemcount - 1) in
2884 let active =
2885 let next = m_active + incr in
2886 let next = bound next 0 (itemcount - 1) in
2887 let next = find next incr1 in
2888 let active =
2889 if next = -1 || abs (m_active - first) > fstate.maxrows
2890 then (
2891 let active = if m_active = -1 then next else m_active in
2892 active
2894 else next
2896 if isvisible first active
2897 then active
2898 else -1
2900 active, first
2902 G.postRedisplay "listview navigate";
2903 set active first;
2905 match key with
2906 | (@r|@s) when Wsi.withctrl mask ->
2907 let incr = if key = @r then -1 else 1 in
2908 let active, first =
2909 match search (m_active + incr) m_qsearch incr with
2910 | None ->
2911 state.text <- m_qsearch ^ " [not found]";
2912 m_active, m_first
2913 | Some active ->
2914 state.text <- m_qsearch;
2915 active, firstof m_first active
2917 G.postRedisplay "listview ctrl-r/s";
2918 set1 active first m_qsearch;
2920 | @insert when Wsi.withctrl mask ->
2921 if m_active >= 0 && m_active < source#getitemcount
2922 then (
2923 let s, _ = source#getitem m_active in
2924 selstring s;
2926 coe self
2928 | @backspace ->
2929 if emptystr m_qsearch
2930 then coe self
2931 else (
2932 let qsearch = withoutlastutf8 m_qsearch in
2933 if emptystr qsearch
2934 then (
2935 state.text <- E.s;
2936 G.postRedisplay "listview empty qsearch";
2937 set1 m_active m_first E.s;
2939 else
2940 let active, first =
2941 match search m_active qsearch ~-1 with
2942 | None ->
2943 state.text <- qsearch ^ " [not found]";
2944 m_active, m_first
2945 | Some active ->
2946 state.text <- qsearch;
2947 active, firstof m_first active
2949 G.postRedisplay "listview backspace qsearch";
2950 set1 active first qsearch
2953 | key when (key != 0 && key land 0xff00 != 0xff00) ->
2954 let pattern = m_qsearch ^ toutf8 key in
2955 let active, first =
2956 match search m_active pattern 1 with
2957 | None ->
2958 state.text <- pattern ^ " [not found]";
2959 m_active, m_first
2960 | Some active ->
2961 state.text <- pattern;
2962 active, firstof m_first active
2964 G.postRedisplay "listview qsearch add";
2965 set1 active first pattern;
2967 | @escape ->
2968 state.text <- E.s;
2969 if emptystr m_qsearch
2970 then (
2971 G.postRedisplay "list view escape";
2972 begin
2973 match
2974 source#exit ~uioh:(coe self)
2975 ~cancel:true ~active:m_active ~first:m_first ~pan:m_pan
2976 with
2977 | None -> m_prev_uioh
2978 | Some uioh -> uioh
2981 else (
2982 G.postRedisplay "list view kill qsearch";
2983 coe {< m_qsearch = E.s >}
2986 | @enter | @kpenter ->
2987 state.text <- E.s;
2988 let self = {< m_qsearch = E.s >} in
2989 let opt =
2990 G.postRedisplay "listview enter";
2991 if m_active >= 0 && m_active < source#getitemcount
2992 then (
2993 source#exit ~uioh:(coe self) ~cancel:false
2994 ~active:m_active ~first:m_first ~pan:m_pan;
2996 else (
2997 source#exit ~uioh:(coe self) ~cancel:true
2998 ~active:m_active ~first:m_first ~pan:m_pan;
3001 begin match opt with
3002 | None -> m_prev_uioh
3003 | Some uioh -> uioh
3006 | @delete | @kpdelete ->
3007 coe self
3009 | @up | @kpup -> navigate ~-1
3010 | @down | @kpdown -> navigate 1
3011 | @prior | @kpprior -> navigate ~-(fstate.maxrows)
3012 | @next | @kpnext -> navigate fstate.maxrows
3014 | @right | @kpright ->
3015 state.text <- E.s;
3016 G.postRedisplay "listview right";
3017 coe {< m_pan = m_pan - 1 >}
3019 | @left | @kpleft ->
3020 state.text <- E.s;
3021 G.postRedisplay "listview left";
3022 coe {< m_pan = m_pan + 1 >}
3024 | @home | @kphome ->
3025 let active = find 0 1 in
3026 G.postRedisplay "listview home";
3027 set active 0;
3029 | @jend | @kpend ->
3030 let first = max 0 (itemcount - fstate.maxrows) in
3031 let active = find (itemcount - 1) ~-1 in
3032 G.postRedisplay "listview end";
3033 set active first;
3035 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3036 coe self
3038 | _ ->
3039 dolog "listview unknown key %#x" key; coe self
3041 method key key mask =
3042 match state.mode with
3043 | Textentry te -> textentrykeyboard key mask te; coe self
3044 | Birdseye _
3045 | View
3046 | LinkNav _ -> self#key1 key mask
3048 method button button down x y _ =
3049 let opt =
3050 match button with
3051 | 1 when x > state.winw - conf.scrollbw ->
3052 G.postRedisplay "listview scroll";
3053 if down
3054 then
3055 let _, position, sh = self#scrollph in
3056 if y > truncate position && y < truncate (position +. sh)
3057 then (
3058 state.mstate <- Mscrolly;
3059 Some (coe self)
3061 else
3062 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3063 let first = truncate (s *. float source#getitemcount) in
3064 let first = min source#getitemcount first in
3065 Some (coe {< m_first = first; m_active = first >})
3066 else (
3067 state.mstate <- Mnone;
3068 Some (coe self);
3070 | 1 when not down ->
3071 begin match self#elemunder y with
3072 | Some n ->
3073 G.postRedisplay "listview click";
3074 source#exit ~uioh:(coe {< m_active = n >})
3075 ~cancel:false ~active:n ~first:m_first ~pan:m_pan
3076 | _ ->
3077 Some (coe self)
3079 | n when (n == 4 || n == 5) && not down ->
3080 let len = source#getitemcount in
3081 let first =
3082 if n = 5 && m_first + fstate.maxrows >= len
3083 then
3084 m_first
3085 else
3086 let first = m_first + (if n == 4 then -1 else 1) in
3087 bound first 0 (len - 1)
3089 G.postRedisplay "listview wheel";
3090 Some (coe {< m_first = first >})
3091 | n when (n = 6 || n = 7) && not down ->
3092 let inc = if n = 7 then -1 else 1 in
3093 G.postRedisplay "listview hwheel";
3094 Some (coe {< m_pan = m_pan + inc >})
3095 | _ ->
3096 Some (coe self)
3098 match opt with
3099 | None -> m_prev_uioh
3100 | Some uioh -> uioh
3102 method multiclick _ x y = self#button 1 true x y
3104 method motion _ y =
3105 match state.mstate with
3106 | Mscrolly ->
3107 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3108 let first = truncate (s *. float source#getitemcount) in
3109 let first = min source#getitemcount first in
3110 G.postRedisplay "listview motion";
3111 coe {< m_first = first; m_active = first >}
3112 | Msel _
3113 | Mpan _
3114 | Mscrollx
3115 | Mzoom _
3116 | Mzoomrect _
3117 | Mnone -> coe self
3119 method pmotion x y =
3120 if x < state.winw - conf.scrollbw
3121 then
3122 let n =
3123 match self#elemunder y with
3124 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3125 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3127 let o =
3128 if n != m_active
3129 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3130 else self
3132 coe o
3133 else (
3134 Wsi.setcursor Wsi.CURSOR_INHERIT;
3135 coe self
3138 method infochanged _ = ()
3140 method scrollpw = (0, 0.0, 0.0)
3141 method scrollph =
3142 let nfs = fstate.fontsize + 1 in
3143 let y = m_first * nfs in
3144 let itemcount = source#getitemcount in
3145 let maxi = max 0 (itemcount - fstate.maxrows) in
3146 let maxy = maxi * nfs in
3147 let p, h = scrollph y maxy in
3148 conf.scrollbw, p, h
3150 method modehash = modehash
3151 method eformsgs = false
3152 end;;
3154 class outlinelistview ~zebra ~source =
3155 let settext autonarrow s =
3156 if autonarrow
3157 then
3158 let ss = source#statestr in
3159 state.text <-
3160 if emptystr ss
3161 then "[" ^ s ^ "]"
3162 else "{" ^ ss ^ "} [" ^ s ^ "]"
3163 else state.text <- s
3165 object (self)
3166 inherit listview
3167 ~zebra
3168 ~helpmode:false
3169 ~source:(source :> lvsource)
3170 ~trusted:false
3171 ~modehash:(findkeyhash conf "outline")
3172 as super
3174 val m_autonarrow = false
3176 method! key key mask =
3177 let maxrows =
3178 if emptystr state.text
3179 then fstate.maxrows
3180 else fstate.maxrows - 2
3182 let calcfirst first active =
3183 if active > first
3184 then
3185 let rows = active - first in
3186 if rows > maxrows then active - maxrows else first
3187 else active
3189 let navigate incr =
3190 let active = m_active + incr in
3191 let active = bound active 0 (source#getitemcount - 1) in
3192 let first = calcfirst m_first active in
3193 G.postRedisplay "outline navigate";
3194 coe {< m_active = active; m_first = first >}
3196 let navscroll first =
3197 let active =
3198 let dist = m_active - first in
3199 if dist < 0
3200 then first
3201 else (
3202 if dist < maxrows
3203 then m_active
3204 else first + maxrows
3207 G.postRedisplay "outline navscroll";
3208 coe {< m_first = first; m_active = active >}
3210 let ctrl = Wsi.withctrl mask in
3211 match key with
3212 | @a when ctrl ->
3213 let text =
3214 if m_autonarrow
3215 then (source#denarrow; E.s)
3216 else (
3217 let pattern = source#renarrow in
3218 if nonemptystr m_qsearch
3219 then (source#narrow m_qsearch; m_qsearch)
3220 else pattern
3223 settext (not m_autonarrow) text;
3224 G.postRedisplay "toggle auto narrowing";
3225 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
3227 | @slash when emptystr m_qsearch && not m_autonarrow ->
3228 settext true E.s;
3229 G.postRedisplay "toggle auto narrowing";
3230 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
3232 | @n when ctrl ->
3233 source#narrow m_qsearch;
3234 if not m_autonarrow
3235 then source#add_narrow_pattern m_qsearch;
3236 G.postRedisplay "outline ctrl-n";
3237 coe {< m_first = 0; m_active = 0 >}
3239 | @S when ctrl ->
3240 let active = source#calcactive (getanchor ()) in
3241 let first = firstof m_first active in
3242 G.postRedisplay "outline ctrl-s";
3243 coe {< m_first = first; m_active = active >}
3245 | @u when ctrl ->
3246 G.postRedisplay "outline ctrl-u";
3247 if m_autonarrow && nonemptystr m_qsearch
3248 then (
3249 ignore (source#renarrow);
3250 settext m_autonarrow E.s;
3251 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3253 else (
3254 source#del_narrow_pattern;
3255 let pattern = source#renarrow in
3256 let text =
3257 if emptystr pattern then E.s else "Narrowed to " ^ pattern
3259 settext m_autonarrow text;
3260 coe {< m_first = 0; m_active = 0; m_qsearch = E.s >}
3263 | @l when ctrl ->
3264 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3265 G.postRedisplay "outline ctrl-l";
3266 coe {< m_first = first >}
3268 | @tab when m_autonarrow ->
3269 if nonemptystr m_qsearch
3270 then (
3271 G.postRedisplay "outline list view tab";
3272 source#add_narrow_pattern m_qsearch;
3273 settext true E.s;
3274 coe {< m_qsearch = E.s >}
3276 else coe self
3278 | @escape when m_autonarrow ->
3279 if nonemptystr m_qsearch
3280 then source#add_narrow_pattern m_qsearch;
3281 super#key key mask
3283 | @enter | @kpenter when m_autonarrow ->
3284 if nonemptystr m_qsearch
3285 then source#add_narrow_pattern m_qsearch;
3286 super#key key mask
3288 | key when m_autonarrow && (key != 0 && key land 0xff00 != 0xff00) ->
3289 let pattern = m_qsearch ^ toutf8 key in
3290 G.postRedisplay "outlinelistview autonarrow add";
3291 source#narrow pattern;
3292 settext true pattern;
3293 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3295 | key when m_autonarrow && key = @backspace ->
3296 if emptystr m_qsearch
3297 then coe self
3298 else
3299 let pattern = withoutlastutf8 m_qsearch in
3300 G.postRedisplay "outlinelistview autonarrow backspace";
3301 ignore (source#renarrow);
3302 source#narrow pattern;
3303 settext true pattern;
3304 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
3306 | @delete | @kpdelete ->
3307 source#remove m_active;
3308 G.postRedisplay "outline delete";
3309 let active = max 0 (m_active-1) in
3310 coe {< m_first = firstof m_first active;
3311 m_active = active >}
3313 | @up | @kpup when ctrl ->
3314 navscroll (max 0 (m_first - 1))
3316 | @down | @kpdown when ctrl ->
3317 navscroll (min (source#getitemcount - 1) (m_first + 1))
3319 | @up | @kpup -> navigate ~-1
3320 | @down | @kpdown -> navigate 1
3321 | @prior | @kpprior -> navigate ~-(fstate.maxrows)
3322 | @next | @kpnext -> navigate fstate.maxrows
3324 | @right | @kpright ->
3325 let o =
3326 if ctrl
3327 then (
3328 G.postRedisplay "outline ctrl right";
3329 {< m_pan = m_pan + 1 >}
3331 else self#updownlevel 1
3333 coe o
3335 | @left | @kpleft ->
3336 let o =
3337 if ctrl
3338 then (
3339 G.postRedisplay "outline ctrl left";
3340 {< m_pan = m_pan - 1 >}
3342 else self#updownlevel ~-1
3344 coe o
3346 | @home | @kphome ->
3347 G.postRedisplay "outline home";
3348 coe {< m_first = 0; m_active = 0 >}
3350 | @jend | @kpend ->
3351 let active = source#getitemcount - 1 in
3352 let first = max 0 (active - fstate.maxrows) in
3353 G.postRedisplay "outline end";
3354 coe {< m_active = active; m_first = first >}
3356 | _ -> super#key key mask
3359 let gotounder under =
3360 let getpath filename =
3361 let path =
3362 if nonemptystr filename
3363 then
3364 if Filename.is_relative filename
3365 then
3366 let dir = Filename.dirname state.path in
3367 let dir =
3368 if Filename.is_implicit dir
3369 then Filename.concat (Sys.getcwd ()) dir
3370 else dir
3372 Filename.concat dir filename
3373 else filename
3374 else E.s
3376 if Sys.file_exists path
3377 then path
3378 else E.s
3380 match under with
3381 | Ulinkgoto (pageno, top) ->
3382 if pageno >= 0
3383 then (
3384 addnav ();
3385 gotopage1 pageno top;
3388 | Ulinkuri s ->
3389 gotouri s
3391 | Uremote (filename, pageno) ->
3392 let path = getpath filename in
3393 if nonemptystr path
3394 then (
3395 if conf.riani
3396 then
3397 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
3398 try popen command []
3399 with exn ->
3400 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
3401 flush stderr;
3402 else
3403 let anchor = getanchor () in
3404 let ranchor = state.path, state.password, anchor, state.origin in
3405 state.origin <- E.s;
3406 state.anchor <- (pageno, 0.0, 0.0);
3407 state.ranchors <- ranchor :: state.ranchors;
3408 opendoc path E.s;
3410 else showtext '!' ("Could not find " ^ filename)
3412 | Uremotedest (filename, destname) ->
3413 let path = getpath filename in
3414 if nonemptystr path
3415 then (
3416 if conf.riani
3417 then
3418 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
3419 try popen command []
3420 with exn ->
3421 Printf.eprintf
3422 "failed to execute `%s': %s\n" command (exntos exn);
3423 flush stderr;
3424 else
3425 let anchor = getanchor () in
3426 let ranchor = state.path, state.password, anchor, state.origin in
3427 state.origin <- E.s;
3428 state.nameddest <- destname;
3429 state.ranchors <- ranchor :: state.ranchors;
3430 opendoc path E.s;
3432 else showtext '!' ("Could not find " ^ filename)
3434 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
3437 let gotohist (path, (c, bookmarks, x, anchor)) =
3438 Config.save leavebirdseye;
3439 state.anchor <- anchor;
3440 state.x <- x;
3441 state.bookmarks <- bookmarks;
3442 state.origin <- E.s;
3443 setconf conf c;
3444 opendoc path E.s;
3447 let gotooutline (_, _, kind) =
3448 match kind with
3449 | Onone -> ()
3450 | Oanchor anchor ->
3451 let (pageno, y, _) = anchor in
3452 let y = getanchory
3453 (if conf.presentation then (pageno, y, 1.0) else anchor)
3455 addnav ();
3456 gotoghyll y
3457 | Ouri uri -> gotounder (Ulinkuri uri)
3458 | Olaunch cmd -> gotounder (Ulaunch cmd)
3459 | Oremote remote -> gotounder (Uremote remote)
3460 | Ohistory hist -> gotohist hist
3461 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
3462 | Oaction f -> f ()
3465 let genhistoutlines =
3466 let order ty (p1, c1, _, _, _) (p2, c2, _, _, _) =
3467 match ty with
3468 | `lastvisit -> compare c1.lastvisit c2.lastvisit
3469 | `path -> compare p2 p1
3470 | `file -> compare (Filename.basename p2) (Filename.basename p1)
3471 | `title ->
3472 let e1 = emptystr c1.title
3473 and e2 = emptystr c2.title in
3474 (**) if e1 && e2
3475 then compare (Filename.basename p2) (Filename.basename p1)
3476 else if e1 then -1
3477 else if e2 then 1
3478 else compare c1.title c2.title
3480 let showfullpath = ref false in
3481 fun orderty ->
3482 let setorty s t =
3483 let s = if orderty = t then "[@Uradical] " ^ s else "[ ] " ^ s in
3484 s, 0, Oaction (fun () -> Config.historder := t; reeenterhist := true)
3486 let list = ref [] in
3487 if Config.gethist list
3488 then
3489 let ol =
3490 List.fold_left
3491 (fun accu (path, c, b, x, a) ->
3492 let hist = (path, (c, b, x, a)) in
3493 let s = if !showfullpath then path else Filename.basename path in
3494 let base = mbtoutf8 s in
3495 (base ^ "\000" ^ c.title, 1, Ohistory hist) :: accu
3497 [ setorty "Sort by time of last visit" `lastvisit;
3498 setorty "Sort by file name" `file;
3499 setorty "Sort by path" `path;
3500 setorty "Sort by title" `title;
3501 (if !showfullpath then "@Uradical "
3502 else " ") ^ "Show full path", 0, Oaction (fun () ->
3503 showfullpath := not !showfullpath; reeenterhist := true)
3504 ] (List.sort (order orderty) !list)
3506 Array.of_list ol
3507 else E.a;
3510 let outlinesource sourcetype =
3511 (object (self)
3512 inherit lvsourcebase
3513 val mutable m_items = E.a
3514 val mutable m_minfo = E.a
3515 val mutable m_orig_items = E.a
3516 val mutable m_orig_minfo = E.a
3517 val mutable m_narrow_patterns = []
3518 val mutable m_hadremovals = false
3519 val mutable m_gen = -1
3521 method getitemcount =
3522 Array.length m_items + (if m_hadremovals then 1 else 0)
3524 method getitem n =
3525 if n == Array.length m_items && m_hadremovals
3526 then
3527 ("[Confirm removal]", 0)
3528 else
3529 let s, n, _ = m_items.(n) in
3530 (s, n)
3532 method exit ~uioh ~cancel ~active ~first ~pan =
3533 ignore (uioh, first);
3534 let confrimremoval = m_hadremovals && active = Array.length m_items in
3535 let items, minfo =
3536 if m_narrow_patterns = []
3537 then m_orig_items, m_orig_minfo
3538 else m_items, m_minfo
3540 if not cancel
3541 then (
3542 if not confrimremoval
3543 then (
3544 gotooutline m_items.(active);
3545 m_items <- items;
3546 m_minfo <- minfo;
3548 else (
3549 state.bookmarks <- Array.to_list m_items;
3550 m_orig_items <- m_items;
3551 m_orig_minfo <- m_minfo;
3554 else (
3555 m_items <- items;
3556 m_minfo <- minfo;
3558 m_pan <- pan;
3559 None
3561 method hasaction _ = true
3563 method greetmsg =
3564 if Array.length m_items != Array.length m_orig_items
3565 then
3566 let s =
3567 match m_narrow_patterns with
3568 | one :: [] -> one
3569 | many -> String.concat "@Uellipsis" (List.rev many)
3571 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
3572 else E.s
3574 method statestr =
3575 match m_narrow_patterns with
3576 | [] -> E.s
3577 | one :: [] -> one
3578 | head :: _ -> "@Uellipsis" ^ head
3580 method narrow pattern =
3581 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3582 match reopt with
3583 | None -> ()
3584 | Some re ->
3585 let rec loop accu minfo n =
3586 if n = -1
3587 then (
3588 m_items <- Array.of_list accu;
3589 m_minfo <- Array.of_list minfo;
3591 else
3592 let (s, _, t) as o = m_items.(n) in
3593 let accu, minfo =
3594 match t with
3595 | Oaction _ -> o :: accu, (0, 0) :: minfo
3596 | Onone | Oanchor _ | Ouri _ | Olaunch _
3597 | Oremote _ | Oremotedest _ | Ohistory _ ->
3598 let first =
3599 try Str.search_forward re s 0
3600 with Not_found -> -1
3602 if first >= 0
3603 then o :: accu, (first, Str.match_end ()) :: minfo
3604 else accu, minfo
3606 loop accu minfo (n-1)
3608 loop [] [] (Array.length m_items - 1)
3610 method! getminfo = m_minfo
3612 method denarrow =
3613 m_orig_items <- (
3614 match sourcetype with
3615 | `bookmarks -> Array.of_list state.bookmarks
3616 | `outlines -> state.outlines
3617 | `history -> genhistoutlines !Config.historder
3619 m_minfo <- m_orig_minfo;
3620 m_items <- m_orig_items
3622 method remove m =
3623 if sourcetype = `bookmarks
3624 then
3625 if m >= 0 && m < Array.length m_items
3626 then (
3627 m_hadremovals <- true;
3628 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3629 let n = if n >= m then n+1 else n in
3630 m_items.(n)
3634 method add_narrow_pattern pattern =
3635 m_narrow_patterns <- pattern :: m_narrow_patterns
3637 method del_narrow_pattern =
3638 match m_narrow_patterns with
3639 | _ :: rest -> m_narrow_patterns <- rest
3640 | [] -> ()
3642 method renarrow =
3643 self#denarrow;
3644 match m_narrow_patterns with
3645 | pattern :: [] -> self#narrow pattern; pattern
3646 | list ->
3647 List.fold_left (fun accu pattern ->
3648 self#narrow pattern;
3649 pattern ^ "@Uellipsis" ^ accu) E.s list
3651 method calcactive anchor =
3652 let rely = getanchory anchor in
3653 let rec loop n best bestd =
3654 if n = Array.length m_items
3655 then best
3656 else
3657 let _, _, kind = m_items.(n) in
3658 match kind with
3659 | Oanchor anchor ->
3660 let orely = getanchory anchor in
3661 let d = abs (orely - rely) in
3662 if d < bestd
3663 then loop (n+1) n d
3664 else loop (n+1) best bestd
3665 | Onone | Oremote _ | Olaunch _
3666 | Oremotedest _ | Ouri _ | Ohistory _ | Oaction _ ->
3667 loop (n+1) best bestd
3669 loop 0 ~-1 max_int
3671 method reset anchor items =
3672 m_hadremovals <- false;
3673 if state.gen != m_gen
3674 then (
3675 m_orig_items <- items;
3676 m_items <- items;
3677 m_narrow_patterns <- [];
3678 m_minfo <- E.a;
3679 m_orig_minfo <- E.a;
3680 m_gen <- state.gen;
3682 else (
3683 if items != m_orig_items
3684 then (
3685 m_orig_items <- items;
3686 if m_narrow_patterns == []
3687 then m_items <- items;
3690 let active = self#calcactive anchor in
3691 m_active <- active;
3692 m_first <- firstof m_first active
3693 end)
3696 let enterselector sourcetype =
3697 resetmstate ();
3698 let source = outlinesource sourcetype in
3699 fun errmsg ->
3700 let outlines =
3701 match sourcetype with
3702 | `bookmarks -> Array.of_list state.bookmarks
3703 | `outlines -> state.outlines
3704 | `history -> genhistoutlines !Config.historder
3706 if Array.length outlines = 0
3707 then (
3708 showtext ' ' errmsg;
3710 else (
3711 state.text <- source#greetmsg;
3712 Wsi.setcursor Wsi.CURSOR_INHERIT;
3713 let anchor = getanchor () in
3714 source#reset anchor outlines;
3715 state.uioh <-
3716 coe (new outlinelistview ~zebra:(sourcetype=`history) ~source);
3717 G.postRedisplay "enter selector";
3721 let enteroutlinemode =
3722 let f = enterselector `outlines in
3723 fun () -> f "Document has no outline";
3726 let enterbookmarkmode =
3727 let f = enterselector `bookmarks in
3728 fun () -> f "Document has no bookmarks (yet)";
3731 let enterhistmode () = enterselector `history "No history (yet)";;
3733 let makecheckers () =
3734 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3735 following to say:
3736 converted by Issac Trotts. July 25, 2002 *)
3737 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3738 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3739 let id = GlTex.gen_texture () in
3740 GlTex.bind_texture ~target:`texture_2d id;
3741 GlPix.store (`unpack_alignment 1);
3742 GlTex.image2d image;
3743 List.iter (GlTex.parameter ~target:`texture_2d)
3744 [ `mag_filter `nearest; `min_filter `nearest ];
3748 let setcheckers enabled =
3749 match state.checkerstexid with
3750 | None ->
3751 if enabled then state.checkerstexid <- Some (makecheckers ())
3753 | Some checkerstexid ->
3754 if not enabled
3755 then (
3756 GlTex.delete_texture checkerstexid;
3757 state.checkerstexid <- None;
3761 let describe_location () =
3762 let fn = page_of_y state.y in
3763 let ln = page_of_y (state.y + state.winh - hscrollh () - 1) in
3764 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
3765 let percent =
3766 if maxy <= 0
3767 then 100.
3768 else (100. *. (float state.y /. float maxy))
3770 if fn = ln
3771 then
3772 Printf.sprintf "page %d of %d [%.2f%%]"
3773 (fn+1) state.pagecount percent
3774 else
3775 Printf.sprintf
3776 "pages %d-%d of %d [%.2f%%]"
3777 (fn+1) (ln+1) state.pagecount percent
3780 let setpresentationmode v =
3781 let n = page_of_y state.y in
3782 state.anchor <- (n, 0.0, 1.0);
3783 conf.presentation <- v;
3784 if conf.fitmodel = FitPage
3785 then reqlayout conf.angle conf.fitmodel;
3786 represent ();
3789 let enterinfomode =
3790 let btos b = if b then "@Uradical" else E.s in
3791 let showextended = ref false in
3792 let leave mode = function
3793 | Confirm -> state.mode <- mode
3794 | Cancel -> state.mode <- mode in
3795 let src =
3796 (object
3797 val mutable m_first_time = true
3798 val mutable m_l = []
3799 val mutable m_a = E.a
3800 val mutable m_prev_uioh = nouioh
3801 val mutable m_prev_mode = View
3803 inherit lvsourcebase
3805 method reset prev_mode prev_uioh =
3806 m_a <- Array.of_list (List.rev m_l);
3807 m_l <- [];
3808 m_prev_mode <- prev_mode;
3809 m_prev_uioh <- prev_uioh;
3810 if m_first_time
3811 then (
3812 let rec loop n =
3813 if n >= Array.length m_a
3814 then ()
3815 else
3816 match m_a.(n) with
3817 | _, _, _, Action _ -> m_active <- n
3818 | _, _, _, Noaction -> loop (n+1)
3820 loop 0;
3821 m_first_time <- false;
3824 method int name get set =
3825 m_l <-
3826 (name, `int get, 1, Action (
3827 fun u ->
3828 let ondone s =
3829 try set (int_of_string s)
3830 with exn ->
3831 state.text <- Printf.sprintf "bad integer `%s': %s"
3832 s (exntos exn)
3834 state.text <- E.s;
3835 let te = name ^ ": ", E.s, None, intentry, ondone, true in
3836 state.mode <- Textentry (te, leave m_prev_mode);
3838 )) :: m_l
3840 method int_with_suffix name get set =
3841 m_l <-
3842 (name, `intws get, 1, Action (
3843 fun u ->
3844 let ondone s =
3845 try set (int_of_string_with_suffix s)
3846 with exn ->
3847 state.text <- Printf.sprintf "bad integer `%s': %s"
3848 s (exntos exn)
3850 state.text <- E.s;
3851 let te =
3852 name ^ ": ", E.s, None, intentry_with_suffix, ondone, true
3854 state.mode <- Textentry (te, leave m_prev_mode);
3856 )) :: m_l
3858 method bool ?(offset=1) ?(btos=btos) name get set =
3859 m_l <-
3860 (name, `bool (btos, get), offset, Action (
3861 fun u ->
3862 let v = get () in
3863 set (not v);
3865 )) :: m_l
3867 method color name get set =
3868 m_l <-
3869 (name, `color get, 1, Action (
3870 fun u ->
3871 let invalid = (nan, nan, nan) in
3872 let ondone s =
3873 let c =
3874 try color_of_string s
3875 with exn ->
3876 state.text <- Printf.sprintf "bad color `%s': %s"
3877 s (exntos exn);
3878 invalid
3880 if c <> invalid
3881 then set c;
3883 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3884 state.text <- color_to_string (get ());
3885 state.mode <- Textentry (te, leave m_prev_mode);
3887 )) :: m_l
3889 method string name get set =
3890 m_l <-
3891 (name, `string get, 1, Action (
3892 fun u ->
3893 let ondone s = set s in
3894 let te = name ^ ": ", E.s, None, textentry, ondone, true in
3895 state.mode <- Textentry (te, leave m_prev_mode);
3897 )) :: m_l
3899 method colorspace 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 <- CSTE.to_int conf.colorspace;
3909 m_first <- 0;
3911 method getitemcount =
3912 Array.length CSTE.names
3913 method getitem n =
3914 (CSTE.names.(n), 0)
3915 method exit ~uioh ~cancel ~active ~first ~pan =
3916 ignore (uioh, first, pan);
3917 if not cancel then set active;
3918 None
3919 method hasaction _ = true
3920 end)
3922 state.text <- E.s;
3923 let modehash = findkeyhash conf "info" in
3924 coe (new listview ~zebra:false ~helpmode:false
3925 ~source ~trusted:true ~modehash)
3926 )) :: m_l
3928 method paxmark name get set =
3929 m_l <-
3930 (name, `string get, 1, Action (
3931 fun _ ->
3932 let source =
3933 (object
3934 inherit lvsourcebase
3936 initializer
3937 m_active <- MTE.to_int conf.paxmark;
3938 m_first <- 0;
3940 method getitemcount = Array.length MTE.names
3941 method getitem n = (MTE.names.(n), 0)
3942 method exit ~uioh ~cancel ~active ~first ~pan =
3943 ignore (uioh, first, pan);
3944 if not cancel then set active;
3945 None
3946 method hasaction _ = true
3947 end)
3949 state.text <- E.s;
3950 let modehash = findkeyhash conf "info" in
3951 coe (new listview ~zebra:false ~helpmode:false
3952 ~source ~trusted:true ~modehash)
3953 )) :: m_l
3955 method fitmodel name get set =
3956 m_l <-
3957 (name, `string get, 1, Action (
3958 fun _ ->
3959 let source =
3960 (object
3961 inherit lvsourcebase
3963 initializer
3964 m_active <- FMTE.to_int conf.fitmodel;
3965 m_first <- 0;
3967 method getitemcount = Array.length FMTE.names
3968 method getitem n = (FMTE.names.(n), 0)
3969 method exit ~uioh ~cancel ~active ~first ~pan =
3970 ignore (uioh, first, pan);
3971 if not cancel then set active;
3972 None
3973 method hasaction _ = true
3974 end)
3976 state.text <- E.s;
3977 let modehash = findkeyhash conf "info" in
3978 coe (new listview ~zebra:false ~helpmode:false
3979 ~source ~trusted:true ~modehash)
3980 )) :: m_l
3982 method caption s offset =
3983 m_l <- (s, `empty, offset, Noaction) :: m_l
3985 method caption2 s f offset =
3986 m_l <- (s, `string f, offset, Noaction) :: m_l
3988 method getitemcount = Array.length m_a
3990 method getitem n =
3991 let tostr = function
3992 | `int f -> string_of_int (f ())
3993 | `intws f -> string_with_suffix_of_int (f ())
3994 | `string f -> f ()
3995 | `color f -> color_to_string (f ())
3996 | `bool (btos, f) -> btos (f ())
3997 | `empty -> E.s
3999 let name, t, offset, _ = m_a.(n) in
4000 ((let s = tostr t in
4001 if nonemptystr s
4002 then Printf.sprintf "%s\t%s" name s
4003 else name),
4004 offset)
4006 method exit ~uioh ~cancel ~active ~first ~pan =
4007 let uiohopt =
4008 if not cancel
4009 then (
4010 let uioh =
4011 match m_a.(active) with
4012 | _, _, _, Action f -> f uioh
4013 | _, _, _, Noaction -> uioh
4015 Some uioh
4017 else None
4019 m_active <- active;
4020 m_first <- first;
4021 m_pan <- pan;
4022 uiohopt
4024 method hasaction n =
4025 match m_a.(n) with
4026 | _, _, _, Action _ -> true
4027 | _, _, _, Noaction -> false
4028 end)
4030 let rec fillsrc prevmode prevuioh =
4031 let sep () = src#caption E.s 0 in
4032 let colorp name get set =
4033 src#string name
4034 (fun () -> color_to_string (get ()))
4035 (fun v ->
4037 let c = color_of_string v in
4038 set c
4039 with exn ->
4040 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4043 let oldmode = state.mode in
4044 let birdseye = isbirdseye state.mode in
4046 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4048 src#bool "presentation mode"
4049 (fun () -> conf.presentation)
4050 (fun v -> setpresentationmode v);
4052 src#bool "ignore case in searches"
4053 (fun () -> conf.icase)
4054 (fun v -> conf.icase <- v);
4056 src#bool "preload"
4057 (fun () -> conf.preload)
4058 (fun v -> conf.preload <- v);
4060 src#bool "highlight links"
4061 (fun () -> conf.hlinks)
4062 (fun v -> conf.hlinks <- v);
4064 src#bool "under info"
4065 (fun () -> conf.underinfo)
4066 (fun v -> conf.underinfo <- v);
4068 src#bool "persistent bookmarks"
4069 (fun () -> conf.savebmarks)
4070 (fun v -> conf.savebmarks <- v);
4072 src#fitmodel "fit model"
4073 (fun () -> FMTE.to_string conf.fitmodel)
4074 (fun v -> reqlayout conf.angle (FMTE.of_int v));
4076 src#bool "trim margins"
4077 (fun () -> conf.trimmargins)
4078 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4080 src#bool "persistent location"
4081 (fun () -> conf.jumpback)
4082 (fun v -> conf.jumpback <- v);
4084 sep ();
4085 src#int "inter-page space"
4086 (fun () -> conf.interpagespace)
4087 (fun n ->
4088 conf.interpagespace <- n;
4089 docolumns conf.columns;
4090 let pageno, py =
4091 match state.layout with
4092 | [] -> 0, 0
4093 | l :: _ ->
4094 l.pageno, l.pagey
4096 state.maxy <- calcheight ();
4097 let y = getpagey pageno in
4098 gotoy (y + py)
4101 src#int "page bias"
4102 (fun () -> conf.pagebias)
4103 (fun v -> conf.pagebias <- v);
4105 src#int "scroll step"
4106 (fun () -> conf.scrollstep)
4107 (fun n -> conf.scrollstep <- n);
4109 src#int "horizontal scroll step"
4110 (fun () -> conf.hscrollstep)
4111 (fun v -> conf.hscrollstep <- v);
4113 src#int "auto scroll step"
4114 (fun () ->
4115 match state.autoscroll with
4116 | Some step -> step
4117 | _ -> conf.autoscrollstep)
4118 (fun n ->
4119 let n = boundastep state.winh n in
4120 if state.autoscroll <> None
4121 then state.autoscroll <- Some n;
4122 conf.autoscrollstep <- n);
4124 src#int "zoom"
4125 (fun () -> truncate (conf.zoom *. 100.))
4126 (fun v -> setzoom ((float v) /. 100.));
4128 src#int "rotation"
4129 (fun () -> conf.angle)
4130 (fun v -> reqlayout v conf.fitmodel);
4132 src#int "scroll bar width"
4133 (fun () -> conf.scrollbw)
4134 (fun v ->
4135 conf.scrollbw <- v;
4136 reshape state.winw state.winh;
4139 src#int "scroll handle height"
4140 (fun () -> conf.scrollh)
4141 (fun v -> conf.scrollh <- v;);
4143 src#int "thumbnail width"
4144 (fun () -> conf.thumbw)
4145 (fun v ->
4146 conf.thumbw <- min 4096 v;
4147 match oldmode with
4148 | Birdseye beye ->
4149 leavebirdseye beye false;
4150 enterbirdseye ()
4151 | Textentry _
4152 | View
4153 | LinkNav _ -> ()
4156 let mode = state.mode in
4157 src#string "columns"
4158 (fun () ->
4159 match conf.columns with
4160 | Csingle _ -> "1"
4161 | Cmulti (multi, _) -> multicolumns_to_string multi
4162 | Csplit (count, _) -> "-" ^ string_of_int count
4164 (fun v ->
4165 let n, a, b = multicolumns_of_string v in
4166 setcolumns mode n a b);
4168 sep ();
4169 src#caption "Pixmap cache" 0;
4170 src#int_with_suffix "size (advisory)"
4171 (fun () -> conf.memlimit)
4172 (fun v -> conf.memlimit <- v);
4174 src#caption2 "used"
4175 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4176 (string_with_suffix_of_int state.memused)
4177 (Hashtbl.length state.tilemap)) 1;
4179 sep ();
4180 src#caption "Layout" 0;
4181 src#caption2 "Dimension"
4182 (fun () ->
4183 Printf.sprintf "%dx%d (virtual %dx%d)"
4184 state.winw state.winh
4185 state.w state.maxy)
4187 if conf.debug
4188 then
4189 src#caption2 "Position" (fun () ->
4190 Printf.sprintf "%dx%d" state.x state.y
4192 else
4193 src#caption2 "Position" (fun () -> describe_location ()) 1
4196 sep ();
4197 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4198 "Save these parameters as global defaults at exit"
4199 (fun () -> conf.bedefault)
4200 (fun v -> conf.bedefault <- v)
4203 sep ();
4204 let btos b = if b then "@Ulguillemet" else "@Urguillemet" in
4205 src#bool ~offset:0 ~btos "Extended parameters"
4206 (fun () -> !showextended)
4207 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4208 if !showextended
4209 then (
4210 src#bool "checkers"
4211 (fun () -> conf.checkers)
4212 (fun v -> conf.checkers <- v; setcheckers v);
4213 src#bool "update cursor"
4214 (fun () -> conf.updatecurs)
4215 (fun v -> conf.updatecurs <- v);
4216 src#bool "scroll-bar on the left"
4217 (fun () -> conf.leftscroll)
4218 (fun v -> conf.leftscroll <- v);
4219 src#bool "verbose"
4220 (fun () -> conf.verbose)
4221 (fun v -> conf.verbose <- v);
4222 src#bool "invert colors"
4223 (fun () -> conf.invert)
4224 (fun v -> conf.invert <- v);
4225 src#bool "max fit"
4226 (fun () -> conf.maxhfit)
4227 (fun v -> conf.maxhfit <- v);
4228 src#bool "redirect stderr"
4229 (fun () -> conf.redirectstderr)
4230 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4231 src#bool "pax mode"
4232 (fun () -> conf.pax != None)
4233 (fun v ->
4234 if v
4235 then conf.pax <- Some (ref (now (), 0, 0))
4236 else conf.pax <- None);
4237 src#string "uri launcher"
4238 (fun () -> conf.urilauncher)
4239 (fun v -> conf.urilauncher <- v);
4240 src#string "path launcher"
4241 (fun () -> conf.pathlauncher)
4242 (fun v -> conf.pathlauncher <- v);
4243 src#string "tile size"
4244 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4245 (fun v ->
4247 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4248 conf.tilew <- max 64 w;
4249 conf.tileh <- max 64 h;
4250 flushtiles ();
4251 with exn ->
4252 state.text <- Printf.sprintf "bad tile size `%s': %s"
4253 v (exntos exn)
4255 src#int "texture count"
4256 (fun () -> conf.texcount)
4257 (fun v ->
4258 if realloctexts v
4259 then conf.texcount <- v
4260 else showtext '!' " Failed to set texture count please retry later"
4262 src#int "slice height"
4263 (fun () -> conf.sliceheight)
4264 (fun v ->
4265 conf.sliceheight <- v;
4266 wcmd "sliceh %d" conf.sliceheight;
4268 src#int "anti-aliasing level"
4269 (fun () -> conf.aalevel)
4270 (fun v ->
4271 conf.aalevel <- bound v 0 8;
4272 state.anchor <- getanchor ();
4273 opendoc state.path state.password;
4275 src#string "page scroll scaling factor"
4276 (fun () -> string_of_float conf.pgscale)
4277 (fun v ->
4279 let s = float_of_string v in
4280 conf.pgscale <- s
4281 with exn ->
4282 state.text <- Printf.sprintf
4283 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4286 src#int "ui font size"
4287 (fun () -> fstate.fontsize)
4288 (fun v -> setfontsize (bound v 5 100));
4289 src#int "hint font size"
4290 (fun () -> conf.hfsize)
4291 (fun v -> conf.hfsize <- bound v 5 100);
4292 colorp "background color"
4293 (fun () -> conf.bgcolor)
4294 (fun v -> conf.bgcolor <- v);
4295 src#bool "crop hack"
4296 (fun () -> conf.crophack)
4297 (fun v -> conf.crophack <- v);
4298 src#string "trim fuzz"
4299 (fun () -> irect_to_string conf.trimfuzz)
4300 (fun v ->
4302 conf.trimfuzz <- irect_of_string v;
4303 if conf.trimmargins
4304 then settrim true conf.trimfuzz;
4305 with exn ->
4306 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4308 src#string "throttle"
4309 (fun () ->
4310 match conf.maxwait with
4311 | None -> "show place holder if page is not ready"
4312 | Some time ->
4313 if time = infinity
4314 then "wait for page to fully render"
4315 else
4316 "wait " ^ string_of_float time
4317 ^ " seconds before showing placeholder"
4319 (fun v ->
4321 let f = float_of_string v in
4322 if f <= 0.0
4323 then conf.maxwait <- None
4324 else conf.maxwait <- Some f
4325 with exn ->
4326 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4328 src#string "ghyll scroll"
4329 (fun () ->
4330 match conf.ghyllscroll with
4331 | None -> E.s
4332 | Some nab -> ghyllscroll_to_string nab
4334 (fun v ->
4335 try conf.ghyllscroll <- ghyllscroll_of_string v
4336 with exn ->
4337 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4339 src#string "selection command"
4340 (fun () -> conf.selcmd)
4341 (fun v -> conf.selcmd <- v);
4342 src#string "synctex command"
4343 (fun () -> conf.stcmd)
4344 (fun v -> conf.stcmd <- v);
4345 src#string "pax command"
4346 (fun () -> conf.paxcmd)
4347 (fun v -> conf.paxcmd <- v);
4348 src#colorspace "color space"
4349 (fun () -> CSTE.to_string conf.colorspace)
4350 (fun v ->
4351 conf.colorspace <- CSTE.of_int v;
4352 wcmd "cs %d" v;
4353 load state.layout;
4355 src#paxmark "pax mark method"
4356 (fun () -> MTE.to_string conf.paxmark)
4357 (fun v -> conf.paxmark <- MTE.of_int v);
4358 if pbousable ()
4359 then
4360 src#bool "use PBO"
4361 (fun () -> conf.usepbo)
4362 (fun v -> conf.usepbo <- v);
4363 src#bool "mouse wheel scrolls pages"
4364 (fun () -> conf.wheelbypage)
4365 (fun v -> conf.wheelbypage <- v);
4366 src#bool "open remote links in a new instance"
4367 (fun () -> conf.riani)
4368 (fun v -> conf.riani <- v);
4371 sep ();
4372 src#caption "Document" 0;
4373 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4374 src#caption2 "Pages"
4375 (fun () -> string_of_int state.pagecount) 1;
4376 src#caption2 "Dimensions"
4377 (fun () -> string_of_int (List.length state.pdims)) 1;
4378 if conf.trimmargins
4379 then (
4380 sep ();
4381 src#caption "Trimmed margins" 0;
4382 src#caption2 "Dimensions"
4383 (fun () -> string_of_int (List.length state.pdims)) 1;
4386 sep ();
4387 src#caption "OpenGL" 0;
4388 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4389 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4391 sep ();
4392 src#caption "Location" 0;
4393 if nonemptystr state.origin
4394 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
4395 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
4397 src#reset prevmode prevuioh;
4399 fun () ->
4400 state.text <- E.s;
4401 resetmstate ();
4402 let prevmode = state.mode
4403 and prevuioh = state.uioh in
4404 fillsrc prevmode prevuioh;
4405 let source = (src :> lvsource) in
4406 let modehash = findkeyhash conf "info" in
4407 state.uioh <- coe (object (self)
4408 inherit listview ~zebra:false ~helpmode:false
4409 ~source ~trusted:true ~modehash as super
4410 val mutable m_prevmemused = 0
4411 method! infochanged = function
4412 | Memused ->
4413 if m_prevmemused != state.memused
4414 then (
4415 m_prevmemused <- state.memused;
4416 G.postRedisplay "memusedchanged";
4418 | Pdim -> G.postRedisplay "pdimchanged"
4419 | Docinfo -> fillsrc prevmode prevuioh
4421 method! key key mask =
4422 if not (Wsi.withctrl mask)
4423 then
4424 match key with
4425 | @left | @kpleft -> coe (self#updownlevel ~-1)
4426 | @right | @kpright -> coe (self#updownlevel 1)
4427 | _ -> super#key key mask
4428 else super#key key mask
4429 end);
4430 G.postRedisplay "info";
4433 let enterhelpmode =
4434 let source =
4435 (object
4436 inherit lvsourcebase
4437 method getitemcount = Array.length state.help
4438 method getitem n =
4439 let s, l, _ = state.help.(n) in
4440 (s, l)
4442 method exit ~uioh ~cancel ~active ~first ~pan =
4443 let optuioh =
4444 if not cancel
4445 then (
4446 match state.help.(active) with
4447 | _, _, Action f -> Some (f uioh)
4448 | _, _, Noaction -> Some uioh
4450 else None
4452 m_active <- active;
4453 m_first <- first;
4454 m_pan <- pan;
4455 optuioh
4457 method hasaction n =
4458 match state.help.(n) with
4459 | _, _, Action _ -> true
4460 | _, _, Noaction -> false
4462 initializer
4463 m_active <- -1
4464 end)
4465 in fun () ->
4466 let modehash = findkeyhash conf "help" in
4467 resetmstate ();
4468 state.uioh <- coe (new listview
4469 ~zebra:false ~helpmode:true
4470 ~source ~trusted:true ~modehash);
4471 G.postRedisplay "help";
4474 let entermsgsmode =
4475 let msgsource =
4476 let re = Str.regexp "[\r\n]" in
4477 (object
4478 inherit lvsourcebase
4479 val mutable m_items = E.a
4481 method getitemcount = 1 + Array.length m_items
4483 method getitem n =
4484 if n = 0
4485 then "[Clear]", 0
4486 else m_items.(n-1), 0
4488 method exit ~uioh ~cancel ~active ~first ~pan =
4489 ignore uioh;
4490 if not cancel
4491 then (
4492 if active = 0
4493 then Buffer.clear state.errmsgs;
4495 m_active <- active;
4496 m_first <- first;
4497 m_pan <- pan;
4498 None
4500 method hasaction n =
4501 n = 0
4503 method reset =
4504 state.newerrmsgs <- false;
4505 let l = Str.split re (Buffer.contents state.errmsgs) in
4506 m_items <- Array.of_list l
4508 initializer
4509 m_active <- 0
4510 end)
4511 in fun () ->
4512 state.text <- E.s;
4513 resetmstate ();
4514 msgsource#reset;
4515 let source = (msgsource :> lvsource) in
4516 let modehash = findkeyhash conf "listview" in
4517 state.uioh <- coe (object
4518 inherit listview ~zebra:false ~helpmode:false
4519 ~source ~trusted:false ~modehash as super
4520 method! display =
4521 if state.newerrmsgs
4522 then msgsource#reset;
4523 super#display
4524 end);
4525 G.postRedisplay "msgs";
4528 let quickbookmark ?title () =
4529 match state.layout with
4530 | [] -> ()
4531 | l :: _ ->
4532 let title =
4533 match title with
4534 | None ->
4535 let tm = Unix.localtime (now ()) in
4536 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4537 (l.pageno+1)
4538 tm.Unix.tm_mday
4539 tm.Unix.tm_mon
4540 (tm.Unix.tm_year + 1900)
4541 tm.Unix.tm_hour
4542 tm.Unix.tm_min
4543 | Some title -> title
4545 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4548 let setautoscrollspeed step goingdown =
4549 let incr = max 1 ((abs step) / 2) in
4550 let incr = if goingdown then incr else -incr in
4551 let astep = boundastep state.winh (step + incr) in
4552 state.autoscroll <- Some astep;
4555 let canpan () =
4556 match conf.columns with
4557 | Csplit _ -> true
4558 | Csingle _ | Cmulti _ -> state.x != 0 || conf.zoom > 1.0
4561 let panbound x = bound x (-state.w) (wadjsb state.winw);;
4563 let existsinrow pageno (columns, coverA, coverB) p =
4564 let last = ((pageno - coverA) mod columns) + columns in
4565 let rec any = function
4566 | [] -> false
4567 | l :: rest ->
4568 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4569 then p l
4570 else (
4571 if not (p l)
4572 then (if l.pageno = last then false else any rest)
4573 else true
4576 any state.layout
4579 let nextpage () =
4580 match state.layout with
4581 | [] ->
4582 let pageno = page_of_y state.y in
4583 gotoghyll (getpagey (pageno+1))
4584 | l :: rest ->
4585 match conf.columns with
4586 | Csingle _ ->
4587 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4588 then
4589 let y = clamp (pgscale state.winh) in
4590 gotoghyll y
4591 else
4592 let pageno = min (l.pageno+1) (state.pagecount-1) in
4593 gotoghyll (getpagey pageno)
4594 | Cmulti ((c, _, _) as cl, _) ->
4595 if conf.presentation
4596 && (existsinrow l.pageno cl
4597 (fun l -> l.pageh > l.pagey + l.pagevh))
4598 then
4599 let y = clamp (pgscale state.winh) in
4600 gotoghyll y
4601 else
4602 let pageno = min (l.pageno+c) (state.pagecount-1) in
4603 gotoghyll (getpagey pageno)
4604 | Csplit (n, _) ->
4605 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4606 then
4607 let pagey, pageh = getpageyh l.pageno in
4608 let pagey = pagey + pageh * l.pagecol in
4609 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4610 gotoghyll (pagey + pageh + ips)
4613 let prevpage () =
4614 match state.layout with
4615 | [] ->
4616 let pageno = page_of_y state.y in
4617 gotoghyll (getpagey (pageno-1))
4618 | l :: _ ->
4619 match conf.columns with
4620 | Csingle _ ->
4621 if conf.presentation && l.pagey != 0
4622 then
4623 gotoghyll (clamp (pgscale ~-(state.winh)))
4624 else
4625 let pageno = max 0 (l.pageno-1) in
4626 gotoghyll (getpagey pageno)
4627 | Cmulti ((c, _, coverB) as cl, _) ->
4628 if conf.presentation &&
4629 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4630 then
4631 gotoghyll (clamp (pgscale ~-(state.winh)))
4632 else
4633 let decr =
4634 if l.pageno = state.pagecount - coverB
4635 then 1
4636 else c
4638 let pageno = max 0 (l.pageno-decr) in
4639 gotoghyll (getpagey pageno)
4640 | Csplit (n, _) ->
4641 let y =
4642 if l.pagecol = 0
4643 then
4644 if l.pageno = 0
4645 then l.pagey
4646 else
4647 let pageno = max 0 (l.pageno-1) in
4648 let pagey, pageh = getpageyh pageno in
4649 pagey + (n-1)*pageh
4650 else
4651 let pagey, pageh = getpageyh l.pageno in
4652 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4654 gotoghyll y
4657 let viewkeyboard key mask =
4658 let enttext te =
4659 let mode = state.mode in
4660 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4661 state.text <- E.s;
4662 enttext ();
4663 G.postRedisplay "view:enttext"
4665 let ctrl = Wsi.withctrl mask in
4666 let key =
4667 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4669 match key with
4670 | @Q -> exit 0
4671 | @insert ->
4672 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4673 then (
4674 state.mode <- LinkNav (Ltgendir 0);
4675 gotoy state.y;
4677 else showtext '!' "Keyboard link navigation does not work under rotation"
4679 | @escape | @q ->
4680 begin match state.mstate with
4681 | Mzoomrect _ ->
4682 resetmstate ();
4683 G.postRedisplay "kill zoom rect";
4684 | Msel _
4685 | Mpan _
4686 | Mscrolly | Mscrollx
4687 | Mzoom _
4688 | Mnone ->
4689 begin match state.mode with
4690 | LinkNav _ ->
4691 state.mode <- View;
4692 G.postRedisplay "esc leave linknav"
4693 | Birdseye _
4694 | Textentry _
4695 | View ->
4696 match state.ranchors with
4697 | [] -> raise Quit
4698 | (path, password, anchor, origin) :: rest ->
4699 state.ranchors <- rest;
4700 state.anchor <- anchor;
4701 state.origin <- origin;
4702 state.nameddest <- E.s;
4703 opendoc path password
4704 end;
4705 end;
4707 | @backspace ->
4708 gotoghyll (getnav ~-1)
4710 | @o ->
4711 enteroutlinemode ()
4713 | @H ->
4714 enterhistmode ()
4716 | @u ->
4717 state.rects <- [];
4718 state.text <- E.s;
4719 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
4720 G.postRedisplay "dehighlight";
4722 | @slash | @question ->
4723 let ondone isforw s =
4724 cbput state.hists.pat s;
4725 state.searchpattern <- s;
4726 search s isforw
4728 let s = String.create 1 in
4729 s.[0] <- Char.chr key;
4730 enttext (s, E.s, Some (onhist state.hists.pat),
4731 textentry, ondone (key = @slash), true)
4733 | @plus | @kpplus | @equals when ctrl ->
4734 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4735 setzoom (conf.zoom +. incr)
4737 | @plus | @kpplus ->
4738 let ondone s =
4739 let n =
4740 try int_of_string s with exc ->
4741 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4742 max_int
4744 if n != max_int
4745 then (
4746 conf.pagebias <- n;
4747 state.text <- "page bias is now " ^ string_of_int n;
4750 enttext ("page bias: ", E.s, None, intentry, ondone, true)
4752 | @minus | @kpminus when ctrl ->
4753 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4754 setzoom (max 0.01 (conf.zoom -. decr))
4756 | @minus | @kpminus ->
4757 let ondone msg = state.text <- msg in
4758 enttext (
4759 "option [acfhilpstvxACFPRSZTISM]: ", E.s, None,
4760 optentry state.mode, ondone, true
4763 | @0 when ctrl ->
4764 if conf.zoom = 1.0
4765 then (
4766 state.x <- 0;
4767 gotoy state.y
4769 else setzoom 1.0
4771 | (@1 | @2) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
4772 let cols =
4773 match conf.columns with
4774 | Csingle _ | Cmulti _ -> 1
4775 | Csplit (n, _) -> n
4777 let h = state.winh -
4778 conf.interpagespace lsl (if conf.presentation then 1 else 0)
4780 let zoom = zoomforh state.winw h (vscrollw ()) cols in
4781 if zoom > 0.0 && (key = 50 || zoom < 1.0)
4782 then setzoom zoom
4784 | @3 when ctrl ->
4785 let fm =
4786 match conf.fitmodel with
4787 | FitWidth -> FitProportional
4788 | FitProportional -> FitPage
4789 | FitPage -> FitWidth
4791 state.text <- "fit model: " ^ FMTE.to_string fm;
4792 reqlayout conf.angle fm
4794 | @F9 ->
4795 togglebirdseye ()
4797 | @9 when ctrl ->
4798 togglebirdseye ()
4800 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4801 when not ctrl -> (* 0..9 *)
4802 let ondone s =
4803 let n =
4804 try int_of_string s with exc ->
4805 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4808 if n >= 0
4809 then (
4810 addnav ();
4811 cbput state.hists.pag (string_of_int n);
4812 gotopage1 (n + conf.pagebias - 1) 0;
4815 let pageentry text key =
4816 match Char.unsafe_chr key with
4817 | 'g' -> TEdone text
4818 | _ -> intentry text key
4820 let text = "x" in text.[0] <- Char.chr key;
4821 enttext (":", text, Some (onhist state.hists.pag),
4822 pageentry, ondone, true)
4824 | @b ->
4825 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
4826 reshape state.winw state.winh;
4828 | @B ->
4829 state.bzoom <- not state.bzoom;
4830 state.rects <- [];
4831 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
4833 | @l ->
4834 conf.hlinks <- not conf.hlinks;
4835 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4836 G.postRedisplay "toggle highlightlinks";
4838 | @F ->
4839 state.glinks <- true;
4840 let mode = state.mode in
4841 state.mode <- Textentry (
4842 (":", E.s, None, linknentry, linkndone gotounder, false),
4843 (fun _ ->
4844 state.glinks <- false;
4845 state.mode <- mode)
4847 state.text <- E.s;
4848 G.postRedisplay "view:linkent(F)"
4850 | @y ->
4851 state.glinks <- true;
4852 let mode = state.mode in
4853 state.mode <- Textentry (
4855 ":", E.s, None, linknentry, linkndone (fun under ->
4856 selstring (undertext under);
4857 ), false
4859 fun _ ->
4860 state.glinks <- false;
4861 state.mode <- mode
4863 state.text <- E.s;
4864 G.postRedisplay "view:linkent"
4866 | @a ->
4867 begin match state.autoscroll with
4868 | Some step ->
4869 conf.autoscrollstep <- step;
4870 state.autoscroll <- None
4871 | None ->
4872 if conf.autoscrollstep = 0
4873 then state.autoscroll <- Some 1
4874 else state.autoscroll <- Some conf.autoscrollstep
4877 | @p when ctrl ->
4878 launchpath ()
4880 | @P ->
4881 setpresentationmode (not conf.presentation);
4882 showtext ' ' ("presentation mode " ^
4883 if conf.presentation then "on" else "off");
4885 | @f ->
4886 if List.mem Wsi.Fullscreen state.winstate
4887 then Wsi.reshape conf.cwinw conf.cwinh
4888 else Wsi.fullscreen ()
4890 | @p | @N ->
4891 search state.searchpattern false
4893 | @n | @F3 ->
4894 search state.searchpattern true
4896 | @t ->
4897 begin match state.layout with
4898 | [] -> ()
4899 | l :: _ ->
4900 gotoghyll (getpagey l.pageno)
4903 | @space ->
4904 nextpage ()
4906 | @delete | @kpdelete -> (* delete *)
4907 prevpage ()
4909 | @equals ->
4910 showtext ' ' (describe_location ());
4912 | @w ->
4913 begin match state.layout with
4914 | [] -> ()
4915 | l :: _ ->
4916 Wsi.reshape (l.pagew + vscrollw ()) l.pageh;
4917 G.postRedisplay "w"
4920 | @apos ->
4921 enterbookmarkmode ()
4923 | @h | @F1 ->
4924 enterhelpmode ()
4926 | @i ->
4927 enterinfomode ()
4929 | @e when Buffer.length state.errmsgs > 0 ->
4930 entermsgsmode ()
4932 | @m ->
4933 let ondone s =
4934 match state.layout with
4935 | l :: _ ->
4936 if nonemptystr s
4937 then
4938 state.bookmarks <-
4939 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
4940 | _ -> ()
4942 enttext ("bookmark: ", E.s, None, textentry, ondone, true)
4944 | @tilde ->
4945 quickbookmark ();
4946 showtext ' ' "Quick bookmark added";
4948 | @z ->
4949 begin match state.layout with
4950 | l :: _ ->
4951 let rect = getpdimrect l.pagedimno in
4952 let w, h =
4953 if conf.crophack
4954 then
4955 (truncate (1.8 *. (rect.(1) -. rect.(0))),
4956 truncate (1.2 *. (rect.(3) -. rect.(0))))
4957 else
4958 (truncate (rect.(1) -. rect.(0)),
4959 truncate (rect.(3) -. rect.(0)))
4961 let w = truncate ((float w)*.conf.zoom)
4962 and h = truncate ((float h)*.conf.zoom) in
4963 if w != 0 && h != 0
4964 then (
4965 state.anchor <- getanchor ();
4966 Wsi.reshape (w + vscrollw ()) (h + conf.interpagespace)
4968 G.postRedisplay "z";
4970 | [] -> ()
4973 | @x -> state.roam ()
4975 | @Lt | @Gt ->
4976 reqlayout (conf.angle +
4977 (if key = @question then 30 else -30)) conf.fitmodel
4979 | @Lb | @Rb ->
4980 conf.colorscale <-
4981 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
4983 G.postRedisplay "brightness";
4985 | @c when state.mode = View ->
4986 if Wsi.withalt mask
4987 then (
4988 if conf.zoom > 1.0
4989 then
4990 let m = (wadjsb state.winw - state.w) / 2 in
4991 state.x <- m;
4992 gotoy_and_clear_text state.y
4994 else
4995 let (c, a, b), z =
4996 match state.prevcolumns with
4997 | None -> (1, 0, 0), 1.0
4998 | Some (columns, z) ->
4999 let cab =
5000 match columns with
5001 | Csplit (c, _) -> -c, 0, 0
5002 | Cmulti ((c, a, b), _) -> c, a, b
5003 | Csingle _ -> 1, 0, 0
5005 cab, z
5007 setcolumns View c a b;
5008 setzoom z
5010 | @down | @up when ctrl && Wsi.withshift mask ->
5011 let zoom, x = state.prevzoom in
5012 setzoom zoom;
5013 state.x <- x;
5015 | @k | @up | @kpup ->
5016 begin match state.autoscroll with
5017 | None ->
5018 begin match state.mode with
5019 | Birdseye beye -> upbirdseye 1 beye
5020 | Textentry _
5021 | View
5022 | LinkNav _ ->
5023 if ctrl
5024 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5025 else (
5026 if not (Wsi.withshift mask) && conf.presentation
5027 then prevpage ()
5028 else gotoghyll1 true (clamp (-conf.scrollstep))
5031 | Some n ->
5032 setautoscrollspeed n false
5035 | @j | @down | @kpdown ->
5036 begin match state.autoscroll with
5037 | None ->
5038 begin match state.mode with
5039 | Birdseye beye -> downbirdseye 1 beye
5040 | Textentry _
5041 | View
5042 | LinkNav _ ->
5043 if ctrl
5044 then gotoy_and_clear_text (clamp (state.winh/2))
5045 else (
5046 if not (Wsi.withshift mask) && conf.presentation
5047 then nextpage ()
5048 else gotoghyll1 true (clamp (conf.scrollstep))
5051 | Some n ->
5052 setautoscrollspeed n true
5055 | @left | @right | @kpleft | @kpright when not (Wsi.withalt mask) ->
5056 if canpan ()
5057 then
5058 let dx =
5059 if ctrl
5060 then state.winw / 2
5061 else conf.hscrollstep
5063 let dx = if key = @left || key = @kpleft then dx else -dx in
5064 state.x <- panbound (state.x + dx);
5065 gotoy_and_clear_text state.y
5066 else (
5067 state.text <- E.s;
5068 G.postRedisplay "left/right"
5071 | @prior | @kpprior ->
5072 let y =
5073 if ctrl
5074 then
5075 match state.layout with
5076 | [] -> state.y
5077 | l :: _ -> state.y - l.pagey
5078 else
5079 clamp (pgscale (-state.winh))
5081 gotoghyll y
5083 | @next | @kpnext ->
5084 let y =
5085 if ctrl
5086 then
5087 match List.rev state.layout with
5088 | [] -> state.y
5089 | l :: _ -> getpagey l.pageno
5090 else
5091 clamp (pgscale state.winh)
5093 gotoghyll y
5095 | @g | @home | @kphome ->
5096 addnav ();
5097 gotoghyll 0
5098 | @G | @jend | @kpend ->
5099 addnav ();
5100 gotoghyll (clamp state.maxy)
5102 | @right | @kpright when Wsi.withalt mask ->
5103 gotoghyll (getnav 1)
5104 | @left | @kpleft when Wsi.withalt mask ->
5105 gotoghyll (getnav ~-1)
5107 | @r ->
5108 reload ()
5110 | @v when conf.debug ->
5111 state.rects <- [];
5112 List.iter (fun l ->
5113 match getopaque l.pageno with
5114 | None -> ()
5115 | Some opaque ->
5116 let x0, y0, x1, y1 = pagebbox opaque in
5117 let a,b = float x0, float y0 in
5118 let c,d = float x1, float y0 in
5119 let e,f = float x1, float y1 in
5120 let h,j = float x0, float y1 in
5121 let rect = (a,b,c,d,e,f,h,j) in
5122 debugrect rect;
5123 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5124 ) state.layout;
5125 G.postRedisplay "v";
5127 | @pipe ->
5128 let mode = state.mode in
5129 let cmd = ref E.s in
5130 let onleave = function
5131 | Cancel -> state.mode <- mode
5132 | Confirm ->
5133 List.iter (fun l ->
5134 match getopaque l.pageno with
5135 | Some opaque -> pipesel opaque !cmd
5136 | None -> ()) state.layout;
5137 state.mode <- mode
5139 let ondone s =
5140 cbput state.hists.sel s;
5141 cmd := s
5143 let te =
5144 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5146 G.postRedisplay "|";
5147 state.mode <- Textentry (te, onleave);
5149 | _ ->
5150 vlog "huh? %s" (Wsi.keyname key)
5153 let linknavkeyboard key mask linknav =
5154 let getpage pageno =
5155 let rec loop = function
5156 | [] -> None
5157 | l :: _ when l.pageno = pageno -> Some l
5158 | _ :: rest -> loop rest
5159 in loop state.layout
5161 let doexact (pageno, n) =
5162 match getopaque pageno, getpage pageno with
5163 | Some opaque, Some l ->
5164 if key = @enter || key = @kpenter
5165 then
5166 let under = getlink opaque n in
5167 G.postRedisplay "link gotounder";
5168 gotounder under;
5169 state.mode <- View;
5170 else
5171 let opt, dir =
5172 match key with
5173 | @home ->
5174 Some (findlink opaque LDfirst), -1
5176 | @jend ->
5177 Some (findlink opaque LDlast), 1
5179 | @left ->
5180 Some (findlink opaque (LDleft n)), -1
5182 | @right ->
5183 Some (findlink opaque (LDright n)), 1
5185 | @up ->
5186 Some (findlink opaque (LDup n)), -1
5188 | @down ->
5189 Some (findlink opaque (LDdown n)), 1
5191 | _ -> None, 0
5193 let pwl l dir =
5194 begin match findpwl l.pageno dir with
5195 | Pwlnotfound -> ()
5196 | Pwl pageno ->
5197 let notfound dir =
5198 state.mode <- LinkNav (Ltgendir dir);
5199 let y, h = getpageyh pageno in
5200 let y =
5201 if dir < 0
5202 then y + h - state.winh
5203 else y
5205 gotoy y
5207 begin match getopaque pageno, getpage pageno with
5208 | Some opaque, Some _ ->
5209 let link =
5210 let ld = if dir > 0 then LDfirst else LDlast in
5211 findlink opaque ld
5213 begin match link with
5214 | Lfound m ->
5215 showlinktype (getlink opaque m);
5216 state.mode <- LinkNav (Ltexact (pageno, m));
5217 G.postRedisplay "linknav jpage";
5218 | Lnotfound -> notfound dir
5219 end;
5220 | _ -> notfound dir
5221 end;
5222 end;
5224 begin match opt with
5225 | Some Lnotfound -> pwl l dir;
5226 | Some (Lfound m) ->
5227 if m = n
5228 then pwl l dir
5229 else (
5230 let _, y0, _, y1 = getlinkrect opaque m in
5231 if y0 < l.pagey
5232 then gotopage1 l.pageno y0
5233 else (
5234 let d = fstate.fontsize + 1 in
5235 if y1 - l.pagey > l.pagevh - d
5236 then gotopage1 l.pageno (y1 - state.winh - hscrollh () + d)
5237 else G.postRedisplay "linknav";
5239 showlinktype (getlink opaque m);
5240 state.mode <- LinkNav (Ltexact (l.pageno, m));
5243 | None -> viewkeyboard key mask
5244 end;
5245 | _ -> viewkeyboard key mask
5247 if key = @insert
5248 then (
5249 state.mode <- View;
5250 G.postRedisplay "leave linknav"
5252 else
5253 match linknav with
5254 | Ltgendir _ -> viewkeyboard key mask
5255 | Ltexact exact -> doexact exact
5258 let keyboard key mask =
5259 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5260 then wcmd "interrupt"
5261 else state.uioh <- state.uioh#key key mask
5264 let birdseyekeyboard key mask
5265 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5266 let incr =
5267 match conf.columns with
5268 | Csingle _ -> 1
5269 | Cmulti ((c, _, _), _) -> c
5270 | Csplit _ -> failwith "bird's eye split mode"
5272 let pgh layout = List.fold_left
5273 (fun m l -> max l.pageh m) state.winh layout in
5274 match key with
5275 | @l when Wsi.withctrl mask ->
5276 let y, h = getpageyh pageno in
5277 let top = (state.winh - h) / 2 in
5278 gotoy (max 0 (y - top))
5279 | @enter | @kpenter -> leavebirdseye beye false
5280 | @escape -> leavebirdseye beye true
5281 | @up -> upbirdseye incr beye
5282 | @down -> downbirdseye incr beye
5283 | @left -> upbirdseye 1 beye
5284 | @right -> downbirdseye 1 beye
5286 | @prior ->
5287 begin match state.layout with
5288 | l :: _ ->
5289 if l.pagey != 0
5290 then (
5291 state.mode <- Birdseye (
5292 oconf, leftx, l.pageno, hooverpageno, anchor
5294 gotopage1 l.pageno 0;
5296 else (
5297 let layout = layout (state.y-state.winh) (pgh state.layout) in
5298 match layout with
5299 | [] -> gotoy (clamp (-state.winh))
5300 | l :: _ ->
5301 state.mode <- Birdseye (
5302 oconf, leftx, l.pageno, hooverpageno, anchor
5304 gotopage1 l.pageno 0
5307 | [] -> gotoy (clamp (-state.winh))
5308 end;
5310 | @next ->
5311 begin match List.rev state.layout with
5312 | l :: _ ->
5313 let layout = layout (state.y + (pgh state.layout)) state.winh in
5314 begin match layout with
5315 | [] ->
5316 let incr = l.pageh - l.pagevh in
5317 if incr = 0
5318 then (
5319 state.mode <-
5320 Birdseye (
5321 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5323 G.postRedisplay "birdseye pagedown";
5325 else gotoy (clamp (incr + conf.interpagespace*2));
5327 | l :: _ ->
5328 state.mode <-
5329 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5330 gotopage1 l.pageno 0;
5333 | [] -> gotoy (clamp state.winh)
5334 end;
5336 | @home ->
5337 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5338 gotopage1 0 0
5340 | @jend ->
5341 let pageno = state.pagecount - 1 in
5342 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5343 if not (pagevisible state.layout pageno)
5344 then
5345 let h =
5346 match List.rev state.pdims with
5347 | [] -> state.winh
5348 | (_, _, h, _) :: _ -> h
5350 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5351 else G.postRedisplay "birdseye end";
5353 | _ -> viewkeyboard key mask
5356 let drawpage l =
5357 let color =
5358 match state.mode with
5359 | Textentry _ -> scalecolor 0.4
5360 | LinkNav _
5361 | View -> scalecolor 1.0
5362 | Birdseye (_, _, pageno, hooverpageno, _) ->
5363 if l.pageno = hooverpageno
5364 then scalecolor 0.9
5365 else (
5366 if l.pageno = pageno
5367 then (
5368 let c = scalecolor 1.0 in
5369 GlDraw.color c;
5370 GlDraw.line_width 3.0;
5371 let dispx = xadjsb l.pagedispx in
5372 linerect
5373 (float (dispx-1)) (float (l.pagedispy-1))
5374 (float (dispx+l.pagevw+1))
5375 (float (l.pagedispy+l.pagevh+1))
5377 GlDraw.line_width 1.0;
5380 else scalecolor 0.8
5383 drawtiles l color;
5386 let postdrawpage l linkindexbase =
5387 match getopaque l.pageno with
5388 | Some opaque ->
5389 if tileready l l.pagex l.pagey
5390 then
5391 let x = l.pagedispx - l.pagex + xadjsb 0
5392 and y = l.pagedispy - l.pagey in
5393 let hlmask =
5394 match conf.columns with
5395 | Csingle _ | Cmulti _ ->
5396 (if conf.hlinks then 1 else 0)
5397 + (if state.glinks
5398 && not (isbirdseye state.mode) then 2 else 0)
5399 | Csplit _ -> 0
5401 let s =
5402 match state.mode with
5403 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5404 | Textentry _
5405 | Birdseye _
5406 | View
5407 | LinkNav _ -> E.s
5409 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5410 else 0
5411 | _ -> 0
5414 let scrollindicator () =
5415 let sbw, ph, sh = state.uioh#scrollph in
5416 let sbh, pw, sw = state.uioh#scrollpw in
5418 let x0,x1 =
5419 if conf.leftscroll
5420 then (0, sbw)
5421 else (state.winw - sbw), state.winw
5424 GlDraw.color (0.64, 0.64, 0.64);
5425 filledrect (float x0) 0. (float x1) (float state.winh);
5426 filledrect
5427 0. (float (state.winh - sbh))
5428 (float (wadjsb state.winw - 1)) (float state.winh)
5430 GlDraw.color (0.0, 0.0, 0.0);
5432 filledrect (float x0) ph (float x1) (ph +. sh);
5433 filledrect pw (float (state.winh - sbh)) (pw +. sw) (float state.winh);
5436 let showsel () =
5437 match state.mstate with
5438 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5441 | Msel ((x0, y0), (x1, y1)) ->
5442 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
5443 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< E.s, -1, 0, 0) in
5444 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< E.s, -1, 0, 0) in
5445 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
5448 let showrects = function [] -> () | rects ->
5449 Gl.enable `blend;
5450 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5451 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
5452 List.iter
5453 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5454 List.iter (fun l ->
5455 if l.pageno = pageno
5456 then (
5457 let dx = float (l.pagedispx - l.pagex) in
5458 let dy = float (l.pagedispy - l.pagey) in
5459 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5460 Raw.sets_float state.vraw ~pos:0
5461 [| x0+.dx; y0+.dy;
5462 x1+.dx; y1+.dy;
5463 x3+.dx; y3+.dy;
5464 x2+.dx; y2+.dy |];
5465 GlArray.vertex `two state.vraw;
5466 GlArray.draw_arrays `triangle_strip ~first:0 ~count:4;
5468 ) state.layout
5469 ) rects
5471 Gl.disable `blend;
5474 let display () =
5475 GlClear.color (scalecolor2 conf.bgcolor);
5476 GlClear.clear [`color];
5477 List.iter drawpage state.layout;
5478 let rects =
5479 match state.mode with
5480 | LinkNav (Ltexact (pageno, linkno)) ->
5481 begin match getopaque pageno with
5482 | Some opaque ->
5483 let dx = xadjsb 0 in
5484 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5485 let x0 = x0 + dx and x1 = x1 + dx in
5486 (pageno, 5, (
5487 float x0, float y0,
5488 float x1, float y0,
5489 float x1, float y1,
5490 float x0, float y1)
5491 ) :: state.rects
5492 | None -> state.rects
5494 | LinkNav (Ltgendir _)
5495 | Birdseye _
5496 | Textentry _
5497 | View -> state.rects
5499 showrects rects;
5500 let rec postloop linkindexbase = function
5501 | l :: rest ->
5502 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
5503 postloop linkindexbase rest
5504 | [] -> ()
5506 showsel ();
5507 postloop 0 state.layout;
5508 state.uioh#display;
5509 begin match state.mstate with
5510 | Mzoomrect ((x0, y0), (x1, y1)) ->
5511 Gl.enable `blend;
5512 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5513 GlFunc.blend_func ~src:`src_alpha ~dst:`one_minus_src_alpha;
5514 filledrect (float x0) (float y0) (float x1) (float y1);
5515 Gl.disable `blend;
5516 | Msel _
5517 | Mpan _
5518 | Mscrolly | Mscrollx
5519 | Mzoom _
5520 | Mnone -> ()
5521 end;
5522 enttext ();
5523 scrollindicator ();
5524 Wsi.swapb ();
5527 let zoomrect x y x1 y1 =
5528 let x0 = min x x1
5529 and x1 = max x x1
5530 and y0 = min y y1 in
5531 gotoy (state.y + y0);
5532 state.anchor <- getanchor ();
5533 let zoom = (float state.w) /. float (x1 - x0) in
5534 let margin =
5535 let simple () =
5536 let adjw = wadjsb state.winw in
5537 if state.w < adjw
5538 then (adjw - state.w) / 2
5539 else 0
5541 match conf.fitmodel with
5542 | FitWidth | FitProportional -> simple ()
5543 | FitPage ->
5544 match conf.columns with
5545 | Csplit _ ->
5546 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
5547 | Cmulti _ | Csingle _ -> simple ()
5549 state.x <- (state.x + margin) - x0;
5550 setzoom zoom;
5551 resetmstate ();
5554 let zoomblock x y =
5555 let g opaque l px py =
5556 match rectofblock opaque px py with
5557 | Some a ->
5558 let x0 = a.(0) -. 20. in
5559 let x1 = a.(1) +. 20. in
5560 let y0 = a.(2) -. 20. in
5561 let zoom = (float state.w) /. (x1 -. x0) in
5562 let pagey = getpagey l.pageno in
5563 gotoy_and_clear_text (pagey + truncate y0);
5564 state.anchor <- getanchor ();
5565 let margin = (state.w - l.pagew)/2 in
5566 state.x <- -truncate x0 - margin;
5567 setzoom zoom;
5568 None
5569 | None -> None
5571 match conf.columns with
5572 | Csplit _ ->
5573 showtext '!' "block zooming does not work properly in split columns mode"
5574 | Cmulti _ | Csingle _ -> onppundermouse g x y ()
5577 let scrollx x =
5578 let winw = wadjsb state.winw - 1 in
5579 let s = float x /. float winw in
5580 let destx = truncate (float (state.w + winw) *. s) in
5581 state.x <- winw - destx;
5582 gotoy_and_clear_text state.y;
5583 state.mstate <- Mscrollx;
5586 let scrolly y =
5587 let s = float y /. float state.winh in
5588 let desty = truncate (float (state.maxy - state.winh) *. s) in
5589 gotoy_and_clear_text desty;
5590 state.mstate <- Mscrolly;
5593 let viewmulticlick clicks x y mask =
5594 let g opaque l px py =
5595 let mark =
5596 match clicks with
5597 | 2 -> Mark_word
5598 | 3 -> Mark_line
5599 | 4 -> Mark_block
5600 | _ -> Mark_page
5602 if markunder opaque px py mark
5603 then (
5604 Some (fun () ->
5605 let dopipe cmd =
5606 match getopaque l.pageno with
5607 | None -> ()
5608 | Some opaque -> pipesel opaque cmd
5610 state.roam <- (fun () -> dopipe conf.paxcmd);
5611 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
5614 else None
5616 G.postRedisplay "viewmulticlick";
5617 onppundermouse g x y (fun () -> showtext '!' "Nothing to select") ();
5620 let canselect () =
5621 match conf.columns with
5622 | Csplit _ -> false
5623 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
5626 let viewmouse button down x y mask =
5627 match button with
5628 | n when (n == 4 || n == 5) && not down ->
5629 if Wsi.withctrl mask
5630 then (
5631 match state.mstate with
5632 | Mzoom (oldn, i) ->
5633 if oldn = n
5634 then (
5635 if i = 2
5636 then
5637 let incr =
5638 match n with
5639 | 5 ->
5640 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5641 | _ ->
5642 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5644 let zoom = conf.zoom -. incr in
5645 setzoom zoom;
5646 state.mstate <- Mzoom (n, 0);
5647 else
5648 state.mstate <- Mzoom (n, i+1);
5650 else state.mstate <- Mzoom (n, 0)
5652 | Msel _
5653 | Mpan _
5654 | Mscrolly | Mscrollx
5655 | Mzoomrect _
5656 | Mnone -> state.mstate <- Mzoom (n, 0)
5658 else (
5659 match state.autoscroll with
5660 | Some step -> setautoscrollspeed step (n=4)
5661 | None ->
5662 if conf.wheelbypage || conf.presentation
5663 then (
5664 if n = 4
5665 then prevpage ()
5666 else nextpage ()
5668 else
5669 let incr =
5670 if n = 4
5671 then -conf.scrollstep
5672 else conf.scrollstep
5674 let incr = incr * 2 in
5675 let y = clamp incr in
5676 gotoy_and_clear_text y
5679 | n when (n = 6 || n = 7) && not down && canpan () ->
5680 state.x <-
5681 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep);
5682 gotoy_and_clear_text state.y
5684 | 1 when Wsi.withshift mask ->
5685 state.mstate <- Mnone;
5686 if not down
5687 then (
5688 match unproject x y with
5689 | Some (pageno, ux, uy) ->
5690 let cmd = Printf.sprintf
5691 "%s %s %d %d %d"
5692 conf.stcmd state.path pageno ux uy
5694 popen cmd []
5695 | None -> ()
5698 | 1 when Wsi.withctrl mask ->
5699 if down
5700 then (
5701 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5702 state.mstate <- Mpan (x, y)
5704 else
5705 state.mstate <- Mnone
5707 | 3 ->
5708 if down
5709 then (
5710 Wsi.setcursor Wsi.CURSOR_CYCLE;
5711 let p = (x, y) in
5712 state.mstate <- Mzoomrect (p, p)
5714 else (
5715 match state.mstate with
5716 | Mzoomrect ((x0, y0), _) ->
5717 if abs (x-x0) > 10 && abs (y - y0) > 10
5718 then zoomrect x0 y0 x y
5719 else (
5720 resetmstate ();
5721 G.postRedisplay "kill accidental zoom rect";
5723 | Msel _
5724 | Mpan _
5725 | Mscrolly | Mscrollx
5726 | Mzoom _
5727 | Mnone ->
5728 resetmstate ()
5731 | 1 when x > state.winw - vscrollw () ->
5732 if down
5733 then
5734 let _, position, sh = state.uioh#scrollph in
5735 if y > truncate position && y < truncate (position +. sh)
5736 then state.mstate <- Mscrolly
5737 else scrolly y
5738 else
5739 state.mstate <- Mnone
5741 | 1 when y > state.winh - hscrollh () ->
5742 if down
5743 then
5744 let _, position, sw = state.uioh#scrollpw in
5745 if x > truncate position && x < truncate (position +. sw)
5746 then state.mstate <- Mscrollx
5747 else scrollx x
5748 else
5749 state.mstate <- Mnone
5751 | 1 when state.bzoom -> if not down then zoomblock x y
5753 | 1 ->
5754 let dest = if down then getunder x y else Unone in
5755 begin match dest with
5756 | Ulinkgoto _
5757 | Ulinkuri _
5758 | Uremote _ | Uremotedest _
5759 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5760 gotounder dest
5762 | Unone when down ->
5763 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5764 state.mstate <- Mpan (x, y);
5766 | Unone | Utext _ ->
5767 if down
5768 then (
5769 if canselect ()
5770 then (
5771 state.mstate <- Msel ((x, y), (x, y));
5772 G.postRedisplay "mouse select";
5775 else (
5776 match state.mstate with
5777 | Mnone -> ()
5779 | Mzoom _ | Mscrollx | Mscrolly ->
5780 state.mstate <- Mnone
5782 | Mzoomrect ((x0, y0), _) ->
5783 zoomrect x0 y0 x y
5785 | Mpan _ ->
5786 Wsi.setcursor Wsi.CURSOR_INHERIT;
5787 state.mstate <- Mnone
5789 | Msel ((x0, y0), (x1, y1)) ->
5790 let rec loop = function
5791 | [] -> ()
5792 | l :: rest ->
5793 let inside =
5794 let a0 = l.pagedispy in
5795 let a1 = a0 + l.pagevh in
5796 let b0 = l.pagedispx in
5797 let b1 = b0 + l.pagevw in
5798 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5799 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5801 if inside
5802 then
5803 match getopaque l.pageno with
5804 | Some opaque ->
5805 let dosel cmd () =
5806 match Ne.res Unix.pipe () with
5807 | Ne.Exn exn ->
5808 showtext '!'
5809 (Printf.sprintf
5810 "can not create sel pipe: %s"
5811 (exntos exn));
5812 | Ne.Res (r, w) ->
5813 let clo what fd =
5814 Ne.clo fd (fun msg ->
5815 dolog "%s close failed: %s" what msg)
5817 let popened =
5818 try popen cmd [r, 0; w, -1]; true
5819 with exn ->
5820 dolog "can not execute %S: %s"
5821 cmd (exntos exn);
5822 false
5824 if popened
5825 then (
5826 copysel w opaque;
5827 G.postRedisplay "copysel";
5829 else clo "Msel pipe/w" w;
5830 clo "Msel pipe/r" r;
5832 dosel conf.selcmd ();
5833 state.roam <- dosel conf.paxcmd;
5834 | None -> ()
5835 else loop rest
5837 loop state.layout;
5838 resetmstate ();
5842 | _ -> ()
5845 let birdseyemouse button down x y mask
5846 (conf, leftx, _, hooverpageno, anchor) =
5847 match button with
5848 | 1 when down ->
5849 let rec loop = function
5850 | [] -> ()
5851 | l :: rest ->
5852 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5853 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5854 then (
5855 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5857 else loop rest
5859 loop state.layout
5860 | 3 -> ()
5861 | _ -> viewmouse button down x y mask
5864 let uioh = object
5865 method display = ()
5867 method key key mask =
5868 begin match state.mode with
5869 | Textentry textentry -> textentrykeyboard key mask textentry
5870 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5871 | View -> viewkeyboard key mask
5872 | LinkNav linknav -> linknavkeyboard key mask linknav
5873 end;
5874 state.uioh
5876 method button button bstate x y mask =
5877 begin match state.mode with
5878 | LinkNav _
5879 | View -> viewmouse button bstate x y mask
5880 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5881 | Textentry _ -> ()
5882 end;
5883 state.uioh
5885 method multiclick clicks x y mask =
5886 begin match state.mode with
5887 | LinkNav _
5888 | View -> viewmulticlick clicks x y mask
5889 | Birdseye _
5890 | Textentry _ -> ()
5891 end;
5892 state.uioh
5894 method motion x y =
5895 begin match state.mode with
5896 | Textentry _ -> ()
5897 | View | Birdseye _ | LinkNav _ ->
5898 match state.mstate with
5899 | Mzoom _ | Mnone -> ()
5901 | Mpan (x0, y0) ->
5902 let dx = x - x0
5903 and dy = y0 - y in
5904 state.mstate <- Mpan (x, y);
5905 if canpan ()
5906 then state.x <- panbound (state.x + dx);
5907 let y = clamp dy in
5908 gotoy_and_clear_text y
5910 | Msel (a, _) ->
5911 state.mstate <- Msel (a, (x, y));
5912 G.postRedisplay "motion select";
5914 | Mscrolly ->
5915 let y = min state.winh (max 0 y) in
5916 scrolly y
5918 | Mscrollx ->
5919 let x = min state.winw (max 0 x) in
5920 scrollx x
5922 | Mzoomrect (p0, _) ->
5923 state.mstate <- Mzoomrect (p0, (x, y));
5924 G.postRedisplay "motion zoomrect";
5925 end;
5926 state.uioh
5928 method pmotion x y =
5929 begin match state.mode with
5930 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5931 let rec loop = function
5932 | [] ->
5933 if hooverpageno != -1
5934 then (
5935 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5936 G.postRedisplay "pmotion birdseye no hoover";
5938 | l :: rest ->
5939 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5940 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5941 then (
5942 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5943 G.postRedisplay "pmotion birdseye hoover";
5945 else loop rest
5947 loop state.layout
5949 | Textentry _ -> ()
5951 | LinkNav _
5952 | View ->
5953 match state.mstate with
5954 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5956 | Mnone ->
5957 updateunder x y;
5958 if canselect ()
5959 then
5960 match conf.pax with
5961 | None -> ()
5962 | Some r ->
5963 let past, _, _ = !r in
5964 let now = now () in
5965 let delta = now -. past in
5966 if delta > 0.01
5967 then paxunder x y
5968 else r := (now, x, y)
5969 end;
5970 state.uioh
5972 method infochanged _ = ()
5974 method scrollph =
5975 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
5976 let p, h =
5977 if maxy = 0
5978 then 0.0, float state.winh
5979 else scrollph state.y maxy
5981 vscrollw (), p, h
5983 method scrollpw =
5984 let winw = wadjsb state.winw in
5985 let fwinw = float winw in
5986 let sw =
5987 let sw = fwinw /. float state.w in
5988 let sw = fwinw *. sw in
5989 max sw (float conf.scrollh)
5991 let position =
5992 let maxx = state.w + winw in
5993 let x = winw - state.x in
5994 let percent = float x /. float maxx in
5995 (fwinw -. sw) *. percent
5997 hscrollh (), position, sw
5999 method modehash =
6000 let modename =
6001 match state.mode with
6002 | LinkNav _ -> "links"
6003 | Textentry _ -> "textentry"
6004 | Birdseye _ -> "birdseye"
6005 | View -> "view"
6007 findkeyhash conf modename
6009 method eformsgs = true
6010 end;;
6012 let adderrmsg src msg =
6013 Buffer.add_string state.errmsgs msg;
6014 state.newerrmsgs <- true;
6015 G.postRedisplay src
6018 let adderrfmt src fmt =
6019 Format.kprintf (fun s -> adderrmsg src s) fmt;
6022 let ract cmds =
6023 let cl = splitatspace cmds in
6024 let scan s fmt f =
6025 try Scanf.sscanf s fmt f
6026 with exn ->
6027 adderrfmt "remote exec"
6028 "error processing '%S': %s\n" cmds (exntos exn)
6030 match cl with
6031 | "reload" :: [] -> reload ()
6032 | "goto" :: args :: [] ->
6033 scan args "%u %f %f"
6034 (fun pageno x y ->
6035 let cmd, _ = state.geomcmds in
6036 if emptystr cmd
6037 then gotopagexy pageno x y
6038 else
6039 let f prevf () =
6040 gotopagexy pageno x y;
6041 prevf ()
6043 state.reprf <- f state.reprf
6045 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
6046 | "gotor" :: args :: [] ->
6047 scan args "%S %u"
6048 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
6049 | "gotord" :: args :: [] ->
6050 scan args "%S %S"
6051 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
6052 | "rect" :: args :: [] ->
6053 scan args "%u %u %f %f %f %f"
6054 (fun pageno color x0 y0 x1 y1 ->
6055 onpagerect pageno (fun w h ->
6056 let _,w1,h1,_ = getpagedim pageno in
6057 let sw = float w1 /. float w
6058 and sh = float h1 /. float h in
6059 let x0s = x0 *. sw
6060 and x1s = x1 *. sw
6061 and y0s = y0 *. sh
6062 and y1s = y1 *. sh in
6063 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
6064 debugrect rect;
6065 state.rects <- (pageno, color, rect) :: state.rects;
6066 G.postRedisplay "rect";
6069 | "activatewin" :: [] -> Wsi.activatewin ()
6070 | "quit" :: [] -> raise Quit
6071 | _ ->
6072 adderrfmt "remote command"
6073 "error processing remote command: %S\n" cmds;
6076 let remote =
6077 let scratch = String.create 80 in
6078 let buf = Buffer.create 80 in
6079 fun fd ->
6080 let rec tempfr () =
6081 try Some (Unix.read fd scratch 0 80)
6082 with
6083 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
6084 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
6085 | exn -> raise exn
6087 match tempfr () with
6088 | None -> Some fd
6089 | Some n ->
6090 if n = 0
6091 then (
6092 Unix.close fd;
6093 if Buffer.length buf > 0
6094 then (
6095 let s = Buffer.contents buf in
6096 Buffer.clear buf;
6097 ract s;
6099 None
6101 else
6102 let rec eat ppos =
6103 let nlpos =
6105 let pos = String.index_from scratch ppos '\n' in
6106 if pos >= n then -1 else pos
6107 with Not_found -> -1
6109 if nlpos >= 0
6110 then (
6111 Buffer.add_substring buf scratch ppos (nlpos-ppos);
6112 let s = Buffer.contents buf in
6113 Buffer.clear buf;
6114 ract s;
6115 eat (nlpos+1);
6117 else (
6118 Buffer.add_substring buf scratch ppos (n-ppos);
6119 Some fd
6121 in eat 0
6124 let remoteopen path =
6125 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
6126 with exn ->
6127 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
6128 None
6131 let () =
6132 let gcconfig = ref E.s in
6133 let trimcachepath = ref E.s in
6134 let rcmdpath = ref E.s in
6135 let pageno = ref None in
6136 let rootwid = ref 0 in
6137 let openlast = ref false in
6138 selfexec := Sys.executable_name;
6139 Arg.parse
6140 (Arg.align
6141 [("-p", Arg.String (fun s -> state.password <- s),
6142 "<password> Set password");
6144 ("-f", Arg.String
6145 (fun s ->
6146 Config.fontpath := s;
6147 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
6149 "<path> Set path to the user interface font");
6151 ("-c", Arg.String
6152 (fun s ->
6153 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
6154 Config.confpath := s),
6155 "<path> Set path to the configuration file");
6157 ("-last", Arg.Set openlast, " open last document");
6159 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
6160 "<page-number> Jump to page");
6162 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6163 "<path> Set path to the trim cache file");
6165 ("-dest", Arg.String (fun s -> state.nameddest <- s),
6166 "<named-destination> Set named destination");
6168 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
6169 ("-cxack", Arg.Set cxack, " Cut corners");
6171 ("-remote", Arg.String (fun s -> rcmdpath := s),
6172 "<path> Set path to the remote commands source");
6174 ("-origin", Arg.String (fun s -> state.origin <- s),
6175 "<original-path> Set original path");
6177 ("-gc", Arg.Set_string gcconfig,
6178 "<script-path> Collect garbage with the help of a script");
6180 ("-v", Arg.Unit (fun () ->
6181 Printf.printf
6182 "%s\nconfiguration path: %s\n"
6183 (version ())
6184 Config.defconfpath
6186 exit 0), " Print version and exit");
6188 ("-embed", Arg.Set_int rootwid,
6189 "<window-id> Embed into window")
6192 (fun s -> state.path <- s)
6193 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6195 if !wtmode
6196 then selfexec := !selfexec ^ " -wtmode";
6198 let histmode = emptystr state.path && not !openlast in
6200 if not (Config.load !openlast)
6201 then prerr_endline "failed to load configuration";
6202 begin match !pageno with
6203 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
6204 | None -> ()
6205 end;
6207 if not (emptystr !gcconfig)
6208 then (
6209 let c, s =
6210 match Ne.res (Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM) 0 with
6211 | Ne.Exn exn ->
6212 error "gc socketpair failed: %s" (exntos exn)
6213 | Ne.Res rw -> rw
6215 match Ne.res (popen !gcconfig) [(c, 0); (c, 1)] with
6216 | Ne.Res () ->
6217 Config.gc s s;
6218 exit 0
6219 | Ne.Exn exn ->
6220 error "failed to popen gc script: %s" (exntos exn);
6223 let wsfd, winw, winh = Wsi.init (object (self)
6224 val mutable m_clicks = 0
6225 val mutable m_click_x = 0
6226 val mutable m_click_y = 0
6227 val mutable m_lastclicktime = infinity
6229 method private cleanup =
6230 state.roam <- noroam;
6231 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap
6232 method expose = G.postRedisplay"expose"
6233 method visible v =
6234 let name =
6235 match v with
6236 | Wsi.Unobscured -> "unobscured"
6237 | Wsi.PartiallyObscured -> "partiallyobscured"
6238 | Wsi.FullyObscured -> "fullyobscured"
6240 vlog "visibility change %s" name
6241 method display = display ()
6242 method map mapped = vlog "mappped %b" mapped
6243 method reshape w h =
6244 self#cleanup;
6245 reshape w h
6246 method mouse b d x y m =
6247 if d && canselect ()
6248 then (
6249 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
6250 m_click_x <- x;
6251 m_click_y <- y;
6252 if b = 1
6253 then (
6254 let t = now () in
6255 if abs x - m_click_x > 10
6256 || abs y - m_click_y > 10
6257 || abs_float (t -. m_lastclicktime) > 0.3
6258 then m_clicks <- 0;
6259 m_clicks <- m_clicks + 1;
6260 m_lastclicktime <- t;
6261 if m_clicks = 1
6262 then (
6263 self#cleanup;
6264 G.postRedisplay "cleanup";
6265 state.uioh <- state.uioh#button b d x y m;
6267 else state.uioh <- state.uioh#multiclick m_clicks x y m
6269 else (
6270 self#cleanup;
6271 m_clicks <- 0;
6272 m_lastclicktime <- infinity;
6273 state.uioh <- state.uioh#button b d x y m
6276 else (
6277 state.uioh <- state.uioh#button b d x y m
6279 method motion x y =
6280 state.mpos <- (x, y);
6281 state.uioh <- state.uioh#motion x y
6282 method pmotion x y =
6283 state.mpos <- (x, y);
6284 state.uioh <- state.uioh#pmotion x y
6285 method key k m =
6286 let mascm = m land (
6287 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6288 ) in
6289 let keyboard k m =
6290 let x = state.x and y = state.y in
6291 keyboard k m;
6292 if x != state.x || y != state.y then self#cleanup
6294 match state.keystate with
6295 | KSnone ->
6296 let km = k, mascm in
6297 begin
6298 match
6299 let modehash = state.uioh#modehash in
6300 try Hashtbl.find modehash km
6301 with Not_found ->
6302 try Hashtbl.find (findkeyhash conf "global") km
6303 with Not_found -> KMinsrt (k, m)
6304 with
6305 | KMinsrt (k, m) -> keyboard k m
6306 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6307 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6309 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6310 List.iter (fun (k, m) -> keyboard k m) insrt;
6311 state.keystate <- KSnone
6312 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6313 state.keystate <- KSinto (keys, insrt)
6314 | KSinto _ -> state.keystate <- KSnone
6316 method enter x y =
6317 state.mpos <- (x, y);
6318 state.uioh <- state.uioh#pmotion x y
6319 method leave = state.mpos <- (-1, -1)
6320 method winstate wsl = state.winstate <- wsl
6321 method quit = raise Quit
6322 end) !rootwid conf.cwinw conf.cwinh (platform = Posx) in
6324 state.wsfd <- wsfd;
6326 if not (
6327 List.exists GlMisc.check_extension
6328 [ "GL_ARB_texture_rectangle"
6329 ; "GL_EXT_texture_recangle"
6330 ; "GL_NV_texture_rectangle" ]
6332 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6334 if (
6335 let r = GlMisc.get_string `renderer in
6336 let p = "Mesa DRI Intel(" in
6337 let l = String.length p in
6338 String.length r > l && String.sub r 0 l = p
6340 then (
6341 defconf.sliceheight <- 1024;
6342 defconf.texcount <- 32;
6343 defconf.usepbo <- true;
6346 let cs, ss =
6347 match Ne.res (Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM) 0 with
6348 | Ne.Exn exn ->
6349 Printf.eprintf "socketpair failed: %s" (exntos exn);
6350 exit 1
6351 | Ne.Res (r, w) ->
6352 cloexec r;
6353 cloexec w;
6354 r, w
6357 setcheckers conf.checkers;
6358 redirectstderr ();
6359 if conf.redirectstderr
6360 then
6361 at_exit (fun () ->
6362 let s = Buffer.contents state.errmsgs ^
6363 (match state.errfd with
6364 | Some fd ->
6365 let s = String.create (80*24) in
6366 let n =
6368 let r, _, _ = Unix.select [fd] [] [] 0.0 in
6369 if List.mem fd r
6370 then Unix.read fd s 0 (String.length s)
6371 else 0
6372 with _ -> 0
6374 if n = 0
6375 then E.s
6376 else String.sub s 0 n
6377 | None -> E.s
6380 try ignore (Unix.write state.stderr s 0 (String.length s))
6381 with exn -> print_endline (exntos exn)
6385 init cs (
6386 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
6387 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6388 !Config.fontpath, !trimcachepath,
6389 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
6391 List.iter GlArray.enable [`texture_coord; `vertex];
6392 state.ss <- ss;
6393 reshape winw winh;
6394 if histmode
6395 then (
6396 state.uioh <- uioh;
6397 Wsi.settitle "llpp (history)";
6398 enterhistmode ();
6400 else (
6401 state.text <- "Opening " ^ (mbtoutf8 state.path);
6402 opendoc state.path state.password;
6403 state.uioh <- uioh;
6405 display ();
6406 Wsi.mapwin ();
6407 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
6408 let optrfd =
6409 ref (
6410 if nonemptystr !rcmdpath
6411 then remoteopen !rcmdpath
6412 else None
6416 let rec loop deadline =
6417 let r =
6418 match state.errfd with
6419 | None -> [state.ss; state.wsfd]
6420 | Some fd -> [state.ss; state.wsfd; fd]
6422 let r =
6423 match !optrfd with
6424 | None -> r
6425 | Some fd -> fd :: r
6427 if state.redisplay
6428 then (
6429 state.redisplay <- false;
6430 display ();
6432 let timeout =
6433 let now = now () in
6434 if deadline > now
6435 then (
6436 if deadline = infinity
6437 then ~-.1.0
6438 else max 0.0 (deadline -. now)
6440 else 0.0
6442 let r, _, _ =
6443 try Unix.select r [] [] timeout
6444 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
6446 begin match r with
6447 | [] ->
6448 state.ghyll None;
6449 let newdeadline =
6450 if state.ghyll == noghyll
6451 then
6452 match state.autoscroll with
6453 | Some step when step != 0 ->
6454 let y = state.y + step in
6455 let y =
6456 if y < 0
6457 then state.maxy
6458 else if y >= state.maxy then 0 else y
6460 gotoy y;
6461 if state.mode = View
6462 then state.text <- E.s;
6463 deadline +. 0.01
6464 | _ -> infinity
6465 else deadline +. 0.01
6467 loop newdeadline
6469 | l ->
6470 let rec checkfds = function
6471 | [] -> ()
6472 | fd :: rest when fd = state.ss ->
6473 let cmd = readcmd state.ss in
6474 act cmd;
6475 checkfds rest
6477 | fd :: rest when fd = state.wsfd ->
6478 Wsi.readresp fd;
6479 checkfds rest
6481 | fd :: rest when Some fd = !optrfd ->
6482 begin match remote fd with
6483 | None -> optrfd := remoteopen !rcmdpath;
6484 | opt -> optrfd := opt
6485 end;
6486 checkfds rest
6488 | fd :: rest ->
6489 let s = String.create 80 in
6490 let n = tempfailureretry (Unix.read fd s 0) 80 in
6491 if conf.redirectstderr
6492 then (
6493 Buffer.add_substring state.errmsgs s 0 n;
6494 state.newerrmsgs <- true;
6495 state.redisplay <- true;
6497 else (
6498 prerr_string (String.sub s 0 n);
6499 flush stderr;
6501 checkfds rest
6503 checkfds l;
6504 if !reeenterhist then (
6505 enterhistmode ();
6506 reeenterhist := false;
6508 let newdeadline =
6509 let deadline1 =
6510 if deadline = infinity
6511 then now () +. 0.01
6512 else deadline
6514 match state.autoscroll with
6515 | Some step when step != 0 -> deadline1
6516 | _ -> if state.ghyll == noghyll then infinity else deadline1
6518 loop newdeadline
6519 end;
6522 loop infinity;
6523 with Quit ->
6524 Config.save leavebirdseye;