No zoom for fit page
[llpp.git] / main.ml
blob8518fc436cda8cc403186c7e72eacb4ab57b5195
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 * fitmodel * 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 trimmargins = bool
29 and interpagespace = int
30 and texcount = int
31 and sliceheight = int
32 and gen = int
33 and top = float
34 and dtop = float
35 and fontpath = string
36 and trimcachepath = string
37 and memsize = int
38 and aalevel = int
39 and irect = (int * int * int * int)
40 and trimparams = (trimmargins * irect)
41 and colorspace = | Rgb | Bgr | Gray
42 and fitmodel = | FitWidth | FitProportional | FitPage
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 postprocess :
96 opaque -> int -> int -> int -> (int * string * int) -> int
97 = "ml_postprocess";;
98 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
99 external platform : unit -> platform = "ml_platform";;
100 external setaalevel : int -> unit = "ml_setaalevel";;
101 external realloctexts : int -> bool = "ml_realloctexts";;
102 external findlink : opaque -> linkdir -> link = "ml_findlink";;
103 external getlink : opaque -> int -> under = "ml_getlink";;
104 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
105 external getlinkcount : opaque -> int = "ml_getlinkcount";;
106 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
107 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
108 external getpbo : width -> height -> colorspace -> string = "ml_getpbo";;
109 external freepbo : string -> unit = "ml_freepbo";;
110 external unmappbo : string -> unit = "ml_unmappbo";;
111 external pbousable : unit -> bool = "ml_pbo_usable";;
112 external unproject : opaque -> int -> int -> (int * int) option
113 = "ml_unproject";;
114 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
116 let platform_to_string = function
117 | Punknown -> "unknown"
118 | Plinux -> "Linux"
119 | Posx -> "OSX"
120 | Psun -> "Sun"
121 | Pfreebsd -> "FreeBSD"
122 | Pdragonflybsd -> "DragonflyBSD"
123 | Popenbsd -> "OpenBSD"
124 | Pnetbsd -> "NetBSD"
125 | Pcygwin -> "Cygwin"
128 let platform = platform ();;
130 let now = Unix.gettimeofday;;
132 let popen cmd fda =
133 if platform = Pcygwin
134 then (
135 let sh = "/bin/sh" in
136 let args = [|sh; "-c"; cmd|] in
137 let rec std si so se = function
138 | [] -> si, so, se
139 | (fd, 0) :: rest -> std fd so se rest
140 | (fd, -1) :: rest ->
141 Unix.set_close_on_exec fd;
142 std si so se rest
143 | (_, n) :: _ ->
144 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
146 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
147 ignore (Unix.create_process sh args si so se)
149 else popen cmd fda;
152 type mpos = int * int
153 and mstate =
154 | Msel of (mpos * mpos)
155 | Mpan of mpos
156 | Mscrolly | Mscrollx
157 | Mzoom of (int * int)
158 | Mzoomrect of (mpos * mpos)
159 | Mnone
162 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
163 and onkey = string -> int -> te
164 and ondone = string -> unit
165 and histcancel = unit -> unit
166 and onhist = ((histcmd -> string) * histcancel)
167 and histcmd = HCnext | HCprev | HCfirst | HClast
168 and cancelonempty = bool
169 and te =
170 | TEstop
171 | TEdone of string
172 | TEcont of string
173 | TEswitch of textentry
176 type 'a circbuf =
177 { store : 'a array
178 ; mutable rc : int
179 ; mutable wc : int
180 ; mutable len : int
184 let bound v minv maxv =
185 max minv (min maxv v);
188 let cbnew n v =
189 { store = Array.create n v
190 ; rc = 0
191 ; wc = 0
192 ; len = 0
196 let cbcap b = Array.length b.store;;
198 let cbput b v =
199 let cap = cbcap b in
200 b.store.(b.wc) <- v;
201 b.wc <- (b.wc + 1) mod cap;
202 b.rc <- b.wc;
203 b.len <- min (b.len + 1) cap;
206 let cbempty b = b.len = 0;;
208 let cbgetg b circular dir =
209 if cbempty b
210 then b.store.(0)
211 else
212 let rc = b.rc + dir in
213 let rc =
214 if circular
215 then (
216 if rc = -1
217 then b.len-1
218 else (
219 if rc >= b.len
220 then 0
221 else rc
224 else bound rc 0 (b.len-1)
226 b.rc <- rc;
227 b.store.(rc);
230 let cbget b = cbgetg b false;;
231 let cbgetc b = cbgetg b true;;
233 let drawstring size x y s =
234 Gl.enable `blend;
235 Gl.enable `texture_2d;
236 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
237 ignore (drawstr size x y s);
238 Gl.disable `blend;
239 Gl.disable `texture_2d;
242 let drawstring1 size x y s =
243 drawstr size x y s;
246 let drawstring2 size x y fmt =
247 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
250 type page =
251 { pageno : int
252 ; pagedimno : int
253 ; pagew : int
254 ; pageh : int
255 ; pagex : int
256 ; pagey : int
257 ; pagevw : int
258 ; pagevh : int
259 ; pagedispx : int
260 ; pagedispy : int
261 ; pagecol : int
265 let debugl l =
266 dolog "l %d dim=%d {" l.pageno l.pagedimno;
267 dolog " WxH %dx%d" l.pagew l.pageh;
268 dolog " vWxH %dx%d" l.pagevw l.pagevh;
269 dolog " pagex,y %d,%d" l.pagex l.pagey;
270 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
271 dolog " column %d" l.pagecol;
272 dolog "}";
275 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
276 dolog "rect {";
277 dolog " x0,y0=(% f, % f)" x0 y0;
278 dolog " x1,y1=(% f, % f)" x1 y1;
279 dolog " x2,y2=(% f, % f)" x2 y2;
280 dolog " x3,y3=(% f, % f)" x3 y3;
281 dolog "}";
284 type multicolumns = multicol * pagegeom
285 and singlecolumn = pagegeom
286 and splitcolumns = columncount * pagegeom
287 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
288 and multicol = columncount * covercount * covercount
289 and pdimno = int
290 and columncount = int
291 and covercount = int;;
293 type conf =
294 { mutable scrollbw : int
295 ; mutable scrollh : int
296 ; mutable icase : bool
297 ; mutable preload : bool
298 ; mutable pagebias : int
299 ; mutable verbose : bool
300 ; mutable debug : bool
301 ; mutable scrollstep : int
302 ; mutable hscrollstep : int
303 ; mutable maxhfit : bool
304 ; mutable crophack : bool
305 ; mutable autoscrollstep : int
306 ; mutable maxwait : float option
307 ; mutable hlinks : bool
308 ; mutable underinfo : bool
309 ; mutable interpagespace : interpagespace
310 ; mutable zoom : float
311 ; mutable presentation : bool
312 ; mutable angle : angle
313 ; mutable cwinw : int
314 ; mutable cwinh : int
315 ; mutable savebmarks : bool
316 ; mutable fitmodel : fitmodel
317 ; mutable trimmargins : trimmargins
318 ; mutable trimfuzz : irect
319 ; mutable memlimit : memsize
320 ; mutable texcount : texcount
321 ; mutable sliceheight : sliceheight
322 ; mutable thumbw : width
323 ; mutable jumpback : bool
324 ; mutable bgcolor : (float * float * float)
325 ; mutable bedefault : bool
326 ; mutable scrollbarinpm : bool
327 ; mutable tilew : int
328 ; mutable tileh : int
329 ; mutable mustoresize : memsize
330 ; mutable checkers : bool
331 ; mutable aalevel : int
332 ; mutable urilauncher : string
333 ; mutable pathlauncher : string
334 ; mutable colorspace : colorspace
335 ; mutable invert : bool
336 ; mutable colorscale : float
337 ; mutable redirectstderr : bool
338 ; mutable ghyllscroll : (int * int * int) option
339 ; mutable columns : columns
340 ; mutable beyecolumns : columncount option
341 ; mutable selcmd : string
342 ; mutable updatecurs : bool
343 ; mutable keyhashes : (string * keyhash) list
344 ; mutable hfsize : int
345 ; mutable pgscale : float
346 ; mutable usepbo : bool
347 ; mutable wheelbypage : bool
348 ; mutable stcmd : string
350 and columns =
351 | Csingle of singlecolumn
352 | Cmulti of multicolumns
353 | Csplit of splitcolumns
356 type anchor = pageno * top * dtop;;
358 type outline = string * int * anchor;;
360 type rect = float * float * float * float * float * float * float * float;;
362 type tile = opaque * pixmapsize * elapsed
363 and elapsed = float;;
364 type pagemapkey = pageno * gen;;
365 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
366 and row = int
367 and col = int;;
369 let emptyanchor = (0, 0.0, 0.0);;
371 type infochange = | Memused | Docinfo | Pdim;;
373 class type uioh = object
374 method display : unit
375 method key : int -> int -> uioh
376 method button : int -> bool -> int -> int -> int -> uioh
377 method motion : int -> int -> uioh
378 method pmotion : int -> int -> uioh
379 method infochanged : infochange -> unit
380 method scrollpw : (int * float * float)
381 method scrollph : (int * float * float)
382 method modehash : keyhash
383 method eformsgs : bool
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 method eformsgs = false
426 end;;
428 type state =
429 { mutable sr : Unix.file_descr
430 ; mutable sw : Unix.file_descr
431 ; mutable wsfd : Unix.file_descr
432 ; mutable errfd : Unix.file_descr option
433 ; mutable stderr : Unix.file_descr
434 ; mutable errmsgs : Buffer.t
435 ; mutable newerrmsgs : bool
436 ; mutable w : int
437 ; mutable x : int
438 ; mutable y : int
439 ; mutable scrollw : int
440 ; mutable hscrollh : int
441 ; mutable anchor : anchor
442 ; mutable ranchors : (string * string * anchor) list
443 ; mutable maxy : int
444 ; mutable layout : page list
445 ; pagemap : (pagemapkey, opaque) Hashtbl.t
446 ; tilemap : (tilemapkey, tile) Hashtbl.t
447 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
448 ; mutable pdims : (pageno * width * height * leftx) list
449 ; mutable pagecount : int
450 ; mutable currently : currently
451 ; mutable mstate : mstate
452 ; mutable searchpattern : string
453 ; mutable rects : (pageno * recttype * rect) list
454 ; mutable rects1 : (pageno * recttype * rect) list
455 ; mutable text : string
456 ; mutable winstate : Wsi.winstate list
457 ; mutable mode : mode
458 ; mutable uioh : uioh
459 ; mutable outlines : outline array
460 ; mutable bookmarks : outline list
461 ; mutable path : string
462 ; mutable password : string
463 ; mutable nameddest : string
464 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
465 ; mutable memused : memsize
466 ; mutable gen : gen
467 ; mutable throttle : (page list * int * float) option
468 ; mutable autoscroll : int option
469 ; mutable ghyll : (int option -> unit)
470 ; mutable help : helpitem array
471 ; mutable docinfo : (int * string) list
472 ; mutable texid : GlTex.texture_id option
473 ; hists : hists
474 ; mutable prevzoom : float
475 ; mutable progress : float
476 ; mutable redisplay : bool
477 ; mutable mpos : mpos
478 ; mutable keystate : keystate
479 ; mutable glinks : bool
480 ; mutable prevcolumns : (columns * float) option
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 ; fitmodel = FitProportional
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 ; winw = -1
724 ; winh = -1
725 ; reprf = noreprf
729 let setfontsize n =
730 fstate.fontsize <- n;
731 fstate.wwidth <- measurestr fstate.fontsize "w";
732 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
735 let vlog fmt =
736 if conf.verbose
737 then
738 Printf.kprintf prerr_endline fmt
739 else
740 Printf.kprintf ignore fmt
743 let launchpath () =
744 if String.length conf.pathlauncher = 0
745 then print_endline state.path
746 else (
747 let re = Str.regexp "%s" in
748 let command = Str.global_replace re state.path conf.pathlauncher in
749 try popen command []
750 with exn ->
751 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
752 flush stderr;
756 module Ne = struct
757 type 'a t = | Res of 'a | Exn of exn;;
759 let pipe () =
760 try Res (Unix.pipe ())
761 with exn -> Exn exn
764 let clo fd f =
765 try tempfailureretry Unix.close fd
766 with exn -> f (exntos exn)
769 let dup fd =
770 try Res (tempfailureretry Unix.dup fd)
771 with exn -> Exn exn
774 let dup2 fd1 fd2 =
775 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
776 with exn -> Exn exn
778 end;;
780 let redirectstderr () =
781 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
782 if conf.redirectstderr
783 then
784 match Ne.pipe () with
785 | Ne.Exn exn ->
786 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
788 | Ne.Res (r, w) ->
789 begin match Ne.dup Unix.stderr with
790 | Ne.Exn exn ->
791 dolog "failed to dup stderr: %s" (exntos exn);
792 Ne.clo r (clofail "pipe/r");
793 Ne.clo w (clofail "pipe/w");
795 | Ne.Res dupstderr ->
796 begin match Ne.dup2 w Unix.stderr with
797 | Ne.Exn exn ->
798 dolog "failed to dup2 to stderr: %s" (exntos exn);
799 Ne.clo dupstderr (clofail "stderr duplicate");
800 Ne.clo r (clofail "redir pipe/r");
801 Ne.clo w (clofail "redir pipe/w");
803 | Ne.Res () ->
804 state.stderr <- dupstderr;
805 state.errfd <- Some r;
806 end;
808 else (
809 state.newerrmsgs <- false;
810 begin match state.errfd with
811 | Some fd ->
812 begin match Ne.dup2 state.stderr Unix.stderr with
813 | Ne.Exn exn ->
814 dolog "failed to dup2 original stderr: %s" (exntos exn)
815 | Ne.Res () ->
816 Ne.clo fd (clofail "dup of stderr");
817 state.errfd <- None;
818 end;
819 | None -> ()
820 end;
821 prerr_string (Buffer.contents state.errmsgs);
822 flush stderr;
823 Buffer.clear state.errmsgs;
827 module G =
828 struct
829 let postRedisplay who =
830 if conf.verbose
831 then prerr_endline ("redisplay for " ^ who);
832 state.redisplay <- true;
834 end;;
836 let getopaque pageno =
837 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
838 with Not_found -> None
841 let putopaque pageno opaque =
842 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
845 let pagetranslatepoint l x y =
846 let dy = y - l.pagedispy in
847 let y = dy + l.pagey in
848 let dx = x - l.pagedispx in
849 let x = dx + l.pagex in
850 (x, y);
853 let onppundermouse g x y d =
854 let rec f = function
855 | l :: rest ->
856 begin match getopaque l.pageno with
857 | Some opaque ->
858 let x0 = l.pagedispx in
859 let x1 = x0 + l.pagevw in
860 let y0 = l.pagedispy in
861 let y1 = y0 + l.pagevh in
862 if y >= y0 && y <= y1 && x >= x0 && x <= x1
863 then
864 let px, py = pagetranslatepoint l x y in
865 match g opaque l px py with
866 | Some res -> res
867 | None -> f rest
868 else f rest
869 | _ ->
870 f rest
872 | [] -> d
874 f state.layout
877 let getunder x y =
878 let g opaque _ px py =
879 match whatsunder opaque px py with
880 | Unone -> None
881 | under -> Some under
883 onppundermouse g x y Unone
886 let unproject x y =
887 let g opaque l x y =
888 match unproject opaque x y with
889 | Some (x, y) -> Some (Some (l.pageno, x, y))
890 | None -> None
892 onppundermouse g x y None;
895 let showtext c s =
896 state.text <- Printf.sprintf "%c%s" c s;
897 G.postRedisplay "showtext";
900 let undertext = function
901 | Unone -> "none"
902 | Ulinkuri s -> s
903 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
904 | Utext s -> "font: " ^ s
905 | Uunexpected s -> "unexpected: " ^ s
906 | Ulaunch s -> "launch: " ^ s
907 | Unamed s -> "named: " ^ s
908 | Uremote (filename, pageno) ->
909 Printf.sprintf "%s: page %d" filename (pageno+1)
912 let updateunder x y =
913 match getunder x y with
914 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
915 | Ulinkuri uri ->
916 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
917 Wsi.setcursor Wsi.CURSOR_INFO
918 | Ulinkgoto (pageno, _) ->
919 if conf.underinfo
920 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
921 Wsi.setcursor Wsi.CURSOR_INFO
922 | Utext s ->
923 if conf.underinfo then showtext 'f' ("ont: " ^ s);
924 Wsi.setcursor Wsi.CURSOR_TEXT
925 | Uunexpected s ->
926 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
927 Wsi.setcursor Wsi.CURSOR_INHERIT
928 | Ulaunch s ->
929 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
930 Wsi.setcursor Wsi.CURSOR_INHERIT
931 | Unamed s ->
932 if conf.underinfo then showtext 'n' ("amed: " ^ s);
933 Wsi.setcursor Wsi.CURSOR_INHERIT
934 | Uremote (filename, pageno) ->
935 if conf.underinfo then showtext 'r'
936 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
937 Wsi.setcursor Wsi.CURSOR_INFO
940 let showlinktype under =
941 if conf.underinfo
942 then
943 match under with
944 | Unone -> ()
945 | under ->
946 let s = undertext under in
947 showtext ' ' s
950 let addchar s c =
951 let b = Buffer.create (String.length s + 1) in
952 Buffer.add_string b s;
953 Buffer.add_char b c;
954 Buffer.contents b;
957 let colorspace_of_string s =
958 match String.lowercase s with
959 | "rgb" -> Rgb
960 | "bgr" -> Bgr
961 | "gray" -> Gray
962 | _ -> failwith "invalid colorspace"
965 let int_of_colorspace = function
966 | Rgb -> 0
967 | Bgr -> 1
968 | Gray -> 2
971 let colorspace_of_int = function
972 | 0 -> Rgb
973 | 1 -> Bgr
974 | 2 -> Gray
975 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
978 let colorspace_to_string = function
979 | Rgb -> "rgb"
980 | Bgr -> "bgr"
981 | Gray -> "gray"
984 let fitmodel_of_string s =
985 match String.lowercase s with
986 | "width" -> FitWidth
987 | "proportional" -> FitProportional
988 | "page" -> FitPage
989 | _ -> failwith "invalid fit model"
992 let int_of_fitmodel = function
993 | FitWidth -> 0
994 | FitProportional -> 1
995 | FitPage -> 2
998 let fitmodel_of_int = function
999 | 0 -> FitWidth
1000 | 1 -> FitProportional
1001 | 2 -> FitPage
1002 | n -> failwith ("invalid fit model index " ^ string_of_int n)
1005 let fitmodel_to_string = function
1006 | FitWidth -> "width"
1007 | FitProportional -> "proportional"
1008 | FitPage -> "page"
1011 let intentry_with_suffix text key =
1012 let c =
1013 if key >= 32 && key < 127
1014 then Char.chr key
1015 else '\000'
1017 match Char.lowercase c with
1018 | '0' .. '9' ->
1019 let text = addchar text c in
1020 TEcont text
1022 | 'k' | 'm' | 'g' ->
1023 let text = addchar text c in
1024 TEcont text
1026 | _ ->
1027 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1028 TEcont text
1031 let multicolumns_to_string (n, a, b) =
1032 if a = 0 && b = 0
1033 then Printf.sprintf "%d" n
1034 else Printf.sprintf "%d,%d,%d" n a b;
1037 let multicolumns_of_string s =
1039 (int_of_string s, 0, 0)
1040 with _ ->
1041 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
1042 if a > 1 || b > 1
1043 then failwith "subtly broken"; (n, a, b)
1047 let readcmd fd =
1048 let s = "xxxx" in
1049 let n = tempfailureretry (Unix.read fd s 0) 4 in
1050 if n != 4 then failwith "incomplete read(len)";
1051 let len = 0
1052 lor (Char.code s.[0] lsl 24)
1053 lor (Char.code s.[1] lsl 16)
1054 lor (Char.code s.[2] lsl 8)
1055 lor (Char.code s.[3] lsl 0)
1057 let s = String.create len in
1058 let n = tempfailureretry (Unix.read fd s 0) len in
1059 if n != len then failwith "incomplete read(data)";
1063 let btod b = if b then 1 else 0;;
1065 let wcmd fmt =
1066 let b = Buffer.create 16 in
1067 Buffer.add_string b "llll";
1068 Printf.kbprintf
1069 (fun b ->
1070 let s = Buffer.contents b in
1071 let n = String.length s in
1072 let len = n - 4 in
1073 (* dolog "wcmd %S" (String.sub s 4 len); *)
1074 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1075 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1076 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1077 s.[3] <- Char.chr (len land 0xff);
1078 let n' = tempfailureretry (Unix.write state.sw s 0) n in
1079 if n' != n then failwith "write failed";
1080 ) b fmt;
1083 let calcips h =
1084 let d = state.winh - h in
1085 max conf.interpagespace ((d + 1) / 2)
1088 let rowyh (c, coverA, coverB) b n =
1089 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1090 then
1091 let _, _, vy, (_, _, h, _) = b.(n) in
1092 (vy, h)
1093 else
1094 let n' = n - coverA in
1095 let d = n' mod c in
1096 let s = n - d in
1097 let e = min state.pagecount (s + c) in
1098 let rec find m miny maxh = if m = e then miny, maxh else
1099 let _, _, y, (_, _, h, _) = b.(m) in
1100 let miny = min miny y in
1101 let maxh = max maxh h in
1102 find (m+1) miny maxh
1103 in find s max_int 0
1106 let calcheight () =
1107 match conf.columns with
1108 | Cmulti ((_, _, _) as cl, b) ->
1109 if Array.length b > 0
1110 then
1111 let y, h = rowyh cl b (Array.length b - 1) in
1112 y + h + (if conf.presentation then calcips h else 0)
1113 else 0
1114 | Csingle b ->
1115 if Array.length b > 0
1116 then
1117 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1118 y + h + (if conf.presentation then calcips h else 0)
1119 else 0
1120 | Csplit (_, b) ->
1121 if Array.length b > 0
1122 then
1123 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1124 y + h
1125 else 0
1128 let getpageyh pageno =
1129 let pageno = bound pageno 0 (state.pagecount-1) in
1130 match conf.columns with
1131 | Csingle b ->
1132 if Array.length b = 0
1133 then 0, 0
1134 else
1135 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1136 let y =
1137 if conf.presentation
1138 then y - calcips h
1139 else y
1141 y, h
1142 | Cmulti (cl, b) ->
1143 if Array.length b = 0
1144 then 0, 0
1145 else
1146 let y, h = rowyh cl b pageno in
1147 let y =
1148 if conf.presentation
1149 then y - calcips h
1150 else y
1152 y, h
1153 | Csplit (c, b) ->
1154 if Array.length b = 0
1155 then 0, 0
1156 else
1157 let n = pageno*c in
1158 let (_, _, y, (_, _, h, _)) = b.(n) in
1159 y, h
1162 let getpagedim pageno =
1163 let rec f ppdim l =
1164 match l with
1165 | (n, _, _, _) as pdim :: rest ->
1166 if n >= pageno
1167 then (if n = pageno then pdim else ppdim)
1168 else f pdim rest
1170 | [] -> ppdim
1172 f (-1, -1, -1, -1) state.pdims
1175 let getpagey pageno = fst (getpageyh pageno);;
1177 let nogeomcmds cmds =
1178 match cmds with
1179 | s, [] -> String.length s = 0
1180 | _ -> false
1183 let page_of_y y =
1184 let ((c, coverA, coverB) as cl), b =
1185 match conf.columns with
1186 | Csingle b -> (1, 0, 0), b
1187 | Cmulti (c, b) -> c, b
1188 | Csplit (_, b) -> (1, 0, 0), b
1190 if Array.length b = 0
1191 then -1
1192 else
1193 let rec bsearch nmin nmax =
1194 if nmin > nmax
1195 then bound nmin 0 (state.pagecount-1)
1196 else
1197 let n = (nmax + nmin) / 2 in
1198 let vy, h = rowyh cl b n in
1199 let y0, y1 =
1200 if conf.presentation
1201 then
1202 let ips = calcips h in
1203 let y0 = vy - ips in
1204 let y1 = vy + h + ips in
1205 y0, y1
1206 else (
1207 if n = 0
1208 then 0, vy + h + conf.interpagespace
1209 else
1210 let y0 = vy - conf.interpagespace in
1211 y0, y0 + h + conf.interpagespace
1214 if y >= y0 && y < y1
1215 then (
1216 if c = 1
1217 then n
1218 else (
1219 if n > coverA
1220 then
1221 if n < state.pagecount - coverB
1222 then ((n-coverA)/c)*c + coverA
1223 else n
1224 else n
1227 else (
1228 if y > y0
1229 then bsearch (n+1) nmax
1230 else bsearch nmin (n-1)
1233 let r = bsearch 0 (state.pagecount-1) in
1237 let layoutN ((columns, coverA, coverB), b) y sh =
1238 let sh = sh - state.hscrollh in
1239 let rec fold accu n =
1240 if n = Array.length b
1241 then accu
1242 else
1243 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1244 if (vy - y) > sh &&
1245 (n = coverA - 1
1246 || n = state.pagecount - coverB
1247 || (n - coverA) mod columns = columns - 1)
1248 then accu
1249 else
1250 let accu =
1251 if vy + h > y
1252 then
1253 let pagey = max 0 (y - vy) in
1254 let pagedispy = if pagey > 0 then 0 else vy - y in
1255 let pagedispx, pagex =
1256 let pdx =
1257 if n = coverA - 1 || n = state.pagecount - coverB
1258 then state.x + (state.winw - state.scrollw - w) / 2
1259 else dx + xoff + state.x
1261 if pdx < 0
1262 then 0, -pdx
1263 else pdx, 0
1265 let pagevw =
1266 let vw = state.winw - state.scrollw - pagedispx in
1267 let pw = w - pagex in
1268 min vw pw
1270 let pagevh = min (h - pagey) (sh - pagedispy) in
1271 if pagevw > 0 && pagevh > 0
1272 then
1273 let e =
1274 { pageno = n
1275 ; pagedimno = pdimno
1276 ; pagew = w
1277 ; pageh = h
1278 ; pagex = pagex
1279 ; pagey = pagey
1280 ; pagevw = pagevw
1281 ; pagevh = pagevh
1282 ; pagedispx = pagedispx
1283 ; pagedispy = pagedispy
1284 ; pagecol = 0
1287 e :: accu
1288 else
1289 accu
1290 else
1291 accu
1293 fold accu (n+1)
1295 List.rev (fold [] (page_of_y y));
1298 let layoutS (columns, b) y sh =
1299 let sh = sh - state.hscrollh in
1300 let rec fold accu n =
1301 if n = Array.length b
1302 then accu
1303 else
1304 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1305 if (vy - y) > sh
1306 then accu
1307 else
1308 let accu =
1309 if vy + pageh > y
1310 then
1311 let x = xoff + state.x in
1312 let pagey = max 0 (y - vy) in
1313 let pagedispy = if pagey > 0 then 0 else vy - y in
1314 let pagedispx, pagex =
1315 if px = 0
1316 then (
1317 if x < 0
1318 then 0, -x
1319 else x, 0
1321 else (
1322 let px = px - x in
1323 if px < 0
1324 then -px, 0
1325 else 0, px
1328 let pagecolw = pagew/columns in
1329 let pagedispx =
1330 if pagecolw < state.winw
1331 then pagedispx + ((state.winw - state.scrollw - pagecolw) / 2)
1332 else pagedispx
1334 let pagevw =
1335 let vw = state.winw - pagedispx - state.scrollw in
1336 let pw = pagew - pagex in
1337 min vw pw
1339 let pagevw = min pagevw pagecolw in
1340 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1341 if pagevw > 0 && pagevh > 0
1342 then
1343 let e =
1344 { pageno = n/columns
1345 ; pagedimno = pdimno
1346 ; pagew = pagew
1347 ; pageh = pageh
1348 ; pagex = pagex
1349 ; pagey = pagey
1350 ; pagevw = pagevw
1351 ; pagevh = pagevh
1352 ; pagedispx = pagedispx
1353 ; pagedispy = pagedispy
1354 ; pagecol = n mod columns
1357 e :: accu
1358 else
1359 accu
1360 else
1361 accu
1363 fold accu (n+1)
1365 List.rev (fold [] 0)
1368 let layout y sh =
1369 if nogeomcmds state.geomcmds
1370 then
1371 match conf.columns with
1372 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1373 | Cmulti c -> layoutN c y sh
1374 | Csplit s -> layoutS s y sh
1375 else []
1378 let clamp incr =
1379 let y = state.y + incr in
1380 let y = max 0 y in
1381 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
1385 let itertiles l f =
1386 let tilex = l.pagex mod conf.tilew in
1387 let tiley = l.pagey mod conf.tileh in
1389 let col = l.pagex / conf.tilew in
1390 let row = l.pagey / conf.tileh in
1392 let rec rowloop row y0 dispy h =
1393 if h = 0
1394 then ()
1395 else (
1396 let dh = conf.tileh - y0 in
1397 let dh = min h dh in
1398 let rec colloop col x0 dispx w =
1399 if w = 0
1400 then ()
1401 else (
1402 let dw = conf.tilew - x0 in
1403 let dw = min w dw in
1405 f col row dispx dispy x0 y0 dw dh;
1406 colloop (col+1) 0 (dispx+dw) (w-dw)
1409 colloop col tilex l.pagedispx l.pagevw;
1410 rowloop (row+1) 0 (dispy+dh) (h-dh)
1413 if l.pagevw > 0 && l.pagevh > 0
1414 then rowloop row tiley l.pagedispy l.pagevh;
1417 let gettileopaque l col row =
1418 let key =
1419 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1421 try Some (Hashtbl.find state.tilemap key)
1422 with Not_found -> None
1425 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1426 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1427 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1430 let drawtiles l color =
1431 GlDraw.color color;
1432 let f col row x y tilex tiley w h =
1433 match gettileopaque l col row with
1434 | Some (opaque, _, t) ->
1435 let params = x, y, w, h, tilex, tiley in
1436 if conf.invert
1437 then (
1438 Gl.enable `blend;
1439 GlFunc.blend_func `zero `one_minus_src_color;
1441 drawtile params opaque;
1442 if conf.invert
1443 then Gl.disable `blend;
1444 if conf.debug
1445 then (
1446 let s = Printf.sprintf
1447 "%d[%d,%d] %f sec"
1448 l.pageno col row t
1450 let w = measurestr fstate.fontsize s in
1451 GlMisc.push_attrib [`current];
1452 GlDraw.color (0.0, 0.0, 0.0);
1453 GlDraw.rect
1454 (float (x-2), float (y-2))
1455 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1456 GlDraw.color (1.0, 1.0, 1.0);
1457 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1458 GlMisc.pop_attrib ();
1461 | _ ->
1462 let w =
1463 let lw = state.winw - state.scrollw - x in
1464 min lw w
1465 and h =
1466 let lh = state.winh - y in
1467 min lh h
1469 begin match state.texid with
1470 | Some id ->
1471 Gl.enable `texture_2d;
1472 GlTex.bind_texture `texture_2d id;
1473 let x0 = float x
1474 and y0 = float y
1475 and x1 = float (x+w)
1476 and y1 = float (y+h) in
1478 let tw = float w /. 16.0
1479 and th = float h /. 16.0 in
1480 let tx0 = float tilex /. 16.0
1481 and ty0 = float tiley /. 16.0 in
1482 let tx1 = tx0 +. tw
1483 and ty1 = ty0 +. th in
1484 GlDraw.begins `quads;
1485 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1486 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1487 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1488 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1489 GlDraw.ends ();
1491 Gl.disable `texture_2d;
1492 | None ->
1493 GlDraw.color (1.0, 1.0, 1.0);
1494 GlDraw.rect
1495 (float x, float y)
1496 (float (x+w), float (y+h));
1497 end;
1498 if w > 128 && h > fstate.fontsize + 10
1499 then (
1500 GlDraw.color (0.0, 0.0, 0.0);
1501 let c, r =
1502 if conf.verbose
1503 then (col*conf.tilew, row*conf.tileh)
1504 else col, row
1506 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1508 GlDraw.color color;
1510 itertiles l f
1513 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1515 let tilevisible1 l x y =
1516 let ax0 = l.pagex
1517 and ax1 = l.pagex + l.pagevw
1518 and ay0 = l.pagey
1519 and ay1 = l.pagey + l.pagevh in
1521 let bx0 = x
1522 and by0 = y in
1523 let bx1 = min (bx0 + conf.tilew) l.pagew
1524 and by1 = min (by0 + conf.tileh) l.pageh in
1526 let rx0 = max ax0 bx0
1527 and ry0 = max ay0 by0
1528 and rx1 = min ax1 bx1
1529 and ry1 = min ay1 by1 in
1531 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1532 nonemptyintersection
1535 let tilevisible layout n x y =
1536 let rec findpageinlayout m = function
1537 | l :: rest when l.pageno = n ->
1538 tilevisible1 l x y || (
1539 match conf.columns with
1540 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1541 | _ -> false
1543 | _ :: rest -> findpageinlayout 0 rest
1544 | [] -> false
1546 findpageinlayout 0 layout;
1549 let tileready l x y =
1550 tilevisible1 l x y &&
1551 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1554 let tilepage n p layout =
1555 let rec loop = function
1556 | l :: rest ->
1557 if l.pageno = n
1558 then
1559 let f col row _ _ _ _ _ _ =
1560 if state.currently = Idle
1561 then
1562 match gettileopaque l col row with
1563 | Some _ -> ()
1564 | None ->
1565 let x = col*conf.tilew
1566 and y = row*conf.tileh in
1567 let w =
1568 let w = l.pagew - x in
1569 min w conf.tilew
1571 let h =
1572 let h = l.pageh - y in
1573 min h conf.tileh
1575 let pbo =
1576 if conf.usepbo
1577 then getpbo w h conf.colorspace
1578 else "0"
1580 wcmd "tile %s %d %d %d %d %s" p x y w h pbo;
1581 state.currently <-
1582 Tiling (
1583 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1584 conf.tilew, conf.tileh
1587 itertiles l f;
1588 else
1589 loop rest
1591 | [] -> ()
1593 if nogeomcmds state.geomcmds
1594 then loop layout;
1597 let preloadlayout y =
1598 let y = if y < state.winh then 0 else y - state.winh in
1599 let h = state.winh*3 in
1600 layout y h;
1603 let load pages =
1604 let rec loop pages =
1605 if state.currently != Idle
1606 then ()
1607 else
1608 match pages with
1609 | l :: rest ->
1610 begin match getopaque l.pageno with
1611 | None ->
1612 wcmd "page %d %d" l.pageno l.pagedimno;
1613 state.currently <- Loading (l, state.gen);
1614 | Some opaque ->
1615 tilepage l.pageno opaque pages;
1616 loop rest
1617 end;
1618 | _ -> ()
1620 if nogeomcmds state.geomcmds
1621 then loop pages
1624 let preload pages =
1625 load pages;
1626 if conf.preload && state.currently = Idle
1627 then load (preloadlayout state.y);
1630 let layoutready layout =
1631 let rec fold all ls =
1632 all && match ls with
1633 | l :: rest ->
1634 let seen = ref false in
1635 let allvisible = ref true in
1636 let foo col row _ _ _ _ _ _ =
1637 seen := true;
1638 allvisible := !allvisible &&
1639 begin match gettileopaque l col row with
1640 | Some _ -> true
1641 | None -> false
1644 itertiles l foo;
1645 fold (!seen && !allvisible) rest
1646 | [] -> true
1648 let alltilesvisible = fold true layout in
1649 alltilesvisible;
1652 let gotoy y =
1653 let y = bound y 0 state.maxy in
1654 let y, layout, proceed =
1655 match conf.maxwait with
1656 | Some time when state.ghyll == noghyll ->
1657 begin match state.throttle with
1658 | None ->
1659 let layout = layout y state.winh in
1660 let ready = layoutready layout in
1661 if not ready
1662 then (
1663 load layout;
1664 state.throttle <- Some (layout, y, now ());
1666 else G.postRedisplay "gotoy showall (None)";
1667 y, layout, ready
1668 | Some (_, _, started) ->
1669 let dt = now () -. started in
1670 if dt > time
1671 then (
1672 state.throttle <- None;
1673 let layout = layout y state.winh in
1674 load layout;
1675 G.postRedisplay "maxwait";
1676 y, layout, true
1678 else -1, [], false
1681 | _ ->
1682 let layout = layout y state.winh in
1683 if not !wtmode || layoutready layout
1684 then G.postRedisplay "gotoy ready";
1685 y, layout, true
1687 if proceed
1688 then (
1689 state.y <- y;
1690 state.layout <- layout;
1691 begin match state.mode with
1692 | LinkNav (Ltexact (pageno, linkno)) ->
1693 let rec loop = function
1694 | [] ->
1695 state.mode <- LinkNav (Ltgendir 0)
1696 | l :: _ when l.pageno = pageno ->
1697 begin match getopaque pageno with
1698 | None ->
1699 state.mode <- LinkNav (Ltgendir 0)
1700 | Some opaque ->
1701 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1702 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1703 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1704 then state.mode <- LinkNav (Ltgendir 0)
1706 | _ :: rest -> loop rest
1708 loop layout
1709 | _ -> ()
1710 end;
1711 begin match state.mode with
1712 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1713 if not (pagevisible layout pageno)
1714 then (
1715 match state.layout with
1716 | [] -> ()
1717 | l :: _ ->
1718 state.mode <- Birdseye (
1719 conf, leftx, l.pageno, hooverpageno, anchor
1722 | LinkNav (Ltgendir dir as lt) ->
1723 let linknav =
1724 let rec loop = function
1725 | [] -> lt
1726 | l :: rest ->
1727 match getopaque l.pageno with
1728 | None -> loop rest
1729 | Some opaque ->
1730 let link =
1731 let ld =
1732 if dir = 0
1733 then LDfirstvisible (l.pagex, l.pagey, dir)
1734 else (
1735 if dir > 0 then LDfirst else LDlast
1738 findlink opaque ld
1740 match link with
1741 | Lnotfound -> loop rest
1742 | Lfound n ->
1743 showlinktype (getlink opaque n);
1744 Ltexact (l.pageno, n)
1746 loop state.layout
1748 state.mode <- LinkNav linknav
1749 | _ -> ()
1750 end;
1751 preload layout;
1753 state.ghyll <- noghyll;
1754 if conf.updatecurs
1755 then (
1756 let mx, my = state.mpos in
1757 updateunder mx my;
1761 let conttiling pageno opaque =
1762 tilepage pageno opaque
1763 (if conf.preload then preloadlayout state.y else state.layout)
1766 let gotoy_and_clear_text y =
1767 if not conf.verbose then state.text <- "";
1768 gotoy y;
1771 let getanchor1 l =
1772 let top =
1773 let coloff = l.pagecol * l.pageh in
1774 float (l.pagey + coloff) /. float l.pageh
1776 let dtop =
1777 if l.pagedispy = 0
1778 then
1780 else
1781 if conf.presentation
1782 then float l.pagedispy /. float (calcips l.pageh)
1783 else float l.pagedispy /. float conf.interpagespace
1785 (l.pageno, top, dtop)
1788 let getanchor () =
1789 match state.layout with
1790 | l :: _ -> getanchor1 l
1791 | [] ->
1792 let n = page_of_y state.y in
1793 if n = -1
1794 then state.anchor
1795 else
1796 let y, h = getpageyh n in
1797 let dy = y - state.y in
1798 let dtop =
1799 if conf.presentation
1800 then
1801 let ips = calcips h in
1802 float (dy + ips) /. float ips
1803 else
1804 float dy /. float conf.interpagespace
1806 (n, 0.0, dtop)
1809 let getanchory (n, top, dtop) =
1810 let y, h = getpageyh n in
1811 if conf.presentation
1812 then
1813 let ips = calcips h in
1814 y + truncate (top*.float h -. dtop*.float ips) + ips;
1815 else
1816 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1819 let gotoanchor anchor =
1820 gotoy (getanchory anchor);
1823 let addnav () =
1824 cbput state.hists.nav (getanchor ());
1827 let getnav dir =
1828 let anchor = cbgetc state.hists.nav dir in
1829 getanchory anchor;
1832 let gotoghyll y =
1833 let scroll f n a b =
1834 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1835 let snake f a b =
1836 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1837 if f < a
1838 then s (float f /. float a)
1839 else (
1840 if f > b
1841 then 1.0 -. s ((float (f-b) /. float (n-b)))
1842 else 1.0
1845 snake f a b
1846 and summa f n a b =
1847 (* courtesy:
1848 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1849 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1850 let iv1 = iv f in
1851 let ins = float a *. iv1
1852 and outs = float (n-b) *. iv1 in
1853 let ones = b - a in
1854 ins +. outs +. float ones
1856 let rec set (_N, _A, _B) y sy =
1857 let sum = summa 1.0 _N _A _B in
1858 let dy = float (y - sy) in
1859 state.ghyll <- (
1860 let rec gf n y1 o =
1861 if n >= _N
1862 then state.ghyll <- noghyll
1863 else
1864 let go n =
1865 let s = scroll n _N _A _B in
1866 let y1 = y1 +. ((s *. dy) /. sum) in
1867 gotoy_and_clear_text (truncate y1);
1868 state.ghyll <- gf (n+1) y1;
1870 match o with
1871 | None -> go n
1872 | Some y' -> set (_N/2, 1, 1) y' state.y
1874 gf 0 (float state.y)
1877 match conf.ghyllscroll with
1878 | None ->
1879 gotoy_and_clear_text y
1880 | Some nab ->
1881 if state.ghyll == noghyll
1882 then set nab y state.y
1883 else state.ghyll (Some y)
1886 let gotopage n top =
1887 let y, h = getpageyh n in
1888 let y = y + (truncate (top *. float h)) in
1889 gotoghyll y
1892 let gotopage1 n top =
1893 let y = getpagey n in
1894 let y = y + top in
1895 gotoghyll y
1898 let invalidate s f =
1899 state.layout <- [];
1900 state.pdims <- [];
1901 state.rects <- [];
1902 state.rects1 <- [];
1903 match state.geomcmds with
1904 | ps, [] when String.length ps = 0 ->
1905 f ();
1906 state.geomcmds <- s, [];
1908 | ps, [] ->
1909 state.geomcmds <- ps, [s, f];
1911 | ps, (s', _) :: rest when s' = s ->
1912 state.geomcmds <- ps, ((s, f) :: rest);
1914 | ps, cmds ->
1915 state.geomcmds <- ps, ((s, f) :: cmds);
1918 let flushpages () =
1919 Hashtbl.iter (fun _ opaque ->
1920 wcmd "freepage %s" opaque;
1921 ) state.pagemap;
1922 Hashtbl.clear state.pagemap;
1925 let flushtiles () =
1926 if not (Queue.is_empty state.tilelru)
1927 then (
1928 Queue.iter (fun (k, p, s) ->
1929 wcmd "freetile %s" p;
1930 state.memused <- state.memused - s;
1931 Hashtbl.remove state.tilemap k;
1932 ) state.tilelru;
1933 state.uioh#infochanged Memused;
1934 Queue.clear state.tilelru;
1936 load state.layout;
1939 let opendoc path password =
1940 state.path <- path;
1941 state.password <- password;
1942 state.gen <- state.gen + 1;
1943 state.docinfo <- [];
1945 flushpages ();
1946 setaalevel conf.aalevel;
1947 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename path)));
1948 wcmd "open %d %s\000%s\000" (btod !wtmode) path password;
1949 invalidate "reqlayout"
1950 (fun () ->
1951 wcmd "reqlayout %d %d %s\000"
1952 conf.angle (int_of_fitmodel conf.fitmodel) state.nameddest;
1956 let reload () =
1957 state.anchor <- getanchor ();
1958 opendoc state.path state.password;
1961 let scalecolor c =
1962 let c = c *. conf.colorscale in
1963 (c, c, c);
1966 let scalecolor2 (r, g, b) =
1967 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1970 let docolumns = function
1971 | Csingle _ ->
1972 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1973 let rec loop pageno pdimno pdim y ph pdims =
1974 if pageno = state.pagecount
1975 then ()
1976 else
1977 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1978 match pdims with
1979 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1980 pdimno+1, pdim, rest
1981 | _ ->
1982 pdimno, pdim, pdims
1984 let x = max 0 (((state.winw - state.scrollw - w) / 2) - xoff) in
1985 let y = y +
1986 (if conf.presentation
1987 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1988 else (if pageno = 0 then 0 else conf.interpagespace)
1991 a.(pageno) <- (pdimno, x, y, pdim);
1992 loop (pageno+1) pdimno pdim (y + h) h pdims
1994 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1995 conf.columns <- Csingle a;
1997 | Cmulti ((columns, coverA, coverB), _) ->
1998 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1999 let rec loop pageno pdimno pdim x y rowh pdims =
2000 let rec fixrow m = if m = pageno then () else
2001 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
2002 if h < rowh
2003 then (
2004 let y = y + (rowh - h) / 2 in
2005 a.(m) <- (pdimno, x, y, pdim);
2007 fixrow (m+1)
2009 if pageno = state.pagecount
2010 then fixrow (((pageno - 1) / columns) * columns)
2011 else
2012 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2013 match pdims with
2014 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2015 pdimno+1, pdim, rest
2016 | _ ->
2017 pdimno, pdim, pdims
2019 let x, y, rowh' =
2020 if pageno = coverA - 1 || pageno = state.pagecount - coverB
2021 then (
2022 let x = (state.winw - state.scrollw - w) / 2 in
2023 let ips =
2024 if conf.presentation then calcips h else conf.interpagespace in
2025 x, y + ips + rowh, h
2027 else (
2028 if (pageno - coverA) mod columns = 0
2029 then (
2030 let x = max 0 (state.winw - state.scrollw - state.w) / 2 in
2031 let y =
2032 if conf.presentation
2033 then
2034 let ips = calcips h in
2035 y + (if pageno = 0 then 0 else calcips rowh + ips)
2036 else
2037 y + (if pageno = 0 then 0 else conf.interpagespace)
2039 x, y + rowh, h
2041 else x, y, max rowh h
2044 let y =
2045 if pageno > 1 && (pageno - coverA) mod columns = 0
2046 then (
2047 let y =
2048 if pageno = columns && conf.presentation
2049 then (
2050 let ips = calcips rowh in
2051 for i = 0 to pred columns
2053 let (pdimno, x, y, pdim) = a.(i) in
2054 a.(i) <- (pdimno, x, y+ips, pdim)
2055 done;
2056 y+ips;
2058 else y
2060 fixrow (pageno - columns);
2063 else y
2065 a.(pageno) <- (pdimno, x, y, pdim);
2066 let x = x + w + xoff*2 + conf.interpagespace in
2067 loop (pageno+1) pdimno pdim x y rowh' pdims
2069 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2070 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2072 | Csplit (c, _) ->
2073 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2074 let rec loop pageno pdimno pdim y pdims =
2075 if pageno = state.pagecount
2076 then ()
2077 else
2078 let pdimno, ((_, w, h, _) as pdim), pdims =
2079 match pdims with
2080 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2081 pdimno+1, pdim, rest
2082 | _ ->
2083 pdimno, pdim, pdims
2085 let cw = w / c in
2086 let rec loop1 n x y =
2087 if n = c then y else (
2088 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2089 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2092 let y = loop1 0 0 y in
2093 loop (pageno+1) pdimno pdim y pdims
2095 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2096 conf.columns <- Csplit (c, a);
2099 let represent () =
2100 docolumns conf.columns;
2101 state.maxy <- calcheight ();
2102 state.hscrollh <-
2103 if state.x = 0 && state.w <= state.winw - state.scrollw
2104 then 0
2105 else state.scrollw
2107 if state.reprf == noreprf
2108 then (
2109 match state.mode with
2110 | Birdseye (_, _, pageno, _, _) ->
2111 let y, h = getpageyh pageno in
2112 let top = (state.winh - h) / 2 in
2113 gotoy (max 0 (y - top))
2114 | _ -> gotoanchor state.anchor
2116 else (
2117 state.reprf ();
2118 state.reprf <- noreprf;
2122 let reshape w h =
2123 GlDraw.viewport 0 0 w h;
2124 let firsttime = state.geomcmds == firstgeomcmds in
2125 if not firsttime && nogeomcmds state.geomcmds
2126 then state.anchor <- getanchor ();
2128 state.winw <- w;
2129 let w = truncate (float w *. conf.zoom) - state.scrollw in
2130 let w = max w 2 in
2131 state.winh <- h;
2132 setfontsize fstate.fontsize;
2133 GlMat.mode `modelview;
2134 GlMat.load_identity ();
2136 GlMat.mode `projection;
2137 GlMat.load_identity ();
2138 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2139 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2140 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2142 let relx =
2143 if conf.zoom <= 1.0
2144 then 0.0
2145 else float state.x /. float state.w
2147 invalidate "geometry"
2148 (fun () ->
2149 state.w <- w;
2150 if not firsttime
2151 then state.x <- truncate (relx *. float w);
2152 let w =
2153 match conf.columns with
2154 | Csingle _ -> w
2155 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2156 | Csplit (c, _) -> w * c
2158 wcmd "geometry %d %d" w (h - conf.interpagespace));
2161 let enttext () =
2162 let len = String.length state.text in
2163 let drawstring s =
2164 let hscrollh =
2165 match state.mode with
2166 | Textentry _
2167 | View ->
2168 let h, _, _ = state.uioh#scrollpw in
2170 | _ -> 0
2172 let rect x w =
2173 GlDraw.rect
2174 (x, float (state.winh - (fstate.fontsize + 4) - hscrollh))
2175 (x+.w, float (state.winh - hscrollh))
2178 let w = float (state.winw - state.scrollw - 1) in
2179 if state.progress >= 0.0 && state.progress < 1.0
2180 then (
2181 GlDraw.color (0.3, 0.3, 0.3);
2182 let w1 = w *. state.progress in
2183 rect 0.0 w1;
2184 GlDraw.color (0.0, 0.0, 0.0);
2185 rect w1 (w-.w1)
2187 else (
2188 GlDraw.color (0.0, 0.0, 0.0);
2189 rect 0.0 w;
2192 GlDraw.color (1.0, 1.0, 1.0);
2193 drawstring fstate.fontsize
2194 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2196 let s =
2197 match state.mode with
2198 | Textentry ((prefix, text, _, _, _, _), _) ->
2199 let s =
2200 if len > 0
2201 then
2202 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2203 else
2204 Printf.sprintf "%s%s_" prefix text
2208 | _ -> state.text
2210 let s =
2211 if state.newerrmsgs
2212 then (
2213 if not (istextentry state.mode) && state.uioh#eformsgs
2214 then
2215 let s1 = "(press 'e' to review error messasges)" in
2216 if String.length s > 0 then s ^ " " ^ s1 else s1
2217 else s
2219 else s
2221 if String.length s > 0
2222 then drawstring s
2225 let gctiles () =
2226 let len = Queue.length state.tilelru in
2227 let layout = lazy (
2228 match state.throttle with
2229 | None ->
2230 if conf.preload
2231 then preloadlayout state.y
2232 else state.layout
2233 | Some (layout, _, _) ->
2234 layout
2235 ) in
2236 let rec loop qpos =
2237 if state.memused <= conf.memlimit
2238 then ()
2239 else (
2240 if qpos < len
2241 then
2242 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2243 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2244 let (_, pw, ph, _) = getpagedim n in
2246 gen = state.gen
2247 && colorspace = conf.colorspace
2248 && angle = conf.angle
2249 && pagew = pw
2250 && pageh = ph
2251 && (
2252 let x = col*conf.tilew
2253 and y = row*conf.tileh in
2254 tilevisible (Lazy.force_val layout) n x y
2256 then Queue.push lruitem state.tilelru
2257 else (
2258 freepbo p;
2259 wcmd "freetile %s" p;
2260 state.memused <- state.memused - s;
2261 state.uioh#infochanged Memused;
2262 Hashtbl.remove state.tilemap k;
2264 loop (qpos+1)
2267 loop 0
2270 let logcurrently = function
2271 | Idle -> dolog "Idle"
2272 | Loading (l, gen) ->
2273 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2274 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2275 dolog
2276 "Tiling %d[%d,%d] page=%s cs=%s angle"
2277 l.pageno col row pageopaque
2278 (colorspace_to_string colorspace)
2280 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2281 angle gen conf.angle state.gen
2282 tilew tileh
2283 conf.tilew conf.tileh
2285 | Outlining _ ->
2286 dolog "outlining"
2289 let splitatspace =
2290 let r = Str.regexp " " in
2291 fun s -> Str.bounded_split r s 2;
2294 let onpagerect pageno f =
2295 let b =
2296 match conf.columns with
2297 | Cmulti (_, b) -> b
2298 | Csingle b -> b
2299 | Csplit (_, b) -> b
2301 if pageno >= 0 && pageno < Array.length b
2302 then
2303 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2304 let r = getpdimrect pdimno in
2305 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2308 let gotopagexy1 pageno x y =
2309 onpagerect pageno (fun w h ->
2310 let top = y /. h in
2311 let _,w1,_,leftx = getpagedim pageno in
2312 let wh = state.winh - state.hscrollh in
2313 let sw = float w1 /. w in
2314 let x = sw *. x in
2315 let x = leftx + state.x + truncate x in
2316 let sx =
2317 if x < 0 || x >= state.winw - state.scrollw
2318 then state.x - x
2319 else state.x
2321 let py, h = getpageyh pageno in
2322 let pdy = truncate (top *. float h) in
2323 let y' = py + pdy in
2324 let dy = y' - state.y in
2325 let sy =
2326 if x != state.x || not (dy > 0 && dy < wh)
2327 then (
2328 if conf.presentation
2329 then
2330 if abs (py - y') > wh
2331 then y'
2332 else py
2333 else y';
2335 else state.y
2337 if state.x != sx || state.y != sy
2338 then (
2339 let x, y =
2340 if !wtmode
2341 then (
2342 let ww = state.winw - state.scrollw in
2343 let qx = sx / ww
2344 and qy = pdy / wh in
2345 let x = qx * ww
2346 and y = py + qy * wh in
2347 let x = if -x + ww > w1 then -(w1-ww) else x
2348 and y' = if y + wh > state.maxy then state.maxy - wh else y in
2349 let y =
2350 if conf.presentation
2351 then
2352 if abs (py - y') > wh
2353 then y'
2354 else py
2355 else y';
2357 (x, y)
2359 else (sx, sy)
2361 state.x <- x;
2362 state.hscrollh <-
2363 if x = 0 && state.w <= state.winw - state.scrollw
2364 then 0
2365 else state.scrollw
2367 gotoy_and_clear_text y;
2369 else gotoy_and_clear_text state.y;
2373 let gotopagexy pageno x y =
2374 match state.mode with
2375 | Birdseye _ -> gotopage pageno 0.0
2376 | _ -> gotopagexy1 pageno x y
2379 let act cmds =
2380 (* dolog "%S" cmds; *)
2381 let cl = splitatspace cmds in
2382 let scan s fmt f =
2383 try Scanf.sscanf s fmt f
2384 with exn ->
2385 dolog "error processing '%S': %s" cmds (exntos exn);
2386 exit 1
2388 match cl with
2389 | "clear" :: [] ->
2390 state.uioh#infochanged Pdim;
2391 state.pdims <- [];
2393 | "clearrects" :: [] ->
2394 state.rects <- state.rects1;
2395 G.postRedisplay "clearrects";
2397 | "continue" :: args :: [] ->
2398 let n = scan args "%u" (fun n -> n) in
2399 state.pagecount <- n;
2400 begin match state.currently with
2401 | Outlining l ->
2402 state.currently <- Idle;
2403 state.outlines <- Array.of_list (List.rev l)
2404 | _ -> ()
2405 end;
2407 let cur, cmds = state.geomcmds in
2408 if String.length cur = 0
2409 then failwith "umpossible";
2411 begin match List.rev cmds with
2412 | [] ->
2413 state.geomcmds <- "", [];
2414 represent ();
2415 | (s, f) :: rest ->
2416 f ();
2417 state.geomcmds <- s, List.rev rest;
2418 end;
2419 if conf.maxwait = None && not !wtmode
2420 then G.postRedisplay "continue";
2422 | "title" :: args :: [] ->
2423 Wsi.settitle args
2425 | "msg" :: args :: [] ->
2426 showtext ' ' args
2428 | "vmsg" :: args :: [] ->
2429 if conf.verbose
2430 then showtext ' ' args
2432 | "emsg" :: args :: [] ->
2433 Buffer.add_string state.errmsgs args;
2434 state.newerrmsgs <- true;
2435 G.postRedisplay "error message"
2437 | "progress" :: args :: [] ->
2438 let progress, text =
2439 scan args "%f %n"
2440 (fun f pos ->
2441 f, String.sub args pos (String.length args - pos))
2443 state.text <- text;
2444 state.progress <- progress;
2445 G.postRedisplay "progress"
2447 | "firstmatch" :: args :: [] ->
2448 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2449 scan args "%u %d %f %f %f %f %f %f %f %f"
2450 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2451 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2453 let y = (getpagey pageno) + truncate y0 in
2454 addnav ();
2455 gotoy y;
2456 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2458 | "match" :: args :: [] ->
2459 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2460 scan args "%u %d %f %f %f %f %f %f %f %f"
2461 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2462 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2464 state.rects1 <-
2465 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2467 | "page" :: args :: [] ->
2468 let pageopaque, t = scan args "%s %f" (fun p t -> p, t) in
2469 begin match state.currently with
2470 | Loading (l, gen) ->
2471 vlog "page %d took %f sec" l.pageno t;
2472 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2473 begin match state.throttle with
2474 | None ->
2475 let preloadedpages =
2476 if conf.preload
2477 then preloadlayout state.y
2478 else state.layout
2480 let evict () =
2481 let module IntSet =
2482 Set.Make (struct type t = int let compare = (-) end) in
2483 let set =
2484 List.fold_left (fun s l -> IntSet.add l.pageno s)
2485 IntSet.empty preloadedpages
2487 let evictedpages =
2488 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2489 if not (IntSet.mem pageno set)
2490 then (
2491 wcmd "freepage %s" opaque;
2492 key :: accu
2494 else accu
2495 ) state.pagemap []
2497 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2499 evict ();
2500 state.currently <- Idle;
2501 if gen = state.gen
2502 then (
2503 tilepage l.pageno pageopaque state.layout;
2504 load state.layout;
2505 load preloadedpages;
2506 if pagevisible state.layout l.pageno
2507 && layoutready state.layout
2508 then G.postRedisplay "page";
2511 | Some (layout, _, _) ->
2512 state.currently <- Idle;
2513 tilepage l.pageno pageopaque layout;
2514 load state.layout
2515 end;
2517 | _ ->
2518 dolog "Inconsistent loading state";
2519 logcurrently state.currently;
2520 exit 1
2523 | "tile" :: args :: [] ->
2524 let (x, y, opaque, size, t) =
2525 scan args "%u %u %s %u %f"
2526 (fun x y p size t -> (x, y, p, size, t))
2528 begin match state.currently with
2529 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2530 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2532 unmappbo opaque;
2533 if tilew != conf.tilew || tileh != conf.tileh
2534 then (
2535 wcmd "freetile %s" opaque;
2536 state.currently <- Idle;
2537 load state.layout;
2539 else (
2540 puttileopaque l col row gen cs angle opaque size t;
2541 state.memused <- state.memused + size;
2542 state.uioh#infochanged Memused;
2543 gctiles ();
2544 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2545 opaque, size) state.tilelru;
2547 let layout =
2548 match state.throttle with
2549 | None -> state.layout
2550 | Some (layout, _, _) -> layout
2553 state.currently <- Idle;
2554 if gen = state.gen
2555 && conf.colorspace = cs
2556 && conf.angle = angle
2557 && tilevisible layout l.pageno x y
2558 then conttiling l.pageno pageopaque;
2560 begin match state.throttle with
2561 | None ->
2562 preload state.layout;
2563 if gen = state.gen
2564 && conf.colorspace = cs
2565 && conf.angle = angle
2566 && tilevisible state.layout l.pageno x y
2567 && (not !wtmode || layoutready state.layout)
2568 then G.postRedisplay "tile nothrottle";
2570 | Some (layout, y, _) ->
2571 let ready = layoutready layout in
2572 if ready
2573 then (
2574 state.y <- y;
2575 state.layout <- layout;
2576 state.throttle <- None;
2577 G.postRedisplay "throttle";
2579 else load layout;
2580 end;
2583 | _ ->
2584 dolog "Inconsistent tiling state";
2585 logcurrently state.currently;
2586 exit 1
2589 | "pdim" :: args :: [] ->
2590 let pdim =
2591 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2593 state.uioh#infochanged Pdim;
2594 state.pdims <- pdim :: state.pdims
2596 | "o" :: args :: [] ->
2597 let (l, n, t, h, pos) =
2598 scan args "%u %u %d %u %n"
2599 (fun l n t h pos -> l, n, t, h, pos)
2601 let s = String.sub args pos (String.length args - pos) in
2602 let outline = (s, l, (n, float t /. float h, 0.0)) in
2603 begin match state.currently with
2604 | Outlining outlines ->
2605 state.currently <- Outlining (outline :: outlines)
2606 | Idle ->
2607 state.currently <- Outlining [outline]
2608 | currently ->
2609 dolog "invalid outlining state";
2610 logcurrently currently
2613 | "a" :: args :: [] ->
2614 let (n, l, t) =
2615 scan args "%u %d %d" (fun n l t -> n, l, t)
2617 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2619 | "info" :: args :: [] ->
2620 state.docinfo <- (1, args) :: state.docinfo
2622 | "infoend" :: [] ->
2623 state.uioh#infochanged Docinfo;
2624 state.docinfo <- List.rev state.docinfo
2626 | _ ->
2627 failwith (Printf.sprintf "unknown cmd `%S'" cmds)
2630 let onhist cb =
2631 let rc = cb.rc in
2632 let action = function
2633 | HCprev -> cbget cb ~-1
2634 | HCnext -> cbget cb 1
2635 | HCfirst -> cbget cb ~-(cb.rc)
2636 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2637 and cancel () = cb.rc <- rc
2638 in (action, cancel)
2641 let search pattern forward =
2642 if String.length pattern > 0
2643 then
2644 let pn, py =
2645 match state.layout with
2646 | [] -> 0, 0
2647 | l :: _ ->
2648 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2650 wcmd "search %d %d %d %d,%s\000"
2651 (btod conf.icase) pn py (btod forward) pattern;
2654 let intentry text key =
2655 let c =
2656 if key >= 32 && key < 127
2657 then Char.chr key
2658 else '\000'
2660 match c with
2661 | '0' .. '9' ->
2662 let text = addchar text c in
2663 TEcont text
2665 | _ ->
2666 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2667 TEcont text
2670 let linknentry text key =
2671 let c =
2672 if key >= 32 && key < 127
2673 then Char.chr key
2674 else '\000'
2676 match c with
2677 | 'a' .. 'z' ->
2678 let text = addchar text c in
2679 TEcont text
2681 | _ ->
2682 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2683 TEcont text
2686 let linkndone f s =
2687 if String.length s > 0
2688 then (
2689 let n =
2690 let l = String.length s in
2691 let rec loop pos n = if pos = l then n else
2692 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2693 loop (pos+1) (n*26 + m)
2694 in loop 0 0
2696 let rec loop n = function
2697 | [] -> ()
2698 | l :: rest ->
2699 match getopaque l.pageno with
2700 | None -> loop n rest
2701 | Some opaque ->
2702 let m = getlinkcount opaque in
2703 if n < m
2704 then (
2705 let under = getlink opaque n in
2706 f under
2708 else loop (n-m) rest
2710 loop n state.layout;
2714 let textentry text key =
2715 if key land 0xff00 = 0xff00
2716 then TEcont text
2717 else TEcont (text ^ toutf8 key)
2720 let reqlayout angle fitmodel =
2721 match state.throttle with
2722 | None ->
2723 if nogeomcmds state.geomcmds
2724 then state.anchor <- getanchor ();
2725 conf.angle <- angle mod 360;
2726 if conf.angle != 0
2727 then (
2728 match state.mode with
2729 | LinkNav _ -> state.mode <- View
2730 | _ -> ()
2732 conf.fitmodel <- fitmodel;
2733 invalidate "reqlayout"
2734 (fun () ->
2735 wcmd "reqlayout %d %d" conf.angle (int_of_fitmodel fitmodel));
2736 | _ -> ()
2739 let settrim trimmargins trimfuzz =
2740 if nogeomcmds state.geomcmds
2741 then state.anchor <- getanchor ();
2742 conf.trimmargins <- trimmargins;
2743 conf.trimfuzz <- trimfuzz;
2744 let x0, y0, x1, y1 = trimfuzz in
2745 invalidate "settrim"
2746 (fun () ->
2747 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2748 flushpages ();
2751 let setzoom zoom =
2752 if conf.fitmodel = FitPage
2753 then showtext '!' "Zooming in fit page model makes no sense"
2754 else
2755 match state.throttle with
2756 | None ->
2757 let zoom = max 0.0001 zoom in
2758 if zoom <> conf.zoom
2759 then (
2760 state.prevzoom <- conf.zoom;
2761 conf.zoom <- zoom;
2762 reshape state.winw state.winh;
2763 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2766 | Some (layout, y, started) ->
2767 let time =
2768 match conf.maxwait with
2769 | None -> 0.0
2770 | Some t -> t
2772 let dt = now () -. started in
2773 if dt > time
2774 then (
2775 state.y <- y;
2776 load layout;
2780 let setcolumns mode columns coverA coverB =
2781 state.prevcolumns <- Some (conf.columns, conf.zoom);
2782 if columns < 0
2783 then (
2784 if isbirdseye mode
2785 then showtext '!' "split mode doesn't work in bird's eye"
2786 else (
2787 conf.columns <- Csplit (-columns, [||]);
2788 state.x <- 0;
2789 conf.zoom <- 1.0;
2792 else (
2793 if columns < 2
2794 then (
2795 conf.columns <- Csingle [||];
2796 state.x <- 0;
2797 setzoom 1.0;
2799 else (
2800 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2801 conf.zoom <- 1.0;
2804 reshape state.winw state.winh;
2807 let enterbirdseye () =
2808 let zoom = float conf.thumbw /. float state.winw in
2809 let birdseyepageno =
2810 let cy = state.winh / 2 in
2811 let fold = function
2812 | [] -> 0
2813 | l :: rest ->
2814 let rec fold best = function
2815 | [] -> best.pageno
2816 | l :: rest ->
2817 let d = cy - (l.pagedispy + l.pagevh/2)
2818 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2819 if abs d < abs dbest
2820 then fold l rest
2821 else best.pageno
2822 in fold l rest
2824 fold state.layout
2826 state.mode <- Birdseye (
2827 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2829 conf.zoom <- zoom;
2830 conf.presentation <- false;
2831 conf.interpagespace <- 10;
2832 conf.hlinks <- false;
2833 state.x <- 0;
2834 state.mstate <- Mnone;
2835 conf.maxwait <- None;
2836 conf.columns <- (
2837 match conf.beyecolumns with
2838 | Some c ->
2839 conf.zoom <- 1.0;
2840 Cmulti ((c, 0, 0), [||])
2841 | None -> Csingle [||]
2843 Wsi.setcursor Wsi.CURSOR_INHERIT;
2844 if conf.verbose
2845 then
2846 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2847 (100.0*.zoom)
2848 else
2849 state.text <- ""
2851 reshape state.winw state.winh;
2854 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2855 state.mode <- View;
2856 conf.zoom <- c.zoom;
2857 conf.presentation <- c.presentation;
2858 conf.interpagespace <- c.interpagespace;
2859 conf.maxwait <- c.maxwait;
2860 conf.hlinks <- c.hlinks;
2861 conf.beyecolumns <- (
2862 match conf.columns with
2863 | Cmulti ((c, _, _), _) -> Some c
2864 | Csingle _ -> None
2865 | Csplit _ -> failwith "leaving bird's eye split mode"
2867 conf.columns <- (
2868 match c.columns with
2869 | Cmulti (c, _) -> Cmulti (c, [||])
2870 | Csingle _ -> Csingle [||]
2871 | Csplit (c, _) -> Csplit (c, [||])
2873 state.x <- leftx;
2874 if conf.verbose
2875 then
2876 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2877 (100.0*.conf.zoom)
2879 reshape state.winw state.winh;
2880 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2883 let togglebirdseye () =
2884 match state.mode with
2885 | Birdseye vals -> leavebirdseye vals true
2886 | View -> enterbirdseye ()
2887 | _ -> ()
2890 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2891 let pageno = max 0 (pageno - incr) in
2892 let rec loop = function
2893 | [] -> gotopage1 pageno 0
2894 | l :: _ when l.pageno = pageno ->
2895 if l.pagedispy >= 0 && l.pagey = 0
2896 then G.postRedisplay "upbirdseye"
2897 else gotopage1 pageno 0
2898 | _ :: rest -> loop rest
2900 loop state.layout;
2901 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2904 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2905 let pageno = min (state.pagecount - 1) (pageno + incr) in
2906 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2907 let rec loop = function
2908 | [] ->
2909 let y, h = getpageyh pageno in
2910 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2911 gotoy (clamp dy)
2912 | l :: _ when l.pageno = pageno ->
2913 if l.pagevh != l.pageh
2914 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2915 else G.postRedisplay "downbirdseye"
2916 | _ :: rest -> loop rest
2918 loop state.layout
2921 let optentry mode _ key =
2922 let btos b = if b then "on" else "off" in
2923 if key >= 32 && key < 127
2924 then
2925 let c = Char.chr key in
2926 match c with
2927 | 's' ->
2928 let ondone s =
2929 try conf.scrollstep <- int_of_string s with exc ->
2930 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2932 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2934 | 'A' ->
2935 let ondone s =
2937 conf.autoscrollstep <- int_of_string s;
2938 if state.autoscroll <> None
2939 then state.autoscroll <- Some conf.autoscrollstep
2940 with exc ->
2941 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2943 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2945 | 'C' ->
2946 let ondone s =
2948 let n, a, b = multicolumns_of_string s in
2949 setcolumns mode n a b;
2950 with exc ->
2951 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2953 TEswitch ("columns: ", "", None, textentry, ondone, true)
2955 | 'Z' ->
2956 let ondone s =
2958 let zoom = float (int_of_string s) /. 100.0 in
2959 setzoom zoom
2960 with exc ->
2961 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2963 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2965 | 't' ->
2966 let ondone s =
2968 conf.thumbw <- bound (int_of_string s) 2 4096;
2969 state.text <-
2970 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2971 begin match mode with
2972 | Birdseye beye ->
2973 leavebirdseye beye false;
2974 enterbirdseye ();
2975 | _ -> ();
2977 with exc ->
2978 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2980 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2982 | 'R' ->
2983 let ondone s =
2984 match try
2985 Some (int_of_string s)
2986 with exc ->
2987 state.text <- Printf.sprintf "bad integer `%s': %s"
2988 s (exntos exc);
2989 None
2990 with
2991 | Some angle -> reqlayout angle conf.fitmodel
2992 | None -> ()
2994 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2996 | 'i' ->
2997 conf.icase <- not conf.icase;
2998 TEdone ("case insensitive search " ^ (btos conf.icase))
3000 | 'p' ->
3001 conf.preload <- not conf.preload;
3002 gotoy state.y;
3003 TEdone ("preload " ^ (btos conf.preload))
3005 | 'v' ->
3006 conf.verbose <- not conf.verbose;
3007 TEdone ("verbose " ^ (btos conf.verbose))
3009 | 'd' ->
3010 conf.debug <- not conf.debug;
3011 TEdone ("debug " ^ (btos conf.debug))
3013 | 'h' ->
3014 conf.maxhfit <- not conf.maxhfit;
3015 state.maxy <- calcheight ();
3016 TEdone ("maxhfit " ^ (btos conf.maxhfit))
3018 | 'c' ->
3019 conf.crophack <- not conf.crophack;
3020 TEdone ("crophack " ^ btos conf.crophack)
3022 | 'a' ->
3023 let s =
3024 match conf.maxwait with
3025 | None ->
3026 conf.maxwait <- Some infinity;
3027 "always wait for page to complete"
3028 | Some _ ->
3029 conf.maxwait <- None;
3030 "show placeholder if page is not ready"
3032 TEdone s
3034 | 'f' ->
3035 conf.underinfo <- not conf.underinfo;
3036 TEdone ("underinfo " ^ btos conf.underinfo)
3038 | 'P' ->
3039 conf.savebmarks <- not conf.savebmarks;
3040 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
3042 | 'S' ->
3043 let ondone s =
3045 let pageno, py =
3046 match state.layout with
3047 | [] -> 0, 0
3048 | l :: _ ->
3049 l.pageno, l.pagey
3051 conf.interpagespace <- int_of_string s;
3052 docolumns conf.columns;
3053 state.maxy <- calcheight ();
3054 let y = getpagey pageno in
3055 gotoy (y + py)
3056 with exc ->
3057 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3059 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
3061 | 'l' ->
3062 let fm =
3063 match conf.fitmodel with
3064 | FitProportional -> FitWidth
3065 | _ -> FitProportional
3067 reqlayout conf.angle fm;
3068 TEdone ("proportional display " ^ btos (fm == FitProportional))
3070 | 'T' ->
3071 settrim (not conf.trimmargins) conf.trimfuzz;
3072 TEdone ("trim margins " ^ btos conf.trimmargins)
3074 | 'I' ->
3075 conf.invert <- not conf.invert;
3076 TEdone ("invert colors " ^ btos conf.invert)
3078 | 'x' ->
3079 let ondone s =
3080 cbput state.hists.sel s;
3081 conf.selcmd <- s;
3083 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3084 textentry, ondone, true)
3086 | _ ->
3087 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3088 TEstop
3089 else
3090 TEcont state.text
3093 class type lvsource = object
3094 method getitemcount : int
3095 method getitem : int -> (string * int)
3096 method hasaction : int -> bool
3097 method exit :
3098 uioh:uioh ->
3099 cancel:bool ->
3100 active:int ->
3101 first:int ->
3102 pan:int ->
3103 qsearch:string ->
3104 uioh option
3105 method getactive : int
3106 method getfirst : int
3107 method getqsearch : string
3108 method setqsearch : string -> unit
3109 method getpan : int
3110 end;;
3112 class virtual lvsourcebase = object
3113 val mutable m_active = 0
3114 val mutable m_first = 0
3115 val mutable m_qsearch = ""
3116 val mutable m_pan = 0
3117 method getactive = m_active
3118 method getfirst = m_first
3119 method getqsearch = m_qsearch
3120 method getpan = m_pan
3121 method setqsearch s = m_qsearch <- s
3122 end;;
3124 let withoutlastutf8 s =
3125 let len = String.length s in
3126 if len = 0
3127 then s
3128 else
3129 let rec find pos =
3130 if pos = 0
3131 then pos
3132 else
3133 let b = Char.code s.[pos] in
3134 if b land 0b11000000 = 0b11000000
3135 then pos
3136 else find (pos-1)
3138 let first =
3139 if Char.code s.[len-1] land 0x80 = 0
3140 then len-1
3141 else find (len-1)
3143 String.sub s 0 first;
3146 let textentrykeyboard
3147 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3148 let key =
3149 if key >= 0xffb0 && key <= 0xffb9
3150 then key - 0xffb0 + 48 else key
3152 let enttext te =
3153 state.mode <- Textentry (te, onleave);
3154 state.text <- "";
3155 enttext ();
3156 G.postRedisplay "textentrykeyboard enttext";
3158 let histaction cmd =
3159 match opthist with
3160 | None -> ()
3161 | Some (action, _) ->
3162 state.mode <- Textentry (
3163 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3165 G.postRedisplay "textentry histaction"
3167 match key with
3168 | 0xff08 -> (* backspace *)
3169 let s = withoutlastutf8 text in
3170 let len = String.length s in
3171 if cancelonempty && len = 0
3172 then (
3173 onleave Cancel;
3174 G.postRedisplay "textentrykeyboard after cancel";
3176 else (
3177 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3180 | 0xff0d | 0xff8d -> (* (kp) enter *)
3181 ondone text;
3182 onleave Confirm;
3183 G.postRedisplay "textentrykeyboard after confirm"
3185 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3186 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3187 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3188 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3190 | 0xff1b -> (* escape*)
3191 if String.length text = 0
3192 then (
3193 begin match opthist with
3194 | None -> ()
3195 | Some (_, onhistcancel) -> onhistcancel ()
3196 end;
3197 onleave Cancel;
3198 state.text <- "";
3199 G.postRedisplay "textentrykeyboard after cancel2"
3201 else (
3202 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3205 | 0xff9f | 0xffff -> () (* delete *)
3207 | _ when key != 0
3208 && key land 0xff00 != 0xff00 (* keyboard *)
3209 && key land 0xfe00 != 0xfe00 (* xkb *)
3210 && key land 0xfd00 != 0xfd00 (* 3270 *)
3212 begin match onkey text key with
3213 | TEdone text ->
3214 ondone text;
3215 onleave Confirm;
3216 G.postRedisplay "textentrykeyboard after confirm2";
3218 | TEcont text ->
3219 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3221 | TEstop ->
3222 onleave Cancel;
3223 G.postRedisplay "textentrykeyboard after cancel3"
3225 | TEswitch te ->
3226 state.mode <- Textentry (te, onleave);
3227 G.postRedisplay "textentrykeyboard switch";
3228 end;
3230 | _ ->
3231 vlog "unhandled key %s" (Wsi.keyname key)
3234 let firstof first active =
3235 if first > active || abs (first - active) > fstate.maxrows - 1
3236 then max 0 (active - (fstate.maxrows/2))
3237 else first
3240 let calcfirst first active =
3241 if active > first
3242 then
3243 let rows = active - first in
3244 if rows > fstate.maxrows then active - fstate.maxrows else first
3245 else active
3248 let scrollph y maxy =
3249 let sh = (float (maxy + state.winh) /. float state.winh) in
3250 let sh = float state.winh /. sh in
3251 let sh = max sh (float conf.scrollh) in
3253 let percent =
3254 if y = state.maxy
3255 then 1.0
3256 else float y /. float maxy
3258 let position = (float state.winh -. sh) *. percent in
3260 let position =
3261 if position +. sh > float state.winh
3262 then float state.winh -. sh
3263 else position
3265 position, sh;
3268 let coe s = (s :> uioh);;
3270 class listview ~(source:lvsource) ~trusted ~modehash =
3271 object (self)
3272 val m_pan = source#getpan
3273 val m_first = source#getfirst
3274 val m_active = source#getactive
3275 val m_qsearch = source#getqsearch
3276 val m_prev_uioh = state.uioh
3278 method private elemunder y =
3279 let n = y / (fstate.fontsize+1) in
3280 if m_first + n < source#getitemcount
3281 then (
3282 if source#hasaction (m_first + n)
3283 then Some (m_first + n)
3284 else None
3286 else None
3288 method display =
3289 Gl.enable `blend;
3290 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3291 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3292 GlDraw.rect (0., 0.) (float state.winw, float state.winh);
3293 GlDraw.color (1., 1., 1.);
3294 Gl.enable `texture_2d;
3295 let fs = fstate.fontsize in
3296 let nfs = fs + 1 in
3297 let ww = fstate.wwidth in
3298 let tabw = 30.0*.ww in
3299 let itemcount = source#getitemcount in
3300 let rec loop row =
3301 if (row - m_first) > fstate.maxrows
3302 then ()
3303 else (
3304 if row >= 0 && row < itemcount
3305 then (
3306 let (s, level) = source#getitem row in
3307 let y = (row - m_first) * nfs in
3308 let x = 5.0 +. float (level + m_pan) *. ww in
3309 if row = m_active
3310 then (
3311 Gl.disable `texture_2d;
3312 GlDraw.polygon_mode `both `line;
3313 let alpha = if source#hasaction row then 0.9 else 0.3 in
3314 GlDraw.color (1., 1., 1.) ~alpha;
3315 GlDraw.rect (1., float (y + 1))
3316 (float (state.winw - conf.scrollbw - 1), float (y + fs + 3));
3317 GlDraw.polygon_mode `both `fill;
3318 GlDraw.color (1., 1., 1.);
3319 Gl.enable `texture_2d;
3322 let drawtabularstring s =
3323 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3324 if trusted
3325 then
3326 let tabpos = try String.index s '\t' with Not_found -> -1 in
3327 if tabpos > 0
3328 then
3329 let len = String.length s - tabpos - 1 in
3330 let s1 = String.sub s 0 tabpos
3331 and s2 = String.sub s (tabpos + 1) len in
3332 let nx = drawstr x s1 in
3333 let sw = nx -. x in
3334 let x = x +. (max tabw sw) in
3335 drawstr x s2
3336 else
3337 drawstr x s
3338 else
3339 drawstr x s
3341 let _ = drawtabularstring s in
3342 loop (row+1)
3346 loop m_first;
3347 Gl.disable `blend;
3348 Gl.disable `texture_2d;
3350 method updownlevel incr =
3351 let len = source#getitemcount in
3352 let curlevel =
3353 if m_active >= 0 && m_active < len
3354 then snd (source#getitem m_active)
3355 else -1
3357 let rec flow i =
3358 if i = len then i-1 else if i = -1 then 0 else
3359 let _, l = source#getitem i in
3360 if l != curlevel then i else flow (i+incr)
3362 let active = flow m_active in
3363 let first = calcfirst m_first active in
3364 G.postRedisplay "outline updownlevel";
3365 {< m_active = active; m_first = first >}
3367 method private key1 key mask =
3368 let set1 active first qsearch =
3369 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3371 let search active pattern incr =
3372 let active = if active = -1 then m_first else active in
3373 let dosearch re =
3374 let rec loop n =
3375 if n >= 0 && n < source#getitemcount
3376 then (
3377 let s, _ = source#getitem n in
3379 (try ignore (Str.search_forward re s 0); true
3380 with Not_found -> false)
3381 then Some n
3382 else loop (n + incr)
3384 else None
3386 loop active
3389 let re = Str.regexp_case_fold pattern in
3390 dosearch re
3391 with Failure s ->
3392 state.text <- s;
3393 None
3395 let itemcount = source#getitemcount in
3396 let find start incr =
3397 let rec find i =
3398 if i = -1 || i = itemcount
3399 then -1
3400 else (
3401 if source#hasaction i
3402 then i
3403 else find (i + incr)
3406 find start
3408 let set active first =
3409 let first = bound first 0 (itemcount - fstate.maxrows) in
3410 state.text <- "";
3411 coe {< m_active = active; m_first = first >}
3413 let navigate incr =
3414 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3415 let active, first =
3416 let incr1 = if incr > 0 then 1 else -1 in
3417 if isvisible m_first m_active
3418 then
3419 let next =
3420 let next = m_active + incr in
3421 let next =
3422 if next < 0 || next >= itemcount
3423 then -1
3424 else find next incr1
3426 if next = -1 || abs (m_active - next) > fstate.maxrows
3427 then -1
3428 else next
3430 if next = -1
3431 then
3432 let first = m_first + incr in
3433 let first = bound first 0 (itemcount - 1) in
3434 let next =
3435 let next = m_active + incr in
3436 let next = bound next 0 (itemcount - 1) in
3437 find next ~-incr1
3439 let active = if next = -1 then m_active else next in
3440 active, first
3441 else
3442 let first = min next m_first in
3443 let first =
3444 if abs (next - first) > fstate.maxrows
3445 then first + incr
3446 else first
3448 next, first
3449 else
3450 let first = m_first + incr in
3451 let first = bound first 0 (itemcount - 1) in
3452 let active =
3453 let next = m_active + incr in
3454 let next = bound next 0 (itemcount - 1) in
3455 let next = find next incr1 in
3456 let active =
3457 if next = -1 || abs (m_active - first) > fstate.maxrows
3458 then (
3459 let active = if m_active = -1 then next else m_active in
3460 active
3462 else next
3464 if isvisible first active
3465 then active
3466 else -1
3468 active, first
3470 G.postRedisplay "listview navigate";
3471 set active first;
3473 match key with
3474 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3475 let incr = if key = 0x72 then -1 else 1 in
3476 let active, first =
3477 match search (m_active + incr) m_qsearch incr with
3478 | None ->
3479 state.text <- m_qsearch ^ " [not found]";
3480 m_active, m_first
3481 | Some active ->
3482 state.text <- m_qsearch;
3483 active, firstof m_first active
3485 G.postRedisplay "listview ctrl-r/s";
3486 set1 active first m_qsearch;
3488 | 0xff08 -> (* backspace *)
3489 if String.length m_qsearch = 0
3490 then coe self
3491 else (
3492 let qsearch = withoutlastutf8 m_qsearch in
3493 let len = String.length qsearch in
3494 if len = 0
3495 then (
3496 state.text <- "";
3497 G.postRedisplay "listview empty qsearch";
3498 set1 m_active m_first "";
3500 else
3501 let active, first =
3502 match search m_active qsearch ~-1 with
3503 | None ->
3504 state.text <- qsearch ^ " [not found]";
3505 m_active, m_first
3506 | Some active ->
3507 state.text <- qsearch;
3508 active, firstof m_first active
3510 G.postRedisplay "listview backspace qsearch";
3511 set1 active first qsearch
3514 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3515 let pattern = m_qsearch ^ toutf8 key in
3516 let active, first =
3517 match search m_active pattern 1 with
3518 | None ->
3519 state.text <- pattern ^ " [not found]";
3520 m_active, m_first
3521 | Some active ->
3522 state.text <- pattern;
3523 active, firstof m_first active
3525 G.postRedisplay "listview qsearch add";
3526 set1 active first pattern;
3528 | 0xff1b -> (* escape *)
3529 state.text <- "";
3530 if String.length m_qsearch = 0
3531 then (
3532 G.postRedisplay "list view escape";
3533 begin
3534 match
3535 source#exit (coe self) true m_active m_first m_pan m_qsearch
3536 with
3537 | None -> m_prev_uioh
3538 | Some uioh -> uioh
3541 else (
3542 G.postRedisplay "list view kill qsearch";
3543 source#setqsearch "";
3544 coe {< m_qsearch = "" >}
3547 | 0xff0d | 0xff8d -> (* (kp) enter *)
3548 state.text <- "";
3549 let self = {< m_qsearch = "" >} in
3550 source#setqsearch "";
3551 let opt =
3552 G.postRedisplay "listview enter";
3553 if m_active >= 0 && m_active < source#getitemcount
3554 then (
3555 source#exit (coe self) false m_active m_first m_pan "";
3557 else (
3558 source#exit (coe self) true m_active m_first m_pan "";
3561 begin match opt with
3562 | None -> m_prev_uioh
3563 | Some uioh -> uioh
3566 | 0xff9f | 0xffff -> (* (kp) delete *)
3567 coe self
3569 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3570 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3571 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3572 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3574 | 0xff53 | 0xff98 -> (* (kp) right *)
3575 state.text <- "";
3576 G.postRedisplay "listview right";
3577 coe {< m_pan = m_pan - 1 >}
3579 | 0xff51 | 0xff96 -> (* (kp) left *)
3580 state.text <- "";
3581 G.postRedisplay "listview left";
3582 coe {< m_pan = m_pan + 1 >}
3584 | 0xff50 | 0xff95 -> (* (kp) home *)
3585 let active = find 0 1 in
3586 G.postRedisplay "listview home";
3587 set active 0;
3589 | 0xff57 | 0xff9c -> (* (kp) end *)
3590 let first = max 0 (itemcount - fstate.maxrows) in
3591 let active = find (itemcount - 1) ~-1 in
3592 G.postRedisplay "listview end";
3593 set active first;
3595 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3596 coe self
3598 | _ ->
3599 dolog "listview unknown key %#x" key; coe self
3601 method key key mask =
3602 match state.mode with
3603 | Textentry te -> textentrykeyboard key mask te; coe self
3604 | _ -> self#key1 key mask
3606 method button button down x y _ =
3607 let opt =
3608 match button with
3609 | 1 when x > state.winw - conf.scrollbw ->
3610 G.postRedisplay "listview scroll";
3611 if down
3612 then
3613 let _, position, sh = self#scrollph in
3614 if y > truncate position && y < truncate (position +. sh)
3615 then (
3616 state.mstate <- Mscrolly;
3617 Some (coe self)
3619 else
3620 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3621 let first = truncate (s *. float source#getitemcount) in
3622 let first = min source#getitemcount first in
3623 Some (coe {< m_first = first; m_active = first >})
3624 else (
3625 state.mstate <- Mnone;
3626 Some (coe self);
3628 | 1 when not down ->
3629 begin match self#elemunder y with
3630 | Some n ->
3631 G.postRedisplay "listview click";
3632 source#exit
3633 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3634 | _ ->
3635 Some (coe self)
3637 | n when (n == 4 || n == 5) && not down ->
3638 let len = source#getitemcount in
3639 let first =
3640 if n = 5 && m_first + fstate.maxrows >= len
3641 then
3642 m_first
3643 else
3644 let first = m_first + (if n == 4 then -1 else 1) in
3645 bound first 0 (len - 1)
3647 G.postRedisplay "listview wheel";
3648 Some (coe {< m_first = first >})
3649 | n when (n = 6 || n = 7) && not down ->
3650 let inc = m_first + (if n = 7 then -1 else 1) in
3651 G.postRedisplay "listview hwheel";
3652 Some (coe {< m_pan = m_pan + inc >})
3653 | _ ->
3654 Some (coe self)
3656 match opt with
3657 | None -> m_prev_uioh
3658 | Some uioh -> uioh
3660 method motion _ y =
3661 match state.mstate with
3662 | Mscrolly ->
3663 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3664 let first = truncate (s *. float source#getitemcount) in
3665 let first = min source#getitemcount first in
3666 G.postRedisplay "listview motion";
3667 coe {< m_first = first; m_active = first >}
3668 | _ -> coe self
3670 method pmotion x y =
3671 if x < state.winw - conf.scrollbw
3672 then
3673 let n =
3674 match self#elemunder y with
3675 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3676 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3678 let o =
3679 if n != m_active
3680 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3681 else self
3683 coe o
3684 else (
3685 Wsi.setcursor Wsi.CURSOR_INHERIT;
3686 coe self
3689 method infochanged _ = ()
3691 method scrollpw = (0, 0.0, 0.0)
3692 method scrollph =
3693 let nfs = fstate.fontsize + 1 in
3694 let y = m_first * nfs in
3695 let itemcount = source#getitemcount in
3696 let maxi = max 0 (itemcount - fstate.maxrows) in
3697 let maxy = maxi * nfs in
3698 let p, h = scrollph y maxy in
3699 conf.scrollbw, p, h
3701 method modehash = modehash
3702 method eformsgs = false
3703 end;;
3705 class outlinelistview ~source =
3706 object (self)
3707 inherit listview
3708 ~source:(source :> lvsource)
3709 ~trusted:false
3710 ~modehash:(findkeyhash conf "outline")
3711 as super
3713 method key key mask =
3714 let calcfirst first active =
3715 if active > first
3716 then
3717 let rows = active - first in
3718 let maxrows =
3719 if String.length state.text = 0
3720 then fstate.maxrows
3721 else fstate.maxrows - 2
3723 if rows > maxrows then active - maxrows else first
3724 else active
3726 let navigate incr =
3727 let active = m_active + incr in
3728 let active = bound active 0 (source#getitemcount - 1) in
3729 let first = calcfirst m_first active in
3730 G.postRedisplay "outline navigate";
3731 coe {< m_active = active; m_first = first >}
3733 let ctrl = Wsi.withctrl mask in
3734 match key with
3735 | 110 when ctrl -> (* ctrl-n *)
3736 source#narrow m_qsearch;
3737 G.postRedisplay "outline ctrl-n";
3738 coe {< m_first = 0; m_active = 0 >}
3740 | 117 when ctrl -> (* ctrl-u *)
3741 source#denarrow;
3742 G.postRedisplay "outline ctrl-u";
3743 state.text <- "";
3744 coe {< m_first = 0; m_active = 0 >}
3746 | 108 when ctrl -> (* ctrl-l *)
3747 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3748 G.postRedisplay "outline ctrl-l";
3749 coe {< m_first = first >}
3751 | 0xff9f | 0xffff -> (* (kp) delete *)
3752 source#remove m_active;
3753 G.postRedisplay "outline delete";
3754 let active = max 0 (m_active-1) in
3755 coe {< m_first = firstof m_first active;
3756 m_active = active >}
3758 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3759 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3760 | 0xff55 | 0xff9a -> (* (kp) prior *)
3761 navigate ~-(fstate.maxrows)
3762 | 0xff56 | 0xff9b -> (* (kp) next *)
3763 navigate fstate.maxrows
3765 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3766 let o =
3767 if ctrl
3768 then (
3769 G.postRedisplay "outline ctrl right";
3770 {< m_pan = m_pan + 1 >}
3772 else self#updownlevel 1
3774 coe o
3776 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3777 let o =
3778 if ctrl
3779 then (
3780 G.postRedisplay "outline ctrl left";
3781 {< m_pan = m_pan - 1 >}
3783 else self#updownlevel ~-1
3785 coe o
3787 | 0xff50 | 0xff95 -> (* (kp) home *)
3788 G.postRedisplay "outline home";
3789 coe {< m_first = 0; m_active = 0 >}
3791 | 0xff57 | 0xff9c -> (* (kp) end *)
3792 let active = source#getitemcount - 1 in
3793 let first = max 0 (active - fstate.maxrows) in
3794 G.postRedisplay "outline end";
3795 coe {< m_active = active; m_first = first >}
3797 | _ -> super#key key mask
3800 let outlinesource usebookmarks =
3801 let empty = [||] in
3802 (object
3803 inherit lvsourcebase
3804 val mutable m_items = empty
3805 val mutable m_orig_items = empty
3806 val mutable m_prev_items = empty
3807 val mutable m_narrow_pattern = ""
3808 val mutable m_hadremovals = false
3810 method getitemcount =
3811 Array.length m_items + (if m_hadremovals then 1 else 0)
3813 method getitem n =
3814 if n == Array.length m_items && m_hadremovals
3815 then
3816 ("[Confirm removal]", 0)
3817 else
3818 let s, n, _ = m_items.(n) in
3819 (s, n)
3821 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3822 ignore (uioh, first, qsearch);
3823 let confrimremoval = m_hadremovals && active = Array.length m_items in
3824 let items =
3825 if String.length m_narrow_pattern = 0
3826 then m_orig_items
3827 else m_items
3829 if not cancel
3830 then (
3831 if not confrimremoval
3832 then(
3833 let _, _, anchor = m_items.(active) in
3834 gotoghyll (getanchory anchor);
3835 m_items <- items;
3837 else (
3838 state.bookmarks <- Array.to_list m_items;
3839 m_orig_items <- m_items;
3842 else m_items <- items;
3843 m_pan <- pan;
3844 None
3846 method hasaction _ = true
3848 method greetmsg =
3849 if Array.length m_items != Array.length m_orig_items
3850 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3851 else ""
3853 method narrow pattern =
3854 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3855 match reopt with
3856 | None -> ()
3857 | Some re ->
3858 let rec loop accu n =
3859 if n = -1
3860 then (
3861 m_narrow_pattern <- pattern;
3862 m_items <- Array.of_list accu
3864 else
3865 let (s, _, _) as o = m_items.(n) in
3866 let accu =
3867 if (try ignore (Str.search_forward re s 0); true
3868 with Not_found -> false)
3869 then o :: accu
3870 else accu
3872 loop accu (n-1)
3874 loop [] (Array.length m_items - 1)
3876 method denarrow =
3877 m_orig_items <- (
3878 if usebookmarks
3879 then Array.of_list state.bookmarks
3880 else state.outlines
3882 m_items <- m_orig_items
3884 method remove m =
3885 if usebookmarks
3886 then
3887 if m >= 0 && m < Array.length m_items
3888 then (
3889 m_hadremovals <- true;
3890 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3891 let n = if n >= m then n+1 else n in
3892 m_items.(n)
3896 method reset anchor items =
3897 m_hadremovals <- false;
3898 if m_orig_items == empty || m_prev_items != items
3899 then (
3900 m_orig_items <- items;
3901 if String.length m_narrow_pattern = 0
3902 then m_items <- items;
3904 m_prev_items <- items;
3905 let rely = getanchory anchor in
3906 let active =
3907 let rec loop n best bestd =
3908 if n = Array.length m_items
3909 then best
3910 else
3911 let (_, _, anchor) = m_items.(n) in
3912 let orely = getanchory anchor in
3913 let d = abs (orely - rely) in
3914 if d < bestd
3915 then loop (n+1) n d
3916 else loop (n+1) best bestd
3918 loop 0 ~-1 max_int
3920 m_active <- active;
3921 m_first <- firstof m_first active
3922 end)
3925 let enterselector usebookmarks =
3926 let source = outlinesource usebookmarks in
3927 fun errmsg ->
3928 let outlines =
3929 if usebookmarks
3930 then Array.of_list state.bookmarks
3931 else state.outlines
3933 if Array.length outlines = 0
3934 then (
3935 showtext ' ' errmsg;
3937 else (
3938 state.text <- source#greetmsg;
3939 Wsi.setcursor Wsi.CURSOR_INHERIT;
3940 let anchor = getanchor () in
3941 source#reset anchor outlines;
3942 state.uioh <- coe (new outlinelistview ~source);
3943 G.postRedisplay "enter selector";
3947 let enteroutlinemode =
3948 let f = enterselector false in
3949 fun ()-> f "Document has no outline";
3952 let enterbookmarkmode =
3953 let f = enterselector true in
3954 fun () -> f "Document has no bookmarks (yet)";
3957 let color_of_string s =
3958 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3959 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3963 let color_to_string (r, g, b) =
3964 let r = truncate (r *. 256.0)
3965 and g = truncate (g *. 256.0)
3966 and b = truncate (b *. 256.0) in
3967 Printf.sprintf "%d/%d/%d" r g b
3970 let irect_of_string s =
3971 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3974 let irect_to_string (x0,y0,x1,y1) =
3975 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3978 let makecheckers () =
3979 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3980 following to say:
3981 converted by Issac Trotts. July 25, 2002 *)
3982 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3983 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3984 let id = GlTex.gen_texture () in
3985 GlTex.bind_texture `texture_2d id;
3986 GlPix.store (`unpack_alignment 1);
3987 GlTex.image2d image;
3988 List.iter (GlTex.parameter ~target:`texture_2d)
3989 [ `mag_filter `nearest; `min_filter `nearest ];
3993 let setcheckers enabled =
3994 match state.texid with
3995 | None ->
3996 if enabled then state.texid <- Some (makecheckers ())
3998 | Some texid ->
3999 if not enabled
4000 then (
4001 GlTex.delete_texture texid;
4002 state.texid <- None;
4006 let int_of_string_with_suffix s =
4007 let l = String.length s in
4008 let s1, shift =
4009 if l > 1
4010 then
4011 let suffix = Char.lowercase s.[l-1] in
4012 match suffix with
4013 | 'k' -> String.sub s 0 (l-1), 10
4014 | 'm' -> String.sub s 0 (l-1), 20
4015 | 'g' -> String.sub s 0 (l-1), 30
4016 | _ -> s, 0
4017 else s, 0
4019 let n = int_of_string s1 in
4020 let m = n lsl shift in
4021 if m < 0 || m < n
4022 then raise (Failure "value too large")
4023 else m
4026 let string_with_suffix_of_int n =
4027 if n = 0
4028 then "0"
4029 else
4030 let n, s =
4031 if n land ((1 lsl 30) - 1) = 0
4032 then n lsr 30, "G"
4033 else (
4034 if n land ((1 lsl 20) - 1) = 0
4035 then n lsr 20, "M"
4036 else (
4037 if n land ((1 lsl 10) - 1) = 0
4038 then n lsr 10, "K"
4039 else n, ""
4043 let rec loop s n =
4044 let h = n mod 1000 in
4045 let n = n / 1000 in
4046 if n = 0
4047 then string_of_int h ^ s
4048 else (
4049 let s = Printf.sprintf "_%03d%s" h s in
4050 loop s n
4053 loop "" n ^ s;
4056 let defghyllscroll = (40, 8, 32);;
4057 let ghyllscroll_of_string s =
4058 let (n, a, b) as nab =
4059 if s = "default"
4060 then defghyllscroll
4061 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
4063 if n <= a || n <= b || a >= b
4064 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
4065 nab;
4068 let ghyllscroll_to_string ((n, a, b) as nab) =
4069 if nab = defghyllscroll
4070 then "default"
4071 else Printf.sprintf "%d,%d,%d" n a b;
4074 let describe_location () =
4075 let fn = page_of_y state.y in
4076 let ln = page_of_y (state.y + state.winh - state.hscrollh) in
4077 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4078 let percent =
4079 if maxy <= 0
4080 then 100.
4081 else (100. *. (float state.y /. float maxy))
4083 if fn = ln
4084 then
4085 Printf.sprintf "page %d of %d [%.2f%%]"
4086 (fn+1) state.pagecount percent
4087 else
4088 Printf.sprintf
4089 "pages %d-%d of %d [%.2f%%]"
4090 (fn+1) (ln+1) state.pagecount percent
4093 let setpresentationmode v =
4094 let n = page_of_y state.y in
4095 state.anchor <- (n, 0.0, 1.0);
4096 conf.presentation <- v;
4097 if conf.presentation
4098 then (
4099 if not conf.scrollbarinpm
4100 then state.scrollw <- 0;
4102 else state.scrollw <- conf.scrollbw;
4103 represent ();
4106 let enterinfomode =
4107 let btos b = if b then "\xe2\x88\x9a" else "" in
4108 let showextended = ref false in
4109 let leave mode = function
4110 | Confirm -> state.mode <- mode
4111 | Cancel -> state.mode <- mode in
4112 let src =
4113 (object
4114 val mutable m_first_time = true
4115 val mutable m_l = []
4116 val mutable m_a = [||]
4117 val mutable m_prev_uioh = nouioh
4118 val mutable m_prev_mode = View
4120 inherit lvsourcebase
4122 method reset prev_mode prev_uioh =
4123 m_a <- Array.of_list (List.rev m_l);
4124 m_l <- [];
4125 m_prev_mode <- prev_mode;
4126 m_prev_uioh <- prev_uioh;
4127 if m_first_time
4128 then (
4129 let rec loop n =
4130 if n >= Array.length m_a
4131 then ()
4132 else
4133 match m_a.(n) with
4134 | _, _, _, Action _ -> m_active <- n
4135 | _ -> loop (n+1)
4137 loop 0;
4138 m_first_time <- false;
4141 method int name get set =
4142 m_l <-
4143 (name, `int get, 1, Action (
4144 fun u ->
4145 let ondone s =
4146 try set (int_of_string s)
4147 with exn ->
4148 state.text <- Printf.sprintf "bad integer `%s': %s"
4149 s (exntos exn)
4151 state.text <- "";
4152 let te = name ^ ": ", "", None, intentry, ondone, true in
4153 state.mode <- Textentry (te, leave m_prev_mode);
4155 )) :: m_l
4157 method int_with_suffix name get set =
4158 m_l <-
4159 (name, `intws get, 1, Action (
4160 fun u ->
4161 let ondone s =
4162 try set (int_of_string_with_suffix s)
4163 with exn ->
4164 state.text <- Printf.sprintf "bad integer `%s': %s"
4165 s (exntos exn)
4167 state.text <- "";
4168 let te =
4169 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4171 state.mode <- Textentry (te, leave m_prev_mode);
4173 )) :: m_l
4175 method bool ?(offset=1) ?(btos=btos) name get set =
4176 m_l <-
4177 (name, `bool (btos, get), offset, Action (
4178 fun u ->
4179 let v = get () in
4180 set (not v);
4182 )) :: m_l
4184 method color name get set =
4185 m_l <-
4186 (name, `color get, 1, Action (
4187 fun u ->
4188 let invalid = (nan, nan, nan) in
4189 let ondone s =
4190 let c =
4191 try color_of_string s
4192 with exn ->
4193 state.text <- Printf.sprintf "bad color `%s': %s"
4194 s (exntos exn);
4195 invalid
4197 if c <> invalid
4198 then set c;
4200 let te = name ^ ": ", "", None, textentry, ondone, true in
4201 state.text <- color_to_string (get ());
4202 state.mode <- Textentry (te, leave m_prev_mode);
4204 )) :: m_l
4206 method string name get set =
4207 m_l <-
4208 (name, `string get, 1, Action (
4209 fun u ->
4210 let ondone s = set s in
4211 let te = name ^ ": ", "", None, textentry, ondone, true in
4212 state.mode <- Textentry (te, leave m_prev_mode);
4214 )) :: m_l
4216 method colorspace name get set =
4217 m_l <-
4218 (name, `string get, 1, Action (
4219 fun _ ->
4220 let source =
4221 let vals = [| "rgb"; "bgr"; "gray" |] in
4222 (object
4223 inherit lvsourcebase
4225 initializer
4226 m_active <- int_of_colorspace conf.colorspace;
4227 m_first <- 0;
4229 method getitemcount = Array.length vals
4230 method getitem n = (vals.(n), 0)
4231 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4232 ignore (uioh, first, pan, qsearch);
4233 if not cancel then set active;
4234 None
4235 method hasaction _ = true
4236 end)
4238 state.text <- "";
4239 let modehash = findkeyhash conf "info" in
4240 coe (new listview ~source ~trusted:true ~modehash)
4241 )) :: m_l
4243 method fitmodel name get set =
4244 m_l <-
4245 (name, `string get, 1, Action (
4246 fun _ ->
4247 let source =
4248 let vals = [| "fit width"; "proportional"; "fit page" |] in
4249 (object
4250 inherit lvsourcebase
4252 initializer
4253 m_active <- int_of_fitmodel conf.fitmodel;
4254 m_first <- 0;
4256 method getitemcount = Array.length vals
4257 method getitem n = (vals.(n), 0)
4258 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4259 ignore (uioh, first, pan, qsearch);
4260 if not cancel then set active;
4261 None
4262 method hasaction _ = true
4263 end)
4265 state.text <- "";
4266 let modehash = findkeyhash conf "info" in
4267 coe (new listview ~source ~trusted:true ~modehash)
4268 )) :: m_l
4270 method caption s offset =
4271 m_l <- (s, `empty, offset, Noaction) :: m_l
4273 method caption2 s f offset =
4274 m_l <- (s, `string f, offset, Noaction) :: m_l
4276 method getitemcount = Array.length m_a
4278 method getitem n =
4279 let tostr = function
4280 | `int f -> string_of_int (f ())
4281 | `intws f -> string_with_suffix_of_int (f ())
4282 | `string f -> f ()
4283 | `color f -> color_to_string (f ())
4284 | `bool (btos, f) -> btos (f ())
4285 | `empty -> ""
4287 let name, t, offset, _ = m_a.(n) in
4288 ((let s = tostr t in
4289 if String.length s > 0
4290 then Printf.sprintf "%s\t%s" name s
4291 else name),
4292 offset)
4294 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4295 let uiohopt =
4296 if not cancel
4297 then (
4298 m_qsearch <- qsearch;
4299 let uioh =
4300 match m_a.(active) with
4301 | _, _, _, Action f -> f uioh
4302 | _ -> uioh
4304 Some uioh
4306 else None
4308 m_active <- active;
4309 m_first <- first;
4310 m_pan <- pan;
4311 uiohopt
4313 method hasaction n =
4314 match m_a.(n) with
4315 | _, _, _, Action _ -> true
4316 | _ -> false
4317 end)
4319 let rec fillsrc prevmode prevuioh =
4320 let sep () = src#caption "" 0 in
4321 let colorp name get set =
4322 src#string name
4323 (fun () -> color_to_string (get ()))
4324 (fun v ->
4326 let c = color_of_string v in
4327 set c
4328 with exn ->
4329 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4332 let oldmode = state.mode in
4333 let birdseye = isbirdseye state.mode in
4335 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4337 src#bool "presentation mode"
4338 (fun () -> conf.presentation)
4339 (fun v -> setpresentationmode v);
4341 src#bool "ignore case in searches"
4342 (fun () -> conf.icase)
4343 (fun v -> conf.icase <- v);
4345 src#bool "preload"
4346 (fun () -> conf.preload)
4347 (fun v -> conf.preload <- v);
4349 src#bool "highlight links"
4350 (fun () -> conf.hlinks)
4351 (fun v -> conf.hlinks <- v);
4353 src#bool "under info"
4354 (fun () -> conf.underinfo)
4355 (fun v -> conf.underinfo <- v);
4357 src#bool "persistent bookmarks"
4358 (fun () -> conf.savebmarks)
4359 (fun v -> conf.savebmarks <- v);
4361 src#fitmodel "fit model"
4362 (fun () -> fitmodel_to_string conf.fitmodel)
4363 (fun v ->
4364 reqlayout conf.angle (fitmodel_of_int v);
4365 fillsrc prevmode prevuioh;
4368 src#bool "trim margins"
4369 (fun () -> conf.trimmargins)
4370 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4372 src#bool "persistent location"
4373 (fun () -> conf.jumpback)
4374 (fun v -> conf.jumpback <- v);
4376 sep ();
4377 src#int "inter-page space"
4378 (fun () -> conf.interpagespace)
4379 (fun n ->
4380 conf.interpagespace <- n;
4381 docolumns conf.columns;
4382 let pageno, py =
4383 match state.layout with
4384 | [] -> 0, 0
4385 | l :: _ ->
4386 l.pageno, l.pagey
4388 state.maxy <- calcheight ();
4389 let y = getpagey pageno in
4390 gotoy (y + py)
4393 src#int "page bias"
4394 (fun () -> conf.pagebias)
4395 (fun v -> conf.pagebias <- v);
4397 src#int "scroll step"
4398 (fun () -> conf.scrollstep)
4399 (fun n -> conf.scrollstep <- n);
4401 src#int "horizontal scroll step"
4402 (fun () -> conf.hscrollstep)
4403 (fun v -> conf.hscrollstep <- v);
4405 src#int "auto scroll step"
4406 (fun () ->
4407 match state.autoscroll with
4408 | Some step -> step
4409 | _ -> conf.autoscrollstep)
4410 (fun n ->
4411 if state.autoscroll <> None
4412 then state.autoscroll <- Some n;
4413 conf.autoscrollstep <- n);
4415 if conf.fitmodel != FitPage
4416 then
4417 src#int "zoom"
4418 (fun () -> truncate (conf.zoom *. 100.))
4419 (fun v -> setzoom ((float v) /. 100.));
4421 src#int "rotation"
4422 (fun () -> conf.angle)
4423 (fun v -> reqlayout v conf.fitmodel);
4425 src#int "scroll bar width"
4426 (fun () -> state.scrollw)
4427 (fun v ->
4428 state.scrollw <- v;
4429 conf.scrollbw <- v;
4430 reshape state.winw state.winh;
4433 src#int "scroll handle height"
4434 (fun () -> conf.scrollh)
4435 (fun v -> conf.scrollh <- v;);
4437 src#int "thumbnail width"
4438 (fun () -> conf.thumbw)
4439 (fun v ->
4440 conf.thumbw <- min 4096 v;
4441 match oldmode with
4442 | Birdseye beye ->
4443 leavebirdseye beye false;
4444 enterbirdseye ()
4445 | _ -> ()
4448 let mode = state.mode in
4449 src#string "columns"
4450 (fun () ->
4451 match conf.columns with
4452 | Csingle _ -> "1"
4453 | Cmulti (multi, _) -> multicolumns_to_string multi
4454 | Csplit (count, _) -> "-" ^ string_of_int count
4456 (fun v ->
4457 let n, a, b = multicolumns_of_string v in
4458 setcolumns mode n a b);
4460 sep ();
4461 src#caption "Presentation mode" 0;
4462 src#bool "scrollbar visible"
4463 (fun () -> conf.scrollbarinpm)
4464 (fun v ->
4465 if v != conf.scrollbarinpm
4466 then (
4467 conf.scrollbarinpm <- v;
4468 if conf.presentation
4469 then (
4470 state.scrollw <- if v then conf.scrollbw else 0;
4471 reshape state.winw state.winh;
4476 sep ();
4477 src#caption "Pixmap cache" 0;
4478 src#int_with_suffix "size (advisory)"
4479 (fun () -> conf.memlimit)
4480 (fun v -> conf.memlimit <- v);
4482 src#caption2 "used"
4483 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4484 (string_with_suffix_of_int state.memused)
4485 (Hashtbl.length state.tilemap)) 1;
4487 sep ();
4488 src#caption "Layout" 0;
4489 src#caption2 "Dimension"
4490 (fun () ->
4491 Printf.sprintf "%dx%d (virtual %dx%d)"
4492 state.winw state.winh
4493 state.w state.maxy)
4495 if conf.debug
4496 then
4497 src#caption2 "Position" (fun () ->
4498 Printf.sprintf "%dx%d" state.x state.y
4500 else
4501 src#caption2 "Position" (fun () -> describe_location ()) 1
4504 sep ();
4505 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4506 "Save these parameters as global defaults at exit"
4507 (fun () -> conf.bedefault)
4508 (fun v -> conf.bedefault <- v)
4511 sep ();
4512 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4513 src#bool ~offset:0 ~btos "Extended parameters"
4514 (fun () -> !showextended)
4515 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4516 if !showextended
4517 then (
4518 src#bool "checkers"
4519 (fun () -> conf.checkers)
4520 (fun v -> conf.checkers <- v; setcheckers v);
4521 src#bool "update cursor"
4522 (fun () -> conf.updatecurs)
4523 (fun v -> conf.updatecurs <- v);
4524 src#bool "verbose"
4525 (fun () -> conf.verbose)
4526 (fun v -> conf.verbose <- v);
4527 src#bool "invert colors"
4528 (fun () -> conf.invert)
4529 (fun v -> conf.invert <- v);
4530 src#bool "max fit"
4531 (fun () -> conf.maxhfit)
4532 (fun v -> conf.maxhfit <- v);
4533 src#bool "redirect stderr"
4534 (fun () -> conf.redirectstderr)
4535 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4536 src#string "uri launcher"
4537 (fun () -> conf.urilauncher)
4538 (fun v -> conf.urilauncher <- v);
4539 src#string "path launcher"
4540 (fun () -> conf.pathlauncher)
4541 (fun v -> conf.pathlauncher <- v);
4542 src#string "tile size"
4543 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4544 (fun v ->
4546 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4547 conf.tilew <- max 64 w;
4548 conf.tileh <- max 64 h;
4549 flushtiles ();
4550 with exn ->
4551 state.text <- Printf.sprintf "bad tile size `%s': %s"
4552 v (exntos exn)
4554 src#int "texture count"
4555 (fun () -> conf.texcount)
4556 (fun v ->
4557 if realloctexts v
4558 then conf.texcount <- v
4559 else showtext '!' " Failed to set texture count please retry later"
4561 src#int "slice height"
4562 (fun () -> conf.sliceheight)
4563 (fun v ->
4564 conf.sliceheight <- v;
4565 wcmd "sliceh %d" conf.sliceheight;
4567 src#int "anti-aliasing level"
4568 (fun () -> conf.aalevel)
4569 (fun v ->
4570 conf.aalevel <- bound v 0 8;
4571 state.anchor <- getanchor ();
4572 opendoc state.path state.password;
4574 src#string "page scroll scaling factor"
4575 (fun () -> string_of_float conf.pgscale)
4576 (fun v ->
4578 let s = float_of_string v in
4579 conf.pgscale <- s
4580 with exn ->
4581 state.text <- Printf.sprintf
4582 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4585 src#int "ui font size"
4586 (fun () -> fstate.fontsize)
4587 (fun v -> setfontsize (bound v 5 100));
4588 src#int "hint font size"
4589 (fun () -> conf.hfsize)
4590 (fun v -> conf.hfsize <- bound v 5 100);
4591 colorp "background color"
4592 (fun () -> conf.bgcolor)
4593 (fun v -> conf.bgcolor <- v);
4594 src#bool "crop hack"
4595 (fun () -> conf.crophack)
4596 (fun v -> conf.crophack <- v);
4597 src#string "trim fuzz"
4598 (fun () -> irect_to_string conf.trimfuzz)
4599 (fun v ->
4601 conf.trimfuzz <- irect_of_string v;
4602 if conf.trimmargins
4603 then settrim true conf.trimfuzz;
4604 with exn ->
4605 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4607 src#string "throttle"
4608 (fun () ->
4609 match conf.maxwait with
4610 | None -> "show place holder if page is not ready"
4611 | Some time ->
4612 if time = infinity
4613 then "wait for page to fully render"
4614 else
4615 "wait " ^ string_of_float time
4616 ^ " seconds before showing placeholder"
4618 (fun v ->
4620 let f = float_of_string v in
4621 if f <= 0.0
4622 then conf.maxwait <- None
4623 else conf.maxwait <- Some f
4624 with exn ->
4625 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4627 src#string "ghyll scroll"
4628 (fun () ->
4629 match conf.ghyllscroll with
4630 | None -> ""
4631 | Some nab -> ghyllscroll_to_string nab
4633 (fun v ->
4635 let gs =
4636 if String.length v = 0
4637 then None
4638 else Some (ghyllscroll_of_string v)
4640 conf.ghyllscroll <- gs
4641 with exn ->
4642 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4644 src#string "selection command"
4645 (fun () -> conf.selcmd)
4646 (fun v -> conf.selcmd <- v);
4647 src#string "synctex command"
4648 (fun () -> conf.stcmd)
4649 (fun v -> conf.stcmd <- v);
4650 src#colorspace "color space"
4651 (fun () -> colorspace_to_string conf.colorspace)
4652 (fun v ->
4653 conf.colorspace <- colorspace_of_int v;
4654 wcmd "cs %d" v;
4655 load state.layout;
4657 if pbousable ()
4658 then
4659 src#bool "use PBO"
4660 (fun () -> conf.usepbo)
4661 (fun v -> conf.usepbo <- v);
4662 src#bool "mouse wheel scrolls pages"
4663 (fun () -> conf.wheelbypage)
4664 (fun v -> conf.wheelbypage <- v);
4667 sep ();
4668 src#caption "Document" 0;
4669 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4670 src#caption2 "Pages"
4671 (fun () -> string_of_int state.pagecount) 1;
4672 src#caption2 "Dimensions"
4673 (fun () -> string_of_int (List.length state.pdims)) 1;
4674 if conf.trimmargins
4675 then (
4676 sep ();
4677 src#caption "Trimmed margins" 0;
4678 src#caption2 "Dimensions"
4679 (fun () -> string_of_int (List.length state.pdims)) 1;
4682 sep ();
4683 src#caption "OpenGL" 0;
4684 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4685 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4686 src#reset prevmode prevuioh;
4688 fun () ->
4689 state.text <- "";
4690 let prevmode = state.mode
4691 and prevuioh = state.uioh in
4692 fillsrc prevmode prevuioh;
4693 let source = (src :> lvsource) in
4694 let modehash = findkeyhash conf "info" in
4695 state.uioh <- coe (object (self)
4696 inherit listview ~source ~trusted:true ~modehash as super
4697 val mutable m_prevmemused = 0
4698 method infochanged = function
4699 | Memused ->
4700 if m_prevmemused != state.memused
4701 then (
4702 m_prevmemused <- state.memused;
4703 G.postRedisplay "memusedchanged";
4705 | Pdim -> G.postRedisplay "pdimchanged"
4706 | Docinfo -> fillsrc prevmode prevuioh
4708 method key key mask =
4709 if not (Wsi.withctrl mask)
4710 then
4711 match key with
4712 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4713 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4714 | _ -> super#key key mask
4715 else super#key key mask
4716 end);
4717 G.postRedisplay "info";
4720 let enterhelpmode =
4721 let source =
4722 (object
4723 inherit lvsourcebase
4724 method getitemcount = Array.length state.help
4725 method getitem n =
4726 let s, l, _ = state.help.(n) in
4727 (s, l)
4729 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4730 let optuioh =
4731 if not cancel
4732 then (
4733 m_qsearch <- qsearch;
4734 match state.help.(active) with
4735 | _, _, Action f -> Some (f uioh)
4736 | _ -> Some (uioh)
4738 else None
4740 m_active <- active;
4741 m_first <- first;
4742 m_pan <- pan;
4743 optuioh
4745 method hasaction n =
4746 match state.help.(n) with
4747 | _, _, Action _ -> true
4748 | _ -> false
4750 initializer
4751 m_active <- -1
4752 end)
4753 in fun () ->
4754 let modehash = findkeyhash conf "help" in
4755 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4756 G.postRedisplay "help";
4759 let entermsgsmode =
4760 let msgsource =
4761 let re = Str.regexp "[\r\n]" in
4762 (object
4763 inherit lvsourcebase
4764 val mutable m_items = [||]
4766 method getitemcount = 1 + Array.length m_items
4768 method getitem n =
4769 if n = 0
4770 then "[Clear]", 0
4771 else m_items.(n-1), 0
4773 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4774 ignore uioh;
4775 if not cancel
4776 then (
4777 if active = 0
4778 then Buffer.clear state.errmsgs;
4779 m_qsearch <- qsearch;
4781 m_active <- active;
4782 m_first <- first;
4783 m_pan <- pan;
4784 None
4786 method hasaction n =
4787 n = 0
4789 method reset =
4790 state.newerrmsgs <- false;
4791 let l = Str.split re (Buffer.contents state.errmsgs) in
4792 m_items <- Array.of_list l
4794 initializer
4795 m_active <- 0
4796 end)
4797 in fun () ->
4798 state.text <- "";
4799 msgsource#reset;
4800 let source = (msgsource :> lvsource) in
4801 let modehash = findkeyhash conf "listview" in
4802 state.uioh <- coe (object
4803 inherit listview ~source ~trusted:false ~modehash as super
4804 method display =
4805 if state.newerrmsgs
4806 then msgsource#reset;
4807 super#display
4808 end);
4809 G.postRedisplay "msgs";
4812 let quickbookmark ?title () =
4813 match state.layout with
4814 | [] -> ()
4815 | l :: _ ->
4816 let title =
4817 match title with
4818 | None ->
4819 let sec = Unix.gettimeofday () in
4820 let tm = Unix.localtime sec in
4821 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4822 (l.pageno+1)
4823 tm.Unix.tm_mday
4824 tm.Unix.tm_mon
4825 (tm.Unix.tm_year + 1900)
4826 tm.Unix.tm_hour
4827 tm.Unix.tm_min
4828 | Some title -> title
4830 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4833 let setautoscrollspeed step goingdown =
4834 let incr = max 1 ((abs step) / 2) in
4835 let incr = if goingdown then incr else -incr in
4836 let astep = step + incr in
4837 state.autoscroll <- Some astep;
4840 let gotounder = function
4841 | Ulinkgoto (pageno, top) ->
4842 if pageno >= 0
4843 then (
4844 addnav ();
4845 gotopage1 pageno top;
4848 | Ulinkuri s ->
4849 gotouri s
4851 | Uremote (filename, pageno) ->
4852 let path =
4853 if Sys.file_exists filename
4854 then filename
4855 else
4856 let dir = Filename.dirname state.path in
4857 let path = Filename.concat dir filename in
4858 if Sys.file_exists path
4859 then path
4860 else ""
4862 if String.length path > 0
4863 then (
4864 let anchor = getanchor () in
4865 let ranchor = state.path, state.password, anchor in
4866 state.anchor <- (pageno, 0.0, 0.0);
4867 state.ranchors <- ranchor :: state.ranchors;
4868 opendoc path "";
4870 else showtext '!' ("Could not find " ^ filename)
4872 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4875 let canpan () =
4876 match conf.columns with
4877 | Csplit _ -> true
4878 | _ -> state.x != 0 || conf.zoom > 1.0
4881 let existsinrow pageno (columns, coverA, coverB) p =
4882 let last = ((pageno - coverA) mod columns) + columns in
4883 let rec any = function
4884 | [] -> false
4885 | l :: rest ->
4886 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4887 then p l
4888 else (
4889 if not (p l)
4890 then (if l.pageno = last then false else any rest)
4891 else true
4894 any state.layout
4897 let nextpage () =
4898 match state.layout with
4899 | [] ->
4900 let pageno = page_of_y state.y in
4901 gotoghyll (getpagey (pageno+1))
4902 | l :: rest ->
4903 match conf.columns with
4904 | Csingle _ ->
4905 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4906 then
4907 let y = clamp (pgscale state.winh) in
4908 gotoghyll y
4909 else
4910 let pageno = min (l.pageno+1) (state.pagecount-1) in
4911 gotoghyll (getpagey pageno)
4912 | Cmulti ((c, _, _) as cl, _) ->
4913 if conf.presentation
4914 && (existsinrow l.pageno cl
4915 (fun l -> l.pageh > l.pagey + l.pagevh))
4916 then
4917 let y = clamp (pgscale state.winh) in
4918 gotoghyll y
4919 else
4920 let pageno = min (l.pageno+c) (state.pagecount-1) in
4921 gotoghyll (getpagey pageno)
4922 | Csplit (n, _) ->
4923 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4924 then
4925 let pagey, pageh = getpageyh l.pageno in
4926 let pagey = pagey + pageh * l.pagecol in
4927 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4928 gotoghyll (pagey + pageh + ips)
4931 let prevpage () =
4932 match state.layout with
4933 | [] ->
4934 let pageno = page_of_y state.y in
4935 gotoghyll (getpagey (pageno-1))
4936 | l :: _ ->
4937 match conf.columns with
4938 | Csingle _ ->
4939 if conf.presentation && l.pagey != 0
4940 then
4941 gotoghyll (clamp (pgscale ~-(state.winh)))
4942 else
4943 let pageno = max 0 (l.pageno-1) in
4944 gotoghyll (getpagey pageno)
4945 | Cmulti ((c, _, coverB) as cl, _) ->
4946 if conf.presentation &&
4947 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4948 then
4949 gotoghyll (clamp (pgscale ~-(state.winh)))
4950 else
4951 let decr =
4952 if l.pageno = state.pagecount - coverB
4953 then 1
4954 else c
4956 let pageno = max 0 (l.pageno-decr) in
4957 gotoghyll (getpagey pageno)
4958 | Csplit (n, _) ->
4959 let y =
4960 if l.pagecol = 0
4961 then
4962 if l.pageno = 0
4963 then l.pagey
4964 else
4965 let pageno = max 0 (l.pageno-1) in
4966 let pagey, pageh = getpageyh pageno in
4967 pagey + (n-1)*pageh
4968 else
4969 let pagey, pageh = getpageyh l.pageno in
4970 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4972 gotoghyll y
4975 let viewkeyboard key mask =
4976 let enttext te =
4977 let mode = state.mode in
4978 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4979 state.text <- "";
4980 enttext ();
4981 G.postRedisplay "view:enttext"
4983 let ctrl = Wsi.withctrl mask in
4984 let key =
4985 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4987 match key with
4988 | 81 -> (* Q *)
4989 exit 0
4991 | 0xff63 -> (* insert *)
4992 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4993 then (
4994 state.mode <- LinkNav (Ltgendir 0);
4995 gotoy state.y;
4997 else showtext '!' "Keyboard link navigation does not work under rotation"
4999 | 0xff1b | 113 -> (* escape / q *)
5000 begin match state.mstate with
5001 | Mzoomrect _ ->
5002 state.mstate <- Mnone;
5003 Wsi.setcursor Wsi.CURSOR_INHERIT;
5004 G.postRedisplay "kill zoom rect";
5005 | _ ->
5006 begin match state.mode with
5007 | LinkNav _ ->
5008 state.mode <- View;
5009 G.postRedisplay "esc leave linknav"
5010 | _ ->
5011 match state.ranchors with
5012 | [] -> raise Quit
5013 | (path, password, anchor) :: rest ->
5014 state.ranchors <- rest;
5015 state.anchor <- anchor;
5016 opendoc path password
5017 end;
5018 end;
5020 | 0xff08 -> (* backspace *)
5021 gotoghyll (getnav ~-1)
5023 | 111 -> (* o *)
5024 enteroutlinemode ()
5026 | 117 -> (* u *)
5027 state.rects <- [];
5028 state.text <- "";
5029 G.postRedisplay "dehighlight";
5031 | 47 | 63 -> (* / ? *)
5032 let ondone isforw s =
5033 cbput state.hists.pat s;
5034 state.searchpattern <- s;
5035 search s isforw
5037 let s = String.create 1 in
5038 s.[0] <- Char.chr key;
5039 enttext (s, "", Some (onhist state.hists.pat),
5040 textentry, ondone (key = 47), true)
5042 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5043 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5044 setzoom (conf.zoom +. incr)
5046 | 43 | 0xffab -> (* + *)
5047 let ondone s =
5048 let n =
5049 try int_of_string s with exc ->
5050 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5051 max_int
5053 if n != max_int
5054 then (
5055 conf.pagebias <- n;
5056 state.text <- "page bias is now " ^ string_of_int n;
5059 enttext ("page bias: ", "", None, intentry, ondone, true)
5061 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5062 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5063 setzoom (max 0.01 (conf.zoom -. decr))
5065 | 45 | 0xffad -> (* - *)
5066 let ondone msg = state.text <- msg in
5067 enttext (
5068 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
5069 optentry state.mode, ondone, true
5072 | 48 when ctrl -> (* ctrl-0 *)
5073 if conf.zoom = 1.0
5074 then (
5075 state.x <- 0;
5076 state.hscrollh <-
5077 if state.w <= state.winw - state.scrollw
5078 then 0
5079 else state.scrollw
5081 gotoy state.y
5083 else setzoom 1.0
5085 | 49 | 50 when ctrl -> (* ctrl-1/2 *)
5086 let cols =
5087 match conf.columns with
5088 | Csingle _ | Cmulti _ -> 1
5089 | Csplit (n, _) -> n
5091 let h = state.winh -
5092 conf.interpagespace lsl (if conf.presentation then 1 else 0)
5094 let zoom = zoomforh state.winw h state.scrollw cols in
5095 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5096 then setzoom zoom
5098 | 51 when ctrl -> (* ctrl-3 *)
5099 let fm =
5100 match conf.fitmodel with
5101 | FitWidth -> FitProportional
5102 | FitProportional -> FitPage
5103 | FitPage -> FitWidth
5105 state.text <- "fit model " ^ fitmodel_to_string fm;
5106 reqlayout conf.angle fm
5108 | 0xffc6 -> (* f9 *)
5109 togglebirdseye ()
5111 | 57 when ctrl -> (* ctrl-9 *)
5112 togglebirdseye ()
5114 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5115 when not ctrl -> (* 0..9 *)
5116 let ondone s =
5117 let n =
5118 try int_of_string s with exc ->
5119 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5122 if n >= 0
5123 then (
5124 addnav ();
5125 cbput state.hists.pag (string_of_int n);
5126 gotopage1 (n + conf.pagebias - 1) 0;
5129 let pageentry text key =
5130 match Char.unsafe_chr key with
5131 | 'g' -> TEdone text
5132 | _ -> intentry text key
5134 let text = "x" in text.[0] <- Char.chr key;
5135 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5137 | 98 -> (* b *)
5138 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
5139 reshape state.winw state.winh;
5141 | 108 -> (* l *)
5142 conf.hlinks <- not conf.hlinks;
5143 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5144 G.postRedisplay "toggle highlightlinks";
5146 | 70 -> (* F *)
5147 state.glinks <- true;
5148 let mode = state.mode in
5149 state.mode <- Textentry (
5150 (":", "", None, linknentry, linkndone gotounder, false),
5151 (fun _ ->
5152 state.glinks <- false;
5153 state.mode <- mode)
5155 state.text <- "";
5156 G.postRedisplay "view:linkent(F)"
5158 | 121 -> (* y *)
5159 state.glinks <- true;
5160 let mode = state.mode in
5161 state.mode <- Textentry (
5162 (":", "", None, linknentry, linkndone (fun under ->
5163 match Ne.pipe () with
5164 | Ne.Exn exn ->
5165 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
5166 | Ne.Res (r, w) ->
5167 let popened =
5168 try popen conf.selcmd [r, 0; w, -1]; true
5169 with exn ->
5170 showtext '!'
5171 (Printf.sprintf "failed to execute %s: %s"
5172 conf.selcmd (exntos exn));
5173 false
5175 let clo cap fd =
5176 Ne.clo fd (fun msg ->
5177 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
5180 let s = undertext under in
5181 if popened
5182 then
5183 (try
5184 let l = String.length s in
5185 let n = tempfailureretry (Unix.write w s 0) l in
5186 if n != l
5187 then
5188 showtext '!'
5189 (Printf.sprintf
5190 "failed to write %d characters to sel pipe, wrote %d"
5193 with exn ->
5194 showtext '!'
5195 (Printf.sprintf "failed to write to sel pipe: %s"
5196 (exntos exn)
5199 else dolog "%s" s;
5200 clo "pipe/r" r;
5201 clo "pipe/w" w;
5202 ), false
5204 fun _ ->
5205 state.glinks <- false;
5206 state.mode <- mode
5208 state.text <- "";
5209 G.postRedisplay "view:linkent"
5211 | 97 -> (* a *)
5212 begin match state.autoscroll with
5213 | Some step ->
5214 conf.autoscrollstep <- step;
5215 state.autoscroll <- None
5216 | None ->
5217 if conf.autoscrollstep = 0
5218 then state.autoscroll <- Some 1
5219 else state.autoscroll <- Some conf.autoscrollstep
5222 | 112 when ctrl -> (* ctrl-p *)
5223 launchpath ()
5225 | 80 -> (* P *)
5226 setpresentationmode (not conf.presentation);
5227 showtext ' ' ("presentation mode " ^
5228 if conf.presentation then "on" else "off");
5230 | 102 -> (* f *)
5231 if List.mem Wsi.Fullscreen state.winstate
5232 then Wsi.reshape conf.cwinw conf.cwinh
5233 else Wsi.fullscreen ()
5235 | 112 | 78 -> (* p|N *)
5236 search state.searchpattern false
5238 | 110 | 0xffc0 -> (* n|F3 *)
5239 search state.searchpattern true
5241 | 116 -> (* t *)
5242 begin match state.layout with
5243 | [] -> ()
5244 | l :: _ ->
5245 gotoghyll (getpagey l.pageno)
5248 | 32 -> (* space *)
5249 nextpage ()
5251 | 0xff9f | 0xffff -> (* delete *)
5252 prevpage ()
5254 | 61 -> (* = *)
5255 showtext ' ' (describe_location ());
5257 | 119 -> (* w *)
5258 begin match state.layout with
5259 | [] -> ()
5260 | l :: _ ->
5261 Wsi.reshape (l.pagew + state.scrollw) l.pageh;
5262 G.postRedisplay "w"
5265 | 39 -> (* ' *)
5266 enterbookmarkmode ()
5268 | 104 | 0xffbe -> (* h|F1 *)
5269 enterhelpmode ()
5271 | 105 -> (* i *)
5272 enterinfomode ()
5274 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5275 entermsgsmode ()
5277 | 109 -> (* m *)
5278 let ondone s =
5279 match state.layout with
5280 | l :: _ ->
5281 if String.length s > 0
5282 then
5283 state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5284 | _ -> ()
5286 enttext ("bookmark: ", "", None, textentry, ondone, true)
5288 | 126 -> (* ~ *)
5289 quickbookmark ();
5290 showtext ' ' "Quick bookmark added";
5292 | 122 -> (* z *)
5293 begin match state.layout with
5294 | l :: _ ->
5295 let rect = getpdimrect l.pagedimno in
5296 let w, h =
5297 if conf.crophack
5298 then
5299 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5300 truncate (1.2 *. (rect.(3) -. rect.(0))))
5301 else
5302 (truncate (rect.(1) -. rect.(0)),
5303 truncate (rect.(3) -. rect.(0)))
5305 let w = truncate ((float w)*.conf.zoom)
5306 and h = truncate ((float h)*.conf.zoom) in
5307 if w != 0 && h != 0
5308 then (
5309 state.anchor <- getanchor ();
5310 Wsi.reshape (w + state.scrollw) (h + conf.interpagespace)
5312 G.postRedisplay "z";
5314 | [] -> ()
5317 | 60 | 62 -> (* < > *)
5318 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
5320 | 91 | 93 -> (* [ ] *)
5321 conf.colorscale <-
5322 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5324 G.postRedisplay "brightness";
5326 | 99 when state.mode = View -> (* c *)
5327 let (c, a, b), z =
5328 match state.prevcolumns with
5329 | None -> (1, 0, 0), 1.0
5330 | Some (columns, z) ->
5331 let cab =
5332 match columns with
5333 | Csplit (c, _) -> -c, 0, 0
5334 | Cmulti ((c, a, b), _) -> c, a, b
5335 | Csingle _ -> 1, 0, 0
5337 cab, z
5339 setcolumns View c a b;
5340 setzoom z;
5342 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5343 setzoom state.prevzoom
5345 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5346 begin match state.autoscroll with
5347 | None ->
5348 begin match state.mode with
5349 | Birdseye beye -> upbirdseye 1 beye
5350 | _ ->
5351 if ctrl
5352 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5353 else (
5354 if not (Wsi.withshift mask) && conf.presentation
5355 then prevpage ()
5356 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5359 | Some n ->
5360 setautoscrollspeed n false
5363 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5364 begin match state.autoscroll with
5365 | None ->
5366 begin match state.mode with
5367 | Birdseye beye -> downbirdseye 1 beye
5368 | _ ->
5369 if ctrl
5370 then gotoy_and_clear_text (clamp (state.winh/2))
5371 else (
5372 if not (Wsi.withshift mask) && conf.presentation
5373 then nextpage ()
5374 else gotoy_and_clear_text (clamp conf.scrollstep)
5377 | Some n ->
5378 setautoscrollspeed n true
5381 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5382 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5383 if canpan ()
5384 then
5385 let dx =
5386 if ctrl
5387 then state.winw / 2
5388 else conf.hscrollstep
5390 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5391 state.x <- state.x + dx;
5392 gotoy_and_clear_text state.y
5393 else (
5394 state.text <- "";
5395 G.postRedisplay "lef/right"
5398 | 0xff55 | 0xff9a -> (* (kp) prior *)
5399 let y =
5400 if ctrl
5401 then
5402 match state.layout with
5403 | [] -> state.y
5404 | l :: _ -> state.y - l.pagey
5405 else
5406 clamp (pgscale (-state.winh))
5408 gotoghyll y
5410 | 0xff56 | 0xff9b -> (* (kp) next *)
5411 let y =
5412 if ctrl
5413 then
5414 match List.rev state.layout with
5415 | [] -> state.y
5416 | l :: _ -> getpagey l.pageno
5417 else
5418 clamp (pgscale state.winh)
5420 gotoghyll y
5422 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5423 gotoghyll 0
5424 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5425 gotoghyll (clamp state.maxy)
5427 | 0xff53 | 0xff98
5428 when Wsi.withalt mask -> (* alt-(kp) right *)
5429 gotoghyll (getnav 1)
5430 | 0xff51 | 0xff96
5431 when Wsi.withalt mask -> (* alt-(kp) left *)
5432 gotoghyll (getnav ~-1)
5434 | 114 -> (* r *)
5435 reload ()
5437 | 118 when conf.debug -> (* v *)
5438 state.rects <- [];
5439 List.iter (fun l ->
5440 match getopaque l.pageno with
5441 | None -> ()
5442 | Some opaque ->
5443 let x0, y0, x1, y1 = pagebbox opaque in
5444 let a,b = float x0, float y0 in
5445 let c,d = float x1, float y0 in
5446 let e,f = float x1, float y1 in
5447 let h,j = float x0, float y1 in
5448 let rect = (a,b,c,d,e,f,h,j) in
5449 debugrect rect;
5450 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5451 ) state.layout;
5452 G.postRedisplay "v";
5454 | _ ->
5455 vlog "huh? %s" (Wsi.keyname key)
5458 let linknavkeyboard key mask linknav =
5459 let getpage pageno =
5460 let rec loop = function
5461 | [] -> None
5462 | l :: _ when l.pageno = pageno -> Some l
5463 | _ :: rest -> loop rest
5464 in loop state.layout
5466 let doexact (pageno, n) =
5467 match getopaque pageno, getpage pageno with
5468 | Some opaque, Some l ->
5469 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5470 then
5471 let under = getlink opaque n in
5472 G.postRedisplay "link gotounder";
5473 gotounder under;
5474 state.mode <- View;
5475 else
5476 let opt, dir =
5477 match key with
5478 | 0xff50 -> (* home *)
5479 Some (findlink opaque LDfirst), -1
5481 | 0xff57 -> (* end *)
5482 Some (findlink opaque LDlast), 1
5484 | 0xff51 -> (* left *)
5485 Some (findlink opaque (LDleft n)), -1
5487 | 0xff53 -> (* right *)
5488 Some (findlink opaque (LDright n)), 1
5490 | 0xff52 -> (* up *)
5491 Some (findlink opaque (LDup n)), -1
5493 | 0xff54 -> (* down *)
5494 Some (findlink opaque (LDdown n)), 1
5496 | _ -> None, 0
5498 let pwl l dir =
5499 begin match findpwl l.pageno dir with
5500 | Pwlnotfound -> ()
5501 | Pwl pageno ->
5502 let notfound dir =
5503 state.mode <- LinkNav (Ltgendir dir);
5504 let y, h = getpageyh pageno in
5505 let y =
5506 if dir < 0
5507 then y + h - state.winh
5508 else y
5510 gotoy y
5512 begin match getopaque pageno, getpage pageno with
5513 | Some opaque, Some _ ->
5514 let link =
5515 let ld = if dir > 0 then LDfirst else LDlast in
5516 findlink opaque ld
5518 begin match link with
5519 | Lfound m ->
5520 showlinktype (getlink opaque m);
5521 state.mode <- LinkNav (Ltexact (pageno, m));
5522 G.postRedisplay "linknav jpage";
5523 | _ -> notfound dir
5524 end;
5525 | _ -> notfound dir
5526 end;
5527 end;
5529 begin match opt with
5530 | Some Lnotfound -> pwl l dir;
5531 | Some (Lfound m) ->
5532 if m = n
5533 then pwl l dir
5534 else (
5535 let _, y0, _, y1 = getlinkrect opaque m in
5536 if y0 < l.pagey
5537 then gotopage1 l.pageno y0
5538 else (
5539 let d = fstate.fontsize + 1 in
5540 if y1 - l.pagey > l.pagevh - d
5541 then gotopage1 l.pageno (y1 - state.winh - state.hscrollh + d)
5542 else G.postRedisplay "linknav";
5544 showlinktype (getlink opaque m);
5545 state.mode <- LinkNav (Ltexact (l.pageno, m));
5548 | None -> viewkeyboard key mask
5549 end;
5550 | _ -> viewkeyboard key mask
5552 if key = 0xff63
5553 then (
5554 state.mode <- View;
5555 G.postRedisplay "leave linknav"
5557 else
5558 match linknav with
5559 | Ltgendir _ -> viewkeyboard key mask
5560 | Ltexact exact -> doexact exact
5563 let keyboard key mask =
5564 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5565 then wcmd "interrupt"
5566 else state.uioh <- state.uioh#key key mask
5569 let birdseyekeyboard key mask
5570 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5571 let incr =
5572 match conf.columns with
5573 | Csingle _ -> 1
5574 | Cmulti ((c, _, _), _) -> c
5575 | Csplit _ -> failwith "bird's eye split mode"
5577 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5578 match key with
5579 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5580 let y, h = getpageyh pageno in
5581 let top = (state.winh - h) / 2 in
5582 gotoy (max 0 (y - top))
5583 | 0xff0d (* enter *)
5584 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5585 | 0xff1b -> leavebirdseye beye true (* escape *)
5586 | 0xff52 -> upbirdseye incr beye (* up *)
5587 | 0xff54 -> downbirdseye incr beye (* down *)
5588 | 0xff51 -> upbirdseye 1 beye (* left *)
5589 | 0xff53 -> downbirdseye 1 beye (* right *)
5591 | 0xff55 -> (* prior *)
5592 begin match state.layout with
5593 | l :: _ ->
5594 if l.pagey != 0
5595 then (
5596 state.mode <- Birdseye (
5597 oconf, leftx, l.pageno, hooverpageno, anchor
5599 gotopage1 l.pageno 0;
5601 else (
5602 let layout = layout (state.y-state.winh) (pgh state.layout) in
5603 match layout with
5604 | [] -> gotoy (clamp (-state.winh))
5605 | l :: _ ->
5606 state.mode <- Birdseye (
5607 oconf, leftx, l.pageno, hooverpageno, anchor
5609 gotopage1 l.pageno 0
5612 | [] -> gotoy (clamp (-state.winh))
5613 end;
5615 | 0xff56 -> (* next *)
5616 begin match List.rev state.layout with
5617 | l :: _ ->
5618 let layout = layout (state.y + (pgh state.layout)) state.winh in
5619 begin match layout with
5620 | [] ->
5621 let incr = l.pageh - l.pagevh in
5622 if incr = 0
5623 then (
5624 state.mode <-
5625 Birdseye (
5626 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5628 G.postRedisplay "birdseye pagedown";
5630 else gotoy (clamp (incr + conf.interpagespace*2));
5632 | l :: _ ->
5633 state.mode <-
5634 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5635 gotopage1 l.pageno 0;
5638 | [] -> gotoy (clamp state.winh)
5639 end;
5641 | 0xff50 -> (* home *)
5642 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5643 gotopage1 0 0
5645 | 0xff57 -> (* end *)
5646 let pageno = state.pagecount - 1 in
5647 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5648 if not (pagevisible state.layout pageno)
5649 then
5650 let h =
5651 match List.rev state.pdims with
5652 | [] -> state.winh
5653 | (_, _, h, _) :: _ -> h
5655 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5656 else G.postRedisplay "birdseye end";
5657 | _ -> viewkeyboard key mask
5660 let drawpage l linkindexbase =
5661 let color =
5662 match state.mode with
5663 | Textentry _ -> scalecolor 0.4
5664 | LinkNav _
5665 | View -> scalecolor 1.0
5666 | Birdseye (_, _, pageno, hooverpageno, _) ->
5667 if l.pageno = hooverpageno
5668 then scalecolor 0.9
5669 else (
5670 if l.pageno = pageno
5671 then scalecolor 1.0
5672 else scalecolor 0.8
5675 drawtiles l color;
5676 begin match getopaque l.pageno with
5677 | Some opaque ->
5678 if tileready l l.pagex l.pagey
5679 then
5680 let x = l.pagedispx - l.pagex
5681 and y = l.pagedispy - l.pagey in
5682 let hlmask =
5683 match conf.columns with
5684 | Csingle _ | Cmulti _ ->
5685 (if conf.hlinks then 1 else 0)
5686 + (if state.glinks
5687 && not (isbirdseye state.mode) then 2 else 0)
5688 | _ -> 0
5690 let s =
5691 match state.mode with
5692 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5693 | _ -> ""
5695 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5696 else 0
5698 | _ -> 0
5699 end;
5702 let scrollindicator () =
5703 let sbw, ph, sh = state.uioh#scrollph in
5704 let sbh, pw, sw = state.uioh#scrollpw in
5706 GlDraw.color (0.64, 0.64, 0.64);
5707 GlDraw.rect
5708 (float (state.winw - sbw), 0.)
5709 (float state.winw, float state.winh)
5711 GlDraw.rect
5712 (0., float (state.winh - sbh))
5713 (float (state.winw - state.scrollw - 1), float state.winh)
5715 GlDraw.color (0.0, 0.0, 0.0);
5717 GlDraw.rect
5718 (float (state.winw - sbw), ph)
5719 (float state.winw, ph +. sh)
5721 GlDraw.rect
5722 (pw, float (state.winh - sbh))
5723 (pw +. sw, float state.winh)
5727 let showsel () =
5728 match state.mstate with
5729 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5732 | Msel ((x0, y0), (x1, y1)) ->
5733 let rec loop = function
5734 | l :: ls ->
5735 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5736 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5737 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5738 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5739 then
5740 match getopaque l.pageno with
5741 | Some opaque ->
5742 let x0, y0 = pagetranslatepoint l x0 y0 in
5743 let x1, y1 = pagetranslatepoint l x1 y1 in
5744 seltext opaque (x0, y0, x1, y1);
5745 | _ -> ()
5746 else loop ls
5747 | [] -> ()
5749 loop state.layout
5752 let showrects rects =
5753 Gl.enable `blend;
5754 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5755 GlDraw.polygon_mode `both `fill;
5756 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5757 List.iter
5758 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5759 List.iter (fun l ->
5760 if l.pageno = pageno
5761 then (
5762 let dx = float (l.pagedispx - l.pagex) in
5763 let dy = float (l.pagedispy - l.pagey) in
5764 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5765 GlDraw.begins `quads;
5767 GlDraw.vertex2 (x0+.dx, y0+.dy);
5768 GlDraw.vertex2 (x1+.dx, y1+.dy);
5769 GlDraw.vertex2 (x2+.dx, y2+.dy);
5770 GlDraw.vertex2 (x3+.dx, y3+.dy);
5772 GlDraw.ends ();
5774 ) state.layout
5775 ) rects
5777 Gl.disable `blend;
5780 let display () =
5781 GlClear.color (scalecolor2 conf.bgcolor);
5782 GlClear.clear [`color];
5783 let rec loop linkindexbase = function
5784 | l :: rest ->
5785 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5786 loop linkindexbase rest
5787 | [] -> ()
5789 loop 0 state.layout;
5790 let rects =
5791 match state.mode with
5792 | LinkNav (Ltexact (pageno, linkno)) ->
5793 begin match getopaque pageno with
5794 | Some opaque ->
5795 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5796 (pageno, 5, (
5797 float x0, float y0,
5798 float x1, float y0,
5799 float x1, float y1,
5800 float x0, float y1)
5801 ) :: state.rects
5802 | None -> state.rects
5804 | _ -> state.rects
5806 showrects rects;
5807 showsel ();
5808 state.uioh#display;
5809 begin match state.mstate with
5810 | Mzoomrect ((x0, y0), (x1, y1)) ->
5811 Gl.enable `blend;
5812 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5813 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5814 GlDraw.rect (float x0, float y0)
5815 (float x1, float y1);
5816 Gl.disable `blend;
5817 | _ -> ()
5818 end;
5819 enttext ();
5820 scrollindicator ();
5821 Wsi.swapb ();
5824 let zoomrect x y x1 y1 =
5825 let x0 = min x x1
5826 and x1 = max x x1
5827 and y0 = min y y1 in
5828 gotoy (state.y + y0);
5829 state.anchor <- getanchor ();
5830 let zoom = (float state.winw *. conf.zoom) /. float (x1 - x0) in
5831 let margin =
5832 if state.w < state.winw - state.scrollw
5833 then (state.winw - state.scrollw - state.w) / 2
5834 else 0
5836 state.x <- (state.x + margin) - x0;
5837 setzoom zoom;
5838 Wsi.setcursor Wsi.CURSOR_INHERIT;
5839 state.mstate <- Mnone;
5842 let scrollx x =
5843 let winw = state.winw - state.scrollw - 1 in
5844 let s = float x /. float winw in
5845 let destx = truncate (float (state.w + winw) *. s) in
5846 state.x <- winw - destx;
5847 gotoy_and_clear_text state.y;
5848 state.mstate <- Mscrollx;
5851 let scrolly y =
5852 let s = float y /. float state.winh in
5853 let desty = truncate (float (state.maxy - state.winh) *. s) in
5854 gotoy_and_clear_text desty;
5855 state.mstate <- Mscrolly;
5858 let viewmouse button down x y mask =
5859 match button with
5860 | n when (n == 4 || n == 5) && not down ->
5861 if Wsi.withctrl mask
5862 then (
5863 match state.mstate with
5864 | Mzoom (oldn, i) ->
5865 if oldn = n
5866 then (
5867 if i = 2
5868 then
5869 let incr =
5870 match n with
5871 | 5 ->
5872 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5873 | _ ->
5874 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5876 let zoom = conf.zoom -. incr in
5877 setzoom zoom;
5878 state.mstate <- Mzoom (n, 0);
5879 else
5880 state.mstate <- Mzoom (n, i+1);
5882 else state.mstate <- Mzoom (n, 0)
5884 | _ -> state.mstate <- Mzoom (n, 0)
5886 else (
5887 match state.autoscroll with
5888 | Some step -> setautoscrollspeed step (n=4)
5889 | None ->
5890 if conf.wheelbypage || conf.presentation
5891 then (
5892 if n = 4
5893 then prevpage ()
5894 else nextpage ()
5896 else
5897 let incr =
5898 if n = 4
5899 then -conf.scrollstep
5900 else conf.scrollstep
5902 let incr = incr * 2 in
5903 let y = clamp incr in
5904 gotoy_and_clear_text y
5907 | n when (n = 6 || n = 7) && not down && canpan () ->
5908 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5909 gotoy_and_clear_text state.y
5911 | 1 when Wsi.withshift mask ->
5912 state.mstate <- Mnone;
5913 if not down
5914 then (
5915 match unproject x y with
5916 | Some (pageno, ux, uy) ->
5917 let cmd = Printf.sprintf
5918 "%s %s %d %d %d"
5919 conf.stcmd state.path pageno ux uy
5921 popen cmd []
5922 | None -> ()
5925 | 1 when Wsi.withctrl mask ->
5926 if down
5927 then (
5928 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5929 state.mstate <- Mpan (x, y)
5931 else
5932 state.mstate <- Mnone
5934 | 3 ->
5935 if down
5936 then (
5937 Wsi.setcursor Wsi.CURSOR_CYCLE;
5938 let p = (x, y) in
5939 state.mstate <- Mzoomrect (p, p)
5941 else (
5942 match state.mstate with
5943 | Mzoomrect ((x0, y0), _) ->
5944 if abs (x-x0) > 10 && abs (y - y0) > 10
5945 then zoomrect x0 y0 x y
5946 else (
5947 state.mstate <- Mnone;
5948 Wsi.setcursor Wsi.CURSOR_INHERIT;
5949 G.postRedisplay "kill accidental zoom rect";
5951 | _ ->
5952 Wsi.setcursor Wsi.CURSOR_INHERIT;
5953 state.mstate <- Mnone
5956 | 1 when x > state.winw - state.scrollw ->
5957 if down
5958 then
5959 let _, position, sh = state.uioh#scrollph in
5960 if y > truncate position && y < truncate (position +. sh)
5961 then state.mstate <- Mscrolly
5962 else scrolly y
5963 else
5964 state.mstate <- Mnone
5966 | 1 when y > state.winh - state.hscrollh ->
5967 if down
5968 then
5969 let _, position, sw = state.uioh#scrollpw in
5970 if x > truncate position && x < truncate (position +. sw)
5971 then state.mstate <- Mscrollx
5972 else scrollx x
5973 else
5974 state.mstate <- Mnone
5976 | 1 ->
5977 let dest = if down then getunder x y else Unone in
5978 begin match dest with
5979 | Ulinkgoto _
5980 | Ulinkuri _
5981 | Uremote _
5982 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5983 gotounder dest
5985 | Unone when down ->
5986 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5987 state.mstate <- Mpan (x, y);
5989 | Unone | Utext _ ->
5990 if down
5991 then (
5992 if conf.angle mod 360 = 0
5993 then (
5994 state.mstate <- Msel ((x, y), (x, y));
5995 G.postRedisplay "mouse select";
5998 else (
5999 match state.mstate with
6000 | Mnone -> ()
6002 | Mzoom _ | Mscrollx | Mscrolly ->
6003 state.mstate <- Mnone
6005 | Mzoomrect ((x0, y0), _) ->
6006 zoomrect x0 y0 x y
6008 | Mpan _ ->
6009 Wsi.setcursor Wsi.CURSOR_INHERIT;
6010 state.mstate <- Mnone
6012 | Msel ((x0, y0), (x1, y1)) ->
6013 let rec loop = function
6014 | [] -> ()
6015 | l :: rest ->
6016 let inside =
6017 let a0 = l.pagedispy in
6018 let a1 = a0 + l.pagevh in
6019 let b0 = l.pagedispx in
6020 let b1 = b0 + l.pagevw in
6021 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6022 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6024 if inside
6025 then
6026 match getopaque l.pageno with
6027 | Some opaque ->
6028 begin
6029 match Ne.pipe () with
6030 | Ne.Exn exn ->
6031 showtext '!'
6032 (Printf.sprintf
6033 "can not create sel pipe: %s"
6034 (exntos exn));
6035 | Ne.Res (r, w) ->
6036 let doclose what fd =
6037 Ne.clo fd (fun msg ->
6038 dolog "%s close failed: %s" what msg)
6041 popen conf.selcmd [r, 0; w, -1];
6042 copysel w opaque;
6043 doclose "pipe/r" r;
6044 G.postRedisplay "copysel";
6045 with exn ->
6046 dolog "can not execute %S: %s"
6047 conf.selcmd (exntos exn);
6048 doclose "pipe/r" r;
6049 doclose "pipe/w" w;
6051 | None -> ()
6052 else loop rest
6054 loop state.layout;
6055 Wsi.setcursor Wsi.CURSOR_INHERIT;
6056 state.mstate <- Mnone;
6060 | _ -> ()
6063 let birdseyemouse button down x y mask
6064 (conf, leftx, _, hooverpageno, anchor) =
6065 match button with
6066 | 1 when down ->
6067 let rec loop = function
6068 | [] -> ()
6069 | l :: rest ->
6070 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6071 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6072 then (
6073 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
6075 else loop rest
6077 loop state.layout
6078 | 3 -> ()
6079 | _ -> viewmouse button down x y mask
6082 let mouse button down x y mask =
6083 state.uioh <- state.uioh#button button down x y mask;
6086 let motion ~x ~y =
6087 state.uioh <- state.uioh#motion x y
6090 let pmotion ~x ~y =
6091 state.uioh <- state.uioh#pmotion x y;
6094 let uioh = object
6095 method display = ()
6097 method key key mask =
6098 begin match state.mode with
6099 | Textentry textentry -> textentrykeyboard key mask textentry
6100 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
6101 | View -> viewkeyboard key mask
6102 | LinkNav linknav -> linknavkeyboard key mask linknav
6103 end;
6104 state.uioh
6106 method button button bstate x y mask =
6107 begin match state.mode with
6108 | LinkNav _
6109 | View -> viewmouse button bstate x y mask
6110 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6111 | Textentry _ -> ()
6112 end;
6113 state.uioh
6115 method motion x y =
6116 begin match state.mode with
6117 | Textentry _ -> ()
6118 | View | Birdseye _ | LinkNav _ ->
6119 match state.mstate with
6120 | Mzoom _ | Mnone -> ()
6122 | Mpan (x0, y0) ->
6123 let dx = x - x0
6124 and dy = y0 - y in
6125 state.mstate <- Mpan (x, y);
6126 if canpan ()
6127 then state.x <- state.x + dx;
6128 let y = clamp dy in
6129 gotoy_and_clear_text y
6131 | Msel (a, _) ->
6132 state.mstate <- Msel (a, (x, y));
6133 G.postRedisplay "motion select";
6135 | Mscrolly ->
6136 let y = min state.winh (max 0 y) in
6137 scrolly y
6139 | Mscrollx ->
6140 let x = min state.winw (max 0 x) in
6141 scrollx x
6143 | Mzoomrect (p0, _) ->
6144 state.mstate <- Mzoomrect (p0, (x, y));
6145 G.postRedisplay "motion zoomrect";
6146 end;
6147 state.uioh
6149 method pmotion x y =
6150 begin match state.mode with
6151 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6152 let rec loop = function
6153 | [] ->
6154 if hooverpageno != -1
6155 then (
6156 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6157 G.postRedisplay "pmotion birdseye no hoover";
6159 | l :: rest ->
6160 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6161 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6162 then (
6163 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6164 G.postRedisplay "pmotion birdseye hoover";
6166 else loop rest
6168 loop state.layout
6170 | Textentry _ -> ()
6172 | LinkNav _
6173 | View ->
6174 match state.mstate with
6175 | Mnone -> updateunder x y
6176 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6178 end;
6179 state.uioh
6181 method infochanged _ = ()
6183 method scrollph =
6184 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6185 let p, h = scrollph state.y maxy in
6186 state.scrollw, p, h
6188 method scrollpw =
6189 let winw = state.winw - state.scrollw - 1 in
6190 let fwinw = float winw in
6191 let sw =
6192 let sw = fwinw /. float state.w in
6193 let sw = fwinw *. sw in
6194 max sw (float conf.scrollh)
6196 let position, sw =
6197 let f = state.w+winw in
6198 let r = float (winw-state.x) /. float f in
6199 let p = fwinw *. r in
6200 p-.sw/.2., sw
6202 let sw =
6203 if position +. sw > fwinw
6204 then fwinw -. position
6205 else sw
6207 state.hscrollh, position, sw
6209 method modehash =
6210 let modename =
6211 match state.mode with
6212 | LinkNav _ -> "links"
6213 | Textentry _ -> "textentry"
6214 | Birdseye _ -> "birdseye"
6215 | View -> "view"
6217 findkeyhash conf modename
6219 method eformsgs = true
6220 end;;
6222 module Config =
6223 struct
6224 open Parser
6226 let fontpath = ref "";;
6228 module KeyMap =
6229 Map.Make (struct type t = (int * int) let compare = compare end);;
6231 let unent s =
6232 let l = String.length s in
6233 let b = Buffer.create l in
6234 unent b s 0 l;
6235 Buffer.contents b;
6238 let home =
6239 try Sys.getenv "HOME"
6240 with exn ->
6241 prerr_endline
6242 ("Can not determine home directory location: " ^ exntos exn);
6246 let modifier_of_string = function
6247 | "alt" -> Wsi.altmask
6248 | "shift" -> Wsi.shiftmask
6249 | "ctrl" | "control" -> Wsi.ctrlmask
6250 | "meta" -> Wsi.metamask
6251 | _ -> 0
6254 let key_of_string =
6255 let r = Str.regexp "-" in
6256 fun s ->
6257 let elems = Str.full_split r s in
6258 let f n k m =
6259 let g s =
6260 let m1 = modifier_of_string s in
6261 if m1 = 0
6262 then (Wsi.namekey s, m)
6263 else (k, m lor m1)
6264 in function
6265 | Str.Delim s when n land 1 = 0 -> g s
6266 | Str.Text s -> g s
6267 | Str.Delim _ -> (k, m)
6269 let rec loop n k m = function
6270 | [] -> (k, m)
6271 | x :: xs ->
6272 let k, m = f n k m x in
6273 loop (n+1) k m xs
6275 loop 0 0 0 elems
6278 let keys_of_string =
6279 let r = Str.regexp "[ \t]" in
6280 fun s ->
6281 let elems = Str.split r s in
6282 List.map key_of_string elems
6285 let copykeyhashes c =
6286 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6289 let config_of c attrs =
6290 let apply c k v =
6292 match k with
6293 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6294 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6295 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6296 | "preload" -> { c with preload = bool_of_string v }
6297 | "page-bias" -> { c with pagebias = int_of_string v }
6298 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6299 | "horizontal-scroll-step" ->
6300 { c with hscrollstep = max (int_of_string v) 1 }
6301 | "auto-scroll-step" ->
6302 { c with autoscrollstep = max 0 (int_of_string v) }
6303 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6304 | "crop-hack" -> { c with crophack = bool_of_string v }
6305 | "throttle" ->
6306 let mw =
6307 match String.lowercase v with
6308 | "true" -> Some infinity
6309 | "false" -> None
6310 | f -> Some (float_of_string f)
6312 { c with maxwait = mw}
6313 | "highlight-links" -> { c with hlinks = bool_of_string v }
6314 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6315 | "vertical-margin" ->
6316 { c with interpagespace = max 0 (int_of_string v) }
6317 | "zoom" ->
6318 let zoom = float_of_string v /. 100. in
6319 let zoom = max zoom 0.0 in
6320 { c with zoom = zoom }
6321 | "presentation" -> { c with presentation = bool_of_string v }
6322 | "rotation-angle" -> { c with angle = int_of_string v }
6323 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6324 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6325 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6326 | "proportional-display" ->
6327 let fm =
6328 if bool_of_string v
6329 then FitProportional
6330 else FitWidth
6332 { c with fitmodel = fm }
6333 | "fit-model" -> { c with fitmodel = fitmodel_of_string v }
6334 | "pixmap-cache-size" ->
6335 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6336 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6337 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6338 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6339 | "persistent-location" -> { c with jumpback = bool_of_string v }
6340 | "background-color" -> { c with bgcolor = color_of_string v }
6341 | "scrollbar-in-presentation" ->
6342 { c with scrollbarinpm = bool_of_string v }
6343 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6344 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6345 | "mupdf-store-size" ->
6346 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6347 | "checkers" -> { c with checkers = bool_of_string v }
6348 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6349 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6350 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6351 | "uri-launcher" -> { c with urilauncher = unent v }
6352 | "path-launcher" -> { c with pathlauncher = unent v }
6353 | "color-space" -> { c with colorspace = colorspace_of_string v }
6354 | "invert-colors" -> { c with invert = bool_of_string v }
6355 | "brightness" -> { c with colorscale = float_of_string v }
6356 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6357 | "ghyllscroll" ->
6358 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6359 | "columns" ->
6360 let (n, _, _) as nab = multicolumns_of_string v in
6361 if n < 0
6362 then { c with columns = Csplit (-n, [||]) }
6363 else { c with columns = Cmulti (nab, [||]) }
6364 | "birds-eye-columns" ->
6365 { c with beyecolumns = Some (max (int_of_string v) 2) }
6366 | "selection-command" -> { c with selcmd = unent v }
6367 | "synctex-command" -> { c with stcmd = unent v }
6368 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6369 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6370 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6371 | "use-pbo" -> { c with usepbo = bool_of_string v }
6372 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6373 | _ -> c
6374 with exn ->
6375 prerr_endline ("Error processing attribute (`" ^
6376 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6379 let rec fold c = function
6380 | [] -> c
6381 | (k, v) :: rest ->
6382 let c = apply c k v in
6383 fold c rest
6385 fold { c with keyhashes = copykeyhashes c } attrs;
6388 let fromstring f pos n v d =
6389 try f v
6390 with exn ->
6391 dolog "Error processing attribute (%S=%S) at %d\n%s"
6392 n v pos (exntos exn)
6397 let bookmark_of attrs =
6398 let rec fold title page rely visy = function
6399 | ("title", v) :: rest -> fold v page rely visy rest
6400 | ("page", v) :: rest -> fold title v rely visy rest
6401 | ("rely", v) :: rest -> fold title page v visy rest
6402 | ("visy", v) :: rest -> fold title page rely v rest
6403 | _ :: rest -> fold title page rely visy rest
6404 | [] -> title, page, rely, visy
6406 fold "invalid" "0" "0" "0" attrs
6409 let doc_of attrs =
6410 let rec fold path page rely pan visy = function
6411 | ("path", v) :: rest -> fold v page rely pan visy rest
6412 | ("page", v) :: rest -> fold path v rely pan visy rest
6413 | ("rely", v) :: rest -> fold path page v pan visy rest
6414 | ("pan", v) :: rest -> fold path page rely v visy rest
6415 | ("visy", v) :: rest -> fold path page rely pan v rest
6416 | _ :: rest -> fold path page rely pan visy rest
6417 | [] -> path, page, rely, pan, visy
6419 fold "" "0" "0" "0" "0" attrs
6422 let map_of attrs =
6423 let rec fold rs ls = function
6424 | ("out", v) :: rest -> fold v ls rest
6425 | ("in", v) :: rest -> fold rs v rest
6426 | _ :: rest -> fold ls rs rest
6427 | [] -> ls, rs
6429 fold "" "" attrs
6432 let setconf dst src =
6433 dst.scrollbw <- src.scrollbw;
6434 dst.scrollh <- src.scrollh;
6435 dst.icase <- src.icase;
6436 dst.preload <- src.preload;
6437 dst.pagebias <- src.pagebias;
6438 dst.verbose <- src.verbose;
6439 dst.scrollstep <- src.scrollstep;
6440 dst.maxhfit <- src.maxhfit;
6441 dst.crophack <- src.crophack;
6442 dst.autoscrollstep <- src.autoscrollstep;
6443 dst.maxwait <- src.maxwait;
6444 dst.hlinks <- src.hlinks;
6445 dst.underinfo <- src.underinfo;
6446 dst.interpagespace <- src.interpagespace;
6447 dst.zoom <- src.zoom;
6448 dst.presentation <- src.presentation;
6449 dst.angle <- src.angle;
6450 dst.cwinw <- src.cwinw;
6451 dst.cwinh <- src.cwinh;
6452 dst.savebmarks <- src.savebmarks;
6453 dst.memlimit <- src.memlimit;
6454 dst.fitmodel <- src.fitmodel;
6455 dst.texcount <- src.texcount;
6456 dst.sliceheight <- src.sliceheight;
6457 dst.thumbw <- src.thumbw;
6458 dst.jumpback <- src.jumpback;
6459 dst.bgcolor <- src.bgcolor;
6460 dst.scrollbarinpm <- src.scrollbarinpm;
6461 dst.tilew <- src.tilew;
6462 dst.tileh <- src.tileh;
6463 dst.mustoresize <- src.mustoresize;
6464 dst.checkers <- src.checkers;
6465 dst.aalevel <- src.aalevel;
6466 dst.trimmargins <- src.trimmargins;
6467 dst.trimfuzz <- src.trimfuzz;
6468 dst.urilauncher <- src.urilauncher;
6469 dst.colorspace <- src.colorspace;
6470 dst.invert <- src.invert;
6471 dst.colorscale <- src.colorscale;
6472 dst.redirectstderr <- src.redirectstderr;
6473 dst.ghyllscroll <- src.ghyllscroll;
6474 dst.columns <- src.columns;
6475 dst.beyecolumns <- src.beyecolumns;
6476 dst.selcmd <- src.selcmd;
6477 dst.updatecurs <- src.updatecurs;
6478 dst.pathlauncher <- src.pathlauncher;
6479 dst.keyhashes <- copykeyhashes src;
6480 dst.hfsize <- src.hfsize;
6481 dst.hscrollstep <- src.hscrollstep;
6482 dst.pgscale <- src.pgscale;
6483 dst.usepbo <- src.usepbo;
6484 dst.wheelbypage <- src.wheelbypage;
6485 dst.stcmd <- src.stcmd;
6488 let get s =
6489 let h = Hashtbl.create 10 in
6490 let dc = { defconf with angle = defconf.angle } in
6491 let rec toplevel v t spos _ =
6492 match t with
6493 | Vdata | Vcdata | Vend -> v
6494 | Vopen ("llppconfig", _, closed) ->
6495 if closed
6496 then v
6497 else { v with f = llppconfig }
6498 | Vopen _ ->
6499 error "unexpected subelement at top level" s spos
6500 | Vclose _ -> error "unexpected close at top level" s spos
6502 and llppconfig v t spos _ =
6503 match t with
6504 | Vdata | Vcdata -> v
6505 | Vend -> error "unexpected end of input in llppconfig" s spos
6506 | Vopen ("defaults", attrs, closed) ->
6507 let c = config_of dc attrs in
6508 setconf dc c;
6509 if closed
6510 then v
6511 else { v with f = defaults }
6513 | Vopen ("ui-font", attrs, closed) ->
6514 let rec getsize size = function
6515 | [] -> size
6516 | ("size", v) :: rest ->
6517 let size =
6518 fromstring int_of_string spos "size" v fstate.fontsize in
6519 getsize size rest
6520 | l -> getsize size l
6522 fstate.fontsize <- getsize fstate.fontsize attrs;
6523 if closed
6524 then v
6525 else { v with f = uifont (Buffer.create 10) }
6527 | Vopen ("doc", attrs, closed) ->
6528 let pathent, spage, srely, span, svisy = doc_of attrs in
6529 let path = unent pathent
6530 and pageno = fromstring int_of_string spos "page" spage 0
6531 and rely = fromstring float_of_string spos "rely" srely 0.0
6532 and pan = fromstring int_of_string spos "pan" span 0
6533 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6534 let c = config_of dc attrs in
6535 let anchor = (pageno, rely, visy) in
6536 if closed
6537 then (Hashtbl.add h path (c, [], pan, anchor); v)
6538 else { v with f = doc path pan anchor c [] }
6540 | Vopen _ ->
6541 error "unexpected subelement in llppconfig" s spos
6543 | Vclose "llppconfig" -> { v with f = toplevel }
6544 | Vclose _ -> error "unexpected close in llppconfig" s spos
6546 and defaults v t spos _ =
6547 match t with
6548 | Vdata | Vcdata -> v
6549 | Vend -> error "unexpected end of input in defaults" s spos
6550 | Vopen ("keymap", attrs, closed) ->
6551 let modename =
6552 try List.assoc "mode" attrs
6553 with Not_found -> "global" in
6554 if closed
6555 then v
6556 else
6557 let ret keymap =
6558 let h = findkeyhash dc modename in
6559 KeyMap.iter (Hashtbl.replace h) keymap;
6560 defaults
6562 { v with f = pkeymap ret KeyMap.empty }
6564 | Vopen (_, _, _) ->
6565 error "unexpected subelement in defaults" s spos
6567 | Vclose "defaults" ->
6568 { v with f = llppconfig }
6570 | Vclose _ -> error "unexpected close in defaults" s spos
6572 and uifont b v t spos epos =
6573 match t with
6574 | Vdata | Vcdata ->
6575 Buffer.add_substring b s spos (epos - spos);
6577 | Vopen (_, _, _) ->
6578 error "unexpected subelement in ui-font" s spos
6579 | Vclose "ui-font" ->
6580 if String.length !fontpath = 0
6581 then fontpath := Buffer.contents b;
6582 { v with f = llppconfig }
6583 | Vclose _ -> error "unexpected close in ui-font" s spos
6584 | Vend -> error "unexpected end of input in ui-font" s spos
6586 and doc path pan anchor c bookmarks v t spos _ =
6587 match t with
6588 | Vdata | Vcdata -> v
6589 | Vend -> error "unexpected end of input in doc" s spos
6590 | Vopen ("bookmarks", _, closed) ->
6591 if closed
6592 then v
6593 else { v with f = pbookmarks path pan anchor c bookmarks }
6595 | Vopen ("keymap", attrs, closed) ->
6596 let modename =
6597 try List.assoc "mode" attrs
6598 with Not_found -> "global"
6600 if closed
6601 then v
6602 else
6603 let ret keymap =
6604 let h = findkeyhash c modename in
6605 KeyMap.iter (Hashtbl.replace h) keymap;
6606 doc path pan anchor c bookmarks
6608 { v with f = pkeymap ret KeyMap.empty }
6610 | Vopen (_, _, _) ->
6611 error "unexpected subelement in doc" s spos
6613 | Vclose "doc" ->
6614 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6615 { v with f = llppconfig }
6617 | Vclose _ -> error "unexpected close in doc" s spos
6619 and pkeymap ret keymap v t spos _ =
6620 match t with
6621 | Vdata | Vcdata -> v
6622 | Vend -> error "unexpected end of input in keymap" s spos
6623 | Vopen ("map", attrs, closed) ->
6624 let r, l = map_of attrs in
6625 let kss = fromstring keys_of_string spos "in" r [] in
6626 let lss = fromstring keys_of_string spos "out" l [] in
6627 let keymap =
6628 match kss with
6629 | [] -> keymap
6630 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6631 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6633 if closed
6634 then { v with f = pkeymap ret keymap }
6635 else
6636 let f () = v in
6637 { v with f = skip "map" f }
6639 | Vopen _ ->
6640 error "unexpected subelement in keymap" s spos
6642 | Vclose "keymap" ->
6643 { v with f = ret keymap }
6645 | Vclose _ -> error "unexpected close in keymap" s spos
6647 and pbookmarks path pan anchor c bookmarks v t spos _ =
6648 match t with
6649 | Vdata | Vcdata -> v
6650 | Vend -> error "unexpected end of input in bookmarks" s spos
6651 | Vopen ("item", attrs, closed) ->
6652 let titleent, spage, srely, svisy = bookmark_of attrs in
6653 let page = fromstring int_of_string spos "page" spage 0
6654 and rely = fromstring float_of_string spos "rely" srely 0.0
6655 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6656 let bookmarks =
6657 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6659 if closed
6660 then { v with f = pbookmarks path pan anchor c bookmarks }
6661 else
6662 let f () = v in
6663 { v with f = skip "item" f }
6665 | Vopen _ ->
6666 error "unexpected subelement in bookmarks" s spos
6668 | Vclose "bookmarks" ->
6669 { v with f = doc path pan anchor c bookmarks }
6671 | Vclose _ -> error "unexpected close in bookmarks" s spos
6673 and skip tag f v t spos _ =
6674 match t with
6675 | Vdata | Vcdata -> v
6676 | Vend ->
6677 error ("unexpected end of input in skipped " ^ tag) s spos
6678 | Vopen (tag', _, closed) ->
6679 if closed
6680 then v
6681 else
6682 let f' () = { v with f = skip tag f } in
6683 { v with f = skip tag' f' }
6684 | Vclose ctag ->
6685 if tag = ctag
6686 then f ()
6687 else error ("unexpected close in skipped " ^ tag) s spos
6690 parse { f = toplevel; accu = () } s;
6691 h, dc;
6694 let do_load f ic =
6696 let len = in_channel_length ic in
6697 let s = String.create len in
6698 really_input ic s 0 len;
6699 f s;
6700 with
6701 | Parse_error (msg, s, pos) ->
6702 let subs = subs s pos in
6703 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6704 failwith ("parse error: " ^ s)
6706 | exn ->
6707 failwith ("config load error: " ^ exntos exn)
6710 let defconfpath =
6711 let dir =
6713 let dir = Filename.concat home ".config" in
6714 if Sys.is_directory dir then dir else home
6715 with _ -> home
6717 Filename.concat dir "llpp.conf"
6720 let confpath = ref defconfpath;;
6722 let load1 f =
6723 if Sys.file_exists !confpath
6724 then
6725 match
6726 (try Some (open_in_bin !confpath)
6727 with exn ->
6728 prerr_endline
6729 ("Error opening configuration file `" ^ !confpath ^ "': " ^
6730 exntos exn);
6731 None
6733 with
6734 | Some ic ->
6735 let success =
6737 f (do_load get ic)
6738 with exn ->
6739 prerr_endline
6740 ("Error loading configuration from `" ^ !confpath ^ "': " ^
6741 exntos exn);
6742 false
6744 close_in ic;
6745 success
6747 | None -> false
6748 else
6749 f (Hashtbl.create 0, defconf)
6752 let load () =
6753 let f (h, dc) =
6754 let pc, pb, px, pa =
6756 Hashtbl.find h (Filename.basename state.path)
6757 with Not_found -> dc, [], 0, emptyanchor
6759 setconf defconf dc;
6760 setconf conf pc;
6761 state.bookmarks <- pb;
6762 state.x <- px;
6763 state.scrollw <- conf.scrollbw;
6764 if conf.jumpback
6765 then state.anchor <- pa;
6766 cbput state.hists.nav pa;
6767 true
6769 load1 f
6772 let add_attrs bb always dc c =
6773 let ob s a b =
6774 if always || a != b
6775 then Printf.bprintf bb "\n %s='%b'" s a
6776 and oi s a b =
6777 if always || a != b
6778 then Printf.bprintf bb "\n %s='%d'" s a
6779 and oI s a b =
6780 if always || a != b
6781 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6782 and oz s a b =
6783 if always || a <> b
6784 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6785 and oF s a b =
6786 if always || a <> b
6787 then Printf.bprintf bb "\n %s='%f'" s a
6788 and oc s a b =
6789 if always || a <> b
6790 then
6791 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6792 and oC s a b =
6793 if always || a <> b
6794 then
6795 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6796 and oR s a b =
6797 if always || a <> b
6798 then
6799 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6800 and os s a b =
6801 if always || a <> b
6802 then
6803 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6804 and og s a b =
6805 if always || a <> b
6806 then
6807 match a with
6808 | None -> ()
6809 | Some (_N, _A, _B) ->
6810 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6811 and oW s a b =
6812 if always || a <> b
6813 then
6814 let v =
6815 match a with
6816 | None -> "false"
6817 | Some f ->
6818 if f = infinity
6819 then "true"
6820 else string_of_float f
6822 Printf.bprintf bb "\n %s='%s'" s v
6823 and oco s a b =
6824 if always || a <> b
6825 then
6826 match a with
6827 | Cmulti ((n, a, b), _) when n > 1 ->
6828 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6829 | Csplit (n, _) when n > 1 ->
6830 Printf.bprintf bb "\n %s='%d'" s ~-n
6831 | _ -> ()
6832 and obeco s a b =
6833 if always || a <> b
6834 then
6835 match a with
6836 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6837 | _ -> ()
6838 and oFm s a b =
6839 if always || a <> b
6840 then
6841 Printf.bprintf bb "\n %s='%s'" s (fitmodel_to_string a)
6843 oi "width" c.cwinw dc.cwinw;
6844 oi "height" c.cwinh dc.cwinh;
6845 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6846 oi "scroll-handle-height" c.scrollh dc.scrollh;
6847 ob "case-insensitive-search" c.icase dc.icase;
6848 ob "preload" c.preload dc.preload;
6849 oi "page-bias" c.pagebias dc.pagebias;
6850 oi "scroll-step" c.scrollstep dc.scrollstep;
6851 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6852 ob "max-height-fit" c.maxhfit dc.maxhfit;
6853 ob "crop-hack" c.crophack dc.crophack;
6854 oW "throttle" c.maxwait dc.maxwait;
6855 ob "highlight-links" c.hlinks dc.hlinks;
6856 ob "under-cursor-info" c.underinfo dc.underinfo;
6857 oi "vertical-margin" c.interpagespace dc.interpagespace;
6858 oz "zoom" c.zoom dc.zoom;
6859 ob "presentation" c.presentation dc.presentation;
6860 oi "rotation-angle" c.angle dc.angle;
6861 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6862 oFm "fit-model" c.fitmodel dc.fitmodel;
6863 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6864 oi "tex-count" c.texcount dc.texcount;
6865 oi "slice-height" c.sliceheight dc.sliceheight;
6866 oi "thumbnail-width" c.thumbw dc.thumbw;
6867 ob "persistent-location" c.jumpback dc.jumpback;
6868 oc "background-color" c.bgcolor dc.bgcolor;
6869 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6870 oi "tile-width" c.tilew dc.tilew;
6871 oi "tile-height" c.tileh dc.tileh;
6872 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6873 ob "checkers" c.checkers dc.checkers;
6874 oi "aalevel" c.aalevel dc.aalevel;
6875 ob "trim-margins" c.trimmargins dc.trimmargins;
6876 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6877 os "uri-launcher" c.urilauncher dc.urilauncher;
6878 os "path-launcher" c.pathlauncher dc.pathlauncher;
6879 oC "color-space" c.colorspace dc.colorspace;
6880 ob "invert-colors" c.invert dc.invert;
6881 oF "brightness" c.colorscale dc.colorscale;
6882 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6883 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6884 oco "columns" c.columns dc.columns;
6885 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6886 os "selection-command" c.selcmd dc.selcmd;
6887 os "synctex-command" c.stcmd dc.stcmd;
6888 ob "update-cursor" c.updatecurs dc.updatecurs;
6889 oi "hint-font-size" c.hfsize dc.hfsize;
6890 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6891 oF "page-scroll-scale" c.pgscale dc.pgscale;
6892 ob "use-pbo" c.usepbo dc.usepbo;
6893 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
6896 let keymapsbuf always dc c =
6897 let bb = Buffer.create 16 in
6898 let rec loop = function
6899 | [] -> ()
6900 | (modename, h) :: rest ->
6901 let dh = findkeyhash dc modename in
6902 if always || h <> dh
6903 then (
6904 if Hashtbl.length h > 0
6905 then (
6906 if Buffer.length bb > 0
6907 then Buffer.add_char bb '\n';
6908 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6909 Hashtbl.iter (fun i o ->
6910 let isdifferent = always ||
6912 let dO = Hashtbl.find dh i in
6913 dO <> o
6914 with Not_found -> true
6916 if isdifferent
6917 then
6918 let addkm (k, m) =
6919 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6920 if Wsi.withalt m then Buffer.add_string bb "alt-";
6921 if Wsi.withshift m then Buffer.add_string bb "shift-";
6922 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6923 Buffer.add_string bb (Wsi.keyname k);
6925 let addkms l =
6926 let rec loop = function
6927 | [] -> ()
6928 | km :: [] -> addkm km
6929 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6931 loop l
6933 Buffer.add_string bb "<map in='";
6934 addkm i;
6935 match o with
6936 | KMinsrt km ->
6937 Buffer.add_string bb "' out='";
6938 addkm km;
6939 Buffer.add_string bb "'/>\n"
6941 | KMinsrl kms ->
6942 Buffer.add_string bb "' out='";
6943 addkms kms;
6944 Buffer.add_string bb "'/>\n"
6946 | KMmulti (ins, kms) ->
6947 Buffer.add_char bb ' ';
6948 addkms ins;
6949 Buffer.add_string bb "' out='";
6950 addkms kms;
6951 Buffer.add_string bb "'/>\n"
6952 ) h;
6953 Buffer.add_string bb "</keymap>";
6956 loop rest
6958 loop c.keyhashes;
6962 let save () =
6963 let uifontsize = fstate.fontsize in
6964 let bb = Buffer.create 32768 in
6965 let w, h =
6966 List.fold_left
6967 (fun (w, h) ws ->
6968 match ws with
6969 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh)
6970 | Wsi.MaxVert -> (w, conf.cwinh)
6971 | Wsi.MaxHorz -> (conf.cwinw, h)
6973 (state.winw, state.winh) state.winstate
6975 conf.cwinw <- w;
6976 conf.cwinh <- h;
6977 let f (h, dc) =
6978 let dc = if conf.bedefault then conf else dc in
6979 Buffer.add_string bb "<llppconfig>\n";
6981 if String.length !fontpath > 0
6982 then
6983 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6984 uifontsize
6985 !fontpath
6986 else (
6987 if uifontsize <> 14
6988 then
6989 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6992 Buffer.add_string bb "<defaults ";
6993 add_attrs bb true dc dc;
6994 let kb = keymapsbuf true dc dc in
6995 if Buffer.length kb > 0
6996 then (
6997 Buffer.add_string bb ">\n";
6998 Buffer.add_buffer bb kb;
6999 Buffer.add_string bb "\n</defaults>\n";
7001 else Buffer.add_string bb "/>\n";
7003 let adddoc path pan anchor c bookmarks =
7004 if bookmarks == [] && c = dc && anchor = emptyanchor
7005 then ()
7006 else (
7007 Printf.bprintf bb "<doc path='%s'"
7008 (enent path 0 (String.length path));
7010 if anchor <> emptyanchor
7011 then (
7012 let n, rely, visy = anchor in
7013 Printf.bprintf bb " page='%d'" n;
7014 if rely > 1e-6
7015 then
7016 Printf.bprintf bb " rely='%f'" rely
7018 if abs_float visy > 1e-6
7019 then
7020 Printf.bprintf bb " visy='%f'" visy
7024 if pan != 0
7025 then Printf.bprintf bb " pan='%d'" pan;
7027 add_attrs bb false dc c;
7028 let kb = keymapsbuf false dc c in
7030 begin match bookmarks with
7031 | [] ->
7032 if Buffer.length kb > 0
7033 then (
7034 Buffer.add_string bb ">\n";
7035 Buffer.add_buffer bb kb;
7036 Buffer.add_string bb "\n</doc>\n";
7038 else Buffer.add_string bb "/>\n"
7039 | _ ->
7040 Buffer.add_string bb ">\n<bookmarks>\n";
7041 List.iter (fun (title, _level, (page, rely, visy)) ->
7042 Printf.bprintf bb
7043 "<item title='%s' page='%d'"
7044 (enent title 0 (String.length title))
7045 page
7047 if rely > 1e-6
7048 then
7049 Printf.bprintf bb " rely='%f'" rely
7051 if abs_float visy > 1e-6
7052 then
7053 Printf.bprintf bb " visy='%f'" visy
7055 Buffer.add_string bb "/>\n";
7056 ) bookmarks;
7057 Buffer.add_string bb "</bookmarks>";
7058 if Buffer.length kb > 0
7059 then (
7060 Buffer.add_string bb "\n";
7061 Buffer.add_buffer bb kb;
7063 Buffer.add_string bb "\n</doc>\n";
7064 end;
7068 let pan, conf =
7069 match state.mode with
7070 | Birdseye (c, pan, _, _, _) ->
7071 let beyecolumns =
7072 match conf.columns with
7073 | Cmulti ((c, _, _), _) -> Some c
7074 | Csingle _ -> None
7075 | Csplit _ -> None
7076 and columns =
7077 match c.columns with
7078 | Cmulti (c, _) -> Cmulti (c, [||])
7079 | Csingle _ -> Csingle [||]
7080 | Csplit _ -> failwith "quit from bird's eye while split"
7082 pan, { c with beyecolumns = beyecolumns; columns = columns }
7083 | _ -> state.x, conf
7085 let basename = Filename.basename state.path in
7086 adddoc basename pan (getanchor ())
7087 (let conf =
7088 let autoscrollstep =
7089 match state.autoscroll with
7090 | Some step -> step
7091 | None -> conf.autoscrollstep
7093 match state.mode with
7094 | Birdseye (bc, _, _, _, _) ->
7095 { conf with
7096 zoom = bc.zoom;
7097 presentation = bc.presentation;
7098 interpagespace = bc.interpagespace;
7099 maxwait = bc.maxwait;
7100 autoscrollstep = autoscrollstep }
7101 | _ -> { conf with autoscrollstep = autoscrollstep }
7102 in conf)
7103 (if conf.savebmarks then state.bookmarks else []);
7105 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
7106 if basename <> path
7107 then adddoc path x anchor c bookmarks
7108 ) h;
7109 Buffer.add_string bb "</llppconfig>\n";
7110 true;
7112 if load1 f && Buffer.length bb > 0
7113 then
7115 let tmp = !confpath ^ ".tmp" in
7116 let oc = open_out_bin tmp in
7117 Buffer.output_buffer oc bb;
7118 close_out oc;
7119 Unix.rename tmp !confpath;
7120 with exn ->
7121 prerr_endline
7122 ("error while saving configuration: " ^ exntos exn)
7124 end;;
7126 let adderrmsg src msg =
7127 Buffer.add_string state.errmsgs msg;
7128 state.newerrmsgs <- true;
7129 G.postRedisplay src
7132 let adderrfmt src fmt =
7133 Format.kprintf (fun s -> adderrmsg src s) fmt;
7136 let ract cmds =
7137 let cl = splitatspace cmds in
7138 let scan s fmt f =
7139 try Scanf.sscanf s fmt f
7140 with exn ->
7141 adderrfmt "remote exec"
7142 "error processing '%S': %s\n" cmds (exntos exn)
7144 match cl with
7145 | "reload" :: [] -> reload ()
7146 | "goto" :: args :: [] ->
7147 scan args "%u %f %f"
7148 (fun pageno x y ->
7149 let cmd, _ = state.geomcmds in
7150 if String.length cmd = 0
7151 then gotopagexy pageno x y
7152 else
7153 let f prevf () =
7154 gotopagexy pageno x y;
7155 prevf ()
7157 state.reprf <- f state.reprf
7159 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7160 | "rect" :: args :: [] ->
7161 scan args "%u %u %f %f %f %f"
7162 (fun pageno color x0 y0 x1 y1 ->
7163 onpagerect pageno (fun w h ->
7164 let _,w1,h1,_ = getpagedim pageno in
7165 let sw = float w1 /. w
7166 and sh = float h1 /. h in
7167 let x0s = x0 *. sw
7168 and x1s = x1 *. sw
7169 and y0s = y0 *. sh
7170 and y1s = y1 *. sh in
7171 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7172 debugrect rect;
7173 state.rects <- (pageno, color, rect) :: state.rects;
7174 G.postRedisplay "rect";
7177 | "activatewin" :: [] -> Wsi.activatewin ()
7178 | "quit" :: [] -> raise Quit
7179 | _ ->
7180 adderrfmt "remote command"
7181 "error processing remote command: %S\n" cmds;
7184 let remote =
7185 let scratch = String.create 80 in
7186 let buf = Buffer.create 80 in
7187 fun fd ->
7188 let rec tempfr () =
7189 try Some (Unix.read fd scratch 0 80)
7190 with
7191 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7192 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7193 | exn -> raise exn
7195 match tempfr () with
7196 | None -> Some fd
7197 | Some n ->
7198 if n = 0
7199 then (
7200 Unix.close fd;
7201 if Buffer.length buf > 0
7202 then (
7203 let s = Buffer.contents buf in
7204 Buffer.clear buf;
7205 ract s;
7207 None
7209 else
7210 let rec eat ppos =
7211 let nlpos =
7213 let pos = String.index_from scratch ppos '\n' in
7214 if pos >= n then -1 else pos
7215 with Not_found -> -1
7217 if nlpos >= 0
7218 then (
7219 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7220 let s = Buffer.contents buf in
7221 Buffer.clear buf;
7222 ract s;
7223 eat (nlpos+1);
7225 else (
7226 Buffer.add_substring buf scratch ppos (n-ppos);
7227 Some fd
7229 in eat 0
7232 let remoteopen path =
7233 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7234 with exn ->
7235 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7236 None
7239 let () =
7240 let trimcachepath = ref "" in
7241 let rcmdpath = ref "" in
7242 Arg.parse
7243 (Arg.align
7244 [("-p", Arg.String (fun s -> state.password <- s),
7245 "<password> Set password");
7247 ("-f", Arg.String (fun s -> Config.fontpath := s),
7248 "<path> Set path to the user interface font");
7250 ("-c", Arg.String (fun s -> Config.confpath := s),
7251 "<path> Set path to the configuration file");
7253 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7254 "<path> Set path to the trim cache file");
7256 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7257 "<named-destination> Set named destination");
7259 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7261 ("-remote", Arg.String (fun s -> rcmdpath := s),
7262 "<path> Set path to the remote commands source");
7264 ("-v", Arg.Unit (fun () ->
7265 Printf.printf
7266 "%s\nconfiguration path: %s\n"
7267 (version ())
7268 Config.defconfpath
7270 exit 0), " Print version and exit");
7273 (fun s -> state.path <- s)
7274 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7276 if String.length state.path = 0
7277 then (prerr_endline "file name missing"; exit 1);
7279 if not (Config.load ())
7280 then prerr_endline "failed to load configuration";
7282 let globalkeyhash = findkeyhash conf "global" in
7283 let wsfd, winw, winh = Wsi.init (object
7284 method expose =
7285 if nogeomcmds state.geomcmds || platform == Posx
7286 then display ()
7287 else (
7288 GlClear.color (scalecolor2 conf.bgcolor);
7289 GlClear.clear [`color];
7291 method display = display ()
7292 method reshape w h = reshape w h
7293 method mouse b d x y m = mouse b d x y m
7294 method motion x y = state.mpos <- (x, y); motion x y
7295 method pmotion x y = state.mpos <- (x, y); pmotion x y
7296 method key k m =
7297 let mascm = m land (
7298 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
7299 ) in
7300 match state.keystate with
7301 | KSnone ->
7302 let km = k, mascm in
7303 begin
7304 match
7305 let modehash = state.uioh#modehash in
7306 try Hashtbl.find modehash km
7307 with Not_found ->
7308 try Hashtbl.find globalkeyhash km
7309 with Not_found -> KMinsrt (k, m)
7310 with
7311 | KMinsrt (k, m) -> keyboard k m
7312 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
7313 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
7315 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
7316 List.iter (fun (k, m) -> keyboard k m) insrt;
7317 state.keystate <- KSnone
7318 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
7319 state.keystate <- KSinto (keys, insrt)
7320 | _ ->
7321 state.keystate <- KSnone
7323 method enter x y = state.mpos <- (x, y); pmotion x y
7324 method leave = state.mpos <- (-1, -1)
7325 method winstate wsl = state.winstate <- wsl
7326 method quit = raise Quit
7327 end) conf.cwinw conf.cwinh (platform = Posx) in
7329 state.wsfd <- wsfd;
7331 if not (
7332 List.exists GlMisc.check_extension
7333 [ "GL_ARB_texture_rectangle"
7334 ; "GL_EXT_texture_recangle"
7335 ; "GL_NV_texture_rectangle" ]
7337 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
7339 let cr, sw =
7340 match Ne.pipe () with
7341 | Ne.Exn exn ->
7342 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
7343 exit 1
7344 | Ne.Res rw -> rw
7345 and sr, cw =
7346 match Ne.pipe () with
7347 | Ne.Exn exn ->
7348 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
7349 exit 1
7350 | Ne.Res rw -> rw
7353 cloexec cr;
7354 cloexec sw;
7355 cloexec sr;
7356 cloexec cw;
7358 setcheckers conf.checkers;
7359 redirectstderr ();
7361 init (cr, cw) (
7362 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
7363 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
7364 !Config.fontpath, !trimcachepath,
7365 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7367 state.sr <- sr;
7368 state.sw <- sw;
7369 state.text <- "Opening " ^ (mbtoutf8 state.path);
7370 reshape winw winh;
7371 opendoc state.path state.password;
7372 state.uioh <- uioh;
7374 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7375 let optrfd =
7376 ref (
7377 if String.length !rcmdpath > 0
7378 then remoteopen !rcmdpath
7379 else None
7383 let rec loop deadline =
7384 let r =
7385 match state.errfd with
7386 | None -> [state.sr; state.wsfd]
7387 | Some fd -> [state.sr; state.wsfd; fd]
7389 let r =
7390 match !optrfd with
7391 | None -> r
7392 | Some fd -> fd :: r
7394 if state.redisplay
7395 then (
7396 state.redisplay <- false;
7397 display ();
7399 let timeout =
7400 let now = now () in
7401 if deadline > now
7402 then (
7403 if deadline = infinity
7404 then ~-.1.0
7405 else max 0.0 (deadline -. now)
7407 else 0.0
7409 let r, _, _ =
7410 try Unix.select r [] [] timeout
7411 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7413 begin match r with
7414 | [] ->
7415 state.ghyll None;
7416 let newdeadline =
7417 if state.ghyll == noghyll
7418 then
7419 match state.autoscroll with
7420 | Some step when step != 0 ->
7421 let y = state.y + step in
7422 let y =
7423 if y < 0
7424 then state.maxy
7425 else if y >= state.maxy then 0 else y
7427 gotoy y;
7428 if state.mode = View
7429 then state.text <- "";
7430 deadline +. 0.01
7431 | _ -> infinity
7432 else deadline +. 0.01
7434 loop newdeadline
7436 | l ->
7437 let rec checkfds = function
7438 | [] -> ()
7439 | fd :: rest when fd = state.sr ->
7440 let cmd = readcmd state.sr in
7441 act cmd;
7442 checkfds rest
7444 | fd :: rest when fd = state.wsfd ->
7445 Wsi.readresp fd;
7446 checkfds rest
7448 | fd :: rest when Some fd = !optrfd ->
7449 begin match remote fd with
7450 | None -> optrfd := remoteopen !rcmdpath;
7451 | opt -> optrfd := opt
7452 end;
7453 checkfds rest
7455 | fd :: rest ->
7456 let s = String.create 80 in
7457 let n = tempfailureretry (Unix.read fd s 0) 80 in
7458 if conf.redirectstderr
7459 then (
7460 Buffer.add_substring state.errmsgs s 0 n;
7461 state.newerrmsgs <- true;
7462 state.redisplay <- true;
7464 else (
7465 prerr_string (String.sub s 0 n);
7466 flush stderr;
7468 checkfds rest
7470 checkfds l;
7471 let newdeadline =
7472 let deadline1 =
7473 if deadline = infinity
7474 then now () +. 0.01
7475 else deadline
7477 match state.autoscroll with
7478 | Some step when step != 0 -> deadline1
7479 | _ -> if state.ghyll == noghyll then infinity else deadline1
7481 loop newdeadline
7482 end;
7485 loop infinity;
7486 with Quit ->
7487 Config.save ();