Minus one line
[llpp.git] / main.ml
blobf8fcc880016208a432bda229e0c3552e7b85899a
1 open Utils;;
3 exception Quit;;
5 type under =
6 | Unone
7 | Ulinkuri of string
8 | Ulinkgoto of (int * int)
9 | Utext of facename
10 | Uunexpected of string
11 | Ulaunch of string
12 | Unamed of string
13 | Uremote of (string * int)
14 and facename = string;;
16 type params = (angle * proportional * trimparams
17 * texcount * sliceheight * memsize
18 * colorspace * fontpath * trimcachepath
19 * haspbo)
20 and pageno = int
21 and width = int
22 and height = int
23 and leftx = int
24 and opaque = string
25 and recttype = int
26 and pixmapsize = int
27 and angle = int
28 and proportional = bool
29 and trimmargins = bool
30 and interpagespace = int
31 and texcount = int
32 and sliceheight = int
33 and gen = int
34 and top = float
35 and dtop = float
36 and fontpath = string
37 and trimcachepath = string
38 and memsize = int
39 and aalevel = int
40 and irect = (int * int * int * int)
41 and trimparams = (trimmargins * irect)
42 and colorspace = | Rgb | Bgr | Gray
43 and haspbo = bool
46 type x = int
47 and y = int
48 and tilex = int
49 and tiley = int
50 and tileparams = (x * y * width * height * tilex * tiley)
53 type link =
54 | Lnotfound
55 | Lfound of int
56 and linkdir =
57 | LDfirst
58 | LDlast
59 | LDfirstvisible of (int * int * int)
60 | LDleft of int
61 | LDright of int
62 | LDdown of int
63 | LDup of int
66 type pagewithlinks =
67 | Pwlnotfound
68 | Pwl of int
71 type keymap =
72 | KMinsrt of key
73 | KMinsrl of key list
74 | KMmulti of key list * key list
75 and key = int * int
76 and keyhash = (key, keymap) Hashtbl.t
77 and keystate =
78 | KSnone
79 | KSinto of (key list * key list)
82 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
83 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
85 type pipe = (Unix.file_descr * Unix.file_descr);;
87 external init : pipe -> params -> unit = "ml_init";;
88 external seltext : string -> (int * int * int * int) -> unit = "ml_seltext";;
89 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
90 external getpdimrect : int -> float array = "ml_getpdimrect";;
91 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
92 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
93 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
94 external measurestr : int -> string -> float = "ml_measure_string";;
95 external getmaxw : unit -> float = "ml_getmaxw";;
96 external postprocess :
97 opaque -> int -> int -> int -> (int * string * int) -> int
98 = "ml_postprocess";;
99 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
100 external platform : unit -> platform = "ml_platform";;
101 external setaalevel : int -> unit = "ml_setaalevel";;
102 external realloctexts : int -> bool = "ml_realloctexts";;
103 external findlink : opaque -> linkdir -> link = "ml_findlink";;
104 external getlink : opaque -> int -> under = "ml_getlink";;
105 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
106 external getlinkcount : opaque -> int = "ml_getlinkcount";;
107 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
108 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
109 external getpbo : width -> height -> colorspace -> string = "ml_getpbo";;
110 external freepbo : string -> unit = "ml_freepbo";;
111 external unmappbo : string -> unit = "ml_unmappbo";;
112 external pbousable : unit -> bool = "ml_pbo_usable";;
113 external unproject : opaque -> int -> int -> (int * int) option
114 = "ml_unproject";;
115 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
117 let platform_to_string = function
118 | Punknown -> "unknown"
119 | Plinux -> "Linux"
120 | Posx -> "OSX"
121 | Psun -> "Sun"
122 | Pfreebsd -> "FreeBSD"
123 | Pdragonflybsd -> "DragonflyBSD"
124 | Popenbsd -> "OpenBSD"
125 | Pnetbsd -> "NetBSD"
126 | Pcygwin -> "Cygwin"
129 let platform = platform ();;
131 let now = Unix.gettimeofday;;
133 let popen cmd fda =
134 if platform = Pcygwin
135 then (
136 let sh = "/bin/sh" in
137 let args = [|sh; "-c"; cmd|] in
138 let rec std si so se = function
139 | [] -> si, so, se
140 | (fd, 0) :: rest -> std fd so se rest
141 | (fd, -1) :: rest ->
142 Unix.set_close_on_exec fd;
143 std si so se rest
144 | (_, n) :: _ ->
145 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
147 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
148 ignore (Unix.create_process sh args si so se)
150 else popen cmd fda;
153 type mpos = int * int
154 and mstate =
155 | Msel of (mpos * mpos)
156 | Mpan of mpos
157 | Mscrolly | Mscrollx
158 | Mzoom of (int * int)
159 | Mzoomrect of (mpos * mpos)
160 | Mnone
163 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
164 and onkey = string -> int -> te
165 and ondone = string -> unit
166 and histcancel = unit -> unit
167 and onhist = ((histcmd -> string) * histcancel)
168 and histcmd = HCnext | HCprev | HCfirst | HClast
169 and cancelonempty = bool
170 and te =
171 | TEstop
172 | TEdone of string
173 | TEcont of string
174 | TEswitch of textentry
177 type 'a circbuf =
178 { store : 'a array
179 ; mutable rc : int
180 ; mutable wc : int
181 ; mutable len : int
185 let bound v minv maxv =
186 max minv (min maxv v);
189 let cbnew n v =
190 { store = Array.create n v
191 ; rc = 0
192 ; wc = 0
193 ; len = 0
197 let cbcap b = Array.length b.store;;
199 let cbput b v =
200 let cap = cbcap b in
201 b.store.(b.wc) <- v;
202 b.wc <- (b.wc + 1) mod cap;
203 b.rc <- b.wc;
204 b.len <- min (b.len + 1) cap;
207 let cbempty b = b.len = 0;;
209 let cbgetg b circular dir =
210 if cbempty b
211 then b.store.(0)
212 else
213 let rc = b.rc + dir in
214 let rc =
215 if circular
216 then (
217 if rc = -1
218 then b.len-1
219 else (
220 if rc >= b.len
221 then 0
222 else rc
225 else bound rc 0 (b.len-1)
227 b.rc <- rc;
228 b.store.(rc);
231 let cbget b = cbgetg b false;;
232 let cbgetc b = cbgetg b true;;
234 let drawstring size x y s =
235 Gl.enable `blend;
236 Gl.enable `texture_2d;
237 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
238 ignore (drawstr size x y s);
239 Gl.disable `blend;
240 Gl.disable `texture_2d;
243 let drawstring1 size x y s =
244 drawstr size x y s;
247 let drawstring2 size x y fmt =
248 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
251 type page =
252 { pageno : int
253 ; pagedimno : int
254 ; pagew : int
255 ; pageh : int
256 ; pagex : int
257 ; pagey : int
258 ; pagevw : int
259 ; pagevh : int
260 ; pagedispx : int
261 ; pagedispy : int
262 ; pagecol : int
266 let debugl l =
267 dolog "l %d dim=%d {" l.pageno l.pagedimno;
268 dolog " WxH %dx%d" l.pagew l.pageh;
269 dolog " vWxH %dx%d" l.pagevw l.pagevh;
270 dolog " pagex,y %d,%d" l.pagex l.pagey;
271 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
272 dolog " column %d" l.pagecol;
273 dolog "}";
276 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
277 dolog "rect {";
278 dolog " x0,y0=(% f, % f)" x0 y0;
279 dolog " x1,y1=(% f, % f)" x1 y1;
280 dolog " x2,y2=(% f, % f)" x2 y2;
281 dolog " x3,y3=(% f, % f)" x3 y3;
282 dolog "}";
285 type multicolumns = multicol * pagegeom
286 and singlecolumn = pagegeom
287 and splitcolumns = columncount * pagegeom
288 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
289 and multicol = columncount * covercount * covercount
290 and pdimno = int
291 and columncount = int
292 and covercount = int;;
294 type conf =
295 { mutable scrollbw : int
296 ; mutable scrollh : int
297 ; mutable icase : bool
298 ; mutable preload : bool
299 ; mutable pagebias : int
300 ; mutable verbose : bool
301 ; mutable debug : bool
302 ; mutable scrollstep : int
303 ; mutable hscrollstep : int
304 ; mutable maxhfit : bool
305 ; mutable crophack : bool
306 ; mutable autoscrollstep : int
307 ; mutable maxwait : float option
308 ; mutable hlinks : bool
309 ; mutable underinfo : bool
310 ; mutable interpagespace : interpagespace
311 ; mutable zoom : float
312 ; mutable presentation : bool
313 ; mutable angle : angle
314 ; mutable cwinw : int
315 ; mutable cwinh : int
316 ; mutable savebmarks : bool
317 ; mutable proportional : proportional
318 ; mutable trimmargins : trimmargins
319 ; mutable trimfuzz : irect
320 ; mutable memlimit : memsize
321 ; mutable texcount : texcount
322 ; mutable sliceheight : sliceheight
323 ; mutable thumbw : width
324 ; mutable jumpback : bool
325 ; mutable bgcolor : float * float * float
326 ; mutable bedefault : bool
327 ; mutable scrollbarinpm : bool
328 ; mutable tilew : int
329 ; mutable tileh : int
330 ; mutable mustoresize : memsize
331 ; mutable checkers : bool
332 ; mutable aalevel : int
333 ; mutable urilauncher : string
334 ; mutable pathlauncher : string
335 ; mutable colorspace : colorspace
336 ; mutable invert : bool
337 ; mutable colorscale : float
338 ; mutable redirectstderr : bool
339 ; mutable ghyllscroll : (int * int * int) option
340 ; mutable columns : columns
341 ; mutable beyecolumns : columncount option
342 ; mutable selcmd : string
343 ; mutable updatecurs : bool
344 ; mutable keyhashes : (string * keyhash) list
345 ; mutable hfsize : int
346 ; mutable pgscale : float
347 ; mutable usepbo : bool
348 ; mutable wheelbypage : bool
349 ; mutable stcmd : string
351 and columns =
352 | Csingle of singlecolumn
353 | Cmulti of multicolumns
354 | Csplit of splitcolumns
357 type anchor = pageno * top * dtop;;
359 type outline = string * int * anchor;;
361 type rect = float * float * float * float * float * float * float * float;;
363 type tile = opaque * pixmapsize * elapsed
364 and elapsed = float;;
365 type pagemapkey = pageno * gen;;
366 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
367 and row = int
368 and col = int;;
370 let emptyanchor = (0, 0.0, 0.0);;
372 type infochange = | Memused | Docinfo | Pdim;;
374 class type uioh = object
375 method display : unit
376 method key : int -> int -> uioh
377 method button : int -> bool -> int -> int -> int -> uioh
378 method motion : int -> int -> uioh
379 method pmotion : int -> int -> uioh
380 method infochanged : infochange -> unit
381 method scrollpw : (int * float * float)
382 method scrollph : (int * float * float)
383 method modehash : keyhash
384 end;;
386 type mode =
387 | Birdseye of (conf * leftx * pageno * pageno * anchor)
388 | Textentry of (textentry * onleave)
389 | View
390 | LinkNav of linktarget
391 and onleave = leavetextentrystatus -> unit
392 and leavetextentrystatus = | Cancel | Confirm
393 and helpitem = string * int * action
394 and action =
395 | Noaction
396 | Action of (uioh -> uioh)
397 and linktarget =
398 | Ltexact of (pageno * int)
399 | Ltgendir of int
402 let isbirdseye = function Birdseye _ -> true | _ -> false;;
403 let istextentry = function Textentry _ -> true | _ -> false;;
405 type currently =
406 | Idle
407 | Loading of (page * gen)
408 | Tiling of (
409 page * opaque * colorspace * angle * gen * col * row * width * height
411 | Outlining of outline list
414 let emptykeyhash = Hashtbl.create 0;;
415 let nouioh : uioh = object (self)
416 method display = ()
417 method key _ _ = self
418 method button _ _ _ _ _ = self
419 method motion _ _ = self
420 method pmotion _ _ = self
421 method infochanged _ = ()
422 method scrollpw = (0, nan, nan)
423 method scrollph = (0, nan, nan)
424 method modehash = emptykeyhash
425 end;;
427 type state =
428 { mutable sr : Unix.file_descr
429 ; mutable sw : Unix.file_descr
430 ; mutable wsfd : Unix.file_descr
431 ; mutable errfd : Unix.file_descr option
432 ; mutable stderr : Unix.file_descr
433 ; mutable errmsgs : Buffer.t
434 ; mutable newerrmsgs : bool
435 ; mutable w : int
436 ; mutable x : int
437 ; mutable y : int
438 ; mutable scrollw : int
439 ; mutable hscrollh : int
440 ; mutable anchor : anchor
441 ; mutable ranchors : (string * string * anchor) list
442 ; mutable maxy : int
443 ; mutable layout : page list
444 ; pagemap : (pagemapkey, opaque) Hashtbl.t
445 ; tilemap : (tilemapkey, tile) Hashtbl.t
446 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
447 ; mutable pdims : (pageno * width * height * leftx) list
448 ; mutable pagecount : int
449 ; mutable currently : currently
450 ; mutable mstate : mstate
451 ; mutable searchpattern : string
452 ; mutable rects : (pageno * recttype * rect) list
453 ; mutable rects1 : (pageno * recttype * rect) list
454 ; mutable text : string
455 ; mutable winstate : Wsi.winstate list
456 ; mutable mode : mode
457 ; mutable uioh : uioh
458 ; mutable outlines : outline array
459 ; mutable bookmarks : outline list
460 ; mutable path : string
461 ; mutable password : string
462 ; mutable nameddest : string
463 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
464 ; mutable memused : memsize
465 ; mutable gen : gen
466 ; mutable throttle : (page list * int * float) option
467 ; mutable autoscroll : int option
468 ; mutable ghyll : (int option -> unit)
469 ; mutable help : helpitem array
470 ; mutable docinfo : (int * string) list
471 ; mutable texid : GlTex.texture_id option
472 ; hists : hists
473 ; mutable prevzoom : float
474 ; mutable progress : float
475 ; mutable redisplay : bool
476 ; mutable mpos : mpos
477 ; mutable keystate : keystate
478 ; mutable glinks : bool
479 ; mutable prevcolumns : (columns * float) option
480 ; mutable wthack : bool
481 ; mutable winw : int
482 ; mutable winh : int
483 ; mutable reprf : (unit -> unit)
485 and hists =
486 { pat : string circbuf
487 ; pag : string circbuf
488 ; nav : anchor circbuf
489 ; sel : string circbuf
493 let defconf =
494 { scrollbw = 7
495 ; scrollh = 12
496 ; icase = true
497 ; preload = true
498 ; pagebias = 0
499 ; verbose = false
500 ; debug = false
501 ; scrollstep = 24
502 ; hscrollstep = 24
503 ; maxhfit = true
504 ; crophack = false
505 ; autoscrollstep = 2
506 ; maxwait = None
507 ; hlinks = false
508 ; underinfo = false
509 ; interpagespace = 2
510 ; zoom = 1.0
511 ; presentation = false
512 ; angle = 0
513 ; cwinw = 900
514 ; cwinh = 900
515 ; savebmarks = true
516 ; proportional = true
517 ; trimmargins = false
518 ; trimfuzz = (0,0,0,0)
519 ; memlimit = 32 lsl 20
520 ; texcount = 256
521 ; sliceheight = 24
522 ; thumbw = 76
523 ; jumpback = true
524 ; bgcolor = (0.5, 0.5, 0.5)
525 ; bedefault = false
526 ; scrollbarinpm = true
527 ; tilew = 2048
528 ; tileh = 2048
529 ; mustoresize = 256 lsl 20
530 ; checkers = true
531 ; aalevel = 8
532 ; urilauncher =
533 (match platform with
534 | Plinux | Pfreebsd | Pdragonflybsd
535 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
536 | Posx -> "open \"%s\""
537 | Pcygwin -> "cygstart \"%s\""
538 | Punknown -> "echo %s")
539 ; pathlauncher = "lp \"%s\""
540 ; selcmd =
541 (match platform with
542 | Plinux | Pfreebsd | Pdragonflybsd
543 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
544 | Posx -> "pbcopy"
545 | Pcygwin -> "wsel"
546 | Punknown -> "cat")
547 ; colorspace = Rgb
548 ; invert = false
549 ; colorscale = 1.0
550 ; redirectstderr = false
551 ; ghyllscroll = None
552 ; columns = Csingle [||]
553 ; beyecolumns = None
554 ; updatecurs = false
555 ; hfsize = 12
556 ; pgscale = 1.0
557 ; usepbo = false
558 ; wheelbypage = false
559 ; stcmd = "echo SyncTex"
560 ; keyhashes =
561 let mk n = (n, Hashtbl.create 1) in
562 [ mk "global"
563 ; mk "info"
564 ; mk "help"
565 ; mk "outline"
566 ; mk "listview"
567 ; mk "birdseye"
568 ; mk "textentry"
569 ; mk "links"
570 ; mk "view"
575 let wtmode = ref false;;
577 let findkeyhash c name =
578 try List.assoc name c.keyhashes
579 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
582 let conf = { defconf with angle = defconf.angle };;
584 let pgscale h = truncate (float h *. conf.pgscale);;
586 type fontstate =
587 { mutable fontsize : int
588 ; mutable wwidth : float
589 ; mutable maxrows : int
593 let fstate =
594 { fontsize = 14
595 ; wwidth = nan
596 ; maxrows = -1
600 let geturl s =
601 let colonpos = try String.index s ':' with Not_found -> -1 in
602 let len = String.length s in
603 if colonpos >= 0 && colonpos + 3 < len
604 then (
605 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
606 then
607 let schemestartpos =
608 try String.rindex_from s colonpos ' '
609 with Not_found -> -1
611 let scheme =
612 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
614 match scheme with
615 | "http" | "ftp" | "mailto" ->
616 let epos =
617 try String.index_from s colonpos ' '
618 with Not_found -> len
620 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
621 | _ -> ""
622 else ""
624 else ""
627 let gotouri uri =
628 if String.length conf.urilauncher = 0
629 then print_endline uri
630 else (
631 let url = geturl uri in
632 if String.length url = 0
633 then print_endline uri
634 else
635 let re = Str.regexp "%s" in
636 let command = Str.global_replace re url conf.urilauncher in
637 try popen command []
638 with exn ->
639 Printf.eprintf
640 "failed to execute `%s': %s\n" command (exntos exn);
641 flush stderr;
645 let version () =
646 Printf.sprintf "llpp version %s (%s/%dbit, ocaml %s)" Help.version
647 (platform_to_string platform) Sys.word_size Sys.ocaml_version
650 let makehelp () =
651 let strings = version () :: "" :: Help.keys in
652 Array.of_list (
653 List.map (fun s ->
654 let url = geturl s in
655 if String.length url > 0
656 then (s, 0, Action (fun u -> gotouri url; u))
657 else (s, 0, Noaction)
658 ) strings);
661 let noghyll _ = ();;
662 let firstgeomcmds = "", [];;
663 let noreprf () = ();;
665 let state =
666 { sr = Unix.stdin
667 ; sw = Unix.stdin
668 ; wsfd = Unix.stdin
669 ; errfd = None
670 ; stderr = Unix.stderr
671 ; errmsgs = Buffer.create 0
672 ; newerrmsgs = false
673 ; x = 0
674 ; y = 0
675 ; w = 0
676 ; scrollw = 0
677 ; hscrollh = 0
678 ; anchor = emptyanchor
679 ; ranchors = []
680 ; layout = []
681 ; maxy = max_int
682 ; tilelru = Queue.create ()
683 ; pagemap = Hashtbl.create 10
684 ; tilemap = Hashtbl.create 10
685 ; pdims = []
686 ; pagecount = 0
687 ; currently = Idle
688 ; mstate = Mnone
689 ; rects = []
690 ; rects1 = []
691 ; text = ""
692 ; mode = View
693 ; winstate = []
694 ; searchpattern = ""
695 ; outlines = [||]
696 ; bookmarks = []
697 ; path = ""
698 ; password = ""
699 ; nameddest = ""
700 ; geomcmds = firstgeomcmds
701 ; hists =
702 { nav = cbnew 10 emptyanchor
703 ; pat = cbnew 10 ""
704 ; pag = cbnew 10 ""
705 ; sel = cbnew 10 ""
707 ; memused = 0
708 ; gen = 0
709 ; throttle = None
710 ; autoscroll = None
711 ; ghyll = noghyll
712 ; help = makehelp ()
713 ; docinfo = []
714 ; texid = None
715 ; prevzoom = 1.0
716 ; progress = -1.0
717 ; uioh = nouioh
718 ; redisplay = true
719 ; mpos = (-1, -1)
720 ; keystate = KSnone
721 ; glinks = false
722 ; prevcolumns = None
723 ; wthack = false
724 ; winw = -1
725 ; winh = -1
726 ; reprf = noreprf
730 let setfontsize n =
731 fstate.fontsize <- n;
732 fstate.wwidth <- measurestr fstate.fontsize "w";
733 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
736 let vlog fmt =
737 if conf.verbose
738 then
739 Printf.kprintf prerr_endline fmt
740 else
741 Printf.kprintf ignore fmt
744 let launchpath () =
745 if String.length conf.pathlauncher = 0
746 then print_endline state.path
747 else (
748 let re = Str.regexp "%s" in
749 let command = Str.global_replace re state.path conf.pathlauncher in
750 try popen command []
751 with exn ->
752 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
753 flush stderr;
757 module Ne = struct
758 type 'a t = | Res of 'a | Exn of exn;;
760 let pipe () =
761 try Res (Unix.pipe ())
762 with exn -> Exn exn
765 let clo fd f =
766 try tempfailureretry Unix.close fd
767 with exn -> f (exntos exn)
770 let dup fd =
771 try Res (tempfailureretry Unix.dup fd)
772 with exn -> Exn exn
775 let dup2 fd1 fd2 =
776 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
777 with exn -> Exn exn
779 end;;
781 let redirectstderr () =
782 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
783 if conf.redirectstderr
784 then
785 match Ne.pipe () with
786 | Ne.Exn exn ->
787 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
789 | Ne.Res (r, w) ->
790 begin match Ne.dup Unix.stderr with
791 | Ne.Exn exn ->
792 dolog "failed to dup stderr: %s" (exntos exn);
793 Ne.clo r (clofail "pipe/r");
794 Ne.clo w (clofail "pipe/w");
796 | Ne.Res dupstderr ->
797 begin match Ne.dup2 w Unix.stderr with
798 | Ne.Exn exn ->
799 dolog "failed to dup2 to stderr: %s" (exntos exn);
800 Ne.clo dupstderr (clofail "stderr duplicate");
801 Ne.clo r (clofail "redir pipe/r");
802 Ne.clo w (clofail "redir pipe/w");
804 | Ne.Res () ->
805 state.stderr <- dupstderr;
806 state.errfd <- Some r;
807 end;
809 else (
810 state.newerrmsgs <- false;
811 begin match state.errfd with
812 | Some fd ->
813 begin match Ne.dup2 state.stderr Unix.stderr with
814 | Ne.Exn exn ->
815 dolog "failed to dup2 original stderr: %s" (exntos exn)
816 | Ne.Res () ->
817 Ne.clo fd (clofail "dup of stderr");
818 state.errfd <- None;
819 end;
820 | None -> ()
821 end;
822 prerr_string (Buffer.contents state.errmsgs);
823 flush stderr;
824 Buffer.clear state.errmsgs;
828 module G =
829 struct
830 let postRedisplay who =
831 if conf.verbose
832 then prerr_endline ("redisplay for " ^ who);
833 state.redisplay <- true;
835 end;;
837 let getopaque pageno =
838 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
839 with Not_found -> None
842 let putopaque pageno opaque =
843 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
846 let pagetranslatepoint l x y =
847 let dy = y - l.pagedispy in
848 let y = dy + l.pagey in
849 let dx = x - l.pagedispx in
850 let x = dx + l.pagex in
851 (x, y);
854 let onppundermouse g x y d =
855 let rec f = function
856 | l :: rest ->
857 begin match getopaque l.pageno with
858 | Some opaque ->
859 let x0 = l.pagedispx in
860 let x1 = x0 + l.pagevw in
861 let y0 = l.pagedispy in
862 let y1 = y0 + l.pagevh in
863 if y >= y0 && y <= y1 && x >= x0 && x <= x1
864 then
865 let px, py = pagetranslatepoint l x y in
866 match g opaque l px py with
867 | Some res -> res
868 | None -> f rest
869 else f rest
870 | _ ->
871 f rest
873 | [] -> d
875 f state.layout
878 let getunder x y =
879 let g opaque _ px py =
880 match whatsunder opaque px py with
881 | Unone -> None
882 | under -> Some under
884 onppundermouse g x y Unone
887 let unproject x y =
888 let g opaque l x y =
889 match unproject opaque x y with
890 | Some (x, y) -> Some (Some (l.pageno, x, y))
891 | None -> None
893 onppundermouse g x y None;
896 let showtext c s =
897 state.text <- Printf.sprintf "%c%s" c s;
898 G.postRedisplay "showtext";
901 let undertext = function
902 | Unone -> "none"
903 | Ulinkuri s -> s
904 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
905 | Utext s -> "font: " ^ s
906 | Uunexpected s -> "unexpected: " ^ s
907 | Ulaunch s -> "launch: " ^ s
908 | Unamed s -> "named: " ^ s
909 | Uremote (filename, pageno) ->
910 Printf.sprintf "%s: page %d" filename (pageno+1)
913 let updateunder x y =
914 match getunder x y with
915 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
916 | Ulinkuri uri ->
917 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
918 Wsi.setcursor Wsi.CURSOR_INFO
919 | Ulinkgoto (pageno, _) ->
920 if conf.underinfo
921 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
922 Wsi.setcursor Wsi.CURSOR_INFO
923 | Utext s ->
924 if conf.underinfo then showtext 'f' ("ont: " ^ s);
925 Wsi.setcursor Wsi.CURSOR_TEXT
926 | Uunexpected s ->
927 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
928 Wsi.setcursor Wsi.CURSOR_INHERIT
929 | Ulaunch s ->
930 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
931 Wsi.setcursor Wsi.CURSOR_INHERIT
932 | Unamed s ->
933 if conf.underinfo then showtext 'n' ("amed: " ^ s);
934 Wsi.setcursor Wsi.CURSOR_INHERIT
935 | Uremote (filename, pageno) ->
936 if conf.underinfo then showtext 'r'
937 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
938 Wsi.setcursor Wsi.CURSOR_INFO
941 let showlinktype under =
942 if conf.underinfo
943 then
944 match under with
945 | Unone -> ()
946 | under ->
947 let s = undertext under in
948 showtext ' ' s
951 let addchar s c =
952 let b = Buffer.create (String.length s + 1) in
953 Buffer.add_string b s;
954 Buffer.add_char b c;
955 Buffer.contents b;
958 let colorspace_of_string s =
959 match String.lowercase s with
960 | "rgb" -> Rgb
961 | "bgr" -> Bgr
962 | "gray" -> Gray
963 | _ -> failwith "invalid colorspace"
966 let int_of_colorspace = function
967 | Rgb -> 0
968 | Bgr -> 1
969 | Gray -> 2
972 let colorspace_of_int = function
973 | 0 -> Rgb
974 | 1 -> Bgr
975 | 2 -> Gray
976 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
979 let colorspace_to_string = function
980 | Rgb -> "rgb"
981 | Bgr -> "bgr"
982 | Gray -> "gray"
985 let intentry_with_suffix text key =
986 let c =
987 if key >= 32 && key < 127
988 then Char.chr key
989 else '\000'
991 match Char.lowercase c with
992 | '0' .. '9' ->
993 let text = addchar text c in
994 TEcont text
996 | 'k' | 'm' | 'g' ->
997 let text = addchar text c in
998 TEcont text
1000 | _ ->
1001 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1002 TEcont text
1005 let multicolumns_to_string (n, a, b) =
1006 if a = 0 && b = 0
1007 then Printf.sprintf "%d" n
1008 else Printf.sprintf "%d,%d,%d" n a b;
1011 let multicolumns_of_string s =
1013 (int_of_string s, 0, 0)
1014 with _ ->
1015 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
1016 if a > 1 || b > 1
1017 then failwith "subtly broken"; (n, a, b)
1021 let readcmd fd =
1022 let s = "xxxx" in
1023 let n = tempfailureretry (Unix.read fd s 0) 4 in
1024 if n != 4 then failwith "incomplete read(len)";
1025 let len = 0
1026 lor (Char.code s.[0] lsl 24)
1027 lor (Char.code s.[1] lsl 16)
1028 lor (Char.code s.[2] lsl 8)
1029 lor (Char.code s.[3] lsl 0)
1031 let s = String.create len in
1032 let n = tempfailureretry (Unix.read fd s 0) len in
1033 if n != len then failwith "incomplete read(data)";
1037 let btod b = if b then 1 else 0;;
1039 let wcmd fmt =
1040 let b = Buffer.create 16 in
1041 Buffer.add_string b "llll";
1042 Printf.kbprintf
1043 (fun b ->
1044 let s = Buffer.contents b in
1045 let n = String.length s in
1046 let len = n - 4 in
1047 (* dolog "wcmd %S" (String.sub s 4 len); *)
1048 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1049 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1050 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1051 s.[3] <- Char.chr (len land 0xff);
1052 let n' = tempfailureretry (Unix.write state.sw s 0) n in
1053 if n' != n then failwith "write failed";
1054 ) b fmt;
1057 let calcips h =
1058 let d = state.winh - h in
1059 max conf.interpagespace ((d + 1) / 2)
1062 let rowyh (c, coverA, coverB) b n =
1063 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1064 then
1065 let _, _, vy, (_, _, h, _) = b.(n) in
1066 (vy, h)
1067 else
1068 let n' = n - coverA in
1069 let d = n' mod c in
1070 let s = n - d in
1071 let e = min state.pagecount (s + c) in
1072 let rec find m miny maxh = if m = e then miny, maxh else
1073 let _, _, y, (_, _, h, _) = b.(m) in
1074 let miny = min miny y in
1075 let maxh = max maxh h in
1076 find (m+1) miny maxh
1077 in find s max_int 0
1080 let calcheight () =
1081 match conf.columns with
1082 | Cmulti ((_, _, _) as cl, b) ->
1083 if Array.length b > 0
1084 then
1085 let y, h = rowyh cl b (Array.length b - 1) in
1086 y + h + (if conf.presentation then calcips h else 0)
1087 else 0
1088 | Csingle b ->
1089 if Array.length b > 0
1090 then
1091 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1092 y + h + (if conf.presentation then calcips h else 0)
1093 else 0
1094 | Csplit (_, b) ->
1095 if Array.length b > 0
1096 then
1097 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1098 y + h
1099 else 0
1102 let getpageyh pageno =
1103 let pageno = bound pageno 0 (state.pagecount-1) in
1104 match conf.columns with
1105 | Csingle b ->
1106 if Array.length b = 0
1107 then 0, 0
1108 else
1109 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1110 let y =
1111 if conf.presentation
1112 then y - calcips h
1113 else y
1115 y, h
1116 | Cmulti (cl, b) ->
1117 if Array.length b = 0
1118 then 0, 0
1119 else
1120 let y, h = rowyh cl b pageno in
1121 let y =
1122 if conf.presentation
1123 then y - calcips h
1124 else y
1126 y, h
1127 | Csplit (c, b) ->
1128 if Array.length b = 0
1129 then 0, 0
1130 else
1131 let n = pageno*c in
1132 let (_, _, y, (_, _, h, _)) = b.(n) in
1133 y, h
1136 let getpagedim pageno =
1137 let rec f ppdim l =
1138 match l with
1139 | (n, _, _, _) as pdim :: rest ->
1140 if n >= pageno
1141 then (if n = pageno then pdim else ppdim)
1142 else f pdim rest
1144 | [] -> ppdim
1146 f (-1, -1, -1, -1) state.pdims
1149 let getpagey pageno = fst (getpageyh pageno);;
1151 let nogeomcmds cmds =
1152 match cmds with
1153 | s, [] -> String.length s = 0
1154 | _ -> false
1157 let page_of_y y =
1158 let ((c, coverA, coverB) as cl), b =
1159 match conf.columns with
1160 | Csingle b -> (1, 0, 0), b
1161 | Cmulti (c, b) -> c, b
1162 | Csplit (_, b) -> (1, 0, 0), b
1164 if Array.length b = 0
1165 then -1
1166 else
1167 let rec bsearch nmin nmax =
1168 if nmin > nmax
1169 then bound nmin 0 (state.pagecount-1)
1170 else
1171 let n = (nmax + nmin) / 2 in
1172 let vy, h = rowyh cl b n in
1173 let y0, y1 =
1174 if conf.presentation
1175 then
1176 let ips = calcips h in
1177 let y0 = vy - ips in
1178 let y1 = vy + h + ips in
1179 y0, y1
1180 else (
1181 if n = 0
1182 then 0, vy + h + conf.interpagespace
1183 else
1184 let y0 = vy - conf.interpagespace in
1185 y0, y0 + h + conf.interpagespace
1188 if y >= y0 && y < y1
1189 then (
1190 if c = 1
1191 then n
1192 else (
1193 if n > coverA
1194 then
1195 if n < state.pagecount - coverB
1196 then ((n-coverA)/c)*c + coverA
1197 else n
1198 else n
1201 else (
1202 if y > y0
1203 then bsearch (n+1) nmax
1204 else bsearch nmin (n-1)
1207 let r = bsearch 0 (state.pagecount-1) in
1211 let layoutN ((columns, coverA, coverB), b) y sh =
1212 let sh = sh - state.hscrollh in
1213 let rec fold accu n =
1214 if n = Array.length b
1215 then accu
1216 else
1217 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1218 if (vy - y) > sh &&
1219 (n = coverA - 1
1220 || n = state.pagecount - coverB
1221 || (n - coverA) mod columns = columns - 1)
1222 then accu
1223 else
1224 let accu =
1225 if vy + h > y
1226 then
1227 let pagey = max 0 (y - vy) in
1228 let pagedispy = if pagey > 0 then 0 else vy - y in
1229 let pagedispx, pagex =
1230 let pdx =
1231 if n = coverA - 1 || n = state.pagecount - coverB
1232 then state.x + (state.winw - state.scrollw - w) / 2
1233 else dx + xoff + state.x
1235 if pdx < 0
1236 then 0, -pdx
1237 else pdx, 0
1239 let pagevw =
1240 let vw = state.winw - state.scrollw - pagedispx in
1241 let pw = w - pagex in
1242 min vw pw
1244 let pagevh = min (h - pagey) (sh - pagedispy) in
1245 if pagevw > 0 && pagevh > 0
1246 then
1247 let e =
1248 { pageno = n
1249 ; pagedimno = pdimno
1250 ; pagew = w
1251 ; pageh = h
1252 ; pagex = pagex
1253 ; pagey = pagey
1254 ; pagevw = pagevw
1255 ; pagevh = pagevh
1256 ; pagedispx = pagedispx
1257 ; pagedispy = pagedispy
1258 ; pagecol = 0
1261 e :: accu
1262 else
1263 accu
1264 else
1265 accu
1267 fold accu (n+1)
1269 List.rev (fold [] (page_of_y y));
1272 let layoutS (columns, b) y sh =
1273 let sh = sh - state.hscrollh in
1274 let rec fold accu n =
1275 if n = Array.length b
1276 then accu
1277 else
1278 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1279 if (vy - y) > sh
1280 then accu
1281 else
1282 let accu =
1283 if vy + pageh > y
1284 then
1285 let x = xoff + state.x in
1286 let pagey = max 0 (y - vy) in
1287 let pagedispy = if pagey > 0 then 0 else vy - y in
1288 let pagedispx, pagex =
1289 if px = 0
1290 then (
1291 if x < 0
1292 then 0, -x
1293 else x, 0
1295 else (
1296 let px = px - x in
1297 if px < 0
1298 then -px, 0
1299 else 0, px
1302 let pagecolw = pagew/columns in
1303 let pagedispx =
1304 if pagecolw < state.winw
1305 then pagedispx + ((state.winw - state.scrollw - pagecolw) / 2)
1306 else pagedispx
1308 let pagevw =
1309 let vw = state.winw - pagedispx - state.scrollw in
1310 let pw = pagew - pagex in
1311 min vw pw
1313 let pagevw = min pagevw pagecolw in
1314 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1315 if pagevw > 0 && pagevh > 0
1316 then
1317 let e =
1318 { pageno = n/columns
1319 ; pagedimno = pdimno
1320 ; pagew = pagew
1321 ; pageh = pageh
1322 ; pagex = pagex
1323 ; pagey = pagey
1324 ; pagevw = pagevw
1325 ; pagevh = pagevh
1326 ; pagedispx = pagedispx
1327 ; pagedispy = pagedispy
1328 ; pagecol = n mod columns
1331 e :: accu
1332 else
1333 accu
1334 else
1335 accu
1337 fold accu (n+1)
1339 List.rev (fold [] 0)
1342 let layout y sh =
1343 if nogeomcmds state.geomcmds
1344 then
1345 match conf.columns with
1346 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1347 | Cmulti c -> layoutN c y sh
1348 | Csplit s -> layoutS s y sh
1349 else []
1352 let clamp incr =
1353 let y = state.y + incr in
1354 let y = max 0 y in
1355 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
1359 let itertiles l f =
1360 let tilex = l.pagex mod conf.tilew in
1361 let tiley = l.pagey mod conf.tileh in
1363 let col = l.pagex / conf.tilew in
1364 let row = l.pagey / conf.tileh in
1366 let rec rowloop row y0 dispy h =
1367 if h = 0
1368 then ()
1369 else (
1370 let dh = conf.tileh - y0 in
1371 let dh = min h dh in
1372 let rec colloop col x0 dispx w =
1373 if w = 0
1374 then ()
1375 else (
1376 let dw = conf.tilew - x0 in
1377 let dw = min w dw in
1379 f col row dispx dispy x0 y0 dw dh;
1380 colloop (col+1) 0 (dispx+dw) (w-dw)
1383 colloop col tilex l.pagedispx l.pagevw;
1384 rowloop (row+1) 0 (dispy+dh) (h-dh)
1387 if l.pagevw > 0 && l.pagevh > 0
1388 then rowloop row tiley l.pagedispy l.pagevh;
1391 let gettileopaque l col row =
1392 let key =
1393 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1395 try Some (Hashtbl.find state.tilemap key)
1396 with Not_found -> None
1399 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1400 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1401 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1404 let drawtiles l color =
1405 GlDraw.color color;
1406 let f col row x y tilex tiley w h =
1407 match gettileopaque l col row with
1408 | Some (opaque, _, t) ->
1409 let params = x, y, w, h, tilex, tiley in
1410 if conf.invert
1411 then (
1412 Gl.enable `blend;
1413 GlFunc.blend_func `zero `one_minus_src_color;
1415 drawtile params opaque;
1416 if conf.invert
1417 then Gl.disable `blend;
1418 if conf.debug
1419 then (
1420 let s = Printf.sprintf
1421 "%d[%d,%d] %f sec"
1422 l.pageno col row t
1424 let w = measurestr fstate.fontsize s in
1425 GlMisc.push_attrib [`current];
1426 GlDraw.color (0.0, 0.0, 0.0);
1427 GlDraw.rect
1428 (float (x-2), float (y-2))
1429 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1430 GlDraw.color (1.0, 1.0, 1.0);
1431 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1432 GlMisc.pop_attrib ();
1435 | _ ->
1436 let w =
1437 let lw = state.winw - state.scrollw - x in
1438 min lw w
1439 and h =
1440 let lh = state.winh - y in
1441 min lh h
1443 begin match state.texid with
1444 | Some id ->
1445 Gl.enable `texture_2d;
1446 GlTex.bind_texture `texture_2d id;
1447 let x0 = float x
1448 and y0 = float y
1449 and x1 = float (x+w)
1450 and y1 = float (y+h) in
1452 let tw = float w /. 16.0
1453 and th = float h /. 16.0 in
1454 let tx0 = float tilex /. 16.0
1455 and ty0 = float tiley /. 16.0 in
1456 let tx1 = tx0 +. tw
1457 and ty1 = ty0 +. th in
1458 GlDraw.begins `quads;
1459 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1460 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1461 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1462 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1463 GlDraw.ends ();
1465 Gl.disable `texture_2d;
1466 | None ->
1467 GlDraw.color (1.0, 1.0, 1.0);
1468 GlDraw.rect
1469 (float x, float y)
1470 (float (x+w), float (y+h));
1471 end;
1472 if w > 128 && h > fstate.fontsize + 10
1473 then (
1474 GlDraw.color (0.0, 0.0, 0.0);
1475 let c, r =
1476 if conf.verbose
1477 then (col*conf.tilew, row*conf.tileh)
1478 else col, row
1480 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1482 GlDraw.color color;
1484 itertiles l f
1487 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1489 let tilevisible1 l x y =
1490 let ax0 = l.pagex
1491 and ax1 = l.pagex + l.pagevw
1492 and ay0 = l.pagey
1493 and ay1 = l.pagey + l.pagevh in
1495 let bx0 = x
1496 and by0 = y in
1497 let bx1 = min (bx0 + conf.tilew) l.pagew
1498 and by1 = min (by0 + conf.tileh) l.pageh in
1500 let rx0 = max ax0 bx0
1501 and ry0 = max ay0 by0
1502 and rx1 = min ax1 bx1
1503 and ry1 = min ay1 by1 in
1505 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1506 nonemptyintersection
1509 let tilevisible layout n x y =
1510 let rec findpageinlayout m = function
1511 | l :: rest when l.pageno = n ->
1512 tilevisible1 l x y || (
1513 match conf.columns with
1514 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1515 | _ -> false
1517 | _ :: rest -> findpageinlayout 0 rest
1518 | [] -> false
1520 findpageinlayout 0 layout;
1523 let tileready l x y =
1524 tilevisible1 l x y &&
1525 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1528 let tilepage n p layout =
1529 let rec loop = function
1530 | l :: rest ->
1531 if l.pageno = n
1532 then
1533 let f col row _ _ _ _ _ _ =
1534 if state.currently = Idle
1535 then
1536 match gettileopaque l col row with
1537 | Some _ -> ()
1538 | None ->
1539 let x = col*conf.tilew
1540 and y = row*conf.tileh in
1541 let w =
1542 let w = l.pagew - x in
1543 min w conf.tilew
1545 let h =
1546 let h = l.pageh - y in
1547 min h conf.tileh
1549 let pbo =
1550 if conf.usepbo
1551 then getpbo w h conf.colorspace
1552 else "0"
1554 wcmd "tile %s %d %d %d %d %s" p x y w h pbo;
1555 state.currently <-
1556 Tiling (
1557 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1558 conf.tilew, conf.tileh
1561 itertiles l f;
1562 else
1563 loop rest
1565 | [] -> ()
1567 if nogeomcmds state.geomcmds
1568 then loop layout;
1571 let preloadlayout y =
1572 let y = if y < state.winh then 0 else y - state.winh in
1573 let h = state.winh*3 in
1574 layout y h;
1577 let load pages =
1578 let rec loop pages =
1579 if state.currently != Idle
1580 then ()
1581 else
1582 match pages with
1583 | l :: rest ->
1584 begin match getopaque l.pageno with
1585 | None ->
1586 wcmd "page %d %d" l.pageno l.pagedimno;
1587 state.currently <- Loading (l, state.gen);
1588 | Some opaque ->
1589 tilepage l.pageno opaque pages;
1590 loop rest
1591 end;
1592 | _ -> ()
1594 if nogeomcmds state.geomcmds
1595 then loop pages
1598 let preload pages =
1599 load pages;
1600 if conf.preload && state.currently = Idle
1601 then load (preloadlayout state.y);
1604 let layoutready layout =
1605 let rec fold all ls =
1606 all && match ls with
1607 | l :: rest ->
1608 let seen = ref false in
1609 let allvisible = ref true in
1610 let foo col row _ _ _ _ _ _ =
1611 seen := true;
1612 allvisible := !allvisible &&
1613 begin match gettileopaque l col row with
1614 | Some _ -> true
1615 | None -> false
1618 itertiles l foo;
1619 fold (!seen && !allvisible) rest
1620 | [] -> true
1622 let alltilesvisible = fold true layout in
1623 alltilesvisible;
1626 let gotoy y =
1627 state.wthack <- false;
1628 let y = bound y 0 state.maxy in
1629 let y, layout, proceed =
1630 match conf.maxwait with
1631 | Some time when state.ghyll == noghyll ->
1632 begin match state.throttle with
1633 | None ->
1634 let layout = layout y state.winh in
1635 let ready = layoutready layout in
1636 if not ready
1637 then (
1638 load layout;
1639 state.throttle <- Some (layout, y, now ());
1641 else G.postRedisplay "gotoy showall (None)";
1642 y, layout, ready
1643 | Some (_, _, started) ->
1644 let dt = now () -. started in
1645 if dt > time
1646 then (
1647 state.throttle <- None;
1648 let layout = layout y state.winh in
1649 load layout;
1650 G.postRedisplay "maxwait";
1651 y, layout, true
1653 else -1, [], false
1656 | _ ->
1657 let layout = layout y state.winh in
1658 G.postRedisplay "gotoy ready";
1659 y, layout, true
1661 if proceed
1662 then (
1663 state.y <- y;
1664 state.layout <- layout;
1665 begin match state.mode with
1666 | LinkNav (Ltexact (pageno, linkno)) ->
1667 let rec loop = function
1668 | [] ->
1669 state.mode <- LinkNav (Ltgendir 0)
1670 | l :: _ when l.pageno = pageno ->
1671 begin match getopaque pageno with
1672 | None ->
1673 state.mode <- LinkNav (Ltgendir 0)
1674 | Some opaque ->
1675 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1676 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1677 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1678 then state.mode <- LinkNav (Ltgendir 0)
1680 | _ :: rest -> loop rest
1682 loop layout
1683 | _ -> ()
1684 end;
1685 begin match state.mode with
1686 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1687 if not (pagevisible layout pageno)
1688 then (
1689 match state.layout with
1690 | [] -> ()
1691 | l :: _ ->
1692 state.mode <- Birdseye (
1693 conf, leftx, l.pageno, hooverpageno, anchor
1696 | LinkNav (Ltgendir dir as lt) ->
1697 let linknav =
1698 let rec loop = function
1699 | [] -> lt
1700 | l :: rest ->
1701 match getopaque l.pageno with
1702 | None -> loop rest
1703 | Some opaque ->
1704 let link =
1705 let ld =
1706 if dir = 0
1707 then LDfirstvisible (l.pagex, l.pagey, dir)
1708 else (
1709 if dir > 0 then LDfirst else LDlast
1712 findlink opaque ld
1714 match link with
1715 | Lnotfound -> loop rest
1716 | Lfound n ->
1717 showlinktype (getlink opaque n);
1718 Ltexact (l.pageno, n)
1720 loop state.layout
1722 state.mode <- LinkNav linknav
1723 | _ -> ()
1724 end;
1725 preload layout;
1727 state.ghyll <- noghyll;
1728 if conf.updatecurs
1729 then (
1730 let mx, my = state.mpos in
1731 updateunder mx my;
1735 let conttiling pageno opaque =
1736 tilepage pageno opaque
1737 (if conf.preload then preloadlayout state.y else state.layout)
1740 let gotoy_and_clear_text y =
1741 if not conf.verbose then state.text <- "";
1742 gotoy y;
1745 let getanchor1 l =
1746 let top =
1747 let coloff = l.pagecol * l.pageh in
1748 float (l.pagey + coloff) /. float l.pageh
1750 let dtop =
1751 if l.pagedispy = 0
1752 then
1754 else
1755 if conf.presentation
1756 then float l.pagedispy /. float (calcips l.pageh)
1757 else float l.pagedispy /. float conf.interpagespace
1759 (l.pageno, top, dtop)
1762 let getanchor () =
1763 match state.layout with
1764 | l :: _ -> getanchor1 l
1765 | [] ->
1766 let n = page_of_y state.y in
1767 if n = -1
1768 then state.anchor
1769 else
1770 let y, h = getpageyh n in
1771 let dy = y - state.y in
1772 let dtop =
1773 if conf.presentation
1774 then
1775 let ips = calcips h in
1776 float (dy + ips) /. float ips
1777 else
1778 float dy /. float conf.interpagespace
1780 (n, 0.0, dtop)
1783 let getanchory (n, top, dtop) =
1784 let y, h = getpageyh n in
1785 if conf.presentation
1786 then
1787 let ips = calcips h in
1788 y + truncate (top*.float h -. dtop*.float ips) + ips;
1789 else
1790 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1793 let gotoanchor anchor =
1794 gotoy (getanchory anchor);
1797 let addnav () =
1798 cbput state.hists.nav (getanchor ());
1801 let getnav dir =
1802 let anchor = cbgetc state.hists.nav dir in
1803 getanchory anchor;
1806 let gotoghyll y =
1807 let scroll f n a b =
1808 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1809 let snake f a b =
1810 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1811 if f < a
1812 then s (float f /. float a)
1813 else (
1814 if f > b
1815 then 1.0 -. s ((float (f-b) /. float (n-b)))
1816 else 1.0
1819 snake f a b
1820 and summa f n a b =
1821 (* courtesy:
1822 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1823 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1824 let iv1 = iv f in
1825 let ins = float a *. iv1
1826 and outs = float (n-b) *. iv1 in
1827 let ones = b - a in
1828 ins +. outs +. float ones
1830 let rec set (_N, _A, _B) y sy =
1831 let sum = summa 1.0 _N _A _B in
1832 let dy = float (y - sy) in
1833 state.ghyll <- (
1834 let rec gf n y1 o =
1835 if n >= _N
1836 then state.ghyll <- noghyll
1837 else
1838 let go n =
1839 let s = scroll n _N _A _B in
1840 let y1 = y1 +. ((s *. dy) /. sum) in
1841 gotoy_and_clear_text (truncate y1);
1842 state.ghyll <- gf (n+1) y1;
1844 match o with
1845 | None -> go n
1846 | Some y' -> set (_N/2, 1, 1) y' state.y
1848 gf 0 (float state.y)
1851 match conf.ghyllscroll with
1852 | None ->
1853 gotoy_and_clear_text y
1854 | Some nab ->
1855 if state.ghyll == noghyll
1856 then set nab y state.y
1857 else state.ghyll (Some y)
1860 let gotopage n top =
1861 let y, h = getpageyh n in
1862 let y = y + (truncate (top *. float h)) in
1863 gotoghyll y
1866 let gotopage1 n top =
1867 let y = getpagey n in
1868 let y = y + top in
1869 gotoghyll y
1872 let invalidate s f =
1873 state.layout <- [];
1874 state.pdims <- [];
1875 state.rects <- [];
1876 state.rects1 <- [];
1877 match state.geomcmds with
1878 | ps, [] when String.length ps = 0 ->
1879 f ();
1880 state.geomcmds <- s, [];
1882 | ps, [] ->
1883 state.geomcmds <- ps, [s, f];
1885 | ps, (s', _) :: rest when s' = s ->
1886 state.geomcmds <- ps, ((s, f) :: rest);
1888 | ps, cmds ->
1889 state.geomcmds <- ps, ((s, f) :: cmds);
1892 let flushpages () =
1893 Hashtbl.iter (fun _ opaque ->
1894 wcmd "freepage %s" opaque;
1895 ) state.pagemap;
1896 Hashtbl.clear state.pagemap;
1899 let opendoc path password =
1900 state.path <- path;
1901 state.password <- password;
1902 state.gen <- state.gen + 1;
1903 state.docinfo <- [];
1905 flushpages ();
1906 setaalevel conf.aalevel;
1907 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename path)));
1908 wcmd "open %d %s\000%s\000" (btod state.wthack) path password;
1909 invalidate "reqlayout"
1910 (fun () ->
1911 wcmd "reqlayout %d %d %s\000"
1912 conf.angle (btod conf.proportional) state.nameddest;
1916 let reload () =
1917 state.anchor <- getanchor ();
1918 state.wthack <- !wtmode;
1919 opendoc state.path state.password;
1922 let scalecolor c =
1923 let c = c *. conf.colorscale in
1924 (c, c, c);
1927 let scalecolor2 (r, g, b) =
1928 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1931 let docolumns = function
1932 | Csingle _ ->
1933 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1934 let rec loop pageno pdimno pdim y ph pdims =
1935 if pageno = state.pagecount
1936 then ()
1937 else
1938 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1939 match pdims with
1940 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1941 pdimno+1, pdim, rest
1942 | _ ->
1943 pdimno, pdim, pdims
1945 let x = max 0 (((state.winw - state.scrollw - w) / 2) - xoff) in
1946 let y = y +
1947 (if conf.presentation
1948 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1949 else (if pageno = 0 then 0 else conf.interpagespace)
1952 a.(pageno) <- (pdimno, x, y, pdim);
1953 loop (pageno+1) pdimno pdim (y + h) h pdims
1955 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1956 conf.columns <- Csingle a;
1958 | Cmulti ((columns, coverA, coverB), _) ->
1959 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1960 let rec loop pageno pdimno pdim x y rowh pdims =
1961 let rec fixrow m = if m = pageno then () else
1962 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1963 if h < rowh
1964 then (
1965 let y = y + (rowh - h) / 2 in
1966 a.(m) <- (pdimno, x, y, pdim);
1968 fixrow (m+1)
1970 if pageno = state.pagecount
1971 then fixrow (((pageno - 1) / columns) * columns)
1972 else
1973 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1974 match pdims with
1975 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1976 pdimno+1, pdim, rest
1977 | _ ->
1978 pdimno, pdim, pdims
1980 let x, y, rowh' =
1981 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1982 then (
1983 let x = (state.winw - state.scrollw - w) / 2 in
1984 let ips =
1985 if conf.presentation then calcips h else conf.interpagespace in
1986 x, y + ips + rowh, h
1988 else (
1989 if (pageno - coverA) mod columns = 0
1990 then (
1991 let x = max 0 (state.winw - state.scrollw - state.w) / 2 in
1992 let y =
1993 if conf.presentation
1994 then
1995 let ips = calcips h in
1996 y + (if pageno = 0 then 0 else calcips rowh + ips)
1997 else
1998 y + (if pageno = 0 then 0 else conf.interpagespace)
2000 x, y + rowh, h
2002 else x, y, max rowh h
2005 let y =
2006 if pageno > 1 && (pageno - coverA) mod columns = 0
2007 then (
2008 let y =
2009 if pageno = columns && conf.presentation
2010 then (
2011 let ips = calcips rowh in
2012 for i = 0 to pred columns
2014 let (pdimno, x, y, pdim) = a.(i) in
2015 a.(i) <- (pdimno, x, y+ips, pdim)
2016 done;
2017 y+ips;
2019 else y
2021 fixrow (pageno - columns);
2024 else y
2026 a.(pageno) <- (pdimno, x, y, pdim);
2027 let x = x + w + xoff*2 + conf.interpagespace in
2028 loop (pageno+1) pdimno pdim x y rowh' pdims
2030 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2031 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2033 | Csplit (c, _) ->
2034 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2035 let rec loop pageno pdimno pdim y pdims =
2036 if pageno = state.pagecount
2037 then ()
2038 else
2039 let pdimno, ((_, w, h, _) as pdim), pdims =
2040 match pdims with
2041 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2042 pdimno+1, pdim, rest
2043 | _ ->
2044 pdimno, pdim, pdims
2046 let cw = w / c in
2047 let rec loop1 n x y =
2048 if n = c then y else (
2049 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2050 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2053 let y = loop1 0 0 y in
2054 loop (pageno+1) pdimno pdim y pdims
2056 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2057 conf.columns <- Csplit (c, a);
2060 let represent () =
2061 docolumns conf.columns;
2062 state.maxy <- calcheight ();
2063 state.hscrollh <-
2064 if state.w <= state.winw - state.scrollw
2065 then 0
2066 else state.scrollw
2068 if state.reprf == noreprf
2069 then
2070 let wthack = state.wthack in
2071 begin match state.mode with
2072 | Birdseye (_, _, pageno, _, _) ->
2073 let y, h = getpageyh pageno in
2074 let top = (state.winh - h) / 2 in
2075 gotoy (max 0 (y - top))
2076 | _ -> gotoanchor state.anchor
2077 end;
2078 state.wthack <- wthack;
2079 state.reprf <- noreprf;
2080 else state.reprf ()
2083 let reshape w h =
2084 state.wthack <- false;
2085 GlDraw.viewport 0 0 w h;
2086 let firsttime = state.geomcmds == firstgeomcmds in
2087 if not firsttime && nogeomcmds state.geomcmds
2088 then state.anchor <- getanchor ();
2090 state.winw <- w;
2091 let w = truncate (float w *. conf.zoom) - state.scrollw in
2092 let w = max w 2 in
2093 state.winh <- h;
2094 setfontsize fstate.fontsize;
2095 GlMat.mode `modelview;
2096 GlMat.load_identity ();
2098 GlMat.mode `projection;
2099 GlMat.load_identity ();
2100 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2101 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2102 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2104 let relx =
2105 if conf.zoom <= 1.0
2106 then 0.0
2107 else float state.x /. float state.w
2109 invalidate "geometry"
2110 (fun () ->
2111 state.w <- w;
2112 if not firsttime
2113 then state.x <- truncate (relx *. float w);
2114 let w =
2115 match conf.columns with
2116 | Csingle _ -> w
2117 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2118 | Csplit (c, _) -> w * c
2120 wcmd "geometry %d %d" w h);
2123 let enttext () =
2124 let len = String.length state.text in
2125 let drawstring s =
2126 let hscrollh =
2127 match state.mode with
2128 | Textentry _
2129 | View ->
2130 let h, _, _ = state.uioh#scrollpw in
2132 | _ -> 0
2134 let rect x w =
2135 GlDraw.rect
2136 (x, float (state.winh - (fstate.fontsize + 4) - hscrollh))
2137 (x+.w, float (state.winh - hscrollh))
2140 let w = float (state.winw - state.scrollw - 1) in
2141 if state.progress >= 0.0 && state.progress < 1.0
2142 then (
2143 GlDraw.color (0.3, 0.3, 0.3);
2144 let w1 = w *. state.progress in
2145 rect 0.0 w1;
2146 GlDraw.color (0.0, 0.0, 0.0);
2147 rect w1 (w-.w1)
2149 else (
2150 GlDraw.color (0.0, 0.0, 0.0);
2151 rect 0.0 w;
2154 GlDraw.color (1.0, 1.0, 1.0);
2155 drawstring fstate.fontsize
2156 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2158 let s =
2159 match state.mode with
2160 | Textentry ((prefix, text, _, _, _, _), _) ->
2161 let s =
2162 if len > 0
2163 then
2164 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2165 else
2166 Printf.sprintf "%s%s_" prefix text
2170 | _ -> state.text
2172 let s =
2173 if state.newerrmsgs
2174 then (
2175 if not (istextentry state.mode)
2176 then
2177 let s1 = "(press 'e' to review error messasges)" in
2178 if String.length s > 0 then s ^ " " ^ s1 else s1
2179 else s
2181 else s
2183 if String.length s > 0
2184 then drawstring s
2187 let gctiles () =
2188 let len = Queue.length state.tilelru in
2189 let layout = lazy (
2190 match state.throttle with
2191 | None ->
2192 if conf.preload
2193 then preloadlayout state.y
2194 else state.layout
2195 | Some (layout, _, _) ->
2196 layout
2197 ) in
2198 let rec loop qpos =
2199 if state.memused <= conf.memlimit
2200 then ()
2201 else (
2202 if qpos < len
2203 then
2204 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2205 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2206 let (_, pw, ph, _) = getpagedim n in
2208 gen = state.gen
2209 && colorspace = conf.colorspace
2210 && angle = conf.angle
2211 && pagew = pw
2212 && pageh = ph
2213 && (
2214 let x = col*conf.tilew
2215 and y = row*conf.tileh in
2216 tilevisible (Lazy.force_val layout) n x y
2218 then Queue.push lruitem state.tilelru
2219 else (
2220 freepbo p;
2221 wcmd "freetile %s" p;
2222 state.memused <- state.memused - s;
2223 state.uioh#infochanged Memused;
2224 Hashtbl.remove state.tilemap k;
2226 loop (qpos+1)
2229 loop 0
2232 let flushtiles () =
2233 Queue.iter (fun (k, p, s) ->
2234 wcmd "freetile %s" p;
2235 state.memused <- state.memused - s;
2236 state.uioh#infochanged Memused;
2237 Hashtbl.remove state.tilemap k;
2238 ) state.tilelru;
2239 Queue.clear state.tilelru;
2240 load state.layout;
2243 let logcurrently = function
2244 | Idle -> dolog "Idle"
2245 | Loading (l, gen) ->
2246 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2247 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2248 dolog
2249 "Tiling %d[%d,%d] page=%s cs=%s angle"
2250 l.pageno col row pageopaque
2251 (colorspace_to_string colorspace)
2253 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2254 angle gen conf.angle state.gen
2255 tilew tileh
2256 conf.tilew conf.tileh
2258 | Outlining _ ->
2259 dolog "outlining"
2262 let splitatspace =
2263 let r = Str.regexp " " in
2264 fun s -> Str.bounded_split r s 2;
2267 let onpagerect pageno f =
2268 let b =
2269 match conf.columns with
2270 | Cmulti (_, b) -> b
2271 | Csingle b -> b
2272 | Csplit (_, b) -> b
2274 if pageno >= 0 && pageno < Array.length b
2275 then
2276 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2277 let r = getpdimrect pdimno in
2278 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2281 let gotopagexy pageno x y =
2282 onpagerect pageno (fun w h ->
2283 let top = y /. h in
2284 let _,w1,_,leftx = getpagedim pageno in
2285 let sw = float w1 /. w in
2286 let x = sw *. x in
2287 let x = leftx + state.x + truncate x in
2288 let newpan =
2289 if x < 0 || x >= state.winw - state.scrollw
2290 then (state.x <- state.x - x; true)
2291 else false
2293 let y, h = getpageyh pageno in
2294 let y' = y + truncate (top *. float h) in
2295 let dy = y' - state.y in
2296 if newpan || not (dy > 0 && dy < state.winh - state.hscrollh)
2297 then (
2298 let y =
2299 if conf.presentation
2300 then
2301 if abs (y - y') > state.winh - state.hscrollh
2302 then y'
2303 else y
2304 else y';
2306 gotoy y;
2307 state.wthack <- !wtmode && not (layoutready state.layout);
2312 let act cmds =
2313 (* dolog "%S" cmds; *)
2314 let cl = splitatspace cmds in
2315 let scan s fmt f =
2316 try Scanf.sscanf s fmt f
2317 with exn ->
2318 dolog "error processing '%S': %s" cmds (exntos exn);
2319 exit 1
2321 match cl with
2322 | "clear" :: [] ->
2323 state.uioh#infochanged Pdim;
2324 state.pdims <- [];
2326 | "clearrects" :: [] ->
2327 state.rects <- state.rects1;
2328 G.postRedisplay "clearrects";
2330 | "continue" :: args :: [] ->
2331 let n = scan args "%u" (fun n -> n) in
2332 state.pagecount <- n;
2333 begin match state.currently with
2334 | Outlining l ->
2335 state.currently <- Idle;
2336 state.outlines <- Array.of_list (List.rev l)
2337 | _ -> ()
2338 end;
2340 let cur, cmds = state.geomcmds in
2341 if String.length cur = 0
2342 then failwith "umpossible";
2344 begin match List.rev cmds with
2345 | [] ->
2346 state.geomcmds <- "", [];
2347 represent ();
2348 | (s, f) :: rest ->
2349 f ();
2350 state.geomcmds <- s, List.rev rest;
2351 end;
2352 if conf.maxwait = None
2353 then G.postRedisplay "continue";
2355 | "title" :: args :: [] ->
2356 Wsi.settitle args
2358 | "msg" :: args :: [] ->
2359 showtext ' ' args
2361 | "vmsg" :: args :: [] ->
2362 if conf.verbose
2363 then showtext ' ' args
2365 | "emsg" :: args :: [] ->
2366 Buffer.add_string state.errmsgs args;
2367 state.newerrmsgs <- true;
2368 G.postRedisplay "error message"
2370 | "progress" :: args :: [] ->
2371 let progress, text =
2372 scan args "%f %n"
2373 (fun f pos ->
2374 f, String.sub args pos (String.length args - pos))
2376 state.text <- text;
2377 state.progress <- progress;
2378 G.postRedisplay "progress"
2380 | "firstmatch" :: args :: [] ->
2381 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2382 scan args "%u %d %f %f %f %f %f %f %f %f"
2383 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2384 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2386 let y = (getpagey pageno) + truncate y0 in
2387 addnav ();
2388 gotoy y;
2389 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2391 | "match" :: args :: [] ->
2392 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2393 scan args "%u %d %f %f %f %f %f %f %f %f"
2394 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2395 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2397 state.rects1 <-
2398 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2400 | "page" :: args :: [] ->
2401 let pageopaque, t = scan args "%s %f" (fun p t -> p, t) in
2402 begin match state.currently with
2403 | Loading (l, gen) ->
2404 vlog "page %d took %f sec" l.pageno t;
2405 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2406 begin match state.throttle with
2407 | None ->
2408 let preloadedpages =
2409 if conf.preload
2410 then preloadlayout state.y
2411 else state.layout
2413 let evict () =
2414 let module IntSet =
2415 Set.Make (struct type t = int let compare = (-) end) in
2416 let set =
2417 List.fold_left (fun s l -> IntSet.add l.pageno s)
2418 IntSet.empty preloadedpages
2420 let evictedpages =
2421 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2422 if not (IntSet.mem pageno set)
2423 then (
2424 wcmd "freepage %s" opaque;
2425 key :: accu
2427 else accu
2428 ) state.pagemap []
2430 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2432 evict ();
2433 state.currently <- Idle;
2434 if gen = state.gen
2435 then (
2436 tilepage l.pageno pageopaque state.layout;
2437 load state.layout;
2438 load preloadedpages;
2439 if pagevisible state.layout l.pageno
2440 && layoutready state.layout
2441 then G.postRedisplay "page";
2444 | Some (layout, _, _) ->
2445 state.currently <- Idle;
2446 tilepage l.pageno pageopaque layout;
2447 load state.layout
2448 end;
2450 | _ ->
2451 dolog "Inconsistent loading state";
2452 logcurrently state.currently;
2453 exit 1
2456 | "tile" :: args :: [] ->
2457 let (x, y, opaque, size, t) =
2458 scan args "%u %u %s %u %f"
2459 (fun x y p size t -> (x, y, p, size, t))
2461 begin match state.currently with
2462 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2463 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2465 unmappbo opaque;
2466 if tilew != conf.tilew || tileh != conf.tileh
2467 then (
2468 wcmd "freetile %s" opaque;
2469 state.currently <- Idle;
2470 load state.layout;
2472 else (
2473 puttileopaque l col row gen cs angle opaque size t;
2474 state.memused <- state.memused + size;
2475 state.uioh#infochanged Memused;
2476 gctiles ();
2477 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2478 opaque, size) state.tilelru;
2480 let layout =
2481 match state.throttle with
2482 | None -> state.layout
2483 | Some (layout, _, _) -> layout
2486 state.currently <- Idle;
2487 if gen = state.gen
2488 && conf.colorspace = cs
2489 && conf.angle = angle
2490 && tilevisible layout l.pageno x y
2491 then conttiling l.pageno pageopaque;
2493 begin match state.throttle with
2494 | None ->
2495 if state.wthack
2496 then state.wthack <- not (layoutready state.layout);
2497 preload state.layout;
2498 if gen = state.gen
2499 && conf.colorspace = cs
2500 && conf.angle = angle
2501 && tilevisible state.layout l.pageno x y
2502 then G.postRedisplay "tile nothrottle";
2504 | Some (layout, y, _) ->
2505 let ready = layoutready layout in
2506 if ready
2507 then (
2508 state.wthack <- false;
2509 state.y <- y;
2510 state.layout <- layout;
2511 state.throttle <- None;
2512 G.postRedisplay "throttle";
2514 else load layout;
2515 end;
2518 | _ ->
2519 dolog "Inconsistent tiling state";
2520 logcurrently state.currently;
2521 exit 1
2524 | "pdim" :: args :: [] ->
2525 let pdim =
2526 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2528 state.uioh#infochanged Pdim;
2529 state.pdims <- pdim :: state.pdims
2531 | "o" :: args :: [] ->
2532 let (l, n, t, h, pos) =
2533 scan args "%u %u %d %u %n"
2534 (fun l n t h pos -> l, n, t, h, pos)
2536 let s = String.sub args pos (String.length args - pos) in
2537 let outline = (s, l, (n, float t /. float h, 0.0)) in
2538 begin match state.currently with
2539 | Outlining outlines ->
2540 state.currently <- Outlining (outline :: outlines)
2541 | Idle ->
2542 state.currently <- Outlining [outline]
2543 | currently ->
2544 dolog "invalid outlining state";
2545 logcurrently currently
2548 | "a" :: args :: [] ->
2549 let (n, l, t) =
2550 scan args "%u %d %d" (fun n l t -> n, l, t)
2552 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2554 | "info" :: args :: [] ->
2555 state.docinfo <- (1, args) :: state.docinfo
2557 | "infoend" :: [] ->
2558 state.uioh#infochanged Docinfo;
2559 state.docinfo <- List.rev state.docinfo
2561 | _ ->
2562 failwith (Printf.sprintf "unknown cmd `%S'" cmds)
2565 let onhist cb =
2566 let rc = cb.rc in
2567 let action = function
2568 | HCprev -> cbget cb ~-1
2569 | HCnext -> cbget cb 1
2570 | HCfirst -> cbget cb ~-(cb.rc)
2571 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2572 and cancel () = cb.rc <- rc
2573 in (action, cancel)
2576 let search pattern forward =
2577 if String.length pattern > 0
2578 then
2579 let pn, py =
2580 match state.layout with
2581 | [] -> 0, 0
2582 | l :: _ ->
2583 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2585 wcmd "search %d %d %d %d,%s\000"
2586 (btod conf.icase) pn py (btod forward) pattern;
2589 let intentry text key =
2590 let c =
2591 if key >= 32 && key < 127
2592 then Char.chr key
2593 else '\000'
2595 match c with
2596 | '0' .. '9' ->
2597 let text = addchar text c in
2598 TEcont text
2600 | _ ->
2601 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2602 TEcont text
2605 let linknentry text key =
2606 let c =
2607 if key >= 32 && key < 127
2608 then Char.chr key
2609 else '\000'
2611 match c with
2612 | 'a' .. 'z' ->
2613 let text = addchar text c in
2614 TEcont text
2616 | _ ->
2617 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2618 TEcont text
2621 let linkndone f s =
2622 if String.length s > 0
2623 then (
2624 let n =
2625 let l = String.length s in
2626 let rec loop pos n = if pos = l then n else
2627 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2628 loop (pos+1) (n*26 + m)
2629 in loop 0 0
2631 let rec loop n = function
2632 | [] -> ()
2633 | l :: rest ->
2634 match getopaque l.pageno with
2635 | None -> loop n rest
2636 | Some opaque ->
2637 let m = getlinkcount opaque in
2638 if n < m
2639 then (
2640 let under = getlink opaque n in
2641 f under
2643 else loop (n-m) rest
2645 loop n state.layout;
2649 let textentry text key =
2650 if key land 0xff00 = 0xff00
2651 then TEcont text
2652 else TEcont (text ^ toutf8 key)
2655 let reqlayout angle proportional =
2656 match state.throttle with
2657 | None ->
2658 if nogeomcmds state.geomcmds
2659 then state.anchor <- getanchor ();
2660 conf.angle <- angle mod 360;
2661 if conf.angle != 0
2662 then (
2663 match state.mode with
2664 | LinkNav _ -> state.mode <- View
2665 | _ -> ()
2667 conf.proportional <- proportional;
2668 invalidate "reqlayout"
2669 (fun () -> wcmd "reqlayout %d %d" conf.angle (btod proportional));
2670 | _ -> ()
2673 let settrim trimmargins trimfuzz =
2674 if nogeomcmds state.geomcmds
2675 then state.anchor <- getanchor ();
2676 conf.trimmargins <- trimmargins;
2677 conf.trimfuzz <- trimfuzz;
2678 let x0, y0, x1, y1 = trimfuzz in
2679 invalidate "settrim"
2680 (fun () ->
2681 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2682 flushpages ();
2685 let setzoom zoom =
2686 match state.throttle with
2687 | None ->
2688 let zoom = max 0.01 zoom in
2689 if zoom <> conf.zoom
2690 then (
2691 state.prevzoom <- conf.zoom;
2692 conf.zoom <- zoom;
2693 reshape state.winw state.winh;
2694 state.text <- Printf.sprintf "zoom is now %-5.1f" (zoom *. 100.0);
2697 | Some (layout, y, started) ->
2698 let time =
2699 match conf.maxwait with
2700 | None -> 0.0
2701 | Some t -> t
2703 let dt = now () -. started in
2704 if dt > time
2705 then (
2706 state.y <- y;
2707 load layout;
2711 let setcolumns mode columns coverA coverB =
2712 state.prevcolumns <- Some (conf.columns, conf.zoom);
2713 if columns < 0
2714 then (
2715 if isbirdseye mode
2716 then showtext '!' "split mode doesn't work in bird's eye"
2717 else (
2718 conf.columns <- Csplit (-columns, [||]);
2719 state.x <- 0;
2720 conf.zoom <- 1.0;
2723 else (
2724 if columns < 2
2725 then (
2726 conf.columns <- Csingle [||];
2727 state.x <- 0;
2728 setzoom 1.0;
2730 else (
2731 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2732 conf.zoom <- 1.0;
2735 reshape state.winw state.winh;
2738 let enterbirdseye () =
2739 let zoom = float conf.thumbw /. float state.winw in
2740 let birdseyepageno =
2741 let cy = state.winh / 2 in
2742 let fold = function
2743 | [] -> 0
2744 | l :: rest ->
2745 let rec fold best = function
2746 | [] -> best.pageno
2747 | l :: rest ->
2748 let d = cy - (l.pagedispy + l.pagevh/2)
2749 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2750 if abs d < abs dbest
2751 then fold l rest
2752 else best.pageno
2753 in fold l rest
2755 fold state.layout
2757 state.mode <- Birdseye (
2758 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2760 conf.zoom <- zoom;
2761 conf.presentation <- false;
2762 conf.interpagespace <- 10;
2763 conf.hlinks <- false;
2764 state.x <- 0;
2765 state.mstate <- Mnone;
2766 conf.maxwait <- None;
2767 conf.columns <- (
2768 match conf.beyecolumns with
2769 | Some c ->
2770 conf.zoom <- 1.0;
2771 Cmulti ((c, 0, 0), [||])
2772 | None -> Csingle [||]
2774 Wsi.setcursor Wsi.CURSOR_INHERIT;
2775 if conf.verbose
2776 then
2777 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2778 (100.0*.zoom)
2779 else
2780 state.text <- ""
2782 reshape state.winw state.winh;
2785 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2786 state.mode <- View;
2787 conf.zoom <- c.zoom;
2788 conf.presentation <- c.presentation;
2789 conf.interpagespace <- c.interpagespace;
2790 conf.maxwait <- c.maxwait;
2791 conf.hlinks <- c.hlinks;
2792 conf.beyecolumns <- (
2793 match conf.columns with
2794 | Cmulti ((c, _, _), _) -> Some c
2795 | Csingle _ -> None
2796 | Csplit _ -> failwith "leaving bird's eye split mode"
2798 conf.columns <- (
2799 match c.columns with
2800 | Cmulti (c, _) -> Cmulti (c, [||])
2801 | Csingle _ -> Csingle [||]
2802 | Csplit (c, _) -> Csplit (c, [||])
2804 state.x <- leftx;
2805 if conf.verbose
2806 then
2807 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2808 (100.0*.conf.zoom)
2810 reshape state.winw state.winh;
2811 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2814 let togglebirdseye () =
2815 match state.mode with
2816 | Birdseye vals -> leavebirdseye vals true
2817 | View -> enterbirdseye ()
2818 | _ -> ()
2821 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2822 let pageno = max 0 (pageno - incr) in
2823 let rec loop = function
2824 | [] -> gotopage1 pageno 0
2825 | l :: _ when l.pageno = pageno ->
2826 if l.pagedispy >= 0 && l.pagey = 0
2827 then G.postRedisplay "upbirdseye"
2828 else gotopage1 pageno 0
2829 | _ :: rest -> loop rest
2831 loop state.layout;
2832 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2835 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2836 let pageno = min (state.pagecount - 1) (pageno + incr) in
2837 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2838 let rec loop = function
2839 | [] ->
2840 let y, h = getpageyh pageno in
2841 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2842 gotoy (clamp dy)
2843 | l :: _ when l.pageno = pageno ->
2844 if l.pagevh != l.pageh
2845 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2846 else G.postRedisplay "downbirdseye"
2847 | _ :: rest -> loop rest
2849 loop state.layout
2852 let optentry mode _ key =
2853 let btos b = if b then "on" else "off" in
2854 if key >= 32 && key < 127
2855 then
2856 let c = Char.chr key in
2857 match c with
2858 | 's' ->
2859 let ondone s =
2860 try conf.scrollstep <- int_of_string s with exc ->
2861 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2863 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2865 | 'A' ->
2866 let ondone s =
2868 conf.autoscrollstep <- int_of_string s;
2869 if state.autoscroll <> None
2870 then state.autoscroll <- Some conf.autoscrollstep
2871 with exc ->
2872 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2874 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2876 | 'C' ->
2877 let ondone s =
2879 let n, a, b = multicolumns_of_string s in
2880 setcolumns mode n a b;
2881 with exc ->
2882 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2884 TEswitch ("columns: ", "", None, textentry, ondone, true)
2886 | 'Z' ->
2887 let ondone s =
2889 let zoom = float (int_of_string s) /. 100.0 in
2890 setzoom zoom
2891 with exc ->
2892 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2894 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2896 | 't' ->
2897 let ondone s =
2899 conf.thumbw <- bound (int_of_string s) 2 4096;
2900 state.text <-
2901 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2902 begin match mode with
2903 | Birdseye beye ->
2904 leavebirdseye beye false;
2905 enterbirdseye ();
2906 | _ -> ();
2908 with exc ->
2909 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2911 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2913 | 'R' ->
2914 let ondone s =
2915 match try
2916 Some (int_of_string s)
2917 with exc ->
2918 state.text <- Printf.sprintf "bad integer `%s': %s"
2919 s (exntos exc);
2920 None
2921 with
2922 | Some angle -> reqlayout angle conf.proportional
2923 | None -> ()
2925 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2927 | 'i' ->
2928 conf.icase <- not conf.icase;
2929 TEdone ("case insensitive search " ^ (btos conf.icase))
2931 | 'p' ->
2932 conf.preload <- not conf.preload;
2933 gotoy state.y;
2934 TEdone ("preload " ^ (btos conf.preload))
2936 | 'v' ->
2937 conf.verbose <- not conf.verbose;
2938 TEdone ("verbose " ^ (btos conf.verbose))
2940 | 'd' ->
2941 conf.debug <- not conf.debug;
2942 TEdone ("debug " ^ (btos conf.debug))
2944 | 'h' ->
2945 conf.maxhfit <- not conf.maxhfit;
2946 state.maxy <- calcheight ();
2947 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2949 | 'c' ->
2950 conf.crophack <- not conf.crophack;
2951 TEdone ("crophack " ^ btos conf.crophack)
2953 | 'a' ->
2954 let s =
2955 match conf.maxwait with
2956 | None ->
2957 conf.maxwait <- Some infinity;
2958 "always wait for page to complete"
2959 | Some _ ->
2960 conf.maxwait <- None;
2961 "show placeholder if page is not ready"
2963 TEdone s
2965 | 'f' ->
2966 conf.underinfo <- not conf.underinfo;
2967 TEdone ("underinfo " ^ btos conf.underinfo)
2969 | 'P' ->
2970 conf.savebmarks <- not conf.savebmarks;
2971 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2973 | 'S' ->
2974 let ondone s =
2976 let pageno, py =
2977 match state.layout with
2978 | [] -> 0, 0
2979 | l :: _ ->
2980 l.pageno, l.pagey
2982 conf.interpagespace <- int_of_string s;
2983 docolumns conf.columns;
2984 state.maxy <- calcheight ();
2985 let y = getpagey pageno in
2986 gotoy (y + py)
2987 with exc ->
2988 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2990 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
2992 | 'l' ->
2993 reqlayout conf.angle (not conf.proportional);
2994 TEdone ("proportional display " ^ btos conf.proportional)
2996 | 'T' ->
2997 settrim (not conf.trimmargins) conf.trimfuzz;
2998 TEdone ("trim margins " ^ btos conf.trimmargins)
3000 | 'I' ->
3001 conf.invert <- not conf.invert;
3002 TEdone ("invert colors " ^ btos conf.invert)
3004 | 'x' ->
3005 let ondone s =
3006 cbput state.hists.sel s;
3007 conf.selcmd <- s;
3009 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3010 textentry, ondone, true)
3012 | _ ->
3013 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3014 TEstop
3015 else
3016 TEcont state.text
3019 class type lvsource = object
3020 method getitemcount : int
3021 method getitem : int -> (string * int)
3022 method hasaction : int -> bool
3023 method exit :
3024 uioh:uioh ->
3025 cancel:bool ->
3026 active:int ->
3027 first:int ->
3028 pan:int ->
3029 qsearch:string ->
3030 uioh option
3031 method getactive : int
3032 method getfirst : int
3033 method getqsearch : string
3034 method setqsearch : string -> unit
3035 method getpan : int
3036 end;;
3038 class virtual lvsourcebase = object
3039 val mutable m_active = 0
3040 val mutable m_first = 0
3041 val mutable m_qsearch = ""
3042 val mutable m_pan = 0
3043 method getactive = m_active
3044 method getfirst = m_first
3045 method getqsearch = m_qsearch
3046 method getpan = m_pan
3047 method setqsearch s = m_qsearch <- s
3048 end;;
3050 let withoutlastutf8 s =
3051 let len = String.length s in
3052 if len = 0
3053 then s
3054 else
3055 let rec find pos =
3056 if pos = 0
3057 then pos
3058 else
3059 let b = Char.code s.[pos] in
3060 if b land 0b11000000 = 0b11000000
3061 then pos
3062 else find (pos-1)
3064 let first =
3065 if Char.code s.[len-1] land 0x80 = 0
3066 then len-1
3067 else find (len-1)
3069 String.sub s 0 first;
3072 let textentrykeyboard
3073 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3074 let key =
3075 if key >= 0xffb0 && key <= 0xffb9
3076 then key - 0xffb0 + 48 else key
3078 let enttext te =
3079 state.mode <- Textentry (te, onleave);
3080 state.text <- "";
3081 enttext ();
3082 G.postRedisplay "textentrykeyboard enttext";
3084 let histaction cmd =
3085 match opthist with
3086 | None -> ()
3087 | Some (action, _) ->
3088 state.mode <- Textentry (
3089 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3091 G.postRedisplay "textentry histaction"
3093 match key with
3094 | 0xff08 -> (* backspace *)
3095 let s = withoutlastutf8 text in
3096 let len = String.length s in
3097 if cancelonempty && len = 0
3098 then (
3099 onleave Cancel;
3100 G.postRedisplay "textentrykeyboard after cancel";
3102 else (
3103 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3106 | 0xff0d | 0xff8d -> (* (kp) enter *)
3107 ondone text;
3108 onleave Confirm;
3109 G.postRedisplay "textentrykeyboard after confirm"
3111 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3112 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3113 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3114 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3116 | 0xff1b -> (* escape*)
3117 if String.length text = 0
3118 then (
3119 begin match opthist with
3120 | None -> ()
3121 | Some (_, onhistcancel) -> onhistcancel ()
3122 end;
3123 onleave Cancel;
3124 state.text <- "";
3125 G.postRedisplay "textentrykeyboard after cancel2"
3127 else (
3128 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3131 | 0xff9f | 0xffff -> () (* delete *)
3133 | _ when key != 0
3134 && key land 0xff00 != 0xff00 (* keyboard *)
3135 && key land 0xfe00 != 0xfe00 (* xkb *)
3136 && key land 0xfd00 != 0xfd00 (* 3270 *)
3138 begin match onkey text key with
3139 | TEdone text ->
3140 ondone text;
3141 onleave Confirm;
3142 G.postRedisplay "textentrykeyboard after confirm2";
3144 | TEcont text ->
3145 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3147 | TEstop ->
3148 onleave Cancel;
3149 G.postRedisplay "textentrykeyboard after cancel3"
3151 | TEswitch te ->
3152 state.mode <- Textentry (te, onleave);
3153 G.postRedisplay "textentrykeyboard switch";
3154 end;
3156 | _ ->
3157 vlog "unhandled key %s" (Wsi.keyname key)
3160 let firstof first active =
3161 if first > active || abs (first - active) > fstate.maxrows - 1
3162 then max 0 (active - (fstate.maxrows/2))
3163 else first
3166 let calcfirst first active =
3167 if active > first
3168 then
3169 let rows = active - first in
3170 if rows > fstate.maxrows then active - fstate.maxrows else first
3171 else active
3174 let scrollph y maxy =
3175 let sh = (float (maxy + state.winh) /. float state.winh) in
3176 let sh = float state.winh /. sh in
3177 let sh = max sh (float conf.scrollh) in
3179 let percent =
3180 if y = state.maxy
3181 then 1.0
3182 else float y /. float maxy
3184 let position = (float state.winh -. sh) *. percent in
3186 let position =
3187 if position +. sh > float state.winh
3188 then float state.winh -. sh
3189 else position
3191 position, sh;
3194 let coe s = (s :> uioh);;
3196 class listview ~(source:lvsource) ~trusted ~modehash =
3197 object (self)
3198 val m_pan = source#getpan
3199 val m_first = source#getfirst
3200 val m_active = source#getactive
3201 val m_qsearch = source#getqsearch
3202 val m_prev_uioh = state.uioh
3204 method private elemunder y =
3205 let n = y / (fstate.fontsize+1) in
3206 if m_first + n < source#getitemcount
3207 then (
3208 if source#hasaction (m_first + n)
3209 then Some (m_first + n)
3210 else None
3212 else None
3214 method display =
3215 Gl.enable `blend;
3216 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3217 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3218 GlDraw.rect (0., 0.) (float state.winw, float state.winh);
3219 GlDraw.color (1., 1., 1.);
3220 Gl.enable `texture_2d;
3221 let fs = fstate.fontsize in
3222 let nfs = fs + 1 in
3223 let ww = fstate.wwidth in
3224 let tabw = 30.0*.ww in
3225 let itemcount = source#getitemcount in
3226 let rec loop row =
3227 if (row - m_first) > fstate.maxrows
3228 then ()
3229 else (
3230 if row >= 0 && row < itemcount
3231 then (
3232 let (s, level) = source#getitem row in
3233 let y = (row - m_first) * nfs in
3234 let x = 5.0 +. float (level + m_pan) *. ww in
3235 if row = m_active
3236 then (
3237 Gl.disable `texture_2d;
3238 GlDraw.polygon_mode `both `line;
3239 GlDraw.color (1., 1., 1.) ~alpha:0.9;
3240 GlDraw.rect (1., float (y + 1))
3241 (float (state.winw - conf.scrollbw - 1), float (y + fs + 3));
3242 GlDraw.polygon_mode `both `fill;
3243 GlDraw.color (1., 1., 1.);
3244 Gl.enable `texture_2d;
3247 let drawtabularstring s =
3248 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3249 if trusted
3250 then
3251 let tabpos = try String.index s '\t' with Not_found -> -1 in
3252 if tabpos > 0
3253 then
3254 let len = String.length s - tabpos - 1 in
3255 let s1 = String.sub s 0 tabpos
3256 and s2 = String.sub s (tabpos + 1) len in
3257 let nx = drawstr x s1 in
3258 let sw = nx -. x in
3259 let x = x +. (max tabw sw) in
3260 drawstr x s2
3261 else
3262 drawstr x s
3263 else
3264 drawstr x s
3266 let _ = drawtabularstring s in
3267 loop (row+1)
3271 loop m_first;
3272 Gl.disable `blend;
3273 Gl.disable `texture_2d;
3275 method updownlevel incr =
3276 let len = source#getitemcount in
3277 let curlevel =
3278 if m_active >= 0 && m_active < len
3279 then snd (source#getitem m_active)
3280 else -1
3282 let rec flow i =
3283 if i = len then i-1 else if i = -1 then 0 else
3284 let _, l = source#getitem i in
3285 if l != curlevel then i else flow (i+incr)
3287 let active = flow m_active in
3288 let first = calcfirst m_first active in
3289 G.postRedisplay "outline updownlevel";
3290 {< m_active = active; m_first = first >}
3292 method private key1 key mask =
3293 let set1 active first qsearch =
3294 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3296 let search active pattern incr =
3297 let dosearch re =
3298 let rec loop n =
3299 if n >= 0 && n < source#getitemcount
3300 then (
3301 let s, _ = source#getitem n in
3303 (try ignore (Str.search_forward re s 0); true
3304 with Not_found -> false)
3305 then Some n
3306 else loop (n + incr)
3308 else None
3310 loop active
3313 let re = Str.regexp_case_fold pattern in
3314 dosearch re
3315 with Failure s ->
3316 state.text <- s;
3317 None
3319 let itemcount = source#getitemcount in
3320 let find start incr =
3321 let rec find i =
3322 if i = -1 || i = itemcount
3323 then -1
3324 else (
3325 if source#hasaction i
3326 then i
3327 else find (i + incr)
3330 find start
3332 let set active first =
3333 let first = bound first 0 (itemcount - fstate.maxrows) in
3334 state.text <- "";
3335 coe {< m_active = active; m_first = first >}
3337 let navigate incr =
3338 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3339 let active, first =
3340 let incr1 = if incr > 0 then 1 else -1 in
3341 if isvisible m_first m_active
3342 then
3343 let next =
3344 let next = m_active + incr in
3345 let next =
3346 if next < 0 || next >= itemcount
3347 then -1
3348 else find next incr1
3350 if next = -1 || abs (m_active - next) > fstate.maxrows
3351 then -1
3352 else next
3354 if next = -1
3355 then
3356 let first = m_first + incr in
3357 let first = bound first 0 (itemcount - 1) in
3358 let next =
3359 let next = m_active + incr in
3360 let next = bound next 0 (itemcount - 1) in
3361 find next ~-incr1
3363 let active = if next = -1 then m_active else next in
3364 active, first
3365 else
3366 let first = min next m_first in
3367 let first =
3368 if abs (next - first) > fstate.maxrows
3369 then first + incr
3370 else first
3372 next, first
3373 else
3374 let first = m_first + incr in
3375 let first = bound first 0 (itemcount - 1) in
3376 let active =
3377 let next = m_active + incr in
3378 let next = bound next 0 (itemcount - 1) in
3379 let next = find next incr1 in
3380 let active =
3381 if next = -1 || abs (m_active - first) > fstate.maxrows
3382 then (
3383 let active = if m_active = -1 then next else m_active in
3384 active
3386 else next
3388 if isvisible first active
3389 then active
3390 else -1
3392 active, first
3394 G.postRedisplay "listview navigate";
3395 set active first;
3397 match key with
3398 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3399 let incr = if key = 0x72 then -1 else 1 in
3400 let active, first =
3401 match search (m_active + incr) m_qsearch incr with
3402 | None ->
3403 state.text <- m_qsearch ^ " [not found]";
3404 m_active, m_first
3405 | Some active ->
3406 state.text <- m_qsearch;
3407 active, firstof m_first active
3409 G.postRedisplay "listview ctrl-r/s";
3410 set1 active first m_qsearch;
3412 | 0xff08 -> (* backspace *)
3413 if String.length m_qsearch = 0
3414 then coe self
3415 else (
3416 let qsearch = withoutlastutf8 m_qsearch in
3417 let len = String.length qsearch in
3418 if len = 0
3419 then (
3420 state.text <- "";
3421 G.postRedisplay "listview empty qsearch";
3422 set1 m_active m_first "";
3424 else
3425 let active, first =
3426 match search m_active qsearch ~-1 with
3427 | None ->
3428 state.text <- qsearch ^ " [not found]";
3429 m_active, m_first
3430 | Some active ->
3431 state.text <- qsearch;
3432 active, firstof m_first active
3434 G.postRedisplay "listview backspace qsearch";
3435 set1 active first qsearch
3438 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3439 let pattern = m_qsearch ^ toutf8 key in
3440 let active, first =
3441 match search m_active pattern 1 with
3442 | None ->
3443 state.text <- pattern ^ " [not found]";
3444 m_active, m_first
3445 | Some active ->
3446 state.text <- pattern;
3447 active, firstof m_first active
3449 G.postRedisplay "listview qsearch add";
3450 set1 active first pattern;
3452 | 0xff1b -> (* escape *)
3453 state.text <- "";
3454 if String.length m_qsearch = 0
3455 then (
3456 G.postRedisplay "list view escape";
3457 begin
3458 match
3459 source#exit (coe self) true m_active m_first m_pan m_qsearch
3460 with
3461 | None -> m_prev_uioh
3462 | Some uioh -> uioh
3465 else (
3466 G.postRedisplay "list view kill qsearch";
3467 source#setqsearch "";
3468 coe {< m_qsearch = "" >}
3471 | 0xff0d | 0xff8d -> (* (kp) enter *)
3472 state.text <- "";
3473 let self = {< m_qsearch = "" >} in
3474 source#setqsearch "";
3475 let opt =
3476 G.postRedisplay "listview enter";
3477 if m_active >= 0 && m_active < source#getitemcount
3478 then (
3479 source#exit (coe self) false m_active m_first m_pan "";
3481 else (
3482 source#exit (coe self) true m_active m_first m_pan "";
3485 begin match opt with
3486 | None -> m_prev_uioh
3487 | Some uioh -> uioh
3490 | 0xff9f | 0xffff -> (* (kp) delete *)
3491 coe self
3493 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3494 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3495 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3496 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3498 | 0xff53 | 0xff98 -> (* (kp) right *)
3499 state.text <- "";
3500 G.postRedisplay "listview right";
3501 coe {< m_pan = m_pan - 1 >}
3503 | 0xff51 | 0xff96 -> (* (kp) left *)
3504 state.text <- "";
3505 G.postRedisplay "listview left";
3506 coe {< m_pan = m_pan + 1 >}
3508 | 0xff50 | 0xff95 -> (* (kp) home *)
3509 let active = find 0 1 in
3510 G.postRedisplay "listview home";
3511 set active 0;
3513 | 0xff57 | 0xff9c -> (* (kp) end *)
3514 let first = max 0 (itemcount - fstate.maxrows) in
3515 let active = find (itemcount - 1) ~-1 in
3516 G.postRedisplay "listview end";
3517 set active first;
3519 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3520 coe self
3522 | _ ->
3523 dolog "listview unknown key %#x" key; coe self
3525 method key key mask =
3526 match state.mode with
3527 | Textentry te -> textentrykeyboard key mask te; coe self
3528 | _ -> self#key1 key mask
3530 method button button down x y _ =
3531 let opt =
3532 match button with
3533 | 1 when x > state.winw - conf.scrollbw ->
3534 G.postRedisplay "listview scroll";
3535 if down
3536 then
3537 let _, position, sh = self#scrollph in
3538 if y > truncate position && y < truncate (position +. sh)
3539 then (
3540 state.mstate <- Mscrolly;
3541 Some (coe self)
3543 else
3544 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3545 let first = truncate (s *. float source#getitemcount) in
3546 let first = min source#getitemcount first in
3547 Some (coe {< m_first = first; m_active = first >})
3548 else (
3549 state.mstate <- Mnone;
3550 Some (coe self);
3552 | 1 when not down ->
3553 begin match self#elemunder y with
3554 | Some n ->
3555 G.postRedisplay "listview click";
3556 source#exit
3557 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3558 | _ ->
3559 Some (coe self)
3561 | n when (n == 4 || n == 5) && not down ->
3562 let len = source#getitemcount in
3563 let first =
3564 if n = 5 && m_first + fstate.maxrows >= len
3565 then
3566 m_first
3567 else
3568 let first = m_first + (if n == 4 then -1 else 1) in
3569 bound first 0 (len - 1)
3571 G.postRedisplay "listview wheel";
3572 Some (coe {< m_first = first >})
3573 | n when (n = 6 || n = 7) && not down ->
3574 let inc = m_first + (if n = 7 then -1 else 1) in
3575 G.postRedisplay "listview hwheel";
3576 Some (coe {< m_pan = m_pan + inc >})
3577 | _ ->
3578 Some (coe self)
3580 match opt with
3581 | None -> m_prev_uioh
3582 | Some uioh -> uioh
3584 method motion _ y =
3585 match state.mstate with
3586 | Mscrolly ->
3587 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3588 let first = truncate (s *. float source#getitemcount) in
3589 let first = min source#getitemcount first in
3590 G.postRedisplay "listview motion";
3591 coe {< m_first = first; m_active = first >}
3592 | _ -> coe self
3594 method pmotion x y =
3595 if x < state.winw - conf.scrollbw
3596 then
3597 let n =
3598 match self#elemunder y with
3599 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3600 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3602 let o =
3603 if n != m_active
3604 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3605 else self
3607 coe o
3608 else (
3609 Wsi.setcursor Wsi.CURSOR_INHERIT;
3610 coe self
3613 method infochanged _ = ()
3615 method scrollpw = (0, 0.0, 0.0)
3616 method scrollph =
3617 let nfs = fstate.fontsize + 1 in
3618 let y = m_first * nfs in
3619 let itemcount = source#getitemcount in
3620 let maxi = max 0 (itemcount - fstate.maxrows) in
3621 let maxy = maxi * nfs in
3622 let p, h = scrollph y maxy in
3623 conf.scrollbw, p, h
3625 method modehash = modehash
3626 end;;
3628 class outlinelistview ~source =
3629 object (self)
3630 inherit listview
3631 ~source:(source :> lvsource)
3632 ~trusted:false
3633 ~modehash:(findkeyhash conf "outline")
3634 as super
3636 method key key mask =
3637 let calcfirst first active =
3638 if active > first
3639 then
3640 let rows = active - first in
3641 let maxrows =
3642 if String.length state.text = 0
3643 then fstate.maxrows
3644 else fstate.maxrows - 2
3646 if rows > maxrows then active - maxrows else first
3647 else active
3649 let navigate incr =
3650 let active = m_active + incr in
3651 let active = bound active 0 (source#getitemcount - 1) in
3652 let first = calcfirst m_first active in
3653 G.postRedisplay "outline navigate";
3654 coe {< m_active = active; m_first = first >}
3656 let ctrl = Wsi.withctrl mask in
3657 match key with
3658 | 110 when ctrl -> (* ctrl-n *)
3659 source#narrow m_qsearch;
3660 G.postRedisplay "outline ctrl-n";
3661 coe {< m_first = 0; m_active = 0 >}
3663 | 117 when ctrl -> (* ctrl-u *)
3664 source#denarrow;
3665 G.postRedisplay "outline ctrl-u";
3666 state.text <- "";
3667 coe {< m_first = 0; m_active = 0 >}
3669 | 108 when ctrl -> (* ctrl-l *)
3670 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3671 G.postRedisplay "outline ctrl-l";
3672 coe {< m_first = first >}
3674 | 0xff9f | 0xffff -> (* (kp) delete *)
3675 source#remove m_active;
3676 G.postRedisplay "outline delete";
3677 let active = max 0 (m_active-1) in
3678 coe {< m_first = firstof m_first active;
3679 m_active = active >}
3681 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3682 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3683 | 0xff55 | 0xff9a -> (* (kp) prior *)
3684 navigate ~-(fstate.maxrows)
3685 | 0xff56 | 0xff9b -> (* (kp) next *)
3686 navigate fstate.maxrows
3688 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3689 let o =
3690 if ctrl
3691 then (
3692 G.postRedisplay "outline ctrl right";
3693 {< m_pan = m_pan + 1 >}
3695 else self#updownlevel 1
3697 coe o
3699 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3700 let o =
3701 if ctrl
3702 then (
3703 G.postRedisplay "outline ctrl left";
3704 {< m_pan = m_pan - 1 >}
3706 else self#updownlevel ~-1
3708 coe o
3710 | 0xff50 | 0xff95 -> (* (kp) home *)
3711 G.postRedisplay "outline home";
3712 coe {< m_first = 0; m_active = 0 >}
3714 | 0xff57 | 0xff9c -> (* (kp) end *)
3715 let active = source#getitemcount - 1 in
3716 let first = max 0 (active - fstate.maxrows) in
3717 G.postRedisplay "outline end";
3718 coe {< m_active = active; m_first = first >}
3720 | _ -> super#key key mask
3723 let outlinesource usebookmarks =
3724 let empty = [||] in
3725 (object
3726 inherit lvsourcebase
3727 val mutable m_items = empty
3728 val mutable m_orig_items = empty
3729 val mutable m_prev_items = empty
3730 val mutable m_narrow_pattern = ""
3731 val mutable m_hadremovals = false
3733 method getitemcount =
3734 Array.length m_items + (if m_hadremovals then 1 else 0)
3736 method getitem n =
3737 if n == Array.length m_items && m_hadremovals
3738 then
3739 ("[Confirm removal]", 0)
3740 else
3741 let s, n, _ = m_items.(n) in
3742 (s, n)
3744 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3745 ignore (uioh, first, qsearch);
3746 let confrimremoval = m_hadremovals && active = Array.length m_items in
3747 let items =
3748 if String.length m_narrow_pattern = 0
3749 then m_orig_items
3750 else m_items
3752 if not cancel
3753 then (
3754 if not confrimremoval
3755 then(
3756 let _, _, anchor = m_items.(active) in
3757 gotoghyll (getanchory anchor);
3758 m_items <- items;
3760 else (
3761 state.bookmarks <- Array.to_list m_items;
3762 m_orig_items <- m_items;
3765 else m_items <- items;
3766 m_pan <- pan;
3767 None
3769 method hasaction _ = true
3771 method greetmsg =
3772 if Array.length m_items != Array.length m_orig_items
3773 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3774 else ""
3776 method narrow pattern =
3777 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3778 match reopt with
3779 | None -> ()
3780 | Some re ->
3781 let rec loop accu n =
3782 if n = -1
3783 then (
3784 m_narrow_pattern <- pattern;
3785 m_items <- Array.of_list accu
3787 else
3788 let (s, _, _) as o = m_items.(n) in
3789 let accu =
3790 if (try ignore (Str.search_forward re s 0); true
3791 with Not_found -> false)
3792 then o :: accu
3793 else accu
3795 loop accu (n-1)
3797 loop [] (Array.length m_items - 1)
3799 method denarrow =
3800 m_orig_items <- (
3801 if usebookmarks
3802 then Array.of_list state.bookmarks
3803 else state.outlines
3805 m_items <- m_orig_items
3807 method remove m =
3808 if usebookmarks
3809 then
3810 if m >= 0 && m < Array.length m_items
3811 then (
3812 m_hadremovals <- true;
3813 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3814 let n = if n >= m then n+1 else n in
3815 m_items.(n)
3819 method reset anchor items =
3820 m_hadremovals <- false;
3821 if m_orig_items == empty || m_prev_items != items
3822 then (
3823 m_orig_items <- items;
3824 if String.length m_narrow_pattern = 0
3825 then m_items <- items;
3827 m_prev_items <- items;
3828 let rely = getanchory anchor in
3829 let active =
3830 let rec loop n best bestd =
3831 if n = Array.length m_items
3832 then best
3833 else
3834 let (_, _, anchor) = m_items.(n) in
3835 let orely = getanchory anchor in
3836 let d = abs (orely - rely) in
3837 if d < bestd
3838 then loop (n+1) n d
3839 else loop (n+1) best bestd
3841 loop 0 ~-1 max_int
3843 m_active <- active;
3844 m_first <- firstof m_first active
3845 end)
3848 let enterselector usebookmarks =
3849 let source = outlinesource usebookmarks in
3850 fun errmsg ->
3851 let outlines =
3852 if usebookmarks
3853 then Array.of_list state.bookmarks
3854 else state.outlines
3856 if Array.length outlines = 0
3857 then (
3858 showtext ' ' errmsg;
3860 else (
3861 state.text <- source#greetmsg;
3862 Wsi.setcursor Wsi.CURSOR_INHERIT;
3863 let anchor = getanchor () in
3864 source#reset anchor outlines;
3865 state.uioh <- coe (new outlinelistview ~source);
3866 G.postRedisplay "enter selector";
3870 let enteroutlinemode =
3871 let f = enterselector false in
3872 fun ()-> f "Document has no outline";
3875 let enterbookmarkmode =
3876 let f = enterselector true in
3877 fun () -> f "Document has no bookmarks (yet)";
3880 let color_of_string s =
3881 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3882 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3886 let color_to_string (r, g, b) =
3887 let r = truncate (r *. 256.0)
3888 and g = truncate (g *. 256.0)
3889 and b = truncate (b *. 256.0) in
3890 Printf.sprintf "%d/%d/%d" r g b
3893 let irect_of_string s =
3894 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3897 let irect_to_string (x0,y0,x1,y1) =
3898 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3901 let makecheckers () =
3902 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3903 following to say:
3904 converted by Issac Trotts. July 25, 2002 *)
3905 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3906 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3907 let id = GlTex.gen_texture () in
3908 GlTex.bind_texture `texture_2d id;
3909 GlPix.store (`unpack_alignment 1);
3910 GlTex.image2d image;
3911 List.iter (GlTex.parameter ~target:`texture_2d)
3912 [ `mag_filter `nearest; `min_filter `nearest ];
3916 let setcheckers enabled =
3917 match state.texid with
3918 | None ->
3919 if enabled then state.texid <- Some (makecheckers ())
3921 | Some texid ->
3922 if not enabled
3923 then (
3924 GlTex.delete_texture texid;
3925 state.texid <- None;
3929 let int_of_string_with_suffix s =
3930 let l = String.length s in
3931 let s1, shift =
3932 if l > 1
3933 then
3934 let suffix = Char.lowercase s.[l-1] in
3935 match suffix with
3936 | 'k' -> String.sub s 0 (l-1), 10
3937 | 'm' -> String.sub s 0 (l-1), 20
3938 | 'g' -> String.sub s 0 (l-1), 30
3939 | _ -> s, 0
3940 else s, 0
3942 let n = int_of_string s1 in
3943 let m = n lsl shift in
3944 if m < 0 || m < n
3945 then raise (Failure "value too large")
3946 else m
3949 let string_with_suffix_of_int n =
3950 if n = 0
3951 then "0"
3952 else
3953 let n, s =
3954 if n land ((1 lsl 30) - 1) = 0
3955 then n lsr 30, "G"
3956 else (
3957 if n land ((1 lsl 20) - 1) = 0
3958 then n lsr 20, "M"
3959 else (
3960 if n land ((1 lsl 10) - 1) = 0
3961 then n lsr 10, "K"
3962 else n, ""
3966 let rec loop s n =
3967 let h = n mod 1000 in
3968 let n = n / 1000 in
3969 if n = 0
3970 then string_of_int h ^ s
3971 else (
3972 let s = Printf.sprintf "_%03d%s" h s in
3973 loop s n
3976 loop "" n ^ s;
3979 let defghyllscroll = (40, 8, 32);;
3980 let ghyllscroll_of_string s =
3981 let (n, a, b) as nab =
3982 if s = "default"
3983 then defghyllscroll
3984 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
3986 if n <= a || n <= b || a >= b
3987 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3988 nab;
3991 let ghyllscroll_to_string ((n, a, b) as nab) =
3992 if nab = defghyllscroll
3993 then "default"
3994 else Printf.sprintf "%d,%d,%d" n a b;
3997 let describe_location () =
3998 let f (fn, _) l =
3999 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
4001 let fn, ln = List.fold_left f (-1, -1) state.layout in
4002 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4003 let percent =
4004 if maxy <= 0
4005 then 100.
4006 else (100. *. (float state.y /. float maxy))
4008 if fn = ln
4009 then
4010 Printf.sprintf "page %d of %d [%.2f%%]"
4011 (fn+1) state.pagecount percent
4012 else
4013 Printf.sprintf
4014 "pages %d-%d of %d [%.2f%%]"
4015 (fn+1) (ln+1) state.pagecount percent
4018 let setpresentationmode v =
4019 let (n, _, _) = getanchor () in
4020 let _, h = getpageyh n in
4021 let ips = if conf.presentation then calcips h else conf.interpagespace in
4022 state.anchor <- (n, 0.0, float ips);
4023 conf.presentation <- v;
4024 if conf.presentation
4025 then (
4026 if not conf.scrollbarinpm
4027 then state.scrollw <- 0;
4029 else state.scrollw <- conf.scrollbw;
4030 represent ();
4033 let enterinfomode =
4034 let btos b = if b then "\xe2\x88\x9a" else "" in
4035 let showextended = ref false in
4036 let leave mode = function
4037 | Confirm -> state.mode <- mode
4038 | Cancel -> state.mode <- mode in
4039 let src =
4040 (object
4041 val mutable m_first_time = true
4042 val mutable m_l = []
4043 val mutable m_a = [||]
4044 val mutable m_prev_uioh = nouioh
4045 val mutable m_prev_mode = View
4047 inherit lvsourcebase
4049 method reset prev_mode prev_uioh =
4050 m_a <- Array.of_list (List.rev m_l);
4051 m_l <- [];
4052 m_prev_mode <- prev_mode;
4053 m_prev_uioh <- prev_uioh;
4054 if m_first_time
4055 then (
4056 let rec loop n =
4057 if n >= Array.length m_a
4058 then ()
4059 else
4060 match m_a.(n) with
4061 | _, _, _, Action _ -> m_active <- n
4062 | _ -> loop (n+1)
4064 loop 0;
4065 m_first_time <- false;
4068 method int name get set =
4069 m_l <-
4070 (name, `int get, 1, Action (
4071 fun u ->
4072 let ondone s =
4073 try set (int_of_string s)
4074 with exn ->
4075 state.text <- Printf.sprintf "bad integer `%s': %s"
4076 s (exntos exn)
4078 state.text <- "";
4079 let te = name ^ ": ", "", None, intentry, ondone, true in
4080 state.mode <- Textentry (te, leave m_prev_mode);
4082 )) :: m_l
4084 method int_with_suffix name get set =
4085 m_l <-
4086 (name, `intws get, 1, Action (
4087 fun u ->
4088 let ondone s =
4089 try set (int_of_string_with_suffix s)
4090 with exn ->
4091 state.text <- Printf.sprintf "bad integer `%s': %s"
4092 s (exntos exn)
4094 state.text <- "";
4095 let te =
4096 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4098 state.mode <- Textentry (te, leave m_prev_mode);
4100 )) :: m_l
4102 method bool ?(offset=1) ?(btos=btos) name get set =
4103 m_l <-
4104 (name, `bool (btos, get), offset, Action (
4105 fun u ->
4106 let v = get () in
4107 set (not v);
4109 )) :: m_l
4111 method color name get set =
4112 m_l <-
4113 (name, `color get, 1, Action (
4114 fun u ->
4115 let invalid = (nan, nan, nan) in
4116 let ondone s =
4117 let c =
4118 try color_of_string s
4119 with exn ->
4120 state.text <- Printf.sprintf "bad color `%s': %s"
4121 s (exntos exn);
4122 invalid
4124 if c <> invalid
4125 then set c;
4127 let te = name ^ ": ", "", None, textentry, ondone, true in
4128 state.text <- color_to_string (get ());
4129 state.mode <- Textentry (te, leave m_prev_mode);
4131 )) :: m_l
4133 method string name get set =
4134 m_l <-
4135 (name, `string get, 1, Action (
4136 fun u ->
4137 let ondone s = set s in
4138 let te = name ^ ": ", "", None, textentry, ondone, true in
4139 state.mode <- Textentry (te, leave m_prev_mode);
4141 )) :: m_l
4143 method colorspace name get set =
4144 m_l <-
4145 (name, `string get, 1, Action (
4146 fun _ ->
4147 let source =
4148 let vals = [| "rgb"; "bgr"; "gray" |] in
4149 (object
4150 inherit lvsourcebase
4152 initializer
4153 m_active <- int_of_colorspace conf.colorspace;
4154 m_first <- 0;
4156 method getitemcount = Array.length vals
4157 method getitem n = (vals.(n), 0)
4158 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4159 ignore (uioh, first, pan, qsearch);
4160 if not cancel then set active;
4161 None
4162 method hasaction _ = true
4163 end)
4165 state.text <- "";
4166 let modehash = findkeyhash conf "info" in
4167 coe (new listview ~source ~trusted:true ~modehash)
4168 )) :: m_l
4170 method caption s offset =
4171 m_l <- (s, `empty, offset, Noaction) :: m_l
4173 method caption2 s f offset =
4174 m_l <- (s, `string f, offset, Noaction) :: m_l
4176 method getitemcount = Array.length m_a
4178 method getitem n =
4179 let tostr = function
4180 | `int f -> string_of_int (f ())
4181 | `intws f -> string_with_suffix_of_int (f ())
4182 | `string f -> f ()
4183 | `color f -> color_to_string (f ())
4184 | `bool (btos, f) -> btos (f ())
4185 | `empty -> ""
4187 let name, t, offset, _ = m_a.(n) in
4188 ((let s = tostr t in
4189 if String.length s > 0
4190 then Printf.sprintf "%s\t%s" name s
4191 else name),
4192 offset)
4194 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4195 let uiohopt =
4196 if not cancel
4197 then (
4198 m_qsearch <- qsearch;
4199 let uioh =
4200 match m_a.(active) with
4201 | _, _, _, Action f -> f uioh
4202 | _ -> uioh
4204 Some uioh
4206 else None
4208 m_active <- active;
4209 m_first <- first;
4210 m_pan <- pan;
4211 uiohopt
4213 method hasaction n =
4214 match m_a.(n) with
4215 | _, _, _, Action _ -> true
4216 | _ -> false
4217 end)
4219 let rec fillsrc prevmode prevuioh =
4220 let sep () = src#caption "" 0 in
4221 let colorp name get set =
4222 src#string name
4223 (fun () -> color_to_string (get ()))
4224 (fun v ->
4226 let c = color_of_string v in
4227 set c
4228 with exn ->
4229 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4232 let oldmode = state.mode in
4233 let birdseye = isbirdseye state.mode in
4235 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4237 src#bool "presentation mode"
4238 (fun () -> conf.presentation)
4239 (fun v -> setpresentationmode v);
4241 src#bool "ignore case in searches"
4242 (fun () -> conf.icase)
4243 (fun v -> conf.icase <- v);
4245 src#bool "preload"
4246 (fun () -> conf.preload)
4247 (fun v -> conf.preload <- v);
4249 src#bool "highlight links"
4250 (fun () -> conf.hlinks)
4251 (fun v -> conf.hlinks <- v);
4253 src#bool "under info"
4254 (fun () -> conf.underinfo)
4255 (fun v -> conf.underinfo <- v);
4257 src#bool "persistent bookmarks"
4258 (fun () -> conf.savebmarks)
4259 (fun v -> conf.savebmarks <- v);
4261 src#bool "proportional display"
4262 (fun () -> conf.proportional)
4263 (fun v -> reqlayout conf.angle v);
4265 src#bool "trim margins"
4266 (fun () -> conf.trimmargins)
4267 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4269 src#bool "persistent location"
4270 (fun () -> conf.jumpback)
4271 (fun v -> conf.jumpback <- v);
4273 sep ();
4274 src#int "inter-page space"
4275 (fun () -> conf.interpagespace)
4276 (fun n ->
4277 conf.interpagespace <- n;
4278 docolumns conf.columns;
4279 let pageno, py =
4280 match state.layout with
4281 | [] -> 0, 0
4282 | l :: _ ->
4283 l.pageno, l.pagey
4285 state.maxy <- calcheight ();
4286 let y = getpagey pageno in
4287 gotoy (y + py)
4290 src#int "page bias"
4291 (fun () -> conf.pagebias)
4292 (fun v -> conf.pagebias <- v);
4294 src#int "scroll step"
4295 (fun () -> conf.scrollstep)
4296 (fun n -> conf.scrollstep <- n);
4298 src#int "horizontal scroll step"
4299 (fun () -> conf.hscrollstep)
4300 (fun v -> conf.hscrollstep <- v);
4302 src#int "auto scroll step"
4303 (fun () ->
4304 match state.autoscroll with
4305 | Some step -> step
4306 | _ -> conf.autoscrollstep)
4307 (fun n ->
4308 if state.autoscroll <> None
4309 then state.autoscroll <- Some n;
4310 conf.autoscrollstep <- n);
4312 src#int "zoom"
4313 (fun () -> truncate (conf.zoom *. 100.))
4314 (fun v -> setzoom ((float v) /. 100.));
4316 src#int "rotation"
4317 (fun () -> conf.angle)
4318 (fun v -> reqlayout v conf.proportional);
4320 src#int "scroll bar width"
4321 (fun () -> state.scrollw)
4322 (fun v ->
4323 state.scrollw <- v;
4324 conf.scrollbw <- v;
4325 reshape state.winw state.winh;
4328 src#int "scroll handle height"
4329 (fun () -> conf.scrollh)
4330 (fun v -> conf.scrollh <- v;);
4332 src#int "thumbnail width"
4333 (fun () -> conf.thumbw)
4334 (fun v ->
4335 conf.thumbw <- min 4096 v;
4336 match oldmode with
4337 | Birdseye beye ->
4338 leavebirdseye beye false;
4339 enterbirdseye ()
4340 | _ -> ()
4343 let mode = state.mode in
4344 src#string "columns"
4345 (fun () ->
4346 match conf.columns with
4347 | Csingle _ -> "1"
4348 | Cmulti (multi, _) -> multicolumns_to_string multi
4349 | Csplit (count, _) -> "-" ^ string_of_int count
4351 (fun v ->
4352 let n, a, b = multicolumns_of_string v in
4353 setcolumns mode n a b);
4355 sep ();
4356 src#caption "Presentation mode" 0;
4357 src#bool "scrollbar visible"
4358 (fun () -> conf.scrollbarinpm)
4359 (fun v ->
4360 if v != conf.scrollbarinpm
4361 then (
4362 conf.scrollbarinpm <- v;
4363 if conf.presentation
4364 then (
4365 state.scrollw <- if v then conf.scrollbw else 0;
4366 reshape state.winw state.winh;
4371 sep ();
4372 src#caption "Pixmap cache" 0;
4373 src#int_with_suffix "size (advisory)"
4374 (fun () -> conf.memlimit)
4375 (fun v -> conf.memlimit <- v);
4377 src#caption2 "used"
4378 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4379 (string_with_suffix_of_int state.memused)
4380 (Hashtbl.length state.tilemap)) 1;
4382 sep ();
4383 src#caption "Layout" 0;
4384 src#caption2 "Dimension"
4385 (fun () ->
4386 Printf.sprintf "%dx%d (virtual %dx%d)"
4387 state.winw state.winh
4388 state.w state.maxy)
4390 if conf.debug
4391 then
4392 src#caption2 "Position" (fun () ->
4393 Printf.sprintf "%dx%d" state.x state.y
4395 else
4396 src#caption2 "Visible" (fun () -> describe_location ()) 1
4399 sep ();
4400 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4401 "Save these parameters as global defaults at exit"
4402 (fun () -> conf.bedefault)
4403 (fun v -> conf.bedefault <- v)
4406 sep ();
4407 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4408 src#bool ~offset:0 ~btos "Extended parameters"
4409 (fun () -> !showextended)
4410 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4411 if !showextended
4412 then (
4413 src#bool "checkers"
4414 (fun () -> conf.checkers)
4415 (fun v -> conf.checkers <- v; setcheckers v);
4416 src#bool "update cursor"
4417 (fun () -> conf.updatecurs)
4418 (fun v -> conf.updatecurs <- v);
4419 src#bool "verbose"
4420 (fun () -> conf.verbose)
4421 (fun v -> conf.verbose <- v);
4422 src#bool "invert colors"
4423 (fun () -> conf.invert)
4424 (fun v -> conf.invert <- v);
4425 src#bool "max fit"
4426 (fun () -> conf.maxhfit)
4427 (fun v -> conf.maxhfit <- v);
4428 src#bool "redirect stderr"
4429 (fun () -> conf.redirectstderr)
4430 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4431 src#string "uri launcher"
4432 (fun () -> conf.urilauncher)
4433 (fun v -> conf.urilauncher <- v);
4434 src#string "path launcher"
4435 (fun () -> conf.pathlauncher)
4436 (fun v -> conf.pathlauncher <- v);
4437 src#string "tile size"
4438 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4439 (fun v ->
4441 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4442 conf.tilew <- max 64 w;
4443 conf.tileh <- max 64 h;
4444 flushtiles ();
4445 with exn ->
4446 state.text <- Printf.sprintf "bad tile size `%s': %s"
4447 v (exntos exn)
4449 src#int "texture count"
4450 (fun () -> conf.texcount)
4451 (fun v ->
4452 if realloctexts v
4453 then conf.texcount <- v
4454 else showtext '!' " Failed to set texture count please retry later"
4456 src#int "slice height"
4457 (fun () -> conf.sliceheight)
4458 (fun v ->
4459 conf.sliceheight <- v;
4460 wcmd "sliceh %d" conf.sliceheight;
4462 src#int "anti-aliasing level"
4463 (fun () -> conf.aalevel)
4464 (fun v ->
4465 conf.aalevel <- bound v 0 8;
4466 state.anchor <- getanchor ();
4467 opendoc state.path state.password;
4469 src#string "page scroll scaling factor"
4470 (fun () -> string_of_float conf.pgscale)
4471 (fun v ->
4473 let s = float_of_string v in
4474 conf.pgscale <- s
4475 with exn ->
4476 state.text <- Printf.sprintf
4477 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4480 src#int "ui font size"
4481 (fun () -> fstate.fontsize)
4482 (fun v -> setfontsize (bound v 5 100));
4483 src#int "hint font size"
4484 (fun () -> conf.hfsize)
4485 (fun v -> conf.hfsize <- bound v 5 100);
4486 colorp "background color"
4487 (fun () -> conf.bgcolor)
4488 (fun v -> conf.bgcolor <- v);
4489 src#bool "crop hack"
4490 (fun () -> conf.crophack)
4491 (fun v -> conf.crophack <- v);
4492 src#string "trim fuzz"
4493 (fun () -> irect_to_string conf.trimfuzz)
4494 (fun v ->
4496 conf.trimfuzz <- irect_of_string v;
4497 if conf.trimmargins
4498 then settrim true conf.trimfuzz;
4499 with exn ->
4500 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4502 src#string "throttle"
4503 (fun () ->
4504 match conf.maxwait with
4505 | None -> "show place holder if page is not ready"
4506 | Some time ->
4507 if time = infinity
4508 then "wait for page to fully render"
4509 else
4510 "wait " ^ string_of_float time
4511 ^ " seconds before showing placeholder"
4513 (fun v ->
4515 let f = float_of_string v in
4516 if f <= 0.0
4517 then conf.maxwait <- None
4518 else conf.maxwait <- Some f
4519 with exn ->
4520 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4522 src#string "ghyll scroll"
4523 (fun () ->
4524 match conf.ghyllscroll with
4525 | None -> ""
4526 | Some nab -> ghyllscroll_to_string nab
4528 (fun v ->
4530 let gs =
4531 if String.length v = 0
4532 then None
4533 else Some (ghyllscroll_of_string v)
4535 conf.ghyllscroll <- gs
4536 with exn ->
4537 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4539 src#string "selection command"
4540 (fun () -> conf.selcmd)
4541 (fun v -> conf.selcmd <- v);
4542 src#string "synctex command"
4543 (fun () -> conf.stcmd)
4544 (fun v -> conf.stcmd <- v);
4545 src#colorspace "color space"
4546 (fun () -> colorspace_to_string conf.colorspace)
4547 (fun v ->
4548 conf.colorspace <- colorspace_of_int v;
4549 wcmd "cs %d" v;
4550 load state.layout;
4552 if pbousable ()
4553 then
4554 src#bool "use PBO"
4555 (fun () -> conf.usepbo)
4556 (fun v -> conf.usepbo <- v);
4557 src#bool "mouse wheel scrolls pages"
4558 (fun () -> conf.wheelbypage)
4559 (fun v -> conf.wheelbypage <- v);
4562 sep ();
4563 src#caption "Document" 0;
4564 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4565 src#caption2 "Pages"
4566 (fun () -> string_of_int state.pagecount) 1;
4567 src#caption2 "Dimensions"
4568 (fun () -> string_of_int (List.length state.pdims)) 1;
4569 if conf.trimmargins
4570 then (
4571 sep ();
4572 src#caption "Trimmed margins" 0;
4573 src#caption2 "Dimensions"
4574 (fun () -> string_of_int (List.length state.pdims)) 1;
4577 sep ();
4578 src#caption "OpenGL" 0;
4579 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4580 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4581 src#reset prevmode prevuioh;
4583 fun () ->
4584 state.text <- "";
4585 let prevmode = state.mode
4586 and prevuioh = state.uioh in
4587 fillsrc prevmode prevuioh;
4588 let source = (src :> lvsource) in
4589 let modehash = findkeyhash conf "info" in
4590 state.uioh <- coe (object (self)
4591 inherit listview ~source ~trusted:true ~modehash as super
4592 val mutable m_prevmemused = 0
4593 method infochanged = function
4594 | Memused ->
4595 if m_prevmemused != state.memused
4596 then (
4597 m_prevmemused <- state.memused;
4598 G.postRedisplay "memusedchanged";
4600 | Pdim -> G.postRedisplay "pdimchanged"
4601 | Docinfo -> fillsrc prevmode prevuioh
4603 method key key mask =
4604 if not (Wsi.withctrl mask)
4605 then
4606 match key with
4607 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4608 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4609 | _ -> super#key key mask
4610 else super#key key mask
4611 end);
4612 G.postRedisplay "info";
4615 let enterhelpmode =
4616 let source =
4617 (object
4618 inherit lvsourcebase
4619 method getitemcount = Array.length state.help
4620 method getitem n =
4621 let s, l, _ = state.help.(n) in
4622 (s, l)
4624 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4625 let optuioh =
4626 if not cancel
4627 then (
4628 m_qsearch <- qsearch;
4629 match state.help.(active) with
4630 | _, _, Action f -> Some (f uioh)
4631 | _ -> Some (uioh)
4633 else None
4635 m_active <- active;
4636 m_first <- first;
4637 m_pan <- pan;
4638 optuioh
4640 method hasaction n =
4641 match state.help.(n) with
4642 | _, _, Action _ -> true
4643 | _ -> false
4645 initializer
4646 m_active <- -1
4647 end)
4648 in fun () ->
4649 let modehash = findkeyhash conf "help" in
4650 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4651 G.postRedisplay "help";
4654 let entermsgsmode =
4655 let msgsource =
4656 let re = Str.regexp "[\r\n]" in
4657 (object
4658 inherit lvsourcebase
4659 val mutable m_items = [||]
4661 method getitemcount = 1 + Array.length m_items
4663 method getitem n =
4664 if n = 0
4665 then "[Clear]", 0
4666 else m_items.(n-1), 0
4668 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4669 ignore uioh;
4670 if not cancel
4671 then (
4672 if active = 0
4673 then Buffer.clear state.errmsgs;
4674 m_qsearch <- qsearch;
4676 m_active <- active;
4677 m_first <- first;
4678 m_pan <- pan;
4679 None
4681 method hasaction n =
4682 n = 0
4684 method reset =
4685 state.newerrmsgs <- false;
4686 let l = Str.split re (Buffer.contents state.errmsgs) in
4687 m_items <- Array.of_list l
4689 initializer
4690 m_active <- 0
4691 end)
4692 in fun () ->
4693 state.text <- "";
4694 msgsource#reset;
4695 let source = (msgsource :> lvsource) in
4696 let modehash = findkeyhash conf "listview" in
4697 state.uioh <- coe (object
4698 inherit listview ~source ~trusted:false ~modehash as super
4699 method display =
4700 if state.newerrmsgs
4701 then msgsource#reset;
4702 super#display
4703 end);
4704 G.postRedisplay "msgs";
4707 let quickbookmark ?title () =
4708 match state.layout with
4709 | [] -> ()
4710 | l :: _ ->
4711 let title =
4712 match title with
4713 | None ->
4714 let sec = Unix.gettimeofday () in
4715 let tm = Unix.localtime sec in
4716 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4717 (l.pageno+1)
4718 tm.Unix.tm_mday
4719 tm.Unix.tm_mon
4720 (tm.Unix.tm_year + 1900)
4721 tm.Unix.tm_hour
4722 tm.Unix.tm_min
4723 | Some title -> title
4725 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4728 let doreshape w h =
4729 Wsi.reshape w h;
4732 let setautoscrollspeed step goingdown =
4733 let incr = max 1 ((abs step) / 2) in
4734 let incr = if goingdown then incr else -incr in
4735 let astep = step + incr in
4736 state.autoscroll <- Some astep;
4739 let gotounder = function
4740 | Ulinkgoto (pageno, top) ->
4741 if pageno >= 0
4742 then (
4743 addnav ();
4744 gotopage1 pageno top;
4747 | Ulinkuri s ->
4748 gotouri s
4750 | Uremote (filename, pageno) ->
4751 let path =
4752 if Sys.file_exists filename
4753 then filename
4754 else
4755 let dir = Filename.dirname state.path in
4756 let path = Filename.concat dir filename in
4757 if Sys.file_exists path
4758 then path
4759 else ""
4761 if String.length path > 0
4762 then (
4763 let anchor = getanchor () in
4764 let ranchor = state.path, state.password, anchor in
4765 state.anchor <- (pageno, 0.0, 0.0);
4766 state.ranchors <- ranchor :: state.ranchors;
4767 opendoc path "";
4769 else showtext '!' ("Could not find " ^ filename)
4771 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4774 let canpan () =
4775 match conf.columns with
4776 | Csplit _ -> true
4777 | _ -> conf.zoom > 1.0
4780 let existsinrow pageno (columns, coverA, coverB) p =
4781 let last = ((pageno - coverA) mod columns) + columns in
4782 let rec any = function
4783 | [] -> false
4784 | l :: rest ->
4785 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4786 then p l
4787 else (
4788 if not (p l)
4789 then (if l.pageno = last then false else any rest)
4790 else true
4793 any state.layout
4796 let nextpage () =
4797 match state.layout with
4798 | [] -> ()
4799 | l :: rest ->
4800 match conf.columns with
4801 | Csingle _ ->
4802 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4803 then
4804 let y = clamp (pgscale state.winh) in
4805 gotoghyll y
4806 else
4807 let pageno = min (l.pageno+1) (state.pagecount-1) in
4808 gotoghyll (getpagey pageno)
4809 | Cmulti ((c, _, _) as cl, _) ->
4810 if conf.presentation
4811 && (existsinrow l.pageno cl
4812 (fun l -> l.pageh > l.pagey + l.pagevh))
4813 then
4814 let y = clamp (pgscale state.winh) in
4815 gotoghyll y
4816 else
4817 let pageno = min (l.pageno+c) (state.pagecount-1) in
4818 gotoghyll (getpagey pageno)
4819 | Csplit (n, _) ->
4820 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4821 then
4822 let pagey, pageh = getpageyh l.pageno in
4823 let pagey = pagey + pageh * l.pagecol in
4824 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4825 gotoghyll (pagey + pageh + ips)
4828 let prevpage () =
4829 match state.layout with
4830 | [] -> ()
4831 | l :: _ ->
4832 match conf.columns with
4833 | Csingle _ ->
4834 if conf.presentation && l.pagey != 0
4835 then
4836 gotoghyll (clamp (pgscale ~-(state.winh)))
4837 else
4838 let pageno = max 0 (l.pageno-1) in
4839 gotoghyll (getpagey pageno)
4840 | Cmulti ((c, _, coverB) as cl, _) ->
4841 if conf.presentation &&
4842 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4843 then
4844 gotoghyll (clamp (pgscale ~-(state.winh)))
4845 else
4846 let decr =
4847 if l.pageno = state.pagecount - coverB
4848 then 1
4849 else c
4851 let pageno = max 0 (l.pageno-decr) in
4852 gotoghyll (getpagey pageno)
4853 | Csplit (n, _) ->
4854 let y =
4855 if l.pagecol = 0
4856 then
4857 if l.pageno = 0
4858 then l.pagey
4859 else
4860 let pageno = max 0 (l.pageno-1) in
4861 let pagey, pageh = getpageyh pageno in
4862 pagey + (n-1)*pageh
4863 else
4864 let pagey, pageh = getpageyh l.pageno in
4865 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4867 gotoghyll y
4870 let viewkeyboard key mask =
4871 let enttext te =
4872 let mode = state.mode in
4873 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4874 state.text <- "";
4875 enttext ();
4876 G.postRedisplay "view:enttext"
4878 let ctrl = Wsi.withctrl mask in
4879 let key =
4880 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4882 match key with
4883 | 81 -> (* Q *)
4884 exit 0
4886 | 0xff63 -> (* insert *)
4887 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4888 then (
4889 state.mode <- LinkNav (Ltgendir 0);
4890 gotoy state.y;
4892 else showtext '!' "Keyboard link navigation does not work under rotation"
4894 | 0xff1b | 113 -> (* escape / q *)
4895 begin match state.mstate with
4896 | Mzoomrect _ ->
4897 state.mstate <- Mnone;
4898 Wsi.setcursor Wsi.CURSOR_INHERIT;
4899 G.postRedisplay "kill zoom rect";
4900 | _ ->
4901 begin match state.mode with
4902 | LinkNav _ ->
4903 state.mode <- View;
4904 G.postRedisplay "esc leave linknav"
4905 | _ ->
4906 match state.ranchors with
4907 | [] -> raise Quit
4908 | (path, password, anchor) :: rest ->
4909 state.ranchors <- rest;
4910 state.anchor <- anchor;
4911 opendoc path password
4912 end;
4913 end;
4915 | 0xff08 -> (* backspace *)
4916 gotoghyll (getnav ~-1)
4918 | 111 -> (* o *)
4919 enteroutlinemode ()
4921 | 117 -> (* u *)
4922 state.rects <- [];
4923 state.text <- "";
4924 G.postRedisplay "dehighlight";
4926 | 47 | 63 -> (* / ? *)
4927 let ondone isforw s =
4928 cbput state.hists.pat s;
4929 state.searchpattern <- s;
4930 search s isforw
4932 let s = String.create 1 in
4933 s.[0] <- Char.chr key;
4934 enttext (s, "", Some (onhist state.hists.pat),
4935 textentry, ondone (key = 47), true)
4937 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4938 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4939 setzoom (conf.zoom +. incr)
4941 | 43 | 0xffab -> (* + *)
4942 let ondone s =
4943 let n =
4944 try int_of_string s with exc ->
4945 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4946 max_int
4948 if n != max_int
4949 then (
4950 conf.pagebias <- n;
4951 state.text <- "page bias is now " ^ string_of_int n;
4954 enttext ("page bias: ", "", None, intentry, ondone, true)
4956 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4957 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4958 setzoom (max 0.01 (conf.zoom -. decr))
4960 | 45 | 0xffad -> (* - *)
4961 let ondone msg = state.text <- msg in
4962 enttext (
4963 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4964 optentry state.mode, ondone, true
4967 | 48 when ctrl -> (* ctrl-0 *)
4968 setzoom 1.0
4970 | 49 when ctrl -> (* ctrl-1 *)
4971 let cols =
4972 match conf.columns with
4973 | Csingle _ | Cmulti _ -> 1
4974 | Csplit (n, _) -> n
4976 let zoom = zoomforh state.winw state.winh state.scrollw cols in
4977 if zoom < 1.0
4978 then setzoom zoom
4980 | 0xffc6 -> (* f9 *)
4981 togglebirdseye ()
4983 | 57 when ctrl -> (* ctrl-9 *)
4984 togglebirdseye ()
4986 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4987 when not ctrl -> (* 0..9 *)
4988 let ondone s =
4989 let n =
4990 try int_of_string s with exc ->
4991 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4994 if n >= 0
4995 then (
4996 addnav ();
4997 cbput state.hists.pag (string_of_int n);
4998 gotopage1 (n + conf.pagebias - 1) 0;
5001 let pageentry text key =
5002 match Char.unsafe_chr key with
5003 | 'g' -> TEdone text
5004 | _ -> intentry text key
5006 let text = "x" in text.[0] <- Char.chr key;
5007 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5009 | 98 -> (* b *)
5010 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
5011 reshape state.winw state.winh;
5013 | 108 -> (* l *)
5014 conf.hlinks <- not conf.hlinks;
5015 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5016 G.postRedisplay "toggle highlightlinks";
5018 | 70 -> (* F *)
5019 state.glinks <- true;
5020 let mode = state.mode in
5021 state.mode <- Textentry (
5022 (":", "", None, linknentry, linkndone gotounder, false),
5023 (fun _ ->
5024 state.glinks <- false;
5025 state.mode <- mode)
5027 state.text <- "";
5028 G.postRedisplay "view:linkent(F)"
5030 | 121 -> (* y *)
5031 state.glinks <- true;
5032 let mode = state.mode in
5033 state.mode <- Textentry (
5034 (":", "", None, linknentry, linkndone (fun under ->
5035 match Ne.pipe () with
5036 | Ne.Exn exn ->
5037 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
5038 | Ne.Res (r, w) ->
5039 let popened =
5040 try popen conf.selcmd [r, 0; w, -1]; true
5041 with exn ->
5042 showtext '!'
5043 (Printf.sprintf "failed to execute %s: %s"
5044 conf.selcmd (exntos exn));
5045 false
5047 let clo cap fd =
5048 Ne.clo fd (fun msg ->
5049 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
5052 let s = undertext under in
5053 if popened
5054 then
5055 (try
5056 let l = String.length s in
5057 let n = tempfailureretry (Unix.write w s 0) l in
5058 if n != l
5059 then
5060 showtext '!'
5061 (Printf.sprintf
5062 "failed to write %d characters to sel pipe, wrote %d"
5065 with exn ->
5066 showtext '!'
5067 (Printf.sprintf "failed to write to sel pipe: %s"
5068 (exntos exn)
5071 else dolog "%s" s;
5072 clo "pipe/r" r;
5073 clo "pipe/w" w;
5074 ), false
5076 fun _ ->
5077 state.glinks <- false;
5078 state.mode <- mode
5080 state.text <- "";
5081 G.postRedisplay "view:linkent"
5083 | 97 -> (* a *)
5084 begin match state.autoscroll with
5085 | Some step ->
5086 conf.autoscrollstep <- step;
5087 state.autoscroll <- None
5088 | None ->
5089 if conf.autoscrollstep = 0
5090 then state.autoscroll <- Some 1
5091 else state.autoscroll <- Some conf.autoscrollstep
5094 | 112 when ctrl -> (* ctrl-p *)
5095 launchpath ()
5097 | 80 -> (* P *)
5098 setpresentationmode (not conf.presentation);
5099 showtext ' ' ("presentation mode " ^
5100 if conf.presentation then "on" else "off");
5102 | 102 -> (* f *)
5103 if List.mem Wsi.Fullscreen state.winstate
5104 then doreshape conf.cwinw conf.cwinh
5105 else Wsi.fullscreen ()
5107 | 112 | 78 -> (* p|N *)
5108 search state.searchpattern false
5110 | 110 | 0xffc0 -> (* n|F3 *)
5111 search state.searchpattern true
5113 | 116 -> (* t *)
5114 begin match state.layout with
5115 | [] -> ()
5116 | l :: _ ->
5117 gotoghyll (getpagey l.pageno)
5120 | 32 -> (* space *)
5121 nextpage ()
5123 | 0xff9f | 0xffff -> (* delete *)
5124 prevpage ()
5126 | 61 -> (* = *)
5127 showtext ' ' (describe_location ());
5129 | 119 -> (* w *)
5130 begin match state.layout with
5131 | [] -> ()
5132 | l :: _ ->
5133 doreshape (l.pagew + state.scrollw) l.pageh;
5134 G.postRedisplay "w"
5137 | 39 -> (* ' *)
5138 enterbookmarkmode ()
5140 | 104 | 0xffbe -> (* h|F1 *)
5141 enterhelpmode ()
5143 | 105 -> (* i *)
5144 enterinfomode ()
5146 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5147 entermsgsmode ()
5149 | 109 -> (* m *)
5150 let ondone s =
5151 match state.layout with
5152 | l :: _ ->
5153 if String.length s > 0
5154 then
5155 state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5156 | _ -> ()
5158 enttext ("bookmark: ", "", None, textentry, ondone, true)
5160 | 126 -> (* ~ *)
5161 quickbookmark ();
5162 showtext ' ' "Quick bookmark added";
5164 | 122 -> (* z *)
5165 begin match state.layout with
5166 | l :: _ ->
5167 let rect = getpdimrect l.pagedimno in
5168 let w, h =
5169 if conf.crophack
5170 then
5171 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5172 truncate (1.2 *. (rect.(3) -. rect.(0))))
5173 else
5174 (truncate (rect.(1) -. rect.(0)),
5175 truncate (rect.(3) -. rect.(0)))
5177 let w = truncate ((float w)*.conf.zoom)
5178 and h = truncate ((float h)*.conf.zoom) in
5179 if w != 0 && h != 0
5180 then (
5181 state.anchor <- getanchor ();
5182 doreshape (w + state.scrollw) (h + conf.interpagespace)
5184 G.postRedisplay "z";
5186 | [] -> ()
5189 | 50 when ctrl -> (* ctrl-2 *)
5190 let maxw = getmaxw () in
5191 if maxw > 0.0
5192 then setzoom (maxw /. float state.winw)
5194 | 60 | 62 -> (* < > *)
5195 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5197 | 91 | 93 -> (* [ ] *)
5198 conf.colorscale <-
5199 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5201 G.postRedisplay "brightness";
5203 | 99 when state.mode = View -> (* c *)
5204 let (c, a, b), z =
5205 match state.prevcolumns with
5206 | None -> (1, 0, 0), 1.0
5207 | Some (columns, z) ->
5208 let cab =
5209 match columns with
5210 | Csplit (c, _) -> -c, 0, 0
5211 | Cmulti ((c, a, b), _) -> c, a, b
5212 | Csingle _ -> 1, 0, 0
5214 cab, z
5216 setcolumns View c a b;
5217 setzoom z;
5219 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5220 setzoom state.prevzoom
5222 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5223 begin match state.autoscroll with
5224 | None ->
5225 begin match state.mode with
5226 | Birdseye beye -> upbirdseye 1 beye
5227 | _ ->
5228 if ctrl
5229 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5230 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5232 | Some n ->
5233 setautoscrollspeed n false
5236 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5237 begin match state.autoscroll with
5238 | None ->
5239 begin match state.mode with
5240 | Birdseye beye -> downbirdseye 1 beye
5241 | _ ->
5242 if ctrl
5243 then gotoy_and_clear_text (clamp (state.winh/2))
5244 else gotoy_and_clear_text (clamp conf.scrollstep)
5246 | Some n ->
5247 setautoscrollspeed n true
5250 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5251 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5252 if canpan ()
5253 then
5254 let dx =
5255 if ctrl
5256 then state.winw / 2
5257 else conf.hscrollstep
5259 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5260 state.x <- state.x + dx;
5261 gotoy_and_clear_text state.y
5262 else (
5263 state.text <- "";
5264 G.postRedisplay "lef/right"
5267 | 0xff55 | 0xff9a -> (* (kp) prior *)
5268 let y =
5269 if ctrl
5270 then
5271 match state.layout with
5272 | [] -> state.y
5273 | l :: _ -> state.y - l.pagey
5274 else
5275 clamp (pgscale (-state.winh))
5277 gotoghyll y
5279 | 0xff56 | 0xff9b -> (* (kp) next *)
5280 let y =
5281 if ctrl
5282 then
5283 match List.rev state.layout with
5284 | [] -> state.y
5285 | l :: _ -> getpagey l.pageno
5286 else
5287 clamp (pgscale state.winh)
5289 gotoghyll y
5291 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5292 gotoghyll 0
5293 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5294 gotoghyll (clamp state.maxy)
5296 | 0xff53 | 0xff98
5297 when Wsi.withalt mask -> (* alt-(kp) right *)
5298 gotoghyll (getnav 1)
5299 | 0xff51 | 0xff96
5300 when Wsi.withalt mask -> (* alt-(kp) left *)
5301 gotoghyll (getnav ~-1)
5303 | 114 -> (* r *)
5304 reload ()
5306 | 118 when conf.debug -> (* v *)
5307 state.rects <- [];
5308 List.iter (fun l ->
5309 match getopaque l.pageno with
5310 | None -> ()
5311 | Some opaque ->
5312 let x0, y0, x1, y1 = pagebbox opaque in
5313 let a,b = float x0, float y0 in
5314 let c,d = float x1, float y0 in
5315 let e,f = float x1, float y1 in
5316 let h,j = float x0, float y1 in
5317 let rect = (a,b,c,d,e,f,h,j) in
5318 debugrect rect;
5319 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5320 ) state.layout;
5321 G.postRedisplay "v";
5323 | _ ->
5324 vlog "huh? %s" (Wsi.keyname key)
5327 let linknavkeyboard key mask linknav =
5328 let getpage pageno =
5329 let rec loop = function
5330 | [] -> None
5331 | l :: _ when l.pageno = pageno -> Some l
5332 | _ :: rest -> loop rest
5333 in loop state.layout
5335 let doexact (pageno, n) =
5336 match getopaque pageno, getpage pageno with
5337 | Some opaque, Some l ->
5338 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5339 then
5340 let under = getlink opaque n in
5341 G.postRedisplay "link gotounder";
5342 gotounder under;
5343 state.mode <- View;
5344 else
5345 let opt, dir =
5346 match key with
5347 | 0xff50 -> (* home *)
5348 Some (findlink opaque LDfirst), -1
5350 | 0xff57 -> (* end *)
5351 Some (findlink opaque LDlast), 1
5353 | 0xff51 -> (* left *)
5354 Some (findlink opaque (LDleft n)), -1
5356 | 0xff53 -> (* right *)
5357 Some (findlink opaque (LDright n)), 1
5359 | 0xff52 -> (* up *)
5360 Some (findlink opaque (LDup n)), -1
5362 | 0xff54 -> (* down *)
5363 Some (findlink opaque (LDdown n)), 1
5365 | _ -> None, 0
5367 let pwl l dir =
5368 begin match findpwl l.pageno dir with
5369 | Pwlnotfound -> ()
5370 | Pwl pageno ->
5371 let notfound dir =
5372 state.mode <- LinkNav (Ltgendir dir);
5373 let y, h = getpageyh pageno in
5374 let y =
5375 if dir < 0
5376 then y + h - state.winh
5377 else y
5379 gotoy y
5381 begin match getopaque pageno, getpage pageno with
5382 | Some opaque, Some _ ->
5383 let link =
5384 let ld = if dir > 0 then LDfirst else LDlast in
5385 findlink opaque ld
5387 begin match link with
5388 | Lfound m ->
5389 showlinktype (getlink opaque m);
5390 state.mode <- LinkNav (Ltexact (pageno, m));
5391 G.postRedisplay "linknav jpage";
5392 | _ -> notfound dir
5393 end;
5394 | _ -> notfound dir
5395 end;
5396 end;
5398 begin match opt with
5399 | Some Lnotfound -> pwl l dir;
5400 | Some (Lfound m) ->
5401 if m = n
5402 then pwl l dir
5403 else (
5404 let _, y0, _, y1 = getlinkrect opaque m in
5405 if y0 < l.pagey
5406 then gotopage1 l.pageno y0
5407 else (
5408 let d = fstate.fontsize + 1 in
5409 if y1 - l.pagey > l.pagevh - d
5410 then gotopage1 l.pageno (y1 - state.winh - state.hscrollh + d)
5411 else G.postRedisplay "linknav";
5413 showlinktype (getlink opaque m);
5414 state.mode <- LinkNav (Ltexact (l.pageno, m));
5417 | None -> viewkeyboard key mask
5418 end;
5419 | _ -> viewkeyboard key mask
5421 if key = 0xff63
5422 then (
5423 state.mode <- View;
5424 G.postRedisplay "leave linknav"
5426 else
5427 match linknav with
5428 | Ltgendir _ -> viewkeyboard key mask
5429 | Ltexact exact -> doexact exact
5432 let keyboard key mask =
5433 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5434 then wcmd "interrupt"
5435 else state.uioh <- state.uioh#key key mask
5438 let birdseyekeyboard key mask
5439 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5440 let incr =
5441 match conf.columns with
5442 | Csingle _ -> 1
5443 | Cmulti ((c, _, _), _) -> c
5444 | Csplit _ -> failwith "bird's eye split mode"
5446 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5447 match key with
5448 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5449 let y, h = getpageyh pageno in
5450 let top = (state.winh - h) / 2 in
5451 gotoy (max 0 (y - top))
5452 | 0xff0d (* enter *)
5453 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5454 | 0xff1b -> leavebirdseye beye true (* escape *)
5455 | 0xff52 -> upbirdseye incr beye (* up *)
5456 | 0xff54 -> downbirdseye incr beye (* down *)
5457 | 0xff51 -> upbirdseye 1 beye (* left *)
5458 | 0xff53 -> downbirdseye 1 beye (* right *)
5460 | 0xff55 -> (* prior *)
5461 begin match state.layout with
5462 | l :: _ ->
5463 if l.pagey != 0
5464 then (
5465 state.mode <- Birdseye (
5466 oconf, leftx, l.pageno, hooverpageno, anchor
5468 gotopage1 l.pageno 0;
5470 else (
5471 let layout = layout (state.y-state.winh) (pgh state.layout) in
5472 match layout with
5473 | [] -> gotoy (clamp (-state.winh))
5474 | l :: _ ->
5475 state.mode <- Birdseye (
5476 oconf, leftx, l.pageno, hooverpageno, anchor
5478 gotopage1 l.pageno 0
5481 | [] -> gotoy (clamp (-state.winh))
5482 end;
5484 | 0xff56 -> (* next *)
5485 begin match List.rev state.layout with
5486 | l :: _ ->
5487 let layout = layout (state.y + (pgh state.layout)) state.winh in
5488 begin match layout with
5489 | [] ->
5490 let incr = l.pageh - l.pagevh in
5491 if incr = 0
5492 then (
5493 state.mode <-
5494 Birdseye (
5495 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5497 G.postRedisplay "birdseye pagedown";
5499 else gotoy (clamp (incr + conf.interpagespace*2));
5501 | l :: _ ->
5502 state.mode <-
5503 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5504 gotopage1 l.pageno 0;
5507 | [] -> gotoy (clamp state.winh)
5508 end;
5510 | 0xff50 -> (* home *)
5511 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5512 gotopage1 0 0
5514 | 0xff57 -> (* end *)
5515 let pageno = state.pagecount - 1 in
5516 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5517 if not (pagevisible state.layout pageno)
5518 then
5519 let h =
5520 match List.rev state.pdims with
5521 | [] -> state.winh
5522 | (_, _, h, _) :: _ -> h
5524 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5525 else G.postRedisplay "birdseye end";
5526 | _ -> viewkeyboard key mask
5529 let drawpage l linkindexbase =
5530 let color =
5531 match state.mode with
5532 | Textentry _ -> scalecolor 0.4
5533 | LinkNav _
5534 | View -> scalecolor 1.0
5535 | Birdseye (_, _, pageno, hooverpageno, _) ->
5536 if l.pageno = hooverpageno
5537 then scalecolor 0.9
5538 else (
5539 if l.pageno = pageno
5540 then scalecolor 1.0
5541 else scalecolor 0.8
5544 drawtiles l color;
5545 begin match getopaque l.pageno with
5546 | Some opaque ->
5547 if tileready l l.pagex l.pagey
5548 then
5549 let x = l.pagedispx - l.pagex
5550 and y = l.pagedispy - l.pagey in
5551 let hlmask =
5552 match conf.columns with
5553 | Csingle _ | Cmulti _ ->
5554 (if conf.hlinks then 1 else 0)
5555 + (if state.glinks
5556 && not (isbirdseye state.mode) then 2 else 0)
5557 | _ -> 0
5559 let s =
5560 match state.mode with
5561 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5562 | _ -> ""
5564 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5565 else 0
5567 | _ -> 0
5568 end;
5571 let scrollindicator () =
5572 let sbw, ph, sh = state.uioh#scrollph in
5573 let sbh, pw, sw = state.uioh#scrollpw in
5575 GlDraw.color (0.64, 0.64, 0.64);
5576 GlDraw.rect
5577 (float (state.winw - sbw), 0.)
5578 (float state.winw, float state.winh)
5580 GlDraw.rect
5581 (0., float (state.winh - sbh))
5582 (float (state.winw - state.scrollw - 1), float state.winh)
5584 GlDraw.color (0.0, 0.0, 0.0);
5586 GlDraw.rect
5587 (float (state.winw - sbw), ph)
5588 (float state.winw, ph +. sh)
5590 GlDraw.rect
5591 (pw, float (state.winh - sbh))
5592 (pw +. sw, float state.winh)
5596 let showsel () =
5597 match state.mstate with
5598 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5601 | Msel ((x0, y0), (x1, y1)) ->
5602 let rec loop = function
5603 | l :: ls ->
5604 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5605 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5606 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5607 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5608 then
5609 match getopaque l.pageno with
5610 | Some opaque ->
5611 let x0, y0 = pagetranslatepoint l x0 y0 in
5612 let x1, y1 = pagetranslatepoint l x1 y1 in
5613 seltext opaque (x0, y0, x1, y1);
5614 | _ -> ()
5615 else loop ls
5616 | [] -> ()
5618 loop state.layout
5621 let showrects rects =
5622 Gl.enable `blend;
5623 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5624 GlDraw.polygon_mode `both `fill;
5625 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5626 List.iter
5627 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5628 List.iter (fun l ->
5629 if l.pageno = pageno
5630 then (
5631 let dx = float (l.pagedispx - l.pagex) in
5632 let dy = float (l.pagedispy - l.pagey) in
5633 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5634 GlDraw.begins `quads;
5636 GlDraw.vertex2 (x0+.dx, y0+.dy);
5637 GlDraw.vertex2 (x1+.dx, y1+.dy);
5638 GlDraw.vertex2 (x2+.dx, y2+.dy);
5639 GlDraw.vertex2 (x3+.dx, y3+.dy);
5641 GlDraw.ends ();
5643 ) state.layout
5644 ) rects
5646 Gl.disable `blend;
5649 let display () =
5650 GlClear.color (scalecolor2 conf.bgcolor);
5651 GlClear.clear [`color];
5652 let rec loop linkindexbase = function
5653 | l :: rest ->
5654 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5655 loop linkindexbase rest
5656 | [] -> ()
5658 loop 0 state.layout;
5659 let rects =
5660 match state.mode with
5661 | LinkNav (Ltexact (pageno, linkno)) ->
5662 begin match getopaque pageno with
5663 | Some opaque ->
5664 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5665 (pageno, 5, (
5666 float x0, float y0,
5667 float x1, float y0,
5668 float x1, float y1,
5669 float x0, float y1)
5670 ) :: state.rects
5671 | None -> state.rects
5673 | _ -> state.rects
5675 showrects rects;
5676 showsel ();
5677 state.uioh#display;
5678 begin match state.mstate with
5679 | Mzoomrect ((x0, y0), (x1, y1)) ->
5680 Gl.enable `blend;
5681 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5682 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5683 GlDraw.rect (float x0, float y0)
5684 (float x1, float y1);
5685 Gl.disable `blend;
5686 | _ -> ()
5687 end;
5688 enttext ();
5689 scrollindicator ();
5690 Wsi.swapb ();
5693 let zoomrect x y x1 y1 =
5694 let x0 = min x x1
5695 and x1 = max x x1
5696 and y0 = min y y1 in
5697 gotoy (state.y + y0);
5698 state.anchor <- getanchor ();
5699 let zoom = (float state.winw *. conf.zoom) /. float (x1 - x0) in
5700 let margin =
5701 if state.w < state.winw - state.scrollw
5702 then (state.winw - state.scrollw - state.w) / 2
5703 else 0
5705 state.x <- (state.x + margin) - x0;
5706 setzoom zoom;
5707 Wsi.setcursor Wsi.CURSOR_INHERIT;
5708 state.mstate <- Mnone;
5711 let scrollx x =
5712 let winw = state.winw - state.scrollw - 1 in
5713 let s = float x /. float winw in
5714 let destx = truncate (float (state.w + winw) *. s) in
5715 state.x <- winw - destx;
5716 gotoy_and_clear_text state.y;
5717 state.mstate <- Mscrollx;
5720 let scrolly y =
5721 let s = float y /. float state.winh in
5722 let desty = truncate (float (state.maxy - state.winh) *. s) in
5723 gotoy_and_clear_text desty;
5724 state.mstate <- Mscrolly;
5727 let viewmouse button down x y mask =
5728 match button with
5729 | n when (n == 4 || n == 5) && not down ->
5730 if Wsi.withctrl mask
5731 then (
5732 match state.mstate with
5733 | Mzoom (oldn, i) ->
5734 if oldn = n
5735 then (
5736 if i = 2
5737 then
5738 let incr =
5739 match n with
5740 | 5 ->
5741 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5742 | _ ->
5743 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5745 let zoom = conf.zoom -. incr in
5746 setzoom zoom;
5747 state.mstate <- Mzoom (n, 0);
5748 else
5749 state.mstate <- Mzoom (n, i+1);
5751 else state.mstate <- Mzoom (n, 0)
5753 | _ -> state.mstate <- Mzoom (n, 0)
5755 else (
5756 match state.autoscroll with
5757 | Some step -> setautoscrollspeed step (n=4)
5758 | None ->
5759 if conf.wheelbypage
5760 then (
5761 if n = 4
5762 then prevpage ()
5763 else nextpage ()
5765 else
5766 let incr =
5767 if n = 4
5768 then -conf.scrollstep
5769 else conf.scrollstep
5771 let incr = incr * 2 in
5772 let y = clamp incr in
5773 gotoy_and_clear_text y
5776 | n when (n = 6 || n = 7) && not down && canpan () ->
5777 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5778 gotoy_and_clear_text state.y
5780 | 1 when Wsi.withshift mask ->
5781 state.mstate <- Mnone;
5782 if not down then (
5783 match unproject x y with
5784 | Some (pageno, ux, uy) ->
5785 let cmd = Printf.sprintf
5786 "%s %s %d %d %d"
5787 conf.stcmd state.path pageno ux uy
5789 popen cmd []
5790 | None -> ()
5793 | 1 when Wsi.withctrl mask ->
5794 if down
5795 then (
5796 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5797 state.mstate <- Mpan (x, y)
5799 else
5800 state.mstate <- Mnone
5802 | 3 ->
5803 if down
5804 then (
5805 Wsi.setcursor Wsi.CURSOR_CYCLE;
5806 let p = (x, y) in
5807 state.mstate <- Mzoomrect (p, p)
5809 else (
5810 match state.mstate with
5811 | Mzoomrect ((x0, y0), _) ->
5812 if abs (x-x0) > 10 && abs (y - y0) > 10
5813 then zoomrect x0 y0 x y
5814 else (
5815 state.mstate <- Mnone;
5816 Wsi.setcursor Wsi.CURSOR_INHERIT;
5817 G.postRedisplay "kill accidental zoom rect";
5819 | _ ->
5820 Wsi.setcursor Wsi.CURSOR_INHERIT;
5821 state.mstate <- Mnone
5824 | 1 when x > state.winw - state.scrollw ->
5825 if down
5826 then
5827 let _, position, sh = state.uioh#scrollph in
5828 if y > truncate position && y < truncate (position +. sh)
5829 then state.mstate <- Mscrolly
5830 else scrolly y
5831 else
5832 state.mstate <- Mnone
5834 | 1 when y > state.winh - state.hscrollh ->
5835 if down
5836 then
5837 let _, position, sw = state.uioh#scrollpw in
5838 if x > truncate position && x < truncate (position +. sw)
5839 then state.mstate <- Mscrollx
5840 else scrollx x
5841 else
5842 state.mstate <- Mnone
5844 | 1 ->
5845 let dest = if down then getunder x y else Unone in
5846 begin match dest with
5847 | Ulinkgoto _
5848 | Ulinkuri _
5849 | Uremote _
5850 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5851 gotounder dest
5853 | Unone when down ->
5854 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5855 state.mstate <- Mpan (x, y);
5857 | Unone | Utext _ ->
5858 if down
5859 then (
5860 if conf.angle mod 360 = 0
5861 then (
5862 state.mstate <- Msel ((x, y), (x, y));
5863 G.postRedisplay "mouse select";
5866 else (
5867 match state.mstate with
5868 | Mnone -> ()
5870 | Mzoom _ | Mscrollx | Mscrolly ->
5871 state.mstate <- Mnone
5873 | Mzoomrect ((x0, y0), _) ->
5874 zoomrect x0 y0 x y
5876 | Mpan _ ->
5877 Wsi.setcursor Wsi.CURSOR_INHERIT;
5878 state.mstate <- Mnone
5880 | Msel ((x0, y0), (x1, y1)) ->
5881 let rec loop = function
5882 | [] -> ()
5883 | l :: rest ->
5884 let inside =
5885 let a0 = l.pagedispy in
5886 let a1 = a0 + l.pagevh in
5887 let b0 = l.pagedispx in
5888 let b1 = b0 + l.pagevw in
5889 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5890 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5892 if inside
5893 then
5894 match getopaque l.pageno with
5895 | Some opaque ->
5896 begin
5897 match Ne.pipe () with
5898 | Ne.Exn exn ->
5899 showtext '!'
5900 (Printf.sprintf
5901 "can not create sel pipe: %s"
5902 (exntos exn));
5903 | Ne.Res (r, w) ->
5904 let doclose what fd =
5905 Ne.clo fd (fun msg ->
5906 dolog "%s close failed: %s" what msg)
5909 popen conf.selcmd [r, 0; w, -1];
5910 copysel w opaque;
5911 doclose "pipe/r" r;
5912 G.postRedisplay "copysel";
5913 with exn ->
5914 dolog "can not execute %S: %s"
5915 conf.selcmd (exntos exn);
5916 doclose "pipe/r" r;
5917 doclose "pipe/w" w;
5919 | None -> ()
5920 else loop rest
5922 loop state.layout;
5923 Wsi.setcursor Wsi.CURSOR_INHERIT;
5924 state.mstate <- Mnone;
5928 | _ -> ()
5931 let birdseyemouse button down x y mask
5932 (conf, leftx, _, hooverpageno, anchor) =
5933 match button with
5934 | 1 when down ->
5935 let rec loop = function
5936 | [] -> ()
5937 | l :: rest ->
5938 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5939 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5940 then (
5941 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5943 else loop rest
5945 loop state.layout
5946 | 3 -> ()
5947 | _ -> viewmouse button down x y mask
5950 let mouse button down x y mask =
5951 state.uioh <- state.uioh#button button down x y mask;
5954 let motion ~x ~y =
5955 state.uioh <- state.uioh#motion x y
5958 let pmotion ~x ~y =
5959 state.uioh <- state.uioh#pmotion x y;
5962 let uioh = object
5963 method display = ()
5965 method key key mask =
5966 begin match state.mode with
5967 | Textentry textentry -> textentrykeyboard key mask textentry
5968 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5969 | View -> viewkeyboard key mask
5970 | LinkNav linknav -> linknavkeyboard key mask linknav
5971 end;
5972 state.uioh
5974 method button button bstate x y mask =
5975 begin match state.mode with
5976 | LinkNav _
5977 | View -> viewmouse button bstate x y mask
5978 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5979 | Textentry _ -> ()
5980 end;
5981 state.uioh
5983 method motion x y =
5984 begin match state.mode with
5985 | Textentry _ -> ()
5986 | View | Birdseye _ | LinkNav _ ->
5987 match state.mstate with
5988 | Mzoom _ | Mnone -> ()
5990 | Mpan (x0, y0) ->
5991 let dx = x - x0
5992 and dy = y0 - y in
5993 state.mstate <- Mpan (x, y);
5994 if canpan ()
5995 then state.x <- state.x + dx;
5996 let y = clamp dy in
5997 gotoy_and_clear_text y
5999 | Msel (a, _) ->
6000 state.mstate <- Msel (a, (x, y));
6001 G.postRedisplay "motion select";
6003 | Mscrolly ->
6004 let y = min state.winh (max 0 y) in
6005 scrolly y
6007 | Mscrollx ->
6008 let x = min state.winw (max 0 x) in
6009 scrollx x
6011 | Mzoomrect (p0, _) ->
6012 state.mstate <- Mzoomrect (p0, (x, y));
6013 G.postRedisplay "motion zoomrect";
6014 end;
6015 state.uioh
6017 method pmotion x y =
6018 begin match state.mode with
6019 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6020 let rec loop = function
6021 | [] ->
6022 if hooverpageno != -1
6023 then (
6024 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6025 G.postRedisplay "pmotion birdseye no hoover";
6027 | l :: rest ->
6028 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6029 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6030 then (
6031 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6032 G.postRedisplay "pmotion birdseye hoover";
6034 else loop rest
6036 loop state.layout
6038 | Textentry _ -> ()
6040 | LinkNav _
6041 | View ->
6042 match state.mstate with
6043 | Mnone -> updateunder x y
6044 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6046 end;
6047 state.uioh
6049 method infochanged _ = ()
6051 method scrollph =
6052 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6053 let p, h = scrollph state.y maxy in
6054 state.scrollw, p, h
6056 method scrollpw =
6057 let winw = state.winw - state.scrollw - 1 in
6058 let fwinw = float winw in
6059 let sw =
6060 let sw = fwinw /. float state.w in
6061 let sw = fwinw *. sw in
6062 max sw (float conf.scrollh)
6064 let position, sw =
6065 let f = state.w+winw in
6066 let r = float (winw-state.x) /. float f in
6067 let p = fwinw *. r in
6068 p-.sw/.2., sw
6070 let sw =
6071 if position +. sw > fwinw
6072 then fwinw -. position
6073 else sw
6075 state.hscrollh, position, sw
6077 method modehash =
6078 let modename =
6079 match state.mode with
6080 | LinkNav _ -> "links"
6081 | Textentry _ -> "textentry"
6082 | Birdseye _ -> "birdseye"
6083 | View -> "view"
6085 findkeyhash conf modename
6086 end;;
6088 module Config =
6089 struct
6090 open Parser
6092 let fontpath = ref "";;
6094 module KeyMap =
6095 Map.Make (struct type t = (int * int) let compare = compare end);;
6097 let unent s =
6098 let l = String.length s in
6099 let b = Buffer.create l in
6100 unent b s 0 l;
6101 Buffer.contents b;
6104 let home =
6105 try Sys.getenv "HOME"
6106 with exn ->
6107 prerr_endline
6108 ("Can not determine home directory location: " ^ exntos exn);
6112 let modifier_of_string = function
6113 | "alt" -> Wsi.altmask
6114 | "shift" -> Wsi.shiftmask
6115 | "ctrl" | "control" -> Wsi.ctrlmask
6116 | "meta" -> Wsi.metamask
6117 | _ -> 0
6120 let key_of_string =
6121 let r = Str.regexp "-" in
6122 fun s ->
6123 let elems = Str.full_split r s in
6124 let f n k m =
6125 let g s =
6126 let m1 = modifier_of_string s in
6127 if m1 = 0
6128 then (Wsi.namekey s, m)
6129 else (k, m lor m1)
6130 in function
6131 | Str.Delim s when n land 1 = 0 -> g s
6132 | Str.Text s -> g s
6133 | Str.Delim _ -> (k, m)
6135 let rec loop n k m = function
6136 | [] -> (k, m)
6137 | x :: xs ->
6138 let k, m = f n k m x in
6139 loop (n+1) k m xs
6141 loop 0 0 0 elems
6144 let keys_of_string =
6145 let r = Str.regexp "[ \t]" in
6146 fun s ->
6147 let elems = Str.split r s in
6148 List.map key_of_string elems
6151 let copykeyhashes c =
6152 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6155 let config_of c attrs =
6156 let apply c k v =
6158 match k with
6159 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6160 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6161 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6162 | "preload" -> { c with preload = bool_of_string v }
6163 | "page-bias" -> { c with pagebias = int_of_string v }
6164 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6165 | "horizontal-scroll-step" ->
6166 { c with hscrollstep = max (int_of_string v) 1 }
6167 | "auto-scroll-step" ->
6168 { c with autoscrollstep = max 0 (int_of_string v) }
6169 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6170 | "crop-hack" -> { c with crophack = bool_of_string v }
6171 | "throttle" ->
6172 let mw =
6173 match String.lowercase v with
6174 | "true" -> Some infinity
6175 | "false" -> None
6176 | f -> Some (float_of_string f)
6178 { c with maxwait = mw}
6179 | "highlight-links" -> { c with hlinks = bool_of_string v }
6180 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6181 | "vertical-margin" ->
6182 { c with interpagespace = max 0 (int_of_string v) }
6183 | "zoom" ->
6184 let zoom = float_of_string v /. 100. in
6185 let zoom = max zoom 0.0 in
6186 { c with zoom = zoom }
6187 | "presentation" -> { c with presentation = bool_of_string v }
6188 | "rotation-angle" -> { c with angle = int_of_string v }
6189 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6190 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6191 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6192 | "proportional-display" -> { c with proportional = bool_of_string v }
6193 | "pixmap-cache-size" ->
6194 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6195 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6196 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6197 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6198 | "persistent-location" -> { c with jumpback = bool_of_string v }
6199 | "background-color" -> { c with bgcolor = color_of_string v }
6200 | "scrollbar-in-presentation" ->
6201 { c with scrollbarinpm = bool_of_string v }
6202 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6203 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6204 | "mupdf-store-size" ->
6205 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6206 | "checkers" -> { c with checkers = bool_of_string v }
6207 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6208 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6209 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6210 | "uri-launcher" -> { c with urilauncher = unent v }
6211 | "path-launcher" -> { c with pathlauncher = unent v }
6212 | "color-space" -> { c with colorspace = colorspace_of_string v }
6213 | "invert-colors" -> { c with invert = bool_of_string v }
6214 | "brightness" -> { c with colorscale = float_of_string v }
6215 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6216 | "ghyllscroll" ->
6217 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6218 | "columns" ->
6219 let (n, _, _) as nab = multicolumns_of_string v in
6220 if n < 0
6221 then { c with columns = Csplit (-n, [||]) }
6222 else { c with columns = Cmulti (nab, [||]) }
6223 | "birds-eye-columns" ->
6224 { c with beyecolumns = Some (max (int_of_string v) 2) }
6225 | "selection-command" -> { c with selcmd = unent v }
6226 | "synctex-command" -> { c with stcmd = unent v }
6227 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6228 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6229 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6230 | "use-pbo" -> { c with usepbo = bool_of_string v }
6231 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6232 | _ -> c
6233 with exn ->
6234 prerr_endline ("Error processing attribute (`" ^
6235 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6238 let rec fold c = function
6239 | [] -> c
6240 | (k, v) :: rest ->
6241 let c = apply c k v in
6242 fold c rest
6244 fold { c with keyhashes = copykeyhashes c } attrs;
6247 let fromstring f pos n v d =
6248 try f v
6249 with exn ->
6250 dolog "Error processing attribute (%S=%S) at %d\n%s"
6251 n v pos (exntos exn)
6256 let bookmark_of attrs =
6257 let rec fold title page rely visy = function
6258 | ("title", v) :: rest -> fold v page rely visy rest
6259 | ("page", v) :: rest -> fold title v rely visy rest
6260 | ("rely", v) :: rest -> fold title page v visy rest
6261 | ("visy", v) :: rest -> fold title page rely v rest
6262 | _ :: rest -> fold title page rely visy rest
6263 | [] -> title, page, rely, visy
6265 fold "invalid" "0" "0" "0" attrs
6268 let doc_of attrs =
6269 let rec fold path page rely pan visy = function
6270 | ("path", v) :: rest -> fold v page rely pan visy rest
6271 | ("page", v) :: rest -> fold path v rely pan visy rest
6272 | ("rely", v) :: rest -> fold path page v pan visy rest
6273 | ("pan", v) :: rest -> fold path page rely v visy rest
6274 | ("visy", v) :: rest -> fold path page rely pan v rest
6275 | _ :: rest -> fold path page rely pan visy rest
6276 | [] -> path, page, rely, pan, visy
6278 fold "" "0" "0" "0" "0" attrs
6281 let map_of attrs =
6282 let rec fold rs ls = function
6283 | ("out", v) :: rest -> fold v ls rest
6284 | ("in", v) :: rest -> fold rs v rest
6285 | _ :: rest -> fold ls rs rest
6286 | [] -> ls, rs
6288 fold "" "" attrs
6291 let setconf dst src =
6292 dst.scrollbw <- src.scrollbw;
6293 dst.scrollh <- src.scrollh;
6294 dst.icase <- src.icase;
6295 dst.preload <- src.preload;
6296 dst.pagebias <- src.pagebias;
6297 dst.verbose <- src.verbose;
6298 dst.scrollstep <- src.scrollstep;
6299 dst.maxhfit <- src.maxhfit;
6300 dst.crophack <- src.crophack;
6301 dst.autoscrollstep <- src.autoscrollstep;
6302 dst.maxwait <- src.maxwait;
6303 dst.hlinks <- src.hlinks;
6304 dst.underinfo <- src.underinfo;
6305 dst.interpagespace <- src.interpagespace;
6306 dst.zoom <- src.zoom;
6307 dst.presentation <- src.presentation;
6308 dst.angle <- src.angle;
6309 dst.cwinw <- src.cwinw;
6310 dst.cwinh <- src.cwinh;
6311 dst.savebmarks <- src.savebmarks;
6312 dst.memlimit <- src.memlimit;
6313 dst.proportional <- src.proportional;
6314 dst.texcount <- src.texcount;
6315 dst.sliceheight <- src.sliceheight;
6316 dst.thumbw <- src.thumbw;
6317 dst.jumpback <- src.jumpback;
6318 dst.bgcolor <- src.bgcolor;
6319 dst.scrollbarinpm <- src.scrollbarinpm;
6320 dst.tilew <- src.tilew;
6321 dst.tileh <- src.tileh;
6322 dst.mustoresize <- src.mustoresize;
6323 dst.checkers <- src.checkers;
6324 dst.aalevel <- src.aalevel;
6325 dst.trimmargins <- src.trimmargins;
6326 dst.trimfuzz <- src.trimfuzz;
6327 dst.urilauncher <- src.urilauncher;
6328 dst.colorspace <- src.colorspace;
6329 dst.invert <- src.invert;
6330 dst.colorscale <- src.colorscale;
6331 dst.redirectstderr <- src.redirectstderr;
6332 dst.ghyllscroll <- src.ghyllscroll;
6333 dst.columns <- src.columns;
6334 dst.beyecolumns <- src.beyecolumns;
6335 dst.selcmd <- src.selcmd;
6336 dst.updatecurs <- src.updatecurs;
6337 dst.pathlauncher <- src.pathlauncher;
6338 dst.keyhashes <- copykeyhashes src;
6339 dst.hfsize <- src.hfsize;
6340 dst.hscrollstep <- src.hscrollstep;
6341 dst.pgscale <- src.pgscale;
6342 dst.usepbo <- src.usepbo;
6343 dst.wheelbypage <- src.wheelbypage;
6344 dst.stcmd <- src.stcmd;
6347 let get s =
6348 let h = Hashtbl.create 10 in
6349 let dc = { defconf with angle = defconf.angle } in
6350 let rec toplevel v t spos _ =
6351 match t with
6352 | Vdata | Vcdata | Vend -> v
6353 | Vopen ("llppconfig", _, closed) ->
6354 if closed
6355 then v
6356 else { v with f = llppconfig }
6357 | Vopen _ ->
6358 error "unexpected subelement at top level" s spos
6359 | Vclose _ -> error "unexpected close at top level" s spos
6361 and llppconfig v t spos _ =
6362 match t with
6363 | Vdata | Vcdata -> v
6364 | Vend -> error "unexpected end of input in llppconfig" s spos
6365 | Vopen ("defaults", attrs, closed) ->
6366 let c = config_of dc attrs in
6367 setconf dc c;
6368 if closed
6369 then v
6370 else { v with f = defaults }
6372 | Vopen ("ui-font", attrs, closed) ->
6373 let rec getsize size = function
6374 | [] -> size
6375 | ("size", v) :: rest ->
6376 let size =
6377 fromstring int_of_string spos "size" v fstate.fontsize in
6378 getsize size rest
6379 | l -> getsize size l
6381 fstate.fontsize <- getsize fstate.fontsize attrs;
6382 if closed
6383 then v
6384 else { v with f = uifont (Buffer.create 10) }
6386 | Vopen ("doc", attrs, closed) ->
6387 let pathent, spage, srely, span, svisy = doc_of attrs in
6388 let path = unent pathent
6389 and pageno = fromstring int_of_string spos "page" spage 0
6390 and rely = fromstring float_of_string spos "rely" srely 0.0
6391 and pan = fromstring int_of_string spos "pan" span 0
6392 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6393 let c = config_of dc attrs in
6394 let anchor = (pageno, rely, visy) in
6395 if closed
6396 then (Hashtbl.add h path (c, [], pan, anchor); v)
6397 else { v with f = doc path pan anchor c [] }
6399 | Vopen _ ->
6400 error "unexpected subelement in llppconfig" s spos
6402 | Vclose "llppconfig" -> { v with f = toplevel }
6403 | Vclose _ -> error "unexpected close in llppconfig" s spos
6405 and defaults v t spos _ =
6406 match t with
6407 | Vdata | Vcdata -> v
6408 | Vend -> error "unexpected end of input in defaults" s spos
6409 | Vopen ("keymap", attrs, closed) ->
6410 let modename =
6411 try List.assoc "mode" attrs
6412 with Not_found -> "global" in
6413 if closed
6414 then v
6415 else
6416 let ret keymap =
6417 let h = findkeyhash dc modename in
6418 KeyMap.iter (Hashtbl.replace h) keymap;
6419 defaults
6421 { v with f = pkeymap ret KeyMap.empty }
6423 | Vopen (_, _, _) ->
6424 error "unexpected subelement in defaults" s spos
6426 | Vclose "defaults" ->
6427 { v with f = llppconfig }
6429 | Vclose _ -> error "unexpected close in defaults" s spos
6431 and uifont b v t spos epos =
6432 match t with
6433 | Vdata | Vcdata ->
6434 Buffer.add_substring b s spos (epos - spos);
6436 | Vopen (_, _, _) ->
6437 error "unexpected subelement in ui-font" s spos
6438 | Vclose "ui-font" ->
6439 if String.length !fontpath = 0
6440 then fontpath := Buffer.contents b;
6441 { v with f = llppconfig }
6442 | Vclose _ -> error "unexpected close in ui-font" s spos
6443 | Vend -> error "unexpected end of input in ui-font" s spos
6445 and doc path pan anchor c bookmarks v t spos _ =
6446 match t with
6447 | Vdata | Vcdata -> v
6448 | Vend -> error "unexpected end of input in doc" s spos
6449 | Vopen ("bookmarks", _, closed) ->
6450 if closed
6451 then v
6452 else { v with f = pbookmarks path pan anchor c bookmarks }
6454 | Vopen ("keymap", attrs, closed) ->
6455 let modename =
6456 try List.assoc "mode" attrs
6457 with Not_found -> "global"
6459 if closed
6460 then v
6461 else
6462 let ret keymap =
6463 let h = findkeyhash c modename in
6464 KeyMap.iter (Hashtbl.replace h) keymap;
6465 doc path pan anchor c bookmarks
6467 { v with f = pkeymap ret KeyMap.empty }
6469 | Vopen (_, _, _) ->
6470 error "unexpected subelement in doc" s spos
6472 | Vclose "doc" ->
6473 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6474 { v with f = llppconfig }
6476 | Vclose _ -> error "unexpected close in doc" s spos
6478 and pkeymap ret keymap v t spos _ =
6479 match t with
6480 | Vdata | Vcdata -> v
6481 | Vend -> error "unexpected end of input in keymap" s spos
6482 | Vopen ("map", attrs, closed) ->
6483 let r, l = map_of attrs in
6484 let kss = fromstring keys_of_string spos "in" r [] in
6485 let lss = fromstring keys_of_string spos "out" l [] in
6486 let keymap =
6487 match kss with
6488 | [] -> keymap
6489 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6490 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6492 if closed
6493 then { v with f = pkeymap ret keymap }
6494 else
6495 let f () = v in
6496 { v with f = skip "map" f }
6498 | Vopen _ ->
6499 error "unexpected subelement in keymap" s spos
6501 | Vclose "keymap" ->
6502 { v with f = ret keymap }
6504 | Vclose _ -> error "unexpected close in keymap" s spos
6506 and pbookmarks path pan anchor c bookmarks v t spos _ =
6507 match t with
6508 | Vdata | Vcdata -> v
6509 | Vend -> error "unexpected end of input in bookmarks" s spos
6510 | Vopen ("item", attrs, closed) ->
6511 let titleent, spage, srely, svisy = bookmark_of attrs in
6512 let page = fromstring int_of_string spos "page" spage 0
6513 and rely = fromstring float_of_string spos "rely" srely 0.0
6514 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6515 let bookmarks =
6516 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6518 if closed
6519 then { v with f = pbookmarks path pan anchor c bookmarks }
6520 else
6521 let f () = v in
6522 { v with f = skip "item" f }
6524 | Vopen _ ->
6525 error "unexpected subelement in bookmarks" s spos
6527 | Vclose "bookmarks" ->
6528 { v with f = doc path pan anchor c bookmarks }
6530 | Vclose _ -> error "unexpected close in bookmarks" s spos
6532 and skip tag f v t spos _ =
6533 match t with
6534 | Vdata | Vcdata -> v
6535 | Vend ->
6536 error ("unexpected end of input in skipped " ^ tag) s spos
6537 | Vopen (tag', _, closed) ->
6538 if closed
6539 then v
6540 else
6541 let f' () = { v with f = skip tag f } in
6542 { v with f = skip tag' f' }
6543 | Vclose ctag ->
6544 if tag = ctag
6545 then f ()
6546 else error ("unexpected close in skipped " ^ tag) s spos
6549 parse { f = toplevel; accu = () } s;
6550 h, dc;
6553 let do_load f ic =
6555 let len = in_channel_length ic in
6556 let s = String.create len in
6557 really_input ic s 0 len;
6558 f s;
6559 with
6560 | Parse_error (msg, s, pos) ->
6561 let subs = subs s pos in
6562 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6563 failwith ("parse error: " ^ s)
6565 | exn ->
6566 failwith ("config load error: " ^ exntos exn)
6569 let defconfpath =
6570 let dir =
6572 let dir = Filename.concat home ".config" in
6573 if Sys.is_directory dir then dir else home
6574 with _ -> home
6576 Filename.concat dir "llpp.conf"
6579 let confpath = ref defconfpath;;
6581 let load1 f =
6582 if Sys.file_exists !confpath
6583 then
6584 match
6585 (try Some (open_in_bin !confpath)
6586 with exn ->
6587 prerr_endline
6588 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6589 exntos exn);
6590 None
6592 with
6593 | Some ic ->
6594 let success =
6596 f (do_load get ic)
6597 with exn ->
6598 prerr_endline
6599 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6600 exntos exn);
6601 false
6603 close_in ic;
6604 success
6606 | None -> false
6607 else
6608 f (Hashtbl.create 0, defconf)
6611 let load () =
6612 let f (h, dc) =
6613 let pc, pb, px, pa =
6615 Hashtbl.find h (Filename.basename state.path)
6616 with Not_found -> dc, [], 0, emptyanchor
6618 setconf defconf dc;
6619 setconf conf pc;
6620 state.bookmarks <- pb;
6621 state.x <- px;
6622 state.scrollw <- conf.scrollbw;
6623 if conf.jumpback
6624 then state.anchor <- pa;
6625 cbput state.hists.nav pa;
6626 true
6628 load1 f
6631 let add_attrs bb always dc c =
6632 let ob s a b =
6633 if always || a != b
6634 then Printf.bprintf bb "\n %s='%b'" s a
6635 and oi s a b =
6636 if always || a != b
6637 then Printf.bprintf bb "\n %s='%d'" s a
6638 and oI s a b =
6639 if always || a != b
6640 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6641 and oz s a b =
6642 if always || a <> b
6643 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6644 and oF s a b =
6645 if always || a <> b
6646 then Printf.bprintf bb "\n %s='%f'" s a
6647 and oc s a b =
6648 if always || a <> b
6649 then
6650 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6651 and oC s a b =
6652 if always || a <> b
6653 then
6654 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6655 and oR s a b =
6656 if always || a <> b
6657 then
6658 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6659 and os s a b =
6660 if always || a <> b
6661 then
6662 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6663 and og s a b =
6664 if always || a <> b
6665 then
6666 match a with
6667 | None -> ()
6668 | Some (_N, _A, _B) ->
6669 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6670 and oW s a b =
6671 if always || a <> b
6672 then
6673 let v =
6674 match a with
6675 | None -> "false"
6676 | Some f ->
6677 if f = infinity
6678 then "true"
6679 else string_of_float f
6681 Printf.bprintf bb "\n %s='%s'" s v
6682 and oco s a b =
6683 if always || a <> b
6684 then
6685 match a with
6686 | Cmulti ((n, a, b), _) when n > 1 ->
6687 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6688 | Csplit (n, _) when n > 1 ->
6689 Printf.bprintf bb "\n %s='%d'" s ~-n
6690 | _ -> ()
6691 and obeco s a b =
6692 if always || a <> b
6693 then
6694 match a with
6695 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6696 | _ -> ()
6698 oi "width" c.cwinw dc.cwinw;
6699 oi "height" c.cwinh dc.cwinh;
6700 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6701 oi "scroll-handle-height" c.scrollh dc.scrollh;
6702 ob "case-insensitive-search" c.icase dc.icase;
6703 ob "preload" c.preload dc.preload;
6704 oi "page-bias" c.pagebias dc.pagebias;
6705 oi "scroll-step" c.scrollstep dc.scrollstep;
6706 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6707 ob "max-height-fit" c.maxhfit dc.maxhfit;
6708 ob "crop-hack" c.crophack dc.crophack;
6709 oW "throttle" c.maxwait dc.maxwait;
6710 ob "highlight-links" c.hlinks dc.hlinks;
6711 ob "under-cursor-info" c.underinfo dc.underinfo;
6712 oi "vertical-margin" c.interpagespace dc.interpagespace;
6713 oz "zoom" c.zoom dc.zoom;
6714 ob "presentation" c.presentation dc.presentation;
6715 oi "rotation-angle" c.angle dc.angle;
6716 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6717 ob "proportional-display" c.proportional dc.proportional;
6718 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6719 oi "tex-count" c.texcount dc.texcount;
6720 oi "slice-height" c.sliceheight dc.sliceheight;
6721 oi "thumbnail-width" c.thumbw dc.thumbw;
6722 ob "persistent-location" c.jumpback dc.jumpback;
6723 oc "background-color" c.bgcolor dc.bgcolor;
6724 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6725 oi "tile-width" c.tilew dc.tilew;
6726 oi "tile-height" c.tileh dc.tileh;
6727 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6728 ob "checkers" c.checkers dc.checkers;
6729 oi "aalevel" c.aalevel dc.aalevel;
6730 ob "trim-margins" c.trimmargins dc.trimmargins;
6731 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6732 os "uri-launcher" c.urilauncher dc.urilauncher;
6733 os "path-launcher" c.pathlauncher dc.pathlauncher;
6734 oC "color-space" c.colorspace dc.colorspace;
6735 ob "invert-colors" c.invert dc.invert;
6736 oF "brightness" c.colorscale dc.colorscale;
6737 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6738 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6739 oco "columns" c.columns dc.columns;
6740 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6741 os "selection-command" c.selcmd dc.selcmd;
6742 os "synctex-command" c.stcmd dc.stcmd;
6743 ob "update-cursor" c.updatecurs dc.updatecurs;
6744 oi "hint-font-size" c.hfsize dc.hfsize;
6745 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6746 oF "page-scroll-scale" c.pgscale dc.pgscale;
6747 ob "use-pbo" c.usepbo dc.usepbo;
6748 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
6751 let keymapsbuf always dc c =
6752 let bb = Buffer.create 16 in
6753 let rec loop = function
6754 | [] -> ()
6755 | (modename, h) :: rest ->
6756 let dh = findkeyhash dc modename in
6757 if always || h <> dh
6758 then (
6759 if Hashtbl.length h > 0
6760 then (
6761 if Buffer.length bb > 0
6762 then Buffer.add_char bb '\n';
6763 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6764 Hashtbl.iter (fun i o ->
6765 let isdifferent = always ||
6767 let dO = Hashtbl.find dh i in
6768 dO <> o
6769 with Not_found -> true
6771 if isdifferent
6772 then
6773 let addkm (k, m) =
6774 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6775 if Wsi.withalt m then Buffer.add_string bb "alt-";
6776 if Wsi.withshift m then Buffer.add_string bb "shift-";
6777 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6778 Buffer.add_string bb (Wsi.keyname k);
6780 let addkms l =
6781 let rec loop = function
6782 | [] -> ()
6783 | km :: [] -> addkm km
6784 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6786 loop l
6788 Buffer.add_string bb "<map in='";
6789 addkm i;
6790 match o with
6791 | KMinsrt km ->
6792 Buffer.add_string bb "' out='";
6793 addkm km;
6794 Buffer.add_string bb "'/>\n"
6796 | KMinsrl kms ->
6797 Buffer.add_string bb "' out='";
6798 addkms kms;
6799 Buffer.add_string bb "'/>\n"
6801 | KMmulti (ins, kms) ->
6802 Buffer.add_char bb ' ';
6803 addkms ins;
6804 Buffer.add_string bb "' out='";
6805 addkms kms;
6806 Buffer.add_string bb "'/>\n"
6807 ) h;
6808 Buffer.add_string bb "</keymap>";
6811 loop rest
6813 loop c.keyhashes;
6817 let save () =
6818 let uifontsize = fstate.fontsize in
6819 let bb = Buffer.create 32768 in
6820 let w, h =
6821 List.fold_left
6822 (fun (w, h) ws ->
6823 match ws with
6824 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh)
6825 | Wsi.MaxVert -> (w, conf.cwinh)
6826 | Wsi.MaxHorz -> (conf.cwinw, h)
6828 (state.winw, state.winh) state.winstate
6830 conf.cwinw <- w;
6831 conf.cwinh <- h;
6832 let f (h, dc) =
6833 let dc = if conf.bedefault then conf else dc in
6834 Buffer.add_string bb "<llppconfig>\n";
6836 if String.length !fontpath > 0
6837 then
6838 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6839 uifontsize
6840 !fontpath
6841 else (
6842 if uifontsize <> 14
6843 then
6844 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6847 Buffer.add_string bb "<defaults ";
6848 add_attrs bb true dc dc;
6849 let kb = keymapsbuf true dc dc in
6850 if Buffer.length kb > 0
6851 then (
6852 Buffer.add_string bb ">\n";
6853 Buffer.add_buffer bb kb;
6854 Buffer.add_string bb "\n</defaults>\n";
6856 else Buffer.add_string bb "/>\n";
6858 let adddoc path pan anchor c bookmarks =
6859 if bookmarks == [] && c = dc && anchor = emptyanchor
6860 then ()
6861 else (
6862 Printf.bprintf bb "<doc path='%s'"
6863 (enent path 0 (String.length path));
6865 if anchor <> emptyanchor
6866 then (
6867 let n, rely, visy = anchor in
6868 Printf.bprintf bb " page='%d'" n;
6869 if rely > 1e-6
6870 then
6871 Printf.bprintf bb " rely='%f'" rely
6873 if abs_float visy > 1e-6
6874 then
6875 Printf.bprintf bb " visy='%f'" visy
6879 if pan != 0
6880 then Printf.bprintf bb " pan='%d'" pan;
6882 add_attrs bb false dc c;
6883 let kb = keymapsbuf false dc c in
6885 begin match bookmarks with
6886 | [] ->
6887 if Buffer.length kb > 0
6888 then (
6889 Buffer.add_string bb ">\n";
6890 Buffer.add_buffer bb kb;
6891 Buffer.add_string bb "\n</doc>\n";
6893 else Buffer.add_string bb "/>\n"
6894 | _ ->
6895 Buffer.add_string bb ">\n<bookmarks>\n";
6896 List.iter (fun (title, _level, (page, rely, visy)) ->
6897 Printf.bprintf bb
6898 "<item title='%s' page='%d'"
6899 (enent title 0 (String.length title))
6900 page
6902 if rely > 1e-6
6903 then
6904 Printf.bprintf bb " rely='%f'" rely
6906 if abs_float visy > 1e-6
6907 then
6908 Printf.bprintf bb " visy='%f'" visy
6910 Buffer.add_string bb "/>\n";
6911 ) bookmarks;
6912 Buffer.add_string bb "</bookmarks>";
6913 if Buffer.length kb > 0
6914 then (
6915 Buffer.add_string bb "\n";
6916 Buffer.add_buffer bb kb;
6918 Buffer.add_string bb "\n</doc>\n";
6919 end;
6923 let pan, conf =
6924 match state.mode with
6925 | Birdseye (c, pan, _, _, _) ->
6926 let beyecolumns =
6927 match conf.columns with
6928 | Cmulti ((c, _, _), _) -> Some c
6929 | Csingle _ -> None
6930 | Csplit _ -> None
6931 and columns =
6932 match c.columns with
6933 | Cmulti (c, _) -> Cmulti (c, [||])
6934 | Csingle _ -> Csingle [||]
6935 | Csplit _ -> failwith "quit from bird's eye while split"
6937 pan, { c with beyecolumns = beyecolumns; columns = columns }
6938 | _ -> state.x, conf
6940 let basename = Filename.basename state.path in
6941 adddoc basename pan (getanchor ())
6942 (let conf =
6943 let autoscrollstep =
6944 match state.autoscroll with
6945 | Some step -> step
6946 | None -> conf.autoscrollstep
6948 match state.mode with
6949 | Birdseye (bc, _, _, _, _) ->
6950 { conf with
6951 zoom = bc.zoom;
6952 presentation = bc.presentation;
6953 interpagespace = bc.interpagespace;
6954 maxwait = bc.maxwait;
6955 autoscrollstep = autoscrollstep }
6956 | _ -> { conf with autoscrollstep = autoscrollstep }
6957 in conf)
6958 (if conf.savebmarks then state.bookmarks else []);
6960 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6961 if basename <> path
6962 then adddoc path x anchor c bookmarks
6963 ) h;
6964 Buffer.add_string bb "</llppconfig>\n";
6965 true;
6967 if load1 f && Buffer.length bb > 0
6968 then
6970 let tmp = !confpath ^ ".tmp" in
6971 let oc = open_out_bin tmp in
6972 Buffer.output_buffer oc bb;
6973 close_out oc;
6974 Unix.rename tmp !confpath;
6975 with exn ->
6976 prerr_endline
6977 ("error while saving configuration: " ^ exntos exn)
6979 end;;
6981 let adderrmsg src msg =
6982 Buffer.add_string state.errmsgs msg;
6983 state.newerrmsgs <- true;
6984 G.postRedisplay src
6987 let adderrfmt src fmt =
6988 Format.kprintf (fun s -> adderrmsg src s) fmt;
6991 let ract cmds =
6992 let cl = splitatspace cmds in
6993 let scan s fmt f =
6994 try Scanf.sscanf s fmt f
6995 with exn ->
6996 adderrfmt "remote exec"
6997 "error processing '%S': %s\n" cmds (exntos exn)
6999 match cl with
7000 | "reload" :: [] -> reload ()
7001 | "goto" :: args :: [] ->
7002 let cmd, _ = state.geomcmds in
7003 scan args "%u %f %f"
7004 (fun pageno x y ->
7005 if String.length cmd = 0
7006 then gotopagexy pageno x y
7007 else
7008 let prevf = state.reprf in
7009 let f () =
7010 gotopagexy pageno x y;
7011 prevf ()
7013 state.reprf <- f
7015 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7016 | "rect" :: args :: [] ->
7017 scan args "%u %u %f %f %f %f"
7018 (fun pageno color x0 y0 x1 y1 ->
7019 onpagerect pageno (fun w h ->
7020 let _,w1,h1,_ = getpagedim pageno in
7021 let sw = float w1 /. w
7022 and sh = float h1 /. h in
7023 let x0s = x0 *. sw
7024 and x1s = x1 *. sw
7025 and y0s = y0 *. sh
7026 and y1s = y1 *. sh in
7027 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7028 debugrect rect;
7029 state.rects <- (pageno, color, rect) :: state.rects;
7030 G.postRedisplay "rect";
7033 | "activatewin" :: [] -> Wsi.activatewin ()
7034 | "quit" :: [] -> raise Quit
7035 | _ ->
7036 adderrfmt "remote command"
7037 "error processing remote command: %S\n" cmds;
7040 let remote =
7041 let scratch = String.create 80 in
7042 let buf = Buffer.create 80 in
7043 fun fd ->
7044 let rec tempfr () =
7045 try Some (Unix.read fd scratch 0 80)
7046 with
7047 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7048 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7049 | exn -> raise exn
7051 match tempfr () with
7052 | None -> Some fd
7053 | Some n ->
7054 if n = 0
7055 then (
7056 Unix.close fd;
7057 if Buffer.length buf > 0
7058 then (
7059 let s = Buffer.contents buf in
7060 Buffer.clear buf;
7061 ract s;
7063 None
7065 else
7066 let rec eat ppos =
7067 let nlpos =
7069 let pos = String.index_from scratch ppos '\n' in
7070 if pos >= n then -1 else pos
7071 with Not_found -> -1
7073 if nlpos >= 0
7074 then (
7075 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7076 let s = Buffer.contents buf in
7077 Buffer.clear buf;
7078 ract s;
7079 eat (nlpos+1);
7081 else (
7082 Buffer.add_substring buf scratch ppos (n-ppos);
7083 Some fd
7085 in eat 0
7088 let remoteopen path =
7089 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7090 with exn ->
7091 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7092 None
7095 let () =
7096 let trimcachepath = ref "" in
7097 let rcmdpath = ref "" in
7098 Arg.parse
7099 (Arg.align
7100 [("-p", Arg.String (fun s -> state.password <- s) ,
7101 "<password> Set password");
7103 ("-f", Arg.String (fun s -> Config.fontpath := s),
7104 "<path> Set path to the user interface font");
7106 ("-c", Arg.String (fun s -> Config.confpath := s),
7107 "<path> Set path to the configuration file");
7109 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7110 "<path> Set path to the trim cache file");
7112 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7113 "<named-destination> Set named destination");
7115 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7117 ("-remote", Arg.String (fun s -> rcmdpath := s),
7118 "<path> Set path to the remote commands source");
7120 ("-v", Arg.Unit (fun () ->
7121 Printf.printf
7122 "%s\nconfiguration path: %s\n"
7123 (version ())
7124 Config.defconfpath
7126 exit 0), " Print version and exit");
7129 (fun s -> state.path <- s)
7130 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7132 if String.length state.path = 0
7133 then (prerr_endline "file name missing"; exit 1);
7135 if not (Config.load ())
7136 then prerr_endline "failed to load configuration";
7138 let globalkeyhash = findkeyhash conf "global" in
7139 let wsfd, winw, winh = Wsi.init (object
7140 method expose =
7141 state.wthack <- false;
7142 if nogeomcmds state.geomcmds || platform == Posx
7143 then display ()
7144 else (
7145 GlClear.color (scalecolor2 conf.bgcolor);
7146 GlClear.clear [`color];
7148 method display = display ()
7149 method reshape w h = reshape w h
7150 method mouse b d x y m = mouse b d x y m
7151 method motion x y = state.mpos <- (x, y); motion x y
7152 method pmotion x y = state.mpos <- (x, y); pmotion x y
7153 method key k m =
7154 let mascm = m land (
7155 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
7156 ) in
7157 match state.keystate with
7158 | KSnone ->
7159 let km = k, mascm in
7160 begin
7161 match
7162 let modehash = state.uioh#modehash in
7163 try Hashtbl.find modehash km
7164 with Not_found ->
7165 try Hashtbl.find globalkeyhash km
7166 with Not_found -> KMinsrt (k, m)
7167 with
7168 | KMinsrt (k, m) -> keyboard k m
7169 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
7170 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
7172 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
7173 List.iter (fun (k, m) -> keyboard k m) insrt;
7174 state.keystate <- KSnone
7175 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
7176 state.keystate <- KSinto (keys, insrt)
7177 | _ ->
7178 state.keystate <- KSnone
7180 method enter x y = state.mpos <- (x, y); pmotion x y
7181 method leave = state.mpos <- (-1, -1)
7182 method winstate wsl = state.winstate <- wsl
7183 method quit = raise Quit
7184 end) conf.cwinw conf.cwinh (platform = Posx) in
7186 state.wsfd <- wsfd;
7188 if not (
7189 List.exists GlMisc.check_extension
7190 [ "GL_ARB_texture_rectangle"
7191 ; "GL_EXT_texture_recangle"
7192 ; "GL_NV_texture_rectangle" ]
7194 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
7196 let cr, sw =
7197 match Ne.pipe () with
7198 | Ne.Exn exn ->
7199 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
7200 exit 1
7201 | Ne.Res rw -> rw
7202 and sr, cw =
7203 match Ne.pipe () with
7204 | Ne.Exn exn ->
7205 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
7206 exit 1
7207 | Ne.Res rw -> rw
7210 cloexec cr;
7211 cloexec sw;
7212 cloexec sr;
7213 cloexec cw;
7215 setcheckers conf.checkers;
7216 redirectstderr ();
7218 init (cr, cw) (
7219 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
7220 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
7221 !Config.fontpath, !trimcachepath,
7222 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7224 state.sr <- sr;
7225 state.sw <- sw;
7226 state.text <- "Opening " ^ (mbtoutf8 state.path);
7227 reshape winw winh;
7228 opendoc state.path state.password;
7229 state.uioh <- uioh;
7231 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7232 let optrfd =
7233 ref (
7234 if String.length !rcmdpath > 0
7235 then remoteopen !rcmdpath
7236 else None
7240 let rec loop deadline =
7241 let r =
7242 match state.errfd with
7243 | None -> [state.sr; state.wsfd]
7244 | Some fd -> [state.sr; state.wsfd; fd]
7246 let r =
7247 match !optrfd with
7248 | None -> r
7249 | Some fd -> fd :: r
7251 if state.redisplay && not state.wthack
7252 then (
7253 state.redisplay <- false;
7254 display ();
7256 let timeout =
7257 let now = now () in
7258 if deadline > now
7259 then (
7260 if deadline = infinity
7261 then ~-.1.0
7262 else max 0.0 (deadline -. now)
7264 else 0.0
7266 let r, _, _ =
7267 try Unix.select r [] [] timeout
7268 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7270 begin match r with
7271 | [] ->
7272 state.ghyll None;
7273 let newdeadline =
7274 if state.ghyll == noghyll
7275 then
7276 match state.autoscroll with
7277 | Some step when step != 0 ->
7278 let y = state.y + step in
7279 let y =
7280 if y < 0
7281 then state.maxy
7282 else if y >= state.maxy then 0 else y
7284 gotoy y;
7285 if state.mode = View
7286 then state.text <- "";
7287 deadline +. 0.01
7288 | _ -> infinity
7289 else deadline +. 0.01
7291 loop newdeadline
7293 | l ->
7294 let rec checkfds = function
7295 | [] -> ()
7296 | fd :: rest when fd = state.sr ->
7297 let cmd = readcmd state.sr in
7298 act cmd;
7299 checkfds rest
7301 | fd :: rest when fd = state.wsfd ->
7302 Wsi.readresp fd;
7303 checkfds rest
7305 | fd :: rest when Some fd = !optrfd ->
7306 begin match remote fd with
7307 | None -> optrfd := remoteopen !rcmdpath;
7308 | opt -> optrfd := opt
7309 end;
7310 checkfds rest
7312 | fd :: rest ->
7313 let s = String.create 80 in
7314 let n = tempfailureretry (Unix.read fd s 0) 80 in
7315 if conf.redirectstderr
7316 then (
7317 Buffer.add_substring state.errmsgs s 0 n;
7318 state.newerrmsgs <- true;
7319 state.redisplay <- true;
7321 else (
7322 prerr_string (String.sub s 0 n);
7323 flush stderr;
7325 checkfds rest
7327 checkfds l;
7328 let newdeadline =
7329 let deadline1 =
7330 if deadline = infinity
7331 then now () +. 0.01
7332 else deadline
7334 match state.autoscroll with
7335 | Some step when step != 0 -> deadline1
7336 | _ -> if state.ghyll == noghyll then infinity else deadline1
7338 loop newdeadline
7339 end;
7342 loop infinity;
7343 with Quit ->
7344 Config.save ();