Refactor
[llpp.git] / main.ml
blob5f1983f071098d7facdd292163f78a65f2ce2e3a
1 open Utils;;
3 exception Quit;;
5 type under =
6 | Unone
7 | Ulinkuri of string
8 | Ulinkgoto of (int * int)
9 | Utext of facename
10 | Uunexpected of string
11 | Ulaunch of string
12 | Unamed of string
13 | Uremote of (string * int)
14 and facename = string;;
16 type params = (angle * proportional * trimparams
17 * texcount * sliceheight * memsize
18 * colorspace * fontpath * trimcachepath
19 * haspbo)
20 and pageno = int
21 and width = int
22 and height = int
23 and leftx = int
24 and opaque = string
25 and recttype = int
26 and pixmapsize = int
27 and angle = int
28 and proportional = bool
29 and trimmargins = bool
30 and interpagespace = int
31 and texcount = int
32 and sliceheight = int
33 and gen = int
34 and top = float
35 and dtop = float
36 and fontpath = string
37 and trimcachepath = string
38 and memsize = int
39 and aalevel = int
40 and irect = (int * int * int * int)
41 and trimparams = (trimmargins * irect)
42 and colorspace = | Rgb | Bgr | Gray
43 and haspbo = bool
46 type x = int
47 and y = int
48 and tilex = int
49 and tiley = int
50 and tileparams = (x * y * width * height * tilex * tiley)
53 type link =
54 | Lnotfound
55 | Lfound of int
56 and linkdir =
57 | LDfirst
58 | LDlast
59 | LDfirstvisible of (int * int * int)
60 | LDleft of int
61 | LDright of int
62 | LDdown of int
63 | LDup of int
66 type pagewithlinks =
67 | Pwlnotfound
68 | Pwl of int
71 type keymap =
72 | KMinsrt of key
73 | KMinsrl of key list
74 | KMmulti of key list * key list
75 and key = int * int
76 and keyhash = (key, keymap) Hashtbl.t
77 and keystate =
78 | KSnone
79 | KSinto of (key list * key list)
82 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
83 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
85 type pipe = (Unix.file_descr * Unix.file_descr);;
87 external init : pipe -> params -> unit = "ml_init";;
88 external seltext : string -> (int * int * int * int) -> unit = "ml_seltext";;
89 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
90 external getpdimrect : int -> float array = "ml_getpdimrect";;
91 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
92 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
93 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
94 external measurestr : int -> string -> float = "ml_measure_string";;
95 external 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 proportional : proportional
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 end;;
385 type mode =
386 | Birdseye of (conf * leftx * pageno * pageno * anchor)
387 | Textentry of (textentry * onleave)
388 | View
389 | LinkNav of linktarget
390 and onleave = leavetextentrystatus -> unit
391 and leavetextentrystatus = | Cancel | Confirm
392 and helpitem = string * int * action
393 and action =
394 | Noaction
395 | Action of (uioh -> uioh)
396 and linktarget =
397 | Ltexact of (pageno * int)
398 | Ltgendir of int
401 let isbirdseye = function Birdseye _ -> true | _ -> false;;
402 let istextentry = function Textentry _ -> true | _ -> false;;
404 type currently =
405 | Idle
406 | Loading of (page * gen)
407 | Tiling of (
408 page * opaque * colorspace * angle * gen * col * row * width * height
410 | Outlining of outline list
413 let emptykeyhash = Hashtbl.create 0;;
414 let nouioh : uioh = object (self)
415 method display = ()
416 method key _ _ = self
417 method button _ _ _ _ _ = self
418 method motion _ _ = self
419 method pmotion _ _ = self
420 method infochanged _ = ()
421 method scrollpw = (0, nan, nan)
422 method scrollph = (0, nan, nan)
423 method modehash = emptykeyhash
424 end;;
426 type state =
427 { mutable sr : Unix.file_descr
428 ; mutable sw : Unix.file_descr
429 ; mutable wsfd : Unix.file_descr
430 ; mutable errfd : Unix.file_descr option
431 ; mutable stderr : Unix.file_descr
432 ; mutable errmsgs : Buffer.t
433 ; mutable newerrmsgs : bool
434 ; mutable w : int
435 ; mutable x : int
436 ; mutable y : int
437 ; mutable scrollw : int
438 ; mutable hscrollh : int
439 ; mutable anchor : anchor
440 ; mutable ranchors : (string * string * anchor) list
441 ; mutable maxy : int
442 ; mutable layout : page list
443 ; pagemap : (pagemapkey, opaque) Hashtbl.t
444 ; tilemap : (tilemapkey, tile) Hashtbl.t
445 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
446 ; mutable pdims : (pageno * width * height * leftx) list
447 ; mutable pagecount : int
448 ; mutable currently : currently
449 ; mutable mstate : mstate
450 ; mutable searchpattern : string
451 ; mutable rects : (pageno * recttype * rect) list
452 ; mutable rects1 : (pageno * recttype * rect) list
453 ; mutable text : string
454 ; mutable winstate : Wsi.winstate list
455 ; mutable mode : mode
456 ; mutable uioh : uioh
457 ; mutable outlines : outline array
458 ; mutable bookmarks : outline list
459 ; mutable path : string
460 ; mutable password : string
461 ; mutable nameddest : string
462 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
463 ; mutable memused : memsize
464 ; mutable gen : gen
465 ; mutable throttle : (page list * int * float) option
466 ; mutable autoscroll : int option
467 ; mutable ghyll : (int option -> unit)
468 ; mutable help : helpitem array
469 ; mutable docinfo : (int * string) list
470 ; mutable texid : GlTex.texture_id option
471 ; hists : hists
472 ; mutable prevzoom : float
473 ; mutable progress : float
474 ; mutable redisplay : bool
475 ; mutable mpos : mpos
476 ; mutable keystate : keystate
477 ; mutable glinks : bool
478 ; mutable prevcolumns : (columns * float) option
479 ; mutable winw : int
480 ; mutable winh : int
481 ; mutable reprf : (unit -> unit)
483 and hists =
484 { pat : string circbuf
485 ; pag : string circbuf
486 ; nav : anchor circbuf
487 ; sel : string circbuf
491 let defconf =
492 { scrollbw = 7
493 ; scrollh = 12
494 ; icase = true
495 ; preload = true
496 ; pagebias = 0
497 ; verbose = false
498 ; debug = false
499 ; scrollstep = 24
500 ; hscrollstep = 24
501 ; maxhfit = true
502 ; crophack = false
503 ; autoscrollstep = 2
504 ; maxwait = None
505 ; hlinks = false
506 ; underinfo = false
507 ; interpagespace = 2
508 ; zoom = 1.0
509 ; presentation = false
510 ; angle = 0
511 ; cwinw = 900
512 ; cwinh = 900
513 ; savebmarks = true
514 ; proportional = true
515 ; trimmargins = false
516 ; trimfuzz = (0,0,0,0)
517 ; memlimit = 32 lsl 20
518 ; texcount = 256
519 ; sliceheight = 24
520 ; thumbw = 76
521 ; jumpback = true
522 ; bgcolor = (0.5, 0.5, 0.5)
523 ; bedefault = false
524 ; scrollbarinpm = true
525 ; tilew = 2048
526 ; tileh = 2048
527 ; mustoresize = 256 lsl 20
528 ; checkers = true
529 ; aalevel = 8
530 ; urilauncher =
531 (match platform with
532 | Plinux | Pfreebsd | Pdragonflybsd
533 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
534 | Posx -> "open \"%s\""
535 | Pcygwin -> "cygstart \"%s\""
536 | Punknown -> "echo %s")
537 ; pathlauncher = "lp \"%s\""
538 ; selcmd =
539 (match platform with
540 | Plinux | Pfreebsd | Pdragonflybsd
541 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
542 | Posx -> "pbcopy"
543 | Pcygwin -> "wsel"
544 | Punknown -> "cat")
545 ; colorspace = Rgb
546 ; invert = false
547 ; colorscale = 1.0
548 ; redirectstderr = false
549 ; ghyllscroll = None
550 ; columns = Csingle [||]
551 ; beyecolumns = None
552 ; updatecurs = false
553 ; hfsize = 12
554 ; pgscale = 1.0
555 ; usepbo = false
556 ; wheelbypage = false
557 ; stcmd = "echo SyncTex"
558 ; keyhashes =
559 let mk n = (n, Hashtbl.create 1) in
560 [ mk "global"
561 ; mk "info"
562 ; mk "help"
563 ; mk "outline"
564 ; mk "listview"
565 ; mk "birdseye"
566 ; mk "textentry"
567 ; mk "links"
568 ; mk "view"
573 let wtmode = ref false;;
575 let findkeyhash c name =
576 try List.assoc name c.keyhashes
577 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
580 let conf = { defconf with angle = defconf.angle };;
582 let pgscale h = truncate (float h *. conf.pgscale);;
584 type fontstate =
585 { mutable fontsize : int
586 ; mutable wwidth : float
587 ; mutable maxrows : int
591 let fstate =
592 { fontsize = 14
593 ; wwidth = nan
594 ; maxrows = -1
598 let geturl s =
599 let colonpos = try String.index s ':' with Not_found -> -1 in
600 let len = String.length s in
601 if colonpos >= 0 && colonpos + 3 < len
602 then (
603 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
604 then
605 let schemestartpos =
606 try String.rindex_from s colonpos ' '
607 with Not_found -> -1
609 let scheme =
610 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
612 match scheme with
613 | "http" | "ftp" | "mailto" ->
614 let epos =
615 try String.index_from s colonpos ' '
616 with Not_found -> len
618 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
619 | _ -> ""
620 else ""
622 else ""
625 let gotouri uri =
626 if String.length conf.urilauncher = 0
627 then print_endline uri
628 else (
629 let url = geturl uri in
630 if String.length url = 0
631 then print_endline uri
632 else
633 let re = Str.regexp "%s" in
634 let command = Str.global_replace re url conf.urilauncher in
635 try popen command []
636 with exn ->
637 Printf.eprintf
638 "failed to execute `%s': %s\n" command (exntos exn);
639 flush stderr;
643 let version () =
644 Printf.sprintf "llpp version %s (%s/%dbit, ocaml %s)" Help.version
645 (platform_to_string platform) Sys.word_size Sys.ocaml_version
648 let makehelp () =
649 let strings = version () :: "" :: Help.keys in
650 Array.of_list (
651 List.map (fun s ->
652 let url = geturl s in
653 if String.length url > 0
654 then (s, 0, Action (fun u -> gotouri url; u))
655 else (s, 0, Noaction)
656 ) strings);
659 let noghyll _ = ();;
660 let firstgeomcmds = "", [];;
661 let noreprf () = ();;
663 let state =
664 { sr = Unix.stdin
665 ; sw = Unix.stdin
666 ; wsfd = Unix.stdin
667 ; errfd = None
668 ; stderr = Unix.stderr
669 ; errmsgs = Buffer.create 0
670 ; newerrmsgs = false
671 ; x = 0
672 ; y = 0
673 ; w = 0
674 ; scrollw = 0
675 ; hscrollh = 0
676 ; anchor = emptyanchor
677 ; ranchors = []
678 ; layout = []
679 ; maxy = max_int
680 ; tilelru = Queue.create ()
681 ; pagemap = Hashtbl.create 10
682 ; tilemap = Hashtbl.create 10
683 ; pdims = []
684 ; pagecount = 0
685 ; currently = Idle
686 ; mstate = Mnone
687 ; rects = []
688 ; rects1 = []
689 ; text = ""
690 ; mode = View
691 ; winstate = []
692 ; searchpattern = ""
693 ; outlines = [||]
694 ; bookmarks = []
695 ; path = ""
696 ; password = ""
697 ; nameddest = ""
698 ; geomcmds = firstgeomcmds
699 ; hists =
700 { nav = cbnew 10 emptyanchor
701 ; pat = cbnew 10 ""
702 ; pag = cbnew 10 ""
703 ; sel = cbnew 10 ""
705 ; memused = 0
706 ; gen = 0
707 ; throttle = None
708 ; autoscroll = None
709 ; ghyll = noghyll
710 ; help = makehelp ()
711 ; docinfo = []
712 ; texid = None
713 ; prevzoom = 1.0
714 ; progress = -1.0
715 ; uioh = nouioh
716 ; redisplay = true
717 ; mpos = (-1, -1)
718 ; keystate = KSnone
719 ; glinks = false
720 ; prevcolumns = None
721 ; winw = -1
722 ; winh = -1
723 ; reprf = noreprf
727 let setfontsize n =
728 fstate.fontsize <- n;
729 fstate.wwidth <- measurestr fstate.fontsize "w";
730 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
733 let vlog fmt =
734 if conf.verbose
735 then
736 Printf.kprintf prerr_endline fmt
737 else
738 Printf.kprintf ignore fmt
741 let launchpath () =
742 if String.length conf.pathlauncher = 0
743 then print_endline state.path
744 else (
745 let re = Str.regexp "%s" in
746 let command = Str.global_replace re state.path conf.pathlauncher in
747 try popen command []
748 with exn ->
749 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
750 flush stderr;
754 module Ne = struct
755 type 'a t = | Res of 'a | Exn of exn;;
757 let pipe () =
758 try Res (Unix.pipe ())
759 with exn -> Exn exn
762 let clo fd f =
763 try tempfailureretry Unix.close fd
764 with exn -> f (exntos exn)
767 let dup fd =
768 try Res (tempfailureretry Unix.dup fd)
769 with exn -> Exn exn
772 let dup2 fd1 fd2 =
773 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
774 with exn -> Exn exn
776 end;;
778 let redirectstderr () =
779 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
780 if conf.redirectstderr
781 then
782 match Ne.pipe () with
783 | Ne.Exn exn ->
784 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
786 | Ne.Res (r, w) ->
787 begin match Ne.dup Unix.stderr with
788 | Ne.Exn exn ->
789 dolog "failed to dup stderr: %s" (exntos exn);
790 Ne.clo r (clofail "pipe/r");
791 Ne.clo w (clofail "pipe/w");
793 | Ne.Res dupstderr ->
794 begin match Ne.dup2 w Unix.stderr with
795 | Ne.Exn exn ->
796 dolog "failed to dup2 to stderr: %s" (exntos exn);
797 Ne.clo dupstderr (clofail "stderr duplicate");
798 Ne.clo r (clofail "redir pipe/r");
799 Ne.clo w (clofail "redir pipe/w");
801 | Ne.Res () ->
802 state.stderr <- dupstderr;
803 state.errfd <- Some r;
804 end;
806 else (
807 state.newerrmsgs <- false;
808 begin match state.errfd with
809 | Some fd ->
810 begin match Ne.dup2 state.stderr Unix.stderr with
811 | Ne.Exn exn ->
812 dolog "failed to dup2 original stderr: %s" (exntos exn)
813 | Ne.Res () ->
814 Ne.clo fd (clofail "dup of stderr");
815 state.errfd <- None;
816 end;
817 | None -> ()
818 end;
819 prerr_string (Buffer.contents state.errmsgs);
820 flush stderr;
821 Buffer.clear state.errmsgs;
825 module G =
826 struct
827 let postRedisplay who =
828 if conf.verbose
829 then prerr_endline ("redisplay for " ^ who);
830 state.redisplay <- true;
832 end;;
834 let getopaque pageno =
835 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
836 with Not_found -> None
839 let putopaque pageno opaque =
840 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
843 let pagetranslatepoint l x y =
844 let dy = y - l.pagedispy in
845 let y = dy + l.pagey in
846 let dx = x - l.pagedispx in
847 let x = dx + l.pagex in
848 (x, y);
851 let onppundermouse g x y d =
852 let rec f = function
853 | l :: rest ->
854 begin match getopaque l.pageno with
855 | Some opaque ->
856 let x0 = l.pagedispx in
857 let x1 = x0 + l.pagevw in
858 let y0 = l.pagedispy in
859 let y1 = y0 + l.pagevh in
860 if y >= y0 && y <= y1 && x >= x0 && x <= x1
861 then
862 let px, py = pagetranslatepoint l x y in
863 match g opaque l px py with
864 | Some res -> res
865 | None -> f rest
866 else f rest
867 | _ ->
868 f rest
870 | [] -> d
872 f state.layout
875 let getunder x y =
876 let g opaque _ px py =
877 match whatsunder opaque px py with
878 | Unone -> None
879 | under -> Some under
881 onppundermouse g x y Unone
884 let unproject x y =
885 let g opaque l x y =
886 match unproject opaque x y with
887 | Some (x, y) -> Some (Some (l.pageno, x, y))
888 | None -> None
890 onppundermouse g x y None;
893 let showtext c s =
894 state.text <- Printf.sprintf "%c%s" c s;
895 G.postRedisplay "showtext";
898 let undertext = function
899 | Unone -> "none"
900 | Ulinkuri s -> s
901 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
902 | Utext s -> "font: " ^ s
903 | Uunexpected s -> "unexpected: " ^ s
904 | Ulaunch s -> "launch: " ^ s
905 | Unamed s -> "named: " ^ s
906 | Uremote (filename, pageno) ->
907 Printf.sprintf "%s: page %d" filename (pageno+1)
910 let updateunder x y =
911 match getunder x y with
912 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
913 | Ulinkuri uri ->
914 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
915 Wsi.setcursor Wsi.CURSOR_INFO
916 | Ulinkgoto (pageno, _) ->
917 if conf.underinfo
918 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
919 Wsi.setcursor Wsi.CURSOR_INFO
920 | Utext s ->
921 if conf.underinfo then showtext 'f' ("ont: " ^ s);
922 Wsi.setcursor Wsi.CURSOR_TEXT
923 | Uunexpected s ->
924 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
925 Wsi.setcursor Wsi.CURSOR_INHERIT
926 | Ulaunch s ->
927 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
928 Wsi.setcursor Wsi.CURSOR_INHERIT
929 | Unamed s ->
930 if conf.underinfo then showtext 'n' ("amed: " ^ s);
931 Wsi.setcursor Wsi.CURSOR_INHERIT
932 | Uremote (filename, pageno) ->
933 if conf.underinfo then showtext 'r'
934 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
935 Wsi.setcursor Wsi.CURSOR_INFO
938 let showlinktype under =
939 if conf.underinfo
940 then
941 match under with
942 | Unone -> ()
943 | under ->
944 let s = undertext under in
945 showtext ' ' s
948 let addchar s c =
949 let b = Buffer.create (String.length s + 1) in
950 Buffer.add_string b s;
951 Buffer.add_char b c;
952 Buffer.contents b;
955 let colorspace_of_string s =
956 match String.lowercase s with
957 | "rgb" -> Rgb
958 | "bgr" -> Bgr
959 | "gray" -> Gray
960 | _ -> failwith "invalid colorspace"
963 let int_of_colorspace = function
964 | Rgb -> 0
965 | Bgr -> 1
966 | Gray -> 2
969 let colorspace_of_int = function
970 | 0 -> Rgb
971 | 1 -> Bgr
972 | 2 -> Gray
973 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
976 let colorspace_to_string = function
977 | Rgb -> "rgb"
978 | Bgr -> "bgr"
979 | Gray -> "gray"
982 let intentry_with_suffix text key =
983 let c =
984 if key >= 32 && key < 127
985 then Char.chr key
986 else '\000'
988 match Char.lowercase c with
989 | '0' .. '9' ->
990 let text = addchar text c in
991 TEcont text
993 | 'k' | 'm' | 'g' ->
994 let text = addchar text c in
995 TEcont text
997 | _ ->
998 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
999 TEcont text
1002 let multicolumns_to_string (n, a, b) =
1003 if a = 0 && b = 0
1004 then Printf.sprintf "%d" n
1005 else Printf.sprintf "%d,%d,%d" n a b;
1008 let multicolumns_of_string s =
1010 (int_of_string s, 0, 0)
1011 with _ ->
1012 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
1013 if a > 1 || b > 1
1014 then failwith "subtly broken"; (n, a, b)
1018 let readcmd fd =
1019 let s = "xxxx" in
1020 let n = tempfailureretry (Unix.read fd s 0) 4 in
1021 if n != 4 then failwith "incomplete read(len)";
1022 let len = 0
1023 lor (Char.code s.[0] lsl 24)
1024 lor (Char.code s.[1] lsl 16)
1025 lor (Char.code s.[2] lsl 8)
1026 lor (Char.code s.[3] lsl 0)
1028 let s = String.create len in
1029 let n = tempfailureretry (Unix.read fd s 0) len in
1030 if n != len then failwith "incomplete read(data)";
1034 let btod b = if b then 1 else 0;;
1036 let wcmd fmt =
1037 let b = Buffer.create 16 in
1038 Buffer.add_string b "llll";
1039 Printf.kbprintf
1040 (fun b ->
1041 let s = Buffer.contents b in
1042 let n = String.length s in
1043 let len = n - 4 in
1044 (* dolog "wcmd %S" (String.sub s 4 len); *)
1045 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1046 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1047 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1048 s.[3] <- Char.chr (len land 0xff);
1049 let n' = tempfailureretry (Unix.write state.sw s 0) n in
1050 if n' != n then failwith "write failed";
1051 ) b fmt;
1054 let calcips h =
1055 let d = state.winh - h in
1056 max conf.interpagespace ((d + 1) / 2)
1059 let rowyh (c, coverA, coverB) b n =
1060 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1061 then
1062 let _, _, vy, (_, _, h, _) = b.(n) in
1063 (vy, h)
1064 else
1065 let n' = n - coverA in
1066 let d = n' mod c in
1067 let s = n - d in
1068 let e = min state.pagecount (s + c) in
1069 let rec find m miny maxh = if m = e then miny, maxh else
1070 let _, _, y, (_, _, h, _) = b.(m) in
1071 let miny = min miny y in
1072 let maxh = max maxh h in
1073 find (m+1) miny maxh
1074 in find s max_int 0
1077 let calcheight () =
1078 match conf.columns with
1079 | Cmulti ((_, _, _) as cl, b) ->
1080 if Array.length b > 0
1081 then
1082 let y, h = rowyh cl b (Array.length b - 1) in
1083 y + h + (if conf.presentation then calcips h else 0)
1084 else 0
1085 | Csingle b ->
1086 if Array.length b > 0
1087 then
1088 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1089 y + h + (if conf.presentation then calcips h else 0)
1090 else 0
1091 | Csplit (_, b) ->
1092 if Array.length b > 0
1093 then
1094 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1095 y + h
1096 else 0
1099 let getpageyh pageno =
1100 let pageno = bound pageno 0 (state.pagecount-1) in
1101 match conf.columns with
1102 | Csingle b ->
1103 if Array.length b = 0
1104 then 0, 0
1105 else
1106 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1107 let y =
1108 if conf.presentation
1109 then y - calcips h
1110 else y
1112 y, h
1113 | Cmulti (cl, b) ->
1114 if Array.length b = 0
1115 then 0, 0
1116 else
1117 let y, h = rowyh cl b pageno in
1118 let y =
1119 if conf.presentation
1120 then y - calcips h
1121 else y
1123 y, h
1124 | Csplit (c, b) ->
1125 if Array.length b = 0
1126 then 0, 0
1127 else
1128 let n = pageno*c in
1129 let (_, _, y, (_, _, h, _)) = b.(n) in
1130 y, h
1133 let getpagedim pageno =
1134 let rec f ppdim l =
1135 match l with
1136 | (n, _, _, _) as pdim :: rest ->
1137 if n >= pageno
1138 then (if n = pageno then pdim else ppdim)
1139 else f pdim rest
1141 | [] -> ppdim
1143 f (-1, -1, -1, -1) state.pdims
1146 let getpagey pageno = fst (getpageyh pageno);;
1148 let nogeomcmds cmds =
1149 match cmds with
1150 | s, [] -> String.length s = 0
1151 | _ -> false
1154 let page_of_y y =
1155 let ((c, coverA, coverB) as cl), b =
1156 match conf.columns with
1157 | Csingle b -> (1, 0, 0), b
1158 | Cmulti (c, b) -> c, b
1159 | Csplit (_, b) -> (1, 0, 0), b
1161 if Array.length b = 0
1162 then -1
1163 else
1164 let rec bsearch nmin nmax =
1165 if nmin > nmax
1166 then bound nmin 0 (state.pagecount-1)
1167 else
1168 let n = (nmax + nmin) / 2 in
1169 let vy, h = rowyh cl b n in
1170 let y0, y1 =
1171 if conf.presentation
1172 then
1173 let ips = calcips h in
1174 let y0 = vy - ips in
1175 let y1 = vy + h + ips in
1176 y0, y1
1177 else (
1178 if n = 0
1179 then 0, vy + h + conf.interpagespace
1180 else
1181 let y0 = vy - conf.interpagespace in
1182 y0, y0 + h + conf.interpagespace
1185 if y >= y0 && y < y1
1186 then (
1187 if c = 1
1188 then n
1189 else (
1190 if n > coverA
1191 then
1192 if n < state.pagecount - coverB
1193 then ((n-coverA)/c)*c + coverA
1194 else n
1195 else n
1198 else (
1199 if y > y0
1200 then bsearch (n+1) nmax
1201 else bsearch nmin (n-1)
1204 let r = bsearch 0 (state.pagecount-1) in
1208 let layoutN ((columns, coverA, coverB), b) y sh =
1209 let sh = sh - state.hscrollh in
1210 let rec fold accu n =
1211 if n = Array.length b
1212 then accu
1213 else
1214 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1215 if (vy - y) > sh &&
1216 (n = coverA - 1
1217 || n = state.pagecount - coverB
1218 || (n - coverA) mod columns = columns - 1)
1219 then accu
1220 else
1221 let accu =
1222 if vy + h > y
1223 then
1224 let pagey = max 0 (y - vy) in
1225 let pagedispy = if pagey > 0 then 0 else vy - y in
1226 let pagedispx, pagex =
1227 let pdx =
1228 if n = coverA - 1 || n = state.pagecount - coverB
1229 then state.x + (state.winw - state.scrollw - w) / 2
1230 else dx + xoff + state.x
1232 if pdx < 0
1233 then 0, -pdx
1234 else pdx, 0
1236 let pagevw =
1237 let vw = state.winw - state.scrollw - pagedispx in
1238 let pw = w - pagex in
1239 min vw pw
1241 let pagevh = min (h - pagey) (sh - pagedispy) in
1242 if pagevw > 0 && pagevh > 0
1243 then
1244 let e =
1245 { pageno = n
1246 ; pagedimno = pdimno
1247 ; pagew = w
1248 ; pageh = h
1249 ; pagex = pagex
1250 ; pagey = pagey
1251 ; pagevw = pagevw
1252 ; pagevh = pagevh
1253 ; pagedispx = pagedispx
1254 ; pagedispy = pagedispy
1255 ; pagecol = 0
1258 e :: accu
1259 else
1260 accu
1261 else
1262 accu
1264 fold accu (n+1)
1266 List.rev (fold [] (page_of_y y));
1269 let layoutS (columns, b) y sh =
1270 let sh = sh - state.hscrollh in
1271 let rec fold accu n =
1272 if n = Array.length b
1273 then accu
1274 else
1275 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1276 if (vy - y) > sh
1277 then accu
1278 else
1279 let accu =
1280 if vy + pageh > y
1281 then
1282 let x = xoff + state.x in
1283 let pagey = max 0 (y - vy) in
1284 let pagedispy = if pagey > 0 then 0 else vy - y in
1285 let pagedispx, pagex =
1286 if px = 0
1287 then (
1288 if x < 0
1289 then 0, -x
1290 else x, 0
1292 else (
1293 let px = px - x in
1294 if px < 0
1295 then -px, 0
1296 else 0, px
1299 let pagecolw = pagew/columns in
1300 let pagedispx =
1301 if pagecolw < state.winw
1302 then pagedispx + ((state.winw - state.scrollw - pagecolw) / 2)
1303 else pagedispx
1305 let pagevw =
1306 let vw = state.winw - pagedispx - state.scrollw in
1307 let pw = pagew - pagex in
1308 min vw pw
1310 let pagevw = min pagevw pagecolw in
1311 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1312 if pagevw > 0 && pagevh > 0
1313 then
1314 let e =
1315 { pageno = n/columns
1316 ; pagedimno = pdimno
1317 ; pagew = pagew
1318 ; pageh = pageh
1319 ; pagex = pagex
1320 ; pagey = pagey
1321 ; pagevw = pagevw
1322 ; pagevh = pagevh
1323 ; pagedispx = pagedispx
1324 ; pagedispy = pagedispy
1325 ; pagecol = n mod columns
1328 e :: accu
1329 else
1330 accu
1331 else
1332 accu
1334 fold accu (n+1)
1336 List.rev (fold [] 0)
1339 let layout y sh =
1340 if nogeomcmds state.geomcmds
1341 then
1342 match conf.columns with
1343 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1344 | Cmulti c -> layoutN c y sh
1345 | Csplit s -> layoutS s y sh
1346 else []
1349 let clamp incr =
1350 let y = state.y + incr in
1351 let y = max 0 y in
1352 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
1356 let itertiles l f =
1357 let tilex = l.pagex mod conf.tilew in
1358 let tiley = l.pagey mod conf.tileh in
1360 let col = l.pagex / conf.tilew in
1361 let row = l.pagey / conf.tileh in
1363 let rec rowloop row y0 dispy h =
1364 if h = 0
1365 then ()
1366 else (
1367 let dh = conf.tileh - y0 in
1368 let dh = min h dh in
1369 let rec colloop col x0 dispx w =
1370 if w = 0
1371 then ()
1372 else (
1373 let dw = conf.tilew - x0 in
1374 let dw = min w dw in
1376 f col row dispx dispy x0 y0 dw dh;
1377 colloop (col+1) 0 (dispx+dw) (w-dw)
1380 colloop col tilex l.pagedispx l.pagevw;
1381 rowloop (row+1) 0 (dispy+dh) (h-dh)
1384 if l.pagevw > 0 && l.pagevh > 0
1385 then rowloop row tiley l.pagedispy l.pagevh;
1388 let gettileopaque l col row =
1389 let key =
1390 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1392 try Some (Hashtbl.find state.tilemap key)
1393 with Not_found -> None
1396 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1397 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1398 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1401 let drawtiles l color =
1402 GlDraw.color color;
1403 let f col row x y tilex tiley w h =
1404 match gettileopaque l col row with
1405 | Some (opaque, _, t) ->
1406 let params = x, y, w, h, tilex, tiley in
1407 if conf.invert
1408 then (
1409 Gl.enable `blend;
1410 GlFunc.blend_func `zero `one_minus_src_color;
1412 drawtile params opaque;
1413 if conf.invert
1414 then Gl.disable `blend;
1415 if conf.debug
1416 then (
1417 let s = Printf.sprintf
1418 "%d[%d,%d] %f sec"
1419 l.pageno col row t
1421 let w = measurestr fstate.fontsize s in
1422 GlMisc.push_attrib [`current];
1423 GlDraw.color (0.0, 0.0, 0.0);
1424 GlDraw.rect
1425 (float (x-2), float (y-2))
1426 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1427 GlDraw.color (1.0, 1.0, 1.0);
1428 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1429 GlMisc.pop_attrib ();
1432 | _ ->
1433 let w =
1434 let lw = state.winw - state.scrollw - x in
1435 min lw w
1436 and h =
1437 let lh = state.winh - y in
1438 min lh h
1440 begin match state.texid with
1441 | Some id ->
1442 Gl.enable `texture_2d;
1443 GlTex.bind_texture `texture_2d id;
1444 let x0 = float x
1445 and y0 = float y
1446 and x1 = float (x+w)
1447 and y1 = float (y+h) in
1449 let tw = float w /. 16.0
1450 and th = float h /. 16.0 in
1451 let tx0 = float tilex /. 16.0
1452 and ty0 = float tiley /. 16.0 in
1453 let tx1 = tx0 +. tw
1454 and ty1 = ty0 +. th in
1455 GlDraw.begins `quads;
1456 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1457 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1458 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1459 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1460 GlDraw.ends ();
1462 Gl.disable `texture_2d;
1463 | None ->
1464 GlDraw.color (1.0, 1.0, 1.0);
1465 GlDraw.rect
1466 (float x, float y)
1467 (float (x+w), float (y+h));
1468 end;
1469 if w > 128 && h > fstate.fontsize + 10
1470 then (
1471 GlDraw.color (0.0, 0.0, 0.0);
1472 let c, r =
1473 if conf.verbose
1474 then (col*conf.tilew, row*conf.tileh)
1475 else col, row
1477 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1479 GlDraw.color color;
1481 itertiles l f
1484 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1486 let tilevisible1 l x y =
1487 let ax0 = l.pagex
1488 and ax1 = l.pagex + l.pagevw
1489 and ay0 = l.pagey
1490 and ay1 = l.pagey + l.pagevh in
1492 let bx0 = x
1493 and by0 = y in
1494 let bx1 = min (bx0 + conf.tilew) l.pagew
1495 and by1 = min (by0 + conf.tileh) l.pageh in
1497 let rx0 = max ax0 bx0
1498 and ry0 = max ay0 by0
1499 and rx1 = min ax1 bx1
1500 and ry1 = min ay1 by1 in
1502 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1503 nonemptyintersection
1506 let tilevisible layout n x y =
1507 let rec findpageinlayout m = function
1508 | l :: rest when l.pageno = n ->
1509 tilevisible1 l x y || (
1510 match conf.columns with
1511 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1512 | _ -> false
1514 | _ :: rest -> findpageinlayout 0 rest
1515 | [] -> false
1517 findpageinlayout 0 layout;
1520 let tileready l x y =
1521 tilevisible1 l x y &&
1522 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1525 let tilepage n p layout =
1526 let rec loop = function
1527 | l :: rest ->
1528 if l.pageno = n
1529 then
1530 let f col row _ _ _ _ _ _ =
1531 if state.currently = Idle
1532 then
1533 match gettileopaque l col row with
1534 | Some _ -> ()
1535 | None ->
1536 let x = col*conf.tilew
1537 and y = row*conf.tileh in
1538 let w =
1539 let w = l.pagew - x in
1540 min w conf.tilew
1542 let h =
1543 let h = l.pageh - y in
1544 min h conf.tileh
1546 let pbo =
1547 if conf.usepbo
1548 then getpbo w h conf.colorspace
1549 else "0"
1551 wcmd "tile %s %d %d %d %d %s" p x y w h pbo;
1552 state.currently <-
1553 Tiling (
1554 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1555 conf.tilew, conf.tileh
1558 itertiles l f;
1559 else
1560 loop rest
1562 | [] -> ()
1564 if nogeomcmds state.geomcmds
1565 then loop layout;
1568 let preloadlayout y =
1569 let y = if y < state.winh then 0 else y - state.winh in
1570 let h = state.winh*3 in
1571 layout y h;
1574 let load pages =
1575 let rec loop pages =
1576 if state.currently != Idle
1577 then ()
1578 else
1579 match pages with
1580 | l :: rest ->
1581 begin match getopaque l.pageno with
1582 | None ->
1583 wcmd "page %d %d" l.pageno l.pagedimno;
1584 state.currently <- Loading (l, state.gen);
1585 | Some opaque ->
1586 tilepage l.pageno opaque pages;
1587 loop rest
1588 end;
1589 | _ -> ()
1591 if nogeomcmds state.geomcmds
1592 then loop pages
1595 let preload pages =
1596 load pages;
1597 if conf.preload && state.currently = Idle
1598 then load (preloadlayout state.y);
1601 let layoutready layout =
1602 let rec fold all ls =
1603 all && match ls with
1604 | l :: rest ->
1605 let seen = ref false in
1606 let allvisible = ref true in
1607 let foo col row _ _ _ _ _ _ =
1608 seen := true;
1609 allvisible := !allvisible &&
1610 begin match gettileopaque l col row with
1611 | Some _ -> true
1612 | None -> false
1615 itertiles l foo;
1616 fold (!seen && !allvisible) rest
1617 | [] -> true
1619 let alltilesvisible = fold true layout in
1620 alltilesvisible;
1623 let gotoy y =
1624 let y = bound y 0 state.maxy in
1625 let y, layout, proceed =
1626 match conf.maxwait with
1627 | Some time when state.ghyll == noghyll ->
1628 begin match state.throttle with
1629 | None ->
1630 let layout = layout y state.winh in
1631 let ready = layoutready layout in
1632 if not ready
1633 then (
1634 load layout;
1635 state.throttle <- Some (layout, y, now ());
1637 else G.postRedisplay "gotoy showall (None)";
1638 y, layout, ready
1639 | Some (_, _, started) ->
1640 let dt = now () -. started in
1641 if dt > time
1642 then (
1643 state.throttle <- None;
1644 let layout = layout y state.winh in
1645 load layout;
1646 G.postRedisplay "maxwait";
1647 y, layout, true
1649 else -1, [], false
1652 | _ ->
1653 let layout = layout y state.winh in
1654 if not !wtmode || layoutready layout
1655 then G.postRedisplay "gotoy ready";
1656 y, layout, true
1658 if proceed
1659 then (
1660 state.y <- y;
1661 state.layout <- layout;
1662 begin match state.mode with
1663 | LinkNav (Ltexact (pageno, linkno)) ->
1664 let rec loop = function
1665 | [] ->
1666 state.mode <- LinkNav (Ltgendir 0)
1667 | l :: _ when l.pageno = pageno ->
1668 begin match getopaque pageno with
1669 | None ->
1670 state.mode <- LinkNav (Ltgendir 0)
1671 | Some opaque ->
1672 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1673 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1674 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1675 then state.mode <- LinkNav (Ltgendir 0)
1677 | _ :: rest -> loop rest
1679 loop layout
1680 | _ -> ()
1681 end;
1682 begin match state.mode with
1683 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1684 if not (pagevisible layout pageno)
1685 then (
1686 match state.layout with
1687 | [] -> ()
1688 | l :: _ ->
1689 state.mode <- Birdseye (
1690 conf, leftx, l.pageno, hooverpageno, anchor
1693 | LinkNav (Ltgendir dir as lt) ->
1694 let linknav =
1695 let rec loop = function
1696 | [] -> lt
1697 | l :: rest ->
1698 match getopaque l.pageno with
1699 | None -> loop rest
1700 | Some opaque ->
1701 let link =
1702 let ld =
1703 if dir = 0
1704 then LDfirstvisible (l.pagex, l.pagey, dir)
1705 else (
1706 if dir > 0 then LDfirst else LDlast
1709 findlink opaque ld
1711 match link with
1712 | Lnotfound -> loop rest
1713 | Lfound n ->
1714 showlinktype (getlink opaque n);
1715 Ltexact (l.pageno, n)
1717 loop state.layout
1719 state.mode <- LinkNav linknav
1720 | _ -> ()
1721 end;
1722 preload layout;
1724 state.ghyll <- noghyll;
1725 if conf.updatecurs
1726 then (
1727 let mx, my = state.mpos in
1728 updateunder mx my;
1732 let conttiling pageno opaque =
1733 tilepage pageno opaque
1734 (if conf.preload then preloadlayout state.y else state.layout)
1737 let gotoy_and_clear_text y =
1738 if not conf.verbose then state.text <- "";
1739 gotoy y;
1742 let getanchor1 l =
1743 let top =
1744 let coloff = l.pagecol * l.pageh in
1745 float (l.pagey + coloff) /. float l.pageh
1747 let dtop =
1748 if l.pagedispy = 0
1749 then
1751 else
1752 if conf.presentation
1753 then float l.pagedispy /. float (calcips l.pageh)
1754 else float l.pagedispy /. float conf.interpagespace
1756 (l.pageno, top, dtop)
1759 let getanchor () =
1760 match state.layout with
1761 | l :: _ -> getanchor1 l
1762 | [] ->
1763 let n = page_of_y state.y in
1764 if n = -1
1765 then state.anchor
1766 else
1767 let y, h = getpageyh n in
1768 let dy = y - state.y in
1769 let dtop =
1770 if conf.presentation
1771 then
1772 let ips = calcips h in
1773 float (dy + ips) /. float ips
1774 else
1775 float dy /. float conf.interpagespace
1777 (n, 0.0, dtop)
1780 let getanchory (n, top, dtop) =
1781 let y, h = getpageyh n in
1782 if conf.presentation
1783 then
1784 let ips = calcips h in
1785 y + truncate (top*.float h -. dtop*.float ips) + ips;
1786 else
1787 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1790 let gotoanchor anchor =
1791 gotoy (getanchory anchor);
1794 let addnav () =
1795 cbput state.hists.nav (getanchor ());
1798 let getnav dir =
1799 let anchor = cbgetc state.hists.nav dir in
1800 getanchory anchor;
1803 let gotoghyll y =
1804 let scroll f n a b =
1805 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1806 let snake f a b =
1807 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1808 if f < a
1809 then s (float f /. float a)
1810 else (
1811 if f > b
1812 then 1.0 -. s ((float (f-b) /. float (n-b)))
1813 else 1.0
1816 snake f a b
1817 and summa f n a b =
1818 (* courtesy:
1819 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1820 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1821 let iv1 = iv f in
1822 let ins = float a *. iv1
1823 and outs = float (n-b) *. iv1 in
1824 let ones = b - a in
1825 ins +. outs +. float ones
1827 let rec set (_N, _A, _B) y sy =
1828 let sum = summa 1.0 _N _A _B in
1829 let dy = float (y - sy) in
1830 state.ghyll <- (
1831 let rec gf n y1 o =
1832 if n >= _N
1833 then state.ghyll <- noghyll
1834 else
1835 let go n =
1836 let s = scroll n _N _A _B in
1837 let y1 = y1 +. ((s *. dy) /. sum) in
1838 gotoy_and_clear_text (truncate y1);
1839 state.ghyll <- gf (n+1) y1;
1841 match o with
1842 | None -> go n
1843 | Some y' -> set (_N/2, 1, 1) y' state.y
1845 gf 0 (float state.y)
1848 match conf.ghyllscroll with
1849 | None ->
1850 gotoy_and_clear_text y
1851 | Some nab ->
1852 if state.ghyll == noghyll
1853 then set nab y state.y
1854 else state.ghyll (Some y)
1857 let gotopage n top =
1858 let y, h = getpageyh n in
1859 let y = y + (truncate (top *. float h)) in
1860 gotoghyll y
1863 let gotopage1 n top =
1864 let y = getpagey n in
1865 let y = y + top in
1866 gotoghyll y
1869 let invalidate s f =
1870 state.layout <- [];
1871 state.pdims <- [];
1872 state.rects <- [];
1873 state.rects1 <- [];
1874 match state.geomcmds with
1875 | ps, [] when String.length ps = 0 ->
1876 f ();
1877 state.geomcmds <- s, [];
1879 | ps, [] ->
1880 state.geomcmds <- ps, [s, f];
1882 | ps, (s', _) :: rest when s' = s ->
1883 state.geomcmds <- ps, ((s, f) :: rest);
1885 | ps, cmds ->
1886 state.geomcmds <- ps, ((s, f) :: cmds);
1889 let flushpages () =
1890 Hashtbl.iter (fun _ opaque ->
1891 wcmd "freepage %s" opaque;
1892 ) state.pagemap;
1893 Hashtbl.clear state.pagemap;
1896 let flushtiles () =
1897 if not (Queue.is_empty state.tilelru)
1898 then (
1899 Queue.iter (fun (k, p, s) ->
1900 wcmd "freetile %s" p;
1901 state.memused <- state.memused - s;
1902 Hashtbl.remove state.tilemap k;
1903 ) state.tilelru;
1904 state.uioh#infochanged Memused;
1905 Queue.clear state.tilelru;
1907 load state.layout;
1910 let opendoc path password =
1911 state.path <- path;
1912 state.password <- password;
1913 state.gen <- state.gen + 1;
1914 state.docinfo <- [];
1916 flushpages ();
1917 setaalevel conf.aalevel;
1918 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename path)));
1919 wcmd "open %d %s\000%s\000" (btod !wtmode) path password;
1920 invalidate "reqlayout"
1921 (fun () ->
1922 wcmd "reqlayout %d %d %s\000"
1923 conf.angle (btod conf.proportional) state.nameddest;
1927 let reload () =
1928 state.anchor <- getanchor ();
1929 opendoc state.path state.password;
1932 let scalecolor c =
1933 let c = c *. conf.colorscale in
1934 (c, c, c);
1937 let scalecolor2 (r, g, b) =
1938 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1941 let docolumns = function
1942 | Csingle _ ->
1943 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1944 let rec loop pageno pdimno pdim y ph pdims =
1945 if pageno = state.pagecount
1946 then ()
1947 else
1948 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1949 match pdims with
1950 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1951 pdimno+1, pdim, rest
1952 | _ ->
1953 pdimno, pdim, pdims
1955 let x = max 0 (((state.winw - state.scrollw - w) / 2) - xoff) in
1956 let y = y +
1957 (if conf.presentation
1958 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1959 else (if pageno = 0 then 0 else conf.interpagespace)
1962 a.(pageno) <- (pdimno, x, y, pdim);
1963 loop (pageno+1) pdimno pdim (y + h) h pdims
1965 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1966 conf.columns <- Csingle a;
1968 | Cmulti ((columns, coverA, coverB), _) ->
1969 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1970 let rec loop pageno pdimno pdim x y rowh pdims =
1971 let rec fixrow m = if m = pageno then () else
1972 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1973 if h < rowh
1974 then (
1975 let y = y + (rowh - h) / 2 in
1976 a.(m) <- (pdimno, x, y, pdim);
1978 fixrow (m+1)
1980 if pageno = state.pagecount
1981 then fixrow (((pageno - 1) / columns) * columns)
1982 else
1983 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1984 match pdims with
1985 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1986 pdimno+1, pdim, rest
1987 | _ ->
1988 pdimno, pdim, pdims
1990 let x, y, rowh' =
1991 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1992 then (
1993 let x = (state.winw - state.scrollw - w) / 2 in
1994 let ips =
1995 if conf.presentation then calcips h else conf.interpagespace in
1996 x, y + ips + rowh, h
1998 else (
1999 if (pageno - coverA) mod columns = 0
2000 then (
2001 let x = max 0 (state.winw - state.scrollw - state.w) / 2 in
2002 let y =
2003 if conf.presentation
2004 then
2005 let ips = calcips h in
2006 y + (if pageno = 0 then 0 else calcips rowh + ips)
2007 else
2008 y + (if pageno = 0 then 0 else conf.interpagespace)
2010 x, y + rowh, h
2012 else x, y, max rowh h
2015 let y =
2016 if pageno > 1 && (pageno - coverA) mod columns = 0
2017 then (
2018 let y =
2019 if pageno = columns && conf.presentation
2020 then (
2021 let ips = calcips rowh in
2022 for i = 0 to pred columns
2024 let (pdimno, x, y, pdim) = a.(i) in
2025 a.(i) <- (pdimno, x, y+ips, pdim)
2026 done;
2027 y+ips;
2029 else y
2031 fixrow (pageno - columns);
2034 else y
2036 a.(pageno) <- (pdimno, x, y, pdim);
2037 let x = x + w + xoff*2 + conf.interpagespace in
2038 loop (pageno+1) pdimno pdim x y rowh' pdims
2040 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2041 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2043 | Csplit (c, _) ->
2044 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2045 let rec loop pageno pdimno pdim y pdims =
2046 if pageno = state.pagecount
2047 then ()
2048 else
2049 let pdimno, ((_, w, h, _) as pdim), pdims =
2050 match pdims with
2051 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2052 pdimno+1, pdim, rest
2053 | _ ->
2054 pdimno, pdim, pdims
2056 let cw = w / c in
2057 let rec loop1 n x y =
2058 if n = c then y else (
2059 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2060 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2063 let y = loop1 0 0 y in
2064 loop (pageno+1) pdimno pdim y pdims
2066 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2067 conf.columns <- Csplit (c, a);
2070 let represent () =
2071 docolumns conf.columns;
2072 state.maxy <- calcheight ();
2073 state.hscrollh <-
2074 if state.x = 0 && state.w <= state.winw - state.scrollw
2075 then 0
2076 else state.scrollw
2078 if state.reprf == noreprf
2079 then (
2080 match state.mode with
2081 | Birdseye (_, _, pageno, _, _) ->
2082 let y, h = getpageyh pageno in
2083 let top = (state.winh - h) / 2 in
2084 gotoy (max 0 (y - top))
2085 | _ -> gotoanchor state.anchor
2087 else (
2088 state.reprf ();
2089 state.reprf <- noreprf;
2093 let reshape w h =
2094 GlDraw.viewport 0 0 w h;
2095 let firsttime = state.geomcmds == firstgeomcmds in
2096 if not firsttime && nogeomcmds state.geomcmds
2097 then state.anchor <- getanchor ();
2099 state.winw <- w;
2100 let w = truncate (float w *. conf.zoom) - state.scrollw in
2101 let w = max w 2 in
2102 state.winh <- h;
2103 setfontsize fstate.fontsize;
2104 GlMat.mode `modelview;
2105 GlMat.load_identity ();
2107 GlMat.mode `projection;
2108 GlMat.load_identity ();
2109 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2110 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2111 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2113 let relx =
2114 if conf.zoom <= 1.0
2115 then 0.0
2116 else float state.x /. float state.w
2118 invalidate "geometry"
2119 (fun () ->
2120 state.w <- w;
2121 if not firsttime
2122 then state.x <- truncate (relx *. float w);
2123 let w =
2124 match conf.columns with
2125 | Csingle _ -> w
2126 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2127 | Csplit (c, _) -> w * c
2129 wcmd "geometry %d %d" w h);
2132 let enttext () =
2133 let len = String.length state.text in
2134 let drawstring s =
2135 let hscrollh =
2136 match state.mode with
2137 | Textentry _
2138 | View ->
2139 let h, _, _ = state.uioh#scrollpw in
2141 | _ -> 0
2143 let rect x w =
2144 GlDraw.rect
2145 (x, float (state.winh - (fstate.fontsize + 4) - hscrollh))
2146 (x+.w, float (state.winh - hscrollh))
2149 let w = float (state.winw - state.scrollw - 1) in
2150 if state.progress >= 0.0 && state.progress < 1.0
2151 then (
2152 GlDraw.color (0.3, 0.3, 0.3);
2153 let w1 = w *. state.progress in
2154 rect 0.0 w1;
2155 GlDraw.color (0.0, 0.0, 0.0);
2156 rect w1 (w-.w1)
2158 else (
2159 GlDraw.color (0.0, 0.0, 0.0);
2160 rect 0.0 w;
2163 GlDraw.color (1.0, 1.0, 1.0);
2164 drawstring fstate.fontsize
2165 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2167 let s =
2168 match state.mode with
2169 | Textentry ((prefix, text, _, _, _, _), _) ->
2170 let s =
2171 if len > 0
2172 then
2173 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2174 else
2175 Printf.sprintf "%s%s_" prefix text
2179 | _ -> state.text
2181 let s =
2182 if state.newerrmsgs
2183 then (
2184 if not (istextentry state.mode)
2185 then
2186 let s1 = "(press 'e' to review error messasges)" in
2187 if String.length s > 0 then s ^ " " ^ s1 else s1
2188 else s
2190 else s
2192 if String.length s > 0
2193 then drawstring s
2196 let gctiles () =
2197 let len = Queue.length state.tilelru in
2198 let layout = lazy (
2199 match state.throttle with
2200 | None ->
2201 if conf.preload
2202 then preloadlayout state.y
2203 else state.layout
2204 | Some (layout, _, _) ->
2205 layout
2206 ) in
2207 let rec loop qpos =
2208 if state.memused <= conf.memlimit
2209 then ()
2210 else (
2211 if qpos < len
2212 then
2213 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2214 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2215 let (_, pw, ph, _) = getpagedim n in
2217 gen = state.gen
2218 && colorspace = conf.colorspace
2219 && angle = conf.angle
2220 && pagew = pw
2221 && pageh = ph
2222 && (
2223 let x = col*conf.tilew
2224 and y = row*conf.tileh in
2225 tilevisible (Lazy.force_val layout) n x y
2227 then Queue.push lruitem state.tilelru
2228 else (
2229 freepbo p;
2230 wcmd "freetile %s" p;
2231 state.memused <- state.memused - s;
2232 state.uioh#infochanged Memused;
2233 Hashtbl.remove state.tilemap k;
2235 loop (qpos+1)
2238 loop 0
2241 let logcurrently = function
2242 | Idle -> dolog "Idle"
2243 | Loading (l, gen) ->
2244 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2245 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2246 dolog
2247 "Tiling %d[%d,%d] page=%s cs=%s angle"
2248 l.pageno col row pageopaque
2249 (colorspace_to_string colorspace)
2251 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2252 angle gen conf.angle state.gen
2253 tilew tileh
2254 conf.tilew conf.tileh
2256 | Outlining _ ->
2257 dolog "outlining"
2260 let splitatspace =
2261 let r = Str.regexp " " in
2262 fun s -> Str.bounded_split r s 2;
2265 let onpagerect pageno f =
2266 let b =
2267 match conf.columns with
2268 | Cmulti (_, b) -> b
2269 | Csingle b -> b
2270 | Csplit (_, b) -> b
2272 if pageno >= 0 && pageno < Array.length b
2273 then
2274 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2275 let r = getpdimrect pdimno in
2276 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2279 let gotopagexy pageno x y =
2280 onpagerect pageno (fun w h ->
2281 let top = y /. h in
2282 let _,w1,_,leftx = getpagedim pageno in
2283 let wh = state.winh - state.hscrollh in
2284 let sw = float w1 /. w in
2285 let x = sw *. x in
2286 let x = leftx + state.x + truncate x in
2287 let sx =
2288 if x < 0 || x >= state.winw - state.scrollw
2289 then state.x - x
2290 else state.x
2292 let py, h = getpageyh pageno in
2293 let y' = py + truncate (top *. float h) in
2294 let dy = y' - state.y in
2295 let sy =
2296 if x != state.x || not (dy > 0 && dy < wh)
2297 then (
2298 if conf.presentation
2299 then
2300 if abs (py - y') > wh
2301 then y'
2302 else py
2303 else y';
2305 else state.y
2307 if state.x != sx || state.y != sy
2308 then (
2309 let x, y =
2310 if !wtmode
2311 then (
2312 let ww = state.winw - state.scrollw in
2313 let qx = sx / ww
2314 and qy = sy / wh in
2315 let x = qx * ww
2316 and y = qy * wh in
2317 let x = if -x + ww > w1 then -(w1-ww) else x
2318 and y' = if y + wh > state.maxy then state.maxy - wh else y in
2319 let y =
2320 if conf.presentation
2321 then
2322 if abs (py - y') > wh
2323 then y'
2324 else py
2325 else y';
2327 (x, y)
2329 else (sx, sy)
2331 state.x <- x;
2332 state.hscrollh <-
2333 if x = 0 && state.w <= state.winw - state.scrollw
2334 then 0
2335 else state.scrollw
2337 gotoy_and_clear_text y;
2339 else gotoy_and_clear_text state.y;
2343 let act cmds =
2344 (* dolog "%S" cmds; *)
2345 let cl = splitatspace cmds in
2346 let scan s fmt f =
2347 try Scanf.sscanf s fmt f
2348 with exn ->
2349 dolog "error processing '%S': %s" cmds (exntos exn);
2350 exit 1
2352 match cl with
2353 | "clear" :: [] ->
2354 state.uioh#infochanged Pdim;
2355 state.pdims <- [];
2357 | "clearrects" :: [] ->
2358 state.rects <- state.rects1;
2359 G.postRedisplay "clearrects";
2361 | "continue" :: args :: [] ->
2362 let n = scan args "%u" (fun n -> n) in
2363 state.pagecount <- n;
2364 begin match state.currently with
2365 | Outlining l ->
2366 state.currently <- Idle;
2367 state.outlines <- Array.of_list (List.rev l)
2368 | _ -> ()
2369 end;
2371 let cur, cmds = state.geomcmds in
2372 if String.length cur = 0
2373 then failwith "umpossible";
2375 begin match List.rev cmds with
2376 | [] ->
2377 state.geomcmds <- "", [];
2378 represent ();
2379 | (s, f) :: rest ->
2380 f ();
2381 state.geomcmds <- s, List.rev rest;
2382 end;
2383 if conf.maxwait = None && not !wtmode
2384 then G.postRedisplay "continue";
2386 | "title" :: args :: [] ->
2387 Wsi.settitle args
2389 | "msg" :: args :: [] ->
2390 showtext ' ' args
2392 | "vmsg" :: args :: [] ->
2393 if conf.verbose
2394 then showtext ' ' args
2396 | "emsg" :: args :: [] ->
2397 Buffer.add_string state.errmsgs args;
2398 state.newerrmsgs <- true;
2399 G.postRedisplay "error message"
2401 | "progress" :: args :: [] ->
2402 let progress, text =
2403 scan args "%f %n"
2404 (fun f pos ->
2405 f, String.sub args pos (String.length args - pos))
2407 state.text <- text;
2408 state.progress <- progress;
2409 G.postRedisplay "progress"
2411 | "firstmatch" :: args :: [] ->
2412 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2413 scan args "%u %d %f %f %f %f %f %f %f %f"
2414 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2415 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2417 let y = (getpagey pageno) + truncate y0 in
2418 addnav ();
2419 gotoy y;
2420 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2422 | "match" :: args :: [] ->
2423 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2424 scan args "%u %d %f %f %f %f %f %f %f %f"
2425 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2426 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2428 state.rects1 <-
2429 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2431 | "page" :: args :: [] ->
2432 let pageopaque, t = scan args "%s %f" (fun p t -> p, t) in
2433 begin match state.currently with
2434 | Loading (l, gen) ->
2435 vlog "page %d took %f sec" l.pageno t;
2436 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2437 begin match state.throttle with
2438 | None ->
2439 let preloadedpages =
2440 if conf.preload
2441 then preloadlayout state.y
2442 else state.layout
2444 let evict () =
2445 let module IntSet =
2446 Set.Make (struct type t = int let compare = (-) end) in
2447 let set =
2448 List.fold_left (fun s l -> IntSet.add l.pageno s)
2449 IntSet.empty preloadedpages
2451 let evictedpages =
2452 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2453 if not (IntSet.mem pageno set)
2454 then (
2455 wcmd "freepage %s" opaque;
2456 key :: accu
2458 else accu
2459 ) state.pagemap []
2461 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2463 evict ();
2464 state.currently <- Idle;
2465 if gen = state.gen
2466 then (
2467 tilepage l.pageno pageopaque state.layout;
2468 load state.layout;
2469 load preloadedpages;
2470 if pagevisible state.layout l.pageno
2471 && layoutready state.layout
2472 then G.postRedisplay "page";
2475 | Some (layout, _, _) ->
2476 state.currently <- Idle;
2477 tilepage l.pageno pageopaque layout;
2478 load state.layout
2479 end;
2481 | _ ->
2482 dolog "Inconsistent loading state";
2483 logcurrently state.currently;
2484 exit 1
2487 | "tile" :: args :: [] ->
2488 let (x, y, opaque, size, t) =
2489 scan args "%u %u %s %u %f"
2490 (fun x y p size t -> (x, y, p, size, t))
2492 begin match state.currently with
2493 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2494 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2496 unmappbo opaque;
2497 if tilew != conf.tilew || tileh != conf.tileh
2498 then (
2499 wcmd "freetile %s" opaque;
2500 state.currently <- Idle;
2501 load state.layout;
2503 else (
2504 puttileopaque l col row gen cs angle opaque size t;
2505 state.memused <- state.memused + size;
2506 state.uioh#infochanged Memused;
2507 gctiles ();
2508 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2509 opaque, size) state.tilelru;
2511 let layout =
2512 match state.throttle with
2513 | None -> state.layout
2514 | Some (layout, _, _) -> layout
2517 state.currently <- Idle;
2518 if gen = state.gen
2519 && conf.colorspace = cs
2520 && conf.angle = angle
2521 && tilevisible layout l.pageno x y
2522 then conttiling l.pageno pageopaque;
2524 begin match state.throttle with
2525 | None ->
2526 preload state.layout;
2527 if gen = state.gen
2528 && conf.colorspace = cs
2529 && conf.angle = angle
2530 && tilevisible state.layout l.pageno x y
2531 && (not !wtmode || layoutready state.layout)
2532 then G.postRedisplay "tile nothrottle";
2534 | Some (layout, y, _) ->
2535 let ready = layoutready layout in
2536 if ready
2537 then (
2538 state.y <- y;
2539 state.layout <- layout;
2540 state.throttle <- None;
2541 G.postRedisplay "throttle";
2543 else load layout;
2544 end;
2547 | _ ->
2548 dolog "Inconsistent tiling state";
2549 logcurrently state.currently;
2550 exit 1
2553 | "pdim" :: args :: [] ->
2554 let pdim =
2555 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2557 state.uioh#infochanged Pdim;
2558 state.pdims <- pdim :: state.pdims
2560 | "o" :: args :: [] ->
2561 let (l, n, t, h, pos) =
2562 scan args "%u %u %d %u %n"
2563 (fun l n t h pos -> l, n, t, h, pos)
2565 let s = String.sub args pos (String.length args - pos) in
2566 let outline = (s, l, (n, float t /. float h, 0.0)) in
2567 begin match state.currently with
2568 | Outlining outlines ->
2569 state.currently <- Outlining (outline :: outlines)
2570 | Idle ->
2571 state.currently <- Outlining [outline]
2572 | currently ->
2573 dolog "invalid outlining state";
2574 logcurrently currently
2577 | "a" :: args :: [] ->
2578 let (n, l, t) =
2579 scan args "%u %d %d" (fun n l t -> n, l, t)
2581 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2583 | "info" :: args :: [] ->
2584 state.docinfo <- (1, args) :: state.docinfo
2586 | "infoend" :: [] ->
2587 state.uioh#infochanged Docinfo;
2588 state.docinfo <- List.rev state.docinfo
2590 | _ ->
2591 failwith (Printf.sprintf "unknown cmd `%S'" cmds)
2594 let onhist cb =
2595 let rc = cb.rc in
2596 let action = function
2597 | HCprev -> cbget cb ~-1
2598 | HCnext -> cbget cb 1
2599 | HCfirst -> cbget cb ~-(cb.rc)
2600 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2601 and cancel () = cb.rc <- rc
2602 in (action, cancel)
2605 let search pattern forward =
2606 if String.length pattern > 0
2607 then
2608 let pn, py =
2609 match state.layout with
2610 | [] -> 0, 0
2611 | l :: _ ->
2612 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2614 wcmd "search %d %d %d %d,%s\000"
2615 (btod conf.icase) pn py (btod forward) pattern;
2618 let intentry text key =
2619 let c =
2620 if key >= 32 && key < 127
2621 then Char.chr key
2622 else '\000'
2624 match c with
2625 | '0' .. '9' ->
2626 let text = addchar text c in
2627 TEcont text
2629 | _ ->
2630 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2631 TEcont text
2634 let linknentry text key =
2635 let c =
2636 if key >= 32 && key < 127
2637 then Char.chr key
2638 else '\000'
2640 match c with
2641 | 'a' .. 'z' ->
2642 let text = addchar text c in
2643 TEcont text
2645 | _ ->
2646 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2647 TEcont text
2650 let linkndone f s =
2651 if String.length s > 0
2652 then (
2653 let n =
2654 let l = String.length s in
2655 let rec loop pos n = if pos = l then n else
2656 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2657 loop (pos+1) (n*26 + m)
2658 in loop 0 0
2660 let rec loop n = function
2661 | [] -> ()
2662 | l :: rest ->
2663 match getopaque l.pageno with
2664 | None -> loop n rest
2665 | Some opaque ->
2666 let m = getlinkcount opaque in
2667 if n < m
2668 then (
2669 let under = getlink opaque n in
2670 f under
2672 else loop (n-m) rest
2674 loop n state.layout;
2678 let textentry text key =
2679 if key land 0xff00 = 0xff00
2680 then TEcont text
2681 else TEcont (text ^ toutf8 key)
2684 let reqlayout angle proportional =
2685 match state.throttle with
2686 | None ->
2687 if nogeomcmds state.geomcmds
2688 then state.anchor <- getanchor ();
2689 conf.angle <- angle mod 360;
2690 if conf.angle != 0
2691 then (
2692 match state.mode with
2693 | LinkNav _ -> state.mode <- View
2694 | _ -> ()
2696 conf.proportional <- proportional;
2697 invalidate "reqlayout"
2698 (fun () -> wcmd "reqlayout %d %d" conf.angle (btod proportional));
2699 | _ -> ()
2702 let settrim trimmargins trimfuzz =
2703 if nogeomcmds state.geomcmds
2704 then state.anchor <- getanchor ();
2705 conf.trimmargins <- trimmargins;
2706 conf.trimfuzz <- trimfuzz;
2707 let x0, y0, x1, y1 = trimfuzz in
2708 invalidate "settrim"
2709 (fun () ->
2710 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2711 flushpages ();
2714 let setzoom zoom =
2715 match state.throttle with
2716 | None ->
2717 let zoom = max 0.01 zoom in
2718 if zoom <> conf.zoom
2719 then (
2720 state.prevzoom <- conf.zoom;
2721 conf.zoom <- zoom;
2722 reshape state.winw state.winh;
2723 state.text <- Printf.sprintf "zoom is now %-5.1f" (zoom *. 100.0);
2726 | Some (layout, y, started) ->
2727 let time =
2728 match conf.maxwait with
2729 | None -> 0.0
2730 | Some t -> t
2732 let dt = now () -. started in
2733 if dt > time
2734 then (
2735 state.y <- y;
2736 load layout;
2740 let setcolumns mode columns coverA coverB =
2741 state.prevcolumns <- Some (conf.columns, conf.zoom);
2742 if columns < 0
2743 then (
2744 if isbirdseye mode
2745 then showtext '!' "split mode doesn't work in bird's eye"
2746 else (
2747 conf.columns <- Csplit (-columns, [||]);
2748 state.x <- 0;
2749 conf.zoom <- 1.0;
2752 else (
2753 if columns < 2
2754 then (
2755 conf.columns <- Csingle [||];
2756 state.x <- 0;
2757 setzoom 1.0;
2759 else (
2760 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2761 conf.zoom <- 1.0;
2764 reshape state.winw state.winh;
2767 let enterbirdseye () =
2768 let zoom = float conf.thumbw /. float state.winw in
2769 let birdseyepageno =
2770 let cy = state.winh / 2 in
2771 let fold = function
2772 | [] -> 0
2773 | l :: rest ->
2774 let rec fold best = function
2775 | [] -> best.pageno
2776 | l :: rest ->
2777 let d = cy - (l.pagedispy + l.pagevh/2)
2778 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2779 if abs d < abs dbest
2780 then fold l rest
2781 else best.pageno
2782 in fold l rest
2784 fold state.layout
2786 state.mode <- Birdseye (
2787 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2789 conf.zoom <- zoom;
2790 conf.presentation <- false;
2791 conf.interpagespace <- 10;
2792 conf.hlinks <- false;
2793 state.x <- 0;
2794 state.mstate <- Mnone;
2795 conf.maxwait <- None;
2796 conf.columns <- (
2797 match conf.beyecolumns with
2798 | Some c ->
2799 conf.zoom <- 1.0;
2800 Cmulti ((c, 0, 0), [||])
2801 | None -> Csingle [||]
2803 Wsi.setcursor Wsi.CURSOR_INHERIT;
2804 if conf.verbose
2805 then
2806 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2807 (100.0*.zoom)
2808 else
2809 state.text <- ""
2811 reshape state.winw state.winh;
2814 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2815 state.mode <- View;
2816 conf.zoom <- c.zoom;
2817 conf.presentation <- c.presentation;
2818 conf.interpagespace <- c.interpagespace;
2819 conf.maxwait <- c.maxwait;
2820 conf.hlinks <- c.hlinks;
2821 conf.beyecolumns <- (
2822 match conf.columns with
2823 | Cmulti ((c, _, _), _) -> Some c
2824 | Csingle _ -> None
2825 | Csplit _ -> failwith "leaving bird's eye split mode"
2827 conf.columns <- (
2828 match c.columns with
2829 | Cmulti (c, _) -> Cmulti (c, [||])
2830 | Csingle _ -> Csingle [||]
2831 | Csplit (c, _) -> Csplit (c, [||])
2833 state.x <- leftx;
2834 if conf.verbose
2835 then
2836 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2837 (100.0*.conf.zoom)
2839 reshape state.winw state.winh;
2840 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2843 let togglebirdseye () =
2844 match state.mode with
2845 | Birdseye vals -> leavebirdseye vals true
2846 | View -> enterbirdseye ()
2847 | _ -> ()
2850 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2851 let pageno = max 0 (pageno - incr) in
2852 let rec loop = function
2853 | [] -> gotopage1 pageno 0
2854 | l :: _ when l.pageno = pageno ->
2855 if l.pagedispy >= 0 && l.pagey = 0
2856 then G.postRedisplay "upbirdseye"
2857 else gotopage1 pageno 0
2858 | _ :: rest -> loop rest
2860 loop state.layout;
2861 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2864 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2865 let pageno = min (state.pagecount - 1) (pageno + incr) in
2866 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2867 let rec loop = function
2868 | [] ->
2869 let y, h = getpageyh pageno in
2870 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2871 gotoy (clamp dy)
2872 | l :: _ when l.pageno = pageno ->
2873 if l.pagevh != l.pageh
2874 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2875 else G.postRedisplay "downbirdseye"
2876 | _ :: rest -> loop rest
2878 loop state.layout
2881 let optentry mode _ key =
2882 let btos b = if b then "on" else "off" in
2883 if key >= 32 && key < 127
2884 then
2885 let c = Char.chr key in
2886 match c with
2887 | 's' ->
2888 let ondone s =
2889 try conf.scrollstep <- int_of_string s with exc ->
2890 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2892 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2894 | 'A' ->
2895 let ondone s =
2897 conf.autoscrollstep <- int_of_string s;
2898 if state.autoscroll <> None
2899 then state.autoscroll <- Some conf.autoscrollstep
2900 with exc ->
2901 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2903 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2905 | 'C' ->
2906 let ondone s =
2908 let n, a, b = multicolumns_of_string s in
2909 setcolumns mode n a b;
2910 with exc ->
2911 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2913 TEswitch ("columns: ", "", None, textentry, ondone, true)
2915 | 'Z' ->
2916 let ondone s =
2918 let zoom = float (int_of_string s) /. 100.0 in
2919 setzoom zoom
2920 with exc ->
2921 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2923 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2925 | 't' ->
2926 let ondone s =
2928 conf.thumbw <- bound (int_of_string s) 2 4096;
2929 state.text <-
2930 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2931 begin match mode with
2932 | Birdseye beye ->
2933 leavebirdseye beye false;
2934 enterbirdseye ();
2935 | _ -> ();
2937 with exc ->
2938 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2940 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2942 | 'R' ->
2943 let ondone s =
2944 match try
2945 Some (int_of_string s)
2946 with exc ->
2947 state.text <- Printf.sprintf "bad integer `%s': %s"
2948 s (exntos exc);
2949 None
2950 with
2951 | Some angle -> reqlayout angle conf.proportional
2952 | None -> ()
2954 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2956 | 'i' ->
2957 conf.icase <- not conf.icase;
2958 TEdone ("case insensitive search " ^ (btos conf.icase))
2960 | 'p' ->
2961 conf.preload <- not conf.preload;
2962 gotoy state.y;
2963 TEdone ("preload " ^ (btos conf.preload))
2965 | 'v' ->
2966 conf.verbose <- not conf.verbose;
2967 TEdone ("verbose " ^ (btos conf.verbose))
2969 | 'd' ->
2970 conf.debug <- not conf.debug;
2971 TEdone ("debug " ^ (btos conf.debug))
2973 | 'h' ->
2974 conf.maxhfit <- not conf.maxhfit;
2975 state.maxy <- calcheight ();
2976 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2978 | 'c' ->
2979 conf.crophack <- not conf.crophack;
2980 TEdone ("crophack " ^ btos conf.crophack)
2982 | 'a' ->
2983 let s =
2984 match conf.maxwait with
2985 | None ->
2986 conf.maxwait <- Some infinity;
2987 "always wait for page to complete"
2988 | Some _ ->
2989 conf.maxwait <- None;
2990 "show placeholder if page is not ready"
2992 TEdone s
2994 | 'f' ->
2995 conf.underinfo <- not conf.underinfo;
2996 TEdone ("underinfo " ^ btos conf.underinfo)
2998 | 'P' ->
2999 conf.savebmarks <- not conf.savebmarks;
3000 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
3002 | 'S' ->
3003 let ondone s =
3005 let pageno, py =
3006 match state.layout with
3007 | [] -> 0, 0
3008 | l :: _ ->
3009 l.pageno, l.pagey
3011 conf.interpagespace <- int_of_string s;
3012 docolumns conf.columns;
3013 state.maxy <- calcheight ();
3014 let y = getpagey pageno in
3015 gotoy (y + py)
3016 with exc ->
3017 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3019 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
3021 | 'l' ->
3022 reqlayout conf.angle (not conf.proportional);
3023 TEdone ("proportional display " ^ btos conf.proportional)
3025 | 'T' ->
3026 settrim (not conf.trimmargins) conf.trimfuzz;
3027 TEdone ("trim margins " ^ btos conf.trimmargins)
3029 | 'I' ->
3030 conf.invert <- not conf.invert;
3031 TEdone ("invert colors " ^ btos conf.invert)
3033 | 'x' ->
3034 let ondone s =
3035 cbput state.hists.sel s;
3036 conf.selcmd <- s;
3038 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3039 textentry, ondone, true)
3041 | _ ->
3042 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3043 TEstop
3044 else
3045 TEcont state.text
3048 class type lvsource = object
3049 method getitemcount : int
3050 method getitem : int -> (string * int)
3051 method hasaction : int -> bool
3052 method exit :
3053 uioh:uioh ->
3054 cancel:bool ->
3055 active:int ->
3056 first:int ->
3057 pan:int ->
3058 qsearch:string ->
3059 uioh option
3060 method getactive : int
3061 method getfirst : int
3062 method getqsearch : string
3063 method setqsearch : string -> unit
3064 method getpan : int
3065 end;;
3067 class virtual lvsourcebase = object
3068 val mutable m_active = 0
3069 val mutable m_first = 0
3070 val mutable m_qsearch = ""
3071 val mutable m_pan = 0
3072 method getactive = m_active
3073 method getfirst = m_first
3074 method getqsearch = m_qsearch
3075 method getpan = m_pan
3076 method setqsearch s = m_qsearch <- s
3077 end;;
3079 let withoutlastutf8 s =
3080 let len = String.length s in
3081 if len = 0
3082 then s
3083 else
3084 let rec find pos =
3085 if pos = 0
3086 then pos
3087 else
3088 let b = Char.code s.[pos] in
3089 if b land 0b11000000 = 0b11000000
3090 then pos
3091 else find (pos-1)
3093 let first =
3094 if Char.code s.[len-1] land 0x80 = 0
3095 then len-1
3096 else find (len-1)
3098 String.sub s 0 first;
3101 let textentrykeyboard
3102 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3103 let key =
3104 if key >= 0xffb0 && key <= 0xffb9
3105 then key - 0xffb0 + 48 else key
3107 let enttext te =
3108 state.mode <- Textentry (te, onleave);
3109 state.text <- "";
3110 enttext ();
3111 G.postRedisplay "textentrykeyboard enttext";
3113 let histaction cmd =
3114 match opthist with
3115 | None -> ()
3116 | Some (action, _) ->
3117 state.mode <- Textentry (
3118 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3120 G.postRedisplay "textentry histaction"
3122 match key with
3123 | 0xff08 -> (* backspace *)
3124 let s = withoutlastutf8 text in
3125 let len = String.length s in
3126 if cancelonempty && len = 0
3127 then (
3128 onleave Cancel;
3129 G.postRedisplay "textentrykeyboard after cancel";
3131 else (
3132 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3135 | 0xff0d | 0xff8d -> (* (kp) enter *)
3136 ondone text;
3137 onleave Confirm;
3138 G.postRedisplay "textentrykeyboard after confirm"
3140 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3141 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3142 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3143 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3145 | 0xff1b -> (* escape*)
3146 if String.length text = 0
3147 then (
3148 begin match opthist with
3149 | None -> ()
3150 | Some (_, onhistcancel) -> onhistcancel ()
3151 end;
3152 onleave Cancel;
3153 state.text <- "";
3154 G.postRedisplay "textentrykeyboard after cancel2"
3156 else (
3157 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3160 | 0xff9f | 0xffff -> () (* delete *)
3162 | _ when key != 0
3163 && key land 0xff00 != 0xff00 (* keyboard *)
3164 && key land 0xfe00 != 0xfe00 (* xkb *)
3165 && key land 0xfd00 != 0xfd00 (* 3270 *)
3167 begin match onkey text key with
3168 | TEdone text ->
3169 ondone text;
3170 onleave Confirm;
3171 G.postRedisplay "textentrykeyboard after confirm2";
3173 | TEcont text ->
3174 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3176 | TEstop ->
3177 onleave Cancel;
3178 G.postRedisplay "textentrykeyboard after cancel3"
3180 | TEswitch te ->
3181 state.mode <- Textentry (te, onleave);
3182 G.postRedisplay "textentrykeyboard switch";
3183 end;
3185 | _ ->
3186 vlog "unhandled key %s" (Wsi.keyname key)
3189 let firstof first active =
3190 if first > active || abs (first - active) > fstate.maxrows - 1
3191 then max 0 (active - (fstate.maxrows/2))
3192 else first
3195 let calcfirst first active =
3196 if active > first
3197 then
3198 let rows = active - first in
3199 if rows > fstate.maxrows then active - fstate.maxrows else first
3200 else active
3203 let scrollph y maxy =
3204 let sh = (float (maxy + state.winh) /. float state.winh) in
3205 let sh = float state.winh /. sh in
3206 let sh = max sh (float conf.scrollh) in
3208 let percent =
3209 if y = state.maxy
3210 then 1.0
3211 else float y /. float maxy
3213 let position = (float state.winh -. sh) *. percent in
3215 let position =
3216 if position +. sh > float state.winh
3217 then float state.winh -. sh
3218 else position
3220 position, sh;
3223 let coe s = (s :> uioh);;
3225 class listview ~(source:lvsource) ~trusted ~modehash =
3226 object (self)
3227 val m_pan = source#getpan
3228 val m_first = source#getfirst
3229 val m_active = source#getactive
3230 val m_qsearch = source#getqsearch
3231 val m_prev_uioh = state.uioh
3233 method private elemunder y =
3234 let n = y / (fstate.fontsize+1) in
3235 if m_first + n < source#getitemcount
3236 then (
3237 if source#hasaction (m_first + n)
3238 then Some (m_first + n)
3239 else None
3241 else None
3243 method display =
3244 Gl.enable `blend;
3245 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3246 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3247 GlDraw.rect (0., 0.) (float state.winw, float state.winh);
3248 GlDraw.color (1., 1., 1.);
3249 Gl.enable `texture_2d;
3250 let fs = fstate.fontsize in
3251 let nfs = fs + 1 in
3252 let ww = fstate.wwidth in
3253 let tabw = 30.0*.ww in
3254 let itemcount = source#getitemcount in
3255 let rec loop row =
3256 if (row - m_first) > fstate.maxrows
3257 then ()
3258 else (
3259 if row >= 0 && row < itemcount
3260 then (
3261 let (s, level) = source#getitem row in
3262 let y = (row - m_first) * nfs in
3263 let x = 5.0 +. float (level + m_pan) *. ww in
3264 if row = m_active
3265 then (
3266 Gl.disable `texture_2d;
3267 GlDraw.polygon_mode `both `line;
3268 GlDraw.color (1., 1., 1.) ~alpha:0.9;
3269 GlDraw.rect (1., float (y + 1))
3270 (float (state.winw - conf.scrollbw - 1), float (y + fs + 3));
3271 GlDraw.polygon_mode `both `fill;
3272 GlDraw.color (1., 1., 1.);
3273 Gl.enable `texture_2d;
3276 let drawtabularstring s =
3277 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3278 if trusted
3279 then
3280 let tabpos = try String.index s '\t' with Not_found -> -1 in
3281 if tabpos > 0
3282 then
3283 let len = String.length s - tabpos - 1 in
3284 let s1 = String.sub s 0 tabpos
3285 and s2 = String.sub s (tabpos + 1) len in
3286 let nx = drawstr x s1 in
3287 let sw = nx -. x in
3288 let x = x +. (max tabw sw) in
3289 drawstr x s2
3290 else
3291 drawstr x s
3292 else
3293 drawstr x s
3295 let _ = drawtabularstring s in
3296 loop (row+1)
3300 loop m_first;
3301 Gl.disable `blend;
3302 Gl.disable `texture_2d;
3304 method updownlevel incr =
3305 let len = source#getitemcount in
3306 let curlevel =
3307 if m_active >= 0 && m_active < len
3308 then snd (source#getitem m_active)
3309 else -1
3311 let rec flow i =
3312 if i = len then i-1 else if i = -1 then 0 else
3313 let _, l = source#getitem i in
3314 if l != curlevel then i else flow (i+incr)
3316 let active = flow m_active in
3317 let first = calcfirst m_first active in
3318 G.postRedisplay "outline updownlevel";
3319 {< m_active = active; m_first = first >}
3321 method private key1 key mask =
3322 let set1 active first qsearch =
3323 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3325 let search active pattern incr =
3326 let dosearch re =
3327 let rec loop n =
3328 if n >= 0 && n < source#getitemcount
3329 then (
3330 let s, _ = source#getitem n in
3332 (try ignore (Str.search_forward re s 0); true
3333 with Not_found -> false)
3334 then Some n
3335 else loop (n + incr)
3337 else None
3339 loop active
3342 let re = Str.regexp_case_fold pattern in
3343 dosearch re
3344 with Failure s ->
3345 state.text <- s;
3346 None
3348 let itemcount = source#getitemcount in
3349 let find start incr =
3350 let rec find i =
3351 if i = -1 || i = itemcount
3352 then -1
3353 else (
3354 if source#hasaction i
3355 then i
3356 else find (i + incr)
3359 find start
3361 let set active first =
3362 let first = bound first 0 (itemcount - fstate.maxrows) in
3363 state.text <- "";
3364 coe {< m_active = active; m_first = first >}
3366 let navigate incr =
3367 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3368 let active, first =
3369 let incr1 = if incr > 0 then 1 else -1 in
3370 if isvisible m_first m_active
3371 then
3372 let next =
3373 let next = m_active + incr in
3374 let next =
3375 if next < 0 || next >= itemcount
3376 then -1
3377 else find next incr1
3379 if next = -1 || abs (m_active - next) > fstate.maxrows
3380 then -1
3381 else next
3383 if next = -1
3384 then
3385 let first = m_first + incr in
3386 let first = bound first 0 (itemcount - 1) in
3387 let next =
3388 let next = m_active + incr in
3389 let next = bound next 0 (itemcount - 1) in
3390 find next ~-incr1
3392 let active = if next = -1 then m_active else next in
3393 active, first
3394 else
3395 let first = min next m_first in
3396 let first =
3397 if abs (next - first) > fstate.maxrows
3398 then first + incr
3399 else first
3401 next, first
3402 else
3403 let first = m_first + incr in
3404 let first = bound first 0 (itemcount - 1) in
3405 let active =
3406 let next = m_active + incr in
3407 let next = bound next 0 (itemcount - 1) in
3408 let next = find next incr1 in
3409 let active =
3410 if next = -1 || abs (m_active - first) > fstate.maxrows
3411 then (
3412 let active = if m_active = -1 then next else m_active in
3413 active
3415 else next
3417 if isvisible first active
3418 then active
3419 else -1
3421 active, first
3423 G.postRedisplay "listview navigate";
3424 set active first;
3426 match key with
3427 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3428 let incr = if key = 0x72 then -1 else 1 in
3429 let active, first =
3430 match search (m_active + incr) m_qsearch incr with
3431 | None ->
3432 state.text <- m_qsearch ^ " [not found]";
3433 m_active, m_first
3434 | Some active ->
3435 state.text <- m_qsearch;
3436 active, firstof m_first active
3438 G.postRedisplay "listview ctrl-r/s";
3439 set1 active first m_qsearch;
3441 | 0xff08 -> (* backspace *)
3442 if String.length m_qsearch = 0
3443 then coe self
3444 else (
3445 let qsearch = withoutlastutf8 m_qsearch in
3446 let len = String.length qsearch in
3447 if len = 0
3448 then (
3449 state.text <- "";
3450 G.postRedisplay "listview empty qsearch";
3451 set1 m_active m_first "";
3453 else
3454 let active, first =
3455 match search m_active qsearch ~-1 with
3456 | None ->
3457 state.text <- qsearch ^ " [not found]";
3458 m_active, m_first
3459 | Some active ->
3460 state.text <- qsearch;
3461 active, firstof m_first active
3463 G.postRedisplay "listview backspace qsearch";
3464 set1 active first qsearch
3467 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3468 let pattern = m_qsearch ^ toutf8 key in
3469 let active, first =
3470 match search m_active pattern 1 with
3471 | None ->
3472 state.text <- pattern ^ " [not found]";
3473 m_active, m_first
3474 | Some active ->
3475 state.text <- pattern;
3476 active, firstof m_first active
3478 G.postRedisplay "listview qsearch add";
3479 set1 active first pattern;
3481 | 0xff1b -> (* escape *)
3482 state.text <- "";
3483 if String.length m_qsearch = 0
3484 then (
3485 G.postRedisplay "list view escape";
3486 begin
3487 match
3488 source#exit (coe self) true m_active m_first m_pan m_qsearch
3489 with
3490 | None -> m_prev_uioh
3491 | Some uioh -> uioh
3494 else (
3495 G.postRedisplay "list view kill qsearch";
3496 source#setqsearch "";
3497 coe {< m_qsearch = "" >}
3500 | 0xff0d | 0xff8d -> (* (kp) enter *)
3501 state.text <- "";
3502 let self = {< m_qsearch = "" >} in
3503 source#setqsearch "";
3504 let opt =
3505 G.postRedisplay "listview enter";
3506 if m_active >= 0 && m_active < source#getitemcount
3507 then (
3508 source#exit (coe self) false m_active m_first m_pan "";
3510 else (
3511 source#exit (coe self) true m_active m_first m_pan "";
3514 begin match opt with
3515 | None -> m_prev_uioh
3516 | Some uioh -> uioh
3519 | 0xff9f | 0xffff -> (* (kp) delete *)
3520 coe self
3522 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3523 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3524 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3525 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3527 | 0xff53 | 0xff98 -> (* (kp) right *)
3528 state.text <- "";
3529 G.postRedisplay "listview right";
3530 coe {< m_pan = m_pan - 1 >}
3532 | 0xff51 | 0xff96 -> (* (kp) left *)
3533 state.text <- "";
3534 G.postRedisplay "listview left";
3535 coe {< m_pan = m_pan + 1 >}
3537 | 0xff50 | 0xff95 -> (* (kp) home *)
3538 let active = find 0 1 in
3539 G.postRedisplay "listview home";
3540 set active 0;
3542 | 0xff57 | 0xff9c -> (* (kp) end *)
3543 let first = max 0 (itemcount - fstate.maxrows) in
3544 let active = find (itemcount - 1) ~-1 in
3545 G.postRedisplay "listview end";
3546 set active first;
3548 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3549 coe self
3551 | _ ->
3552 dolog "listview unknown key %#x" key; coe self
3554 method key key mask =
3555 match state.mode with
3556 | Textentry te -> textentrykeyboard key mask te; coe self
3557 | _ -> self#key1 key mask
3559 method button button down x y _ =
3560 let opt =
3561 match button with
3562 | 1 when x > state.winw - conf.scrollbw ->
3563 G.postRedisplay "listview scroll";
3564 if down
3565 then
3566 let _, position, sh = self#scrollph in
3567 if y > truncate position && y < truncate (position +. sh)
3568 then (
3569 state.mstate <- Mscrolly;
3570 Some (coe self)
3572 else
3573 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3574 let first = truncate (s *. float source#getitemcount) in
3575 let first = min source#getitemcount first in
3576 Some (coe {< m_first = first; m_active = first >})
3577 else (
3578 state.mstate <- Mnone;
3579 Some (coe self);
3581 | 1 when not down ->
3582 begin match self#elemunder y with
3583 | Some n ->
3584 G.postRedisplay "listview click";
3585 source#exit
3586 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3587 | _ ->
3588 Some (coe self)
3590 | n when (n == 4 || n == 5) && not down ->
3591 let len = source#getitemcount in
3592 let first =
3593 if n = 5 && m_first + fstate.maxrows >= len
3594 then
3595 m_first
3596 else
3597 let first = m_first + (if n == 4 then -1 else 1) in
3598 bound first 0 (len - 1)
3600 G.postRedisplay "listview wheel";
3601 Some (coe {< m_first = first >})
3602 | n when (n = 6 || n = 7) && not down ->
3603 let inc = m_first + (if n = 7 then -1 else 1) in
3604 G.postRedisplay "listview hwheel";
3605 Some (coe {< m_pan = m_pan + inc >})
3606 | _ ->
3607 Some (coe self)
3609 match opt with
3610 | None -> m_prev_uioh
3611 | Some uioh -> uioh
3613 method motion _ y =
3614 match state.mstate with
3615 | Mscrolly ->
3616 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3617 let first = truncate (s *. float source#getitemcount) in
3618 let first = min source#getitemcount first in
3619 G.postRedisplay "listview motion";
3620 coe {< m_first = first; m_active = first >}
3621 | _ -> coe self
3623 method pmotion x y =
3624 if x < state.winw - conf.scrollbw
3625 then
3626 let n =
3627 match self#elemunder y with
3628 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3629 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3631 let o =
3632 if n != m_active
3633 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3634 else self
3636 coe o
3637 else (
3638 Wsi.setcursor Wsi.CURSOR_INHERIT;
3639 coe self
3642 method infochanged _ = ()
3644 method scrollpw = (0, 0.0, 0.0)
3645 method scrollph =
3646 let nfs = fstate.fontsize + 1 in
3647 let y = m_first * nfs in
3648 let itemcount = source#getitemcount in
3649 let maxi = max 0 (itemcount - fstate.maxrows) in
3650 let maxy = maxi * nfs in
3651 let p, h = scrollph y maxy in
3652 conf.scrollbw, p, h
3654 method modehash = modehash
3655 end;;
3657 class outlinelistview ~source =
3658 object (self)
3659 inherit listview
3660 ~source:(source :> lvsource)
3661 ~trusted:false
3662 ~modehash:(findkeyhash conf "outline")
3663 as super
3665 method key key mask =
3666 let calcfirst first active =
3667 if active > first
3668 then
3669 let rows = active - first in
3670 let maxrows =
3671 if String.length state.text = 0
3672 then fstate.maxrows
3673 else fstate.maxrows - 2
3675 if rows > maxrows then active - maxrows else first
3676 else active
3678 let navigate incr =
3679 let active = m_active + incr in
3680 let active = bound active 0 (source#getitemcount - 1) in
3681 let first = calcfirst m_first active in
3682 G.postRedisplay "outline navigate";
3683 coe {< m_active = active; m_first = first >}
3685 let ctrl = Wsi.withctrl mask in
3686 match key with
3687 | 110 when ctrl -> (* ctrl-n *)
3688 source#narrow m_qsearch;
3689 G.postRedisplay "outline ctrl-n";
3690 coe {< m_first = 0; m_active = 0 >}
3692 | 117 when ctrl -> (* ctrl-u *)
3693 source#denarrow;
3694 G.postRedisplay "outline ctrl-u";
3695 state.text <- "";
3696 coe {< m_first = 0; m_active = 0 >}
3698 | 108 when ctrl -> (* ctrl-l *)
3699 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3700 G.postRedisplay "outline ctrl-l";
3701 coe {< m_first = first >}
3703 | 0xff9f | 0xffff -> (* (kp) delete *)
3704 source#remove m_active;
3705 G.postRedisplay "outline delete";
3706 let active = max 0 (m_active-1) in
3707 coe {< m_first = firstof m_first active;
3708 m_active = active >}
3710 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3711 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3712 | 0xff55 | 0xff9a -> (* (kp) prior *)
3713 navigate ~-(fstate.maxrows)
3714 | 0xff56 | 0xff9b -> (* (kp) next *)
3715 navigate fstate.maxrows
3717 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3718 let o =
3719 if ctrl
3720 then (
3721 G.postRedisplay "outline ctrl right";
3722 {< m_pan = m_pan + 1 >}
3724 else self#updownlevel 1
3726 coe o
3728 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3729 let o =
3730 if ctrl
3731 then (
3732 G.postRedisplay "outline ctrl left";
3733 {< m_pan = m_pan - 1 >}
3735 else self#updownlevel ~-1
3737 coe o
3739 | 0xff50 | 0xff95 -> (* (kp) home *)
3740 G.postRedisplay "outline home";
3741 coe {< m_first = 0; m_active = 0 >}
3743 | 0xff57 | 0xff9c -> (* (kp) end *)
3744 let active = source#getitemcount - 1 in
3745 let first = max 0 (active - fstate.maxrows) in
3746 G.postRedisplay "outline end";
3747 coe {< m_active = active; m_first = first >}
3749 | _ -> super#key key mask
3752 let outlinesource usebookmarks =
3753 let empty = [||] in
3754 (object
3755 inherit lvsourcebase
3756 val mutable m_items = empty
3757 val mutable m_orig_items = empty
3758 val mutable m_prev_items = empty
3759 val mutable m_narrow_pattern = ""
3760 val mutable m_hadremovals = false
3762 method getitemcount =
3763 Array.length m_items + (if m_hadremovals then 1 else 0)
3765 method getitem n =
3766 if n == Array.length m_items && m_hadremovals
3767 then
3768 ("[Confirm removal]", 0)
3769 else
3770 let s, n, _ = m_items.(n) in
3771 (s, n)
3773 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3774 ignore (uioh, first, qsearch);
3775 let confrimremoval = m_hadremovals && active = Array.length m_items in
3776 let items =
3777 if String.length m_narrow_pattern = 0
3778 then m_orig_items
3779 else m_items
3781 if not cancel
3782 then (
3783 if not confrimremoval
3784 then(
3785 let _, _, anchor = m_items.(active) in
3786 gotoghyll (getanchory anchor);
3787 m_items <- items;
3789 else (
3790 state.bookmarks <- Array.to_list m_items;
3791 m_orig_items <- m_items;
3794 else m_items <- items;
3795 m_pan <- pan;
3796 None
3798 method hasaction _ = true
3800 method greetmsg =
3801 if Array.length m_items != Array.length m_orig_items
3802 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3803 else ""
3805 method narrow pattern =
3806 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3807 match reopt with
3808 | None -> ()
3809 | Some re ->
3810 let rec loop accu n =
3811 if n = -1
3812 then (
3813 m_narrow_pattern <- pattern;
3814 m_items <- Array.of_list accu
3816 else
3817 let (s, _, _) as o = m_items.(n) in
3818 let accu =
3819 if (try ignore (Str.search_forward re s 0); true
3820 with Not_found -> false)
3821 then o :: accu
3822 else accu
3824 loop accu (n-1)
3826 loop [] (Array.length m_items - 1)
3828 method denarrow =
3829 m_orig_items <- (
3830 if usebookmarks
3831 then Array.of_list state.bookmarks
3832 else state.outlines
3834 m_items <- m_orig_items
3836 method remove m =
3837 if usebookmarks
3838 then
3839 if m >= 0 && m < Array.length m_items
3840 then (
3841 m_hadremovals <- true;
3842 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3843 let n = if n >= m then n+1 else n in
3844 m_items.(n)
3848 method reset anchor items =
3849 m_hadremovals <- false;
3850 if m_orig_items == empty || m_prev_items != items
3851 then (
3852 m_orig_items <- items;
3853 if String.length m_narrow_pattern = 0
3854 then m_items <- items;
3856 m_prev_items <- items;
3857 let rely = getanchory anchor in
3858 let active =
3859 let rec loop n best bestd =
3860 if n = Array.length m_items
3861 then best
3862 else
3863 let (_, _, anchor) = m_items.(n) in
3864 let orely = getanchory anchor in
3865 let d = abs (orely - rely) in
3866 if d < bestd
3867 then loop (n+1) n d
3868 else loop (n+1) best bestd
3870 loop 0 ~-1 max_int
3872 m_active <- active;
3873 m_first <- firstof m_first active
3874 end)
3877 let enterselector usebookmarks =
3878 let source = outlinesource usebookmarks in
3879 fun errmsg ->
3880 let outlines =
3881 if usebookmarks
3882 then Array.of_list state.bookmarks
3883 else state.outlines
3885 if Array.length outlines = 0
3886 then (
3887 showtext ' ' errmsg;
3889 else (
3890 state.text <- source#greetmsg;
3891 Wsi.setcursor Wsi.CURSOR_INHERIT;
3892 let anchor = getanchor () in
3893 source#reset anchor outlines;
3894 state.uioh <- coe (new outlinelistview ~source);
3895 G.postRedisplay "enter selector";
3899 let enteroutlinemode =
3900 let f = enterselector false in
3901 fun ()-> f "Document has no outline";
3904 let enterbookmarkmode =
3905 let f = enterselector true in
3906 fun () -> f "Document has no bookmarks (yet)";
3909 let color_of_string s =
3910 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3911 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3915 let color_to_string (r, g, b) =
3916 let r = truncate (r *. 256.0)
3917 and g = truncate (g *. 256.0)
3918 and b = truncate (b *. 256.0) in
3919 Printf.sprintf "%d/%d/%d" r g b
3922 let irect_of_string s =
3923 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3926 let irect_to_string (x0,y0,x1,y1) =
3927 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3930 let makecheckers () =
3931 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3932 following to say:
3933 converted by Issac Trotts. July 25, 2002 *)
3934 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3935 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3936 let id = GlTex.gen_texture () in
3937 GlTex.bind_texture `texture_2d id;
3938 GlPix.store (`unpack_alignment 1);
3939 GlTex.image2d image;
3940 List.iter (GlTex.parameter ~target:`texture_2d)
3941 [ `mag_filter `nearest; `min_filter `nearest ];
3945 let setcheckers enabled =
3946 match state.texid with
3947 | None ->
3948 if enabled then state.texid <- Some (makecheckers ())
3950 | Some texid ->
3951 if not enabled
3952 then (
3953 GlTex.delete_texture texid;
3954 state.texid <- None;
3958 let int_of_string_with_suffix s =
3959 let l = String.length s in
3960 let s1, shift =
3961 if l > 1
3962 then
3963 let suffix = Char.lowercase s.[l-1] in
3964 match suffix with
3965 | 'k' -> String.sub s 0 (l-1), 10
3966 | 'm' -> String.sub s 0 (l-1), 20
3967 | 'g' -> String.sub s 0 (l-1), 30
3968 | _ -> s, 0
3969 else s, 0
3971 let n = int_of_string s1 in
3972 let m = n lsl shift in
3973 if m < 0 || m < n
3974 then raise (Failure "value too large")
3975 else m
3978 let string_with_suffix_of_int n =
3979 if n = 0
3980 then "0"
3981 else
3982 let n, s =
3983 if n land ((1 lsl 30) - 1) = 0
3984 then n lsr 30, "G"
3985 else (
3986 if n land ((1 lsl 20) - 1) = 0
3987 then n lsr 20, "M"
3988 else (
3989 if n land ((1 lsl 10) - 1) = 0
3990 then n lsr 10, "K"
3991 else n, ""
3995 let rec loop s n =
3996 let h = n mod 1000 in
3997 let n = n / 1000 in
3998 if n = 0
3999 then string_of_int h ^ s
4000 else (
4001 let s = Printf.sprintf "_%03d%s" h s in
4002 loop s n
4005 loop "" n ^ s;
4008 let defghyllscroll = (40, 8, 32);;
4009 let ghyllscroll_of_string s =
4010 let (n, a, b) as nab =
4011 if s = "default"
4012 then defghyllscroll
4013 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
4015 if n <= a || n <= b || a >= b
4016 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
4017 nab;
4020 let ghyllscroll_to_string ((n, a, b) as nab) =
4021 if nab = defghyllscroll
4022 then "default"
4023 else Printf.sprintf "%d,%d,%d" n a b;
4026 let describe_location () =
4027 let fn = page_of_y state.y in
4028 let ln = page_of_y (state.y + state.winh - state.hscrollh) in
4029 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4030 let percent =
4031 if maxy <= 0
4032 then 100.
4033 else (100. *. (float state.y /. float maxy))
4035 if fn = ln
4036 then
4037 Printf.sprintf "page %d of %d [%.2f%%]"
4038 (fn+1) state.pagecount percent
4039 else
4040 Printf.sprintf
4041 "pages %d-%d of %d [%.2f%%]"
4042 (fn+1) (ln+1) state.pagecount percent
4045 let setpresentationmode v =
4046 let n = page_of_y state.y in
4047 state.anchor <- (n, 0.0, 1.0);
4048 conf.presentation <- v;
4049 if conf.presentation
4050 then (
4051 if not conf.scrollbarinpm
4052 then state.scrollw <- 0;
4054 else state.scrollw <- conf.scrollbw;
4055 represent ();
4058 let enterinfomode =
4059 let btos b = if b then "\xe2\x88\x9a" else "" in
4060 let showextended = ref false in
4061 let leave mode = function
4062 | Confirm -> state.mode <- mode
4063 | Cancel -> state.mode <- mode in
4064 let src =
4065 (object
4066 val mutable m_first_time = true
4067 val mutable m_l = []
4068 val mutable m_a = [||]
4069 val mutable m_prev_uioh = nouioh
4070 val mutable m_prev_mode = View
4072 inherit lvsourcebase
4074 method reset prev_mode prev_uioh =
4075 m_a <- Array.of_list (List.rev m_l);
4076 m_l <- [];
4077 m_prev_mode <- prev_mode;
4078 m_prev_uioh <- prev_uioh;
4079 if m_first_time
4080 then (
4081 let rec loop n =
4082 if n >= Array.length m_a
4083 then ()
4084 else
4085 match m_a.(n) with
4086 | _, _, _, Action _ -> m_active <- n
4087 | _ -> loop (n+1)
4089 loop 0;
4090 m_first_time <- false;
4093 method int name get set =
4094 m_l <-
4095 (name, `int get, 1, Action (
4096 fun u ->
4097 let ondone s =
4098 try set (int_of_string s)
4099 with exn ->
4100 state.text <- Printf.sprintf "bad integer `%s': %s"
4101 s (exntos exn)
4103 state.text <- "";
4104 let te = name ^ ": ", "", None, intentry, ondone, true in
4105 state.mode <- Textentry (te, leave m_prev_mode);
4107 )) :: m_l
4109 method int_with_suffix name get set =
4110 m_l <-
4111 (name, `intws get, 1, Action (
4112 fun u ->
4113 let ondone s =
4114 try set (int_of_string_with_suffix s)
4115 with exn ->
4116 state.text <- Printf.sprintf "bad integer `%s': %s"
4117 s (exntos exn)
4119 state.text <- "";
4120 let te =
4121 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4123 state.mode <- Textentry (te, leave m_prev_mode);
4125 )) :: m_l
4127 method bool ?(offset=1) ?(btos=btos) name get set =
4128 m_l <-
4129 (name, `bool (btos, get), offset, Action (
4130 fun u ->
4131 let v = get () in
4132 set (not v);
4134 )) :: m_l
4136 method color name get set =
4137 m_l <-
4138 (name, `color get, 1, Action (
4139 fun u ->
4140 let invalid = (nan, nan, nan) in
4141 let ondone s =
4142 let c =
4143 try color_of_string s
4144 with exn ->
4145 state.text <- Printf.sprintf "bad color `%s': %s"
4146 s (exntos exn);
4147 invalid
4149 if c <> invalid
4150 then set c;
4152 let te = name ^ ": ", "", None, textentry, ondone, true in
4153 state.text <- color_to_string (get ());
4154 state.mode <- Textentry (te, leave m_prev_mode);
4156 )) :: m_l
4158 method string name get set =
4159 m_l <-
4160 (name, `string get, 1, Action (
4161 fun u ->
4162 let ondone s = set s in
4163 let te = name ^ ": ", "", None, textentry, ondone, true in
4164 state.mode <- Textentry (te, leave m_prev_mode);
4166 )) :: m_l
4168 method colorspace name get set =
4169 m_l <-
4170 (name, `string get, 1, Action (
4171 fun _ ->
4172 let source =
4173 let vals = [| "rgb"; "bgr"; "gray" |] in
4174 (object
4175 inherit lvsourcebase
4177 initializer
4178 m_active <- int_of_colorspace conf.colorspace;
4179 m_first <- 0;
4181 method getitemcount = Array.length vals
4182 method getitem n = (vals.(n), 0)
4183 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4184 ignore (uioh, first, pan, qsearch);
4185 if not cancel then set active;
4186 None
4187 method hasaction _ = true
4188 end)
4190 state.text <- "";
4191 let modehash = findkeyhash conf "info" in
4192 coe (new listview ~source ~trusted:true ~modehash)
4193 )) :: m_l
4195 method caption s offset =
4196 m_l <- (s, `empty, offset, Noaction) :: m_l
4198 method caption2 s f offset =
4199 m_l <- (s, `string f, offset, Noaction) :: m_l
4201 method getitemcount = Array.length m_a
4203 method getitem n =
4204 let tostr = function
4205 | `int f -> string_of_int (f ())
4206 | `intws f -> string_with_suffix_of_int (f ())
4207 | `string f -> f ()
4208 | `color f -> color_to_string (f ())
4209 | `bool (btos, f) -> btos (f ())
4210 | `empty -> ""
4212 let name, t, offset, _ = m_a.(n) in
4213 ((let s = tostr t in
4214 if String.length s > 0
4215 then Printf.sprintf "%s\t%s" name s
4216 else name),
4217 offset)
4219 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4220 let uiohopt =
4221 if not cancel
4222 then (
4223 m_qsearch <- qsearch;
4224 let uioh =
4225 match m_a.(active) with
4226 | _, _, _, Action f -> f uioh
4227 | _ -> uioh
4229 Some uioh
4231 else None
4233 m_active <- active;
4234 m_first <- first;
4235 m_pan <- pan;
4236 uiohopt
4238 method hasaction n =
4239 match m_a.(n) with
4240 | _, _, _, Action _ -> true
4241 | _ -> false
4242 end)
4244 let rec fillsrc prevmode prevuioh =
4245 let sep () = src#caption "" 0 in
4246 let colorp name get set =
4247 src#string name
4248 (fun () -> color_to_string (get ()))
4249 (fun v ->
4251 let c = color_of_string v in
4252 set c
4253 with exn ->
4254 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4257 let oldmode = state.mode in
4258 let birdseye = isbirdseye state.mode in
4260 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4262 src#bool "presentation mode"
4263 (fun () -> conf.presentation)
4264 (fun v -> setpresentationmode v);
4266 src#bool "ignore case in searches"
4267 (fun () -> conf.icase)
4268 (fun v -> conf.icase <- v);
4270 src#bool "preload"
4271 (fun () -> conf.preload)
4272 (fun v -> conf.preload <- v);
4274 src#bool "highlight links"
4275 (fun () -> conf.hlinks)
4276 (fun v -> conf.hlinks <- v);
4278 src#bool "under info"
4279 (fun () -> conf.underinfo)
4280 (fun v -> conf.underinfo <- v);
4282 src#bool "persistent bookmarks"
4283 (fun () -> conf.savebmarks)
4284 (fun v -> conf.savebmarks <- v);
4286 src#bool "proportional display"
4287 (fun () -> conf.proportional)
4288 (fun v -> reqlayout conf.angle v);
4290 src#bool "trim margins"
4291 (fun () -> conf.trimmargins)
4292 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4294 src#bool "persistent location"
4295 (fun () -> conf.jumpback)
4296 (fun v -> conf.jumpback <- v);
4298 sep ();
4299 src#int "inter-page space"
4300 (fun () -> conf.interpagespace)
4301 (fun n ->
4302 conf.interpagespace <- n;
4303 docolumns conf.columns;
4304 let pageno, py =
4305 match state.layout with
4306 | [] -> 0, 0
4307 | l :: _ ->
4308 l.pageno, l.pagey
4310 state.maxy <- calcheight ();
4311 let y = getpagey pageno in
4312 gotoy (y + py)
4315 src#int "page bias"
4316 (fun () -> conf.pagebias)
4317 (fun v -> conf.pagebias <- v);
4319 src#int "scroll step"
4320 (fun () -> conf.scrollstep)
4321 (fun n -> conf.scrollstep <- n);
4323 src#int "horizontal scroll step"
4324 (fun () -> conf.hscrollstep)
4325 (fun v -> conf.hscrollstep <- v);
4327 src#int "auto scroll step"
4328 (fun () ->
4329 match state.autoscroll with
4330 | Some step -> step
4331 | _ -> conf.autoscrollstep)
4332 (fun n ->
4333 if state.autoscroll <> None
4334 then state.autoscroll <- Some n;
4335 conf.autoscrollstep <- n);
4337 src#int "zoom"
4338 (fun () -> truncate (conf.zoom *. 100.))
4339 (fun v -> setzoom ((float v) /. 100.));
4341 src#int "rotation"
4342 (fun () -> conf.angle)
4343 (fun v -> reqlayout v conf.proportional);
4345 src#int "scroll bar width"
4346 (fun () -> state.scrollw)
4347 (fun v ->
4348 state.scrollw <- v;
4349 conf.scrollbw <- v;
4350 reshape state.winw state.winh;
4353 src#int "scroll handle height"
4354 (fun () -> conf.scrollh)
4355 (fun v -> conf.scrollh <- v;);
4357 src#int "thumbnail width"
4358 (fun () -> conf.thumbw)
4359 (fun v ->
4360 conf.thumbw <- min 4096 v;
4361 match oldmode with
4362 | Birdseye beye ->
4363 leavebirdseye beye false;
4364 enterbirdseye ()
4365 | _ -> ()
4368 let mode = state.mode in
4369 src#string "columns"
4370 (fun () ->
4371 match conf.columns with
4372 | Csingle _ -> "1"
4373 | Cmulti (multi, _) -> multicolumns_to_string multi
4374 | Csplit (count, _) -> "-" ^ string_of_int count
4376 (fun v ->
4377 let n, a, b = multicolumns_of_string v in
4378 setcolumns mode n a b);
4380 sep ();
4381 src#caption "Presentation mode" 0;
4382 src#bool "scrollbar visible"
4383 (fun () -> conf.scrollbarinpm)
4384 (fun v ->
4385 if v != conf.scrollbarinpm
4386 then (
4387 conf.scrollbarinpm <- v;
4388 if conf.presentation
4389 then (
4390 state.scrollw <- if v then conf.scrollbw else 0;
4391 reshape state.winw state.winh;
4396 sep ();
4397 src#caption "Pixmap cache" 0;
4398 src#int_with_suffix "size (advisory)"
4399 (fun () -> conf.memlimit)
4400 (fun v -> conf.memlimit <- v);
4402 src#caption2 "used"
4403 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4404 (string_with_suffix_of_int state.memused)
4405 (Hashtbl.length state.tilemap)) 1;
4407 sep ();
4408 src#caption "Layout" 0;
4409 src#caption2 "Dimension"
4410 (fun () ->
4411 Printf.sprintf "%dx%d (virtual %dx%d)"
4412 state.winw state.winh
4413 state.w state.maxy)
4415 if conf.debug
4416 then
4417 src#caption2 "Position" (fun () ->
4418 Printf.sprintf "%dx%d" state.x state.y
4420 else
4421 src#caption2 "Position" (fun () -> describe_location ()) 1
4424 sep ();
4425 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4426 "Save these parameters as global defaults at exit"
4427 (fun () -> conf.bedefault)
4428 (fun v -> conf.bedefault <- v)
4431 sep ();
4432 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4433 src#bool ~offset:0 ~btos "Extended parameters"
4434 (fun () -> !showextended)
4435 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4436 if !showextended
4437 then (
4438 src#bool "checkers"
4439 (fun () -> conf.checkers)
4440 (fun v -> conf.checkers <- v; setcheckers v);
4441 src#bool "update cursor"
4442 (fun () -> conf.updatecurs)
4443 (fun v -> conf.updatecurs <- v);
4444 src#bool "verbose"
4445 (fun () -> conf.verbose)
4446 (fun v -> conf.verbose <- v);
4447 src#bool "invert colors"
4448 (fun () -> conf.invert)
4449 (fun v -> conf.invert <- v);
4450 src#bool "max fit"
4451 (fun () -> conf.maxhfit)
4452 (fun v -> conf.maxhfit <- v);
4453 src#bool "redirect stderr"
4454 (fun () -> conf.redirectstderr)
4455 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4456 src#string "uri launcher"
4457 (fun () -> conf.urilauncher)
4458 (fun v -> conf.urilauncher <- v);
4459 src#string "path launcher"
4460 (fun () -> conf.pathlauncher)
4461 (fun v -> conf.pathlauncher <- v);
4462 src#string "tile size"
4463 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4464 (fun v ->
4466 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4467 conf.tilew <- max 64 w;
4468 conf.tileh <- max 64 h;
4469 flushtiles ();
4470 with exn ->
4471 state.text <- Printf.sprintf "bad tile size `%s': %s"
4472 v (exntos exn)
4474 src#int "texture count"
4475 (fun () -> conf.texcount)
4476 (fun v ->
4477 if realloctexts v
4478 then conf.texcount <- v
4479 else showtext '!' " Failed to set texture count please retry later"
4481 src#int "slice height"
4482 (fun () -> conf.sliceheight)
4483 (fun v ->
4484 conf.sliceheight <- v;
4485 wcmd "sliceh %d" conf.sliceheight;
4487 src#int "anti-aliasing level"
4488 (fun () -> conf.aalevel)
4489 (fun v ->
4490 conf.aalevel <- bound v 0 8;
4491 state.anchor <- getanchor ();
4492 opendoc state.path state.password;
4494 src#string "page scroll scaling factor"
4495 (fun () -> string_of_float conf.pgscale)
4496 (fun v ->
4498 let s = float_of_string v in
4499 conf.pgscale <- s
4500 with exn ->
4501 state.text <- Printf.sprintf
4502 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4505 src#int "ui font size"
4506 (fun () -> fstate.fontsize)
4507 (fun v -> setfontsize (bound v 5 100));
4508 src#int "hint font size"
4509 (fun () -> conf.hfsize)
4510 (fun v -> conf.hfsize <- bound v 5 100);
4511 colorp "background color"
4512 (fun () -> conf.bgcolor)
4513 (fun v -> conf.bgcolor <- v);
4514 src#bool "crop hack"
4515 (fun () -> conf.crophack)
4516 (fun v -> conf.crophack <- v);
4517 src#string "trim fuzz"
4518 (fun () -> irect_to_string conf.trimfuzz)
4519 (fun v ->
4521 conf.trimfuzz <- irect_of_string v;
4522 if conf.trimmargins
4523 then settrim true conf.trimfuzz;
4524 with exn ->
4525 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4527 src#string "throttle"
4528 (fun () ->
4529 match conf.maxwait with
4530 | None -> "show place holder if page is not ready"
4531 | Some time ->
4532 if time = infinity
4533 then "wait for page to fully render"
4534 else
4535 "wait " ^ string_of_float time
4536 ^ " seconds before showing placeholder"
4538 (fun v ->
4540 let f = float_of_string v in
4541 if f <= 0.0
4542 then conf.maxwait <- None
4543 else conf.maxwait <- Some f
4544 with exn ->
4545 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4547 src#string "ghyll scroll"
4548 (fun () ->
4549 match conf.ghyllscroll with
4550 | None -> ""
4551 | Some nab -> ghyllscroll_to_string nab
4553 (fun v ->
4555 let gs =
4556 if String.length v = 0
4557 then None
4558 else Some (ghyllscroll_of_string v)
4560 conf.ghyllscroll <- gs
4561 with exn ->
4562 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4564 src#string "selection command"
4565 (fun () -> conf.selcmd)
4566 (fun v -> conf.selcmd <- v);
4567 src#string "synctex command"
4568 (fun () -> conf.stcmd)
4569 (fun v -> conf.stcmd <- v);
4570 src#colorspace "color space"
4571 (fun () -> colorspace_to_string conf.colorspace)
4572 (fun v ->
4573 conf.colorspace <- colorspace_of_int v;
4574 wcmd "cs %d" v;
4575 load state.layout;
4577 if pbousable ()
4578 then
4579 src#bool "use PBO"
4580 (fun () -> conf.usepbo)
4581 (fun v -> conf.usepbo <- v);
4582 src#bool "mouse wheel scrolls pages"
4583 (fun () -> conf.wheelbypage)
4584 (fun v -> conf.wheelbypage <- v);
4587 sep ();
4588 src#caption "Document" 0;
4589 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4590 src#caption2 "Pages"
4591 (fun () -> string_of_int state.pagecount) 1;
4592 src#caption2 "Dimensions"
4593 (fun () -> string_of_int (List.length state.pdims)) 1;
4594 if conf.trimmargins
4595 then (
4596 sep ();
4597 src#caption "Trimmed margins" 0;
4598 src#caption2 "Dimensions"
4599 (fun () -> string_of_int (List.length state.pdims)) 1;
4602 sep ();
4603 src#caption "OpenGL" 0;
4604 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4605 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4606 src#reset prevmode prevuioh;
4608 fun () ->
4609 state.text <- "";
4610 let prevmode = state.mode
4611 and prevuioh = state.uioh in
4612 fillsrc prevmode prevuioh;
4613 let source = (src :> lvsource) in
4614 let modehash = findkeyhash conf "info" in
4615 state.uioh <- coe (object (self)
4616 inherit listview ~source ~trusted:true ~modehash as super
4617 val mutable m_prevmemused = 0
4618 method infochanged = function
4619 | Memused ->
4620 if m_prevmemused != state.memused
4621 then (
4622 m_prevmemused <- state.memused;
4623 G.postRedisplay "memusedchanged";
4625 | Pdim -> G.postRedisplay "pdimchanged"
4626 | Docinfo -> fillsrc prevmode prevuioh
4628 method key key mask =
4629 if not (Wsi.withctrl mask)
4630 then
4631 match key with
4632 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4633 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4634 | _ -> super#key key mask
4635 else super#key key mask
4636 end);
4637 G.postRedisplay "info";
4640 let enterhelpmode =
4641 let source =
4642 (object
4643 inherit lvsourcebase
4644 method getitemcount = Array.length state.help
4645 method getitem n =
4646 let s, l, _ = state.help.(n) in
4647 (s, l)
4649 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4650 let optuioh =
4651 if not cancel
4652 then (
4653 m_qsearch <- qsearch;
4654 match state.help.(active) with
4655 | _, _, Action f -> Some (f uioh)
4656 | _ -> Some (uioh)
4658 else None
4660 m_active <- active;
4661 m_first <- first;
4662 m_pan <- pan;
4663 optuioh
4665 method hasaction n =
4666 match state.help.(n) with
4667 | _, _, Action _ -> true
4668 | _ -> false
4670 initializer
4671 m_active <- -1
4672 end)
4673 in fun () ->
4674 let modehash = findkeyhash conf "help" in
4675 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4676 G.postRedisplay "help";
4679 let entermsgsmode =
4680 let msgsource =
4681 let re = Str.regexp "[\r\n]" in
4682 (object
4683 inherit lvsourcebase
4684 val mutable m_items = [||]
4686 method getitemcount = 1 + Array.length m_items
4688 method getitem n =
4689 if n = 0
4690 then "[Clear]", 0
4691 else m_items.(n-1), 0
4693 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4694 ignore uioh;
4695 if not cancel
4696 then (
4697 if active = 0
4698 then Buffer.clear state.errmsgs;
4699 m_qsearch <- qsearch;
4701 m_active <- active;
4702 m_first <- first;
4703 m_pan <- pan;
4704 None
4706 method hasaction n =
4707 n = 0
4709 method reset =
4710 state.newerrmsgs <- false;
4711 let l = Str.split re (Buffer.contents state.errmsgs) in
4712 m_items <- Array.of_list l
4714 initializer
4715 m_active <- 0
4716 end)
4717 in fun () ->
4718 state.text <- "";
4719 msgsource#reset;
4720 let source = (msgsource :> lvsource) in
4721 let modehash = findkeyhash conf "listview" in
4722 state.uioh <- coe (object
4723 inherit listview ~source ~trusted:false ~modehash as super
4724 method display =
4725 if state.newerrmsgs
4726 then msgsource#reset;
4727 super#display
4728 end);
4729 G.postRedisplay "msgs";
4732 let quickbookmark ?title () =
4733 match state.layout with
4734 | [] -> ()
4735 | l :: _ ->
4736 let title =
4737 match title with
4738 | None ->
4739 let sec = Unix.gettimeofday () in
4740 let tm = Unix.localtime sec in
4741 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4742 (l.pageno+1)
4743 tm.Unix.tm_mday
4744 tm.Unix.tm_mon
4745 (tm.Unix.tm_year + 1900)
4746 tm.Unix.tm_hour
4747 tm.Unix.tm_min
4748 | Some title -> title
4750 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4753 let doreshape w h =
4754 Wsi.reshape w h;
4757 let setautoscrollspeed step goingdown =
4758 let incr = max 1 ((abs step) / 2) in
4759 let incr = if goingdown then incr else -incr in
4760 let astep = step + incr in
4761 state.autoscroll <- Some astep;
4764 let gotounder = function
4765 | Ulinkgoto (pageno, top) ->
4766 if pageno >= 0
4767 then (
4768 addnav ();
4769 gotopage1 pageno top;
4772 | Ulinkuri s ->
4773 gotouri s
4775 | Uremote (filename, pageno) ->
4776 let path =
4777 if Sys.file_exists filename
4778 then filename
4779 else
4780 let dir = Filename.dirname state.path in
4781 let path = Filename.concat dir filename in
4782 if Sys.file_exists path
4783 then path
4784 else ""
4786 if String.length path > 0
4787 then (
4788 let anchor = getanchor () in
4789 let ranchor = state.path, state.password, anchor in
4790 state.anchor <- (pageno, 0.0, 0.0);
4791 state.ranchors <- ranchor :: state.ranchors;
4792 opendoc path "";
4794 else showtext '!' ("Could not find " ^ filename)
4796 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4799 let canpan () =
4800 match conf.columns with
4801 | Csplit _ -> true
4802 | _ -> state.x != 0 || conf.zoom > 1.0
4805 let existsinrow pageno (columns, coverA, coverB) p =
4806 let last = ((pageno - coverA) mod columns) + columns in
4807 let rec any = function
4808 | [] -> false
4809 | l :: rest ->
4810 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4811 then p l
4812 else (
4813 if not (p l)
4814 then (if l.pageno = last then false else any rest)
4815 else true
4818 any state.layout
4821 let nextpage () =
4822 match state.layout with
4823 | [] ->
4824 let pageno = page_of_y state.y in
4825 gotoghyll (getpagey (pageno+1))
4826 | l :: rest ->
4827 match conf.columns with
4828 | Csingle _ ->
4829 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4830 then
4831 let y = clamp (pgscale state.winh) in
4832 gotoghyll y
4833 else
4834 let pageno = min (l.pageno+1) (state.pagecount-1) in
4835 gotoghyll (getpagey pageno)
4836 | Cmulti ((c, _, _) as cl, _) ->
4837 if conf.presentation
4838 && (existsinrow l.pageno cl
4839 (fun l -> l.pageh > l.pagey + l.pagevh))
4840 then
4841 let y = clamp (pgscale state.winh) in
4842 gotoghyll y
4843 else
4844 let pageno = min (l.pageno+c) (state.pagecount-1) in
4845 gotoghyll (getpagey pageno)
4846 | Csplit (n, _) ->
4847 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4848 then
4849 let pagey, pageh = getpageyh l.pageno in
4850 let pagey = pagey + pageh * l.pagecol in
4851 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4852 gotoghyll (pagey + pageh + ips)
4855 let prevpage () =
4856 match state.layout with
4857 | [] ->
4858 let pageno = page_of_y state.y in
4859 gotoghyll (getpagey (pageno-1))
4860 | l :: _ ->
4861 match conf.columns with
4862 | Csingle _ ->
4863 if conf.presentation && l.pagey != 0
4864 then
4865 gotoghyll (clamp (pgscale ~-(state.winh)))
4866 else
4867 let pageno = max 0 (l.pageno-1) in
4868 gotoghyll (getpagey pageno)
4869 | Cmulti ((c, _, coverB) as cl, _) ->
4870 if conf.presentation &&
4871 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4872 then
4873 gotoghyll (clamp (pgscale ~-(state.winh)))
4874 else
4875 let decr =
4876 if l.pageno = state.pagecount - coverB
4877 then 1
4878 else c
4880 let pageno = max 0 (l.pageno-decr) in
4881 gotoghyll (getpagey pageno)
4882 | Csplit (n, _) ->
4883 let y =
4884 if l.pagecol = 0
4885 then
4886 if l.pageno = 0
4887 then l.pagey
4888 else
4889 let pageno = max 0 (l.pageno-1) in
4890 let pagey, pageh = getpageyh pageno in
4891 pagey + (n-1)*pageh
4892 else
4893 let pagey, pageh = getpageyh l.pageno in
4894 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4896 gotoghyll y
4899 let viewkeyboard key mask =
4900 let enttext te =
4901 let mode = state.mode in
4902 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4903 state.text <- "";
4904 enttext ();
4905 G.postRedisplay "view:enttext"
4907 let ctrl = Wsi.withctrl mask in
4908 let key =
4909 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4911 match key with
4912 | 81 -> (* Q *)
4913 exit 0
4915 | 0xff63 -> (* insert *)
4916 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4917 then (
4918 state.mode <- LinkNav (Ltgendir 0);
4919 gotoy state.y;
4921 else showtext '!' "Keyboard link navigation does not work under rotation"
4923 | 0xff1b | 113 -> (* escape / q *)
4924 begin match state.mstate with
4925 | Mzoomrect _ ->
4926 state.mstate <- Mnone;
4927 Wsi.setcursor Wsi.CURSOR_INHERIT;
4928 G.postRedisplay "kill zoom rect";
4929 | _ ->
4930 begin match state.mode with
4931 | LinkNav _ ->
4932 state.mode <- View;
4933 G.postRedisplay "esc leave linknav"
4934 | _ ->
4935 match state.ranchors with
4936 | [] -> raise Quit
4937 | (path, password, anchor) :: rest ->
4938 state.ranchors <- rest;
4939 state.anchor <- anchor;
4940 opendoc path password
4941 end;
4942 end;
4944 | 0xff08 -> (* backspace *)
4945 gotoghyll (getnav ~-1)
4947 | 111 -> (* o *)
4948 enteroutlinemode ()
4950 | 117 -> (* u *)
4951 state.rects <- [];
4952 state.text <- "";
4953 G.postRedisplay "dehighlight";
4955 | 47 | 63 -> (* / ? *)
4956 let ondone isforw s =
4957 cbput state.hists.pat s;
4958 state.searchpattern <- s;
4959 search s isforw
4961 let s = String.create 1 in
4962 s.[0] <- Char.chr key;
4963 enttext (s, "", Some (onhist state.hists.pat),
4964 textentry, ondone (key = 47), true)
4966 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4967 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4968 setzoom (conf.zoom +. incr)
4970 | 43 | 0xffab -> (* + *)
4971 let ondone s =
4972 let n =
4973 try int_of_string s with exc ->
4974 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
4975 max_int
4977 if n != max_int
4978 then (
4979 conf.pagebias <- n;
4980 state.text <- "page bias is now " ^ string_of_int n;
4983 enttext ("page bias: ", "", None, intentry, ondone, true)
4985 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4986 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4987 setzoom (max 0.01 (conf.zoom -. decr))
4989 | 45 | 0xffad -> (* - *)
4990 let ondone msg = state.text <- msg in
4991 enttext (
4992 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4993 optentry state.mode, ondone, true
4996 | 48 when ctrl -> (* ctrl-0 *)
4997 if conf.zoom = 1.0
4998 then (
4999 state.x <- 0;
5000 state.hscrollh <-
5001 if state.w <= state.winw - state.scrollw
5002 then 0
5003 else state.scrollw
5005 gotoy state.y
5007 else setzoom 1.0
5009 | 49 when ctrl -> (* ctrl-1 *)
5010 let cols =
5011 match conf.columns with
5012 | Csingle _ | Cmulti _ -> 1
5013 | Csplit (n, _) -> n
5015 let h = state.winh -
5016 conf.interpagespace lsl (if conf.presentation then 1 else 0)
5018 let zoom = zoomforh state.winw h state.scrollw cols in
5019 if zoom < 1.0
5020 then setzoom zoom
5022 | 0xffc6 -> (* f9 *)
5023 togglebirdseye ()
5025 | 57 when ctrl -> (* ctrl-9 *)
5026 togglebirdseye ()
5028 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5029 when not ctrl -> (* 0..9 *)
5030 let ondone s =
5031 let n =
5032 try int_of_string s with exc ->
5033 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5036 if n >= 0
5037 then (
5038 addnav ();
5039 cbput state.hists.pag (string_of_int n);
5040 gotopage1 (n + conf.pagebias - 1) 0;
5043 let pageentry text key =
5044 match Char.unsafe_chr key with
5045 | 'g' -> TEdone text
5046 | _ -> intentry text key
5048 let text = "x" in text.[0] <- Char.chr key;
5049 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5051 | 98 -> (* b *)
5052 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
5053 reshape state.winw state.winh;
5055 | 108 -> (* l *)
5056 conf.hlinks <- not conf.hlinks;
5057 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5058 G.postRedisplay "toggle highlightlinks";
5060 | 70 -> (* F *)
5061 state.glinks <- true;
5062 let mode = state.mode in
5063 state.mode <- Textentry (
5064 (":", "", None, linknentry, linkndone gotounder, false),
5065 (fun _ ->
5066 state.glinks <- false;
5067 state.mode <- mode)
5069 state.text <- "";
5070 G.postRedisplay "view:linkent(F)"
5072 | 121 -> (* y *)
5073 state.glinks <- true;
5074 let mode = state.mode in
5075 state.mode <- Textentry (
5076 (":", "", None, linknentry, linkndone (fun under ->
5077 match Ne.pipe () with
5078 | Ne.Exn exn ->
5079 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
5080 | Ne.Res (r, w) ->
5081 let popened =
5082 try popen conf.selcmd [r, 0; w, -1]; true
5083 with exn ->
5084 showtext '!'
5085 (Printf.sprintf "failed to execute %s: %s"
5086 conf.selcmd (exntos exn));
5087 false
5089 let clo cap fd =
5090 Ne.clo fd (fun msg ->
5091 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
5094 let s = undertext under in
5095 if popened
5096 then
5097 (try
5098 let l = String.length s in
5099 let n = tempfailureretry (Unix.write w s 0) l in
5100 if n != l
5101 then
5102 showtext '!'
5103 (Printf.sprintf
5104 "failed to write %d characters to sel pipe, wrote %d"
5107 with exn ->
5108 showtext '!'
5109 (Printf.sprintf "failed to write to sel pipe: %s"
5110 (exntos exn)
5113 else dolog "%s" s;
5114 clo "pipe/r" r;
5115 clo "pipe/w" w;
5116 ), false
5118 fun _ ->
5119 state.glinks <- false;
5120 state.mode <- mode
5122 state.text <- "";
5123 G.postRedisplay "view:linkent"
5125 | 97 -> (* a *)
5126 begin match state.autoscroll with
5127 | Some step ->
5128 conf.autoscrollstep <- step;
5129 state.autoscroll <- None
5130 | None ->
5131 if conf.autoscrollstep = 0
5132 then state.autoscroll <- Some 1
5133 else state.autoscroll <- Some conf.autoscrollstep
5136 | 112 when ctrl -> (* ctrl-p *)
5137 launchpath ()
5139 | 80 -> (* P *)
5140 setpresentationmode (not conf.presentation);
5141 showtext ' ' ("presentation mode " ^
5142 if conf.presentation then "on" else "off");
5144 | 102 -> (* f *)
5145 if List.mem Wsi.Fullscreen state.winstate
5146 then doreshape conf.cwinw conf.cwinh
5147 else Wsi.fullscreen ()
5149 | 112 | 78 -> (* p|N *)
5150 search state.searchpattern false
5152 | 110 | 0xffc0 -> (* n|F3 *)
5153 search state.searchpattern true
5155 | 116 -> (* t *)
5156 begin match state.layout with
5157 | [] -> ()
5158 | l :: _ ->
5159 gotoghyll (getpagey l.pageno)
5162 | 32 -> (* space *)
5163 nextpage ()
5165 | 0xff9f | 0xffff -> (* delete *)
5166 prevpage ()
5168 | 61 -> (* = *)
5169 showtext ' ' (describe_location ());
5171 | 119 -> (* w *)
5172 begin match state.layout with
5173 | [] -> ()
5174 | l :: _ ->
5175 doreshape (l.pagew + state.scrollw) l.pageh;
5176 G.postRedisplay "w"
5179 | 39 -> (* ' *)
5180 enterbookmarkmode ()
5182 | 104 | 0xffbe -> (* h|F1 *)
5183 enterhelpmode ()
5185 | 105 -> (* i *)
5186 enterinfomode ()
5188 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5189 entermsgsmode ()
5191 | 109 -> (* m *)
5192 let ondone s =
5193 match state.layout with
5194 | l :: _ ->
5195 if String.length s > 0
5196 then
5197 state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5198 | _ -> ()
5200 enttext ("bookmark: ", "", None, textentry, ondone, true)
5202 | 126 -> (* ~ *)
5203 quickbookmark ();
5204 showtext ' ' "Quick bookmark added";
5206 | 122 -> (* z *)
5207 begin match state.layout with
5208 | l :: _ ->
5209 let rect = getpdimrect l.pagedimno in
5210 let w, h =
5211 if conf.crophack
5212 then
5213 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5214 truncate (1.2 *. (rect.(3) -. rect.(0))))
5215 else
5216 (truncate (rect.(1) -. rect.(0)),
5217 truncate (rect.(3) -. rect.(0)))
5219 let w = truncate ((float w)*.conf.zoom)
5220 and h = truncate ((float h)*.conf.zoom) in
5221 if w != 0 && h != 0
5222 then (
5223 state.anchor <- getanchor ();
5224 doreshape (w + state.scrollw) (h + conf.interpagespace)
5226 G.postRedisplay "z";
5228 | [] -> ()
5231 | 60 | 62 -> (* < > *)
5232 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5234 | 91 | 93 -> (* [ ] *)
5235 conf.colorscale <-
5236 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5238 G.postRedisplay "brightness";
5240 | 99 when state.mode = View -> (* c *)
5241 let (c, a, b), z =
5242 match state.prevcolumns with
5243 | None -> (1, 0, 0), 1.0
5244 | Some (columns, z) ->
5245 let cab =
5246 match columns with
5247 | Csplit (c, _) -> -c, 0, 0
5248 | Cmulti ((c, a, b), _) -> c, a, b
5249 | Csingle _ -> 1, 0, 0
5251 cab, z
5253 setcolumns View c a b;
5254 setzoom z;
5256 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5257 setzoom state.prevzoom
5259 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5260 begin match state.autoscroll with
5261 | None ->
5262 begin match state.mode with
5263 | Birdseye beye -> upbirdseye 1 beye
5264 | _ ->
5265 if ctrl
5266 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5267 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5269 | Some n ->
5270 setautoscrollspeed n false
5273 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5274 begin match state.autoscroll with
5275 | None ->
5276 begin match state.mode with
5277 | Birdseye beye -> downbirdseye 1 beye
5278 | _ ->
5279 if ctrl
5280 then gotoy_and_clear_text (clamp (state.winh/2))
5281 else gotoy_and_clear_text (clamp conf.scrollstep)
5283 | Some n ->
5284 setautoscrollspeed n true
5287 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5288 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5289 if canpan ()
5290 then
5291 let dx =
5292 if ctrl
5293 then state.winw / 2
5294 else conf.hscrollstep
5296 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5297 state.x <- state.x + dx;
5298 gotoy_and_clear_text state.y
5299 else (
5300 state.text <- "";
5301 G.postRedisplay "lef/right"
5304 | 0xff55 | 0xff9a -> (* (kp) prior *)
5305 let y =
5306 if ctrl
5307 then
5308 match state.layout with
5309 | [] -> state.y
5310 | l :: _ -> state.y - l.pagey
5311 else
5312 clamp (pgscale (-state.winh))
5314 gotoghyll y
5316 | 0xff56 | 0xff9b -> (* (kp) next *)
5317 let y =
5318 if ctrl
5319 then
5320 match List.rev state.layout with
5321 | [] -> state.y
5322 | l :: _ -> getpagey l.pageno
5323 else
5324 clamp (pgscale state.winh)
5326 gotoghyll y
5328 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5329 gotoghyll 0
5330 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5331 gotoghyll (clamp state.maxy)
5333 | 0xff53 | 0xff98
5334 when Wsi.withalt mask -> (* alt-(kp) right *)
5335 gotoghyll (getnav 1)
5336 | 0xff51 | 0xff96
5337 when Wsi.withalt mask -> (* alt-(kp) left *)
5338 gotoghyll (getnav ~-1)
5340 | 114 -> (* r *)
5341 reload ()
5343 | 118 when conf.debug -> (* v *)
5344 state.rects <- [];
5345 List.iter (fun l ->
5346 match getopaque l.pageno with
5347 | None -> ()
5348 | Some opaque ->
5349 let x0, y0, x1, y1 = pagebbox opaque in
5350 let a,b = float x0, float y0 in
5351 let c,d = float x1, float y0 in
5352 let e,f = float x1, float y1 in
5353 let h,j = float x0, float y1 in
5354 let rect = (a,b,c,d,e,f,h,j) in
5355 debugrect rect;
5356 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5357 ) state.layout;
5358 G.postRedisplay "v";
5360 | _ ->
5361 vlog "huh? %s" (Wsi.keyname key)
5364 let linknavkeyboard key mask linknav =
5365 let getpage pageno =
5366 let rec loop = function
5367 | [] -> None
5368 | l :: _ when l.pageno = pageno -> Some l
5369 | _ :: rest -> loop rest
5370 in loop state.layout
5372 let doexact (pageno, n) =
5373 match getopaque pageno, getpage pageno with
5374 | Some opaque, Some l ->
5375 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5376 then
5377 let under = getlink opaque n in
5378 G.postRedisplay "link gotounder";
5379 gotounder under;
5380 state.mode <- View;
5381 else
5382 let opt, dir =
5383 match key with
5384 | 0xff50 -> (* home *)
5385 Some (findlink opaque LDfirst), -1
5387 | 0xff57 -> (* end *)
5388 Some (findlink opaque LDlast), 1
5390 | 0xff51 -> (* left *)
5391 Some (findlink opaque (LDleft n)), -1
5393 | 0xff53 -> (* right *)
5394 Some (findlink opaque (LDright n)), 1
5396 | 0xff52 -> (* up *)
5397 Some (findlink opaque (LDup n)), -1
5399 | 0xff54 -> (* down *)
5400 Some (findlink opaque (LDdown n)), 1
5402 | _ -> None, 0
5404 let pwl l dir =
5405 begin match findpwl l.pageno dir with
5406 | Pwlnotfound -> ()
5407 | Pwl pageno ->
5408 let notfound dir =
5409 state.mode <- LinkNav (Ltgendir dir);
5410 let y, h = getpageyh pageno in
5411 let y =
5412 if dir < 0
5413 then y + h - state.winh
5414 else y
5416 gotoy y
5418 begin match getopaque pageno, getpage pageno with
5419 | Some opaque, Some _ ->
5420 let link =
5421 let ld = if dir > 0 then LDfirst else LDlast in
5422 findlink opaque ld
5424 begin match link with
5425 | Lfound m ->
5426 showlinktype (getlink opaque m);
5427 state.mode <- LinkNav (Ltexact (pageno, m));
5428 G.postRedisplay "linknav jpage";
5429 | _ -> notfound dir
5430 end;
5431 | _ -> notfound dir
5432 end;
5433 end;
5435 begin match opt with
5436 | Some Lnotfound -> pwl l dir;
5437 | Some (Lfound m) ->
5438 if m = n
5439 then pwl l dir
5440 else (
5441 let _, y0, _, y1 = getlinkrect opaque m in
5442 if y0 < l.pagey
5443 then gotopage1 l.pageno y0
5444 else (
5445 let d = fstate.fontsize + 1 in
5446 if y1 - l.pagey > l.pagevh - d
5447 then gotopage1 l.pageno (y1 - state.winh - state.hscrollh + d)
5448 else G.postRedisplay "linknav";
5450 showlinktype (getlink opaque m);
5451 state.mode <- LinkNav (Ltexact (l.pageno, m));
5454 | None -> viewkeyboard key mask
5455 end;
5456 | _ -> viewkeyboard key mask
5458 if key = 0xff63
5459 then (
5460 state.mode <- View;
5461 G.postRedisplay "leave linknav"
5463 else
5464 match linknav with
5465 | Ltgendir _ -> viewkeyboard key mask
5466 | Ltexact exact -> doexact exact
5469 let keyboard key mask =
5470 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5471 then wcmd "interrupt"
5472 else state.uioh <- state.uioh#key key mask
5475 let birdseyekeyboard key mask
5476 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5477 let incr =
5478 match conf.columns with
5479 | Csingle _ -> 1
5480 | Cmulti ((c, _, _), _) -> c
5481 | Csplit _ -> failwith "bird's eye split mode"
5483 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5484 match key with
5485 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5486 let y, h = getpageyh pageno in
5487 let top = (state.winh - h) / 2 in
5488 gotoy (max 0 (y - top))
5489 | 0xff0d (* enter *)
5490 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5491 | 0xff1b -> leavebirdseye beye true (* escape *)
5492 | 0xff52 -> upbirdseye incr beye (* up *)
5493 | 0xff54 -> downbirdseye incr beye (* down *)
5494 | 0xff51 -> upbirdseye 1 beye (* left *)
5495 | 0xff53 -> downbirdseye 1 beye (* right *)
5497 | 0xff55 -> (* prior *)
5498 begin match state.layout with
5499 | l :: _ ->
5500 if l.pagey != 0
5501 then (
5502 state.mode <- Birdseye (
5503 oconf, leftx, l.pageno, hooverpageno, anchor
5505 gotopage1 l.pageno 0;
5507 else (
5508 let layout = layout (state.y-state.winh) (pgh state.layout) in
5509 match layout with
5510 | [] -> gotoy (clamp (-state.winh))
5511 | l :: _ ->
5512 state.mode <- Birdseye (
5513 oconf, leftx, l.pageno, hooverpageno, anchor
5515 gotopage1 l.pageno 0
5518 | [] -> gotoy (clamp (-state.winh))
5519 end;
5521 | 0xff56 -> (* next *)
5522 begin match List.rev state.layout with
5523 | l :: _ ->
5524 let layout = layout (state.y + (pgh state.layout)) state.winh in
5525 begin match layout with
5526 | [] ->
5527 let incr = l.pageh - l.pagevh in
5528 if incr = 0
5529 then (
5530 state.mode <-
5531 Birdseye (
5532 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5534 G.postRedisplay "birdseye pagedown";
5536 else gotoy (clamp (incr + conf.interpagespace*2));
5538 | l :: _ ->
5539 state.mode <-
5540 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5541 gotopage1 l.pageno 0;
5544 | [] -> gotoy (clamp state.winh)
5545 end;
5547 | 0xff50 -> (* home *)
5548 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5549 gotopage1 0 0
5551 | 0xff57 -> (* end *)
5552 let pageno = state.pagecount - 1 in
5553 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5554 if not (pagevisible state.layout pageno)
5555 then
5556 let h =
5557 match List.rev state.pdims with
5558 | [] -> state.winh
5559 | (_, _, h, _) :: _ -> h
5561 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5562 else G.postRedisplay "birdseye end";
5563 | _ -> viewkeyboard key mask
5566 let drawpage l linkindexbase =
5567 let color =
5568 match state.mode with
5569 | Textentry _ -> scalecolor 0.4
5570 | LinkNav _
5571 | View -> scalecolor 1.0
5572 | Birdseye (_, _, pageno, hooverpageno, _) ->
5573 if l.pageno = hooverpageno
5574 then scalecolor 0.9
5575 else (
5576 if l.pageno = pageno
5577 then scalecolor 1.0
5578 else scalecolor 0.8
5581 drawtiles l color;
5582 begin match getopaque l.pageno with
5583 | Some opaque ->
5584 if tileready l l.pagex l.pagey
5585 then
5586 let x = l.pagedispx - l.pagex
5587 and y = l.pagedispy - l.pagey in
5588 let hlmask =
5589 match conf.columns with
5590 | Csingle _ | Cmulti _ ->
5591 (if conf.hlinks then 1 else 0)
5592 + (if state.glinks
5593 && not (isbirdseye state.mode) then 2 else 0)
5594 | _ -> 0
5596 let s =
5597 match state.mode with
5598 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5599 | _ -> ""
5601 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5602 else 0
5604 | _ -> 0
5605 end;
5608 let scrollindicator () =
5609 let sbw, ph, sh = state.uioh#scrollph in
5610 let sbh, pw, sw = state.uioh#scrollpw in
5612 GlDraw.color (0.64, 0.64, 0.64);
5613 GlDraw.rect
5614 (float (state.winw - sbw), 0.)
5615 (float state.winw, float state.winh)
5617 GlDraw.rect
5618 (0., float (state.winh - sbh))
5619 (float (state.winw - state.scrollw - 1), float state.winh)
5621 GlDraw.color (0.0, 0.0, 0.0);
5623 GlDraw.rect
5624 (float (state.winw - sbw), ph)
5625 (float state.winw, ph +. sh)
5627 GlDraw.rect
5628 (pw, float (state.winh - sbh))
5629 (pw +. sw, float state.winh)
5633 let showsel () =
5634 match state.mstate with
5635 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5638 | Msel ((x0, y0), (x1, y1)) ->
5639 let rec loop = function
5640 | l :: ls ->
5641 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5642 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5643 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5644 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5645 then
5646 match getopaque l.pageno with
5647 | Some opaque ->
5648 let x0, y0 = pagetranslatepoint l x0 y0 in
5649 let x1, y1 = pagetranslatepoint l x1 y1 in
5650 seltext opaque (x0, y0, x1, y1);
5651 | _ -> ()
5652 else loop ls
5653 | [] -> ()
5655 loop state.layout
5658 let showrects rects =
5659 Gl.enable `blend;
5660 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5661 GlDraw.polygon_mode `both `fill;
5662 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5663 List.iter
5664 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5665 List.iter (fun l ->
5666 if l.pageno = pageno
5667 then (
5668 let dx = float (l.pagedispx - l.pagex) in
5669 let dy = float (l.pagedispy - l.pagey) in
5670 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5671 GlDraw.begins `quads;
5673 GlDraw.vertex2 (x0+.dx, y0+.dy);
5674 GlDraw.vertex2 (x1+.dx, y1+.dy);
5675 GlDraw.vertex2 (x2+.dx, y2+.dy);
5676 GlDraw.vertex2 (x3+.dx, y3+.dy);
5678 GlDraw.ends ();
5680 ) state.layout
5681 ) rects
5683 Gl.disable `blend;
5686 let display () =
5687 GlClear.color (scalecolor2 conf.bgcolor);
5688 GlClear.clear [`color];
5689 let rec loop linkindexbase = function
5690 | l :: rest ->
5691 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5692 loop linkindexbase rest
5693 | [] -> ()
5695 loop 0 state.layout;
5696 let rects =
5697 match state.mode with
5698 | LinkNav (Ltexact (pageno, linkno)) ->
5699 begin match getopaque pageno with
5700 | Some opaque ->
5701 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5702 (pageno, 5, (
5703 float x0, float y0,
5704 float x1, float y0,
5705 float x1, float y1,
5706 float x0, float y1)
5707 ) :: state.rects
5708 | None -> state.rects
5710 | _ -> state.rects
5712 showrects rects;
5713 showsel ();
5714 state.uioh#display;
5715 begin match state.mstate with
5716 | Mzoomrect ((x0, y0), (x1, y1)) ->
5717 Gl.enable `blend;
5718 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5719 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5720 GlDraw.rect (float x0, float y0)
5721 (float x1, float y1);
5722 Gl.disable `blend;
5723 | _ -> ()
5724 end;
5725 enttext ();
5726 scrollindicator ();
5727 Wsi.swapb ();
5730 let zoomrect x y x1 y1 =
5731 let x0 = min x x1
5732 and x1 = max x x1
5733 and y0 = min y y1 in
5734 gotoy (state.y + y0);
5735 state.anchor <- getanchor ();
5736 let zoom = (float state.winw *. conf.zoom) /. float (x1 - x0) in
5737 let margin =
5738 if state.w < state.winw - state.scrollw
5739 then (state.winw - state.scrollw - state.w) / 2
5740 else 0
5742 state.x <- (state.x + margin) - x0;
5743 setzoom zoom;
5744 Wsi.setcursor Wsi.CURSOR_INHERIT;
5745 state.mstate <- Mnone;
5748 let scrollx x =
5749 let winw = state.winw - state.scrollw - 1 in
5750 let s = float x /. float winw in
5751 let destx = truncate (float (state.w + winw) *. s) in
5752 state.x <- winw - destx;
5753 gotoy_and_clear_text state.y;
5754 state.mstate <- Mscrollx;
5757 let scrolly y =
5758 let s = float y /. float state.winh in
5759 let desty = truncate (float (state.maxy - state.winh) *. s) in
5760 gotoy_and_clear_text desty;
5761 state.mstate <- Mscrolly;
5764 let viewmouse button down x y mask =
5765 match button with
5766 | n when (n == 4 || n == 5) && not down ->
5767 if Wsi.withctrl mask
5768 then (
5769 match state.mstate with
5770 | Mzoom (oldn, i) ->
5771 if oldn = n
5772 then (
5773 if i = 2
5774 then
5775 let incr =
5776 match n with
5777 | 5 ->
5778 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5779 | _ ->
5780 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5782 let zoom = conf.zoom -. incr in
5783 setzoom zoom;
5784 state.mstate <- Mzoom (n, 0);
5785 else
5786 state.mstate <- Mzoom (n, i+1);
5788 else state.mstate <- Mzoom (n, 0)
5790 | _ -> state.mstate <- Mzoom (n, 0)
5792 else (
5793 match state.autoscroll with
5794 | Some step -> setautoscrollspeed step (n=4)
5795 | None ->
5796 if conf.wheelbypage
5797 then (
5798 if n = 4
5799 then prevpage ()
5800 else nextpage ()
5802 else
5803 let incr =
5804 if n = 4
5805 then -conf.scrollstep
5806 else conf.scrollstep
5808 let incr = incr * 2 in
5809 let y = clamp incr in
5810 gotoy_and_clear_text y
5813 | n when (n = 6 || n = 7) && not down && canpan () ->
5814 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5815 gotoy_and_clear_text state.y
5817 | 1 when Wsi.withshift mask ->
5818 state.mstate <- Mnone;
5819 if not down then (
5820 match unproject x y with
5821 | Some (pageno, ux, uy) ->
5822 let cmd = Printf.sprintf
5823 "%s %s %d %d %d"
5824 conf.stcmd state.path pageno ux uy
5826 popen cmd []
5827 | None -> ()
5830 | 1 when Wsi.withctrl mask ->
5831 if down
5832 then (
5833 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5834 state.mstate <- Mpan (x, y)
5836 else
5837 state.mstate <- Mnone
5839 | 3 ->
5840 if down
5841 then (
5842 Wsi.setcursor Wsi.CURSOR_CYCLE;
5843 let p = (x, y) in
5844 state.mstate <- Mzoomrect (p, p)
5846 else (
5847 match state.mstate with
5848 | Mzoomrect ((x0, y0), _) ->
5849 if abs (x-x0) > 10 && abs (y - y0) > 10
5850 then zoomrect x0 y0 x y
5851 else (
5852 state.mstate <- Mnone;
5853 Wsi.setcursor Wsi.CURSOR_INHERIT;
5854 G.postRedisplay "kill accidental zoom rect";
5856 | _ ->
5857 Wsi.setcursor Wsi.CURSOR_INHERIT;
5858 state.mstate <- Mnone
5861 | 1 when x > state.winw - state.scrollw ->
5862 if down
5863 then
5864 let _, position, sh = state.uioh#scrollph in
5865 if y > truncate position && y < truncate (position +. sh)
5866 then state.mstate <- Mscrolly
5867 else scrolly y
5868 else
5869 state.mstate <- Mnone
5871 | 1 when y > state.winh - state.hscrollh ->
5872 if down
5873 then
5874 let _, position, sw = state.uioh#scrollpw in
5875 if x > truncate position && x < truncate (position +. sw)
5876 then state.mstate <- Mscrollx
5877 else scrollx x
5878 else
5879 state.mstate <- Mnone
5881 | 1 ->
5882 let dest = if down then getunder x y else Unone in
5883 begin match dest with
5884 | Ulinkgoto _
5885 | Ulinkuri _
5886 | Uremote _
5887 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5888 gotounder dest
5890 | Unone when down ->
5891 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5892 state.mstate <- Mpan (x, y);
5894 | Unone | Utext _ ->
5895 if down
5896 then (
5897 if conf.angle mod 360 = 0
5898 then (
5899 state.mstate <- Msel ((x, y), (x, y));
5900 G.postRedisplay "mouse select";
5903 else (
5904 match state.mstate with
5905 | Mnone -> ()
5907 | Mzoom _ | Mscrollx | Mscrolly ->
5908 state.mstate <- Mnone
5910 | Mzoomrect ((x0, y0), _) ->
5911 zoomrect x0 y0 x y
5913 | Mpan _ ->
5914 Wsi.setcursor Wsi.CURSOR_INHERIT;
5915 state.mstate <- Mnone
5917 | Msel ((x0, y0), (x1, y1)) ->
5918 let rec loop = function
5919 | [] -> ()
5920 | l :: rest ->
5921 let inside =
5922 let a0 = l.pagedispy in
5923 let a1 = a0 + l.pagevh in
5924 let b0 = l.pagedispx in
5925 let b1 = b0 + l.pagevw in
5926 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5927 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5929 if inside
5930 then
5931 match getopaque l.pageno with
5932 | Some opaque ->
5933 begin
5934 match Ne.pipe () with
5935 | Ne.Exn exn ->
5936 showtext '!'
5937 (Printf.sprintf
5938 "can not create sel pipe: %s"
5939 (exntos exn));
5940 | Ne.Res (r, w) ->
5941 let doclose what fd =
5942 Ne.clo fd (fun msg ->
5943 dolog "%s close failed: %s" what msg)
5946 popen conf.selcmd [r, 0; w, -1];
5947 copysel w opaque;
5948 doclose "pipe/r" r;
5949 G.postRedisplay "copysel";
5950 with exn ->
5951 dolog "can not execute %S: %s"
5952 conf.selcmd (exntos exn);
5953 doclose "pipe/r" r;
5954 doclose "pipe/w" w;
5956 | None -> ()
5957 else loop rest
5959 loop state.layout;
5960 Wsi.setcursor Wsi.CURSOR_INHERIT;
5961 state.mstate <- Mnone;
5965 | _ -> ()
5968 let birdseyemouse button down x y mask
5969 (conf, leftx, _, hooverpageno, anchor) =
5970 match button with
5971 | 1 when down ->
5972 let rec loop = function
5973 | [] -> ()
5974 | l :: rest ->
5975 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5976 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5977 then (
5978 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5980 else loop rest
5982 loop state.layout
5983 | 3 -> ()
5984 | _ -> viewmouse button down x y mask
5987 let mouse button down x y mask =
5988 state.uioh <- state.uioh#button button down x y mask;
5991 let motion ~x ~y =
5992 state.uioh <- state.uioh#motion x y
5995 let pmotion ~x ~y =
5996 state.uioh <- state.uioh#pmotion x y;
5999 let uioh = object
6000 method display = ()
6002 method key key mask =
6003 begin match state.mode with
6004 | Textentry textentry -> textentrykeyboard key mask textentry
6005 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
6006 | View -> viewkeyboard key mask
6007 | LinkNav linknav -> linknavkeyboard key mask linknav
6008 end;
6009 state.uioh
6011 method button button bstate x y mask =
6012 begin match state.mode with
6013 | LinkNav _
6014 | View -> viewmouse button bstate x y mask
6015 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6016 | Textentry _ -> ()
6017 end;
6018 state.uioh
6020 method motion x y =
6021 begin match state.mode with
6022 | Textentry _ -> ()
6023 | View | Birdseye _ | LinkNav _ ->
6024 match state.mstate with
6025 | Mzoom _ | Mnone -> ()
6027 | Mpan (x0, y0) ->
6028 let dx = x - x0
6029 and dy = y0 - y in
6030 state.mstate <- Mpan (x, y);
6031 if canpan ()
6032 then state.x <- state.x + dx;
6033 let y = clamp dy in
6034 gotoy_and_clear_text y
6036 | Msel (a, _) ->
6037 state.mstate <- Msel (a, (x, y));
6038 G.postRedisplay "motion select";
6040 | Mscrolly ->
6041 let y = min state.winh (max 0 y) in
6042 scrolly y
6044 | Mscrollx ->
6045 let x = min state.winw (max 0 x) in
6046 scrollx x
6048 | Mzoomrect (p0, _) ->
6049 state.mstate <- Mzoomrect (p0, (x, y));
6050 G.postRedisplay "motion zoomrect";
6051 end;
6052 state.uioh
6054 method pmotion x y =
6055 begin match state.mode with
6056 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6057 let rec loop = function
6058 | [] ->
6059 if hooverpageno != -1
6060 then (
6061 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6062 G.postRedisplay "pmotion birdseye no hoover";
6064 | l :: rest ->
6065 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6066 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6067 then (
6068 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6069 G.postRedisplay "pmotion birdseye hoover";
6071 else loop rest
6073 loop state.layout
6075 | Textentry _ -> ()
6077 | LinkNav _
6078 | View ->
6079 match state.mstate with
6080 | Mnone -> updateunder x y
6081 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6083 end;
6084 state.uioh
6086 method infochanged _ = ()
6088 method scrollph =
6089 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6090 let p, h = scrollph state.y maxy in
6091 state.scrollw, p, h
6093 method scrollpw =
6094 let winw = state.winw - state.scrollw - 1 in
6095 let fwinw = float winw in
6096 let sw =
6097 let sw = fwinw /. float state.w in
6098 let sw = fwinw *. sw in
6099 max sw (float conf.scrollh)
6101 let position, sw =
6102 let f = state.w+winw in
6103 let r = float (winw-state.x) /. float f in
6104 let p = fwinw *. r in
6105 p-.sw/.2., sw
6107 let sw =
6108 if position +. sw > fwinw
6109 then fwinw -. position
6110 else sw
6112 state.hscrollh, position, sw
6114 method modehash =
6115 let modename =
6116 match state.mode with
6117 | LinkNav _ -> "links"
6118 | Textentry _ -> "textentry"
6119 | Birdseye _ -> "birdseye"
6120 | View -> "view"
6122 findkeyhash conf modename
6123 end;;
6125 module Config =
6126 struct
6127 open Parser
6129 let fontpath = ref "";;
6131 module KeyMap =
6132 Map.Make (struct type t = (int * int) let compare = compare end);;
6134 let unent s =
6135 let l = String.length s in
6136 let b = Buffer.create l in
6137 unent b s 0 l;
6138 Buffer.contents b;
6141 let home =
6142 try Sys.getenv "HOME"
6143 with exn ->
6144 prerr_endline
6145 ("Can not determine home directory location: " ^ exntos exn);
6149 let modifier_of_string = function
6150 | "alt" -> Wsi.altmask
6151 | "shift" -> Wsi.shiftmask
6152 | "ctrl" | "control" -> Wsi.ctrlmask
6153 | "meta" -> Wsi.metamask
6154 | _ -> 0
6157 let key_of_string =
6158 let r = Str.regexp "-" in
6159 fun s ->
6160 let elems = Str.full_split r s in
6161 let f n k m =
6162 let g s =
6163 let m1 = modifier_of_string s in
6164 if m1 = 0
6165 then (Wsi.namekey s, m)
6166 else (k, m lor m1)
6167 in function
6168 | Str.Delim s when n land 1 = 0 -> g s
6169 | Str.Text s -> g s
6170 | Str.Delim _ -> (k, m)
6172 let rec loop n k m = function
6173 | [] -> (k, m)
6174 | x :: xs ->
6175 let k, m = f n k m x in
6176 loop (n+1) k m xs
6178 loop 0 0 0 elems
6181 let keys_of_string =
6182 let r = Str.regexp "[ \t]" in
6183 fun s ->
6184 let elems = Str.split r s in
6185 List.map key_of_string elems
6188 let copykeyhashes c =
6189 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6192 let config_of c attrs =
6193 let apply c k v =
6195 match k with
6196 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6197 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6198 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6199 | "preload" -> { c with preload = bool_of_string v }
6200 | "page-bias" -> { c with pagebias = int_of_string v }
6201 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6202 | "horizontal-scroll-step" ->
6203 { c with hscrollstep = max (int_of_string v) 1 }
6204 | "auto-scroll-step" ->
6205 { c with autoscrollstep = max 0 (int_of_string v) }
6206 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6207 | "crop-hack" -> { c with crophack = bool_of_string v }
6208 | "throttle" ->
6209 let mw =
6210 match String.lowercase v with
6211 | "true" -> Some infinity
6212 | "false" -> None
6213 | f -> Some (float_of_string f)
6215 { c with maxwait = mw}
6216 | "highlight-links" -> { c with hlinks = bool_of_string v }
6217 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6218 | "vertical-margin" ->
6219 { c with interpagespace = max 0 (int_of_string v) }
6220 | "zoom" ->
6221 let zoom = float_of_string v /. 100. in
6222 let zoom = max zoom 0.0 in
6223 { c with zoom = zoom }
6224 | "presentation" -> { c with presentation = bool_of_string v }
6225 | "rotation-angle" -> { c with angle = int_of_string v }
6226 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6227 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6228 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6229 | "proportional-display" -> { c with proportional = bool_of_string v }
6230 | "pixmap-cache-size" ->
6231 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6232 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6233 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6234 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6235 | "persistent-location" -> { c with jumpback = bool_of_string v }
6236 | "background-color" -> { c with bgcolor = color_of_string v }
6237 | "scrollbar-in-presentation" ->
6238 { c with scrollbarinpm = bool_of_string v }
6239 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6240 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6241 | "mupdf-store-size" ->
6242 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6243 | "checkers" -> { c with checkers = bool_of_string v }
6244 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6245 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6246 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6247 | "uri-launcher" -> { c with urilauncher = unent v }
6248 | "path-launcher" -> { c with pathlauncher = unent v }
6249 | "color-space" -> { c with colorspace = colorspace_of_string v }
6250 | "invert-colors" -> { c with invert = bool_of_string v }
6251 | "brightness" -> { c with colorscale = float_of_string v }
6252 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6253 | "ghyllscroll" ->
6254 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6255 | "columns" ->
6256 let (n, _, _) as nab = multicolumns_of_string v in
6257 if n < 0
6258 then { c with columns = Csplit (-n, [||]) }
6259 else { c with columns = Cmulti (nab, [||]) }
6260 | "birds-eye-columns" ->
6261 { c with beyecolumns = Some (max (int_of_string v) 2) }
6262 | "selection-command" -> { c with selcmd = unent v }
6263 | "synctex-command" -> { c with stcmd = unent v }
6264 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6265 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6266 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6267 | "use-pbo" -> { c with usepbo = bool_of_string v }
6268 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6269 | _ -> c
6270 with exn ->
6271 prerr_endline ("Error processing attribute (`" ^
6272 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6275 let rec fold c = function
6276 | [] -> c
6277 | (k, v) :: rest ->
6278 let c = apply c k v in
6279 fold c rest
6281 fold { c with keyhashes = copykeyhashes c } attrs;
6284 let fromstring f pos n v d =
6285 try f v
6286 with exn ->
6287 dolog "Error processing attribute (%S=%S) at %d\n%s"
6288 n v pos (exntos exn)
6293 let bookmark_of attrs =
6294 let rec fold title page rely visy = function
6295 | ("title", v) :: rest -> fold v page rely visy rest
6296 | ("page", v) :: rest -> fold title v rely visy rest
6297 | ("rely", v) :: rest -> fold title page v visy rest
6298 | ("visy", v) :: rest -> fold title page rely v rest
6299 | _ :: rest -> fold title page rely visy rest
6300 | [] -> title, page, rely, visy
6302 fold "invalid" "0" "0" "0" attrs
6305 let doc_of attrs =
6306 let rec fold path page rely pan visy = function
6307 | ("path", v) :: rest -> fold v page rely pan visy rest
6308 | ("page", v) :: rest -> fold path v rely pan visy rest
6309 | ("rely", v) :: rest -> fold path page v pan visy rest
6310 | ("pan", v) :: rest -> fold path page rely v visy rest
6311 | ("visy", v) :: rest -> fold path page rely pan v rest
6312 | _ :: rest -> fold path page rely pan visy rest
6313 | [] -> path, page, rely, pan, visy
6315 fold "" "0" "0" "0" "0" attrs
6318 let map_of attrs =
6319 let rec fold rs ls = function
6320 | ("out", v) :: rest -> fold v ls rest
6321 | ("in", v) :: rest -> fold rs v rest
6322 | _ :: rest -> fold ls rs rest
6323 | [] -> ls, rs
6325 fold "" "" attrs
6328 let setconf dst src =
6329 dst.scrollbw <- src.scrollbw;
6330 dst.scrollh <- src.scrollh;
6331 dst.icase <- src.icase;
6332 dst.preload <- src.preload;
6333 dst.pagebias <- src.pagebias;
6334 dst.verbose <- src.verbose;
6335 dst.scrollstep <- src.scrollstep;
6336 dst.maxhfit <- src.maxhfit;
6337 dst.crophack <- src.crophack;
6338 dst.autoscrollstep <- src.autoscrollstep;
6339 dst.maxwait <- src.maxwait;
6340 dst.hlinks <- src.hlinks;
6341 dst.underinfo <- src.underinfo;
6342 dst.interpagespace <- src.interpagespace;
6343 dst.zoom <- src.zoom;
6344 dst.presentation <- src.presentation;
6345 dst.angle <- src.angle;
6346 dst.cwinw <- src.cwinw;
6347 dst.cwinh <- src.cwinh;
6348 dst.savebmarks <- src.savebmarks;
6349 dst.memlimit <- src.memlimit;
6350 dst.proportional <- src.proportional;
6351 dst.texcount <- src.texcount;
6352 dst.sliceheight <- src.sliceheight;
6353 dst.thumbw <- src.thumbw;
6354 dst.jumpback <- src.jumpback;
6355 dst.bgcolor <- src.bgcolor;
6356 dst.scrollbarinpm <- src.scrollbarinpm;
6357 dst.tilew <- src.tilew;
6358 dst.tileh <- src.tileh;
6359 dst.mustoresize <- src.mustoresize;
6360 dst.checkers <- src.checkers;
6361 dst.aalevel <- src.aalevel;
6362 dst.trimmargins <- src.trimmargins;
6363 dst.trimfuzz <- src.trimfuzz;
6364 dst.urilauncher <- src.urilauncher;
6365 dst.colorspace <- src.colorspace;
6366 dst.invert <- src.invert;
6367 dst.colorscale <- src.colorscale;
6368 dst.redirectstderr <- src.redirectstderr;
6369 dst.ghyllscroll <- src.ghyllscroll;
6370 dst.columns <- src.columns;
6371 dst.beyecolumns <- src.beyecolumns;
6372 dst.selcmd <- src.selcmd;
6373 dst.updatecurs <- src.updatecurs;
6374 dst.pathlauncher <- src.pathlauncher;
6375 dst.keyhashes <- copykeyhashes src;
6376 dst.hfsize <- src.hfsize;
6377 dst.hscrollstep <- src.hscrollstep;
6378 dst.pgscale <- src.pgscale;
6379 dst.usepbo <- src.usepbo;
6380 dst.wheelbypage <- src.wheelbypage;
6381 dst.stcmd <- src.stcmd;
6384 let get s =
6385 let h = Hashtbl.create 10 in
6386 let dc = { defconf with angle = defconf.angle } in
6387 let rec toplevel v t spos _ =
6388 match t with
6389 | Vdata | Vcdata | Vend -> v
6390 | Vopen ("llppconfig", _, closed) ->
6391 if closed
6392 then v
6393 else { v with f = llppconfig }
6394 | Vopen _ ->
6395 error "unexpected subelement at top level" s spos
6396 | Vclose _ -> error "unexpected close at top level" s spos
6398 and llppconfig v t spos _ =
6399 match t with
6400 | Vdata | Vcdata -> v
6401 | Vend -> error "unexpected end of input in llppconfig" s spos
6402 | Vopen ("defaults", attrs, closed) ->
6403 let c = config_of dc attrs in
6404 setconf dc c;
6405 if closed
6406 then v
6407 else { v with f = defaults }
6409 | Vopen ("ui-font", attrs, closed) ->
6410 let rec getsize size = function
6411 | [] -> size
6412 | ("size", v) :: rest ->
6413 let size =
6414 fromstring int_of_string spos "size" v fstate.fontsize in
6415 getsize size rest
6416 | l -> getsize size l
6418 fstate.fontsize <- getsize fstate.fontsize attrs;
6419 if closed
6420 then v
6421 else { v with f = uifont (Buffer.create 10) }
6423 | Vopen ("doc", attrs, closed) ->
6424 let pathent, spage, srely, span, svisy = doc_of attrs in
6425 let path = unent pathent
6426 and pageno = fromstring int_of_string spos "page" spage 0
6427 and rely = fromstring float_of_string spos "rely" srely 0.0
6428 and pan = fromstring int_of_string spos "pan" span 0
6429 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6430 let c = config_of dc attrs in
6431 let anchor = (pageno, rely, visy) in
6432 if closed
6433 then (Hashtbl.add h path (c, [], pan, anchor); v)
6434 else { v with f = doc path pan anchor c [] }
6436 | Vopen _ ->
6437 error "unexpected subelement in llppconfig" s spos
6439 | Vclose "llppconfig" -> { v with f = toplevel }
6440 | Vclose _ -> error "unexpected close in llppconfig" s spos
6442 and defaults v t spos _ =
6443 match t with
6444 | Vdata | Vcdata -> v
6445 | Vend -> error "unexpected end of input in defaults" s spos
6446 | Vopen ("keymap", attrs, closed) ->
6447 let modename =
6448 try List.assoc "mode" attrs
6449 with Not_found -> "global" in
6450 if closed
6451 then v
6452 else
6453 let ret keymap =
6454 let h = findkeyhash dc modename in
6455 KeyMap.iter (Hashtbl.replace h) keymap;
6456 defaults
6458 { v with f = pkeymap ret KeyMap.empty }
6460 | Vopen (_, _, _) ->
6461 error "unexpected subelement in defaults" s spos
6463 | Vclose "defaults" ->
6464 { v with f = llppconfig }
6466 | Vclose _ -> error "unexpected close in defaults" s spos
6468 and uifont b v t spos epos =
6469 match t with
6470 | Vdata | Vcdata ->
6471 Buffer.add_substring b s spos (epos - spos);
6473 | Vopen (_, _, _) ->
6474 error "unexpected subelement in ui-font" s spos
6475 | Vclose "ui-font" ->
6476 if String.length !fontpath = 0
6477 then fontpath := Buffer.contents b;
6478 { v with f = llppconfig }
6479 | Vclose _ -> error "unexpected close in ui-font" s spos
6480 | Vend -> error "unexpected end of input in ui-font" s spos
6482 and doc path pan anchor c bookmarks v t spos _ =
6483 match t with
6484 | Vdata | Vcdata -> v
6485 | Vend -> error "unexpected end of input in doc" s spos
6486 | Vopen ("bookmarks", _, closed) ->
6487 if closed
6488 then v
6489 else { v with f = pbookmarks path pan anchor c bookmarks }
6491 | Vopen ("keymap", attrs, closed) ->
6492 let modename =
6493 try List.assoc "mode" attrs
6494 with Not_found -> "global"
6496 if closed
6497 then v
6498 else
6499 let ret keymap =
6500 let h = findkeyhash c modename in
6501 KeyMap.iter (Hashtbl.replace h) keymap;
6502 doc path pan anchor c bookmarks
6504 { v with f = pkeymap ret KeyMap.empty }
6506 | Vopen (_, _, _) ->
6507 error "unexpected subelement in doc" s spos
6509 | Vclose "doc" ->
6510 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6511 { v with f = llppconfig }
6513 | Vclose _ -> error "unexpected close in doc" s spos
6515 and pkeymap ret keymap v t spos _ =
6516 match t with
6517 | Vdata | Vcdata -> v
6518 | Vend -> error "unexpected end of input in keymap" s spos
6519 | Vopen ("map", attrs, closed) ->
6520 let r, l = map_of attrs in
6521 let kss = fromstring keys_of_string spos "in" r [] in
6522 let lss = fromstring keys_of_string spos "out" l [] in
6523 let keymap =
6524 match kss with
6525 | [] -> keymap
6526 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6527 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6529 if closed
6530 then { v with f = pkeymap ret keymap }
6531 else
6532 let f () = v in
6533 { v with f = skip "map" f }
6535 | Vopen _ ->
6536 error "unexpected subelement in keymap" s spos
6538 | Vclose "keymap" ->
6539 { v with f = ret keymap }
6541 | Vclose _ -> error "unexpected close in keymap" s spos
6543 and pbookmarks path pan anchor c bookmarks v t spos _ =
6544 match t with
6545 | Vdata | Vcdata -> v
6546 | Vend -> error "unexpected end of input in bookmarks" s spos
6547 | Vopen ("item", attrs, closed) ->
6548 let titleent, spage, srely, svisy = bookmark_of attrs in
6549 let page = fromstring int_of_string spos "page" spage 0
6550 and rely = fromstring float_of_string spos "rely" srely 0.0
6551 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6552 let bookmarks =
6553 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6555 if closed
6556 then { v with f = pbookmarks path pan anchor c bookmarks }
6557 else
6558 let f () = v in
6559 { v with f = skip "item" f }
6561 | Vopen _ ->
6562 error "unexpected subelement in bookmarks" s spos
6564 | Vclose "bookmarks" ->
6565 { v with f = doc path pan anchor c bookmarks }
6567 | Vclose _ -> error "unexpected close in bookmarks" s spos
6569 and skip tag f v t spos _ =
6570 match t with
6571 | Vdata | Vcdata -> v
6572 | Vend ->
6573 error ("unexpected end of input in skipped " ^ tag) s spos
6574 | Vopen (tag', _, closed) ->
6575 if closed
6576 then v
6577 else
6578 let f' () = { v with f = skip tag f } in
6579 { v with f = skip tag' f' }
6580 | Vclose ctag ->
6581 if tag = ctag
6582 then f ()
6583 else error ("unexpected close in skipped " ^ tag) s spos
6586 parse { f = toplevel; accu = () } s;
6587 h, dc;
6590 let do_load f ic =
6592 let len = in_channel_length ic in
6593 let s = String.create len in
6594 really_input ic s 0 len;
6595 f s;
6596 with
6597 | Parse_error (msg, s, pos) ->
6598 let subs = subs s pos in
6599 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6600 failwith ("parse error: " ^ s)
6602 | exn ->
6603 failwith ("config load error: " ^ exntos exn)
6606 let defconfpath =
6607 let dir =
6609 let dir = Filename.concat home ".config" in
6610 if Sys.is_directory dir then dir else home
6611 with _ -> home
6613 Filename.concat dir "llpp.conf"
6616 let confpath = ref defconfpath;;
6618 let load1 f =
6619 if Sys.file_exists !confpath
6620 then
6621 match
6622 (try Some (open_in_bin !confpath)
6623 with exn ->
6624 prerr_endline
6625 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6626 exntos exn);
6627 None
6629 with
6630 | Some ic ->
6631 let success =
6633 f (do_load get ic)
6634 with exn ->
6635 prerr_endline
6636 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6637 exntos exn);
6638 false
6640 close_in ic;
6641 success
6643 | None -> false
6644 else
6645 f (Hashtbl.create 0, defconf)
6648 let load () =
6649 let f (h, dc) =
6650 let pc, pb, px, pa =
6652 Hashtbl.find h (Filename.basename state.path)
6653 with Not_found -> dc, [], 0, emptyanchor
6655 setconf defconf dc;
6656 setconf conf pc;
6657 state.bookmarks <- pb;
6658 state.x <- px;
6659 state.scrollw <- conf.scrollbw;
6660 if conf.jumpback
6661 then state.anchor <- pa;
6662 cbput state.hists.nav pa;
6663 true
6665 load1 f
6668 let add_attrs bb always dc c =
6669 let ob s a b =
6670 if always || a != b
6671 then Printf.bprintf bb "\n %s='%b'" s a
6672 and oi s a b =
6673 if always || a != b
6674 then Printf.bprintf bb "\n %s='%d'" s a
6675 and oI s a b =
6676 if always || a != b
6677 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6678 and oz s a b =
6679 if always || a <> b
6680 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6681 and oF s a b =
6682 if always || a <> b
6683 then Printf.bprintf bb "\n %s='%f'" s a
6684 and oc s a b =
6685 if always || a <> b
6686 then
6687 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6688 and oC s a b =
6689 if always || a <> b
6690 then
6691 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6692 and oR s a b =
6693 if always || a <> b
6694 then
6695 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6696 and os s a b =
6697 if always || a <> b
6698 then
6699 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6700 and og s a b =
6701 if always || a <> b
6702 then
6703 match a with
6704 | None -> ()
6705 | Some (_N, _A, _B) ->
6706 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6707 and oW s a b =
6708 if always || a <> b
6709 then
6710 let v =
6711 match a with
6712 | None -> "false"
6713 | Some f ->
6714 if f = infinity
6715 then "true"
6716 else string_of_float f
6718 Printf.bprintf bb "\n %s='%s'" s v
6719 and oco s a b =
6720 if always || a <> b
6721 then
6722 match a with
6723 | Cmulti ((n, a, b), _) when n > 1 ->
6724 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6725 | Csplit (n, _) when n > 1 ->
6726 Printf.bprintf bb "\n %s='%d'" s ~-n
6727 | _ -> ()
6728 and obeco s a b =
6729 if always || a <> b
6730 then
6731 match a with
6732 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6733 | _ -> ()
6735 oi "width" c.cwinw dc.cwinw;
6736 oi "height" c.cwinh dc.cwinh;
6737 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6738 oi "scroll-handle-height" c.scrollh dc.scrollh;
6739 ob "case-insensitive-search" c.icase dc.icase;
6740 ob "preload" c.preload dc.preload;
6741 oi "page-bias" c.pagebias dc.pagebias;
6742 oi "scroll-step" c.scrollstep dc.scrollstep;
6743 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6744 ob "max-height-fit" c.maxhfit dc.maxhfit;
6745 ob "crop-hack" c.crophack dc.crophack;
6746 oW "throttle" c.maxwait dc.maxwait;
6747 ob "highlight-links" c.hlinks dc.hlinks;
6748 ob "under-cursor-info" c.underinfo dc.underinfo;
6749 oi "vertical-margin" c.interpagespace dc.interpagespace;
6750 oz "zoom" c.zoom dc.zoom;
6751 ob "presentation" c.presentation dc.presentation;
6752 oi "rotation-angle" c.angle dc.angle;
6753 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6754 ob "proportional-display" c.proportional dc.proportional;
6755 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6756 oi "tex-count" c.texcount dc.texcount;
6757 oi "slice-height" c.sliceheight dc.sliceheight;
6758 oi "thumbnail-width" c.thumbw dc.thumbw;
6759 ob "persistent-location" c.jumpback dc.jumpback;
6760 oc "background-color" c.bgcolor dc.bgcolor;
6761 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6762 oi "tile-width" c.tilew dc.tilew;
6763 oi "tile-height" c.tileh dc.tileh;
6764 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6765 ob "checkers" c.checkers dc.checkers;
6766 oi "aalevel" c.aalevel dc.aalevel;
6767 ob "trim-margins" c.trimmargins dc.trimmargins;
6768 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6769 os "uri-launcher" c.urilauncher dc.urilauncher;
6770 os "path-launcher" c.pathlauncher dc.pathlauncher;
6771 oC "color-space" c.colorspace dc.colorspace;
6772 ob "invert-colors" c.invert dc.invert;
6773 oF "brightness" c.colorscale dc.colorscale;
6774 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6775 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6776 oco "columns" c.columns dc.columns;
6777 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6778 os "selection-command" c.selcmd dc.selcmd;
6779 os "synctex-command" c.stcmd dc.stcmd;
6780 ob "update-cursor" c.updatecurs dc.updatecurs;
6781 oi "hint-font-size" c.hfsize dc.hfsize;
6782 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6783 oF "page-scroll-scale" c.pgscale dc.pgscale;
6784 ob "use-pbo" c.usepbo dc.usepbo;
6785 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
6788 let keymapsbuf always dc c =
6789 let bb = Buffer.create 16 in
6790 let rec loop = function
6791 | [] -> ()
6792 | (modename, h) :: rest ->
6793 let dh = findkeyhash dc modename in
6794 if always || h <> dh
6795 then (
6796 if Hashtbl.length h > 0
6797 then (
6798 if Buffer.length bb > 0
6799 then Buffer.add_char bb '\n';
6800 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6801 Hashtbl.iter (fun i o ->
6802 let isdifferent = always ||
6804 let dO = Hashtbl.find dh i in
6805 dO <> o
6806 with Not_found -> true
6808 if isdifferent
6809 then
6810 let addkm (k, m) =
6811 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6812 if Wsi.withalt m then Buffer.add_string bb "alt-";
6813 if Wsi.withshift m then Buffer.add_string bb "shift-";
6814 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6815 Buffer.add_string bb (Wsi.keyname k);
6817 let addkms l =
6818 let rec loop = function
6819 | [] -> ()
6820 | km :: [] -> addkm km
6821 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6823 loop l
6825 Buffer.add_string bb "<map in='";
6826 addkm i;
6827 match o with
6828 | KMinsrt km ->
6829 Buffer.add_string bb "' out='";
6830 addkm km;
6831 Buffer.add_string bb "'/>\n"
6833 | KMinsrl kms ->
6834 Buffer.add_string bb "' out='";
6835 addkms kms;
6836 Buffer.add_string bb "'/>\n"
6838 | KMmulti (ins, kms) ->
6839 Buffer.add_char bb ' ';
6840 addkms ins;
6841 Buffer.add_string bb "' out='";
6842 addkms kms;
6843 Buffer.add_string bb "'/>\n"
6844 ) h;
6845 Buffer.add_string bb "</keymap>";
6848 loop rest
6850 loop c.keyhashes;
6854 let save () =
6855 let uifontsize = fstate.fontsize in
6856 let bb = Buffer.create 32768 in
6857 let w, h =
6858 List.fold_left
6859 (fun (w, h) ws ->
6860 match ws with
6861 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh)
6862 | Wsi.MaxVert -> (w, conf.cwinh)
6863 | Wsi.MaxHorz -> (conf.cwinw, h)
6865 (state.winw, state.winh) state.winstate
6867 conf.cwinw <- w;
6868 conf.cwinh <- h;
6869 let f (h, dc) =
6870 let dc = if conf.bedefault then conf else dc in
6871 Buffer.add_string bb "<llppconfig>\n";
6873 if String.length !fontpath > 0
6874 then
6875 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6876 uifontsize
6877 !fontpath
6878 else (
6879 if uifontsize <> 14
6880 then
6881 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6884 Buffer.add_string bb "<defaults ";
6885 add_attrs bb true dc dc;
6886 let kb = keymapsbuf true dc dc in
6887 if Buffer.length kb > 0
6888 then (
6889 Buffer.add_string bb ">\n";
6890 Buffer.add_buffer bb kb;
6891 Buffer.add_string bb "\n</defaults>\n";
6893 else Buffer.add_string bb "/>\n";
6895 let adddoc path pan anchor c bookmarks =
6896 if bookmarks == [] && c = dc && anchor = emptyanchor
6897 then ()
6898 else (
6899 Printf.bprintf bb "<doc path='%s'"
6900 (enent path 0 (String.length path));
6902 if anchor <> emptyanchor
6903 then (
6904 let n, rely, visy = anchor in
6905 Printf.bprintf bb " page='%d'" n;
6906 if rely > 1e-6
6907 then
6908 Printf.bprintf bb " rely='%f'" rely
6910 if abs_float visy > 1e-6
6911 then
6912 Printf.bprintf bb " visy='%f'" visy
6916 if pan != 0
6917 then Printf.bprintf bb " pan='%d'" pan;
6919 add_attrs bb false dc c;
6920 let kb = keymapsbuf false dc c in
6922 begin match bookmarks with
6923 | [] ->
6924 if Buffer.length kb > 0
6925 then (
6926 Buffer.add_string bb ">\n";
6927 Buffer.add_buffer bb kb;
6928 Buffer.add_string bb "\n</doc>\n";
6930 else Buffer.add_string bb "/>\n"
6931 | _ ->
6932 Buffer.add_string bb ">\n<bookmarks>\n";
6933 List.iter (fun (title, _level, (page, rely, visy)) ->
6934 Printf.bprintf bb
6935 "<item title='%s' page='%d'"
6936 (enent title 0 (String.length title))
6937 page
6939 if rely > 1e-6
6940 then
6941 Printf.bprintf bb " rely='%f'" rely
6943 if abs_float visy > 1e-6
6944 then
6945 Printf.bprintf bb " visy='%f'" visy
6947 Buffer.add_string bb "/>\n";
6948 ) bookmarks;
6949 Buffer.add_string bb "</bookmarks>";
6950 if Buffer.length kb > 0
6951 then (
6952 Buffer.add_string bb "\n";
6953 Buffer.add_buffer bb kb;
6955 Buffer.add_string bb "\n</doc>\n";
6956 end;
6960 let pan, conf =
6961 match state.mode with
6962 | Birdseye (c, pan, _, _, _) ->
6963 let beyecolumns =
6964 match conf.columns with
6965 | Cmulti ((c, _, _), _) -> Some c
6966 | Csingle _ -> None
6967 | Csplit _ -> None
6968 and columns =
6969 match c.columns with
6970 | Cmulti (c, _) -> Cmulti (c, [||])
6971 | Csingle _ -> Csingle [||]
6972 | Csplit _ -> failwith "quit from bird's eye while split"
6974 pan, { c with beyecolumns = beyecolumns; columns = columns }
6975 | _ -> state.x, conf
6977 let basename = Filename.basename state.path in
6978 adddoc basename pan (getanchor ())
6979 (let conf =
6980 let autoscrollstep =
6981 match state.autoscroll with
6982 | Some step -> step
6983 | None -> conf.autoscrollstep
6985 match state.mode with
6986 | Birdseye (bc, _, _, _, _) ->
6987 { conf with
6988 zoom = bc.zoom;
6989 presentation = bc.presentation;
6990 interpagespace = bc.interpagespace;
6991 maxwait = bc.maxwait;
6992 autoscrollstep = autoscrollstep }
6993 | _ -> { conf with autoscrollstep = autoscrollstep }
6994 in conf)
6995 (if conf.savebmarks then state.bookmarks else []);
6997 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6998 if basename <> path
6999 then adddoc path x anchor c bookmarks
7000 ) h;
7001 Buffer.add_string bb "</llppconfig>\n";
7002 true;
7004 if load1 f && Buffer.length bb > 0
7005 then
7007 let tmp = !confpath ^ ".tmp" in
7008 let oc = open_out_bin tmp in
7009 Buffer.output_buffer oc bb;
7010 close_out oc;
7011 Unix.rename tmp !confpath;
7012 with exn ->
7013 prerr_endline
7014 ("error while saving configuration: " ^ exntos exn)
7016 end;;
7018 let adderrmsg src msg =
7019 Buffer.add_string state.errmsgs msg;
7020 state.newerrmsgs <- true;
7021 G.postRedisplay src
7024 let adderrfmt src fmt =
7025 Format.kprintf (fun s -> adderrmsg src s) fmt;
7028 let ract cmds =
7029 let cl = splitatspace cmds in
7030 let scan s fmt f =
7031 try Scanf.sscanf s fmt f
7032 with exn ->
7033 adderrfmt "remote exec"
7034 "error processing '%S': %s\n" cmds (exntos exn)
7036 match cl with
7037 | "reload" :: [] -> reload ()
7038 | "goto" :: args :: [] ->
7039 scan args "%u %f %f"
7040 (fun pageno x y ->
7041 let cmd, _ = state.geomcmds in
7042 if String.length cmd = 0
7043 then gotopagexy pageno x y
7044 else
7045 let f prevf () =
7046 gotopagexy pageno x y;
7047 prevf ()
7049 state.reprf <- f state.reprf
7051 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7052 | "rect" :: args :: [] ->
7053 scan args "%u %u %f %f %f %f"
7054 (fun pageno color x0 y0 x1 y1 ->
7055 onpagerect pageno (fun w h ->
7056 let _,w1,h1,_ = getpagedim pageno in
7057 let sw = float w1 /. w
7058 and sh = float h1 /. h in
7059 let x0s = x0 *. sw
7060 and x1s = x1 *. sw
7061 and y0s = y0 *. sh
7062 and y1s = y1 *. sh in
7063 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7064 debugrect rect;
7065 state.rects <- (pageno, color, rect) :: state.rects;
7066 G.postRedisplay "rect";
7069 | "activatewin" :: [] -> Wsi.activatewin ()
7070 | "quit" :: [] -> raise Quit
7071 | _ ->
7072 adderrfmt "remote command"
7073 "error processing remote command: %S\n" cmds;
7076 let remote =
7077 let scratch = String.create 80 in
7078 let buf = Buffer.create 80 in
7079 fun fd ->
7080 let rec tempfr () =
7081 try Some (Unix.read fd scratch 0 80)
7082 with
7083 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7084 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7085 | exn -> raise exn
7087 match tempfr () with
7088 | None -> Some fd
7089 | Some n ->
7090 if n = 0
7091 then (
7092 Unix.close fd;
7093 if Buffer.length buf > 0
7094 then (
7095 let s = Buffer.contents buf in
7096 Buffer.clear buf;
7097 ract s;
7099 None
7101 else
7102 let rec eat ppos =
7103 let nlpos =
7105 let pos = String.index_from scratch ppos '\n' in
7106 if pos >= n then -1 else pos
7107 with Not_found -> -1
7109 if nlpos >= 0
7110 then (
7111 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7112 let s = Buffer.contents buf in
7113 Buffer.clear buf;
7114 ract s;
7115 eat (nlpos+1);
7117 else (
7118 Buffer.add_substring buf scratch ppos (n-ppos);
7119 Some fd
7121 in eat 0
7124 let remoteopen path =
7125 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7126 with exn ->
7127 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7128 None
7131 let () =
7132 let trimcachepath = ref "" in
7133 let rcmdpath = ref "" in
7134 Arg.parse
7135 (Arg.align
7136 [("-p", Arg.String (fun s -> state.password <- s),
7137 "<password> Set password");
7139 ("-f", Arg.String (fun s -> Config.fontpath := s),
7140 "<path> Set path to the user interface font");
7142 ("-c", Arg.String (fun s -> Config.confpath := s),
7143 "<path> Set path to the configuration file");
7145 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7146 "<path> Set path to the trim cache file");
7148 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7149 "<named-destination> Set named destination");
7151 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7153 ("-remote", Arg.String (fun s -> rcmdpath := s),
7154 "<path> Set path to the remote commands source");
7156 ("-v", Arg.Unit (fun () ->
7157 Printf.printf
7158 "%s\nconfiguration path: %s\n"
7159 (version ())
7160 Config.defconfpath
7162 exit 0), " Print version and exit");
7165 (fun s -> state.path <- s)
7166 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7168 if String.length state.path = 0
7169 then (prerr_endline "file name missing"; exit 1);
7171 if not (Config.load ())
7172 then prerr_endline "failed to load configuration";
7174 let globalkeyhash = findkeyhash conf "global" in
7175 let wsfd, winw, winh = Wsi.init (object
7176 method expose =
7177 if nogeomcmds state.geomcmds || platform == Posx
7178 then display ()
7179 else (
7180 GlClear.color (scalecolor2 conf.bgcolor);
7181 GlClear.clear [`color];
7183 method display = display ()
7184 method reshape w h = reshape w h
7185 method mouse b d x y m = mouse b d x y m
7186 method motion x y = state.mpos <- (x, y); motion x y
7187 method pmotion x y = state.mpos <- (x, y); pmotion x y
7188 method key k m =
7189 let mascm = m land (
7190 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
7191 ) in
7192 match state.keystate with
7193 | KSnone ->
7194 let km = k, mascm in
7195 begin
7196 match
7197 let modehash = state.uioh#modehash in
7198 try Hashtbl.find modehash km
7199 with Not_found ->
7200 try Hashtbl.find globalkeyhash km
7201 with Not_found -> KMinsrt (k, m)
7202 with
7203 | KMinsrt (k, m) -> keyboard k m
7204 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
7205 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
7207 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
7208 List.iter (fun (k, m) -> keyboard k m) insrt;
7209 state.keystate <- KSnone
7210 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
7211 state.keystate <- KSinto (keys, insrt)
7212 | _ ->
7213 state.keystate <- KSnone
7215 method enter x y = state.mpos <- (x, y); pmotion x y
7216 method leave = state.mpos <- (-1, -1)
7217 method winstate wsl = state.winstate <- wsl
7218 method quit = raise Quit
7219 end) conf.cwinw conf.cwinh (platform = Posx) in
7221 state.wsfd <- wsfd;
7223 if not (
7224 List.exists GlMisc.check_extension
7225 [ "GL_ARB_texture_rectangle"
7226 ; "GL_EXT_texture_recangle"
7227 ; "GL_NV_texture_rectangle" ]
7229 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
7231 let cr, sw =
7232 match Ne.pipe () with
7233 | Ne.Exn exn ->
7234 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
7235 exit 1
7236 | Ne.Res rw -> rw
7237 and sr, cw =
7238 match Ne.pipe () with
7239 | Ne.Exn exn ->
7240 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
7241 exit 1
7242 | Ne.Res rw -> rw
7245 cloexec cr;
7246 cloexec sw;
7247 cloexec sr;
7248 cloexec cw;
7250 setcheckers conf.checkers;
7251 redirectstderr ();
7253 init (cr, cw) (
7254 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
7255 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
7256 !Config.fontpath, !trimcachepath,
7257 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7259 state.sr <- sr;
7260 state.sw <- sw;
7261 state.text <- "Opening " ^ (mbtoutf8 state.path);
7262 reshape winw winh;
7263 opendoc state.path state.password;
7264 state.uioh <- uioh;
7266 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7267 let optrfd =
7268 ref (
7269 if String.length !rcmdpath > 0
7270 then remoteopen !rcmdpath
7271 else None
7275 let rec loop deadline =
7276 let r =
7277 match state.errfd with
7278 | None -> [state.sr; state.wsfd]
7279 | Some fd -> [state.sr; state.wsfd; fd]
7281 let r =
7282 match !optrfd with
7283 | None -> r
7284 | Some fd -> fd :: r
7286 if state.redisplay
7287 then (
7288 state.redisplay <- false;
7289 display ();
7291 let timeout =
7292 let now = now () in
7293 if deadline > now
7294 then (
7295 if deadline = infinity
7296 then ~-.1.0
7297 else max 0.0 (deadline -. now)
7299 else 0.0
7301 let r, _, _ =
7302 try Unix.select r [] [] timeout
7303 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7305 begin match r with
7306 | [] ->
7307 state.ghyll None;
7308 let newdeadline =
7309 if state.ghyll == noghyll
7310 then
7311 match state.autoscroll with
7312 | Some step when step != 0 ->
7313 let y = state.y + step in
7314 let y =
7315 if y < 0
7316 then state.maxy
7317 else if y >= state.maxy then 0 else y
7319 gotoy y;
7320 if state.mode = View
7321 then state.text <- "";
7322 deadline +. 0.01
7323 | _ -> infinity
7324 else deadline +. 0.01
7326 loop newdeadline
7328 | l ->
7329 let rec checkfds = function
7330 | [] -> ()
7331 | fd :: rest when fd = state.sr ->
7332 let cmd = readcmd state.sr in
7333 act cmd;
7334 checkfds rest
7336 | fd :: rest when fd = state.wsfd ->
7337 Wsi.readresp fd;
7338 checkfds rest
7340 | fd :: rest when Some fd = !optrfd ->
7341 begin match remote fd with
7342 | None -> optrfd := remoteopen !rcmdpath;
7343 | opt -> optrfd := opt
7344 end;
7345 checkfds rest
7347 | fd :: rest ->
7348 let s = String.create 80 in
7349 let n = tempfailureretry (Unix.read fd s 0) 80 in
7350 if conf.redirectstderr
7351 then (
7352 Buffer.add_substring state.errmsgs s 0 n;
7353 state.newerrmsgs <- true;
7354 state.redisplay <- true;
7356 else (
7357 prerr_string (String.sub s 0 n);
7358 flush stderr;
7360 checkfds rest
7362 checkfds l;
7363 let newdeadline =
7364 let deadline1 =
7365 if deadline = infinity
7366 then now () +. 0.01
7367 else deadline
7369 match state.autoscroll with
7370 | Some step when step != 0 -> deadline1
7371 | _ -> if state.ghyll == noghyll then infinity else deadline1
7373 loop newdeadline
7374 end;
7377 loop infinity;
7378 with Quit ->
7379 Config.save ();