Cosmetics
[llpp.git] / main.ml
blob68ee419020abacbb17e6de311ef17d3687f4b492
1 open Utils;;
3 exception Quit;;
5 type under =
6 | Unone
7 | Ulinkuri of string
8 | Ulinkgoto of (int * int)
9 | Utext of facename
10 | Uunexpected of string
11 | Ulaunch of string
12 | Unamed of string
13 | Uremote of (string * int)
14 and facename = string;;
16 type params = (angle * fitmodel * trimparams
17 * texcount * sliceheight * memsize
18 * colorspace * fontpath * trimcachepath
19 * haspbo)
20 and pageno = int
21 and width = int
22 and height = int
23 and leftx = int
24 and opaque = string
25 and recttype = int
26 and pixmapsize = int
27 and angle = int
28 and trimmargins = bool
29 and interpagespace = int
30 and texcount = int
31 and sliceheight = int
32 and gen = int
33 and top = float
34 and dtop = float
35 and fontpath = string
36 and trimcachepath = string
37 and memsize = int
38 and aalevel = int
39 and irect = (int * int * int * int)
40 and trimparams = (trimmargins * irect)
41 and colorspace = | Rgb | Bgr | Gray
42 and fitmodel = | FitWidth | FitProportional | FitPage
43 and haspbo = bool
46 type x = int
47 and y = int
48 and tilex = int
49 and tiley = int
50 and tileparams = (x * y * width * height * tilex * tiley)
53 type link =
54 | Lnotfound
55 | Lfound of int
56 and linkdir =
57 | LDfirst
58 | LDlast
59 | LDfirstvisible of (int * int * int)
60 | LDleft of int
61 | LDright of int
62 | LDdown of int
63 | LDup of int
66 type pagewithlinks =
67 | Pwlnotfound
68 | Pwl of int
71 type keymap =
72 | KMinsrt of key
73 | KMinsrl of key list
74 | KMmulti of key list * key list
75 and key = int * int
76 and keyhash = (key, keymap) Hashtbl.t
77 and keystate =
78 | KSnone
79 | KSinto of (key list * key list)
82 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
83 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
85 type pipe = (Unix.file_descr * Unix.file_descr);;
87 external init : pipe -> params -> unit = "ml_init";;
88 external seltext : string -> (int * int * int * int) -> unit = "ml_seltext";;
89 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
90 external getpdimrect : int -> float array = "ml_getpdimrect";;
91 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
92 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
93 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
94 external measurestr : int -> string -> float = "ml_measure_string";;
95 external postprocess :
96 opaque -> int -> int -> int -> (int * string * int) -> int
97 = "ml_postprocess";;
98 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
99 external platform : unit -> platform = "ml_platform";;
100 external setaalevel : int -> unit = "ml_setaalevel";;
101 external realloctexts : int -> bool = "ml_realloctexts";;
102 external findlink : opaque -> linkdir -> link = "ml_findlink";;
103 external getlink : opaque -> int -> under = "ml_getlink";;
104 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
105 external getlinkcount : opaque -> int = "ml_getlinkcount";;
106 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
107 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
108 external getpbo : width -> height -> colorspace -> string = "ml_getpbo";;
109 external freepbo : string -> unit = "ml_freepbo";;
110 external unmappbo : string -> unit = "ml_unmappbo";;
111 external pbousable : unit -> bool = "ml_pbo_usable";;
112 external unproject : opaque -> int -> int -> (int * int) option
113 = "ml_unproject";;
114 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
116 let platform_to_string = function
117 | Punknown -> "unknown"
118 | Plinux -> "Linux"
119 | Posx -> "OSX"
120 | Psun -> "Sun"
121 | Pfreebsd -> "FreeBSD"
122 | Pdragonflybsd -> "DragonflyBSD"
123 | Popenbsd -> "OpenBSD"
124 | Pnetbsd -> "NetBSD"
125 | Pcygwin -> "Cygwin"
128 let platform = platform ();;
130 let now = Unix.gettimeofday;;
132 let popen cmd fda =
133 if platform = Pcygwin
134 then (
135 let sh = "/bin/sh" in
136 let args = [|sh; "-c"; cmd|] in
137 let rec std si so se = function
138 | [] -> si, so, se
139 | (fd, 0) :: rest -> std fd so se rest
140 | (fd, -1) :: rest ->
141 Unix.set_close_on_exec fd;
142 std si so se rest
143 | (_, n) :: _ ->
144 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
146 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
147 ignore (Unix.create_process sh args si so se)
149 else popen cmd fda;
152 type mpos = int * int
153 and mstate =
154 | Msel of (mpos * mpos)
155 | Mpan of mpos
156 | Mscrolly | Mscrollx
157 | Mzoom of (int * int)
158 | Mzoomrect of (mpos * mpos)
159 | Mnone
162 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
163 and onkey = string -> int -> te
164 and ondone = string -> unit
165 and histcancel = unit -> unit
166 and onhist = ((histcmd -> string) * histcancel)
167 and histcmd = HCnext | HCprev | HCfirst | HClast
168 and cancelonempty = bool
169 and te =
170 | TEstop
171 | TEdone of string
172 | TEcont of string
173 | TEswitch of textentry
176 type 'a circbuf =
177 { store : 'a array
178 ; mutable rc : int
179 ; mutable wc : int
180 ; mutable len : int
184 let bound v minv maxv =
185 max minv (min maxv v);
188 let cbnew n v =
189 { store = Array.create n v
190 ; rc = 0
191 ; wc = 0
192 ; len = 0
196 let cbcap b = Array.length b.store;;
198 let cbput b v =
199 let cap = cbcap b in
200 b.store.(b.wc) <- v;
201 b.wc <- (b.wc + 1) mod cap;
202 b.rc <- b.wc;
203 b.len <- min (b.len + 1) cap;
206 let cbempty b = b.len = 0;;
208 let cbgetg b circular dir =
209 if cbempty b
210 then b.store.(0)
211 else
212 let rc = b.rc + dir in
213 let rc =
214 if circular
215 then (
216 if rc = -1
217 then b.len-1
218 else (
219 if rc >= b.len
220 then 0
221 else rc
224 else bound rc 0 (b.len-1)
226 b.rc <- rc;
227 b.store.(rc);
230 let cbget b = cbgetg b false;;
231 let cbgetc b = cbgetg b true;;
233 let drawstring size x y s =
234 Gl.enable `blend;
235 Gl.enable `texture_2d;
236 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
237 ignore (drawstr size x y s);
238 Gl.disable `blend;
239 Gl.disable `texture_2d;
242 let drawstring1 size x y s =
243 drawstr size x y s;
246 let drawstring2 size x y fmt =
247 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
250 type page =
251 { pageno : int
252 ; pagedimno : int
253 ; pagew : int
254 ; pageh : int
255 ; pagex : int
256 ; pagey : int
257 ; pagevw : int
258 ; pagevh : int
259 ; pagedispx : int
260 ; pagedispy : int
261 ; pagecol : int
265 let debugl l =
266 dolog "l %d dim=%d {" l.pageno l.pagedimno;
267 dolog " WxH %dx%d" l.pagew l.pageh;
268 dolog " vWxH %dx%d" l.pagevw l.pagevh;
269 dolog " pagex,y %d,%d" l.pagex l.pagey;
270 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
271 dolog " column %d" l.pagecol;
272 dolog "}";
275 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
276 dolog "rect {";
277 dolog " x0,y0=(% f, % f)" x0 y0;
278 dolog " x1,y1=(% f, % f)" x1 y1;
279 dolog " x2,y2=(% f, % f)" x2 y2;
280 dolog " x3,y3=(% f, % f)" x3 y3;
281 dolog "}";
284 type multicolumns = multicol * pagegeom
285 and singlecolumn = pagegeom
286 and splitcolumns = columncount * pagegeom
287 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
288 and multicol = columncount * covercount * covercount
289 and pdimno = int
290 and columncount = int
291 and covercount = int;;
293 type conf =
294 { mutable scrollbw : int
295 ; mutable scrollh : int
296 ; mutable icase : bool
297 ; mutable preload : bool
298 ; mutable pagebias : int
299 ; mutable verbose : bool
300 ; mutable debug : bool
301 ; mutable scrollstep : int
302 ; mutable hscrollstep : int
303 ; mutable maxhfit : bool
304 ; mutable crophack : bool
305 ; mutable autoscrollstep : int
306 ; mutable maxwait : float option
307 ; mutable hlinks : bool
308 ; mutable underinfo : bool
309 ; mutable interpagespace : interpagespace
310 ; mutable zoom : float
311 ; mutable presentation : bool
312 ; mutable angle : angle
313 ; mutable cwinw : int
314 ; mutable cwinh : int
315 ; mutable savebmarks : bool
316 ; mutable fitmodel : fitmodel
317 ; mutable trimmargins : trimmargins
318 ; mutable trimfuzz : irect
319 ; mutable memlimit : memsize
320 ; mutable texcount : texcount
321 ; mutable sliceheight : sliceheight
322 ; mutable thumbw : width
323 ; mutable jumpback : bool
324 ; mutable bgcolor : (float * float * float)
325 ; mutable bedefault : bool
326 ; mutable scrollbarinpm : bool
327 ; mutable tilew : int
328 ; mutable tileh : int
329 ; mutable mustoresize : memsize
330 ; mutable checkers : bool
331 ; mutable aalevel : int
332 ; mutable urilauncher : string
333 ; mutable pathlauncher : string
334 ; mutable colorspace : colorspace
335 ; mutable invert : bool
336 ; mutable colorscale : float
337 ; mutable redirectstderr : bool
338 ; mutable ghyllscroll : (int * int * int) option
339 ; mutable columns : columns
340 ; mutable beyecolumns : columncount option
341 ; mutable selcmd : string
342 ; mutable updatecurs : bool
343 ; mutable keyhashes : (string * keyhash) list
344 ; mutable hfsize : int
345 ; mutable pgscale : float
346 ; mutable usepbo : bool
347 ; mutable wheelbypage : bool
348 ; mutable stcmd : string
350 and columns =
351 | Csingle of singlecolumn
352 | Cmulti of multicolumns
353 | Csplit of splitcolumns
356 type anchor = pageno * top * dtop;;
358 type outline = string * int * anchor;;
360 type rect = float * float * float * float * float * float * float * float;;
362 type tile = opaque * pixmapsize * elapsed
363 and elapsed = float;;
364 type pagemapkey = pageno * gen;;
365 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
366 and row = int
367 and col = int;;
369 let emptyanchor = (0, 0.0, 0.0);;
371 type infochange = | Memused | Docinfo | Pdim;;
373 class type uioh = object
374 method display : unit
375 method key : int -> int -> uioh
376 method button : int -> bool -> int -> int -> int -> uioh
377 method motion : int -> int -> uioh
378 method pmotion : int -> int -> uioh
379 method infochanged : infochange -> unit
380 method scrollpw : (int * float * float)
381 method scrollph : (int * float * float)
382 method modehash : keyhash
383 method eformsgs : bool
384 end;;
386 type mode =
387 | Birdseye of (conf * leftx * pageno * pageno * anchor)
388 | Textentry of (textentry * onleave)
389 | View
390 | LinkNav of linktarget
391 and onleave = leavetextentrystatus -> unit
392 and leavetextentrystatus = | Cancel | Confirm
393 and helpitem = string * int * action
394 and action =
395 | Noaction
396 | Action of (uioh -> uioh)
397 and linktarget =
398 | Ltexact of (pageno * int)
399 | Ltgendir of int
402 let isbirdseye = function Birdseye _ -> true | _ -> false;;
403 let istextentry = function Textentry _ -> true | _ -> false;;
405 type currently =
406 | Idle
407 | Loading of (page * gen)
408 | Tiling of (
409 page * opaque * colorspace * angle * gen * col * row * width * height
411 | Outlining of outline list
414 let emptykeyhash = Hashtbl.create 0;;
415 let nouioh : uioh = object (self)
416 method display = ()
417 method key _ _ = self
418 method button _ _ _ _ _ = self
419 method motion _ _ = self
420 method pmotion _ _ = self
421 method infochanged _ = ()
422 method scrollpw = (0, nan, nan)
423 method scrollph = (0, nan, nan)
424 method modehash = emptykeyhash
425 method eformsgs = false
426 end;;
428 type state =
429 { mutable sr : Unix.file_descr
430 ; mutable sw : Unix.file_descr
431 ; mutable wsfd : Unix.file_descr
432 ; mutable errfd : Unix.file_descr option
433 ; mutable stderr : Unix.file_descr
434 ; mutable errmsgs : Buffer.t
435 ; mutable newerrmsgs : bool
436 ; mutable w : int
437 ; mutable x : int
438 ; mutable y : int
439 ; mutable scrollw : int
440 ; mutable hscrollh : int
441 ; mutable anchor : anchor
442 ; mutable ranchors : (string * string * anchor) list
443 ; mutable maxy : int
444 ; mutable layout : page list
445 ; pagemap : (pagemapkey, opaque) Hashtbl.t
446 ; tilemap : (tilemapkey, tile) Hashtbl.t
447 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
448 ; mutable pdims : (pageno * width * height * leftx) list
449 ; mutable pagecount : int
450 ; mutable currently : currently
451 ; mutable mstate : mstate
452 ; mutable searchpattern : string
453 ; mutable rects : (pageno * recttype * rect) list
454 ; mutable rects1 : (pageno * recttype * rect) list
455 ; mutable text : string
456 ; mutable winstate : Wsi.winstate list
457 ; mutable mode : mode
458 ; mutable uioh : uioh
459 ; mutable outlines : outline array
460 ; mutable bookmarks : outline list
461 ; mutable path : string
462 ; mutable password : string
463 ; mutable nameddest : string
464 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
465 ; mutable memused : memsize
466 ; mutable gen : gen
467 ; mutable throttle : (page list * int * float) option
468 ; mutable autoscroll : int option
469 ; mutable ghyll : (int option -> unit)
470 ; mutable help : helpitem array
471 ; mutable docinfo : (int * string) list
472 ; mutable texid : GlTex.texture_id option
473 ; hists : hists
474 ; mutable prevzoom : float
475 ; mutable progress : float
476 ; mutable redisplay : bool
477 ; mutable mpos : mpos
478 ; mutable keystate : keystate
479 ; mutable glinks : bool
480 ; mutable prevcolumns : (columns * float) option
481 ; mutable winw : int
482 ; mutable winh : int
483 ; mutable reprf : (unit -> unit)
485 and hists =
486 { pat : string circbuf
487 ; pag : string circbuf
488 ; nav : anchor circbuf
489 ; sel : string circbuf
493 let defconf =
494 { scrollbw = 7
495 ; scrollh = 12
496 ; icase = true
497 ; preload = true
498 ; pagebias = 0
499 ; verbose = false
500 ; debug = false
501 ; scrollstep = 24
502 ; hscrollstep = 24
503 ; maxhfit = true
504 ; crophack = false
505 ; autoscrollstep = 2
506 ; maxwait = None
507 ; hlinks = false
508 ; underinfo = false
509 ; interpagespace = 2
510 ; zoom = 1.0
511 ; presentation = false
512 ; angle = 0
513 ; cwinw = 900
514 ; cwinh = 900
515 ; savebmarks = true
516 ; fitmodel = FitProportional
517 ; trimmargins = false
518 ; trimfuzz = (0,0,0,0)
519 ; memlimit = 32 lsl 20
520 ; texcount = 256
521 ; sliceheight = 24
522 ; thumbw = 76
523 ; jumpback = true
524 ; bgcolor = (0.5, 0.5, 0.5)
525 ; bedefault = false
526 ; scrollbarinpm = true
527 ; tilew = 2048
528 ; tileh = 2048
529 ; mustoresize = 256 lsl 20
530 ; checkers = true
531 ; aalevel = 8
532 ; urilauncher =
533 (match platform with
534 | Plinux | Pfreebsd | Pdragonflybsd
535 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
536 | Posx -> "open \"%s\""
537 | Pcygwin -> "cygstart \"%s\""
538 | Punknown -> "echo %s")
539 ; pathlauncher = "lp \"%s\""
540 ; selcmd =
541 (match platform with
542 | Plinux | Pfreebsd | Pdragonflybsd
543 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
544 | Posx -> "pbcopy"
545 | Pcygwin -> "wsel"
546 | Punknown -> "cat")
547 ; colorspace = Rgb
548 ; invert = false
549 ; colorscale = 1.0
550 ; redirectstderr = false
551 ; ghyllscroll = None
552 ; columns = Csingle [||]
553 ; beyecolumns = None
554 ; updatecurs = false
555 ; hfsize = 12
556 ; pgscale = 1.0
557 ; usepbo = false
558 ; wheelbypage = false
559 ; stcmd = "echo SyncTex"
560 ; keyhashes =
561 let mk n = (n, Hashtbl.create 1) in
562 [ mk "global"
563 ; mk "info"
564 ; mk "help"
565 ; mk "outline"
566 ; mk "listview"
567 ; mk "birdseye"
568 ; mk "textentry"
569 ; mk "links"
570 ; mk "view"
575 let wtmode = ref false;;
577 let findkeyhash c name =
578 try List.assoc name c.keyhashes
579 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
582 let conf = { defconf with angle = defconf.angle };;
584 let pgscale h = truncate (float h *. conf.pgscale);;
586 type fontstate =
587 { mutable fontsize : int
588 ; mutable wwidth : float
589 ; mutable maxrows : int
593 let fstate =
594 { fontsize = 14
595 ; wwidth = nan
596 ; maxrows = -1
600 let geturl s =
601 let colonpos = try String.index s ':' with Not_found -> -1 in
602 let len = String.length s in
603 if colonpos >= 0 && colonpos + 3 < len
604 then (
605 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
606 then
607 let schemestartpos =
608 try String.rindex_from s colonpos ' '
609 with Not_found -> -1
611 let scheme =
612 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
614 match scheme with
615 | "http" | "ftp" | "mailto" ->
616 let epos =
617 try String.index_from s colonpos ' '
618 with Not_found -> len
620 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
621 | _ -> ""
622 else ""
624 else ""
627 let gotouri uri =
628 if String.length conf.urilauncher = 0
629 then print_endline uri
630 else (
631 let url = geturl uri in
632 if String.length url = 0
633 then print_endline uri
634 else
635 let re = Str.regexp "%s" in
636 let command = Str.global_replace re url conf.urilauncher in
637 try popen command []
638 with exn ->
639 Printf.eprintf
640 "failed to execute `%s': %s\n" command (exntos exn);
641 flush stderr;
645 let version () =
646 Printf.sprintf "llpp version %s (%s/%dbit, ocaml %s)" Help.version
647 (platform_to_string platform) Sys.word_size Sys.ocaml_version
650 let makehelp () =
651 let strings = version () :: "" :: Help.keys in
652 Array.of_list (
653 List.map (fun s ->
654 let url = geturl s in
655 if String.length url > 0
656 then (s, 0, Action (fun u -> gotouri url; u))
657 else (s, 0, Noaction)
658 ) strings);
661 let noghyll _ = ();;
662 let firstgeomcmds = "", [];;
663 let noreprf () = ();;
665 let state =
666 { sr = Unix.stdin
667 ; sw = Unix.stdin
668 ; wsfd = Unix.stdin
669 ; errfd = None
670 ; stderr = Unix.stderr
671 ; errmsgs = Buffer.create 0
672 ; newerrmsgs = false
673 ; x = 0
674 ; y = 0
675 ; w = 0
676 ; scrollw = 0
677 ; hscrollh = 0
678 ; anchor = emptyanchor
679 ; ranchors = []
680 ; layout = []
681 ; maxy = max_int
682 ; tilelru = Queue.create ()
683 ; pagemap = Hashtbl.create 10
684 ; tilemap = Hashtbl.create 10
685 ; pdims = []
686 ; pagecount = 0
687 ; currently = Idle
688 ; mstate = Mnone
689 ; rects = []
690 ; rects1 = []
691 ; text = ""
692 ; mode = View
693 ; winstate = []
694 ; searchpattern = ""
695 ; outlines = [||]
696 ; bookmarks = []
697 ; path = ""
698 ; password = ""
699 ; nameddest = ""
700 ; geomcmds = firstgeomcmds
701 ; hists =
702 { nav = cbnew 10 emptyanchor
703 ; pat = cbnew 10 ""
704 ; pag = cbnew 10 ""
705 ; sel = cbnew 10 ""
707 ; memused = 0
708 ; gen = 0
709 ; throttle = None
710 ; autoscroll = None
711 ; ghyll = noghyll
712 ; help = makehelp ()
713 ; docinfo = []
714 ; texid = None
715 ; prevzoom = 1.0
716 ; progress = -1.0
717 ; uioh = nouioh
718 ; redisplay = true
719 ; mpos = (-1, -1)
720 ; keystate = KSnone
721 ; glinks = false
722 ; prevcolumns = None
723 ; winw = -1
724 ; winh = -1
725 ; reprf = noreprf
729 let setfontsize n =
730 fstate.fontsize <- n;
731 fstate.wwidth <- measurestr fstate.fontsize "w";
732 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
735 let vlog fmt =
736 if conf.verbose
737 then
738 Printf.kprintf prerr_endline fmt
739 else
740 Printf.kprintf ignore fmt
743 let launchpath () =
744 if String.length conf.pathlauncher = 0
745 then print_endline state.path
746 else (
747 let re = Str.regexp "%s" in
748 let command = Str.global_replace re state.path conf.pathlauncher in
749 try popen command []
750 with exn ->
751 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
752 flush stderr;
756 module Ne = struct
757 type 'a t = | Res of 'a | Exn of exn;;
759 let pipe () =
760 try Res (Unix.pipe ())
761 with exn -> Exn exn
764 let clo fd f =
765 try tempfailureretry Unix.close fd
766 with exn -> f (exntos exn)
769 let dup fd =
770 try Res (tempfailureretry Unix.dup fd)
771 with exn -> Exn exn
774 let dup2 fd1 fd2 =
775 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
776 with exn -> Exn exn
778 end;;
780 let redirectstderr () =
781 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
782 if conf.redirectstderr
783 then
784 match Ne.pipe () with
785 | Ne.Exn exn ->
786 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
788 | Ne.Res (r, w) ->
789 begin match Ne.dup Unix.stderr with
790 | Ne.Exn exn ->
791 dolog "failed to dup stderr: %s" (exntos exn);
792 Ne.clo r (clofail "pipe/r");
793 Ne.clo w (clofail "pipe/w");
795 | Ne.Res dupstderr ->
796 begin match Ne.dup2 w Unix.stderr with
797 | Ne.Exn exn ->
798 dolog "failed to dup2 to stderr: %s" (exntos exn);
799 Ne.clo dupstderr (clofail "stderr duplicate");
800 Ne.clo r (clofail "redir pipe/r");
801 Ne.clo w (clofail "redir pipe/w");
803 | Ne.Res () ->
804 state.stderr <- dupstderr;
805 state.errfd <- Some r;
806 end;
808 else (
809 state.newerrmsgs <- false;
810 begin match state.errfd with
811 | Some fd ->
812 begin match Ne.dup2 state.stderr Unix.stderr with
813 | Ne.Exn exn ->
814 dolog "failed to dup2 original stderr: %s" (exntos exn)
815 | Ne.Res () ->
816 Ne.clo fd (clofail "dup of stderr");
817 state.errfd <- None;
818 end;
819 | None -> ()
820 end;
821 prerr_string (Buffer.contents state.errmsgs);
822 flush stderr;
823 Buffer.clear state.errmsgs;
827 module G =
828 struct
829 let postRedisplay who =
830 if conf.verbose
831 then prerr_endline ("redisplay for " ^ who);
832 state.redisplay <- true;
834 end;;
836 let getopaque pageno =
837 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
838 with Not_found -> None
841 let putopaque pageno opaque =
842 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
845 let pagetranslatepoint l x y =
846 let dy = y - l.pagedispy in
847 let y = dy + l.pagey in
848 let dx = x - l.pagedispx in
849 let x = dx + l.pagex in
850 (x, y);
853 let onppundermouse g x y d =
854 let rec f = function
855 | l :: rest ->
856 begin match getopaque l.pageno with
857 | Some opaque ->
858 let x0 = l.pagedispx in
859 let x1 = x0 + l.pagevw in
860 let y0 = l.pagedispy in
861 let y1 = y0 + l.pagevh in
862 if y >= y0 && y <= y1 && x >= x0 && x <= x1
863 then
864 let px, py = pagetranslatepoint l x y in
865 match g opaque l px py with
866 | Some res -> res
867 | None -> f rest
868 else f rest
869 | _ ->
870 f rest
872 | [] -> d
874 f state.layout
877 let getunder x y =
878 let g opaque _ px py =
879 match whatsunder opaque px py with
880 | Unone -> None
881 | under -> Some under
883 onppundermouse g x y Unone
886 let unproject x y =
887 let g opaque l x y =
888 match unproject opaque x y with
889 | Some (x, y) -> Some (Some (l.pageno, x, y))
890 | None -> None
892 onppundermouse g x y None;
895 let showtext c s =
896 state.text <- Printf.sprintf "%c%s" c s;
897 G.postRedisplay "showtext";
900 let undertext = function
901 | Unone -> "none"
902 | Ulinkuri s -> s
903 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
904 | Utext s -> "font: " ^ s
905 | Uunexpected s -> "unexpected: " ^ s
906 | Ulaunch s -> "launch: " ^ s
907 | Unamed s -> "named: " ^ s
908 | Uremote (filename, pageno) ->
909 Printf.sprintf "%s: page %d" filename (pageno+1)
912 let updateunder x y =
913 match getunder x y with
914 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
915 | Ulinkuri uri ->
916 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
917 Wsi.setcursor Wsi.CURSOR_INFO
918 | Ulinkgoto (pageno, _) ->
919 if conf.underinfo
920 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
921 Wsi.setcursor Wsi.CURSOR_INFO
922 | Utext s ->
923 if conf.underinfo then showtext 'f' ("ont: " ^ s);
924 Wsi.setcursor Wsi.CURSOR_TEXT
925 | Uunexpected s ->
926 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
927 Wsi.setcursor Wsi.CURSOR_INHERIT
928 | Ulaunch s ->
929 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
930 Wsi.setcursor Wsi.CURSOR_INHERIT
931 | Unamed s ->
932 if conf.underinfo then showtext 'n' ("amed: " ^ s);
933 Wsi.setcursor Wsi.CURSOR_INHERIT
934 | Uremote (filename, pageno) ->
935 if conf.underinfo then showtext 'r'
936 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
937 Wsi.setcursor Wsi.CURSOR_INFO
940 let showlinktype under =
941 if conf.underinfo
942 then
943 match under with
944 | Unone -> ()
945 | under ->
946 let s = undertext under in
947 showtext ' ' s
950 let addchar s c =
951 let b = Buffer.create (String.length s + 1) in
952 Buffer.add_string b s;
953 Buffer.add_char b c;
954 Buffer.contents b;
957 let colorspace_of_string s =
958 match String.lowercase s with
959 | "rgb" -> Rgb
960 | "bgr" -> Bgr
961 | "gray" -> Gray
962 | _ -> failwith "invalid colorspace"
965 let int_of_colorspace = function
966 | Rgb -> 0
967 | Bgr -> 1
968 | Gray -> 2
971 let colorspace_of_int = function
972 | 0 -> Rgb
973 | 1 -> Bgr
974 | 2 -> Gray
975 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
978 let colorspace_to_string = function
979 | Rgb -> "rgb"
980 | Bgr -> "bgr"
981 | Gray -> "gray"
984 let fitmodel_of_string s =
985 match String.lowercase s with
986 | "width" -> FitWidth
987 | "proportional" -> FitProportional
988 | "page" -> FitPage
989 | _ -> failwith "invalid fit model"
992 let int_of_fitmodel = function
993 | FitWidth -> 0
994 | FitProportional -> 1
995 | FitPage -> 2
998 let fitmodel_of_int = function
999 | 0 -> FitWidth
1000 | 1 -> FitProportional
1001 | 2 -> FitPage
1002 | n -> failwith ("invalid fit model index " ^ string_of_int n)
1005 let fitmodel_to_string = function
1006 | FitWidth -> "width"
1007 | FitProportional -> "proportional"
1008 | FitPage -> "page"
1011 let intentry_with_suffix text key =
1012 let c =
1013 if key >= 32 && key < 127
1014 then Char.chr key
1015 else '\000'
1017 match Char.lowercase c with
1018 | '0' .. '9' ->
1019 let text = addchar text c in
1020 TEcont text
1022 | 'k' | 'm' | 'g' ->
1023 let text = addchar text c in
1024 TEcont text
1026 | _ ->
1027 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1028 TEcont text
1031 let multicolumns_to_string (n, a, b) =
1032 if a = 0 && b = 0
1033 then Printf.sprintf "%d" n
1034 else Printf.sprintf "%d,%d,%d" n a b;
1037 let multicolumns_of_string s =
1039 (int_of_string s, 0, 0)
1040 with _ ->
1041 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
1042 if a > 1 || b > 1
1043 then failwith "subtly broken"; (n, a, b)
1047 let readcmd fd =
1048 let s = "xxxx" in
1049 let n = tempfailureretry (Unix.read fd s 0) 4 in
1050 if n != 4 then failwith "incomplete read(len)";
1051 let len = 0
1052 lor (Char.code s.[0] lsl 24)
1053 lor (Char.code s.[1] lsl 16)
1054 lor (Char.code s.[2] lsl 8)
1055 lor (Char.code s.[3] lsl 0)
1057 let s = String.create len in
1058 let n = tempfailureretry (Unix.read fd s 0) len in
1059 if n != len then failwith "incomplete read(data)";
1063 let btod b = if b then 1 else 0;;
1065 let wcmd fmt =
1066 let b = Buffer.create 16 in
1067 Buffer.add_string b "llll";
1068 Printf.kbprintf
1069 (fun b ->
1070 let s = Buffer.contents b in
1071 let n = String.length s in
1072 let len = n - 4 in
1073 (* dolog "wcmd %S" (String.sub s 4 len); *)
1074 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1075 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1076 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1077 s.[3] <- Char.chr (len land 0xff);
1078 let n' = tempfailureretry (Unix.write state.sw s 0) n in
1079 if n' != n then failwith "write failed";
1080 ) b fmt;
1083 let calcips h =
1084 let d = state.winh - h in
1085 max conf.interpagespace ((d + 1) / 2)
1088 let rowyh (c, coverA, coverB) b n =
1089 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1090 then
1091 let _, _, vy, (_, _, h, _) = b.(n) in
1092 (vy, h)
1093 else
1094 let n' = n - coverA in
1095 let d = n' mod c in
1096 let s = n - d in
1097 let e = min state.pagecount (s + c) in
1098 let rec find m miny maxh = if m = e then miny, maxh else
1099 let _, _, y, (_, _, h, _) = b.(m) in
1100 let miny = min miny y in
1101 let maxh = max maxh h in
1102 find (m+1) miny maxh
1103 in find s max_int 0
1106 let calcheight () =
1107 match conf.columns with
1108 | Cmulti ((_, _, _) as cl, b) ->
1109 if Array.length b > 0
1110 then
1111 let y, h = rowyh cl b (Array.length b - 1) in
1112 y + h + (if conf.presentation then calcips h else 0)
1113 else 0
1114 | Csingle b ->
1115 if Array.length b > 0
1116 then
1117 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1118 y + h + (if conf.presentation then calcips h else 0)
1119 else 0
1120 | Csplit (_, b) ->
1121 if Array.length b > 0
1122 then
1123 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1124 y + h
1125 else 0
1128 let getpageyh pageno =
1129 let pageno = bound pageno 0 (state.pagecount-1) in
1130 match conf.columns with
1131 | Csingle b ->
1132 if Array.length b = 0
1133 then 0, 0
1134 else
1135 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1136 let y =
1137 if conf.presentation
1138 then y - calcips h
1139 else y
1141 y, h
1142 | Cmulti (cl, b) ->
1143 if Array.length b = 0
1144 then 0, 0
1145 else
1146 let y, h = rowyh cl b pageno in
1147 let y =
1148 if conf.presentation
1149 then y - calcips h
1150 else y
1152 y, h
1153 | Csplit (c, b) ->
1154 if Array.length b = 0
1155 then 0, 0
1156 else
1157 let n = pageno*c in
1158 let (_, _, y, (_, _, h, _)) = b.(n) in
1159 y, h
1162 let getpagedim pageno =
1163 let rec f ppdim l =
1164 match l with
1165 | (n, _, _, _) as pdim :: rest ->
1166 if n >= pageno
1167 then (if n = pageno then pdim else ppdim)
1168 else f pdim rest
1170 | [] -> ppdim
1172 f (-1, -1, -1, -1) state.pdims
1175 let getpagey pageno = fst (getpageyh pageno);;
1177 let nogeomcmds cmds =
1178 match cmds with
1179 | s, [] -> String.length s = 0
1180 | _ -> false
1183 let page_of_y y =
1184 let ((c, coverA, coverB) as cl), b =
1185 match conf.columns with
1186 | Csingle b -> (1, 0, 0), b
1187 | Cmulti (c, b) -> c, b
1188 | Csplit (_, b) -> (1, 0, 0), b
1190 if Array.length b = 0
1191 then -1
1192 else
1193 let rec bsearch nmin nmax =
1194 if nmin > nmax
1195 then bound nmin 0 (state.pagecount-1)
1196 else
1197 let n = (nmax + nmin) / 2 in
1198 let vy, h = rowyh cl b n in
1199 let y0, y1 =
1200 if conf.presentation
1201 then
1202 let ips = calcips h in
1203 let y0 = vy - ips in
1204 let y1 = vy + h + ips in
1205 y0, y1
1206 else (
1207 if n = 0
1208 then 0, vy + h + conf.interpagespace
1209 else
1210 let y0 = vy - conf.interpagespace in
1211 y0, y0 + h + conf.interpagespace
1214 if y >= y0 && y < y1
1215 then (
1216 if c = 1
1217 then n
1218 else (
1219 if n > coverA
1220 then
1221 if n < state.pagecount - coverB
1222 then ((n-coverA)/c)*c + coverA
1223 else n
1224 else n
1227 else (
1228 if y > y0
1229 then bsearch (n+1) nmax
1230 else bsearch nmin (n-1)
1233 let r = bsearch 0 (state.pagecount-1) in
1237 let layoutN ((columns, coverA, coverB), b) y sh =
1238 let sh = sh - state.hscrollh in
1239 let rec fold accu n =
1240 if n = Array.length b
1241 then accu
1242 else
1243 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1244 if (vy - y) > sh &&
1245 (n = coverA - 1
1246 || n = state.pagecount - coverB
1247 || (n - coverA) mod columns = columns - 1)
1248 then accu
1249 else
1250 let accu =
1251 if vy + h > y
1252 then
1253 let pagey = max 0 (y - vy) in
1254 let pagedispy = if pagey > 0 then 0 else vy - y in
1255 let pagedispx, pagex =
1256 let pdx =
1257 if n = coverA - 1 || n = state.pagecount - coverB
1258 then state.x + (state.winw - state.scrollw - w) / 2
1259 else dx + xoff + state.x
1261 if pdx < 0
1262 then 0, -pdx
1263 else pdx, 0
1265 let pagevw =
1266 let vw = state.winw - state.scrollw - pagedispx in
1267 let pw = w - pagex in
1268 min vw pw
1270 let pagevh = min (h - pagey) (sh - pagedispy) in
1271 if pagevw > 0 && pagevh > 0
1272 then
1273 let e =
1274 { pageno = n
1275 ; pagedimno = pdimno
1276 ; pagew = w
1277 ; pageh = h
1278 ; pagex = pagex
1279 ; pagey = pagey
1280 ; pagevw = pagevw
1281 ; pagevh = pagevh
1282 ; pagedispx = pagedispx
1283 ; pagedispy = pagedispy
1284 ; pagecol = 0
1287 e :: accu
1288 else
1289 accu
1290 else
1291 accu
1293 fold accu (n+1)
1295 List.rev (fold [] (page_of_y y));
1298 let layoutS (columns, b) y sh =
1299 let sh = sh - state.hscrollh in
1300 let rec fold accu n =
1301 if n = Array.length b
1302 then accu
1303 else
1304 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1305 if (vy - y) > sh
1306 then accu
1307 else
1308 let accu =
1309 if vy + pageh > y
1310 then
1311 let x = xoff + state.x in
1312 let pagey = max 0 (y - vy) in
1313 let pagedispy = if pagey > 0 then 0 else vy - y in
1314 let pagedispx, pagex =
1315 if px = 0
1316 then (
1317 if x < 0
1318 then 0, -x
1319 else x, 0
1321 else (
1322 let px = px - x in
1323 if px < 0
1324 then -px, 0
1325 else 0, px
1328 let pagecolw = pagew/columns in
1329 let pagedispx =
1330 if pagecolw < state.winw
1331 then pagedispx + ((state.winw - state.scrollw - pagecolw) / 2)
1332 else pagedispx
1334 let pagevw =
1335 let vw = state.winw - pagedispx - state.scrollw in
1336 let pw = pagew - pagex in
1337 min vw pw
1339 let pagevw = min pagevw pagecolw in
1340 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1341 if pagevw > 0 && pagevh > 0
1342 then
1343 let e =
1344 { pageno = n/columns
1345 ; pagedimno = pdimno
1346 ; pagew = pagew
1347 ; pageh = pageh
1348 ; pagex = pagex
1349 ; pagey = pagey
1350 ; pagevw = pagevw
1351 ; pagevh = pagevh
1352 ; pagedispx = pagedispx
1353 ; pagedispy = pagedispy
1354 ; pagecol = n mod columns
1357 e :: accu
1358 else
1359 accu
1360 else
1361 accu
1363 fold accu (n+1)
1365 List.rev (fold [] 0)
1368 let layout y sh =
1369 if nogeomcmds state.geomcmds
1370 then
1371 match conf.columns with
1372 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1373 | Cmulti c -> layoutN c y sh
1374 | Csplit s -> layoutS s y sh
1375 else []
1378 let clamp incr =
1379 let y = state.y + incr in
1380 let y = max 0 y in
1381 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
1385 let itertiles l f =
1386 let tilex = l.pagex mod conf.tilew in
1387 let tiley = l.pagey mod conf.tileh in
1389 let col = l.pagex / conf.tilew in
1390 let row = l.pagey / conf.tileh in
1392 let rec rowloop row y0 dispy h =
1393 if h = 0
1394 then ()
1395 else (
1396 let dh = conf.tileh - y0 in
1397 let dh = min h dh in
1398 let rec colloop col x0 dispx w =
1399 if w = 0
1400 then ()
1401 else (
1402 let dw = conf.tilew - x0 in
1403 let dw = min w dw in
1405 f col row dispx dispy x0 y0 dw dh;
1406 colloop (col+1) 0 (dispx+dw) (w-dw)
1409 colloop col tilex l.pagedispx l.pagevw;
1410 rowloop (row+1) 0 (dispy+dh) (h-dh)
1413 if l.pagevw > 0 && l.pagevh > 0
1414 then rowloop row tiley l.pagedispy l.pagevh;
1417 let gettileopaque l col row =
1418 let key =
1419 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1421 try Some (Hashtbl.find state.tilemap key)
1422 with Not_found -> None
1425 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1426 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1427 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1430 let drawtiles l color =
1431 GlDraw.color color;
1432 let f col row x y tilex tiley w h =
1433 match gettileopaque l col row with
1434 | Some (opaque, _, t) ->
1435 let params = x, y, w, h, tilex, tiley in
1436 if conf.invert
1437 then (
1438 Gl.enable `blend;
1439 GlFunc.blend_func `zero `one_minus_src_color;
1441 drawtile params opaque;
1442 if conf.invert
1443 then Gl.disable `blend;
1444 if conf.debug
1445 then (
1446 let s = Printf.sprintf
1447 "%d[%d,%d] %f sec"
1448 l.pageno col row t
1450 let w = measurestr fstate.fontsize s in
1451 GlMisc.push_attrib [`current];
1452 GlDraw.color (0.0, 0.0, 0.0);
1453 GlDraw.rect
1454 (float (x-2), float (y-2))
1455 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1456 GlDraw.color (1.0, 1.0, 1.0);
1457 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1458 GlMisc.pop_attrib ();
1461 | _ ->
1462 let w =
1463 let lw = state.winw - state.scrollw - x in
1464 min lw w
1465 and h =
1466 let lh = state.winh - y in
1467 min lh h
1469 begin match state.texid with
1470 | Some id ->
1471 Gl.enable `texture_2d;
1472 GlTex.bind_texture `texture_2d id;
1473 let x0 = float x
1474 and y0 = float y
1475 and x1 = float (x+w)
1476 and y1 = float (y+h) in
1478 let tw = float w /. 16.0
1479 and th = float h /. 16.0 in
1480 let tx0 = float tilex /. 16.0
1481 and ty0 = float tiley /. 16.0 in
1482 let tx1 = tx0 +. tw
1483 and ty1 = ty0 +. th in
1484 GlDraw.begins `quads;
1485 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1486 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1487 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1488 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1489 GlDraw.ends ();
1491 Gl.disable `texture_2d;
1492 | None ->
1493 GlDraw.color (1.0, 1.0, 1.0);
1494 GlDraw.rect
1495 (float x, float y)
1496 (float (x+w), float (y+h));
1497 end;
1498 if w > 128 && h > fstate.fontsize + 10
1499 then (
1500 GlDraw.color (0.0, 0.0, 0.0);
1501 let c, r =
1502 if conf.verbose
1503 then (col*conf.tilew, row*conf.tileh)
1504 else col, row
1506 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1508 GlDraw.color color;
1510 itertiles l f
1513 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1515 let tilevisible1 l x y =
1516 let ax0 = l.pagex
1517 and ax1 = l.pagex + l.pagevw
1518 and ay0 = l.pagey
1519 and ay1 = l.pagey + l.pagevh in
1521 let bx0 = x
1522 and by0 = y in
1523 let bx1 = min (bx0 + conf.tilew) l.pagew
1524 and by1 = min (by0 + conf.tileh) l.pageh in
1526 let rx0 = max ax0 bx0
1527 and ry0 = max ay0 by0
1528 and rx1 = min ax1 bx1
1529 and ry1 = min ay1 by1 in
1531 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1532 nonemptyintersection
1535 let tilevisible layout n x y =
1536 let rec findpageinlayout m = function
1537 | l :: rest when l.pageno = n ->
1538 tilevisible1 l x y || (
1539 match conf.columns with
1540 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1541 | _ -> false
1543 | _ :: rest -> findpageinlayout 0 rest
1544 | [] -> false
1546 findpageinlayout 0 layout;
1549 let tileready l x y =
1550 tilevisible1 l x y &&
1551 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1554 let tilepage n p layout =
1555 let rec loop = function
1556 | l :: rest ->
1557 if l.pageno = n
1558 then
1559 let f col row _ _ _ _ _ _ =
1560 if state.currently = Idle
1561 then
1562 match gettileopaque l col row with
1563 | Some _ -> ()
1564 | None ->
1565 let x = col*conf.tilew
1566 and y = row*conf.tileh in
1567 let w =
1568 let w = l.pagew - x in
1569 min w conf.tilew
1571 let h =
1572 let h = l.pageh - y in
1573 min h conf.tileh
1575 let pbo =
1576 if conf.usepbo
1577 then getpbo w h conf.colorspace
1578 else "0"
1580 wcmd "tile %s %d %d %d %d %s" p x y w h pbo;
1581 state.currently <-
1582 Tiling (
1583 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1584 conf.tilew, conf.tileh
1587 itertiles l f;
1588 else
1589 loop rest
1591 | [] -> ()
1593 if nogeomcmds state.geomcmds
1594 then loop layout;
1597 let preloadlayout y =
1598 let y = if y < state.winh then 0 else y - state.winh in
1599 let h = state.winh*3 in
1600 layout y h;
1603 let load pages =
1604 let rec loop pages =
1605 if state.currently != Idle
1606 then ()
1607 else
1608 match pages with
1609 | l :: rest ->
1610 begin match getopaque l.pageno with
1611 | None ->
1612 wcmd "page %d %d" l.pageno l.pagedimno;
1613 state.currently <- Loading (l, state.gen);
1614 | Some opaque ->
1615 tilepage l.pageno opaque pages;
1616 loop rest
1617 end;
1618 | _ -> ()
1620 if nogeomcmds state.geomcmds
1621 then loop pages
1624 let preload pages =
1625 load pages;
1626 if conf.preload && state.currently = Idle
1627 then load (preloadlayout state.y);
1630 let layoutready layout =
1631 let rec fold all ls =
1632 all && match ls with
1633 | l :: rest ->
1634 let seen = ref false in
1635 let allvisible = ref true in
1636 let foo col row _ _ _ _ _ _ =
1637 seen := true;
1638 allvisible := !allvisible &&
1639 begin match gettileopaque l col row with
1640 | Some _ -> true
1641 | None -> false
1644 itertiles l foo;
1645 fold (!seen && !allvisible) rest
1646 | [] -> true
1648 let alltilesvisible = fold true layout in
1649 alltilesvisible;
1652 let gotoy y =
1653 let y = bound y 0 state.maxy in
1654 let y, layout, proceed =
1655 match conf.maxwait with
1656 | Some time when state.ghyll == noghyll ->
1657 begin match state.throttle with
1658 | None ->
1659 let layout = layout y state.winh in
1660 let ready = layoutready layout in
1661 if not ready
1662 then (
1663 load layout;
1664 state.throttle <- Some (layout, y, now ());
1666 else G.postRedisplay "gotoy showall (None)";
1667 y, layout, ready
1668 | Some (_, _, started) ->
1669 let dt = now () -. started in
1670 if dt > time
1671 then (
1672 state.throttle <- None;
1673 let layout = layout y state.winh in
1674 load layout;
1675 G.postRedisplay "maxwait";
1676 y, layout, true
1678 else -1, [], false
1681 | _ ->
1682 let layout = layout y state.winh in
1683 if not !wtmode || layoutready layout
1684 then G.postRedisplay "gotoy ready";
1685 y, layout, true
1687 if proceed
1688 then (
1689 state.y <- y;
1690 state.layout <- layout;
1691 begin match state.mode with
1692 | LinkNav (Ltexact (pageno, linkno)) ->
1693 let rec loop = function
1694 | [] ->
1695 state.mode <- LinkNav (Ltgendir 0)
1696 | l :: _ when l.pageno = pageno ->
1697 begin match getopaque pageno with
1698 | None ->
1699 state.mode <- LinkNav (Ltgendir 0)
1700 | Some opaque ->
1701 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1702 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1703 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1704 then state.mode <- LinkNav (Ltgendir 0)
1706 | _ :: rest -> loop rest
1708 loop layout
1709 | _ -> ()
1710 end;
1711 begin match state.mode with
1712 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1713 if not (pagevisible layout pageno)
1714 then (
1715 match state.layout with
1716 | [] -> ()
1717 | l :: _ ->
1718 state.mode <- Birdseye (
1719 conf, leftx, l.pageno, hooverpageno, anchor
1722 | LinkNav (Ltgendir dir as lt) ->
1723 let linknav =
1724 let rec loop = function
1725 | [] -> lt
1726 | l :: rest ->
1727 match getopaque l.pageno with
1728 | None -> loop rest
1729 | Some opaque ->
1730 let link =
1731 let ld =
1732 if dir = 0
1733 then LDfirstvisible (l.pagex, l.pagey, dir)
1734 else (
1735 if dir > 0 then LDfirst else LDlast
1738 findlink opaque ld
1740 match link with
1741 | Lnotfound -> loop rest
1742 | Lfound n ->
1743 showlinktype (getlink opaque n);
1744 Ltexact (l.pageno, n)
1746 loop state.layout
1748 state.mode <- LinkNav linknav
1749 | _ -> ()
1750 end;
1751 preload layout;
1753 state.ghyll <- noghyll;
1754 if conf.updatecurs
1755 then (
1756 let mx, my = state.mpos in
1757 updateunder mx my;
1761 let conttiling pageno opaque =
1762 tilepage pageno opaque
1763 (if conf.preload then preloadlayout state.y else state.layout)
1766 let gotoy_and_clear_text y =
1767 if not conf.verbose then state.text <- "";
1768 gotoy y;
1771 let getanchor1 l =
1772 let top =
1773 let coloff = l.pagecol * l.pageh in
1774 float (l.pagey + coloff) /. float l.pageh
1776 let dtop =
1777 if l.pagedispy = 0
1778 then
1780 else
1781 if conf.presentation
1782 then float l.pagedispy /. float (calcips l.pageh)
1783 else float l.pagedispy /. float conf.interpagespace
1785 (l.pageno, top, dtop)
1788 let getanchor () =
1789 match state.layout with
1790 | l :: _ -> getanchor1 l
1791 | [] ->
1792 let n = page_of_y state.y in
1793 if n = -1
1794 then state.anchor
1795 else
1796 let y, h = getpageyh n in
1797 let dy = y - state.y in
1798 let dtop =
1799 if conf.presentation
1800 then
1801 let ips = calcips h in
1802 float (dy + ips) /. float ips
1803 else
1804 float dy /. float conf.interpagespace
1806 (n, 0.0, dtop)
1809 let getanchory (n, top, dtop) =
1810 let y, h = getpageyh n in
1811 if conf.presentation
1812 then
1813 let ips = calcips h in
1814 y + truncate (top*.float h -. dtop*.float ips) + ips;
1815 else
1816 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1819 let gotoanchor anchor =
1820 gotoy (getanchory anchor);
1823 let addnav () =
1824 cbput state.hists.nav (getanchor ());
1827 let getnav dir =
1828 let anchor = cbgetc state.hists.nav dir in
1829 getanchory anchor;
1832 let gotoghyll y =
1833 let scroll f n a b =
1834 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1835 let snake f a b =
1836 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1837 if f < a
1838 then s (float f /. float a)
1839 else (
1840 if f > b
1841 then 1.0 -. s ((float (f-b) /. float (n-b)))
1842 else 1.0
1845 snake f a b
1846 and summa f n a b =
1847 (* courtesy:
1848 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1849 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1850 let iv1 = iv f in
1851 let ins = float a *. iv1
1852 and outs = float (n-b) *. iv1 in
1853 let ones = b - a in
1854 ins +. outs +. float ones
1856 let rec set (_N, _A, _B) y sy =
1857 let sum = summa 1.0 _N _A _B in
1858 let dy = float (y - sy) in
1859 state.ghyll <- (
1860 let rec gf n y1 o =
1861 if n >= _N
1862 then state.ghyll <- noghyll
1863 else
1864 let go n =
1865 let s = scroll n _N _A _B in
1866 let y1 = y1 +. ((s *. dy) /. sum) in
1867 gotoy_and_clear_text (truncate y1);
1868 state.ghyll <- gf (n+1) y1;
1870 match o with
1871 | None -> go n
1872 | Some y' -> set (_N/2, 1, 1) y' state.y
1874 gf 0 (float state.y)
1877 match conf.ghyllscroll with
1878 | None ->
1879 gotoy_and_clear_text y
1880 | Some nab ->
1881 if state.ghyll == noghyll
1882 then set nab y state.y
1883 else state.ghyll (Some y)
1886 let gotopage n top =
1887 let y, h = getpageyh n in
1888 let y = y + (truncate (top *. float h)) in
1889 gotoghyll y
1892 let gotopage1 n top =
1893 let y = getpagey n in
1894 let y = y + top in
1895 gotoghyll y
1898 let invalidate s f =
1899 state.layout <- [];
1900 state.pdims <- [];
1901 state.rects <- [];
1902 state.rects1 <- [];
1903 match state.geomcmds with
1904 | ps, [] when String.length ps = 0 ->
1905 f ();
1906 state.geomcmds <- s, [];
1908 | ps, [] ->
1909 state.geomcmds <- ps, [s, f];
1911 | ps, (s', _) :: rest when s' = s ->
1912 state.geomcmds <- ps, ((s, f) :: rest);
1914 | ps, cmds ->
1915 state.geomcmds <- ps, ((s, f) :: cmds);
1918 let flushpages () =
1919 Hashtbl.iter (fun _ opaque ->
1920 wcmd "freepage %s" opaque;
1921 ) state.pagemap;
1922 Hashtbl.clear state.pagemap;
1925 let flushtiles () =
1926 if not (Queue.is_empty state.tilelru)
1927 then (
1928 Queue.iter (fun (k, p, s) ->
1929 wcmd "freetile %s" p;
1930 state.memused <- state.memused - s;
1931 Hashtbl.remove state.tilemap k;
1932 ) state.tilelru;
1933 state.uioh#infochanged Memused;
1934 Queue.clear state.tilelru;
1936 load state.layout;
1939 let opendoc path password =
1940 state.path <- path;
1941 state.password <- password;
1942 state.gen <- state.gen + 1;
1943 state.docinfo <- [];
1945 flushpages ();
1946 setaalevel conf.aalevel;
1947 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename path)));
1948 wcmd "open %d %s\000%s\000" (btod !wtmode) path password;
1949 invalidate "reqlayout"
1950 (fun () ->
1951 wcmd "reqlayout %d %d %s\000"
1952 conf.angle (int_of_fitmodel conf.fitmodel) state.nameddest;
1956 let reload () =
1957 state.anchor <- getanchor ();
1958 opendoc state.path state.password;
1961 let scalecolor c =
1962 let c = c *. conf.colorscale in
1963 (c, c, c);
1966 let scalecolor2 (r, g, b) =
1967 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1970 let docolumns = function
1971 | Csingle _ ->
1972 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1973 let rec loop pageno pdimno pdim y ph pdims =
1974 if pageno = state.pagecount
1975 then ()
1976 else
1977 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1978 match pdims with
1979 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1980 pdimno+1, pdim, rest
1981 | _ ->
1982 pdimno, pdim, pdims
1984 let x = max 0 (((state.winw - state.scrollw - w) / 2) - xoff) in
1985 let y = y +
1986 (if conf.presentation
1987 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1988 else (if pageno = 0 then 0 else conf.interpagespace)
1991 a.(pageno) <- (pdimno, x, y, pdim);
1992 loop (pageno+1) pdimno pdim (y + h) h pdims
1994 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1995 conf.columns <- Csingle a;
1997 | Cmulti ((columns, coverA, coverB), _) ->
1998 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1999 let rec loop pageno pdimno pdim x y rowh pdims =
2000 let rec fixrow m = if m = pageno then () else
2001 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
2002 if h < rowh
2003 then (
2004 let y = y + (rowh - h) / 2 in
2005 a.(m) <- (pdimno, x, y, pdim);
2007 fixrow (m+1)
2009 if pageno = state.pagecount
2010 then fixrow (((pageno - 1) / columns) * columns)
2011 else
2012 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2013 match pdims with
2014 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2015 pdimno+1, pdim, rest
2016 | _ ->
2017 pdimno, pdim, pdims
2019 let x, y, rowh' =
2020 if pageno = coverA - 1 || pageno = state.pagecount - coverB
2021 then (
2022 let x = (state.winw - state.scrollw - w) / 2 in
2023 let ips =
2024 if conf.presentation then calcips h else conf.interpagespace in
2025 x, y + ips + rowh, h
2027 else (
2028 if (pageno - coverA) mod columns = 0
2029 then (
2030 let x = max 0 (state.winw - state.scrollw - state.w) / 2 in
2031 let y =
2032 if conf.presentation
2033 then
2034 let ips = calcips h in
2035 y + (if pageno = 0 then 0 else calcips rowh + ips)
2036 else
2037 y + (if pageno = 0 then 0 else conf.interpagespace)
2039 x, y + rowh, h
2041 else x, y, max rowh h
2044 let y =
2045 if pageno > 1 && (pageno - coverA) mod columns = 0
2046 then (
2047 let y =
2048 if pageno = columns && conf.presentation
2049 then (
2050 let ips = calcips rowh in
2051 for i = 0 to pred columns
2053 let (pdimno, x, y, pdim) = a.(i) in
2054 a.(i) <- (pdimno, x, y+ips, pdim)
2055 done;
2056 y+ips;
2058 else y
2060 fixrow (pageno - columns);
2063 else y
2065 a.(pageno) <- (pdimno, x, y, pdim);
2066 let x = x + w + xoff*2 + conf.interpagespace in
2067 loop (pageno+1) pdimno pdim x y rowh' pdims
2069 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2070 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2072 | Csplit (c, _) ->
2073 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2074 let rec loop pageno pdimno pdim y pdims =
2075 if pageno = state.pagecount
2076 then ()
2077 else
2078 let pdimno, ((_, w, h, _) as pdim), pdims =
2079 match pdims with
2080 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2081 pdimno+1, pdim, rest
2082 | _ ->
2083 pdimno, pdim, pdims
2085 let cw = w / c in
2086 let rec loop1 n x y =
2087 if n = c then y else (
2088 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2089 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2092 let y = loop1 0 0 y in
2093 loop (pageno+1) pdimno pdim y pdims
2095 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2096 conf.columns <- Csplit (c, a);
2099 let represent () =
2100 docolumns conf.columns;
2101 state.maxy <- calcheight ();
2102 state.hscrollh <-
2103 if state.x = 0 && state.w <= state.winw - state.scrollw
2104 then 0
2105 else state.scrollw
2107 if state.reprf == noreprf
2108 then (
2109 match state.mode with
2110 | Birdseye (_, _, pageno, _, _) ->
2111 let y, h = getpageyh pageno in
2112 let top = (state.winh - h) / 2 in
2113 gotoy (max 0 (y - top))
2114 | _ -> gotoanchor state.anchor
2116 else (
2117 state.reprf ();
2118 state.reprf <- noreprf;
2122 let reshape w h =
2123 GlDraw.viewport 0 0 w h;
2124 let firsttime = state.geomcmds == firstgeomcmds in
2125 if not firsttime && nogeomcmds state.geomcmds
2126 then state.anchor <- getanchor ();
2128 state.winw <- w;
2129 let w = truncate (float w *. conf.zoom) - state.scrollw in
2130 let w = max w 2 in
2131 state.winh <- h;
2132 setfontsize fstate.fontsize;
2133 GlMat.mode `modelview;
2134 GlMat.load_identity ();
2136 GlMat.mode `projection;
2137 GlMat.load_identity ();
2138 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2139 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2140 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2142 let relx =
2143 if conf.zoom <= 1.0
2144 then 0.0
2145 else float state.x /. float state.w
2147 invalidate "geometry"
2148 (fun () ->
2149 state.w <- w;
2150 if not firsttime
2151 then state.x <- truncate (relx *. float w);
2152 let w =
2153 match conf.columns with
2154 | Csingle _ -> w
2155 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2156 | Csplit (c, _) -> w * c
2158 wcmd "geometry %d %d" w (h - conf.interpagespace));
2161 let enttext () =
2162 let len = String.length state.text in
2163 let drawstring s =
2164 let hscrollh =
2165 match state.mode with
2166 | Textentry _
2167 | View ->
2168 let h, _, _ = state.uioh#scrollpw in
2170 | _ -> 0
2172 let rect x w =
2173 GlDraw.rect
2174 (x, float (state.winh - (fstate.fontsize + 4) - hscrollh))
2175 (x+.w, float (state.winh - hscrollh))
2178 let w = float (state.winw - state.scrollw - 1) in
2179 if state.progress >= 0.0 && state.progress < 1.0
2180 then (
2181 GlDraw.color (0.3, 0.3, 0.3);
2182 let w1 = w *. state.progress in
2183 rect 0.0 w1;
2184 GlDraw.color (0.0, 0.0, 0.0);
2185 rect w1 (w-.w1)
2187 else (
2188 GlDraw.color (0.0, 0.0, 0.0);
2189 rect 0.0 w;
2192 GlDraw.color (1.0, 1.0, 1.0);
2193 drawstring fstate.fontsize
2194 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2196 let s =
2197 match state.mode with
2198 | Textentry ((prefix, text, _, _, _, _), _) ->
2199 let s =
2200 if len > 0
2201 then
2202 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2203 else
2204 Printf.sprintf "%s%s_" prefix text
2208 | _ -> state.text
2210 let s =
2211 if state.newerrmsgs
2212 then (
2213 if not (istextentry state.mode) && state.uioh#eformsgs
2214 then
2215 let s1 = "(press 'e' to review error messasges)" in
2216 if String.length s > 0 then s ^ " " ^ s1 else s1
2217 else s
2219 else s
2221 if String.length s > 0
2222 then drawstring s
2225 let gctiles () =
2226 let len = Queue.length state.tilelru in
2227 let layout = lazy (
2228 match state.throttle with
2229 | None ->
2230 if conf.preload
2231 then preloadlayout state.y
2232 else state.layout
2233 | Some (layout, _, _) ->
2234 layout
2235 ) in
2236 let rec loop qpos =
2237 if state.memused <= conf.memlimit
2238 then ()
2239 else (
2240 if qpos < len
2241 then
2242 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2243 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2244 let (_, pw, ph, _) = getpagedim n in
2246 gen = state.gen
2247 && colorspace = conf.colorspace
2248 && angle = conf.angle
2249 && pagew = pw
2250 && pageh = ph
2251 && (
2252 let x = col*conf.tilew
2253 and y = row*conf.tileh in
2254 tilevisible (Lazy.force_val layout) n x y
2256 then Queue.push lruitem state.tilelru
2257 else (
2258 freepbo p;
2259 wcmd "freetile %s" p;
2260 state.memused <- state.memused - s;
2261 state.uioh#infochanged Memused;
2262 Hashtbl.remove state.tilemap k;
2264 loop (qpos+1)
2267 loop 0
2270 let logcurrently = function
2271 | Idle -> dolog "Idle"
2272 | Loading (l, gen) ->
2273 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2274 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2275 dolog
2276 "Tiling %d[%d,%d] page=%s cs=%s angle"
2277 l.pageno col row pageopaque
2278 (colorspace_to_string colorspace)
2280 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2281 angle gen conf.angle state.gen
2282 tilew tileh
2283 conf.tilew conf.tileh
2285 | Outlining _ ->
2286 dolog "outlining"
2289 let splitatspace =
2290 let r = Str.regexp " " in
2291 fun s -> Str.bounded_split r s 2;
2294 let onpagerect pageno f =
2295 let b =
2296 match conf.columns with
2297 | Cmulti (_, b) -> b
2298 | Csingle b -> b
2299 | Csplit (_, b) -> b
2301 if pageno >= 0 && pageno < Array.length b
2302 then
2303 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2304 let r = getpdimrect pdimno in
2305 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2308 let gotopagexy1 pageno x y =
2309 onpagerect pageno (fun w h ->
2310 let top = y /. h in
2311 let _,w1,_,leftx = getpagedim pageno in
2312 let wh = state.winh - state.hscrollh in
2313 let sw = float w1 /. w in
2314 let x = sw *. x in
2315 let x = leftx + state.x + truncate x in
2316 let sx =
2317 if x < 0 || x >= state.winw - state.scrollw
2318 then state.x - x
2319 else state.x
2321 let py, h = getpageyh pageno in
2322 let pdy = truncate (top *. float h) in
2323 let y' = py + pdy in
2324 let dy = y' - state.y in
2325 let sy =
2326 if x != state.x || not (dy > 0 && dy < wh)
2327 then (
2328 if conf.presentation
2329 then
2330 if abs (py - y') > wh
2331 then y'
2332 else py
2333 else y';
2335 else state.y
2337 if state.x != sx || state.y != sy
2338 then (
2339 let x, y =
2340 if !wtmode
2341 then (
2342 let ww = state.winw - state.scrollw in
2343 let qx = sx / ww
2344 and qy = pdy / wh in
2345 let x = qx * ww
2346 and y = py + qy * wh in
2347 let x = if -x + ww > w1 then -(w1-ww) else x
2348 and y' = if y + wh > state.maxy then state.maxy - wh else y in
2349 let y =
2350 if conf.presentation
2351 then
2352 if abs (py - y') > wh
2353 then y'
2354 else py
2355 else y';
2357 (x, y)
2359 else (sx, sy)
2361 state.x <- x;
2362 state.hscrollh <-
2363 if x = 0 && state.w <= state.winw - state.scrollw
2364 then 0
2365 else state.scrollw
2367 gotoy_and_clear_text y;
2369 else gotoy_and_clear_text state.y;
2373 let gotopagexy pageno x y =
2374 match state.mode with
2375 | Birdseye _ -> gotopage pageno 0.0
2376 | _ -> gotopagexy1 pageno x y
2379 let act cmds =
2380 (* dolog "%S" cmds; *)
2381 let cl = splitatspace cmds in
2382 let scan s fmt f =
2383 try Scanf.sscanf s fmt f
2384 with exn ->
2385 dolog "error processing '%S': %s" cmds (exntos exn);
2386 exit 1
2388 match cl with
2389 | "clear" :: [] ->
2390 state.uioh#infochanged Pdim;
2391 state.pdims <- [];
2393 | "clearrects" :: [] ->
2394 state.rects <- state.rects1;
2395 G.postRedisplay "clearrects";
2397 | "continue" :: args :: [] ->
2398 let n = scan args "%u" (fun n -> n) in
2399 state.pagecount <- n;
2400 begin match state.currently with
2401 | Outlining l ->
2402 state.currently <- Idle;
2403 state.outlines <- Array.of_list (List.rev l)
2404 | _ -> ()
2405 end;
2407 let cur, cmds = state.geomcmds in
2408 if String.length cur = 0
2409 then failwith "umpossible";
2411 begin match List.rev cmds with
2412 | [] ->
2413 state.geomcmds <- "", [];
2414 represent ();
2415 | (s, f) :: rest ->
2416 f ();
2417 state.geomcmds <- s, List.rev rest;
2418 end;
2419 if conf.maxwait = None && not !wtmode
2420 then G.postRedisplay "continue";
2422 | "title" :: args :: [] ->
2423 Wsi.settitle args
2425 | "msg" :: args :: [] ->
2426 showtext ' ' args
2428 | "vmsg" :: args :: [] ->
2429 if conf.verbose
2430 then showtext ' ' args
2432 | "emsg" :: args :: [] ->
2433 Buffer.add_string state.errmsgs args;
2434 state.newerrmsgs <- true;
2435 G.postRedisplay "error message"
2437 | "progress" :: args :: [] ->
2438 let progress, text =
2439 scan args "%f %n"
2440 (fun f pos ->
2441 f, String.sub args pos (String.length args - pos))
2443 state.text <- text;
2444 state.progress <- progress;
2445 G.postRedisplay "progress"
2447 | "firstmatch" :: args :: [] ->
2448 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2449 scan args "%u %d %f %f %f %f %f %f %f %f"
2450 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2451 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2453 let y = (getpagey pageno) + truncate y0 in
2454 addnav ();
2455 gotoy y;
2456 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2458 | "match" :: args :: [] ->
2459 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2460 scan args "%u %d %f %f %f %f %f %f %f %f"
2461 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2462 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2464 state.rects1 <-
2465 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2467 | "page" :: args :: [] ->
2468 let pageopaque, t = scan args "%s %f" (fun p t -> p, t) in
2469 begin match state.currently with
2470 | Loading (l, gen) ->
2471 vlog "page %d took %f sec" l.pageno t;
2472 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2473 begin match state.throttle with
2474 | None ->
2475 let preloadedpages =
2476 if conf.preload
2477 then preloadlayout state.y
2478 else state.layout
2480 let evict () =
2481 let module IntSet =
2482 Set.Make (struct type t = int let compare = (-) end) in
2483 let set =
2484 List.fold_left (fun s l -> IntSet.add l.pageno s)
2485 IntSet.empty preloadedpages
2487 let evictedpages =
2488 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2489 if not (IntSet.mem pageno set)
2490 then (
2491 wcmd "freepage %s" opaque;
2492 key :: accu
2494 else accu
2495 ) state.pagemap []
2497 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2499 evict ();
2500 state.currently <- Idle;
2501 if gen = state.gen
2502 then (
2503 tilepage l.pageno pageopaque state.layout;
2504 load state.layout;
2505 load preloadedpages;
2506 if pagevisible state.layout l.pageno
2507 && layoutready state.layout
2508 then G.postRedisplay "page";
2511 | Some (layout, _, _) ->
2512 state.currently <- Idle;
2513 tilepage l.pageno pageopaque layout;
2514 load state.layout
2515 end;
2517 | _ ->
2518 dolog "Inconsistent loading state";
2519 logcurrently state.currently;
2520 exit 1
2523 | "tile" :: args :: [] ->
2524 let (x, y, opaque, size, t) =
2525 scan args "%u %u %s %u %f"
2526 (fun x y p size t -> (x, y, p, size, t))
2528 begin match state.currently with
2529 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2530 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2532 unmappbo opaque;
2533 if tilew != conf.tilew || tileh != conf.tileh
2534 then (
2535 wcmd "freetile %s" opaque;
2536 state.currently <- Idle;
2537 load state.layout;
2539 else (
2540 puttileopaque l col row gen cs angle opaque size t;
2541 state.memused <- state.memused + size;
2542 state.uioh#infochanged Memused;
2543 gctiles ();
2544 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2545 opaque, size) state.tilelru;
2547 let layout =
2548 match state.throttle with
2549 | None -> state.layout
2550 | Some (layout, _, _) -> layout
2553 state.currently <- Idle;
2554 if gen = state.gen
2555 && conf.colorspace = cs
2556 && conf.angle = angle
2557 && tilevisible layout l.pageno x y
2558 then conttiling l.pageno pageopaque;
2560 begin match state.throttle with
2561 | None ->
2562 preload state.layout;
2563 if gen = state.gen
2564 && conf.colorspace = cs
2565 && conf.angle = angle
2566 && tilevisible state.layout l.pageno x y
2567 && (not !wtmode || layoutready state.layout)
2568 then G.postRedisplay "tile nothrottle";
2570 | Some (layout, y, _) ->
2571 let ready = layoutready layout in
2572 if ready
2573 then (
2574 state.y <- y;
2575 state.layout <- layout;
2576 state.throttle <- None;
2577 G.postRedisplay "throttle";
2579 else load layout;
2580 end;
2583 | _ ->
2584 dolog "Inconsistent tiling state";
2585 logcurrently state.currently;
2586 exit 1
2589 | "pdim" :: args :: [] ->
2590 let pdim =
2591 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2593 state.uioh#infochanged Pdim;
2594 state.pdims <- pdim :: state.pdims
2596 | "o" :: args :: [] ->
2597 let (l, n, t, h, pos) =
2598 scan args "%u %u %d %u %n"
2599 (fun l n t h pos -> l, n, t, h, pos)
2601 let s = String.sub args pos (String.length args - pos) in
2602 let outline = (s, l, (n, float t /. float h, 0.0)) in
2603 begin match state.currently with
2604 | Outlining outlines ->
2605 state.currently <- Outlining (outline :: outlines)
2606 | Idle ->
2607 state.currently <- Outlining [outline]
2608 | currently ->
2609 dolog "invalid outlining state";
2610 logcurrently currently
2613 | "a" :: args :: [] ->
2614 let (n, l, t) =
2615 scan args "%u %d %d" (fun n l t -> n, l, t)
2617 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2619 | "info" :: args :: [] ->
2620 state.docinfo <- (1, args) :: state.docinfo
2622 | "infoend" :: [] ->
2623 state.uioh#infochanged Docinfo;
2624 state.docinfo <- List.rev state.docinfo
2626 | _ ->
2627 failwith (Printf.sprintf "unknown cmd `%S'" cmds)
2630 let onhist cb =
2631 let rc = cb.rc in
2632 let action = function
2633 | HCprev -> cbget cb ~-1
2634 | HCnext -> cbget cb 1
2635 | HCfirst -> cbget cb ~-(cb.rc)
2636 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2637 and cancel () = cb.rc <- rc
2638 in (action, cancel)
2641 let search pattern forward =
2642 if String.length pattern > 0
2643 then
2644 let pn, py =
2645 match state.layout with
2646 | [] -> 0, 0
2647 | l :: _ ->
2648 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2650 wcmd "search %d %d %d %d,%s\000"
2651 (btod conf.icase) pn py (btod forward) pattern;
2654 let intentry text key =
2655 let c =
2656 if key >= 32 && key < 127
2657 then Char.chr key
2658 else '\000'
2660 match c with
2661 | '0' .. '9' ->
2662 let text = addchar text c in
2663 TEcont text
2665 | _ ->
2666 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2667 TEcont text
2670 let linknentry text key =
2671 let c =
2672 if key >= 32 && key < 127
2673 then Char.chr key
2674 else '\000'
2676 match c with
2677 | 'a' .. 'z' ->
2678 let text = addchar text c in
2679 TEcont text
2681 | _ ->
2682 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2683 TEcont text
2686 let linkndone f s =
2687 if String.length s > 0
2688 then (
2689 let n =
2690 let l = String.length s in
2691 let rec loop pos n = if pos = l then n else
2692 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2693 loop (pos+1) (n*26 + m)
2694 in loop 0 0
2696 let rec loop n = function
2697 | [] -> ()
2698 | l :: rest ->
2699 match getopaque l.pageno with
2700 | None -> loop n rest
2701 | Some opaque ->
2702 let m = getlinkcount opaque in
2703 if n < m
2704 then (
2705 let under = getlink opaque n in
2706 f under
2708 else loop (n-m) rest
2710 loop n state.layout;
2714 let textentry text key =
2715 if key land 0xff00 = 0xff00
2716 then TEcont text
2717 else TEcont (text ^ toutf8 key)
2720 let reqlayout angle fitmodel =
2721 match state.throttle with
2722 | None ->
2723 if nogeomcmds state.geomcmds
2724 then state.anchor <- getanchor ();
2725 conf.angle <- angle mod 360;
2726 if conf.angle != 0
2727 then (
2728 match state.mode with
2729 | LinkNav _ -> state.mode <- View
2730 | _ -> ()
2732 conf.fitmodel <- fitmodel;
2733 invalidate "reqlayout"
2734 (fun () ->
2735 wcmd "reqlayout %d %d" conf.angle (int_of_fitmodel fitmodel));
2736 | _ -> ()
2739 let settrim trimmargins trimfuzz =
2740 if nogeomcmds state.geomcmds
2741 then state.anchor <- getanchor ();
2742 conf.trimmargins <- trimmargins;
2743 conf.trimfuzz <- trimfuzz;
2744 let x0, y0, x1, y1 = trimfuzz in
2745 invalidate "settrim"
2746 (fun () ->
2747 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2748 flushpages ();
2751 let setzoom zoom =
2752 match state.throttle with
2753 | None ->
2754 let zoom = max 0.0001 zoom in
2755 if zoom <> conf.zoom
2756 then (
2757 state.prevzoom <- conf.zoom;
2758 conf.zoom <- zoom;
2759 reshape state.winw state.winh;
2760 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2763 | Some (layout, y, started) ->
2764 let time =
2765 match conf.maxwait with
2766 | None -> 0.0
2767 | Some t -> t
2769 let dt = now () -. started in
2770 if dt > time
2771 then (
2772 state.y <- y;
2773 load layout;
2777 let setcolumns mode columns coverA coverB =
2778 state.prevcolumns <- Some (conf.columns, conf.zoom);
2779 if columns < 0
2780 then (
2781 if isbirdseye mode
2782 then showtext '!' "split mode doesn't work in bird's eye"
2783 else (
2784 conf.columns <- Csplit (-columns, [||]);
2785 state.x <- 0;
2786 conf.zoom <- 1.0;
2789 else (
2790 if columns < 2
2791 then (
2792 conf.columns <- Csingle [||];
2793 state.x <- 0;
2794 setzoom 1.0;
2796 else (
2797 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2798 conf.zoom <- 1.0;
2801 reshape state.winw state.winh;
2804 let enterbirdseye () =
2805 let zoom = float conf.thumbw /. float state.winw in
2806 let birdseyepageno =
2807 let cy = state.winh / 2 in
2808 let fold = function
2809 | [] -> 0
2810 | l :: rest ->
2811 let rec fold best = function
2812 | [] -> best.pageno
2813 | l :: rest ->
2814 let d = cy - (l.pagedispy + l.pagevh/2)
2815 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2816 if abs d < abs dbest
2817 then fold l rest
2818 else best.pageno
2819 in fold l rest
2821 fold state.layout
2823 state.mode <- Birdseye (
2824 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2826 conf.zoom <- zoom;
2827 conf.presentation <- false;
2828 conf.interpagespace <- 10;
2829 conf.hlinks <- false;
2830 state.x <- 0;
2831 state.mstate <- Mnone;
2832 conf.maxwait <- None;
2833 conf.columns <- (
2834 match conf.beyecolumns with
2835 | Some c ->
2836 conf.zoom <- 1.0;
2837 Cmulti ((c, 0, 0), [||])
2838 | None -> Csingle [||]
2840 Wsi.setcursor Wsi.CURSOR_INHERIT;
2841 if conf.verbose
2842 then
2843 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2844 (100.0*.zoom)
2845 else
2846 state.text <- ""
2848 reshape state.winw state.winh;
2851 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2852 state.mode <- View;
2853 conf.zoom <- c.zoom;
2854 conf.presentation <- c.presentation;
2855 conf.interpagespace <- c.interpagespace;
2856 conf.maxwait <- c.maxwait;
2857 conf.hlinks <- c.hlinks;
2858 conf.beyecolumns <- (
2859 match conf.columns with
2860 | Cmulti ((c, _, _), _) -> Some c
2861 | Csingle _ -> None
2862 | Csplit _ -> failwith "leaving bird's eye split mode"
2864 conf.columns <- (
2865 match c.columns with
2866 | Cmulti (c, _) -> Cmulti (c, [||])
2867 | Csingle _ -> Csingle [||]
2868 | Csplit (c, _) -> Csplit (c, [||])
2870 state.x <- leftx;
2871 if conf.verbose
2872 then
2873 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2874 (100.0*.conf.zoom)
2876 reshape state.winw state.winh;
2877 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2880 let togglebirdseye () =
2881 match state.mode with
2882 | Birdseye vals -> leavebirdseye vals true
2883 | View -> enterbirdseye ()
2884 | _ -> ()
2887 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2888 let pageno = max 0 (pageno - incr) in
2889 let rec loop = function
2890 | [] -> gotopage1 pageno 0
2891 | l :: _ when l.pageno = pageno ->
2892 if l.pagedispy >= 0 && l.pagey = 0
2893 then G.postRedisplay "upbirdseye"
2894 else gotopage1 pageno 0
2895 | _ :: rest -> loop rest
2897 loop state.layout;
2898 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2901 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2902 let pageno = min (state.pagecount - 1) (pageno + incr) in
2903 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2904 let rec loop = function
2905 | [] ->
2906 let y, h = getpageyh pageno in
2907 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
2908 gotoy (clamp dy)
2909 | l :: _ when l.pageno = pageno ->
2910 if l.pagevh != l.pageh
2911 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2912 else G.postRedisplay "downbirdseye"
2913 | _ :: rest -> loop rest
2915 loop state.layout
2918 let optentry mode _ key =
2919 let btos b = if b then "on" else "off" in
2920 if key >= 32 && key < 127
2921 then
2922 let c = Char.chr key in
2923 match c with
2924 | 's' ->
2925 let ondone s =
2926 try conf.scrollstep <- int_of_string s with exc ->
2927 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2929 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2931 | 'A' ->
2932 let ondone s =
2934 conf.autoscrollstep <- int_of_string s;
2935 if state.autoscroll <> None
2936 then state.autoscroll <- Some conf.autoscrollstep
2937 with exc ->
2938 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2940 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2942 | 'C' ->
2943 let ondone s =
2945 let n, a, b = multicolumns_of_string s in
2946 setcolumns mode n a b;
2947 with exc ->
2948 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
2950 TEswitch ("columns: ", "", None, textentry, ondone, true)
2952 | 'Z' ->
2953 let ondone s =
2955 let zoom = float (int_of_string s) /. 100.0 in
2956 setzoom zoom
2957 with exc ->
2958 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2960 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2962 | 't' ->
2963 let ondone s =
2965 conf.thumbw <- bound (int_of_string s) 2 4096;
2966 state.text <-
2967 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2968 begin match mode with
2969 | Birdseye beye ->
2970 leavebirdseye beye false;
2971 enterbirdseye ();
2972 | _ -> ();
2974 with exc ->
2975 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
2977 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2979 | 'R' ->
2980 let ondone s =
2981 match try
2982 Some (int_of_string s)
2983 with exc ->
2984 state.text <- Printf.sprintf "bad integer `%s': %s"
2985 s (exntos exc);
2986 None
2987 with
2988 | Some angle -> reqlayout angle conf.fitmodel
2989 | None -> ()
2991 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2993 | 'i' ->
2994 conf.icase <- not conf.icase;
2995 TEdone ("case insensitive search " ^ (btos conf.icase))
2997 | 'p' ->
2998 conf.preload <- not conf.preload;
2999 gotoy state.y;
3000 TEdone ("preload " ^ (btos conf.preload))
3002 | 'v' ->
3003 conf.verbose <- not conf.verbose;
3004 TEdone ("verbose " ^ (btos conf.verbose))
3006 | 'd' ->
3007 conf.debug <- not conf.debug;
3008 TEdone ("debug " ^ (btos conf.debug))
3010 | 'h' ->
3011 conf.maxhfit <- not conf.maxhfit;
3012 state.maxy <- calcheight ();
3013 TEdone ("maxhfit " ^ (btos conf.maxhfit))
3015 | 'c' ->
3016 conf.crophack <- not conf.crophack;
3017 TEdone ("crophack " ^ btos conf.crophack)
3019 | 'a' ->
3020 let s =
3021 match conf.maxwait with
3022 | None ->
3023 conf.maxwait <- Some infinity;
3024 "always wait for page to complete"
3025 | Some _ ->
3026 conf.maxwait <- None;
3027 "show placeholder if page is not ready"
3029 TEdone s
3031 | 'f' ->
3032 conf.underinfo <- not conf.underinfo;
3033 TEdone ("underinfo " ^ btos conf.underinfo)
3035 | 'P' ->
3036 conf.savebmarks <- not conf.savebmarks;
3037 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
3039 | 'S' ->
3040 let ondone s =
3042 let pageno, py =
3043 match state.layout with
3044 | [] -> 0, 0
3045 | l :: _ ->
3046 l.pageno, l.pagey
3048 conf.interpagespace <- int_of_string s;
3049 docolumns conf.columns;
3050 state.maxy <- calcheight ();
3051 let y = getpagey pageno in
3052 gotoy (y + py)
3053 with exc ->
3054 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3056 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
3058 | 'l' ->
3059 let fm =
3060 match conf.fitmodel with
3061 | FitProportional -> FitWidth
3062 | _ -> FitProportional
3064 reqlayout conf.angle fm;
3065 TEdone ("proportional display " ^ btos (fm == FitProportional))
3067 | 'T' ->
3068 settrim (not conf.trimmargins) conf.trimfuzz;
3069 TEdone ("trim margins " ^ btos conf.trimmargins)
3071 | 'I' ->
3072 conf.invert <- not conf.invert;
3073 TEdone ("invert colors " ^ btos conf.invert)
3075 | 'x' ->
3076 let ondone s =
3077 cbput state.hists.sel s;
3078 conf.selcmd <- s;
3080 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3081 textentry, ondone, true)
3083 | _ ->
3084 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3085 TEstop
3086 else
3087 TEcont state.text
3090 class type lvsource = object
3091 method getitemcount : int
3092 method getitem : int -> (string * int)
3093 method hasaction : int -> bool
3094 method exit :
3095 uioh:uioh ->
3096 cancel:bool ->
3097 active:int ->
3098 first:int ->
3099 pan:int ->
3100 qsearch:string ->
3101 uioh option
3102 method getactive : int
3103 method getfirst : int
3104 method getqsearch : string
3105 method setqsearch : string -> unit
3106 method getpan : int
3107 end;;
3109 class virtual lvsourcebase = object
3110 val mutable m_active = 0
3111 val mutable m_first = 0
3112 val mutable m_qsearch = ""
3113 val mutable m_pan = 0
3114 method getactive = m_active
3115 method getfirst = m_first
3116 method getqsearch = m_qsearch
3117 method getpan = m_pan
3118 method setqsearch s = m_qsearch <- s
3119 end;;
3121 let withoutlastutf8 s =
3122 let len = String.length s in
3123 if len = 0
3124 then s
3125 else
3126 let rec find pos =
3127 if pos = 0
3128 then pos
3129 else
3130 let b = Char.code s.[pos] in
3131 if b land 0b11000000 = 0b11000000
3132 then pos
3133 else find (pos-1)
3135 let first =
3136 if Char.code s.[len-1] land 0x80 = 0
3137 then len-1
3138 else find (len-1)
3140 String.sub s 0 first;
3143 let textentrykeyboard
3144 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3145 let key =
3146 if key >= 0xffb0 && key <= 0xffb9
3147 then key - 0xffb0 + 48 else key
3149 let enttext te =
3150 state.mode <- Textentry (te, onleave);
3151 state.text <- "";
3152 enttext ();
3153 G.postRedisplay "textentrykeyboard enttext";
3155 let histaction cmd =
3156 match opthist with
3157 | None -> ()
3158 | Some (action, _) ->
3159 state.mode <- Textentry (
3160 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3162 G.postRedisplay "textentry histaction"
3164 match key with
3165 | 0xff08 -> (* backspace *)
3166 let s = withoutlastutf8 text in
3167 let len = String.length s in
3168 if cancelonempty && len = 0
3169 then (
3170 onleave Cancel;
3171 G.postRedisplay "textentrykeyboard after cancel";
3173 else (
3174 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3177 | 0xff0d | 0xff8d -> (* (kp) enter *)
3178 ondone text;
3179 onleave Confirm;
3180 G.postRedisplay "textentrykeyboard after confirm"
3182 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3183 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3184 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3185 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3187 | 0xff1b -> (* escape*)
3188 if String.length text = 0
3189 then (
3190 begin match opthist with
3191 | None -> ()
3192 | Some (_, onhistcancel) -> onhistcancel ()
3193 end;
3194 onleave Cancel;
3195 state.text <- "";
3196 G.postRedisplay "textentrykeyboard after cancel2"
3198 else (
3199 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3202 | 0xff9f | 0xffff -> () (* delete *)
3204 | _ when key != 0
3205 && key land 0xff00 != 0xff00 (* keyboard *)
3206 && key land 0xfe00 != 0xfe00 (* xkb *)
3207 && key land 0xfd00 != 0xfd00 (* 3270 *)
3209 begin match onkey text key with
3210 | TEdone text ->
3211 ondone text;
3212 onleave Confirm;
3213 G.postRedisplay "textentrykeyboard after confirm2";
3215 | TEcont text ->
3216 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3218 | TEstop ->
3219 onleave Cancel;
3220 G.postRedisplay "textentrykeyboard after cancel3"
3222 | TEswitch te ->
3223 state.mode <- Textentry (te, onleave);
3224 G.postRedisplay "textentrykeyboard switch";
3225 end;
3227 | _ ->
3228 vlog "unhandled key %s" (Wsi.keyname key)
3231 let firstof first active =
3232 if first > active || abs (first - active) > fstate.maxrows - 1
3233 then max 0 (active - (fstate.maxrows/2))
3234 else first
3237 let calcfirst first active =
3238 if active > first
3239 then
3240 let rows = active - first in
3241 if rows > fstate.maxrows then active - fstate.maxrows else first
3242 else active
3245 let scrollph y maxy =
3246 let sh = (float (maxy + state.winh) /. float state.winh) in
3247 let sh = float state.winh /. sh in
3248 let sh = max sh (float conf.scrollh) in
3250 let percent =
3251 if y = state.maxy
3252 then 1.0
3253 else float y /. float maxy
3255 let position = (float state.winh -. sh) *. percent in
3257 let position =
3258 if position +. sh > float state.winh
3259 then float state.winh -. sh
3260 else position
3262 position, sh;
3265 let coe s = (s :> uioh);;
3267 class listview ~(source:lvsource) ~trusted ~modehash =
3268 object (self)
3269 val m_pan = source#getpan
3270 val m_first = source#getfirst
3271 val m_active = source#getactive
3272 val m_qsearch = source#getqsearch
3273 val m_prev_uioh = state.uioh
3275 method private elemunder y =
3276 let n = y / (fstate.fontsize+1) in
3277 if m_first + n < source#getitemcount
3278 then (
3279 if source#hasaction (m_first + n)
3280 then Some (m_first + n)
3281 else None
3283 else None
3285 method display =
3286 Gl.enable `blend;
3287 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3288 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3289 GlDraw.rect (0., 0.) (float state.winw, float state.winh);
3290 GlDraw.color (1., 1., 1.);
3291 Gl.enable `texture_2d;
3292 let fs = fstate.fontsize in
3293 let nfs = fs + 1 in
3294 let ww = fstate.wwidth in
3295 let tabw = 30.0*.ww in
3296 let itemcount = source#getitemcount in
3297 let rec loop row =
3298 if (row - m_first) > fstate.maxrows
3299 then ()
3300 else (
3301 if row >= 0 && row < itemcount
3302 then (
3303 let (s, level) = source#getitem row in
3304 let y = (row - m_first) * nfs in
3305 let x = 5.0 +. float (level + m_pan) *. ww in
3306 if row = m_active
3307 then (
3308 Gl.disable `texture_2d;
3309 GlDraw.polygon_mode `both `line;
3310 let alpha = if source#hasaction row then 0.9 else 0.3 in
3311 GlDraw.color (1., 1., 1.) ~alpha;
3312 GlDraw.rect (1., float (y + 1))
3313 (float (state.winw - conf.scrollbw - 1), float (y + fs + 3));
3314 GlDraw.polygon_mode `both `fill;
3315 GlDraw.color (1., 1., 1.);
3316 Gl.enable `texture_2d;
3319 let drawtabularstring s =
3320 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3321 if trusted
3322 then
3323 let tabpos = try String.index s '\t' with Not_found -> -1 in
3324 if tabpos > 0
3325 then
3326 let len = String.length s - tabpos - 1 in
3327 let s1 = String.sub s 0 tabpos
3328 and s2 = String.sub s (tabpos + 1) len in
3329 let nx = drawstr x s1 in
3330 let sw = nx -. x in
3331 let x = x +. (max tabw sw) in
3332 drawstr x s2
3333 else
3334 drawstr x s
3335 else
3336 drawstr x s
3338 let _ = drawtabularstring s in
3339 loop (row+1)
3343 loop m_first;
3344 Gl.disable `blend;
3345 Gl.disable `texture_2d;
3347 method updownlevel incr =
3348 let len = source#getitemcount in
3349 let curlevel =
3350 if m_active >= 0 && m_active < len
3351 then snd (source#getitem m_active)
3352 else -1
3354 let rec flow i =
3355 if i = len then i-1 else if i = -1 then 0 else
3356 let _, l = source#getitem i in
3357 if l != curlevel then i else flow (i+incr)
3359 let active = flow m_active in
3360 let first = calcfirst m_first active in
3361 G.postRedisplay "outline updownlevel";
3362 {< m_active = active; m_first = first >}
3364 method private key1 key mask =
3365 let set1 active first qsearch =
3366 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3368 let search active pattern incr =
3369 let active = if active = -1 then m_first else active in
3370 let dosearch re =
3371 let rec loop n =
3372 if n >= 0 && n < source#getitemcount
3373 then (
3374 let s, _ = source#getitem n in
3376 (try ignore (Str.search_forward re s 0); true
3377 with Not_found -> false)
3378 then Some n
3379 else loop (n + incr)
3381 else None
3383 loop active
3386 let re = Str.regexp_case_fold pattern in
3387 dosearch re
3388 with Failure s ->
3389 state.text <- s;
3390 None
3392 let itemcount = source#getitemcount in
3393 let find start incr =
3394 let rec find i =
3395 if i = -1 || i = itemcount
3396 then -1
3397 else (
3398 if source#hasaction i
3399 then i
3400 else find (i + incr)
3403 find start
3405 let set active first =
3406 let first = bound first 0 (itemcount - fstate.maxrows) in
3407 state.text <- "";
3408 coe {< m_active = active; m_first = first >}
3410 let navigate incr =
3411 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3412 let active, first =
3413 let incr1 = if incr > 0 then 1 else -1 in
3414 if isvisible m_first m_active
3415 then
3416 let next =
3417 let next = m_active + incr in
3418 let next =
3419 if next < 0 || next >= itemcount
3420 then -1
3421 else find next incr1
3423 if next = -1 || abs (m_active - next) > fstate.maxrows
3424 then -1
3425 else next
3427 if next = -1
3428 then
3429 let first = m_first + incr in
3430 let first = bound first 0 (itemcount - 1) in
3431 let next =
3432 let next = m_active + incr in
3433 let next = bound next 0 (itemcount - 1) in
3434 find next ~-incr1
3436 let active = if next = -1 then m_active else next in
3437 active, first
3438 else
3439 let first = min next m_first in
3440 let first =
3441 if abs (next - first) > fstate.maxrows
3442 then first + incr
3443 else first
3445 next, first
3446 else
3447 let first = m_first + incr in
3448 let first = bound first 0 (itemcount - 1) in
3449 let active =
3450 let next = m_active + incr in
3451 let next = bound next 0 (itemcount - 1) in
3452 let next = find next incr1 in
3453 let active =
3454 if next = -1 || abs (m_active - first) > fstate.maxrows
3455 then (
3456 let active = if m_active = -1 then next else m_active in
3457 active
3459 else next
3461 if isvisible first active
3462 then active
3463 else -1
3465 active, first
3467 G.postRedisplay "listview navigate";
3468 set active first;
3470 match key with
3471 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3472 let incr = if key = 0x72 then -1 else 1 in
3473 let active, first =
3474 match search (m_active + incr) m_qsearch incr with
3475 | None ->
3476 state.text <- m_qsearch ^ " [not found]";
3477 m_active, m_first
3478 | Some active ->
3479 state.text <- m_qsearch;
3480 active, firstof m_first active
3482 G.postRedisplay "listview ctrl-r/s";
3483 set1 active first m_qsearch;
3485 | 0xff08 -> (* backspace *)
3486 if String.length m_qsearch = 0
3487 then coe self
3488 else (
3489 let qsearch = withoutlastutf8 m_qsearch in
3490 let len = String.length qsearch in
3491 if len = 0
3492 then (
3493 state.text <- "";
3494 G.postRedisplay "listview empty qsearch";
3495 set1 m_active m_first "";
3497 else
3498 let active, first =
3499 match search m_active qsearch ~-1 with
3500 | None ->
3501 state.text <- qsearch ^ " [not found]";
3502 m_active, m_first
3503 | Some active ->
3504 state.text <- qsearch;
3505 active, firstof m_first active
3507 G.postRedisplay "listview backspace qsearch";
3508 set1 active first qsearch
3511 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3512 let pattern = m_qsearch ^ toutf8 key in
3513 let active, first =
3514 match search m_active pattern 1 with
3515 | None ->
3516 state.text <- pattern ^ " [not found]";
3517 m_active, m_first
3518 | Some active ->
3519 state.text <- pattern;
3520 active, firstof m_first active
3522 G.postRedisplay "listview qsearch add";
3523 set1 active first pattern;
3525 | 0xff1b -> (* escape *)
3526 state.text <- "";
3527 if String.length m_qsearch = 0
3528 then (
3529 G.postRedisplay "list view escape";
3530 begin
3531 match
3532 source#exit (coe self) true m_active m_first m_pan m_qsearch
3533 with
3534 | None -> m_prev_uioh
3535 | Some uioh -> uioh
3538 else (
3539 G.postRedisplay "list view kill qsearch";
3540 source#setqsearch "";
3541 coe {< m_qsearch = "" >}
3544 | 0xff0d | 0xff8d -> (* (kp) enter *)
3545 state.text <- "";
3546 let self = {< m_qsearch = "" >} in
3547 source#setqsearch "";
3548 let opt =
3549 G.postRedisplay "listview enter";
3550 if m_active >= 0 && m_active < source#getitemcount
3551 then (
3552 source#exit (coe self) false m_active m_first m_pan "";
3554 else (
3555 source#exit (coe self) true m_active m_first m_pan "";
3558 begin match opt with
3559 | None -> m_prev_uioh
3560 | Some uioh -> uioh
3563 | 0xff9f | 0xffff -> (* (kp) delete *)
3564 coe self
3566 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3567 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3568 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3569 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3571 | 0xff53 | 0xff98 -> (* (kp) right *)
3572 state.text <- "";
3573 G.postRedisplay "listview right";
3574 coe {< m_pan = m_pan - 1 >}
3576 | 0xff51 | 0xff96 -> (* (kp) left *)
3577 state.text <- "";
3578 G.postRedisplay "listview left";
3579 coe {< m_pan = m_pan + 1 >}
3581 | 0xff50 | 0xff95 -> (* (kp) home *)
3582 let active = find 0 1 in
3583 G.postRedisplay "listview home";
3584 set active 0;
3586 | 0xff57 | 0xff9c -> (* (kp) end *)
3587 let first = max 0 (itemcount - fstate.maxrows) in
3588 let active = find (itemcount - 1) ~-1 in
3589 G.postRedisplay "listview end";
3590 set active first;
3592 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3593 coe self
3595 | _ ->
3596 dolog "listview unknown key %#x" key; coe self
3598 method key key mask =
3599 match state.mode with
3600 | Textentry te -> textentrykeyboard key mask te; coe self
3601 | _ -> self#key1 key mask
3603 method button button down x y _ =
3604 let opt =
3605 match button with
3606 | 1 when x > state.winw - conf.scrollbw ->
3607 G.postRedisplay "listview scroll";
3608 if down
3609 then
3610 let _, position, sh = self#scrollph in
3611 if y > truncate position && y < truncate (position +. sh)
3612 then (
3613 state.mstate <- Mscrolly;
3614 Some (coe self)
3616 else
3617 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3618 let first = truncate (s *. float source#getitemcount) in
3619 let first = min source#getitemcount first in
3620 Some (coe {< m_first = first; m_active = first >})
3621 else (
3622 state.mstate <- Mnone;
3623 Some (coe self);
3625 | 1 when not down ->
3626 begin match self#elemunder y with
3627 | Some n ->
3628 G.postRedisplay "listview click";
3629 source#exit
3630 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3631 | _ ->
3632 Some (coe self)
3634 | n when (n == 4 || n == 5) && not down ->
3635 let len = source#getitemcount in
3636 let first =
3637 if n = 5 && m_first + fstate.maxrows >= len
3638 then
3639 m_first
3640 else
3641 let first = m_first + (if n == 4 then -1 else 1) in
3642 bound first 0 (len - 1)
3644 G.postRedisplay "listview wheel";
3645 Some (coe {< m_first = first >})
3646 | n when (n = 6 || n = 7) && not down ->
3647 let inc = m_first + (if n = 7 then -1 else 1) in
3648 G.postRedisplay "listview hwheel";
3649 Some (coe {< m_pan = m_pan + inc >})
3650 | _ ->
3651 Some (coe self)
3653 match opt with
3654 | None -> m_prev_uioh
3655 | Some uioh -> uioh
3657 method motion _ y =
3658 match state.mstate with
3659 | Mscrolly ->
3660 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3661 let first = truncate (s *. float source#getitemcount) in
3662 let first = min source#getitemcount first in
3663 G.postRedisplay "listview motion";
3664 coe {< m_first = first; m_active = first >}
3665 | _ -> coe self
3667 method pmotion x y =
3668 if x < state.winw - conf.scrollbw
3669 then
3670 let n =
3671 match self#elemunder y with
3672 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3673 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3675 let o =
3676 if n != m_active
3677 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3678 else self
3680 coe o
3681 else (
3682 Wsi.setcursor Wsi.CURSOR_INHERIT;
3683 coe self
3686 method infochanged _ = ()
3688 method scrollpw = (0, 0.0, 0.0)
3689 method scrollph =
3690 let nfs = fstate.fontsize + 1 in
3691 let y = m_first * nfs in
3692 let itemcount = source#getitemcount in
3693 let maxi = max 0 (itemcount - fstate.maxrows) in
3694 let maxy = maxi * nfs in
3695 let p, h = scrollph y maxy in
3696 conf.scrollbw, p, h
3698 method modehash = modehash
3699 method eformsgs = false
3700 end;;
3702 class outlinelistview ~source =
3703 object (self)
3704 inherit listview
3705 ~source:(source :> lvsource)
3706 ~trusted:false
3707 ~modehash:(findkeyhash conf "outline")
3708 as super
3710 method key key mask =
3711 let calcfirst first active =
3712 if active > first
3713 then
3714 let rows = active - first in
3715 let maxrows =
3716 if String.length state.text = 0
3717 then fstate.maxrows
3718 else fstate.maxrows - 2
3720 if rows > maxrows then active - maxrows else first
3721 else active
3723 let navigate incr =
3724 let active = m_active + incr in
3725 let active = bound active 0 (source#getitemcount - 1) in
3726 let first = calcfirst m_first active in
3727 G.postRedisplay "outline navigate";
3728 coe {< m_active = active; m_first = first >}
3730 let ctrl = Wsi.withctrl mask in
3731 match key with
3732 | 110 when ctrl -> (* ctrl-n *)
3733 source#narrow m_qsearch;
3734 G.postRedisplay "outline ctrl-n";
3735 coe {< m_first = 0; m_active = 0 >}
3737 | 117 when ctrl -> (* ctrl-u *)
3738 source#denarrow;
3739 G.postRedisplay "outline ctrl-u";
3740 state.text <- "";
3741 coe {< m_first = 0; m_active = 0 >}
3743 | 108 when ctrl -> (* ctrl-l *)
3744 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3745 G.postRedisplay "outline ctrl-l";
3746 coe {< m_first = first >}
3748 | 0xff9f | 0xffff -> (* (kp) delete *)
3749 source#remove m_active;
3750 G.postRedisplay "outline delete";
3751 let active = max 0 (m_active-1) in
3752 coe {< m_first = firstof m_first active;
3753 m_active = active >}
3755 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3756 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3757 | 0xff55 | 0xff9a -> (* (kp) prior *)
3758 navigate ~-(fstate.maxrows)
3759 | 0xff56 | 0xff9b -> (* (kp) next *)
3760 navigate fstate.maxrows
3762 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3763 let o =
3764 if ctrl
3765 then (
3766 G.postRedisplay "outline ctrl right";
3767 {< m_pan = m_pan + 1 >}
3769 else self#updownlevel 1
3771 coe o
3773 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3774 let o =
3775 if ctrl
3776 then (
3777 G.postRedisplay "outline ctrl left";
3778 {< m_pan = m_pan - 1 >}
3780 else self#updownlevel ~-1
3782 coe o
3784 | 0xff50 | 0xff95 -> (* (kp) home *)
3785 G.postRedisplay "outline home";
3786 coe {< m_first = 0; m_active = 0 >}
3788 | 0xff57 | 0xff9c -> (* (kp) end *)
3789 let active = source#getitemcount - 1 in
3790 let first = max 0 (active - fstate.maxrows) in
3791 G.postRedisplay "outline end";
3792 coe {< m_active = active; m_first = first >}
3794 | _ -> super#key key mask
3797 let outlinesource usebookmarks =
3798 let empty = [||] in
3799 (object
3800 inherit lvsourcebase
3801 val mutable m_items = empty
3802 val mutable m_orig_items = empty
3803 val mutable m_prev_items = empty
3804 val mutable m_narrow_pattern = ""
3805 val mutable m_hadremovals = false
3807 method getitemcount =
3808 Array.length m_items + (if m_hadremovals then 1 else 0)
3810 method getitem n =
3811 if n == Array.length m_items && m_hadremovals
3812 then
3813 ("[Confirm removal]", 0)
3814 else
3815 let s, n, _ = m_items.(n) in
3816 (s, n)
3818 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3819 ignore (uioh, first, qsearch);
3820 let confrimremoval = m_hadremovals && active = Array.length m_items in
3821 let items =
3822 if String.length m_narrow_pattern = 0
3823 then m_orig_items
3824 else m_items
3826 if not cancel
3827 then (
3828 if not confrimremoval
3829 then(
3830 let _, _, anchor = m_items.(active) in
3831 gotoghyll (getanchory anchor);
3832 m_items <- items;
3834 else (
3835 state.bookmarks <- Array.to_list m_items;
3836 m_orig_items <- m_items;
3839 else m_items <- items;
3840 m_pan <- pan;
3841 None
3843 method hasaction _ = true
3845 method greetmsg =
3846 if Array.length m_items != Array.length m_orig_items
3847 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3848 else ""
3850 method narrow pattern =
3851 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3852 match reopt with
3853 | None -> ()
3854 | Some re ->
3855 let rec loop accu n =
3856 if n = -1
3857 then (
3858 m_narrow_pattern <- pattern;
3859 m_items <- Array.of_list accu
3861 else
3862 let (s, _, _) as o = m_items.(n) in
3863 let accu =
3864 if (try ignore (Str.search_forward re s 0); true
3865 with Not_found -> false)
3866 then o :: accu
3867 else accu
3869 loop accu (n-1)
3871 loop [] (Array.length m_items - 1)
3873 method denarrow =
3874 m_orig_items <- (
3875 if usebookmarks
3876 then Array.of_list state.bookmarks
3877 else state.outlines
3879 m_items <- m_orig_items
3881 method remove m =
3882 if usebookmarks
3883 then
3884 if m >= 0 && m < Array.length m_items
3885 then (
3886 m_hadremovals <- true;
3887 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3888 let n = if n >= m then n+1 else n in
3889 m_items.(n)
3893 method reset anchor items =
3894 m_hadremovals <- false;
3895 if m_orig_items == empty || m_prev_items != items
3896 then (
3897 m_orig_items <- items;
3898 if String.length m_narrow_pattern = 0
3899 then m_items <- items;
3901 m_prev_items <- items;
3902 let rely = getanchory anchor in
3903 let active =
3904 let rec loop n best bestd =
3905 if n = Array.length m_items
3906 then best
3907 else
3908 let (_, _, anchor) = m_items.(n) in
3909 let orely = getanchory anchor in
3910 let d = abs (orely - rely) in
3911 if d < bestd
3912 then loop (n+1) n d
3913 else loop (n+1) best bestd
3915 loop 0 ~-1 max_int
3917 m_active <- active;
3918 m_first <- firstof m_first active
3919 end)
3922 let enterselector usebookmarks =
3923 let source = outlinesource usebookmarks in
3924 fun errmsg ->
3925 let outlines =
3926 if usebookmarks
3927 then Array.of_list state.bookmarks
3928 else state.outlines
3930 if Array.length outlines = 0
3931 then (
3932 showtext ' ' errmsg;
3934 else (
3935 state.text <- source#greetmsg;
3936 Wsi.setcursor Wsi.CURSOR_INHERIT;
3937 let anchor = getanchor () in
3938 source#reset anchor outlines;
3939 state.uioh <- coe (new outlinelistview ~source);
3940 G.postRedisplay "enter selector";
3944 let enteroutlinemode =
3945 let f = enterselector false in
3946 fun ()-> f "Document has no outline";
3949 let enterbookmarkmode =
3950 let f = enterselector true in
3951 fun () -> f "Document has no bookmarks (yet)";
3954 let color_of_string s =
3955 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3956 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3960 let color_to_string (r, g, b) =
3961 let r = truncate (r *. 256.0)
3962 and g = truncate (g *. 256.0)
3963 and b = truncate (b *. 256.0) in
3964 Printf.sprintf "%d/%d/%d" r g b
3967 let irect_of_string s =
3968 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3971 let irect_to_string (x0,y0,x1,y1) =
3972 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3975 let makecheckers () =
3976 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3977 following to say:
3978 converted by Issac Trotts. July 25, 2002 *)
3979 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3980 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3981 let id = GlTex.gen_texture () in
3982 GlTex.bind_texture `texture_2d id;
3983 GlPix.store (`unpack_alignment 1);
3984 GlTex.image2d image;
3985 List.iter (GlTex.parameter ~target:`texture_2d)
3986 [ `mag_filter `nearest; `min_filter `nearest ];
3990 let setcheckers enabled =
3991 match state.texid with
3992 | None ->
3993 if enabled then state.texid <- Some (makecheckers ())
3995 | Some texid ->
3996 if not enabled
3997 then (
3998 GlTex.delete_texture texid;
3999 state.texid <- None;
4003 let int_of_string_with_suffix s =
4004 let l = String.length s in
4005 let s1, shift =
4006 if l > 1
4007 then
4008 let suffix = Char.lowercase s.[l-1] in
4009 match suffix with
4010 | 'k' -> String.sub s 0 (l-1), 10
4011 | 'm' -> String.sub s 0 (l-1), 20
4012 | 'g' -> String.sub s 0 (l-1), 30
4013 | _ -> s, 0
4014 else s, 0
4016 let n = int_of_string s1 in
4017 let m = n lsl shift in
4018 if m < 0 || m < n
4019 then raise (Failure "value too large")
4020 else m
4023 let string_with_suffix_of_int n =
4024 if n = 0
4025 then "0"
4026 else
4027 let n, s =
4028 if n land ((1 lsl 30) - 1) = 0
4029 then n lsr 30, "G"
4030 else (
4031 if n land ((1 lsl 20) - 1) = 0
4032 then n lsr 20, "M"
4033 else (
4034 if n land ((1 lsl 10) - 1) = 0
4035 then n lsr 10, "K"
4036 else n, ""
4040 let rec loop s n =
4041 let h = n mod 1000 in
4042 let n = n / 1000 in
4043 if n = 0
4044 then string_of_int h ^ s
4045 else (
4046 let s = Printf.sprintf "_%03d%s" h s in
4047 loop s n
4050 loop "" n ^ s;
4053 let defghyllscroll = (40, 8, 32);;
4054 let ghyllscroll_of_string s =
4055 let (n, a, b) as nab =
4056 if s = "default"
4057 then defghyllscroll
4058 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
4060 if n <= a || n <= b || a >= b
4061 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
4062 nab;
4065 let ghyllscroll_to_string ((n, a, b) as nab) =
4066 if nab = defghyllscroll
4067 then "default"
4068 else Printf.sprintf "%d,%d,%d" n a b;
4071 let describe_location () =
4072 let fn = page_of_y state.y in
4073 let ln = page_of_y (state.y + state.winh - state.hscrollh) in
4074 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4075 let percent =
4076 if maxy <= 0
4077 then 100.
4078 else (100. *. (float state.y /. float maxy))
4080 if fn = ln
4081 then
4082 Printf.sprintf "page %d of %d [%.2f%%]"
4083 (fn+1) state.pagecount percent
4084 else
4085 Printf.sprintf
4086 "pages %d-%d of %d [%.2f%%]"
4087 (fn+1) (ln+1) state.pagecount percent
4090 let setpresentationmode v =
4091 let n = page_of_y state.y in
4092 state.anchor <- (n, 0.0, 1.0);
4093 conf.presentation <- v;
4094 if conf.presentation
4095 then (
4096 if not conf.scrollbarinpm
4097 then state.scrollw <- 0;
4099 else state.scrollw <- conf.scrollbw;
4100 represent ();
4103 let enterinfomode =
4104 let btos b = if b then "\xe2\x88\x9a" else "" in
4105 let showextended = ref false in
4106 let leave mode = function
4107 | Confirm -> state.mode <- mode
4108 | Cancel -> state.mode <- mode in
4109 let src =
4110 (object
4111 val mutable m_first_time = true
4112 val mutable m_l = []
4113 val mutable m_a = [||]
4114 val mutable m_prev_uioh = nouioh
4115 val mutable m_prev_mode = View
4117 inherit lvsourcebase
4119 method reset prev_mode prev_uioh =
4120 m_a <- Array.of_list (List.rev m_l);
4121 m_l <- [];
4122 m_prev_mode <- prev_mode;
4123 m_prev_uioh <- prev_uioh;
4124 if m_first_time
4125 then (
4126 let rec loop n =
4127 if n >= Array.length m_a
4128 then ()
4129 else
4130 match m_a.(n) with
4131 | _, _, _, Action _ -> m_active <- n
4132 | _ -> loop (n+1)
4134 loop 0;
4135 m_first_time <- false;
4138 method int name get set =
4139 m_l <-
4140 (name, `int get, 1, Action (
4141 fun u ->
4142 let ondone s =
4143 try set (int_of_string s)
4144 with exn ->
4145 state.text <- Printf.sprintf "bad integer `%s': %s"
4146 s (exntos exn)
4148 state.text <- "";
4149 let te = name ^ ": ", "", None, intentry, ondone, true in
4150 state.mode <- Textentry (te, leave m_prev_mode);
4152 )) :: m_l
4154 method int_with_suffix name get set =
4155 m_l <-
4156 (name, `intws get, 1, Action (
4157 fun u ->
4158 let ondone s =
4159 try set (int_of_string_with_suffix s)
4160 with exn ->
4161 state.text <- Printf.sprintf "bad integer `%s': %s"
4162 s (exntos exn)
4164 state.text <- "";
4165 let te =
4166 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4168 state.mode <- Textentry (te, leave m_prev_mode);
4170 )) :: m_l
4172 method bool ?(offset=1) ?(btos=btos) name get set =
4173 m_l <-
4174 (name, `bool (btos, get), offset, Action (
4175 fun u ->
4176 let v = get () in
4177 set (not v);
4179 )) :: m_l
4181 method color name get set =
4182 m_l <-
4183 (name, `color get, 1, Action (
4184 fun u ->
4185 let invalid = (nan, nan, nan) in
4186 let ondone s =
4187 let c =
4188 try color_of_string s
4189 with exn ->
4190 state.text <- Printf.sprintf "bad color `%s': %s"
4191 s (exntos exn);
4192 invalid
4194 if c <> invalid
4195 then set c;
4197 let te = name ^ ": ", "", None, textentry, ondone, true in
4198 state.text <- color_to_string (get ());
4199 state.mode <- Textentry (te, leave m_prev_mode);
4201 )) :: m_l
4203 method string name get set =
4204 m_l <-
4205 (name, `string get, 1, Action (
4206 fun u ->
4207 let ondone s = set s in
4208 let te = name ^ ": ", "", None, textentry, ondone, true in
4209 state.mode <- Textentry (te, leave m_prev_mode);
4211 )) :: m_l
4213 method colorspace name get set =
4214 m_l <-
4215 (name, `string get, 1, Action (
4216 fun _ ->
4217 let source =
4218 let vals = [| "rgb"; "bgr"; "gray" |] in
4219 (object
4220 inherit lvsourcebase
4222 initializer
4223 m_active <- int_of_colorspace conf.colorspace;
4224 m_first <- 0;
4226 method getitemcount = Array.length vals
4227 method getitem n = (vals.(n), 0)
4228 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4229 ignore (uioh, first, pan, qsearch);
4230 if not cancel then set active;
4231 None
4232 method hasaction _ = true
4233 end)
4235 state.text <- "";
4236 let modehash = findkeyhash conf "info" in
4237 coe (new listview ~source ~trusted:true ~modehash)
4238 )) :: m_l
4240 method fitmodel name get set =
4241 m_l <-
4242 (name, `string get, 1, Action (
4243 fun _ ->
4244 let source =
4245 let vals = [| "fit width"; "proportional"; "fit page" |] in
4246 (object
4247 inherit lvsourcebase
4249 initializer
4250 m_active <- int_of_fitmodel conf.fitmodel;
4251 m_first <- 0;
4253 method getitemcount = Array.length vals
4254 method getitem n = (vals.(n), 0)
4255 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4256 ignore (uioh, first, pan, qsearch);
4257 if not cancel then set active;
4258 None
4259 method hasaction _ = true
4260 end)
4262 state.text <- "";
4263 let modehash = findkeyhash conf "info" in
4264 coe (new listview ~source ~trusted:true ~modehash)
4265 )) :: m_l
4267 method caption s offset =
4268 m_l <- (s, `empty, offset, Noaction) :: m_l
4270 method caption2 s f offset =
4271 m_l <- (s, `string f, offset, Noaction) :: m_l
4273 method getitemcount = Array.length m_a
4275 method getitem n =
4276 let tostr = function
4277 | `int f -> string_of_int (f ())
4278 | `intws f -> string_with_suffix_of_int (f ())
4279 | `string f -> f ()
4280 | `color f -> color_to_string (f ())
4281 | `bool (btos, f) -> btos (f ())
4282 | `empty -> ""
4284 let name, t, offset, _ = m_a.(n) in
4285 ((let s = tostr t in
4286 if String.length s > 0
4287 then Printf.sprintf "%s\t%s" name s
4288 else name),
4289 offset)
4291 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4292 let uiohopt =
4293 if not cancel
4294 then (
4295 m_qsearch <- qsearch;
4296 let uioh =
4297 match m_a.(active) with
4298 | _, _, _, Action f -> f uioh
4299 | _ -> uioh
4301 Some uioh
4303 else None
4305 m_active <- active;
4306 m_first <- first;
4307 m_pan <- pan;
4308 uiohopt
4310 method hasaction n =
4311 match m_a.(n) with
4312 | _, _, _, Action _ -> true
4313 | _ -> false
4314 end)
4316 let rec fillsrc prevmode prevuioh =
4317 let sep () = src#caption "" 0 in
4318 let colorp name get set =
4319 src#string name
4320 (fun () -> color_to_string (get ()))
4321 (fun v ->
4323 let c = color_of_string v in
4324 set c
4325 with exn ->
4326 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4329 let oldmode = state.mode in
4330 let birdseye = isbirdseye state.mode in
4332 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4334 src#bool "presentation mode"
4335 (fun () -> conf.presentation)
4336 (fun v -> setpresentationmode v);
4338 src#bool "ignore case in searches"
4339 (fun () -> conf.icase)
4340 (fun v -> conf.icase <- v);
4342 src#bool "preload"
4343 (fun () -> conf.preload)
4344 (fun v -> conf.preload <- v);
4346 src#bool "highlight links"
4347 (fun () -> conf.hlinks)
4348 (fun v -> conf.hlinks <- v);
4350 src#bool "under info"
4351 (fun () -> conf.underinfo)
4352 (fun v -> conf.underinfo <- v);
4354 src#bool "persistent bookmarks"
4355 (fun () -> conf.savebmarks)
4356 (fun v -> conf.savebmarks <- v);
4358 src#fitmodel "fit model"
4359 (fun () -> fitmodel_to_string conf.fitmodel)
4360 (fun v -> reqlayout conf.angle (fitmodel_of_int v));
4362 src#bool "trim margins"
4363 (fun () -> conf.trimmargins)
4364 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4366 src#bool "persistent location"
4367 (fun () -> conf.jumpback)
4368 (fun v -> conf.jumpback <- v);
4370 sep ();
4371 src#int "inter-page space"
4372 (fun () -> conf.interpagespace)
4373 (fun n ->
4374 conf.interpagespace <- n;
4375 docolumns conf.columns;
4376 let pageno, py =
4377 match state.layout with
4378 | [] -> 0, 0
4379 | l :: _ ->
4380 l.pageno, l.pagey
4382 state.maxy <- calcheight ();
4383 let y = getpagey pageno in
4384 gotoy (y + py)
4387 src#int "page bias"
4388 (fun () -> conf.pagebias)
4389 (fun v -> conf.pagebias <- v);
4391 src#int "scroll step"
4392 (fun () -> conf.scrollstep)
4393 (fun n -> conf.scrollstep <- n);
4395 src#int "horizontal scroll step"
4396 (fun () -> conf.hscrollstep)
4397 (fun v -> conf.hscrollstep <- v);
4399 src#int "auto scroll step"
4400 (fun () ->
4401 match state.autoscroll with
4402 | Some step -> step
4403 | _ -> conf.autoscrollstep)
4404 (fun n ->
4405 if state.autoscroll <> None
4406 then state.autoscroll <- Some n;
4407 conf.autoscrollstep <- n);
4409 src#int "zoom"
4410 (fun () -> truncate (conf.zoom *. 100.))
4411 (fun v -> setzoom ((float v) /. 100.));
4413 src#int "rotation"
4414 (fun () -> conf.angle)
4415 (fun v -> reqlayout v conf.fitmodel);
4417 src#int "scroll bar width"
4418 (fun () -> state.scrollw)
4419 (fun v ->
4420 state.scrollw <- v;
4421 conf.scrollbw <- v;
4422 reshape state.winw state.winh;
4425 src#int "scroll handle height"
4426 (fun () -> conf.scrollh)
4427 (fun v -> conf.scrollh <- v;);
4429 src#int "thumbnail width"
4430 (fun () -> conf.thumbw)
4431 (fun v ->
4432 conf.thumbw <- min 4096 v;
4433 match oldmode with
4434 | Birdseye beye ->
4435 leavebirdseye beye false;
4436 enterbirdseye ()
4437 | _ -> ()
4440 let mode = state.mode in
4441 src#string "columns"
4442 (fun () ->
4443 match conf.columns with
4444 | Csingle _ -> "1"
4445 | Cmulti (multi, _) -> multicolumns_to_string multi
4446 | Csplit (count, _) -> "-" ^ string_of_int count
4448 (fun v ->
4449 let n, a, b = multicolumns_of_string v in
4450 setcolumns mode n a b);
4452 sep ();
4453 src#caption "Presentation mode" 0;
4454 src#bool "scrollbar visible"
4455 (fun () -> conf.scrollbarinpm)
4456 (fun v ->
4457 if v != conf.scrollbarinpm
4458 then (
4459 conf.scrollbarinpm <- v;
4460 if conf.presentation
4461 then (
4462 state.scrollw <- if v then conf.scrollbw else 0;
4463 reshape state.winw state.winh;
4468 sep ();
4469 src#caption "Pixmap cache" 0;
4470 src#int_with_suffix "size (advisory)"
4471 (fun () -> conf.memlimit)
4472 (fun v -> conf.memlimit <- v);
4474 src#caption2 "used"
4475 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4476 (string_with_suffix_of_int state.memused)
4477 (Hashtbl.length state.tilemap)) 1;
4479 sep ();
4480 src#caption "Layout" 0;
4481 src#caption2 "Dimension"
4482 (fun () ->
4483 Printf.sprintf "%dx%d (virtual %dx%d)"
4484 state.winw state.winh
4485 state.w state.maxy)
4487 if conf.debug
4488 then
4489 src#caption2 "Position" (fun () ->
4490 Printf.sprintf "%dx%d" state.x state.y
4492 else
4493 src#caption2 "Position" (fun () -> describe_location ()) 1
4496 sep ();
4497 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4498 "Save these parameters as global defaults at exit"
4499 (fun () -> conf.bedefault)
4500 (fun v -> conf.bedefault <- v)
4503 sep ();
4504 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4505 src#bool ~offset:0 ~btos "Extended parameters"
4506 (fun () -> !showextended)
4507 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4508 if !showextended
4509 then (
4510 src#bool "checkers"
4511 (fun () -> conf.checkers)
4512 (fun v -> conf.checkers <- v; setcheckers v);
4513 src#bool "update cursor"
4514 (fun () -> conf.updatecurs)
4515 (fun v -> conf.updatecurs <- v);
4516 src#bool "verbose"
4517 (fun () -> conf.verbose)
4518 (fun v -> conf.verbose <- v);
4519 src#bool "invert colors"
4520 (fun () -> conf.invert)
4521 (fun v -> conf.invert <- v);
4522 src#bool "max fit"
4523 (fun () -> conf.maxhfit)
4524 (fun v -> conf.maxhfit <- v);
4525 src#bool "redirect stderr"
4526 (fun () -> conf.redirectstderr)
4527 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4528 src#string "uri launcher"
4529 (fun () -> conf.urilauncher)
4530 (fun v -> conf.urilauncher <- v);
4531 src#string "path launcher"
4532 (fun () -> conf.pathlauncher)
4533 (fun v -> conf.pathlauncher <- v);
4534 src#string "tile size"
4535 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4536 (fun v ->
4538 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4539 conf.tilew <- max 64 w;
4540 conf.tileh <- max 64 h;
4541 flushtiles ();
4542 with exn ->
4543 state.text <- Printf.sprintf "bad tile size `%s': %s"
4544 v (exntos exn)
4546 src#int "texture count"
4547 (fun () -> conf.texcount)
4548 (fun v ->
4549 if realloctexts v
4550 then conf.texcount <- v
4551 else showtext '!' " Failed to set texture count please retry later"
4553 src#int "slice height"
4554 (fun () -> conf.sliceheight)
4555 (fun v ->
4556 conf.sliceheight <- v;
4557 wcmd "sliceh %d" conf.sliceheight;
4559 src#int "anti-aliasing level"
4560 (fun () -> conf.aalevel)
4561 (fun v ->
4562 conf.aalevel <- bound v 0 8;
4563 state.anchor <- getanchor ();
4564 opendoc state.path state.password;
4566 src#string "page scroll scaling factor"
4567 (fun () -> string_of_float conf.pgscale)
4568 (fun v ->
4570 let s = float_of_string v in
4571 conf.pgscale <- s
4572 with exn ->
4573 state.text <- Printf.sprintf
4574 "bad page scroll scaling factor `%s': %s" v (exntos exn)
4577 src#int "ui font size"
4578 (fun () -> fstate.fontsize)
4579 (fun v -> setfontsize (bound v 5 100));
4580 src#int "hint font size"
4581 (fun () -> conf.hfsize)
4582 (fun v -> conf.hfsize <- bound v 5 100);
4583 colorp "background color"
4584 (fun () -> conf.bgcolor)
4585 (fun v -> conf.bgcolor <- v);
4586 src#bool "crop hack"
4587 (fun () -> conf.crophack)
4588 (fun v -> conf.crophack <- v);
4589 src#string "trim fuzz"
4590 (fun () -> irect_to_string conf.trimfuzz)
4591 (fun v ->
4593 conf.trimfuzz <- irect_of_string v;
4594 if conf.trimmargins
4595 then settrim true conf.trimfuzz;
4596 with exn ->
4597 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
4599 src#string "throttle"
4600 (fun () ->
4601 match conf.maxwait with
4602 | None -> "show place holder if page is not ready"
4603 | Some time ->
4604 if time = infinity
4605 then "wait for page to fully render"
4606 else
4607 "wait " ^ string_of_float time
4608 ^ " seconds before showing placeholder"
4610 (fun v ->
4612 let f = float_of_string v in
4613 if f <= 0.0
4614 then conf.maxwait <- None
4615 else conf.maxwait <- Some f
4616 with exn ->
4617 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
4619 src#string "ghyll scroll"
4620 (fun () ->
4621 match conf.ghyllscroll with
4622 | None -> ""
4623 | Some nab -> ghyllscroll_to_string nab
4625 (fun v ->
4627 let gs =
4628 if String.length v = 0
4629 then None
4630 else Some (ghyllscroll_of_string v)
4632 conf.ghyllscroll <- gs
4633 with exn ->
4634 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
4636 src#string "selection command"
4637 (fun () -> conf.selcmd)
4638 (fun v -> conf.selcmd <- v);
4639 src#string "synctex command"
4640 (fun () -> conf.stcmd)
4641 (fun v -> conf.stcmd <- v);
4642 src#colorspace "color space"
4643 (fun () -> colorspace_to_string conf.colorspace)
4644 (fun v ->
4645 conf.colorspace <- colorspace_of_int v;
4646 wcmd "cs %d" v;
4647 load state.layout;
4649 if pbousable ()
4650 then
4651 src#bool "use PBO"
4652 (fun () -> conf.usepbo)
4653 (fun v -> conf.usepbo <- v);
4654 src#bool "mouse wheel scrolls pages"
4655 (fun () -> conf.wheelbypage)
4656 (fun v -> conf.wheelbypage <- v);
4659 sep ();
4660 src#caption "Document" 0;
4661 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4662 src#caption2 "Pages"
4663 (fun () -> string_of_int state.pagecount) 1;
4664 src#caption2 "Dimensions"
4665 (fun () -> string_of_int (List.length state.pdims)) 1;
4666 if conf.trimmargins
4667 then (
4668 sep ();
4669 src#caption "Trimmed margins" 0;
4670 src#caption2 "Dimensions"
4671 (fun () -> string_of_int (List.length state.pdims)) 1;
4674 sep ();
4675 src#caption "OpenGL" 0;
4676 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4677 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4678 src#reset prevmode prevuioh;
4680 fun () ->
4681 state.text <- "";
4682 let prevmode = state.mode
4683 and prevuioh = state.uioh in
4684 fillsrc prevmode prevuioh;
4685 let source = (src :> lvsource) in
4686 let modehash = findkeyhash conf "info" in
4687 state.uioh <- coe (object (self)
4688 inherit listview ~source ~trusted:true ~modehash as super
4689 val mutable m_prevmemused = 0
4690 method infochanged = function
4691 | Memused ->
4692 if m_prevmemused != state.memused
4693 then (
4694 m_prevmemused <- state.memused;
4695 G.postRedisplay "memusedchanged";
4697 | Pdim -> G.postRedisplay "pdimchanged"
4698 | Docinfo -> fillsrc prevmode prevuioh
4700 method key key mask =
4701 if not (Wsi.withctrl mask)
4702 then
4703 match key with
4704 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
4705 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
4706 | _ -> super#key key mask
4707 else super#key key mask
4708 end);
4709 G.postRedisplay "info";
4712 let enterhelpmode =
4713 let source =
4714 (object
4715 inherit lvsourcebase
4716 method getitemcount = Array.length state.help
4717 method getitem n =
4718 let s, l, _ = state.help.(n) in
4719 (s, l)
4721 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4722 let optuioh =
4723 if not cancel
4724 then (
4725 m_qsearch <- qsearch;
4726 match state.help.(active) with
4727 | _, _, Action f -> Some (f uioh)
4728 | _ -> Some (uioh)
4730 else None
4732 m_active <- active;
4733 m_first <- first;
4734 m_pan <- pan;
4735 optuioh
4737 method hasaction n =
4738 match state.help.(n) with
4739 | _, _, Action _ -> true
4740 | _ -> false
4742 initializer
4743 m_active <- -1
4744 end)
4745 in fun () ->
4746 let modehash = findkeyhash conf "help" in
4747 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4748 G.postRedisplay "help";
4751 let entermsgsmode =
4752 let msgsource =
4753 let re = Str.regexp "[\r\n]" in
4754 (object
4755 inherit lvsourcebase
4756 val mutable m_items = [||]
4758 method getitemcount = 1 + Array.length m_items
4760 method getitem n =
4761 if n = 0
4762 then "[Clear]", 0
4763 else m_items.(n-1), 0
4765 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4766 ignore uioh;
4767 if not cancel
4768 then (
4769 if active = 0
4770 then Buffer.clear state.errmsgs;
4771 m_qsearch <- qsearch;
4773 m_active <- active;
4774 m_first <- first;
4775 m_pan <- pan;
4776 None
4778 method hasaction n =
4779 n = 0
4781 method reset =
4782 state.newerrmsgs <- false;
4783 let l = Str.split re (Buffer.contents state.errmsgs) in
4784 m_items <- Array.of_list l
4786 initializer
4787 m_active <- 0
4788 end)
4789 in fun () ->
4790 state.text <- "";
4791 msgsource#reset;
4792 let source = (msgsource :> lvsource) in
4793 let modehash = findkeyhash conf "listview" in
4794 state.uioh <- coe (object
4795 inherit listview ~source ~trusted:false ~modehash as super
4796 method display =
4797 if state.newerrmsgs
4798 then msgsource#reset;
4799 super#display
4800 end);
4801 G.postRedisplay "msgs";
4804 let quickbookmark ?title () =
4805 match state.layout with
4806 | [] -> ()
4807 | l :: _ ->
4808 let title =
4809 match title with
4810 | None ->
4811 let sec = Unix.gettimeofday () in
4812 let tm = Unix.localtime sec in
4813 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4814 (l.pageno+1)
4815 tm.Unix.tm_mday
4816 tm.Unix.tm_mon
4817 (tm.Unix.tm_year + 1900)
4818 tm.Unix.tm_hour
4819 tm.Unix.tm_min
4820 | Some title -> title
4822 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4825 let setautoscrollspeed step goingdown =
4826 let incr = max 1 ((abs step) / 2) in
4827 let incr = if goingdown then incr else -incr in
4828 let astep = step + incr in
4829 state.autoscroll <- Some astep;
4832 let gotounder = function
4833 | Ulinkgoto (pageno, top) ->
4834 if pageno >= 0
4835 then (
4836 addnav ();
4837 gotopage1 pageno top;
4840 | Ulinkuri s ->
4841 gotouri s
4843 | Uremote (filename, pageno) ->
4844 let path =
4845 if Sys.file_exists filename
4846 then filename
4847 else
4848 let dir = Filename.dirname state.path in
4849 let path = Filename.concat dir filename in
4850 if Sys.file_exists path
4851 then path
4852 else ""
4854 if String.length path > 0
4855 then (
4856 let anchor = getanchor () in
4857 let ranchor = state.path, state.password, anchor in
4858 state.anchor <- (pageno, 0.0, 0.0);
4859 state.ranchors <- ranchor :: state.ranchors;
4860 opendoc path "";
4862 else showtext '!' ("Could not find " ^ filename)
4864 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4867 let canpan () =
4868 match conf.columns with
4869 | Csplit _ -> true
4870 | _ -> state.x != 0 || conf.zoom > 1.0
4873 let existsinrow pageno (columns, coverA, coverB) p =
4874 let last = ((pageno - coverA) mod columns) + columns in
4875 let rec any = function
4876 | [] -> false
4877 | l :: rest ->
4878 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4879 then p l
4880 else (
4881 if not (p l)
4882 then (if l.pageno = last then false else any rest)
4883 else true
4886 any state.layout
4889 let nextpage () =
4890 match state.layout with
4891 | [] ->
4892 let pageno = page_of_y state.y in
4893 gotoghyll (getpagey (pageno+1))
4894 | l :: rest ->
4895 match conf.columns with
4896 | Csingle _ ->
4897 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4898 then
4899 let y = clamp (pgscale state.winh) in
4900 gotoghyll y
4901 else
4902 let pageno = min (l.pageno+1) (state.pagecount-1) in
4903 gotoghyll (getpagey pageno)
4904 | Cmulti ((c, _, _) as cl, _) ->
4905 if conf.presentation
4906 && (existsinrow l.pageno cl
4907 (fun l -> l.pageh > l.pagey + l.pagevh))
4908 then
4909 let y = clamp (pgscale state.winh) in
4910 gotoghyll y
4911 else
4912 let pageno = min (l.pageno+c) (state.pagecount-1) in
4913 gotoghyll (getpagey pageno)
4914 | Csplit (n, _) ->
4915 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4916 then
4917 let pagey, pageh = getpageyh l.pageno in
4918 let pagey = pagey + pageh * l.pagecol in
4919 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4920 gotoghyll (pagey + pageh + ips)
4923 let prevpage () =
4924 match state.layout with
4925 | [] ->
4926 let pageno = page_of_y state.y in
4927 gotoghyll (getpagey (pageno-1))
4928 | l :: _ ->
4929 match conf.columns with
4930 | Csingle _ ->
4931 if conf.presentation && l.pagey != 0
4932 then
4933 gotoghyll (clamp (pgscale ~-(state.winh)))
4934 else
4935 let pageno = max 0 (l.pageno-1) in
4936 gotoghyll (getpagey pageno)
4937 | Cmulti ((c, _, coverB) as cl, _) ->
4938 if conf.presentation &&
4939 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4940 then
4941 gotoghyll (clamp (pgscale ~-(state.winh)))
4942 else
4943 let decr =
4944 if l.pageno = state.pagecount - coverB
4945 then 1
4946 else c
4948 let pageno = max 0 (l.pageno-decr) in
4949 gotoghyll (getpagey pageno)
4950 | Csplit (n, _) ->
4951 let y =
4952 if l.pagecol = 0
4953 then
4954 if l.pageno = 0
4955 then l.pagey
4956 else
4957 let pageno = max 0 (l.pageno-1) in
4958 let pagey, pageh = getpageyh pageno in
4959 pagey + (n-1)*pageh
4960 else
4961 let pagey, pageh = getpageyh l.pageno in
4962 pagey + pageh * (l.pagecol-1) - conf.interpagespace
4964 gotoghyll y
4967 let viewkeyboard key mask =
4968 let enttext te =
4969 let mode = state.mode in
4970 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4971 state.text <- "";
4972 enttext ();
4973 G.postRedisplay "view:enttext"
4975 let ctrl = Wsi.withctrl mask in
4976 let key =
4977 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4979 match key with
4980 | 81 -> (* Q *)
4981 exit 0
4983 | 0xff63 -> (* insert *)
4984 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4985 then (
4986 state.mode <- LinkNav (Ltgendir 0);
4987 gotoy state.y;
4989 else showtext '!' "Keyboard link navigation does not work under rotation"
4991 | 0xff1b | 113 -> (* escape / q *)
4992 begin match state.mstate with
4993 | Mzoomrect _ ->
4994 state.mstate <- Mnone;
4995 Wsi.setcursor Wsi.CURSOR_INHERIT;
4996 G.postRedisplay "kill zoom rect";
4997 | _ ->
4998 begin match state.mode with
4999 | LinkNav _ ->
5000 state.mode <- View;
5001 G.postRedisplay "esc leave linknav"
5002 | _ ->
5003 match state.ranchors with
5004 | [] -> raise Quit
5005 | (path, password, anchor) :: rest ->
5006 state.ranchors <- rest;
5007 state.anchor <- anchor;
5008 opendoc path password
5009 end;
5010 end;
5012 | 0xff08 -> (* backspace *)
5013 gotoghyll (getnav ~-1)
5015 | 111 -> (* o *)
5016 enteroutlinemode ()
5018 | 117 -> (* u *)
5019 state.rects <- [];
5020 state.text <- "";
5021 G.postRedisplay "dehighlight";
5023 | 47 | 63 -> (* / ? *)
5024 let ondone isforw s =
5025 cbput state.hists.pat s;
5026 state.searchpattern <- s;
5027 search s isforw
5029 let s = String.create 1 in
5030 s.[0] <- Char.chr key;
5031 enttext (s, "", Some (onhist state.hists.pat),
5032 textentry, ondone (key = 47), true)
5034 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5035 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5036 setzoom (conf.zoom +. incr)
5038 | 43 | 0xffab -> (* + *)
5039 let ondone s =
5040 let n =
5041 try int_of_string s with exc ->
5042 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5043 max_int
5045 if n != max_int
5046 then (
5047 conf.pagebias <- n;
5048 state.text <- "page bias is now " ^ string_of_int n;
5051 enttext ("page bias: ", "", None, intentry, ondone, true)
5053 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5054 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5055 setzoom (max 0.01 (conf.zoom -. decr))
5057 | 45 | 0xffad -> (* - *)
5058 let ondone msg = state.text <- msg in
5059 enttext (
5060 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
5061 optentry state.mode, ondone, true
5064 | 48 when ctrl -> (* ctrl-0 *)
5065 if conf.zoom = 1.0
5066 then (
5067 state.x <- 0;
5068 state.hscrollh <-
5069 if state.w <= state.winw - state.scrollw
5070 then 0
5071 else state.scrollw
5073 gotoy state.y
5075 else setzoom 1.0
5077 | 49 | 50 when ctrl -> (* ctrl-1/2 *)
5078 let cols =
5079 match conf.columns with
5080 | Csingle _ | Cmulti _ -> 1
5081 | Csplit (n, _) -> n
5083 let h = state.winh -
5084 conf.interpagespace lsl (if conf.presentation then 1 else 0)
5086 let zoom = zoomforh state.winw h state.scrollw cols in
5087 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5088 then setzoom zoom
5090 | 51 when ctrl -> (* ctrl-3 *)
5091 let fm =
5092 match conf.fitmodel with
5093 | FitWidth -> FitProportional
5094 | FitProportional -> FitPage
5095 | FitPage -> FitWidth
5097 state.text <- "fit model " ^ fitmodel_to_string fm;
5098 reqlayout conf.angle fm
5100 | 0xffc6 -> (* f9 *)
5101 togglebirdseye ()
5103 | 57 when ctrl -> (* ctrl-9 *)
5104 togglebirdseye ()
5106 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5107 when not ctrl -> (* 0..9 *)
5108 let ondone s =
5109 let n =
5110 try int_of_string s with exc ->
5111 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5114 if n >= 0
5115 then (
5116 addnav ();
5117 cbput state.hists.pag (string_of_int n);
5118 gotopage1 (n + conf.pagebias - 1) 0;
5121 let pageentry text key =
5122 match Char.unsafe_chr key with
5123 | 'g' -> TEdone text
5124 | _ -> intentry text key
5126 let text = "x" in text.[0] <- Char.chr key;
5127 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5129 | 98 -> (* b *)
5130 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
5131 reshape state.winw state.winh;
5133 | 108 -> (* l *)
5134 conf.hlinks <- not conf.hlinks;
5135 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5136 G.postRedisplay "toggle highlightlinks";
5138 | 70 -> (* F *)
5139 state.glinks <- true;
5140 let mode = state.mode in
5141 state.mode <- Textentry (
5142 (":", "", None, linknentry, linkndone gotounder, false),
5143 (fun _ ->
5144 state.glinks <- false;
5145 state.mode <- mode)
5147 state.text <- "";
5148 G.postRedisplay "view:linkent(F)"
5150 | 121 -> (* y *)
5151 state.glinks <- true;
5152 let mode = state.mode in
5153 state.mode <- Textentry (
5154 (":", "", None, linknentry, linkndone (fun under ->
5155 match Ne.pipe () with
5156 | Ne.Exn exn ->
5157 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
5158 | Ne.Res (r, w) ->
5159 let popened =
5160 try popen conf.selcmd [r, 0; w, -1]; true
5161 with exn ->
5162 showtext '!'
5163 (Printf.sprintf "failed to execute %s: %s"
5164 conf.selcmd (exntos exn));
5165 false
5167 let clo cap fd =
5168 Ne.clo fd (fun msg ->
5169 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
5172 let s = undertext under in
5173 if popened
5174 then
5175 (try
5176 let l = String.length s in
5177 let n = tempfailureretry (Unix.write w s 0) l in
5178 if n != l
5179 then
5180 showtext '!'
5181 (Printf.sprintf
5182 "failed to write %d characters to sel pipe, wrote %d"
5185 with exn ->
5186 showtext '!'
5187 (Printf.sprintf "failed to write to sel pipe: %s"
5188 (exntos exn)
5191 else dolog "%s" s;
5192 clo "pipe/r" r;
5193 clo "pipe/w" w;
5194 ), false
5196 fun _ ->
5197 state.glinks <- false;
5198 state.mode <- mode
5200 state.text <- "";
5201 G.postRedisplay "view:linkent"
5203 | 97 -> (* a *)
5204 begin match state.autoscroll with
5205 | Some step ->
5206 conf.autoscrollstep <- step;
5207 state.autoscroll <- None
5208 | None ->
5209 if conf.autoscrollstep = 0
5210 then state.autoscroll <- Some 1
5211 else state.autoscroll <- Some conf.autoscrollstep
5214 | 112 when ctrl -> (* ctrl-p *)
5215 launchpath ()
5217 | 80 -> (* P *)
5218 setpresentationmode (not conf.presentation);
5219 showtext ' ' ("presentation mode " ^
5220 if conf.presentation then "on" else "off");
5222 | 102 -> (* f *)
5223 if List.mem Wsi.Fullscreen state.winstate
5224 then Wsi.reshape conf.cwinw conf.cwinh
5225 else Wsi.fullscreen ()
5227 | 112 | 78 -> (* p|N *)
5228 search state.searchpattern false
5230 | 110 | 0xffc0 -> (* n|F3 *)
5231 search state.searchpattern true
5233 | 116 -> (* t *)
5234 begin match state.layout with
5235 | [] -> ()
5236 | l :: _ ->
5237 gotoghyll (getpagey l.pageno)
5240 | 32 -> (* space *)
5241 nextpage ()
5243 | 0xff9f | 0xffff -> (* delete *)
5244 prevpage ()
5246 | 61 -> (* = *)
5247 showtext ' ' (describe_location ());
5249 | 119 -> (* w *)
5250 begin match state.layout with
5251 | [] -> ()
5252 | l :: _ ->
5253 Wsi.reshape (l.pagew + state.scrollw) l.pageh;
5254 G.postRedisplay "w"
5257 | 39 -> (* ' *)
5258 enterbookmarkmode ()
5260 | 104 | 0xffbe -> (* h|F1 *)
5261 enterhelpmode ()
5263 | 105 -> (* i *)
5264 enterinfomode ()
5266 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5267 entermsgsmode ()
5269 | 109 -> (* m *)
5270 let ondone s =
5271 match state.layout with
5272 | l :: _ ->
5273 if String.length s > 0
5274 then
5275 state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5276 | _ -> ()
5278 enttext ("bookmark: ", "", None, textentry, ondone, true)
5280 | 126 -> (* ~ *)
5281 quickbookmark ();
5282 showtext ' ' "Quick bookmark added";
5284 | 122 -> (* z *)
5285 begin match state.layout with
5286 | l :: _ ->
5287 let rect = getpdimrect l.pagedimno in
5288 let w, h =
5289 if conf.crophack
5290 then
5291 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5292 truncate (1.2 *. (rect.(3) -. rect.(0))))
5293 else
5294 (truncate (rect.(1) -. rect.(0)),
5295 truncate (rect.(3) -. rect.(0)))
5297 let w = truncate ((float w)*.conf.zoom)
5298 and h = truncate ((float h)*.conf.zoom) in
5299 if w != 0 && h != 0
5300 then (
5301 state.anchor <- getanchor ();
5302 Wsi.reshape (w + state.scrollw) (h + conf.interpagespace)
5304 G.postRedisplay "z";
5306 | [] -> ()
5309 | 60 | 62 -> (* < > *)
5310 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
5312 | 91 | 93 -> (* [ ] *)
5313 conf.colorscale <-
5314 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5316 G.postRedisplay "brightness";
5318 | 99 when state.mode = View -> (* c *)
5319 let (c, a, b), z =
5320 match state.prevcolumns with
5321 | None -> (1, 0, 0), 1.0
5322 | Some (columns, z) ->
5323 let cab =
5324 match columns with
5325 | Csplit (c, _) -> -c, 0, 0
5326 | Cmulti ((c, a, b), _) -> c, a, b
5327 | Csingle _ -> 1, 0, 0
5329 cab, z
5331 setcolumns View c a b;
5332 setzoom z;
5334 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5335 setzoom state.prevzoom
5337 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5338 begin match state.autoscroll with
5339 | None ->
5340 begin match state.mode with
5341 | Birdseye beye -> upbirdseye 1 beye
5342 | _ ->
5343 if ctrl
5344 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5345 else (
5346 if not (Wsi.withshift mask) && conf.presentation
5347 then prevpage ()
5348 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5351 | Some n ->
5352 setautoscrollspeed n false
5355 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5356 begin match state.autoscroll with
5357 | None ->
5358 begin match state.mode with
5359 | Birdseye beye -> downbirdseye 1 beye
5360 | _ ->
5361 if ctrl
5362 then gotoy_and_clear_text (clamp (state.winh/2))
5363 else (
5364 if not (Wsi.withshift mask) && conf.presentation
5365 then nextpage ()
5366 else gotoy_and_clear_text (clamp conf.scrollstep)
5369 | Some n ->
5370 setautoscrollspeed n true
5373 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5374 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5375 if canpan ()
5376 then
5377 let dx =
5378 if ctrl
5379 then state.winw / 2
5380 else conf.hscrollstep
5382 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5383 state.x <- state.x + dx;
5384 gotoy_and_clear_text state.y
5385 else (
5386 state.text <- "";
5387 G.postRedisplay "lef/right"
5390 | 0xff55 | 0xff9a -> (* (kp) prior *)
5391 let y =
5392 if ctrl
5393 then
5394 match state.layout with
5395 | [] -> state.y
5396 | l :: _ -> state.y - l.pagey
5397 else
5398 clamp (pgscale (-state.winh))
5400 gotoghyll y
5402 | 0xff56 | 0xff9b -> (* (kp) next *)
5403 let y =
5404 if ctrl
5405 then
5406 match List.rev state.layout with
5407 | [] -> state.y
5408 | l :: _ -> getpagey l.pageno
5409 else
5410 clamp (pgscale state.winh)
5412 gotoghyll y
5414 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5415 gotoghyll 0
5416 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5417 gotoghyll (clamp state.maxy)
5419 | 0xff53 | 0xff98
5420 when Wsi.withalt mask -> (* alt-(kp) right *)
5421 gotoghyll (getnav 1)
5422 | 0xff51 | 0xff96
5423 when Wsi.withalt mask -> (* alt-(kp) left *)
5424 gotoghyll (getnav ~-1)
5426 | 114 -> (* r *)
5427 reload ()
5429 | 118 when conf.debug -> (* v *)
5430 state.rects <- [];
5431 List.iter (fun l ->
5432 match getopaque l.pageno with
5433 | None -> ()
5434 | Some opaque ->
5435 let x0, y0, x1, y1 = pagebbox opaque in
5436 let a,b = float x0, float y0 in
5437 let c,d = float x1, float y0 in
5438 let e,f = float x1, float y1 in
5439 let h,j = float x0, float y1 in
5440 let rect = (a,b,c,d,e,f,h,j) in
5441 debugrect rect;
5442 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5443 ) state.layout;
5444 G.postRedisplay "v";
5446 | _ ->
5447 vlog "huh? %s" (Wsi.keyname key)
5450 let linknavkeyboard key mask linknav =
5451 let getpage pageno =
5452 let rec loop = function
5453 | [] -> None
5454 | l :: _ when l.pageno = pageno -> Some l
5455 | _ :: rest -> loop rest
5456 in loop state.layout
5458 let doexact (pageno, n) =
5459 match getopaque pageno, getpage pageno with
5460 | Some opaque, Some l ->
5461 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5462 then
5463 let under = getlink opaque n in
5464 G.postRedisplay "link gotounder";
5465 gotounder under;
5466 state.mode <- View;
5467 else
5468 let opt, dir =
5469 match key with
5470 | 0xff50 -> (* home *)
5471 Some (findlink opaque LDfirst), -1
5473 | 0xff57 -> (* end *)
5474 Some (findlink opaque LDlast), 1
5476 | 0xff51 -> (* left *)
5477 Some (findlink opaque (LDleft n)), -1
5479 | 0xff53 -> (* right *)
5480 Some (findlink opaque (LDright n)), 1
5482 | 0xff52 -> (* up *)
5483 Some (findlink opaque (LDup n)), -1
5485 | 0xff54 -> (* down *)
5486 Some (findlink opaque (LDdown n)), 1
5488 | _ -> None, 0
5490 let pwl l dir =
5491 begin match findpwl l.pageno dir with
5492 | Pwlnotfound -> ()
5493 | Pwl pageno ->
5494 let notfound dir =
5495 state.mode <- LinkNav (Ltgendir dir);
5496 let y, h = getpageyh pageno in
5497 let y =
5498 if dir < 0
5499 then y + h - state.winh
5500 else y
5502 gotoy y
5504 begin match getopaque pageno, getpage pageno with
5505 | Some opaque, Some _ ->
5506 let link =
5507 let ld = if dir > 0 then LDfirst else LDlast in
5508 findlink opaque ld
5510 begin match link with
5511 | Lfound m ->
5512 showlinktype (getlink opaque m);
5513 state.mode <- LinkNav (Ltexact (pageno, m));
5514 G.postRedisplay "linknav jpage";
5515 | _ -> notfound dir
5516 end;
5517 | _ -> notfound dir
5518 end;
5519 end;
5521 begin match opt with
5522 | Some Lnotfound -> pwl l dir;
5523 | Some (Lfound m) ->
5524 if m = n
5525 then pwl l dir
5526 else (
5527 let _, y0, _, y1 = getlinkrect opaque m in
5528 if y0 < l.pagey
5529 then gotopage1 l.pageno y0
5530 else (
5531 let d = fstate.fontsize + 1 in
5532 if y1 - l.pagey > l.pagevh - d
5533 then gotopage1 l.pageno (y1 - state.winh - state.hscrollh + d)
5534 else G.postRedisplay "linknav";
5536 showlinktype (getlink opaque m);
5537 state.mode <- LinkNav (Ltexact (l.pageno, m));
5540 | None -> viewkeyboard key mask
5541 end;
5542 | _ -> viewkeyboard key mask
5544 if key = 0xff63
5545 then (
5546 state.mode <- View;
5547 G.postRedisplay "leave linknav"
5549 else
5550 match linknav with
5551 | Ltgendir _ -> viewkeyboard key mask
5552 | Ltexact exact -> doexact exact
5555 let keyboard key mask =
5556 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5557 then wcmd "interrupt"
5558 else state.uioh <- state.uioh#key key mask
5561 let birdseyekeyboard key mask
5562 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5563 let incr =
5564 match conf.columns with
5565 | Csingle _ -> 1
5566 | Cmulti ((c, _, _), _) -> c
5567 | Csplit _ -> failwith "bird's eye split mode"
5569 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
5570 match key with
5571 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5572 let y, h = getpageyh pageno in
5573 let top = (state.winh - h) / 2 in
5574 gotoy (max 0 (y - top))
5575 | 0xff0d (* enter *)
5576 | 0xff8d -> leavebirdseye beye false (* kp enter *)
5577 | 0xff1b -> leavebirdseye beye true (* escape *)
5578 | 0xff52 -> upbirdseye incr beye (* up *)
5579 | 0xff54 -> downbirdseye incr beye (* down *)
5580 | 0xff51 -> upbirdseye 1 beye (* left *)
5581 | 0xff53 -> downbirdseye 1 beye (* right *)
5583 | 0xff55 -> (* prior *)
5584 begin match state.layout with
5585 | l :: _ ->
5586 if l.pagey != 0
5587 then (
5588 state.mode <- Birdseye (
5589 oconf, leftx, l.pageno, hooverpageno, anchor
5591 gotopage1 l.pageno 0;
5593 else (
5594 let layout = layout (state.y-state.winh) (pgh state.layout) in
5595 match layout with
5596 | [] -> gotoy (clamp (-state.winh))
5597 | l :: _ ->
5598 state.mode <- Birdseye (
5599 oconf, leftx, l.pageno, hooverpageno, anchor
5601 gotopage1 l.pageno 0
5604 | [] -> gotoy (clamp (-state.winh))
5605 end;
5607 | 0xff56 -> (* next *)
5608 begin match List.rev state.layout with
5609 | l :: _ ->
5610 let layout = layout (state.y + (pgh state.layout)) state.winh in
5611 begin match layout with
5612 | [] ->
5613 let incr = l.pageh - l.pagevh in
5614 if incr = 0
5615 then (
5616 state.mode <-
5617 Birdseye (
5618 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5620 G.postRedisplay "birdseye pagedown";
5622 else gotoy (clamp (incr + conf.interpagespace*2));
5624 | l :: _ ->
5625 state.mode <-
5626 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5627 gotopage1 l.pageno 0;
5630 | [] -> gotoy (clamp state.winh)
5631 end;
5633 | 0xff50 -> (* home *)
5634 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5635 gotopage1 0 0
5637 | 0xff57 -> (* end *)
5638 let pageno = state.pagecount - 1 in
5639 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5640 if not (pagevisible state.layout pageno)
5641 then
5642 let h =
5643 match List.rev state.pdims with
5644 | [] -> state.winh
5645 | (_, _, h, _) :: _ -> h
5647 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
5648 else G.postRedisplay "birdseye end";
5649 | _ -> viewkeyboard key mask
5652 let drawpage l linkindexbase =
5653 let color =
5654 match state.mode with
5655 | Textentry _ -> scalecolor 0.4
5656 | LinkNav _
5657 | View -> scalecolor 1.0
5658 | Birdseye (_, _, pageno, hooverpageno, _) ->
5659 if l.pageno = hooverpageno
5660 then scalecolor 0.9
5661 else (
5662 if l.pageno = pageno
5663 then scalecolor 1.0
5664 else scalecolor 0.8
5667 drawtiles l color;
5668 begin match getopaque l.pageno with
5669 | Some opaque ->
5670 if tileready l l.pagex l.pagey
5671 then
5672 let x = l.pagedispx - l.pagex
5673 and y = l.pagedispy - l.pagey in
5674 let hlmask =
5675 match conf.columns with
5676 | Csingle _ | Cmulti _ ->
5677 (if conf.hlinks then 1 else 0)
5678 + (if state.glinks
5679 && not (isbirdseye state.mode) then 2 else 0)
5680 | _ -> 0
5682 let s =
5683 match state.mode with
5684 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5685 | _ -> ""
5687 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5688 else 0
5690 | _ -> 0
5691 end;
5694 let scrollindicator () =
5695 let sbw, ph, sh = state.uioh#scrollph in
5696 let sbh, pw, sw = state.uioh#scrollpw in
5698 GlDraw.color (0.64, 0.64, 0.64);
5699 GlDraw.rect
5700 (float (state.winw - sbw), 0.)
5701 (float state.winw, float state.winh)
5703 GlDraw.rect
5704 (0., float (state.winh - sbh))
5705 (float (state.winw - state.scrollw - 1), float state.winh)
5707 GlDraw.color (0.0, 0.0, 0.0);
5709 GlDraw.rect
5710 (float (state.winw - sbw), ph)
5711 (float state.winw, ph +. sh)
5713 GlDraw.rect
5714 (pw, float (state.winh - sbh))
5715 (pw +. sw, float state.winh)
5719 let showsel () =
5720 match state.mstate with
5721 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5724 | Msel ((x0, y0), (x1, y1)) ->
5725 let rec loop = function
5726 | l :: ls ->
5727 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5728 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5729 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5730 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5731 then
5732 match getopaque l.pageno with
5733 | Some opaque ->
5734 let x0, y0 = pagetranslatepoint l x0 y0 in
5735 let x1, y1 = pagetranslatepoint l x1 y1 in
5736 seltext opaque (x0, y0, x1, y1);
5737 | _ -> ()
5738 else loop ls
5739 | [] -> ()
5741 loop state.layout
5744 let showrects rects =
5745 Gl.enable `blend;
5746 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5747 GlDraw.polygon_mode `both `fill;
5748 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5749 List.iter
5750 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5751 List.iter (fun l ->
5752 if l.pageno = pageno
5753 then (
5754 let dx = float (l.pagedispx - l.pagex) in
5755 let dy = float (l.pagedispy - l.pagey) in
5756 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5757 GlDraw.begins `quads;
5759 GlDraw.vertex2 (x0+.dx, y0+.dy);
5760 GlDraw.vertex2 (x1+.dx, y1+.dy);
5761 GlDraw.vertex2 (x2+.dx, y2+.dy);
5762 GlDraw.vertex2 (x3+.dx, y3+.dy);
5764 GlDraw.ends ();
5766 ) state.layout
5767 ) rects
5769 Gl.disable `blend;
5772 let display () =
5773 GlClear.color (scalecolor2 conf.bgcolor);
5774 GlClear.clear [`color];
5775 let rec loop linkindexbase = function
5776 | l :: rest ->
5777 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5778 loop linkindexbase rest
5779 | [] -> ()
5781 loop 0 state.layout;
5782 let rects =
5783 match state.mode with
5784 | LinkNav (Ltexact (pageno, linkno)) ->
5785 begin match getopaque pageno with
5786 | Some opaque ->
5787 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5788 (pageno, 5, (
5789 float x0, float y0,
5790 float x1, float y0,
5791 float x1, float y1,
5792 float x0, float y1)
5793 ) :: state.rects
5794 | None -> state.rects
5796 | _ -> state.rects
5798 showrects rects;
5799 showsel ();
5800 state.uioh#display;
5801 begin match state.mstate with
5802 | Mzoomrect ((x0, y0), (x1, y1)) ->
5803 Gl.enable `blend;
5804 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5805 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5806 GlDraw.rect (float x0, float y0)
5807 (float x1, float y1);
5808 Gl.disable `blend;
5809 | _ -> ()
5810 end;
5811 enttext ();
5812 scrollindicator ();
5813 Wsi.swapb ();
5816 let zoomrect x y x1 y1 =
5817 let x0 = min x x1
5818 and x1 = max x x1
5819 and y0 = min y y1 in
5820 gotoy (state.y + y0);
5821 state.anchor <- getanchor ();
5822 let zoom = (float state.winw *. conf.zoom) /. float (x1 - x0) in
5823 let margin =
5824 if state.w < state.winw - state.scrollw
5825 then (state.winw - state.scrollw - state.w) / 2
5826 else 0
5828 state.x <- (state.x + margin) - x0;
5829 setzoom zoom;
5830 Wsi.setcursor Wsi.CURSOR_INHERIT;
5831 state.mstate <- Mnone;
5834 let scrollx x =
5835 let winw = state.winw - state.scrollw - 1 in
5836 let s = float x /. float winw in
5837 let destx = truncate (float (state.w + winw) *. s) in
5838 state.x <- winw - destx;
5839 gotoy_and_clear_text state.y;
5840 state.mstate <- Mscrollx;
5843 let scrolly y =
5844 let s = float y /. float state.winh in
5845 let desty = truncate (float (state.maxy - state.winh) *. s) in
5846 gotoy_and_clear_text desty;
5847 state.mstate <- Mscrolly;
5850 let viewmouse button down x y mask =
5851 match button with
5852 | n when (n == 4 || n == 5) && not down ->
5853 if Wsi.withctrl mask
5854 then (
5855 match state.mstate with
5856 | Mzoom (oldn, i) ->
5857 if oldn = n
5858 then (
5859 if i = 2
5860 then
5861 let incr =
5862 match n with
5863 | 5 ->
5864 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5865 | _ ->
5866 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5868 let zoom = conf.zoom -. incr in
5869 setzoom zoom;
5870 state.mstate <- Mzoom (n, 0);
5871 else
5872 state.mstate <- Mzoom (n, i+1);
5874 else state.mstate <- Mzoom (n, 0)
5876 | _ -> state.mstate <- Mzoom (n, 0)
5878 else (
5879 match state.autoscroll with
5880 | Some step -> setautoscrollspeed step (n=4)
5881 | None ->
5882 if conf.wheelbypage || conf.presentation
5883 then (
5884 if n = 4
5885 then prevpage ()
5886 else nextpage ()
5888 else
5889 let incr =
5890 if n = 4
5891 then -conf.scrollstep
5892 else conf.scrollstep
5894 let incr = incr * 2 in
5895 let y = clamp incr in
5896 gotoy_and_clear_text y
5899 | n when (n = 6 || n = 7) && not down && canpan () ->
5900 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5901 gotoy_and_clear_text state.y
5903 | 1 when Wsi.withshift mask ->
5904 state.mstate <- Mnone;
5905 if not down
5906 then (
5907 match unproject x y with
5908 | Some (pageno, ux, uy) ->
5909 let cmd = Printf.sprintf
5910 "%s %s %d %d %d"
5911 conf.stcmd state.path pageno ux uy
5913 popen cmd []
5914 | None -> ()
5917 | 1 when Wsi.withctrl mask ->
5918 if down
5919 then (
5920 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5921 state.mstate <- Mpan (x, y)
5923 else
5924 state.mstate <- Mnone
5926 | 3 ->
5927 if down
5928 then (
5929 Wsi.setcursor Wsi.CURSOR_CYCLE;
5930 let p = (x, y) in
5931 state.mstate <- Mzoomrect (p, p)
5933 else (
5934 match state.mstate with
5935 | Mzoomrect ((x0, y0), _) ->
5936 if abs (x-x0) > 10 && abs (y - y0) > 10
5937 then zoomrect x0 y0 x y
5938 else (
5939 state.mstate <- Mnone;
5940 Wsi.setcursor Wsi.CURSOR_INHERIT;
5941 G.postRedisplay "kill accidental zoom rect";
5943 | _ ->
5944 Wsi.setcursor Wsi.CURSOR_INHERIT;
5945 state.mstate <- Mnone
5948 | 1 when x > state.winw - state.scrollw ->
5949 if down
5950 then
5951 let _, position, sh = state.uioh#scrollph in
5952 if y > truncate position && y < truncate (position +. sh)
5953 then state.mstate <- Mscrolly
5954 else scrolly y
5955 else
5956 state.mstate <- Mnone
5958 | 1 when y > state.winh - state.hscrollh ->
5959 if down
5960 then
5961 let _, position, sw = state.uioh#scrollpw in
5962 if x > truncate position && x < truncate (position +. sw)
5963 then state.mstate <- Mscrollx
5964 else scrollx x
5965 else
5966 state.mstate <- Mnone
5968 | 1 ->
5969 let dest = if down then getunder x y else Unone in
5970 begin match dest with
5971 | Ulinkgoto _
5972 | Ulinkuri _
5973 | Uremote _
5974 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5975 gotounder dest
5977 | Unone when down ->
5978 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5979 state.mstate <- Mpan (x, y);
5981 | Unone | Utext _ ->
5982 if down
5983 then (
5984 if conf.angle mod 360 = 0
5985 then (
5986 state.mstate <- Msel ((x, y), (x, y));
5987 G.postRedisplay "mouse select";
5990 else (
5991 match state.mstate with
5992 | Mnone -> ()
5994 | Mzoom _ | Mscrollx | Mscrolly ->
5995 state.mstate <- Mnone
5997 | Mzoomrect ((x0, y0), _) ->
5998 zoomrect x0 y0 x y
6000 | Mpan _ ->
6001 Wsi.setcursor Wsi.CURSOR_INHERIT;
6002 state.mstate <- Mnone
6004 | Msel ((x0, y0), (x1, y1)) ->
6005 let rec loop = function
6006 | [] -> ()
6007 | l :: rest ->
6008 let inside =
6009 let a0 = l.pagedispy in
6010 let a1 = a0 + l.pagevh in
6011 let b0 = l.pagedispx in
6012 let b1 = b0 + l.pagevw in
6013 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6014 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6016 if inside
6017 then
6018 match getopaque l.pageno with
6019 | Some opaque ->
6020 begin
6021 match Ne.pipe () with
6022 | Ne.Exn exn ->
6023 showtext '!'
6024 (Printf.sprintf
6025 "can not create sel pipe: %s"
6026 (exntos exn));
6027 | Ne.Res (r, w) ->
6028 let doclose what fd =
6029 Ne.clo fd (fun msg ->
6030 dolog "%s close failed: %s" what msg)
6033 popen conf.selcmd [r, 0; w, -1];
6034 copysel w opaque;
6035 doclose "pipe/r" r;
6036 G.postRedisplay "copysel";
6037 with exn ->
6038 dolog "can not execute %S: %s"
6039 conf.selcmd (exntos exn);
6040 doclose "pipe/r" r;
6041 doclose "pipe/w" w;
6043 | None -> ()
6044 else loop rest
6046 loop state.layout;
6047 Wsi.setcursor Wsi.CURSOR_INHERIT;
6048 state.mstate <- Mnone;
6052 | _ -> ()
6055 let birdseyemouse button down x y mask
6056 (conf, leftx, _, hooverpageno, anchor) =
6057 match button with
6058 | 1 when down ->
6059 let rec loop = function
6060 | [] -> ()
6061 | l :: rest ->
6062 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6063 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6064 then (
6065 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
6067 else loop rest
6069 loop state.layout
6070 | 3 -> ()
6071 | _ -> viewmouse button down x y mask
6074 let mouse button down x y mask =
6075 state.uioh <- state.uioh#button button down x y mask;
6078 let motion ~x ~y =
6079 state.uioh <- state.uioh#motion x y
6082 let pmotion ~x ~y =
6083 state.uioh <- state.uioh#pmotion x y;
6086 let uioh = object
6087 method display = ()
6089 method key key mask =
6090 begin match state.mode with
6091 | Textentry textentry -> textentrykeyboard key mask textentry
6092 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
6093 | View -> viewkeyboard key mask
6094 | LinkNav linknav -> linknavkeyboard key mask linknav
6095 end;
6096 state.uioh
6098 method button button bstate x y mask =
6099 begin match state.mode with
6100 | LinkNav _
6101 | View -> viewmouse button bstate x y mask
6102 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6103 | Textentry _ -> ()
6104 end;
6105 state.uioh
6107 method motion x y =
6108 begin match state.mode with
6109 | Textentry _ -> ()
6110 | View | Birdseye _ | LinkNav _ ->
6111 match state.mstate with
6112 | Mzoom _ | Mnone -> ()
6114 | Mpan (x0, y0) ->
6115 let dx = x - x0
6116 and dy = y0 - y in
6117 state.mstate <- Mpan (x, y);
6118 if canpan ()
6119 then state.x <- state.x + dx;
6120 let y = clamp dy in
6121 gotoy_and_clear_text y
6123 | Msel (a, _) ->
6124 state.mstate <- Msel (a, (x, y));
6125 G.postRedisplay "motion select";
6127 | Mscrolly ->
6128 let y = min state.winh (max 0 y) in
6129 scrolly y
6131 | Mscrollx ->
6132 let x = min state.winw (max 0 x) in
6133 scrollx x
6135 | Mzoomrect (p0, _) ->
6136 state.mstate <- Mzoomrect (p0, (x, y));
6137 G.postRedisplay "motion zoomrect";
6138 end;
6139 state.uioh
6141 method pmotion x y =
6142 begin match state.mode with
6143 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6144 let rec loop = function
6145 | [] ->
6146 if hooverpageno != -1
6147 then (
6148 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6149 G.postRedisplay "pmotion birdseye no hoover";
6151 | l :: rest ->
6152 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6153 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6154 then (
6155 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6156 G.postRedisplay "pmotion birdseye hoover";
6158 else loop rest
6160 loop state.layout
6162 | Textentry _ -> ()
6164 | LinkNav _
6165 | View ->
6166 match state.mstate with
6167 | Mnone -> updateunder x y
6168 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6170 end;
6171 state.uioh
6173 method infochanged _ = ()
6175 method scrollph =
6176 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6177 let p, h = scrollph state.y maxy in
6178 state.scrollw, p, h
6180 method scrollpw =
6181 let winw = state.winw - state.scrollw - 1 in
6182 let fwinw = float winw in
6183 let sw =
6184 let sw = fwinw /. float state.w in
6185 let sw = fwinw *. sw in
6186 max sw (float conf.scrollh)
6188 let position, sw =
6189 let f = state.w+winw in
6190 let r = float (winw-state.x) /. float f in
6191 let p = fwinw *. r in
6192 p-.sw/.2., sw
6194 let sw =
6195 if position +. sw > fwinw
6196 then fwinw -. position
6197 else sw
6199 state.hscrollh, position, sw
6201 method modehash =
6202 let modename =
6203 match state.mode with
6204 | LinkNav _ -> "links"
6205 | Textentry _ -> "textentry"
6206 | Birdseye _ -> "birdseye"
6207 | View -> "view"
6209 findkeyhash conf modename
6211 method eformsgs = true
6212 end;;
6214 module Config =
6215 struct
6216 open Parser
6218 let fontpath = ref "";;
6220 module KeyMap =
6221 Map.Make (struct type t = (int * int) let compare = compare end);;
6223 let unent s =
6224 let l = String.length s in
6225 let b = Buffer.create l in
6226 unent b s 0 l;
6227 Buffer.contents b;
6230 let home =
6231 try Sys.getenv "HOME"
6232 with exn ->
6233 prerr_endline
6234 ("Can not determine home directory location: " ^ exntos exn);
6238 let modifier_of_string = function
6239 | "alt" -> Wsi.altmask
6240 | "shift" -> Wsi.shiftmask
6241 | "ctrl" | "control" -> Wsi.ctrlmask
6242 | "meta" -> Wsi.metamask
6243 | _ -> 0
6246 let key_of_string =
6247 let r = Str.regexp "-" in
6248 fun s ->
6249 let elems = Str.full_split r s in
6250 let f n k m =
6251 let g s =
6252 let m1 = modifier_of_string s in
6253 if m1 = 0
6254 then (Wsi.namekey s, m)
6255 else (k, m lor m1)
6256 in function
6257 | Str.Delim s when n land 1 = 0 -> g s
6258 | Str.Text s -> g s
6259 | Str.Delim _ -> (k, m)
6261 let rec loop n k m = function
6262 | [] -> (k, m)
6263 | x :: xs ->
6264 let k, m = f n k m x in
6265 loop (n+1) k m xs
6267 loop 0 0 0 elems
6270 let keys_of_string =
6271 let r = Str.regexp "[ \t]" in
6272 fun s ->
6273 let elems = Str.split r s in
6274 List.map key_of_string elems
6277 let copykeyhashes c =
6278 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6281 let config_of c attrs =
6282 let apply c k v =
6284 match k with
6285 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6286 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6287 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6288 | "preload" -> { c with preload = bool_of_string v }
6289 | "page-bias" -> { c with pagebias = int_of_string v }
6290 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6291 | "horizontal-scroll-step" ->
6292 { c with hscrollstep = max (int_of_string v) 1 }
6293 | "auto-scroll-step" ->
6294 { c with autoscrollstep = max 0 (int_of_string v) }
6295 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6296 | "crop-hack" -> { c with crophack = bool_of_string v }
6297 | "throttle" ->
6298 let mw =
6299 match String.lowercase v with
6300 | "true" -> Some infinity
6301 | "false" -> None
6302 | f -> Some (float_of_string f)
6304 { c with maxwait = mw}
6305 | "highlight-links" -> { c with hlinks = bool_of_string v }
6306 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6307 | "vertical-margin" ->
6308 { c with interpagespace = max 0 (int_of_string v) }
6309 | "zoom" ->
6310 let zoom = float_of_string v /. 100. in
6311 let zoom = max zoom 0.0 in
6312 { c with zoom = zoom }
6313 | "presentation" -> { c with presentation = bool_of_string v }
6314 | "rotation-angle" -> { c with angle = int_of_string v }
6315 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6316 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6317 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6318 | "proportional-display" ->
6319 let fm =
6320 if bool_of_string v
6321 then FitProportional
6322 else FitWidth
6324 { c with fitmodel = fm }
6325 | "fit-model" -> { c with fitmodel = fitmodel_of_string v }
6326 | "pixmap-cache-size" ->
6327 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6328 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6329 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6330 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6331 | "persistent-location" -> { c with jumpback = bool_of_string v }
6332 | "background-color" -> { c with bgcolor = color_of_string v }
6333 | "scrollbar-in-presentation" ->
6334 { c with scrollbarinpm = bool_of_string v }
6335 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6336 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6337 | "mupdf-store-size" ->
6338 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6339 | "checkers" -> { c with checkers = bool_of_string v }
6340 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6341 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6342 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6343 | "uri-launcher" -> { c with urilauncher = unent v }
6344 | "path-launcher" -> { c with pathlauncher = unent v }
6345 | "color-space" -> { c with colorspace = colorspace_of_string v }
6346 | "invert-colors" -> { c with invert = bool_of_string v }
6347 | "brightness" -> { c with colorscale = float_of_string v }
6348 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6349 | "ghyllscroll" ->
6350 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6351 | "columns" ->
6352 let (n, _, _) as nab = multicolumns_of_string v in
6353 if n < 0
6354 then { c with columns = Csplit (-n, [||]) }
6355 else { c with columns = Cmulti (nab, [||]) }
6356 | "birds-eye-columns" ->
6357 { c with beyecolumns = Some (max (int_of_string v) 2) }
6358 | "selection-command" -> { c with selcmd = unent v }
6359 | "synctex-command" -> { c with stcmd = unent v }
6360 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6361 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6362 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6363 | "use-pbo" -> { c with usepbo = bool_of_string v }
6364 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6365 | _ -> c
6366 with exn ->
6367 prerr_endline ("Error processing attribute (`" ^
6368 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6371 let rec fold c = function
6372 | [] -> c
6373 | (k, v) :: rest ->
6374 let c = apply c k v in
6375 fold c rest
6377 fold { c with keyhashes = copykeyhashes c } attrs;
6380 let fromstring f pos n v d =
6381 try f v
6382 with exn ->
6383 dolog "Error processing attribute (%S=%S) at %d\n%s"
6384 n v pos (exntos exn)
6389 let bookmark_of attrs =
6390 let rec fold title page rely visy = function
6391 | ("title", v) :: rest -> fold v page rely visy rest
6392 | ("page", v) :: rest -> fold title v rely visy rest
6393 | ("rely", v) :: rest -> fold title page v visy rest
6394 | ("visy", v) :: rest -> fold title page rely v rest
6395 | _ :: rest -> fold title page rely visy rest
6396 | [] -> title, page, rely, visy
6398 fold "invalid" "0" "0" "0" attrs
6401 let doc_of attrs =
6402 let rec fold path page rely pan visy = function
6403 | ("path", v) :: rest -> fold v page rely pan visy rest
6404 | ("page", v) :: rest -> fold path v rely pan visy rest
6405 | ("rely", v) :: rest -> fold path page v pan visy rest
6406 | ("pan", v) :: rest -> fold path page rely v visy rest
6407 | ("visy", v) :: rest -> fold path page rely pan v rest
6408 | _ :: rest -> fold path page rely pan visy rest
6409 | [] -> path, page, rely, pan, visy
6411 fold "" "0" "0" "0" "0" attrs
6414 let map_of attrs =
6415 let rec fold rs ls = function
6416 | ("out", v) :: rest -> fold v ls rest
6417 | ("in", v) :: rest -> fold rs v rest
6418 | _ :: rest -> fold ls rs rest
6419 | [] -> ls, rs
6421 fold "" "" attrs
6424 let setconf dst src =
6425 dst.scrollbw <- src.scrollbw;
6426 dst.scrollh <- src.scrollh;
6427 dst.icase <- src.icase;
6428 dst.preload <- src.preload;
6429 dst.pagebias <- src.pagebias;
6430 dst.verbose <- src.verbose;
6431 dst.scrollstep <- src.scrollstep;
6432 dst.maxhfit <- src.maxhfit;
6433 dst.crophack <- src.crophack;
6434 dst.autoscrollstep <- src.autoscrollstep;
6435 dst.maxwait <- src.maxwait;
6436 dst.hlinks <- src.hlinks;
6437 dst.underinfo <- src.underinfo;
6438 dst.interpagespace <- src.interpagespace;
6439 dst.zoom <- src.zoom;
6440 dst.presentation <- src.presentation;
6441 dst.angle <- src.angle;
6442 dst.cwinw <- src.cwinw;
6443 dst.cwinh <- src.cwinh;
6444 dst.savebmarks <- src.savebmarks;
6445 dst.memlimit <- src.memlimit;
6446 dst.fitmodel <- src.fitmodel;
6447 dst.texcount <- src.texcount;
6448 dst.sliceheight <- src.sliceheight;
6449 dst.thumbw <- src.thumbw;
6450 dst.jumpback <- src.jumpback;
6451 dst.bgcolor <- src.bgcolor;
6452 dst.scrollbarinpm <- src.scrollbarinpm;
6453 dst.tilew <- src.tilew;
6454 dst.tileh <- src.tileh;
6455 dst.mustoresize <- src.mustoresize;
6456 dst.checkers <- src.checkers;
6457 dst.aalevel <- src.aalevel;
6458 dst.trimmargins <- src.trimmargins;
6459 dst.trimfuzz <- src.trimfuzz;
6460 dst.urilauncher <- src.urilauncher;
6461 dst.colorspace <- src.colorspace;
6462 dst.invert <- src.invert;
6463 dst.colorscale <- src.colorscale;
6464 dst.redirectstderr <- src.redirectstderr;
6465 dst.ghyllscroll <- src.ghyllscroll;
6466 dst.columns <- src.columns;
6467 dst.beyecolumns <- src.beyecolumns;
6468 dst.selcmd <- src.selcmd;
6469 dst.updatecurs <- src.updatecurs;
6470 dst.pathlauncher <- src.pathlauncher;
6471 dst.keyhashes <- copykeyhashes src;
6472 dst.hfsize <- src.hfsize;
6473 dst.hscrollstep <- src.hscrollstep;
6474 dst.pgscale <- src.pgscale;
6475 dst.usepbo <- src.usepbo;
6476 dst.wheelbypage <- src.wheelbypage;
6477 dst.stcmd <- src.stcmd;
6480 let get s =
6481 let h = Hashtbl.create 10 in
6482 let dc = { defconf with angle = defconf.angle } in
6483 let rec toplevel v t spos _ =
6484 match t with
6485 | Vdata | Vcdata | Vend -> v
6486 | Vopen ("llppconfig", _, closed) ->
6487 if closed
6488 then v
6489 else { v with f = llppconfig }
6490 | Vopen _ ->
6491 error "unexpected subelement at top level" s spos
6492 | Vclose _ -> error "unexpected close at top level" s spos
6494 and llppconfig v t spos _ =
6495 match t with
6496 | Vdata | Vcdata -> v
6497 | Vend -> error "unexpected end of input in llppconfig" s spos
6498 | Vopen ("defaults", attrs, closed) ->
6499 let c = config_of dc attrs in
6500 setconf dc c;
6501 if closed
6502 then v
6503 else { v with f = defaults }
6505 | Vopen ("ui-font", attrs, closed) ->
6506 let rec getsize size = function
6507 | [] -> size
6508 | ("size", v) :: rest ->
6509 let size =
6510 fromstring int_of_string spos "size" v fstate.fontsize in
6511 getsize size rest
6512 | l -> getsize size l
6514 fstate.fontsize <- getsize fstate.fontsize attrs;
6515 if closed
6516 then v
6517 else { v with f = uifont (Buffer.create 10) }
6519 | Vopen ("doc", attrs, closed) ->
6520 let pathent, spage, srely, span, svisy = doc_of attrs in
6521 let path = unent pathent
6522 and pageno = fromstring int_of_string spos "page" spage 0
6523 and rely = fromstring float_of_string spos "rely" srely 0.0
6524 and pan = fromstring int_of_string spos "pan" span 0
6525 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6526 let c = config_of dc attrs in
6527 let anchor = (pageno, rely, visy) in
6528 if closed
6529 then (Hashtbl.add h path (c, [], pan, anchor); v)
6530 else { v with f = doc path pan anchor c [] }
6532 | Vopen _ ->
6533 error "unexpected subelement in llppconfig" s spos
6535 | Vclose "llppconfig" -> { v with f = toplevel }
6536 | Vclose _ -> error "unexpected close in llppconfig" s spos
6538 and defaults v t spos _ =
6539 match t with
6540 | Vdata | Vcdata -> v
6541 | Vend -> error "unexpected end of input in defaults" s spos
6542 | Vopen ("keymap", attrs, closed) ->
6543 let modename =
6544 try List.assoc "mode" attrs
6545 with Not_found -> "global" in
6546 if closed
6547 then v
6548 else
6549 let ret keymap =
6550 let h = findkeyhash dc modename in
6551 KeyMap.iter (Hashtbl.replace h) keymap;
6552 defaults
6554 { v with f = pkeymap ret KeyMap.empty }
6556 | Vopen (_, _, _) ->
6557 error "unexpected subelement in defaults" s spos
6559 | Vclose "defaults" ->
6560 { v with f = llppconfig }
6562 | Vclose _ -> error "unexpected close in defaults" s spos
6564 and uifont b v t spos epos =
6565 match t with
6566 | Vdata | Vcdata ->
6567 Buffer.add_substring b s spos (epos - spos);
6569 | Vopen (_, _, _) ->
6570 error "unexpected subelement in ui-font" s spos
6571 | Vclose "ui-font" ->
6572 if String.length !fontpath = 0
6573 then fontpath := Buffer.contents b;
6574 { v with f = llppconfig }
6575 | Vclose _ -> error "unexpected close in ui-font" s spos
6576 | Vend -> error "unexpected end of input in ui-font" s spos
6578 and doc path pan anchor c bookmarks v t spos _ =
6579 match t with
6580 | Vdata | Vcdata -> v
6581 | Vend -> error "unexpected end of input in doc" s spos
6582 | Vopen ("bookmarks", _, closed) ->
6583 if closed
6584 then v
6585 else { v with f = pbookmarks path pan anchor c bookmarks }
6587 | Vopen ("keymap", attrs, closed) ->
6588 let modename =
6589 try List.assoc "mode" attrs
6590 with Not_found -> "global"
6592 if closed
6593 then v
6594 else
6595 let ret keymap =
6596 let h = findkeyhash c modename in
6597 KeyMap.iter (Hashtbl.replace h) keymap;
6598 doc path pan anchor c bookmarks
6600 { v with f = pkeymap ret KeyMap.empty }
6602 | Vopen (_, _, _) ->
6603 error "unexpected subelement in doc" s spos
6605 | Vclose "doc" ->
6606 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6607 { v with f = llppconfig }
6609 | Vclose _ -> error "unexpected close in doc" s spos
6611 and pkeymap ret keymap v t spos _ =
6612 match t with
6613 | Vdata | Vcdata -> v
6614 | Vend -> error "unexpected end of input in keymap" s spos
6615 | Vopen ("map", attrs, closed) ->
6616 let r, l = map_of attrs in
6617 let kss = fromstring keys_of_string spos "in" r [] in
6618 let lss = fromstring keys_of_string spos "out" l [] in
6619 let keymap =
6620 match kss with
6621 | [] -> keymap
6622 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6623 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6625 if closed
6626 then { v with f = pkeymap ret keymap }
6627 else
6628 let f () = v in
6629 { v with f = skip "map" f }
6631 | Vopen _ ->
6632 error "unexpected subelement in keymap" s spos
6634 | Vclose "keymap" ->
6635 { v with f = ret keymap }
6637 | Vclose _ -> error "unexpected close in keymap" s spos
6639 and pbookmarks path pan anchor c bookmarks v t spos _ =
6640 match t with
6641 | Vdata | Vcdata -> v
6642 | Vend -> error "unexpected end of input in bookmarks" s spos
6643 | Vopen ("item", attrs, closed) ->
6644 let titleent, spage, srely, svisy = bookmark_of attrs in
6645 let page = fromstring int_of_string spos "page" spage 0
6646 and rely = fromstring float_of_string spos "rely" srely 0.0
6647 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6648 let bookmarks =
6649 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6651 if closed
6652 then { v with f = pbookmarks path pan anchor c bookmarks }
6653 else
6654 let f () = v in
6655 { v with f = skip "item" f }
6657 | Vopen _ ->
6658 error "unexpected subelement in bookmarks" s spos
6660 | Vclose "bookmarks" ->
6661 { v with f = doc path pan anchor c bookmarks }
6663 | Vclose _ -> error "unexpected close in bookmarks" s spos
6665 and skip tag f v t spos _ =
6666 match t with
6667 | Vdata | Vcdata -> v
6668 | Vend ->
6669 error ("unexpected end of input in skipped " ^ tag) s spos
6670 | Vopen (tag', _, closed) ->
6671 if closed
6672 then v
6673 else
6674 let f' () = { v with f = skip tag f } in
6675 { v with f = skip tag' f' }
6676 | Vclose ctag ->
6677 if tag = ctag
6678 then f ()
6679 else error ("unexpected close in skipped " ^ tag) s spos
6682 parse { f = toplevel; accu = () } s;
6683 h, dc;
6686 let do_load f ic =
6688 let len = in_channel_length ic in
6689 let s = String.create len in
6690 really_input ic s 0 len;
6691 f s;
6692 with
6693 | Parse_error (msg, s, pos) ->
6694 let subs = subs s pos in
6695 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6696 failwith ("parse error: " ^ s)
6698 | exn ->
6699 failwith ("config load error: " ^ exntos exn)
6702 let defconfpath =
6703 let dir =
6705 let dir = Filename.concat home ".config" in
6706 if Sys.is_directory dir then dir else home
6707 with _ -> home
6709 Filename.concat dir "llpp.conf"
6712 let confpath = ref defconfpath;;
6714 let load1 f =
6715 if Sys.file_exists !confpath
6716 then
6717 match
6718 (try Some (open_in_bin !confpath)
6719 with exn ->
6720 prerr_endline
6721 ("Error opening configuration file `" ^ !confpath ^ "': " ^
6722 exntos exn);
6723 None
6725 with
6726 | Some ic ->
6727 let success =
6729 f (do_load get ic)
6730 with exn ->
6731 prerr_endline
6732 ("Error loading configuration from `" ^ !confpath ^ "': " ^
6733 exntos exn);
6734 false
6736 close_in ic;
6737 success
6739 | None -> false
6740 else
6741 f (Hashtbl.create 0, defconf)
6744 let load () =
6745 let f (h, dc) =
6746 let pc, pb, px, pa =
6748 Hashtbl.find h (Filename.basename state.path)
6749 with Not_found -> dc, [], 0, emptyanchor
6751 setconf defconf dc;
6752 setconf conf pc;
6753 state.bookmarks <- pb;
6754 state.x <- px;
6755 state.scrollw <- conf.scrollbw;
6756 if conf.jumpback
6757 then state.anchor <- pa;
6758 cbput state.hists.nav pa;
6759 true
6761 load1 f
6764 let add_attrs bb always dc c =
6765 let ob s a b =
6766 if always || a != b
6767 then Printf.bprintf bb "\n %s='%b'" s a
6768 and oi s a b =
6769 if always || a != b
6770 then Printf.bprintf bb "\n %s='%d'" s a
6771 and oI s a b =
6772 if always || a != b
6773 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6774 and oz s a b =
6775 if always || a <> b
6776 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6777 and oF s a b =
6778 if always || a <> b
6779 then Printf.bprintf bb "\n %s='%f'" s a
6780 and oc s a b =
6781 if always || a <> b
6782 then
6783 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6784 and oC s a b =
6785 if always || a <> b
6786 then
6787 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6788 and oR s a b =
6789 if always || a <> b
6790 then
6791 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6792 and os s a b =
6793 if always || a <> b
6794 then
6795 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6796 and og s a b =
6797 if always || a <> b
6798 then
6799 match a with
6800 | None -> ()
6801 | Some (_N, _A, _B) ->
6802 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6803 and oW s a b =
6804 if always || a <> b
6805 then
6806 let v =
6807 match a with
6808 | None -> "false"
6809 | Some f ->
6810 if f = infinity
6811 then "true"
6812 else string_of_float f
6814 Printf.bprintf bb "\n %s='%s'" s v
6815 and oco s a b =
6816 if always || a <> b
6817 then
6818 match a with
6819 | Cmulti ((n, a, b), _) when n > 1 ->
6820 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6821 | Csplit (n, _) when n > 1 ->
6822 Printf.bprintf bb "\n %s='%d'" s ~-n
6823 | _ -> ()
6824 and obeco s a b =
6825 if always || a <> b
6826 then
6827 match a with
6828 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6829 | _ -> ()
6830 and oFm s a b =
6831 if always || a <> b
6832 then
6833 Printf.bprintf bb "\n %s='%s'" s (fitmodel_to_string a)
6835 oi "width" c.cwinw dc.cwinw;
6836 oi "height" c.cwinh dc.cwinh;
6837 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6838 oi "scroll-handle-height" c.scrollh dc.scrollh;
6839 ob "case-insensitive-search" c.icase dc.icase;
6840 ob "preload" c.preload dc.preload;
6841 oi "page-bias" c.pagebias dc.pagebias;
6842 oi "scroll-step" c.scrollstep dc.scrollstep;
6843 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6844 ob "max-height-fit" c.maxhfit dc.maxhfit;
6845 ob "crop-hack" c.crophack dc.crophack;
6846 oW "throttle" c.maxwait dc.maxwait;
6847 ob "highlight-links" c.hlinks dc.hlinks;
6848 ob "under-cursor-info" c.underinfo dc.underinfo;
6849 oi "vertical-margin" c.interpagespace dc.interpagespace;
6850 oz "zoom" c.zoom dc.zoom;
6851 ob "presentation" c.presentation dc.presentation;
6852 oi "rotation-angle" c.angle dc.angle;
6853 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6854 oFm "fit-model" c.fitmodel dc.fitmodel;
6855 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6856 oi "tex-count" c.texcount dc.texcount;
6857 oi "slice-height" c.sliceheight dc.sliceheight;
6858 oi "thumbnail-width" c.thumbw dc.thumbw;
6859 ob "persistent-location" c.jumpback dc.jumpback;
6860 oc "background-color" c.bgcolor dc.bgcolor;
6861 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6862 oi "tile-width" c.tilew dc.tilew;
6863 oi "tile-height" c.tileh dc.tileh;
6864 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6865 ob "checkers" c.checkers dc.checkers;
6866 oi "aalevel" c.aalevel dc.aalevel;
6867 ob "trim-margins" c.trimmargins dc.trimmargins;
6868 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6869 os "uri-launcher" c.urilauncher dc.urilauncher;
6870 os "path-launcher" c.pathlauncher dc.pathlauncher;
6871 oC "color-space" c.colorspace dc.colorspace;
6872 ob "invert-colors" c.invert dc.invert;
6873 oF "brightness" c.colorscale dc.colorscale;
6874 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6875 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6876 oco "columns" c.columns dc.columns;
6877 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6878 os "selection-command" c.selcmd dc.selcmd;
6879 os "synctex-command" c.stcmd dc.stcmd;
6880 ob "update-cursor" c.updatecurs dc.updatecurs;
6881 oi "hint-font-size" c.hfsize dc.hfsize;
6882 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6883 oF "page-scroll-scale" c.pgscale dc.pgscale;
6884 ob "use-pbo" c.usepbo dc.usepbo;
6885 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
6888 let keymapsbuf always dc c =
6889 let bb = Buffer.create 16 in
6890 let rec loop = function
6891 | [] -> ()
6892 | (modename, h) :: rest ->
6893 let dh = findkeyhash dc modename in
6894 if always || h <> dh
6895 then (
6896 if Hashtbl.length h > 0
6897 then (
6898 if Buffer.length bb > 0
6899 then Buffer.add_char bb '\n';
6900 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6901 Hashtbl.iter (fun i o ->
6902 let isdifferent = always ||
6904 let dO = Hashtbl.find dh i in
6905 dO <> o
6906 with Not_found -> true
6908 if isdifferent
6909 then
6910 let addkm (k, m) =
6911 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6912 if Wsi.withalt m then Buffer.add_string bb "alt-";
6913 if Wsi.withshift m then Buffer.add_string bb "shift-";
6914 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6915 Buffer.add_string bb (Wsi.keyname k);
6917 let addkms l =
6918 let rec loop = function
6919 | [] -> ()
6920 | km :: [] -> addkm km
6921 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6923 loop l
6925 Buffer.add_string bb "<map in='";
6926 addkm i;
6927 match o with
6928 | KMinsrt km ->
6929 Buffer.add_string bb "' out='";
6930 addkm km;
6931 Buffer.add_string bb "'/>\n"
6933 | KMinsrl kms ->
6934 Buffer.add_string bb "' out='";
6935 addkms kms;
6936 Buffer.add_string bb "'/>\n"
6938 | KMmulti (ins, kms) ->
6939 Buffer.add_char bb ' ';
6940 addkms ins;
6941 Buffer.add_string bb "' out='";
6942 addkms kms;
6943 Buffer.add_string bb "'/>\n"
6944 ) h;
6945 Buffer.add_string bb "</keymap>";
6948 loop rest
6950 loop c.keyhashes;
6954 let save () =
6955 let uifontsize = fstate.fontsize in
6956 let bb = Buffer.create 32768 in
6957 let w, h =
6958 List.fold_left
6959 (fun (w, h) ws ->
6960 match ws with
6961 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh)
6962 | Wsi.MaxVert -> (w, conf.cwinh)
6963 | Wsi.MaxHorz -> (conf.cwinw, h)
6965 (state.winw, state.winh) state.winstate
6967 conf.cwinw <- w;
6968 conf.cwinh <- h;
6969 let f (h, dc) =
6970 let dc = if conf.bedefault then conf else dc in
6971 Buffer.add_string bb "<llppconfig>\n";
6973 if String.length !fontpath > 0
6974 then
6975 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6976 uifontsize
6977 !fontpath
6978 else (
6979 if uifontsize <> 14
6980 then
6981 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6984 Buffer.add_string bb "<defaults ";
6985 add_attrs bb true dc dc;
6986 let kb = keymapsbuf true dc dc in
6987 if Buffer.length kb > 0
6988 then (
6989 Buffer.add_string bb ">\n";
6990 Buffer.add_buffer bb kb;
6991 Buffer.add_string bb "\n</defaults>\n";
6993 else Buffer.add_string bb "/>\n";
6995 let adddoc path pan anchor c bookmarks =
6996 if bookmarks == [] && c = dc && anchor = emptyanchor
6997 then ()
6998 else (
6999 Printf.bprintf bb "<doc path='%s'"
7000 (enent path 0 (String.length path));
7002 if anchor <> emptyanchor
7003 then (
7004 let n, rely, visy = anchor in
7005 Printf.bprintf bb " page='%d'" n;
7006 if rely > 1e-6
7007 then
7008 Printf.bprintf bb " rely='%f'" rely
7010 if abs_float visy > 1e-6
7011 then
7012 Printf.bprintf bb " visy='%f'" visy
7016 if pan != 0
7017 then Printf.bprintf bb " pan='%d'" pan;
7019 add_attrs bb false dc c;
7020 let kb = keymapsbuf false dc c in
7022 begin match bookmarks with
7023 | [] ->
7024 if Buffer.length kb > 0
7025 then (
7026 Buffer.add_string bb ">\n";
7027 Buffer.add_buffer bb kb;
7028 Buffer.add_string bb "\n</doc>\n";
7030 else Buffer.add_string bb "/>\n"
7031 | _ ->
7032 Buffer.add_string bb ">\n<bookmarks>\n";
7033 List.iter (fun (title, _level, (page, rely, visy)) ->
7034 Printf.bprintf bb
7035 "<item title='%s' page='%d'"
7036 (enent title 0 (String.length title))
7037 page
7039 if rely > 1e-6
7040 then
7041 Printf.bprintf bb " rely='%f'" rely
7043 if abs_float visy > 1e-6
7044 then
7045 Printf.bprintf bb " visy='%f'" visy
7047 Buffer.add_string bb "/>\n";
7048 ) bookmarks;
7049 Buffer.add_string bb "</bookmarks>";
7050 if Buffer.length kb > 0
7051 then (
7052 Buffer.add_string bb "\n";
7053 Buffer.add_buffer bb kb;
7055 Buffer.add_string bb "\n</doc>\n";
7056 end;
7060 let pan, conf =
7061 match state.mode with
7062 | Birdseye (c, pan, _, _, _) ->
7063 let beyecolumns =
7064 match conf.columns with
7065 | Cmulti ((c, _, _), _) -> Some c
7066 | Csingle _ -> None
7067 | Csplit _ -> None
7068 and columns =
7069 match c.columns with
7070 | Cmulti (c, _) -> Cmulti (c, [||])
7071 | Csingle _ -> Csingle [||]
7072 | Csplit _ -> failwith "quit from bird's eye while split"
7074 pan, { c with beyecolumns = beyecolumns; columns = columns }
7075 | _ -> state.x, conf
7077 let basename = Filename.basename state.path in
7078 adddoc basename pan (getanchor ())
7079 (let conf =
7080 let autoscrollstep =
7081 match state.autoscroll with
7082 | Some step -> step
7083 | None -> conf.autoscrollstep
7085 match state.mode with
7086 | Birdseye (bc, _, _, _, _) ->
7087 { conf with
7088 zoom = bc.zoom;
7089 presentation = bc.presentation;
7090 interpagespace = bc.interpagespace;
7091 maxwait = bc.maxwait;
7092 autoscrollstep = autoscrollstep }
7093 | _ -> { conf with autoscrollstep = autoscrollstep }
7094 in conf)
7095 (if conf.savebmarks then state.bookmarks else []);
7097 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
7098 if basename <> path
7099 then adddoc path x anchor c bookmarks
7100 ) h;
7101 Buffer.add_string bb "</llppconfig>\n";
7102 true;
7104 if load1 f && Buffer.length bb > 0
7105 then
7107 let tmp = !confpath ^ ".tmp" in
7108 let oc = open_out_bin tmp in
7109 Buffer.output_buffer oc bb;
7110 close_out oc;
7111 Unix.rename tmp !confpath;
7112 with exn ->
7113 prerr_endline
7114 ("error while saving configuration: " ^ exntos exn)
7116 end;;
7118 let adderrmsg src msg =
7119 Buffer.add_string state.errmsgs msg;
7120 state.newerrmsgs <- true;
7121 G.postRedisplay src
7124 let adderrfmt src fmt =
7125 Format.kprintf (fun s -> adderrmsg src s) fmt;
7128 let ract cmds =
7129 let cl = splitatspace cmds in
7130 let scan s fmt f =
7131 try Scanf.sscanf s fmt f
7132 with exn ->
7133 adderrfmt "remote exec"
7134 "error processing '%S': %s\n" cmds (exntos exn)
7136 match cl with
7137 | "reload" :: [] -> reload ()
7138 | "goto" :: args :: [] ->
7139 scan args "%u %f %f"
7140 (fun pageno x y ->
7141 let cmd, _ = state.geomcmds in
7142 if String.length cmd = 0
7143 then gotopagexy pageno x y
7144 else
7145 let f prevf () =
7146 gotopagexy pageno x y;
7147 prevf ()
7149 state.reprf <- f state.reprf
7151 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7152 | "rect" :: args :: [] ->
7153 scan args "%u %u %f %f %f %f"
7154 (fun pageno color x0 y0 x1 y1 ->
7155 onpagerect pageno (fun w h ->
7156 let _,w1,h1,_ = getpagedim pageno in
7157 let sw = float w1 /. w
7158 and sh = float h1 /. h in
7159 let x0s = x0 *. sw
7160 and x1s = x1 *. sw
7161 and y0s = y0 *. sh
7162 and y1s = y1 *. sh in
7163 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7164 debugrect rect;
7165 state.rects <- (pageno, color, rect) :: state.rects;
7166 G.postRedisplay "rect";
7169 | "activatewin" :: [] -> Wsi.activatewin ()
7170 | "quit" :: [] -> raise Quit
7171 | _ ->
7172 adderrfmt "remote command"
7173 "error processing remote command: %S\n" cmds;
7176 let remote =
7177 let scratch = String.create 80 in
7178 let buf = Buffer.create 80 in
7179 fun fd ->
7180 let rec tempfr () =
7181 try Some (Unix.read fd scratch 0 80)
7182 with
7183 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7184 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7185 | exn -> raise exn
7187 match tempfr () with
7188 | None -> Some fd
7189 | Some n ->
7190 if n = 0
7191 then (
7192 Unix.close fd;
7193 if Buffer.length buf > 0
7194 then (
7195 let s = Buffer.contents buf in
7196 Buffer.clear buf;
7197 ract s;
7199 None
7201 else
7202 let rec eat ppos =
7203 let nlpos =
7205 let pos = String.index_from scratch ppos '\n' in
7206 if pos >= n then -1 else pos
7207 with Not_found -> -1
7209 if nlpos >= 0
7210 then (
7211 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7212 let s = Buffer.contents buf in
7213 Buffer.clear buf;
7214 ract s;
7215 eat (nlpos+1);
7217 else (
7218 Buffer.add_substring buf scratch ppos (n-ppos);
7219 Some fd
7221 in eat 0
7224 let remoteopen path =
7225 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7226 with exn ->
7227 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7228 None
7231 let () =
7232 let trimcachepath = ref "" in
7233 let rcmdpath = ref "" in
7234 Arg.parse
7235 (Arg.align
7236 [("-p", Arg.String (fun s -> state.password <- s),
7237 "<password> Set password");
7239 ("-f", Arg.String (fun s -> Config.fontpath := s),
7240 "<path> Set path to the user interface font");
7242 ("-c", Arg.String (fun s -> Config.confpath := s),
7243 "<path> Set path to the configuration file");
7245 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7246 "<path> Set path to the trim cache file");
7248 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7249 "<named-destination> Set named destination");
7251 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7253 ("-remote", Arg.String (fun s -> rcmdpath := s),
7254 "<path> Set path to the remote commands source");
7256 ("-v", Arg.Unit (fun () ->
7257 Printf.printf
7258 "%s\nconfiguration path: %s\n"
7259 (version ())
7260 Config.defconfpath
7262 exit 0), " Print version and exit");
7265 (fun s -> state.path <- s)
7266 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7268 if String.length state.path = 0
7269 then (prerr_endline "file name missing"; exit 1);
7271 if not (Config.load ())
7272 then prerr_endline "failed to load configuration";
7274 let globalkeyhash = findkeyhash conf "global" in
7275 let wsfd, winw, winh = Wsi.init (object
7276 method expose =
7277 if nogeomcmds state.geomcmds || platform == Posx
7278 then display ()
7279 else (
7280 GlClear.color (scalecolor2 conf.bgcolor);
7281 GlClear.clear [`color];
7283 method display = display ()
7284 method reshape w h = reshape w h
7285 method mouse b d x y m = mouse b d x y m
7286 method motion x y = state.mpos <- (x, y); motion x y
7287 method pmotion x y = state.mpos <- (x, y); pmotion x y
7288 method key k m =
7289 let mascm = m land (
7290 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
7291 ) in
7292 match state.keystate with
7293 | KSnone ->
7294 let km = k, mascm in
7295 begin
7296 match
7297 let modehash = state.uioh#modehash in
7298 try Hashtbl.find modehash km
7299 with Not_found ->
7300 try Hashtbl.find globalkeyhash km
7301 with Not_found -> KMinsrt (k, m)
7302 with
7303 | KMinsrt (k, m) -> keyboard k m
7304 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
7305 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
7307 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
7308 List.iter (fun (k, m) -> keyboard k m) insrt;
7309 state.keystate <- KSnone
7310 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
7311 state.keystate <- KSinto (keys, insrt)
7312 | _ ->
7313 state.keystate <- KSnone
7315 method enter x y = state.mpos <- (x, y); pmotion x y
7316 method leave = state.mpos <- (-1, -1)
7317 method winstate wsl = state.winstate <- wsl
7318 method quit = raise Quit
7319 end) conf.cwinw conf.cwinh (platform = Posx) in
7321 state.wsfd <- wsfd;
7323 if not (
7324 List.exists GlMisc.check_extension
7325 [ "GL_ARB_texture_rectangle"
7326 ; "GL_EXT_texture_recangle"
7327 ; "GL_NV_texture_rectangle" ]
7329 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
7331 let cr, sw =
7332 match Ne.pipe () with
7333 | Ne.Exn exn ->
7334 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
7335 exit 1
7336 | Ne.Res rw -> rw
7337 and sr, cw =
7338 match Ne.pipe () with
7339 | Ne.Exn exn ->
7340 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
7341 exit 1
7342 | Ne.Res rw -> rw
7345 cloexec cr;
7346 cloexec sw;
7347 cloexec sr;
7348 cloexec cw;
7350 setcheckers conf.checkers;
7351 redirectstderr ();
7353 init (cr, cw) (
7354 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
7355 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
7356 !Config.fontpath, !trimcachepath,
7357 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7359 state.sr <- sr;
7360 state.sw <- sw;
7361 state.text <- "Opening " ^ (mbtoutf8 state.path);
7362 reshape winw winh;
7363 opendoc state.path state.password;
7364 state.uioh <- uioh;
7366 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7367 let optrfd =
7368 ref (
7369 if String.length !rcmdpath > 0
7370 then remoteopen !rcmdpath
7371 else None
7375 let rec loop deadline =
7376 let r =
7377 match state.errfd with
7378 | None -> [state.sr; state.wsfd]
7379 | Some fd -> [state.sr; state.wsfd; fd]
7381 let r =
7382 match !optrfd with
7383 | None -> r
7384 | Some fd -> fd :: r
7386 if state.redisplay
7387 then (
7388 state.redisplay <- false;
7389 display ();
7391 let timeout =
7392 let now = now () in
7393 if deadline > now
7394 then (
7395 if deadline = infinity
7396 then ~-.1.0
7397 else max 0.0 (deadline -. now)
7399 else 0.0
7401 let r, _, _ =
7402 try Unix.select r [] [] timeout
7403 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7405 begin match r with
7406 | [] ->
7407 state.ghyll None;
7408 let newdeadline =
7409 if state.ghyll == noghyll
7410 then
7411 match state.autoscroll with
7412 | Some step when step != 0 ->
7413 let y = state.y + step in
7414 let y =
7415 if y < 0
7416 then state.maxy
7417 else if y >= state.maxy then 0 else y
7419 gotoy y;
7420 if state.mode = View
7421 then state.text <- "";
7422 deadline +. 0.01
7423 | _ -> infinity
7424 else deadline +. 0.01
7426 loop newdeadline
7428 | l ->
7429 let rec checkfds = function
7430 | [] -> ()
7431 | fd :: rest when fd = state.sr ->
7432 let cmd = readcmd state.sr in
7433 act cmd;
7434 checkfds rest
7436 | fd :: rest when fd = state.wsfd ->
7437 Wsi.readresp fd;
7438 checkfds rest
7440 | fd :: rest when Some fd = !optrfd ->
7441 begin match remote fd with
7442 | None -> optrfd := remoteopen !rcmdpath;
7443 | opt -> optrfd := opt
7444 end;
7445 checkfds rest
7447 | fd :: rest ->
7448 let s = String.create 80 in
7449 let n = tempfailureretry (Unix.read fd s 0) 80 in
7450 if conf.redirectstderr
7451 then (
7452 Buffer.add_substring state.errmsgs s 0 n;
7453 state.newerrmsgs <- true;
7454 state.redisplay <- true;
7456 else (
7457 prerr_string (String.sub s 0 n);
7458 flush stderr;
7460 checkfds rest
7462 checkfds l;
7463 let newdeadline =
7464 let deadline1 =
7465 if deadline = infinity
7466 then now () +. 0.01
7467 else deadline
7469 match state.autoscroll with
7470 | Some step when step != 0 -> deadline1
7471 | _ -> if state.ghyll == noghyll then infinity else deadline1
7473 loop newdeadline
7474 end;
7477 loop infinity;
7478 with Quit ->
7479 Config.save ();