4142b2908a658d9fd66b32bed1168eb1df0b3fe7
[llpp.git] / main.ml
blob4142b2908a658d9fd66b32bed1168eb1df0b3fe7
1 exception Quit;;
3 type under =
4 | Unone
5 | Ulinkuri of string
6 | Ulinkgoto of (int * int)
7 | Utext of facename
8 | Uunexpected of string
9 | Ulaunch of string
10 | Unamed of string
11 | Uremote of (string * int)
12 and facename = string;;
14 let dolog fmt = Printf.kprintf prerr_endline fmt;;
15 let now = Unix.gettimeofday;;
17 type params = (angle * proportional * trimparams
18 * texcount * sliceheight * memsize
19 * colorspace * fontpath * trimcachepath)
20 and pageno = int
21 and width = int
22 and height = int
23 and leftx = int
24 and opaque = string
25 and recttype = int
26 and pixmapsize = int
27 and angle = int
28 and proportional = bool
29 and trimmargins = bool
30 and interpagespace = int
31 and texcount = int
32 and sliceheight = int
33 and gen = int
34 and top = float
35 and dtop = float
36 and fontpath = string
37 and trimcachepath = string
38 and memsize = int
39 and aalevel = int
40 and irect = (int * int * int * int)
41 and trimparams = (trimmargins * irect)
42 and colorspace = | Rgb | Bgr | Gray
45 type link =
46 | Lnotfound
47 | Lfound of int
48 and linkdir =
49 | LDfirst
50 | LDlast
51 | LDfirstvisible of (int * int * int)
52 | LDleft of int
53 | LDright of int
54 | LDdown of int
55 | LDup of int
58 type pagewithlinks =
59 | Pwlnotfound
60 | Pwl of int
63 type keymap =
64 | KMinsrt of key
65 | KMinsrl of key list
66 | KMmulti of key list * key list
67 and key = int * int
68 and keyhash = (key, keymap) Hashtbl.t
69 and keystate =
70 | KSnone
71 | KSinto of (key list * key list)
74 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
75 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
77 type pipe = (Unix.file_descr * Unix.file_descr);;
79 external init : pipe -> params -> unit = "ml_init";;
80 external seltext : string -> (int * int * int * int) -> unit = "ml_seltext";;
81 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
82 external getpdimrect : int -> float array = "ml_getpdimrect";;
83 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
84 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
85 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
86 external measurestr : int -> string -> float = "ml_measure_string";;
87 external getmaxw : unit -> float = "ml_getmaxw";;
88 external postprocess :
89 opaque -> int -> int -> int -> (int * string * int) -> int = "ml_postprocess";;
90 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
91 external platform : unit -> platform = "ml_platform";;
92 external setaalevel : int -> unit = "ml_setaalevel";;
93 external realloctexts : int -> bool = "ml_realloctexts";;
94 external cloexec : Unix.file_descr -> unit = "ml_cloexec";;
95 external findlink : opaque -> linkdir -> link = "ml_findlink";;
96 external getlink : opaque -> int -> under = "ml_getlink";;
97 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
98 external getlinkcount : opaque -> int = "ml_getlinkcount";;
99 external findpwl: int -> int -> pagewithlinks = "ml_find_page_with_links"
100 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
102 let platform_to_string = function
103 | Punknown -> "unknown"
104 | Plinux -> "Linux"
105 | Posx -> "OSX"
106 | Psun -> "Sun"
107 | Pfreebsd -> "FreeBSD"
108 | Pdragonflybsd -> "DragonflyBSD"
109 | Popenbsd -> "OpenBSD"
110 | Pnetbsd -> "NetBSD"
111 | Pcygwin -> "Cygwin"
114 let platform = platform ();;
116 let popen cmd fda =
117 if platform = Pcygwin
118 then (
119 let sh = "/bin/sh" in
120 let args = [|sh; "-c"; cmd|] in
121 let rec std si so se = function
122 | [] -> si, so, se
123 | (fd, 0) :: rest -> std fd so se rest
124 | (fd, -1) :: rest ->
125 Unix.set_close_on_exec fd;
126 std si so se rest
127 | (_, n) :: _ ->
128 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
130 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
131 ignore (Unix.create_process sh args si so se)
133 else popen cmd fda;
136 type x = int
137 and y = int
138 and tilex = int
139 and tiley = int
140 and tileparams = (x * y * width * height * tilex * tiley)
143 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
145 type mpos = int * int
146 and mstate =
147 | Msel of (mpos * mpos)
148 | Mpan of mpos
149 | Mscrolly | Mscrollx
150 | Mzoom of (int * int)
151 | Mzoomrect of (mpos * mpos)
152 | Mnone
155 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
156 and onkey = string -> int -> te
157 and ondone = string -> unit
158 and histcancel = unit -> unit
159 and onhist = ((histcmd -> string) * histcancel)
160 and histcmd = HCnext | HCprev | HCfirst | HClast
161 and cancelonempty = bool
162 and te =
163 | TEstop
164 | TEdone of string
165 | TEcont of string
166 | TEswitch of textentry
169 type 'a circbuf =
170 { store : 'a array
171 ; mutable rc : int
172 ; mutable wc : int
173 ; mutable len : int
177 let bound v minv maxv =
178 max minv (min maxv v);
181 let cbnew n v =
182 { store = Array.create n v
183 ; rc = 0
184 ; wc = 0
185 ; len = 0
189 let cbcap b = Array.length b.store;;
191 let cbput b v =
192 let cap = cbcap b in
193 b.store.(b.wc) <- v;
194 b.wc <- (b.wc + 1) mod cap;
195 b.rc <- b.wc;
196 b.len <- min (b.len + 1) cap;
199 let cbempty b = b.len = 0;;
201 let cbgetg b circular dir =
202 if cbempty b
203 then b.store.(0)
204 else
205 let rc = b.rc + dir in
206 let rc =
207 if circular
208 then (
209 if rc = -1
210 then b.len-1
211 else (
212 if rc >= b.len
213 then 0
214 else rc
217 else bound rc 0 (b.len-1)
219 b.rc <- rc;
220 b.store.(rc);
223 let cbget b = cbgetg b false;;
224 let cbgetc b = cbgetg b true;;
226 let drawstring size x y s =
227 Gl.enable `blend;
228 Gl.enable `texture_2d;
229 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
230 ignore (drawstr size x y s);
231 Gl.disable `blend;
232 Gl.disable `texture_2d;
235 let drawstring1 size x y s =
236 drawstr size x y s;
239 let drawstring2 size x y fmt =
240 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
243 type page =
244 { pageno : int
245 ; pagedimno : int
246 ; pagew : int
247 ; pageh : int
248 ; pagex : int
249 ; pagey : int
250 ; pagevw : int
251 ; pagevh : int
252 ; pagedispx : int
253 ; pagedispy : int
254 ; pagecol : int
258 let debugl l =
259 dolog "l %d dim=%d {" l.pageno l.pagedimno;
260 dolog " WxH %dx%d" l.pagew l.pageh;
261 dolog " vWxH %dx%d" l.pagevw l.pagevh;
262 dolog " pagex,y %d,%d" l.pagex l.pagey;
263 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
264 dolog " column %d" l.pagecol;
265 dolog "}";
268 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
269 dolog "rect {";
270 dolog " x0,y0=(% f, % f)" x0 y0;
271 dolog " x1,y1=(% f, % f)" x1 y1;
272 dolog " x2,y2=(% f, % f)" x2 y2;
273 dolog " x3,y3=(% f, % f)" x3 y3;
274 dolog "}";
277 type multicolumns = multicol * pagegeom
278 and singlecolumn = pagegeom
279 and splitcolumns = columncount * pagegeom
280 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
281 and multicol = columncount * covercount * covercount
282 and pdimno = int
283 and columncount = int
284 and covercount = int;;
286 type conf =
287 { mutable scrollbw : int
288 ; mutable scrollh : int
289 ; mutable icase : bool
290 ; mutable preload : bool
291 ; mutable pagebias : int
292 ; mutable verbose : bool
293 ; mutable debug : bool
294 ; mutable scrollstep : int
295 ; mutable hscrollstep : int
296 ; mutable maxhfit : bool
297 ; mutable crophack : bool
298 ; mutable autoscrollstep : int
299 ; mutable maxwait : float option
300 ; mutable hlinks : bool
301 ; mutable underinfo : bool
302 ; mutable interpagespace : interpagespace
303 ; mutable zoom : float
304 ; mutable presentation : bool
305 ; mutable angle : angle
306 ; mutable winw : int
307 ; mutable winh : int
308 ; mutable savebmarks : bool
309 ; mutable proportional : proportional
310 ; mutable trimmargins : trimmargins
311 ; mutable trimfuzz : irect
312 ; mutable memlimit : memsize
313 ; mutable texcount : texcount
314 ; mutable sliceheight : sliceheight
315 ; mutable thumbw : width
316 ; mutable jumpback : bool
317 ; mutable bgcolor : float * float * float
318 ; mutable bedefault : bool
319 ; mutable scrollbarinpm : bool
320 ; mutable tilew : int
321 ; mutable tileh : int
322 ; mutable mustoresize : memsize
323 ; mutable checkers : bool
324 ; mutable aalevel : int
325 ; mutable urilauncher : string
326 ; mutable pathlauncher : string
327 ; mutable colorspace : colorspace
328 ; mutable invert : bool
329 ; mutable colorscale : float
330 ; mutable redirectstderr : bool
331 ; mutable ghyllscroll : (int * int * int) option
332 ; mutable columns : columns
333 ; mutable beyecolumns : columncount option
334 ; mutable selcmd : string
335 ; mutable updatecurs : bool
336 ; mutable keyhashes : (string * keyhash) list
337 ; mutable hfsize : int
338 ; mutable pgscale : float
340 and columns =
341 | Csingle of singlecolumn
342 | Cmulti of multicolumns
343 | Csplit of splitcolumns
346 type anchor = pageno * top * dtop;;
348 type outline = string * int * anchor;;
350 type rect = float * float * float * float * float * float * float * float;;
352 type tile = opaque * pixmapsize * elapsed
353 and elapsed = float;;
354 type pagemapkey = pageno * gen;;
355 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
356 and row = int
357 and col = int;;
359 let emptyanchor = (0, 0.0, 0.0);;
361 type infochange = | Memused | Docinfo | Pdim;;
363 class type uioh = object
364 method display : unit
365 method key : int -> int -> uioh
366 method button : int -> bool -> int -> int -> int -> uioh
367 method motion : int -> int -> uioh
368 method pmotion : int -> int -> uioh
369 method infochanged : infochange -> unit
370 method scrollpw : (int * float * float)
371 method scrollph : (int * float * float)
372 method modehash : keyhash
373 end;;
375 type mode =
376 | Birdseye of (conf * leftx * pageno * pageno * anchor)
377 | Textentry of (textentry * onleave)
378 | View
379 | LinkNav of linktarget
380 and onleave = leavetextentrystatus -> unit
381 and leavetextentrystatus = | Cancel | Confirm
382 and helpitem = string * int * action
383 and action =
384 | Noaction
385 | Action of (uioh -> uioh)
386 and linktarget =
387 | Ltexact of (pageno * int)
388 | Ltgendir of int
391 let isbirdseye = function Birdseye _ -> true | _ -> false;;
392 let istextentry = function Textentry _ -> true | _ -> false;;
394 type currently =
395 | Idle
396 | Loading of (page * gen)
397 | Tiling of (
398 page * opaque * colorspace * angle * gen * col * row * width * height
400 | Outlining of outline list
403 let emptykeyhash = Hashtbl.create 0;;
404 let nouioh : uioh = object (self)
405 method display = ()
406 method key _ _ = self
407 method button _ _ _ _ _ = self
408 method motion _ _ = self
409 method pmotion _ _ = self
410 method infochanged _ = ()
411 method scrollpw = (0, nan, nan)
412 method scrollph = (0, nan, nan)
413 method modehash = emptykeyhash
414 end;;
416 type state =
417 { mutable sr : Unix.file_descr
418 ; mutable sw : Unix.file_descr
419 ; mutable wsfd : Unix.file_descr
420 ; mutable errfd : Unix.file_descr option
421 ; mutable stderr : Unix.file_descr
422 ; mutable errmsgs : Buffer.t
423 ; mutable newerrmsgs : bool
424 ; mutable w : int
425 ; mutable x : int
426 ; mutable y : int
427 ; mutable scrollw : int
428 ; mutable hscrollh : int
429 ; mutable anchor : anchor
430 ; mutable ranchors : (string * string * anchor) list
431 ; mutable maxy : int
432 ; mutable layout : page list
433 ; pagemap : (pagemapkey, opaque) Hashtbl.t
434 ; tilemap : (tilemapkey, tile) Hashtbl.t
435 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
436 ; mutable pdims : (pageno * width * height * leftx) list
437 ; mutable pagecount : int
438 ; mutable currently : currently
439 ; mutable mstate : mstate
440 ; mutable searchpattern : string
441 ; mutable rects : (pageno * recttype * rect) list
442 ; mutable rects1 : (pageno * recttype * rect) list
443 ; mutable text : string
444 ; mutable fullscreen : (width * height) option
445 ; mutable mode : mode
446 ; mutable uioh : uioh
447 ; mutable outlines : outline array
448 ; mutable bookmarks : outline list
449 ; mutable path : string
450 ; mutable password : string
451 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
452 ; mutable memused : memsize
453 ; mutable gen : gen
454 ; mutable throttle : (page list * int * float) option
455 ; mutable autoscroll : int option
456 ; mutable ghyll : (int option -> unit)
457 ; mutable help : helpitem array
458 ; mutable docinfo : (int * string) list
459 ; mutable texid : GlTex.texture_id option
460 ; hists : hists
461 ; mutable prevzoom : float
462 ; mutable progress : float
463 ; mutable redisplay : bool
464 ; mutable mpos : mpos
465 ; mutable keystate : keystate
466 ; mutable glinks : bool
467 ; mutable prevcolumns : (columns * float) option
469 and hists =
470 { pat : string circbuf
471 ; pag : string circbuf
472 ; nav : anchor circbuf
473 ; sel : string circbuf
477 let defconf =
478 { scrollbw = 7
479 ; scrollh = 12
480 ; icase = true
481 ; preload = true
482 ; pagebias = 0
483 ; verbose = false
484 ; debug = false
485 ; scrollstep = 24
486 ; hscrollstep = 24
487 ; maxhfit = true
488 ; crophack = false
489 ; autoscrollstep = 2
490 ; maxwait = None
491 ; hlinks = false
492 ; underinfo = false
493 ; interpagespace = 2
494 ; zoom = 1.0
495 ; presentation = false
496 ; angle = 0
497 ; winw = 900
498 ; winh = 900
499 ; savebmarks = true
500 ; proportional = true
501 ; trimmargins = false
502 ; trimfuzz = (0,0,0,0)
503 ; memlimit = 32 lsl 20
504 ; texcount = 256
505 ; sliceheight = 24
506 ; thumbw = 76
507 ; jumpback = true
508 ; bgcolor = (0.5, 0.5, 0.5)
509 ; bedefault = false
510 ; scrollbarinpm = true
511 ; tilew = 2048
512 ; tileh = 2048
513 ; mustoresize = 256 lsl 20
514 ; checkers = true
515 ; aalevel = 8
516 ; urilauncher =
517 (match platform with
518 | Plinux | Pfreebsd | Pdragonflybsd
519 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
520 | Posx -> "open \"%s\""
521 | Pcygwin -> "cygstart \"%s\""
522 | Punknown -> "echo %s")
523 ; pathlauncher = "lp \"%s\""
524 ; selcmd =
525 (match platform with
526 | Plinux | Pfreebsd | Pdragonflybsd
527 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
528 | Posx -> "pbcopy"
529 | Pcygwin -> "wsel"
530 | Punknown -> "cat")
531 ; colorspace = Rgb
532 ; invert = false
533 ; colorscale = 1.0
534 ; redirectstderr = false
535 ; ghyllscroll = None
536 ; columns = Csingle [||]
537 ; beyecolumns = None
538 ; updatecurs = false
539 ; hfsize = 12
540 ; pgscale = 1.0
541 ; keyhashes =
542 let mk n = (n, Hashtbl.create 1) in
543 [ mk "global"
544 ; mk "info"
545 ; mk "help"
546 ; mk "outline"
547 ; mk "listview"
548 ; mk "birdseye"
549 ; mk "textentry"
550 ; mk "links"
551 ; mk "view"
556 let findkeyhash c name =
557 try List.assoc name c.keyhashes
558 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
561 let conf = { defconf with angle = defconf.angle };;
563 let pgscale h = truncate (float h *. conf.pgscale);;
565 type fontstate =
566 { mutable fontsize : int
567 ; mutable wwidth : float
568 ; mutable maxrows : int
572 let fstate =
573 { fontsize = 14
574 ; wwidth = nan
575 ; maxrows = -1
579 let setfontsize n =
580 fstate.fontsize <- n;
581 fstate.wwidth <- measurestr fstate.fontsize "w";
582 fstate.maxrows <- (conf.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
585 let geturl s =
586 let colonpos = try String.index s ':' with Not_found -> -1 in
587 let len = String.length s in
588 if colonpos >= 0 && colonpos + 3 < len
589 then (
590 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
591 then
592 let schemestartpos =
593 try String.rindex_from s colonpos ' '
594 with Not_found -> -1
596 let scheme =
597 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
599 match scheme with
600 | "http" | "ftp" | "mailto" ->
601 let epos =
602 try String.index_from s colonpos ' '
603 with Not_found -> len
605 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
606 | _ -> ""
607 else ""
609 else ""
612 let gotouri uri =
613 if String.length conf.urilauncher = 0
614 then print_endline uri
615 else (
616 let url = geturl uri in
617 if String.length url = 0
618 then print_endline uri
619 else
620 let re = Str.regexp "%s" in
621 let command = Str.global_replace re url conf.urilauncher in
622 try popen command []
623 with exn ->
624 Printf.eprintf
625 "failed to execute `%s': %s\n" command (Printexc.to_string exn);
626 flush stderr;
630 let version () =
631 Printf.sprintf "llpp version %s (%s/%dbit, ocaml %s)" Help.version
632 (platform_to_string platform) Sys.word_size Sys.ocaml_version
635 let makehelp () =
636 let strings = version () :: "" :: Help.keys in
637 Array.of_list (
638 List.map (fun s ->
639 let url = geturl s in
640 if String.length url > 0
641 then (s, 0, Action (fun u -> gotouri url; u))
642 else (s, 0, Noaction)
643 ) strings);
646 let noghyll _ = ();;
647 let firstgeomcmds = "", [];;
649 let state =
650 { sr = Unix.stdin
651 ; sw = Unix.stdin
652 ; wsfd = Unix.stdin
653 ; errfd = None
654 ; stderr = Unix.stderr
655 ; errmsgs = Buffer.create 0
656 ; newerrmsgs = false
657 ; x = 0
658 ; y = 0
659 ; w = 0
660 ; scrollw = 0
661 ; hscrollh = 0
662 ; anchor = emptyanchor
663 ; ranchors = []
664 ; layout = []
665 ; maxy = max_int
666 ; tilelru = Queue.create ()
667 ; pagemap = Hashtbl.create 10
668 ; tilemap = Hashtbl.create 10
669 ; pdims = []
670 ; pagecount = 0
671 ; currently = Idle
672 ; mstate = Mnone
673 ; rects = []
674 ; rects1 = []
675 ; text = ""
676 ; mode = View
677 ; fullscreen = None
678 ; searchpattern = ""
679 ; outlines = [||]
680 ; bookmarks = []
681 ; path = ""
682 ; password = ""
683 ; geomcmds = firstgeomcmds
684 ; hists =
685 { nav = cbnew 10 emptyanchor
686 ; pat = cbnew 10 ""
687 ; pag = cbnew 10 ""
688 ; sel = cbnew 10 ""
690 ; memused = 0
691 ; gen = 0
692 ; throttle = None
693 ; autoscroll = None
694 ; ghyll = noghyll
695 ; help = makehelp ()
696 ; docinfo = []
697 ; texid = None
698 ; prevzoom = 1.0
699 ; progress = -1.0
700 ; uioh = nouioh
701 ; redisplay = true
702 ; mpos = (-1, -1)
703 ; keystate = KSnone
704 ; glinks = false
705 ; prevcolumns = None
709 let vlog fmt =
710 if conf.verbose
711 then
712 Printf.kprintf prerr_endline fmt
713 else
714 Printf.kprintf ignore fmt
717 let launchpath () =
718 if String.length conf.pathlauncher = 0
719 then print_endline state.path
720 else (
721 let re = Str.regexp "%s" in
722 let command = Str.global_replace re state.path conf.pathlauncher in
723 try popen command []
724 with exn ->
725 Printf.eprintf
726 "failed to execute `%s': %s\n" command (Printexc.to_string exn);
727 flush stderr;
731 module Ne = struct
732 type 'a t = | Res of 'a | Exn of exn;;
734 let pipe () =
735 try Res (Unix.pipe ())
736 with exn -> Exn exn
739 let clo fd f =
740 try Unix.close fd
741 with exn -> f (Printexc.to_string exn)
744 let dup fd =
745 try Res (Unix.dup fd)
746 with exn -> Exn exn
749 let dup2 fd1 fd2 =
750 try Res (Unix.dup2 fd1 fd2)
751 with exn -> Exn exn
753 end;;
755 let redirectstderr () =
756 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
757 if conf.redirectstderr
758 then
759 match Ne.pipe () with
760 | Ne.Exn exn ->
761 dolog "failed to create stderr redirection pipes: %s"
762 (Printexc.to_string exn)
764 | Ne.Res (r, w) ->
765 begin match Ne.dup Unix.stderr with
766 | Ne.Exn exn ->
767 dolog "failed to dup stderr: %s" (Printexc.to_string exn);
768 Ne.clo r (clofail "pipe/r");
769 Ne.clo w (clofail "pipe/w");
771 | Ne.Res dupstderr ->
772 begin match Ne.dup2 w Unix.stderr with
773 | Ne.Exn exn ->
774 dolog "failed to dup2 to stderr: %s"
775 (Printexc.to_string exn);
776 Ne.clo dupstderr (clofail "stderr duplicate");
777 Ne.clo r (clofail "redir pipe/r");
778 Ne.clo w (clofail "redir pipe/w");
780 | Ne.Res () ->
781 state.stderr <- dupstderr;
782 state.errfd <- Some r;
783 end;
785 else (
786 state.newerrmsgs <- false;
787 begin match state.errfd with
788 | Some fd ->
789 begin match Ne.dup2 state.stderr Unix.stderr with
790 | Ne.Exn exn ->
791 dolog "failed to dup2 original stderr: %s"
792 (Printexc.to_string exn)
793 | Ne.Res () ->
794 Ne.clo fd (clofail "dup of stderr");
795 Unix.dup2 state.stderr Unix.stderr;
796 state.errfd <- None;
797 end;
798 | None -> ()
799 end;
800 prerr_string (Buffer.contents state.errmsgs);
801 flush stderr;
802 Buffer.clear state.errmsgs;
806 module G =
807 struct
808 let postRedisplay who =
809 if conf.verbose
810 then prerr_endline ("redisplay for " ^ who);
811 state.redisplay <- true;
813 end;;
815 let getopaque pageno =
816 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
817 with Not_found -> None
820 let putopaque pageno opaque =
821 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
824 let pagetranslatepoint l x y =
825 let dy = y - l.pagedispy in
826 let y = dy + l.pagey in
827 let dx = x - l.pagedispx in
828 let x = dx + l.pagex in
829 (x, y);
832 let getunder x y =
833 let rec f = function
834 | l :: rest ->
835 begin match getopaque l.pageno with
836 | Some opaque ->
837 let x0 = l.pagedispx in
838 let x1 = x0 + l.pagevw in
839 let y0 = l.pagedispy in
840 let y1 = y0 + l.pagevh in
841 if y >= y0 && y <= y1 && x >= x0 && x <= x1
842 then
843 let px, py = pagetranslatepoint l x y in
844 match whatsunder opaque px py with
845 | Unone -> f rest
846 | under -> under
847 else f rest
848 | _ ->
849 f rest
851 | [] -> Unone
853 f state.layout
856 let showtext c s =
857 state.text <- Printf.sprintf "%c%s" c s;
858 G.postRedisplay "showtext";
861 let undertext = function
862 | Unone -> "none"
863 | Ulinkuri s -> s
864 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
865 | Utext s -> "font: " ^ s
866 | Uunexpected s -> "unexpected: " ^ s
867 | Ulaunch s -> "launch: " ^ s
868 | Unamed s -> "named: " ^ s
869 | Uremote (filename, pageno) ->
870 Printf.sprintf "%s: page %d" filename (pageno+1)
873 let updateunder x y =
874 match getunder x y with
875 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
876 | Ulinkuri uri ->
877 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
878 Wsi.setcursor Wsi.CURSOR_INFO
879 | Ulinkgoto (pageno, _) ->
880 if conf.underinfo
881 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
882 Wsi.setcursor Wsi.CURSOR_INFO
883 | Utext s ->
884 if conf.underinfo then showtext 'f' ("ont: " ^ s);
885 Wsi.setcursor Wsi.CURSOR_TEXT
886 | Uunexpected s ->
887 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
888 Wsi.setcursor Wsi.CURSOR_INHERIT
889 | Ulaunch s ->
890 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
891 Wsi.setcursor Wsi.CURSOR_INHERIT
892 | Unamed s ->
893 if conf.underinfo then showtext 'n' ("amed: " ^ s);
894 Wsi.setcursor Wsi.CURSOR_INHERIT
895 | Uremote (filename, pageno) ->
896 if conf.underinfo then showtext 'r'
897 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
898 Wsi.setcursor Wsi.CURSOR_INFO
901 let showlinktype under =
902 if conf.underinfo
903 then
904 match under with
905 | Unone -> ()
906 | under ->
907 let s = undertext under in
908 showtext ' ' s
911 let addchar s c =
912 let b = Buffer.create (String.length s + 1) in
913 Buffer.add_string b s;
914 Buffer.add_char b c;
915 Buffer.contents b;
918 let colorspace_of_string s =
919 match String.lowercase s with
920 | "rgb" -> Rgb
921 | "bgr" -> Bgr
922 | "gray" -> Gray
923 | _ -> failwith "invalid colorspace"
926 let int_of_colorspace = function
927 | Rgb -> 0
928 | Bgr -> 1
929 | Gray -> 2
932 let colorspace_of_int = function
933 | 0 -> Rgb
934 | 1 -> Bgr
935 | 2 -> Gray
936 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
939 let colorspace_to_string = function
940 | Rgb -> "rgb"
941 | Bgr -> "bgr"
942 | Gray -> "gray"
945 let intentry_with_suffix text key =
946 let c =
947 if key >= 32 && key < 127
948 then Char.chr key
949 else '\000'
951 match Char.lowercase c with
952 | '0' .. '9' ->
953 let text = addchar text c in
954 TEcont text
956 | 'k' | 'm' | 'g' ->
957 let text = addchar text c in
958 TEcont text
960 | _ ->
961 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
962 TEcont text
965 let multicolumns_to_string (n, a, b) =
966 if a = 0 && b = 0
967 then Printf.sprintf "%d" n
968 else Printf.sprintf "%d,%d,%d" n a b;
971 let multicolumns_of_string s =
973 (int_of_string s, 0, 0)
974 with _ ->
975 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
976 if a > 1 || b > 1
977 then failwith "subtly broken"; (n, a, b)
981 let readcmd fd =
982 let s = "xxxx" in
983 let n = Unix.read fd s 0 4 in
984 if n != 4 then failwith "incomplete read(len)";
985 let len = 0
986 lor (Char.code s.[0] lsl 24)
987 lor (Char.code s.[1] lsl 16)
988 lor (Char.code s.[2] lsl 8)
989 lor (Char.code s.[3] lsl 0)
991 let s = String.create len in
992 let n = Unix.read fd s 0 len in
993 if n != len then failwith "incomplete read(data)";
997 let btod b = if b then 1 else 0;;
999 let wcmd fmt =
1000 let b = Buffer.create 16 in
1001 Buffer.add_string b "llll";
1002 Printf.kbprintf
1003 (fun b ->
1004 let s = Buffer.contents b in
1005 let n = String.length s in
1006 let len = n - 4 in
1007 (* dolog "wcmd %S" (String.sub s 4 len); *)
1008 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1009 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1010 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1011 s.[3] <- Char.chr (len land 0xff);
1012 let n' = Unix.write state.sw s 0 n in
1013 if n' != n then failwith "write failed";
1014 ) b fmt;
1017 let calcips h =
1018 let d = conf.winh - h in
1019 max conf.interpagespace ((d + 1) / 2)
1022 let rowyh (c, coverA, coverB) b n =
1023 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1024 then
1025 let _, _, vy, (_, _, h, _) = b.(n) in
1026 (vy, h)
1027 else
1028 let n' = n - coverA in
1029 let d = n' mod c in
1030 let s = n - d in
1031 let e = min state.pagecount (s + c) in
1032 let rec find m miny maxh = if m = e then miny, maxh else
1033 let _, _, y, (_, _, h, _) = b.(m) in
1034 let miny = min miny y in
1035 let maxh = max maxh h in
1036 find (m+1) miny maxh
1037 in find s max_int 0
1040 let calcheight () =
1041 match conf.columns with
1042 | Cmulti ((_, _, _) as cl, b) ->
1043 if Array.length b > 0
1044 then
1045 let y, h = rowyh cl b (Array.length b - 1) in
1046 y + h + (if conf.presentation then calcips h else 0)
1047 else 0
1048 | Csingle b ->
1049 if Array.length b > 0
1050 then
1051 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1052 y + h + (if conf.presentation then calcips h else 0)
1053 else 0
1054 | Csplit (_, b) ->
1055 if Array.length b > 0
1056 then
1057 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1058 y + h
1059 else 0
1062 let getpageyh pageno =
1063 let pageno = bound pageno 0 (state.pagecount-1) in
1064 match conf.columns with
1065 | Csingle b ->
1066 if Array.length b = 0
1067 then 0, 0
1068 else
1069 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1070 let y =
1071 if conf.presentation
1072 then y - calcips h
1073 else y
1075 y, h
1076 | Cmulti (cl, b) ->
1077 if Array.length b = 0
1078 then 0, 0
1079 else
1080 let y, h = rowyh cl b pageno in
1081 let y =
1082 if conf.presentation
1083 then y - calcips h
1084 else y
1086 y, h
1087 | Csplit (c, b) ->
1088 if Array.length b = 0
1089 then 0, 0
1090 else
1091 let n = pageno*c in
1092 let (_, _, y, (_, _, h, _)) = b.(n) in
1093 y, h
1096 let getpagedim pageno =
1097 let rec f ppdim l =
1098 match l with
1099 | (n, _, _, _) as pdim :: rest ->
1100 if n >= pageno
1101 then (if n = pageno then pdim else ppdim)
1102 else f pdim rest
1104 | [] -> ppdim
1106 f (-1, -1, -1, -1) state.pdims
1109 let getpagey pageno = fst (getpageyh pageno);;
1111 let nogeomcmds cmds =
1112 match cmds with
1113 | s, [] -> String.length s = 0
1114 | _ -> false
1117 let page_of_y y =
1118 let ((c, coverA, coverB) as cl), b =
1119 match conf.columns with
1120 | Csingle b -> (1, 0, 0), b
1121 | Cmulti (c, b) -> c, b
1122 | Csplit (_, b) -> (1, 0, 0), b
1124 let rec bsearch nmin nmax =
1125 if nmin > nmax
1126 then bound nmin 0 (state.pagecount-1)
1127 else
1128 let n = (nmax + nmin) / 2 in
1129 let vy, h = rowyh cl b n in
1130 let y0, y1 =
1131 if conf.presentation
1132 then
1133 let ips = calcips h in
1134 let y0 = vy - ips in
1135 let y1 = vy + h + ips in
1136 y0, y1
1137 else (
1138 if n = 0
1139 then 0, vy + h + conf.interpagespace
1140 else
1141 let y0 = vy - conf.interpagespace in
1142 y0, y0 + h + conf.interpagespace
1145 if y >= y0 && y < y1
1146 then (
1147 if c = 1
1148 then n
1149 else (
1150 if n > coverA
1151 then
1152 if n < state.pagecount - coverB
1153 then ((n-coverA)/c)*c + coverA
1154 else n
1155 else n
1158 else (
1159 if y > y0
1160 then bsearch (n+1) nmax
1161 else bsearch nmin (n-1)
1164 let r = bsearch 0 (state.pagecount-1) in
1168 let layoutN ((columns, coverA, coverB), b) y sh =
1169 let sh = sh - state.hscrollh in
1170 let rec fold accu n =
1171 if n = Array.length b
1172 then accu
1173 else
1174 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1175 if (vy - y) > sh &&
1176 (n = coverA - 1
1177 || n = state.pagecount - coverB
1178 || (n - coverA) mod columns = columns - 1)
1179 then accu
1180 else
1181 let accu =
1182 if vy + h > y
1183 then
1184 let pagey = max 0 (y - vy) in
1185 let pagedispy = if pagey > 0 then 0 else vy - y in
1186 let pagedispx, pagex =
1187 let pdx =
1188 if n = coverA - 1 || n = state.pagecount - coverB
1189 then state.x + (conf.winw - state.scrollw - w) / 2
1190 else dx + xoff + state.x
1192 if pdx < 0
1193 then 0, -pdx
1194 else pdx, 0
1196 let pagevw =
1197 let vw = conf.winw - state.scrollw - pagedispx in
1198 let pw = w - pagex in
1199 min vw pw
1201 let pagevh = min (h - pagey) (sh - pagedispy) in
1202 if pagevw > 0 && pagevh > 0
1203 then
1204 let e =
1205 { pageno = n
1206 ; pagedimno = pdimno
1207 ; pagew = w
1208 ; pageh = h
1209 ; pagex = pagex
1210 ; pagey = pagey
1211 ; pagevw = pagevw
1212 ; pagevh = pagevh
1213 ; pagedispx = pagedispx
1214 ; pagedispy = pagedispy
1215 ; pagecol = 0
1218 e :: accu
1219 else
1220 accu
1221 else
1222 accu
1224 fold accu (n+1)
1226 List.rev (fold [] (page_of_y y));
1229 let layoutS (columns, b) y sh =
1230 let sh = sh - state.hscrollh in
1231 let rec fold accu n =
1232 if n = Array.length b
1233 then accu
1234 else
1235 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1236 if (vy - y) > sh
1237 then accu
1238 else
1239 let accu =
1240 if vy + pageh > y
1241 then
1242 let x = xoff + state.x in
1243 let pagey = max 0 (y - vy) in
1244 let pagedispy = if pagey > 0 then 0 else vy - y in
1245 let pagedispx, pagex =
1246 if px = 0
1247 then (
1248 if x < 0
1249 then 0, -x
1250 else x, 0
1252 else (
1253 let px = px - x in
1254 if px < 0
1255 then -px, 0
1256 else 0, px
1259 let pagecolw = pagew/columns in
1260 let pagedispx =
1261 if pagecolw < conf.winw
1262 then pagedispx + ((conf.winw - state.scrollw - pagecolw) / 2)
1263 else pagedispx
1265 let pagevw =
1266 let vw = conf.winw - pagedispx - state.scrollw in
1267 let pw = pagew - pagex in
1268 min vw pw
1270 let pagevw = min pagevw pagecolw in
1271 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1272 if pagevw > 0 && pagevh > 0
1273 then
1274 let e =
1275 { pageno = n/columns
1276 ; pagedimno = pdimno
1277 ; pagew = pagew
1278 ; pageh = pageh
1279 ; pagex = pagex
1280 ; pagey = pagey
1281 ; pagevw = pagevw
1282 ; pagevh = pagevh
1283 ; pagedispx = pagedispx
1284 ; pagedispy = pagedispy
1285 ; pagecol = n mod columns
1288 e :: accu
1289 else
1290 accu
1291 else
1292 accu
1294 fold accu (n+1)
1296 List.rev (fold [] 0)
1299 let layout y sh =
1300 if nogeomcmds state.geomcmds
1301 then
1302 match conf.columns with
1303 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1304 | Cmulti c -> layoutN c y sh
1305 | Csplit s -> layoutS s y sh
1306 else []
1309 let clamp incr =
1310 let y = state.y + incr in
1311 let y = max 0 y in
1312 let y = min y (state.maxy - (if conf.maxhfit then conf.winh else 0)) in
1316 let itertiles l f =
1317 let tilex = l.pagex mod conf.tilew in
1318 let tiley = l.pagey mod conf.tileh in
1320 let col = l.pagex / conf.tilew in
1321 let row = l.pagey / conf.tileh in
1323 let rec rowloop row y0 dispy h =
1324 if h = 0
1325 then ()
1326 else (
1327 let dh = conf.tileh - y0 in
1328 let dh = min h dh in
1329 let rec colloop col x0 dispx w =
1330 if w = 0
1331 then ()
1332 else (
1333 let dw = conf.tilew - x0 in
1334 let dw = min w dw in
1336 f col row dispx dispy x0 y0 dw dh;
1337 colloop (col+1) 0 (dispx+dw) (w-dw)
1340 colloop col tilex l.pagedispx l.pagevw;
1341 rowloop (row+1) 0 (dispy+dh) (h-dh)
1344 if l.pagevw > 0 && l.pagevh > 0
1345 then rowloop row tiley l.pagedispy l.pagevh;
1348 let gettileopaque l col row =
1349 let key =
1350 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1352 try Some (Hashtbl.find state.tilemap key)
1353 with Not_found -> None
1356 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1357 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1358 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1361 let drawtiles l color =
1362 GlDraw.color color;
1363 let f col row x y tilex tiley w h =
1364 match gettileopaque l col row with
1365 | Some (opaque, _, t) ->
1366 let params = x, y, w, h, tilex, tiley in
1367 if conf.invert
1368 then (
1369 Gl.enable `blend;
1370 GlFunc.blend_func `zero `one_minus_src_color;
1372 drawtile params opaque;
1373 if conf.invert
1374 then Gl.disable `blend;
1375 if conf.debug
1376 then (
1377 let s = Printf.sprintf
1378 "%d[%d,%d] %f sec"
1379 l.pageno col row t
1381 let w = measurestr fstate.fontsize s in
1382 GlMisc.push_attrib [`current];
1383 GlDraw.color (0.0, 0.0, 0.0);
1384 GlDraw.rect
1385 (float (x-2), float (y-2))
1386 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1387 GlDraw.color (1.0, 1.0, 1.0);
1388 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1389 GlMisc.pop_attrib ();
1392 | _ ->
1393 let w =
1394 let lw = conf.winw - state.scrollw - x in
1395 min lw w
1396 and h =
1397 let lh = conf.winh - y in
1398 min lh h
1400 begin match state.texid with
1401 | Some id ->
1402 Gl.enable `texture_2d;
1403 GlTex.bind_texture `texture_2d id;
1404 let x0 = float x
1405 and y0 = float y
1406 and x1 = float (x+w)
1407 and y1 = float (y+h) in
1409 let tw = float w /. 16.0
1410 and th = float h /. 16.0 in
1411 let tx0 = float tilex /. 16.0
1412 and ty0 = float tiley /. 16.0 in
1413 let tx1 = tx0 +. tw
1414 and ty1 = ty0 +. th in
1415 GlDraw.begins `quads;
1416 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1417 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1418 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1419 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1420 GlDraw.ends ();
1422 Gl.disable `texture_2d;
1423 | None ->
1424 GlDraw.color (1.0, 1.0, 1.0);
1425 GlDraw.rect
1426 (float x, float y)
1427 (float (x+w), float (y+h));
1428 end;
1429 if w > 128 && h > fstate.fontsize + 10
1430 then (
1431 GlDraw.color (0.0, 0.0, 0.0);
1432 let c, r =
1433 if conf.verbose
1434 then (col*conf.tilew, row*conf.tileh)
1435 else col, row
1437 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1439 GlDraw.color color;
1441 itertiles l f
1444 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1446 let tilevisible1 l x y =
1447 let ax0 = l.pagex
1448 and ax1 = l.pagex + l.pagevw
1449 and ay0 = l.pagey
1450 and ay1 = l.pagey + l.pagevh in
1452 let bx0 = x
1453 and by0 = y in
1454 let bx1 = min (bx0 + conf.tilew) l.pagew
1455 and by1 = min (by0 + conf.tileh) l.pageh in
1457 let rx0 = max ax0 bx0
1458 and ry0 = max ay0 by0
1459 and rx1 = min ax1 bx1
1460 and ry1 = min ay1 by1 in
1462 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1463 nonemptyintersection
1466 let tilevisible layout n x y =
1467 let rec findpageinlayout m = function
1468 | l :: rest when l.pageno = n ->
1469 tilevisible1 l x y || (
1470 match conf.columns with
1471 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1472 | _ -> false
1474 | _ :: rest -> findpageinlayout 0 rest
1475 | [] -> false
1477 findpageinlayout 0 layout;
1480 let tileready l x y =
1481 tilevisible1 l x y &&
1482 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1485 let tilepage n p layout =
1486 let rec loop = function
1487 | l :: rest ->
1488 if l.pageno = n
1489 then
1490 let f col row _ _ _ _ _ _ =
1491 if state.currently = Idle
1492 then
1493 match gettileopaque l col row with
1494 | Some _ -> ()
1495 | None ->
1496 let x = col*conf.tilew
1497 and y = row*conf.tileh in
1498 let w =
1499 let w = l.pagew - x in
1500 min w conf.tilew
1502 let h =
1503 let h = l.pageh - y in
1504 min h conf.tileh
1506 wcmd "tile %s %d %d %d %d" p x y w h;
1507 state.currently <-
1508 Tiling (
1509 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1510 conf.tilew, conf.tileh
1513 itertiles l f;
1514 else
1515 loop rest
1517 | [] -> ()
1519 if nogeomcmds state.geomcmds
1520 then loop layout;
1523 let preloadlayout y =
1524 let y = if y < conf.winh then 0 else y - conf.winh in
1525 let h = conf.winh*3 in
1526 layout y h;
1529 let load pages =
1530 let rec loop pages =
1531 if state.currently != Idle
1532 then ()
1533 else
1534 match pages with
1535 | l :: rest ->
1536 begin match getopaque l.pageno with
1537 | None ->
1538 wcmd "page %d %d" l.pageno l.pagedimno;
1539 state.currently <- Loading (l, state.gen);
1540 | Some opaque ->
1541 tilepage l.pageno opaque pages;
1542 loop rest
1543 end;
1544 | _ -> ()
1546 if nogeomcmds state.geomcmds
1547 then loop pages
1550 let preload pages =
1551 load pages;
1552 if conf.preload && state.currently = Idle
1553 then load (preloadlayout state.y);
1556 let layoutready layout =
1557 let rec fold all ls =
1558 all && match ls with
1559 | l :: rest ->
1560 let seen = ref false in
1561 let allvisible = ref true in
1562 let foo col row _ _ _ _ _ _ =
1563 seen := true;
1564 allvisible := !allvisible &&
1565 begin match gettileopaque l col row with
1566 | Some _ -> true
1567 | None -> false
1570 itertiles l foo;
1571 fold (!seen && !allvisible) rest
1572 | [] -> true
1574 let alltilesvisible = fold true layout in
1575 alltilesvisible;
1578 let gotoy y =
1579 let y = bound y 0 state.maxy in
1580 let y, layout, proceed =
1581 match conf.maxwait with
1582 | Some time when state.ghyll == noghyll ->
1583 begin match state.throttle with
1584 | None ->
1585 let layout = layout y conf.winh in
1586 let ready = layoutready layout in
1587 if not ready
1588 then (
1589 load layout;
1590 state.throttle <- Some (layout, y, now ());
1592 else G.postRedisplay "gotoy showall (None)";
1593 y, layout, ready
1594 | Some (_, _, started) ->
1595 let dt = now () -. started in
1596 if dt > time
1597 then (
1598 state.throttle <- None;
1599 let layout = layout y conf.winh in
1600 load layout;
1601 G.postRedisplay "maxwait";
1602 y, layout, true
1604 else -1, [], false
1607 | _ ->
1608 let layout = layout y conf.winh in
1609 if true || layoutready layout
1610 then G.postRedisplay "gotoy ready";
1611 y, layout, true
1613 if proceed
1614 then (
1615 state.y <- y;
1616 state.layout <- layout;
1617 begin match state.mode with
1618 | LinkNav (Ltexact (pageno, linkno)) ->
1619 let rec loop = function
1620 | [] ->
1621 state.mode <- LinkNav (Ltgendir 0)
1622 | l :: _ when l.pageno = pageno ->
1623 begin match getopaque pageno with
1624 | None ->
1625 state.mode <- LinkNav (Ltgendir 0)
1626 | Some opaque ->
1627 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1628 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1629 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1630 then state.mode <- LinkNav (Ltgendir 0)
1632 | _ :: rest -> loop rest
1634 loop layout
1635 | _ -> ()
1636 end;
1637 begin match state.mode with
1638 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1639 if not (pagevisible layout pageno)
1640 then (
1641 match state.layout with
1642 | [] -> ()
1643 | l :: _ ->
1644 state.mode <- Birdseye (
1645 conf, leftx, l.pageno, hooverpageno, anchor
1648 | LinkNav (Ltgendir dir as lt) ->
1649 let linknav =
1650 let rec loop = function
1651 | [] -> lt
1652 | l :: rest ->
1653 match getopaque l.pageno with
1654 | None -> loop rest
1655 | Some opaque ->
1656 let link =
1657 let ld =
1658 if dir = 0
1659 then LDfirstvisible (l.pagex, l.pagey, dir)
1660 else (
1661 if dir > 0 then LDfirst else LDlast
1664 findlink opaque ld
1666 match link with
1667 | Lnotfound -> loop rest
1668 | Lfound n ->
1669 showlinktype (getlink opaque n);
1670 Ltexact (l.pageno, n)
1672 loop state.layout
1674 state.mode <- LinkNav linknav
1675 | _ -> ()
1676 end;
1677 preload layout;
1679 state.ghyll <- noghyll;
1680 if conf.updatecurs
1681 then (
1682 let mx, my = state.mpos in
1683 updateunder mx my;
1687 let conttiling pageno opaque =
1688 tilepage pageno opaque
1689 (if conf.preload then preloadlayout state.y else state.layout)
1692 let gotoy_and_clear_text y =
1693 if not conf.verbose then state.text <- "";
1694 gotoy y;
1697 let getanchor1 l =
1698 let top =
1699 let coloff = l.pagecol * l.pageh in
1700 float (l.pagey + coloff) /. float l.pageh
1702 let dtop =
1703 if l.pagedispy = 0
1704 then
1706 else
1707 if conf.presentation
1708 then float l.pagedispy /. float (calcips l.pageh)
1709 else float l.pagedispy /. float conf.interpagespace
1711 (l.pageno, top, dtop)
1714 let getanchor () =
1715 match state.layout with
1716 | l :: _ -> getanchor1 l
1717 | [] ->
1718 let n = page_of_y state.y in
1719 let y, h = getpageyh n in
1720 let dy = y - state.y in
1721 let dtop =
1722 if conf.presentation
1723 then
1724 let ips = calcips h in
1725 float (dy + ips) /. float ips
1726 else
1727 float dy /. float conf.interpagespace
1729 (n, 0.0, dtop)
1732 let getanchory (n, top, dtop) =
1733 let y, h = getpageyh n in
1734 if conf.presentation
1735 then
1736 let ips = calcips h in
1737 y + truncate (top*.float h -. dtop*.float ips) + ips;
1738 else
1739 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1742 let gotoanchor anchor =
1743 gotoy (getanchory anchor);
1746 let addnav () =
1747 cbput state.hists.nav (getanchor ());
1750 let getnav dir =
1751 let anchor = cbgetc state.hists.nav dir in
1752 getanchory anchor;
1755 let gotoghyll y =
1756 let scroll f n a b =
1757 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1758 let snake f a b =
1759 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1760 if f < a
1761 then s (float f /. float a)
1762 else (
1763 if f > b
1764 then 1.0 -. s ((float (f-b) /. float (n-b)))
1765 else 1.0
1768 snake f a b
1769 and summa f n a b =
1770 (* courtesy:
1771 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1772 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1773 let iv1 = iv f in
1774 let ins = float a *. iv1
1775 and outs = float (n-b) *. iv1 in
1776 let ones = b - a in
1777 ins +. outs +. float ones
1779 let rec set (_N, _A, _B) y sy =
1780 let sum = summa 1.0 _N _A _B in
1781 let dy = float (y - sy) in
1782 state.ghyll <- (
1783 let rec gf n y1 o =
1784 if n >= _N
1785 then state.ghyll <- noghyll
1786 else
1787 let go n =
1788 let s = scroll n _N _A _B in
1789 let y1 = y1 +. ((s *. dy) /. sum) in
1790 gotoy_and_clear_text (truncate y1);
1791 state.ghyll <- gf (n+1) y1;
1793 match o with
1794 | None -> go n
1795 | Some y' -> set (_N/2, 1, 1) y' state.y
1797 gf 0 (float state.y)
1800 match conf.ghyllscroll with
1801 | None ->
1802 gotoy_and_clear_text y
1803 | Some nab ->
1804 if state.ghyll == noghyll
1805 then set nab y state.y
1806 else state.ghyll (Some y)
1809 let gotopage n top =
1810 let y, h = getpageyh n in
1811 let y = y + (truncate (top *. float h)) in
1812 gotoghyll y
1815 let gotopage1 n top =
1816 let y = getpagey n in
1817 let y = y + top in
1818 gotoghyll y
1821 let invalidate s f =
1822 state.layout <- [];
1823 state.pdims <- [];
1824 state.rects <- [];
1825 state.rects1 <- [];
1826 match state.geomcmds with
1827 | ps, [] when String.length ps = 0 ->
1828 f ();
1829 state.geomcmds <- s, [];
1831 | ps, [] ->
1832 state.geomcmds <- ps, [s, f];
1834 | ps, (s', _) :: rest when s' = s ->
1835 state.geomcmds <- ps, ((s, f) :: rest);
1837 | ps, cmds ->
1838 state.geomcmds <- ps, ((s, f) :: cmds);
1841 let opendoc path password =
1842 state.path <- path;
1843 state.password <- password;
1844 state.gen <- state.gen + 1;
1845 state.docinfo <- [];
1847 setaalevel conf.aalevel;
1848 Wsi.settitle ("llpp " ^ Filename.basename path);
1849 wcmd "open %s\000%s\000" path password;
1850 invalidate "reqlayout"
1851 (fun () ->
1852 wcmd "reqlayout %d %d" conf.angle (btod conf.proportional));
1855 let scalecolor c =
1856 let c = c *. conf.colorscale in
1857 (c, c, c);
1860 let scalecolor2 (r, g, b) =
1861 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1864 let docolumns = function
1865 | Csingle _ ->
1866 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1867 let rec loop pageno pdimno pdim y ph pdims =
1868 if pageno = state.pagecount
1869 then ()
1870 else
1871 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1872 match pdims with
1873 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1874 pdimno+1, pdim, rest
1875 | _ ->
1876 pdimno, pdim, pdims
1878 let x = max 0 (((conf.winw - state.scrollw - w) / 2) - xoff) in
1879 let y = y +
1880 (if conf.presentation
1881 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1882 else (if pageno = 0 then 0 else conf.interpagespace)
1885 a.(pageno) <- (pdimno, x, y, pdim);
1886 loop (pageno+1) pdimno pdim (y + h) h pdims
1888 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1889 conf.columns <- Csingle a;
1891 | Cmulti ((columns, coverA, coverB), _) ->
1892 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1893 let rec loop pageno pdimno pdim x y rowh pdims =
1894 let rec fixrow m = if m = pageno then () else
1895 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1896 if h < rowh
1897 then (
1898 let y = y + (rowh - h) / 2 in
1899 a.(m) <- (pdimno, x, y, pdim);
1901 fixrow (m+1)
1903 if pageno = state.pagecount
1904 then fixrow (((pageno - 1) / columns) * columns)
1905 else
1906 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1907 match pdims with
1908 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1909 pdimno+1, pdim, rest
1910 | _ ->
1911 pdimno, pdim, pdims
1913 let x, y, rowh' =
1914 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1915 then (
1916 let x = (conf.winw - state.scrollw - w) / 2 in
1917 let ips =
1918 if conf.presentation then calcips h else conf.interpagespace in
1919 x, y + ips + rowh, h
1921 else (
1922 if (pageno - coverA) mod columns = 0
1923 then (
1924 let x = max 0 (conf.winw - state.scrollw - state.w) / 2 in
1925 let y =
1926 if conf.presentation
1927 then
1928 let ips = calcips h in
1929 y + (if pageno = 0 then 0 else calcips rowh + ips)
1930 else
1931 y + (if pageno = 0 then 0 else conf.interpagespace)
1933 x, y + rowh, h
1935 else x, y, max rowh h
1938 let y =
1939 if pageno > 1 && (pageno - coverA) mod columns = 0
1940 then (
1941 let y =
1942 if pageno = columns && conf.presentation
1943 then (
1944 let ips = calcips rowh in
1945 for i = 0 to pred columns
1947 let (pdimno, x, y, pdim) = a.(i) in
1948 a.(i) <- (pdimno, x, y+ips, pdim)
1949 done;
1950 y+ips;
1952 else y
1954 fixrow (pageno - columns);
1957 else y
1959 a.(pageno) <- (pdimno, x, y, pdim);
1960 let x = x + w + xoff*2 + conf.interpagespace in
1961 loop (pageno+1) pdimno pdim x y rowh' pdims
1963 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
1964 conf.columns <- Cmulti ((columns, coverA, coverB), a);
1966 | Csplit (c, _) ->
1967 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1968 let rec loop pageno pdimno pdim y pdims =
1969 if pageno = state.pagecount
1970 then ()
1971 else
1972 let pdimno, ((_, w, h, _) as pdim), pdims =
1973 match pdims with
1974 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1975 pdimno+1, pdim, rest
1976 | _ ->
1977 pdimno, pdim, pdims
1979 let cw = w / c in
1980 let rec loop1 n x y =
1981 if n = c then y else (
1982 a.(pageno*c + n) <- (pdimno, x, y, pdim);
1983 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
1986 let y = loop1 0 0 y in
1987 loop (pageno+1) pdimno pdim y pdims
1989 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
1990 conf.columns <- Csplit (c, a);
1993 let represent () =
1994 docolumns conf.columns;
1995 state.maxy <- calcheight ();
1996 state.hscrollh <-
1997 if state.w <= conf.winw - state.scrollw
1998 then 0
1999 else state.scrollw
2001 match state.mode with
2002 | Birdseye (_, _, pageno, _, _) ->
2003 let y, h = getpageyh pageno in
2004 let top = (conf.winh - h) / 2 in
2005 gotoy (max 0 (y - top))
2006 | _ -> gotoanchor state.anchor
2009 let reshape w h =
2010 GlDraw.viewport 0 0 w h;
2011 let firsttime = state.geomcmds == firstgeomcmds in
2012 if not firsttime && nogeomcmds state.geomcmds
2013 then state.anchor <- getanchor ();
2015 conf.winw <- w;
2016 let w = truncate (float w *. conf.zoom) - state.scrollw in
2017 let w = max w 2 in
2018 conf.winh <- h;
2019 setfontsize fstate.fontsize;
2020 GlMat.mode `modelview;
2021 GlMat.load_identity ();
2023 GlMat.mode `projection;
2024 GlMat.load_identity ();
2025 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2026 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2027 GlMat.scale3 (2.0 /. float conf.winw, 2.0 /. float conf.winh, 1.0);
2029 let relx =
2030 if conf.zoom <= 1.0
2031 then 0.0
2032 else float state.x /. float state.w
2034 invalidate "geometry"
2035 (fun () ->
2036 state.w <- w;
2037 if not firsttime
2038 then state.x <- truncate (relx *. float w);
2039 let w =
2040 match conf.columns with
2041 | Csingle _ -> w
2042 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2043 | Csplit (c, _) -> w * c
2045 wcmd "geometry %d %d" w h);
2048 let enttext () =
2049 let len = String.length state.text in
2050 let drawstring s =
2051 let hscrollh =
2052 match state.mode with
2053 | Textentry _
2054 | View ->
2055 let h, _, _ = state.uioh#scrollpw in
2057 | _ -> 0
2059 let rect x w =
2060 GlDraw.rect
2061 (x, float (conf.winh - (fstate.fontsize + 4) - hscrollh))
2062 (x+.w, float (conf.winh - hscrollh))
2065 let w = float (conf.winw - state.scrollw - 1) in
2066 if state.progress >= 0.0 && state.progress < 1.0
2067 then (
2068 GlDraw.color (0.3, 0.3, 0.3);
2069 let w1 = w *. state.progress in
2070 rect 0.0 w1;
2071 GlDraw.color (0.0, 0.0, 0.0);
2072 rect w1 (w-.w1)
2074 else (
2075 GlDraw.color (0.0, 0.0, 0.0);
2076 rect 0.0 w;
2079 GlDraw.color (1.0, 1.0, 1.0);
2080 drawstring fstate.fontsize
2081 (if len > 0 then 8 else 2) (conf.winh - hscrollh - 5) s;
2083 let s =
2084 match state.mode with
2085 | Textentry ((prefix, text, _, _, _, _), _) ->
2086 let s =
2087 if len > 0
2088 then
2089 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2090 else
2091 Printf.sprintf "%s%s_" prefix text
2095 | _ -> state.text
2097 let s =
2098 if state.newerrmsgs
2099 then (
2100 if not (istextentry state.mode)
2101 then
2102 let s1 = "(press 'e' to review error messasges)" in
2103 if String.length s > 0 then s ^ " " ^ s1 else s1
2104 else s
2106 else s
2108 if String.length s > 0
2109 then drawstring s
2112 let gctiles () =
2113 let len = Queue.length state.tilelru in
2114 let layout = lazy (
2115 match state.throttle with
2116 | None ->
2117 if conf.preload
2118 then preloadlayout state.y
2119 else state.layout
2120 | Some (layout, _, _) ->
2121 layout
2122 ) in
2123 let rec loop qpos =
2124 if state.memused <= conf.memlimit
2125 then ()
2126 else (
2127 if qpos < len
2128 then
2129 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2130 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2131 let (_, pw, ph, _) = getpagedim n in
2133 gen = state.gen
2134 && colorspace = conf.colorspace
2135 && angle = conf.angle
2136 && pagew = pw
2137 && pageh = ph
2138 && (
2139 let x = col*conf.tilew
2140 and y = row*conf.tileh in
2141 tilevisible (Lazy.force_val layout) n x y
2143 then Queue.push lruitem state.tilelru
2144 else (
2145 wcmd "freetile %s" p;
2146 state.memused <- state.memused - s;
2147 state.uioh#infochanged Memused;
2148 Hashtbl.remove state.tilemap k;
2150 loop (qpos+1)
2153 loop 0
2156 let flushtiles () =
2157 Queue.iter (fun (k, p, s) ->
2158 wcmd "freetile %s" p;
2159 state.memused <- state.memused - s;
2160 state.uioh#infochanged Memused;
2161 Hashtbl.remove state.tilemap k;
2162 ) state.tilelru;
2163 Queue.clear state.tilelru;
2164 load state.layout;
2167 let logcurrently = function
2168 | Idle -> dolog "Idle"
2169 | Loading (l, gen) ->
2170 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2171 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2172 dolog
2173 "Tiling %d[%d,%d] page=%s cs=%s angle"
2174 l.pageno col row pageopaque
2175 (colorspace_to_string colorspace)
2177 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2178 angle gen conf.angle state.gen
2179 tilew tileh
2180 conf.tilew conf.tileh
2182 | Outlining _ ->
2183 dolog "outlining"
2186 let act cmds =
2187 (* dolog "%S" cmds; *)
2188 let op, args =
2189 let spacepos =
2190 try String.index cmds ' '
2191 with Not_found -> -1
2193 if spacepos = -1
2194 then cmds, ""
2195 else
2196 let l = String.length cmds in
2197 let op = String.sub cmds 0 spacepos in
2198 op, begin
2199 if l - spacepos < 2 then ""
2200 else String.sub cmds (spacepos+1) (l-spacepos-1)
2203 match op with
2204 | "clear" ->
2205 state.uioh#infochanged Pdim;
2206 state.pdims <- [];
2208 | "clearrects" ->
2209 state.rects <- state.rects1;
2210 G.postRedisplay "clearrects";
2212 | "continue" ->
2213 let n =
2214 try Scanf.sscanf args "%u" (fun n -> n)
2215 with exn ->
2216 dolog "error processing 'continue' %S: %s"
2217 cmds (Printexc.to_string exn);
2218 exit 1;
2220 state.pagecount <- n;
2221 begin match state.currently with
2222 | Outlining l ->
2223 state.currently <- Idle;
2224 state.outlines <- Array.of_list (List.rev l)
2225 | _ -> ()
2226 end;
2228 let cur, cmds = state.geomcmds in
2229 if String.length cur = 0
2230 then failwith "umpossible";
2232 begin match List.rev cmds with
2233 | [] ->
2234 state.geomcmds <- "", [];
2235 represent ();
2236 | (s, f) :: rest ->
2237 f ();
2238 state.geomcmds <- s, List.rev rest;
2239 end;
2240 if conf.maxwait = None
2241 then G.postRedisplay "continue";
2243 | "title" ->
2244 Wsi.settitle args
2246 | "msg" ->
2247 showtext ' ' args
2249 | "vmsg" ->
2250 if conf.verbose
2251 then showtext ' ' args
2253 | "progress" ->
2254 let progress, text =
2256 Scanf.sscanf args "%f %n"
2257 (fun f pos ->
2258 f, String.sub args pos (String.length args - pos))
2259 with exn ->
2260 dolog "error processing 'progress' %S: %s"
2261 cmds (Printexc.to_string exn);
2262 exit 1;
2264 state.text <- text;
2265 state.progress <- progress;
2266 G.postRedisplay "progress"
2268 | "firstmatch" ->
2269 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2271 Scanf.sscanf args "%u %d %f %f %f %f %f %f %f %f"
2272 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2273 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2274 with exn ->
2275 dolog "error processing 'firstmatch' %S: %s"
2276 cmds (Printexc.to_string exn);
2277 exit 1;
2279 let y = (getpagey pageno) + truncate y0 in
2280 addnav ();
2281 gotoy y;
2282 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2284 | "match" ->
2285 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2287 Scanf.sscanf args "%u %d %f %f %f %f %f %f %f %f"
2288 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2289 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2290 with exn ->
2291 dolog "error processing 'match' %S: %s"
2292 cmds (Printexc.to_string exn);
2293 exit 1;
2295 state.rects1 <-
2296 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2298 | "page" ->
2299 let pageopaque, t =
2301 Scanf.sscanf args "%s %f" (fun p t -> p, t)
2302 with exn ->
2303 dolog "error processing 'page' %S: %s"
2304 cmds (Printexc.to_string exn);
2305 exit 1;
2307 begin match state.currently with
2308 | Loading (l, gen) ->
2309 vlog "page %d took %f sec" l.pageno t;
2310 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2311 begin match state.throttle with
2312 | None ->
2313 let preloadedpages =
2314 if conf.preload
2315 then preloadlayout state.y
2316 else state.layout
2318 let evict () =
2319 let module IntSet =
2320 Set.Make (struct type t = int let compare = (-) end) in
2321 let set =
2322 List.fold_left (fun s l -> IntSet.add l.pageno s)
2323 IntSet.empty preloadedpages
2325 let evictedpages =
2326 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2327 if not (IntSet.mem pageno set)
2328 then (
2329 wcmd "freepage %s" opaque;
2330 key :: accu
2332 else accu
2333 ) state.pagemap []
2335 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2337 evict ();
2338 state.currently <- Idle;
2339 if gen = state.gen
2340 then (
2341 tilepage l.pageno pageopaque state.layout;
2342 load state.layout;
2343 load preloadedpages;
2344 if pagevisible state.layout l.pageno
2345 && layoutready state.layout
2346 then G.postRedisplay "page";
2349 | Some (layout, _, _) ->
2350 state.currently <- Idle;
2351 tilepage l.pageno pageopaque layout;
2352 load state.layout
2353 end;
2355 | _ ->
2356 dolog "Inconsistent loading state";
2357 logcurrently state.currently;
2358 exit 1
2361 | "tile" ->
2362 let (x, y, opaque, size, t) =
2364 Scanf.sscanf args "%u %u %s %u %f"
2365 (fun x y p size t -> (x, y, p, size, t))
2366 with exn ->
2367 dolog "error processing 'tile' %S: %s"
2368 cmds (Printexc.to_string exn);
2369 exit 1;
2371 begin match state.currently with
2372 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2373 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2375 if tilew != conf.tilew || tileh != conf.tileh
2376 then (
2377 wcmd "freetile %s" opaque;
2378 state.currently <- Idle;
2379 load state.layout;
2381 else (
2382 puttileopaque l col row gen cs angle opaque size t;
2383 state.memused <- state.memused + size;
2384 state.uioh#infochanged Memused;
2385 gctiles ();
2386 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2387 opaque, size) state.tilelru;
2389 let layout =
2390 match state.throttle with
2391 | None -> state.layout
2392 | Some (layout, _, _) -> layout
2395 state.currently <- Idle;
2396 if gen = state.gen
2397 && conf.colorspace = cs
2398 && conf.angle = angle
2399 && tilevisible layout l.pageno x y
2400 then conttiling l.pageno pageopaque;
2402 begin match state.throttle with
2403 | None ->
2404 preload state.layout;
2405 if gen = state.gen
2406 && conf.colorspace = cs
2407 && conf.angle = angle
2408 && tilevisible state.layout l.pageno x y
2409 then G.postRedisplay "tile nothrottle";
2411 | Some (layout, y, _) ->
2412 let ready = layoutready layout in
2413 if ready
2414 then (
2415 state.y <- y;
2416 state.layout <- layout;
2417 state.throttle <- None;
2418 G.postRedisplay "throttle";
2420 else load layout;
2421 end;
2424 | _ ->
2425 dolog "Inconsistent tiling state";
2426 logcurrently state.currently;
2427 exit 1
2430 | "pdim" ->
2431 let pdim =
2433 Scanf.sscanf args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2434 with exn ->
2435 dolog "error processing 'pdim' %S: %s"
2436 cmds (Printexc.to_string exn);
2437 exit 1;
2439 state.uioh#infochanged Pdim;
2440 state.pdims <- pdim :: state.pdims
2442 | "o" ->
2443 let (l, n, t, h, pos) =
2445 Scanf.sscanf args "%u %u %d %u %n"
2446 (fun l n t h pos -> l, n, t, h, pos)
2447 with exn ->
2448 dolog "error processing 'o' %S: %s"
2449 cmds (Printexc.to_string exn);
2450 exit 1;
2452 let s = String.sub args pos (String.length args - pos) in
2453 let outline = (s, l, (n, float t /. float h, 0.0)) in
2454 begin match state.currently with
2455 | Outlining outlines ->
2456 state.currently <- Outlining (outline :: outlines)
2457 | Idle ->
2458 state.currently <- Outlining [outline]
2459 | currently ->
2460 dolog "invalid outlining state";
2461 logcurrently currently
2464 | "info" ->
2465 state.docinfo <- (1, args) :: state.docinfo
2467 | "infoend" ->
2468 state.uioh#infochanged Docinfo;
2469 state.docinfo <- List.rev state.docinfo
2471 | _ ->
2472 dolog "unknown cmd `%S'" cmds
2475 let onhist cb =
2476 let rc = cb.rc in
2477 let action = function
2478 | HCprev -> cbget cb ~-1
2479 | HCnext -> cbget cb 1
2480 | HCfirst -> cbget cb ~-(cb.rc)
2481 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2482 and cancel () = cb.rc <- rc
2483 in (action, cancel)
2486 let search pattern forward =
2487 if String.length pattern > 0
2488 then
2489 let pn, py =
2490 match state.layout with
2491 | [] -> 0, 0
2492 | l :: _ ->
2493 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2495 wcmd "search %d %d %d %d,%s\000"
2496 (btod conf.icase) pn py (btod forward) pattern;
2499 let intentry text key =
2500 let c =
2501 if key >= 32 && key < 127
2502 then Char.chr key
2503 else '\000'
2505 match c with
2506 | '0' .. '9' ->
2507 let text = addchar text c in
2508 TEcont text
2510 | _ ->
2511 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2512 TEcont text
2515 let linknentry text key =
2516 let c =
2517 if key >= 32 && key < 127
2518 then Char.chr key
2519 else '\000'
2521 match c with
2522 | 'a' .. 'z' ->
2523 let text = addchar text c in
2524 TEcont text
2526 | _ ->
2527 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2528 TEcont text
2531 let linkndone f s =
2532 if String.length s > 0
2533 then (
2534 let n =
2535 let l = String.length s in
2536 let rec loop pos n = if pos = l then n else
2537 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2538 loop (pos+1) (n*26 + m)
2539 in loop 0 0
2541 let rec loop n = function
2542 | [] -> ()
2543 | l :: rest ->
2544 match getopaque l.pageno with
2545 | None -> loop n rest
2546 | Some opaque ->
2547 let m = getlinkcount opaque in
2548 if n < m
2549 then (
2550 let under = getlink opaque n in
2551 f under
2553 else loop (n-m) rest
2555 loop n state.layout;
2559 let textentry text key =
2560 if key land 0xff00 = 0xff00
2561 then TEcont text
2562 else TEcont (text ^ Wsi.toutf8 key)
2565 let reqlayout angle proportional =
2566 match state.throttle with
2567 | None ->
2568 if nogeomcmds state.geomcmds
2569 then state.anchor <- getanchor ();
2570 conf.angle <- angle mod 360;
2571 if conf.angle != 0
2572 then (
2573 match state.mode with
2574 | LinkNav _ -> state.mode <- View
2575 | _ -> ()
2577 conf.proportional <- proportional;
2578 invalidate "reqlayout"
2579 (fun () -> wcmd "reqlayout %d %d" conf.angle (btod proportional));
2580 | _ -> ()
2583 let settrim trimmargins trimfuzz =
2584 if nogeomcmds state.geomcmds
2585 then state.anchor <- getanchor ();
2586 conf.trimmargins <- trimmargins;
2587 conf.trimfuzz <- trimfuzz;
2588 let x0, y0, x1, y1 = trimfuzz in
2589 invalidate "settrim"
2590 (fun () ->
2591 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2592 Hashtbl.iter (fun _ opaque ->
2593 wcmd "freepage %s" opaque;
2594 ) state.pagemap;
2595 Hashtbl.clear state.pagemap;
2598 let setzoom zoom =
2599 match state.throttle with
2600 | None ->
2601 let zoom = max 0.01 zoom in
2602 if zoom <> conf.zoom
2603 then (
2604 state.prevzoom <- conf.zoom;
2605 conf.zoom <- zoom;
2606 reshape conf.winw conf.winh;
2607 state.text <- Printf.sprintf "zoom is now %-5.1f" (zoom *. 100.0);
2610 | Some (layout, y, started) ->
2611 let time =
2612 match conf.maxwait with
2613 | None -> 0.0
2614 | Some t -> t
2616 let dt = now () -. started in
2617 if dt > time
2618 then (
2619 state.y <- y;
2620 load layout;
2624 let setcolumns mode columns coverA coverB =
2625 state.prevcolumns <- Some (conf.columns, conf.zoom);
2626 if columns < 0
2627 then (
2628 if isbirdseye mode
2629 then showtext '!' "split mode doesn't work in bird's eye"
2630 else (
2631 conf.columns <- Csplit (-columns, [||]);
2632 state.x <- 0;
2633 conf.zoom <- 1.0;
2636 else (
2637 if columns < 2
2638 then (
2639 conf.columns <- Csingle [||];
2640 state.x <- 0;
2641 setzoom 1.0;
2643 else (
2644 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2645 conf.zoom <- 1.0;
2648 reshape conf.winw conf.winh;
2651 let enterbirdseye () =
2652 let zoom = float conf.thumbw /. float conf.winw in
2653 let birdseyepageno =
2654 let cy = conf.winh / 2 in
2655 let fold = function
2656 | [] -> 0
2657 | l :: rest ->
2658 let rec fold best = function
2659 | [] -> best.pageno
2660 | l :: rest ->
2661 let d = cy - (l.pagedispy + l.pagevh/2)
2662 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2663 if abs d < abs dbest
2664 then fold l rest
2665 else best.pageno
2666 in fold l rest
2668 fold state.layout
2670 state.mode <- Birdseye (
2671 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2673 conf.zoom <- zoom;
2674 conf.presentation <- false;
2675 conf.interpagespace <- 10;
2676 conf.hlinks <- false;
2677 state.x <- 0;
2678 state.mstate <- Mnone;
2679 conf.maxwait <- None;
2680 conf.columns <- (
2681 match conf.beyecolumns with
2682 | Some c ->
2683 conf.zoom <- 1.0;
2684 Cmulti ((c, 0, 0), [||])
2685 | None -> Csingle [||]
2687 Wsi.setcursor Wsi.CURSOR_INHERIT;
2688 if conf.verbose
2689 then
2690 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2691 (100.0*.zoom)
2692 else
2693 state.text <- ""
2695 reshape conf.winw conf.winh;
2698 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2699 state.mode <- View;
2700 conf.zoom <- c.zoom;
2701 conf.presentation <- c.presentation;
2702 conf.interpagespace <- c.interpagespace;
2703 conf.maxwait <- c.maxwait;
2704 conf.hlinks <- c.hlinks;
2705 conf.beyecolumns <- (
2706 match conf.columns with
2707 | Cmulti ((c, _, _), _) -> Some c
2708 | Csingle _ -> None
2709 | Csplit _ -> failwith "leaving bird's eye split mode"
2711 conf.columns <- (
2712 match c.columns with
2713 | Cmulti (c, _) -> Cmulti (c, [||])
2714 | Csingle _ -> Csingle [||]
2715 | Csplit (c, _) -> Csplit (c, [||])
2717 state.x <- leftx;
2718 if conf.verbose
2719 then
2720 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2721 (100.0*.conf.zoom)
2723 reshape conf.winw conf.winh;
2724 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2727 let togglebirdseye () =
2728 match state.mode with
2729 | Birdseye vals -> leavebirdseye vals true
2730 | View -> enterbirdseye ()
2731 | _ -> ()
2734 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2735 let pageno = max 0 (pageno - incr) in
2736 let rec loop = function
2737 | [] -> gotopage1 pageno 0
2738 | l :: _ when l.pageno = pageno ->
2739 if l.pagedispy >= 0 && l.pagey = 0
2740 then G.postRedisplay "upbirdseye"
2741 else gotopage1 pageno 0
2742 | _ :: rest -> loop rest
2744 loop state.layout;
2745 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2748 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2749 let pageno = min (state.pagecount - 1) (pageno + incr) in
2750 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2751 let rec loop = function
2752 | [] ->
2753 let y, h = getpageyh pageno in
2754 let dy = (y - state.y) - (conf.winh - h - conf.interpagespace) in
2755 gotoy (clamp dy)
2756 | l :: _ when l.pageno = pageno ->
2757 if l.pagevh != l.pageh
2758 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2759 else G.postRedisplay "downbirdseye"
2760 | _ :: rest -> loop rest
2762 loop state.layout
2765 let optentry mode _ key =
2766 let btos b = if b then "on" else "off" in
2767 if key >= 32 && key < 127
2768 then
2769 let c = Char.chr key in
2770 match c with
2771 | 's' ->
2772 let ondone s =
2773 try conf.scrollstep <- int_of_string s with exc ->
2774 state.text <- Printf.sprintf "bad integer `%s': %s"
2775 s (Printexc.to_string exc)
2777 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2779 | 'A' ->
2780 let ondone s =
2782 conf.autoscrollstep <- int_of_string s;
2783 if state.autoscroll <> None
2784 then state.autoscroll <- Some conf.autoscrollstep
2785 with exc ->
2786 state.text <- Printf.sprintf "bad integer `%s': %s"
2787 s (Printexc.to_string exc)
2789 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2791 | 'C' ->
2792 let ondone s =
2794 let n, a, b = multicolumns_of_string s in
2795 setcolumns mode n a b;
2796 with exc ->
2797 state.text <- Printf.sprintf "bad columns `%s': %s"
2798 s (Printexc.to_string exc)
2800 TEswitch ("columns: ", "", None, textentry, ondone, true)
2802 | 'Z' ->
2803 let ondone s =
2805 let zoom = float (int_of_string s) /. 100.0 in
2806 setzoom zoom
2807 with exc ->
2808 state.text <- Printf.sprintf "bad integer `%s': %s"
2809 s (Printexc.to_string exc)
2811 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2813 | 't' ->
2814 let ondone s =
2816 conf.thumbw <- bound (int_of_string s) 2 4096;
2817 state.text <-
2818 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2819 begin match mode with
2820 | Birdseye beye ->
2821 leavebirdseye beye false;
2822 enterbirdseye ();
2823 | _ -> ();
2825 with exc ->
2826 state.text <- Printf.sprintf "bad integer `%s': %s"
2827 s (Printexc.to_string exc)
2829 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2831 | 'R' ->
2832 let ondone s =
2833 match try
2834 Some (int_of_string s)
2835 with exc ->
2836 state.text <- Printf.sprintf "bad integer `%s': %s"
2837 s (Printexc.to_string exc);
2838 None
2839 with
2840 | Some angle -> reqlayout angle conf.proportional
2841 | None -> ()
2843 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2845 | 'i' ->
2846 conf.icase <- not conf.icase;
2847 TEdone ("case insensitive search " ^ (btos conf.icase))
2849 | 'p' ->
2850 conf.preload <- not conf.preload;
2851 gotoy state.y;
2852 TEdone ("preload " ^ (btos conf.preload))
2854 | 'v' ->
2855 conf.verbose <- not conf.verbose;
2856 TEdone ("verbose " ^ (btos conf.verbose))
2858 | 'd' ->
2859 conf.debug <- not conf.debug;
2860 TEdone ("debug " ^ (btos conf.debug))
2862 | 'h' ->
2863 conf.maxhfit <- not conf.maxhfit;
2864 state.maxy <- calcheight ();
2865 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2867 | 'c' ->
2868 conf.crophack <- not conf.crophack;
2869 TEdone ("crophack " ^ btos conf.crophack)
2871 | 'a' ->
2872 let s =
2873 match conf.maxwait with
2874 | None ->
2875 conf.maxwait <- Some infinity;
2876 "always wait for page to complete"
2877 | Some _ ->
2878 conf.maxwait <- None;
2879 "show placeholder if page is not ready"
2881 TEdone s
2883 | 'f' ->
2884 conf.underinfo <- not conf.underinfo;
2885 TEdone ("underinfo " ^ btos conf.underinfo)
2887 | 'P' ->
2888 conf.savebmarks <- not conf.savebmarks;
2889 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2891 | 'S' ->
2892 let ondone s =
2894 let pageno, py =
2895 match state.layout with
2896 | [] -> 0, 0
2897 | l :: _ ->
2898 l.pageno, l.pagey
2900 conf.interpagespace <- int_of_string s;
2901 docolumns conf.columns;
2902 state.maxy <- calcheight ();
2903 let y = getpagey pageno in
2904 gotoy (y + py)
2905 with exc ->
2906 state.text <- Printf.sprintf "bad integer `%s': %s"
2907 s (Printexc.to_string exc)
2909 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
2911 | 'l' ->
2912 reqlayout conf.angle (not conf.proportional);
2913 TEdone ("proportional display " ^ btos conf.proportional)
2915 | 'T' ->
2916 settrim (not conf.trimmargins) conf.trimfuzz;
2917 TEdone ("trim margins " ^ btos conf.trimmargins)
2919 | 'I' ->
2920 conf.invert <- not conf.invert;
2921 TEdone ("invert colors " ^ btos conf.invert)
2923 | 'x' ->
2924 let ondone s =
2925 cbput state.hists.sel s;
2926 conf.selcmd <- s;
2928 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
2929 textentry, ondone, true)
2931 | _ ->
2932 state.text <- Printf.sprintf "bad option %d `%c'" key c;
2933 TEstop
2934 else
2935 TEcont state.text
2938 class type lvsource = object
2939 method getitemcount : int
2940 method getitem : int -> (string * int)
2941 method hasaction : int -> bool
2942 method exit :
2943 uioh:uioh ->
2944 cancel:bool ->
2945 active:int ->
2946 first:int ->
2947 pan:int ->
2948 qsearch:string ->
2949 uioh option
2950 method getactive : int
2951 method getfirst : int
2952 method getqsearch : string
2953 method setqsearch : string -> unit
2954 method getpan : int
2955 end;;
2957 class virtual lvsourcebase = object
2958 val mutable m_active = 0
2959 val mutable m_first = 0
2960 val mutable m_qsearch = ""
2961 val mutable m_pan = 0
2962 method getactive = m_active
2963 method getfirst = m_first
2964 method getqsearch = m_qsearch
2965 method getpan = m_pan
2966 method setqsearch s = m_qsearch <- s
2967 end;;
2969 let withoutlastutf8 s =
2970 let len = String.length s in
2971 if len = 0
2972 then s
2973 else
2974 let rec find pos =
2975 if pos = 0
2976 then pos
2977 else
2978 let b = Char.code s.[pos] in
2979 if b land 0b110000 = 0b11000000
2980 then find (pos-1)
2981 else pos-1
2983 let first =
2984 if Char.code s.[len-1] land 0x80 = 0
2985 then len-1
2986 else find (len-1)
2988 String.sub s 0 first;
2991 let textentrykeyboard
2992 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
2993 let enttext te =
2994 state.mode <- Textentry (te, onleave);
2995 state.text <- "";
2996 enttext ();
2997 G.postRedisplay "textentrykeyboard enttext";
2999 let histaction cmd =
3000 match opthist with
3001 | None -> ()
3002 | Some (action, _) ->
3003 state.mode <- Textentry (
3004 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3006 G.postRedisplay "textentry histaction"
3008 match key with
3009 | 0xff08 -> (* backspace *)
3010 let s = withoutlastutf8 text in
3011 let len = String.length s in
3012 if cancelonempty && len = 0
3013 then (
3014 onleave Cancel;
3015 G.postRedisplay "textentrykeyboard after cancel";
3017 else (
3018 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3021 | 0xff0d ->
3022 ondone text;
3023 onleave Confirm;
3024 G.postRedisplay "textentrykeyboard after confirm"
3026 | 0xff52 -> histaction HCprev
3027 | 0xff54 -> histaction HCnext
3028 | 0xff50 -> histaction HCfirst
3029 | 0xff57 -> histaction HClast
3031 | 0xff1b -> (* escape*)
3032 if String.length text = 0
3033 then (
3034 begin match opthist with
3035 | None -> ()
3036 | Some (_, onhistcancel) -> onhistcancel ()
3037 end;
3038 onleave Cancel;
3039 state.text <- "";
3040 G.postRedisplay "textentrykeyboard after cancel2"
3042 else (
3043 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3046 | 0xff9f | 0xffff -> () (* delete *)
3048 | _ when key != 0 && key land 0xff00 != 0xff00 ->
3049 begin match onkey text key with
3050 | TEdone text ->
3051 ondone text;
3052 onleave Confirm;
3053 G.postRedisplay "textentrykeyboard after confirm2";
3055 | TEcont text ->
3056 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3058 | TEstop ->
3059 onleave Cancel;
3060 G.postRedisplay "textentrykeyboard after cancel3"
3062 | TEswitch te ->
3063 state.mode <- Textentry (te, onleave);
3064 G.postRedisplay "textentrykeyboard switch";
3065 end;
3067 | _ ->
3068 vlog "unhandled key %s" (Wsi.keyname key)
3071 let firstof first active =
3072 if first > active || abs (first - active) > fstate.maxrows - 1
3073 then max 0 (active - (fstate.maxrows/2))
3074 else first
3077 let calcfirst first active =
3078 if active > first
3079 then
3080 let rows = active - first in
3081 if rows > fstate.maxrows then active - fstate.maxrows else first
3082 else active
3085 let scrollph y maxy =
3086 let sh = (float (maxy + conf.winh) /. float conf.winh) in
3087 let sh = float conf.winh /. sh in
3088 let sh = max sh (float conf.scrollh) in
3090 let percent =
3091 if y = state.maxy
3092 then 1.0
3093 else float y /. float maxy
3095 let position = (float conf.winh -. sh) *. percent in
3097 let position =
3098 if position +. sh > float conf.winh
3099 then float conf.winh -. sh
3100 else position
3102 position, sh;
3105 let coe s = (s :> uioh);;
3107 class listview ~(source:lvsource) ~trusted ~modehash =
3108 object (self)
3109 val m_pan = source#getpan
3110 val m_first = source#getfirst
3111 val m_active = source#getactive
3112 val m_qsearch = source#getqsearch
3113 val m_prev_uioh = state.uioh
3115 method private elemunder y =
3116 let n = y / (fstate.fontsize+1) in
3117 if m_first + n < source#getitemcount
3118 then (
3119 if source#hasaction (m_first + n)
3120 then Some (m_first + n)
3121 else None
3123 else None
3125 method display =
3126 Gl.enable `blend;
3127 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3128 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3129 GlDraw.rect (0., 0.) (float conf.winw, float conf.winh);
3130 GlDraw.color (1., 1., 1.);
3131 Gl.enable `texture_2d;
3132 let fs = fstate.fontsize in
3133 let nfs = fs + 1 in
3134 let ww = fstate.wwidth in
3135 let tabw = 30.0*.ww in
3136 let itemcount = source#getitemcount in
3137 let rec loop row =
3138 if (row - m_first) > fstate.maxrows
3139 then ()
3140 else (
3141 if row >= 0 && row < itemcount
3142 then (
3143 let (s, level) = source#getitem row in
3144 let y = (row - m_first) * nfs in
3145 let x = 5.0 +. float (level + m_pan) *. ww in
3146 if row = m_active
3147 then (
3148 Gl.disable `texture_2d;
3149 GlDraw.polygon_mode `both `line;
3150 GlDraw.color (1., 1., 1.) ~alpha:0.9;
3151 GlDraw.rect (1., float (y + 1))
3152 (float (conf.winw - conf.scrollbw - 1), float (y + fs + 3));
3153 GlDraw.polygon_mode `both `fill;
3154 GlDraw.color (1., 1., 1.);
3155 Gl.enable `texture_2d;
3158 let drawtabularstring s =
3159 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3160 if trusted
3161 then
3162 let tabpos = try String.index s '\t' with Not_found -> -1 in
3163 if tabpos > 0
3164 then
3165 let len = String.length s - tabpos - 1 in
3166 let s1 = String.sub s 0 tabpos
3167 and s2 = String.sub s (tabpos + 1) len in
3168 let nx = drawstr x s1 in
3169 let sw = nx -. x in
3170 let x = x +. (max tabw sw) in
3171 drawstr x s2
3172 else
3173 drawstr x s
3174 else
3175 drawstr x s
3177 let _ = drawtabularstring s in
3178 loop (row+1)
3182 loop m_first;
3183 Gl.disable `blend;
3184 Gl.disable `texture_2d;
3186 method updownlevel incr =
3187 let len = source#getitemcount in
3188 let curlevel =
3189 if m_active >= 0 && m_active < len
3190 then snd (source#getitem m_active)
3191 else -1
3193 let rec flow i =
3194 if i = len then i-1 else if i = -1 then 0 else
3195 let _, l = source#getitem i in
3196 if l != curlevel then i else flow (i+incr)
3198 let active = flow m_active in
3199 let first = calcfirst m_first active in
3200 G.postRedisplay "outline updownlevel";
3201 {< m_active = active; m_first = first >}
3203 method private key1 key mask =
3204 let set1 active first qsearch =
3205 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3207 let search active pattern incr =
3208 let dosearch re =
3209 let rec loop n =
3210 if n >= 0 && n < source#getitemcount
3211 then (
3212 let s, _ = source#getitem n in
3214 (try ignore (Str.search_forward re s 0); true
3215 with Not_found -> false)
3216 then Some n
3217 else loop (n + incr)
3219 else None
3221 loop active
3224 let re = Str.regexp_case_fold pattern in
3225 dosearch re
3226 with Failure s ->
3227 state.text <- s;
3228 None
3230 let itemcount = source#getitemcount in
3231 let find start incr =
3232 let rec find i =
3233 if i = -1 || i = itemcount
3234 then -1
3235 else (
3236 if source#hasaction i
3237 then i
3238 else find (i + incr)
3241 find start
3243 let set active first =
3244 let first = bound first 0 (itemcount - fstate.maxrows) in
3245 state.text <- "";
3246 coe {< m_active = active; m_first = first >}
3248 let navigate incr =
3249 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3250 let active, first =
3251 let incr1 = if incr > 0 then 1 else -1 in
3252 if isvisible m_first m_active
3253 then
3254 let next =
3255 let next = m_active + incr in
3256 let next =
3257 if next < 0 || next >= itemcount
3258 then -1
3259 else find next incr1
3261 if next = -1 || abs (m_active - next) > fstate.maxrows
3262 then -1
3263 else next
3265 if next = -1
3266 then
3267 let first = m_first + incr in
3268 let first = bound first 0 (itemcount - 1) in
3269 let next =
3270 let next = m_active + incr in
3271 let next = bound next 0 (itemcount - 1) in
3272 find next ~-incr1
3274 let active = if next = -1 then m_active else next in
3275 active, first
3276 else
3277 let first = min next m_first in
3278 let first =
3279 if abs (next - first) > fstate.maxrows
3280 then first + incr
3281 else first
3283 next, first
3284 else
3285 let first = m_first + incr in
3286 let first = bound first 0 (itemcount - 1) in
3287 let active =
3288 let next = m_active + incr in
3289 let next = bound next 0 (itemcount - 1) in
3290 let next = find next incr1 in
3291 let active =
3292 if next = -1 || abs (m_active - first) > fstate.maxrows
3293 then (
3294 let active = if m_active = -1 then next else m_active in
3295 active
3297 else next
3299 if isvisible first active
3300 then active
3301 else -1
3303 active, first
3305 G.postRedisplay "listview navigate";
3306 set active first;
3308 match key with
3309 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3310 let incr = if key = 0x72 then -1 else 1 in
3311 let active, first =
3312 match search (m_active + incr) m_qsearch incr with
3313 | None ->
3314 state.text <- m_qsearch ^ " [not found]";
3315 m_active, m_first
3316 | Some active ->
3317 state.text <- m_qsearch;
3318 active, firstof m_first active
3320 G.postRedisplay "listview ctrl-r/s";
3321 set1 active first m_qsearch;
3323 | 0xff08 -> (* backspace *)
3324 if String.length m_qsearch = 0
3325 then coe self
3326 else (
3327 let qsearch = withoutlastutf8 m_qsearch in
3328 let len = String.length qsearch in
3329 if len = 0
3330 then (
3331 state.text <- "";
3332 G.postRedisplay "listview empty qsearch";
3333 set1 m_active m_first "";
3335 else
3336 let active, first =
3337 match search m_active qsearch ~-1 with
3338 | None ->
3339 state.text <- qsearch ^ " [not found]";
3340 m_active, m_first
3341 | Some active ->
3342 state.text <- qsearch;
3343 active, firstof m_first active
3345 G.postRedisplay "listview backspace qsearch";
3346 set1 active first qsearch
3349 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3350 let pattern = m_qsearch ^ Wsi.toutf8 key in
3351 let active, first =
3352 match search m_active pattern 1 with
3353 | None ->
3354 state.text <- pattern ^ " [not found]";
3355 m_active, m_first
3356 | Some active ->
3357 state.text <- pattern;
3358 active, firstof m_first active
3360 G.postRedisplay "listview qsearch add";
3361 set1 active first pattern;
3363 | 0xff1b -> (* escape *)
3364 state.text <- "";
3365 if String.length m_qsearch = 0
3366 then (
3367 G.postRedisplay "list view escape";
3368 begin
3369 match
3370 source#exit (coe self) true m_active m_first m_pan m_qsearch
3371 with
3372 | None -> m_prev_uioh
3373 | Some uioh -> uioh
3376 else (
3377 G.postRedisplay "list view kill qsearch";
3378 source#setqsearch "";
3379 coe {< m_qsearch = "" >}
3382 | 0xff0d -> (* return *)
3383 state.text <- "";
3384 let self = {< m_qsearch = "" >} in
3385 source#setqsearch "";
3386 let opt =
3387 G.postRedisplay "listview enter";
3388 if m_active >= 0 && m_active < source#getitemcount
3389 then (
3390 source#exit (coe self) false m_active m_first m_pan "";
3392 else (
3393 source#exit (coe self) true m_active m_first m_pan "";
3396 begin match opt with
3397 | None -> m_prev_uioh
3398 | Some uioh -> uioh
3401 | 0xff9f | 0xffff -> (* delete *)
3402 coe self
3404 | 0xff52 -> navigate ~-1 (* up *)
3405 | 0xff54 -> navigate 1 (* down *)
3406 | 0xff55 -> navigate ~-(fstate.maxrows) (* prior *)
3407 | 0xff56 -> navigate fstate.maxrows (* next *)
3409 | 0xff53 -> (* right *)
3410 state.text <- "";
3411 G.postRedisplay "listview right";
3412 coe {< m_pan = m_pan - 1 >}
3414 | 0xff51 -> (* left *)
3415 state.text <- "";
3416 G.postRedisplay "listview left";
3417 coe {< m_pan = m_pan + 1 >}
3419 | 0xff50 -> (* home *)
3420 let active = find 0 1 in
3421 G.postRedisplay "listview home";
3422 set active 0;
3424 | 0xff57 -> (* end *)
3425 let first = max 0 (itemcount - fstate.maxrows) in
3426 let active = find (itemcount - 1) ~-1 in
3427 G.postRedisplay "listview end";
3428 set active first;
3430 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3431 coe self
3433 | _ ->
3434 dolog "listview unknown key %#x" key; coe self
3436 method key key mask =
3437 match state.mode with
3438 | Textentry te -> textentrykeyboard key mask te; coe self
3439 | _ -> self#key1 key mask
3441 method button button down x y _ =
3442 let opt =
3443 match button with
3444 | 1 when x > conf.winw - conf.scrollbw ->
3445 G.postRedisplay "listview scroll";
3446 if down
3447 then
3448 let _, position, sh = self#scrollph in
3449 if y > truncate position && y < truncate (position +. sh)
3450 then (
3451 state.mstate <- Mscrolly;
3452 Some (coe self)
3454 else
3455 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3456 let first = truncate (s *. float source#getitemcount) in
3457 let first = min source#getitemcount first in
3458 Some (coe {< m_first = first; m_active = first >})
3459 else (
3460 state.mstate <- Mnone;
3461 Some (coe self);
3463 | 1 when not down ->
3464 begin match self#elemunder y with
3465 | Some n ->
3466 G.postRedisplay "listview click";
3467 source#exit
3468 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3469 | _ ->
3470 Some (coe self)
3472 | n when (n == 4 || n == 5) && not down ->
3473 let len = source#getitemcount in
3474 let first =
3475 if n = 5 && m_first + fstate.maxrows >= len
3476 then
3477 m_first
3478 else
3479 let first = m_first + (if n == 4 then -1 else 1) in
3480 bound first 0 (len - 1)
3482 G.postRedisplay "listview wheel";
3483 Some (coe {< m_first = first >})
3484 | n when (n = 6 || n = 7) && not down ->
3485 let inc = m_first + (if n = 7 then -1 else 1) in
3486 G.postRedisplay "listview hwheel";
3487 Some (coe {< m_pan = m_pan + inc >})
3488 | _ ->
3489 Some (coe self)
3491 match opt with
3492 | None -> m_prev_uioh
3493 | Some uioh -> uioh
3495 method motion _ y =
3496 match state.mstate with
3497 | Mscrolly ->
3498 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3499 let first = truncate (s *. float source#getitemcount) in
3500 let first = min source#getitemcount first in
3501 G.postRedisplay "listview motion";
3502 coe {< m_first = first; m_active = first >}
3503 | _ -> coe self
3505 method pmotion x y =
3506 if x < conf.winw - conf.scrollbw
3507 then
3508 let n =
3509 match self#elemunder y with
3510 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3511 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3513 let o =
3514 if n != m_active
3515 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3516 else self
3518 coe o
3519 else (
3520 Wsi.setcursor Wsi.CURSOR_INHERIT;
3521 coe self
3524 method infochanged _ = ()
3526 method scrollpw = (0, 0.0, 0.0)
3527 method scrollph =
3528 let nfs = fstate.fontsize + 1 in
3529 let y = m_first * nfs in
3530 let itemcount = source#getitemcount in
3531 let maxi = max 0 (itemcount - fstate.maxrows) in
3532 let maxy = maxi * nfs in
3533 let p, h = scrollph y maxy in
3534 conf.scrollbw, p, h
3536 method modehash = modehash
3537 end;;
3539 class outlinelistview ~source =
3540 object (self)
3541 inherit listview
3542 ~source:(source :> lvsource)
3543 ~trusted:false
3544 ~modehash:(findkeyhash conf "outline")
3545 as super
3547 method key key mask =
3548 let calcfirst first active =
3549 if active > first
3550 then
3551 let rows = active - first in
3552 let maxrows =
3553 if String.length state.text = 0
3554 then fstate.maxrows
3555 else fstate.maxrows - 2
3557 if rows > maxrows then active - maxrows else first
3558 else active
3560 let navigate incr =
3561 let active = m_active + incr in
3562 let active = bound active 0 (source#getitemcount - 1) in
3563 let first = calcfirst m_first active in
3564 G.postRedisplay "outline navigate";
3565 coe {< m_active = active; m_first = first >}
3567 let ctrl = Wsi.withctrl mask in
3568 match key with
3569 | 110 when ctrl -> (* ctrl-n *)
3570 source#narrow m_qsearch;
3571 G.postRedisplay "outline ctrl-n";
3572 coe {< m_first = 0; m_active = 0 >}
3574 | 117 when ctrl -> (* ctrl-u *)
3575 source#denarrow;
3576 G.postRedisplay "outline ctrl-u";
3577 state.text <- "";
3578 coe {< m_first = 0; m_active = 0 >}
3580 | 108 when ctrl -> (* ctrl-l *)
3581 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3582 G.postRedisplay "outline ctrl-l";
3583 coe {< m_first = first >}
3585 | 0xff9f | 0xffff -> (* delete *)
3586 source#remove m_active;
3587 G.postRedisplay "outline delete";
3588 let active = max 0 (m_active-1) in
3589 coe {< m_first = firstof m_first active;
3590 m_active = active >}
3592 | 0xff52 -> navigate ~-1 (* up *)
3593 | 0xff54 -> navigate 1 (* down *)
3594 | 0xff55 -> (* prior *)
3595 navigate ~-(fstate.maxrows)
3596 | 0xff56 -> (* next *)
3597 navigate fstate.maxrows
3599 | 0xff53 -> (* [ctrl-]right *)
3600 let o =
3601 if ctrl
3602 then (
3603 G.postRedisplay "outline ctrl right";
3604 {< m_pan = m_pan + 1 >}
3606 else self#updownlevel 1
3608 coe o
3610 | 0xff51 -> (* [ctrl-]left *)
3611 let o =
3612 if ctrl
3613 then (
3614 G.postRedisplay "outline ctrl left";
3615 {< m_pan = m_pan - 1 >}
3617 else self#updownlevel ~-1
3619 coe o
3621 | 0xff50 -> (* home *)
3622 G.postRedisplay "outline home";
3623 coe {< m_first = 0; m_active = 0 >}
3625 | 0xff57 -> (* end *)
3626 let active = source#getitemcount - 1 in
3627 let first = max 0 (active - fstate.maxrows) in
3628 G.postRedisplay "outline end";
3629 coe {< m_active = active; m_first = first >}
3631 | _ -> super#key key mask
3634 let outlinesource usebookmarks =
3635 let empty = [||] in
3636 (object
3637 inherit lvsourcebase
3638 val mutable m_items = empty
3639 val mutable m_orig_items = empty
3640 val mutable m_prev_items = empty
3641 val mutable m_narrow_pattern = ""
3642 val mutable m_hadremovals = false
3644 method getitemcount =
3645 Array.length m_items + (if m_hadremovals then 1 else 0)
3647 method getitem n =
3648 if n == Array.length m_items && m_hadremovals
3649 then
3650 ("[Confirm removal]", 0)
3651 else
3652 let s, n, _ = m_items.(n) in
3653 (s, n)
3655 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3656 ignore (uioh, first, qsearch);
3657 let confrimremoval = m_hadremovals && active = Array.length m_items in
3658 let items =
3659 if String.length m_narrow_pattern = 0
3660 then m_orig_items
3661 else m_items
3663 if not cancel
3664 then (
3665 if not confrimremoval
3666 then(
3667 let _, _, anchor = m_items.(active) in
3668 gotoghyll (getanchory anchor);
3669 m_items <- items;
3671 else (
3672 state.bookmarks <- Array.to_list m_items;
3673 m_orig_items <- m_items;
3676 else m_items <- items;
3677 m_pan <- pan;
3678 None
3680 method hasaction _ = true
3682 method greetmsg =
3683 if Array.length m_items != Array.length m_orig_items
3684 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3685 else ""
3687 method narrow pattern =
3688 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3689 match reopt with
3690 | None -> ()
3691 | Some re ->
3692 let rec loop accu n =
3693 if n = -1
3694 then (
3695 m_narrow_pattern <- pattern;
3696 m_items <- Array.of_list accu
3698 else
3699 let (s, _, _) as o = m_items.(n) in
3700 let accu =
3701 if (try ignore (Str.search_forward re s 0); true
3702 with Not_found -> false)
3703 then o :: accu
3704 else accu
3706 loop accu (n-1)
3708 loop [] (Array.length m_items - 1)
3710 method denarrow =
3711 m_orig_items <- (
3712 if usebookmarks
3713 then Array.of_list state.bookmarks
3714 else state.outlines
3716 m_items <- m_orig_items
3718 method remove m =
3719 if usebookmarks
3720 then
3721 if m >= 0 && m < Array.length m_items
3722 then (
3723 m_hadremovals <- true;
3724 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3725 let n = if n >= m then n+1 else n in
3726 m_items.(n)
3730 method reset anchor items =
3731 m_hadremovals <- false;
3732 if m_orig_items == empty || m_prev_items != items
3733 then (
3734 m_orig_items <- items;
3735 if String.length m_narrow_pattern = 0
3736 then m_items <- items;
3738 m_prev_items <- items;
3739 let rely = getanchory anchor in
3740 let active =
3741 let rec loop n best bestd =
3742 if n = Array.length m_items
3743 then best
3744 else
3745 let (_, _, anchor) = m_items.(n) in
3746 let orely = getanchory anchor in
3747 let d = abs (orely - rely) in
3748 if d < bestd
3749 then loop (n+1) n d
3750 else loop (n+1) best bestd
3752 loop 0 ~-1 max_int
3754 m_active <- active;
3755 m_first <- firstof m_first active
3756 end)
3759 let enterselector usebookmarks =
3760 let source = outlinesource usebookmarks in
3761 fun errmsg ->
3762 let outlines =
3763 if usebookmarks
3764 then Array.of_list state.bookmarks
3765 else state.outlines
3767 if Array.length outlines = 0
3768 then (
3769 showtext ' ' errmsg;
3771 else (
3772 state.text <- source#greetmsg;
3773 Wsi.setcursor Wsi.CURSOR_INHERIT;
3774 let anchor = getanchor () in
3775 source#reset anchor outlines;
3776 state.uioh <- coe (new outlinelistview ~source);
3777 G.postRedisplay "enter selector";
3781 let enteroutlinemode =
3782 let f = enterselector false in
3783 fun ()-> f "Document has no outline";
3786 let enterbookmarkmode =
3787 let f = enterselector true in
3788 fun () -> f "Document has no bookmarks (yet)";
3791 let color_of_string s =
3792 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3793 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3797 let color_to_string (r, g, b) =
3798 let r = truncate (r *. 256.0)
3799 and g = truncate (g *. 256.0)
3800 and b = truncate (b *. 256.0) in
3801 Printf.sprintf "%d/%d/%d" r g b
3804 let irect_of_string s =
3805 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3808 let irect_to_string (x0,y0,x1,y1) =
3809 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3812 let makecheckers () =
3813 (* Appropriated from lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3814 following to say:
3815 converted by Issac Trotts. July 25, 2002 *)
3816 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3817 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3818 let id = GlTex.gen_texture () in
3819 GlTex.bind_texture `texture_2d id;
3820 GlPix.store (`unpack_alignment 1);
3821 GlTex.image2d image;
3822 List.iter (GlTex.parameter ~target:`texture_2d)
3823 [ `wrap_s `repeat;
3824 `wrap_t `repeat;
3825 `mag_filter `nearest;
3826 `min_filter `nearest ];
3830 let setcheckers enabled =
3831 match state.texid with
3832 | None ->
3833 if enabled then state.texid <- Some (makecheckers ())
3835 | Some texid ->
3836 if not enabled
3837 then (
3838 GlTex.delete_texture texid;
3839 state.texid <- None;
3843 let int_of_string_with_suffix s =
3844 let l = String.length s in
3845 let s1, shift =
3846 if l > 1
3847 then
3848 let suffix = Char.lowercase s.[l-1] in
3849 match suffix with
3850 | 'k' -> String.sub s 0 (l-1), 10
3851 | 'm' -> String.sub s 0 (l-1), 20
3852 | 'g' -> String.sub s 0 (l-1), 30
3853 | _ -> s, 0
3854 else s, 0
3856 let n = int_of_string s1 in
3857 let m = n lsl shift in
3858 if m < 0 || m < n
3859 then raise (Failure "value too large")
3860 else m
3863 let string_with_suffix_of_int n =
3864 if n = 0
3865 then "0"
3866 else
3867 let n, s =
3868 if n land ((1 lsl 20) - 1) = 0
3869 then n lsr 20, "M"
3870 else (
3871 if n land ((1 lsl 10) - 1) = 0
3872 then n lsr 10, "K"
3873 else n, ""
3876 let rec loop s n =
3877 let h = n mod 1000 in
3878 let n = n / 1000 in
3879 if n = 0
3880 then string_of_int h ^ s
3881 else (
3882 let s = Printf.sprintf "_%03d%s" h s in
3883 loop s n
3886 loop "" n ^ s;
3889 let defghyllscroll = (40, 8, 32);;
3890 let ghyllscroll_of_string s =
3891 let (n, a, b) as nab =
3892 if s = "default"
3893 then defghyllscroll
3894 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
3896 if n <= a || n <= b || a >= b
3897 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3898 nab;
3901 let ghyllscroll_to_string ((n, a, b) as nab) =
3902 if nab = defghyllscroll
3903 then "default"
3904 else Printf.sprintf "%d,%d,%d" n a b;
3907 let describe_location () =
3908 let f (fn, _) l =
3909 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
3911 let fn, ln = List.fold_left f (-1, -1) state.layout in
3912 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
3913 let percent =
3914 if maxy <= 0
3915 then 100.
3916 else (100. *. (float state.y /. float maxy))
3918 if fn = ln
3919 then
3920 Printf.sprintf "page %d of %d [%.2f%%]"
3921 (fn+1) state.pagecount percent
3922 else
3923 Printf.sprintf
3924 "pages %d-%d of %d [%.2f%%]"
3925 (fn+1) (ln+1) state.pagecount percent
3928 let setpresentationmode v =
3929 let (n, _, _) = getanchor () in
3930 let _, h = getpageyh n in
3931 let ips = if conf.presentation then calcips h else conf.interpagespace in
3932 state.anchor <- (n, 0.0, float ips);
3933 conf.presentation <- v;
3934 if conf.presentation
3935 then (
3936 if not conf.scrollbarinpm
3937 then state.scrollw <- 0;
3939 else state.scrollw <- conf.scrollbw;
3940 represent ();
3943 let enterinfomode =
3944 let btos b = if b then "\xe2\x88\x9a" else "" in
3945 let showextended = ref false in
3946 let leave mode = function
3947 | Confirm -> state.mode <- mode
3948 | Cancel -> state.mode <- mode in
3949 let src =
3950 (object
3951 val mutable m_first_time = true
3952 val mutable m_l = []
3953 val mutable m_a = [||]
3954 val mutable m_prev_uioh = nouioh
3955 val mutable m_prev_mode = View
3957 inherit lvsourcebase
3959 method reset prev_mode prev_uioh =
3960 m_a <- Array.of_list (List.rev m_l);
3961 m_l <- [];
3962 m_prev_mode <- prev_mode;
3963 m_prev_uioh <- prev_uioh;
3964 if m_first_time
3965 then (
3966 let rec loop n =
3967 if n >= Array.length m_a
3968 then ()
3969 else
3970 match m_a.(n) with
3971 | _, _, _, Action _ -> m_active <- n
3972 | _ -> loop (n+1)
3974 loop 0;
3975 m_first_time <- false;
3978 method int name get set =
3979 m_l <-
3980 (name, `int get, 1, Action (
3981 fun u ->
3982 let ondone s =
3983 try set (int_of_string s)
3984 with exn ->
3985 state.text <- Printf.sprintf "bad integer `%s': %s"
3986 s (Printexc.to_string exn)
3988 state.text <- "";
3989 let te = name ^ ": ", "", None, intentry, ondone, true in
3990 state.mode <- Textentry (te, leave m_prev_mode);
3992 )) :: m_l
3994 method int_with_suffix name get set =
3995 m_l <-
3996 (name, `intws get, 1, Action (
3997 fun u ->
3998 let ondone s =
3999 try set (int_of_string_with_suffix s)
4000 with exn ->
4001 state.text <- Printf.sprintf "bad integer `%s': %s"
4002 s (Printexc.to_string exn)
4004 state.text <- "";
4005 let te =
4006 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4008 state.mode <- Textentry (te, leave m_prev_mode);
4010 )) :: m_l
4012 method bool ?(offset=1) ?(btos=btos) name get set =
4013 m_l <-
4014 (name, `bool (btos, get), offset, Action (
4015 fun u ->
4016 let v = get () in
4017 set (not v);
4019 )) :: m_l
4021 method color name get set =
4022 m_l <-
4023 (name, `color get, 1, Action (
4024 fun u ->
4025 let invalid = (nan, nan, nan) in
4026 let ondone s =
4027 let c =
4028 try color_of_string s
4029 with exn ->
4030 state.text <- Printf.sprintf "bad color `%s': %s"
4031 s (Printexc.to_string exn);
4032 invalid
4034 if c <> invalid
4035 then set c;
4037 let te = name ^ ": ", "", None, textentry, ondone, true in
4038 state.text <- color_to_string (get ());
4039 state.mode <- Textentry (te, leave m_prev_mode);
4041 )) :: m_l
4043 method string name get set =
4044 m_l <-
4045 (name, `string get, 1, Action (
4046 fun u ->
4047 let ondone s = set s in
4048 let te = name ^ ": ", "", None, textentry, ondone, true in
4049 state.mode <- Textentry (te, leave m_prev_mode);
4051 )) :: m_l
4053 method colorspace name get set =
4054 m_l <-
4055 (name, `string get, 1, Action (
4056 fun _ ->
4057 let source =
4058 let vals = [| "rgb"; "bgr"; "gray" |] in
4059 (object
4060 inherit lvsourcebase
4062 initializer
4063 m_active <- int_of_colorspace conf.colorspace;
4064 m_first <- 0;
4066 method getitemcount = Array.length vals
4067 method getitem n = (vals.(n), 0)
4068 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4069 ignore (uioh, first, pan, qsearch);
4070 if not cancel then set active;
4071 None
4072 method hasaction _ = true
4073 end)
4075 state.text <- "";
4076 let modehash = findkeyhash conf "info" in
4077 coe (new listview ~source ~trusted:true ~modehash)
4078 )) :: m_l
4080 method caption s offset =
4081 m_l <- (s, `empty, offset, Noaction) :: m_l
4083 method caption2 s f offset =
4084 m_l <- (s, `string f, offset, Noaction) :: m_l
4086 method getitemcount = Array.length m_a
4088 method getitem n =
4089 let tostr = function
4090 | `int f -> string_of_int (f ())
4091 | `intws f -> string_with_suffix_of_int (f ())
4092 | `string f -> f ()
4093 | `color f -> color_to_string (f ())
4094 | `bool (btos, f) -> btos (f ())
4095 | `empty -> ""
4097 let name, t, offset, _ = m_a.(n) in
4098 ((let s = tostr t in
4099 if String.length s > 0
4100 then Printf.sprintf "%s\t%s" name s
4101 else name),
4102 offset)
4104 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4105 let uiohopt =
4106 if not cancel
4107 then (
4108 m_qsearch <- qsearch;
4109 let uioh =
4110 match m_a.(active) with
4111 | _, _, _, Action f -> f uioh
4112 | _ -> uioh
4114 Some uioh
4116 else None
4118 m_active <- active;
4119 m_first <- first;
4120 m_pan <- pan;
4121 uiohopt
4123 method hasaction n =
4124 match m_a.(n) with
4125 | _, _, _, Action _ -> true
4126 | _ -> false
4127 end)
4129 let rec fillsrc prevmode prevuioh =
4130 let sep () = src#caption "" 0 in
4131 let colorp name get set =
4132 src#string name
4133 (fun () -> color_to_string (get ()))
4134 (fun v ->
4136 let c = color_of_string v in
4137 set c
4138 with exn ->
4139 state.text <- Printf.sprintf "bad color `%s': %s"
4140 v (Printexc.to_string exn);
4143 let oldmode = state.mode in
4144 let birdseye = isbirdseye state.mode in
4146 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4148 src#bool "presentation mode"
4149 (fun () -> conf.presentation)
4150 (fun v -> setpresentationmode v);
4152 src#bool "ignore case in searches"
4153 (fun () -> conf.icase)
4154 (fun v -> conf.icase <- v);
4156 src#bool "preload"
4157 (fun () -> conf.preload)
4158 (fun v -> conf.preload <- v);
4160 src#bool "highlight links"
4161 (fun () -> conf.hlinks)
4162 (fun v -> conf.hlinks <- v);
4164 src#bool "under info"
4165 (fun () -> conf.underinfo)
4166 (fun v -> conf.underinfo <- v);
4168 src#bool "persistent bookmarks"
4169 (fun () -> conf.savebmarks)
4170 (fun v -> conf.savebmarks <- v);
4172 src#bool "proportional display"
4173 (fun () -> conf.proportional)
4174 (fun v -> reqlayout conf.angle v);
4176 src#bool "trim margins"
4177 (fun () -> conf.trimmargins)
4178 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4180 src#bool "persistent location"
4181 (fun () -> conf.jumpback)
4182 (fun v -> conf.jumpback <- v);
4184 sep ();
4185 src#int "inter-page space"
4186 (fun () -> conf.interpagespace)
4187 (fun n ->
4188 conf.interpagespace <- n;
4189 docolumns conf.columns;
4190 let pageno, py =
4191 match state.layout with
4192 | [] -> 0, 0
4193 | l :: _ ->
4194 l.pageno, l.pagey
4196 state.maxy <- calcheight ();
4197 let y = getpagey pageno in
4198 gotoy (y + py)
4201 src#int "page bias"
4202 (fun () -> conf.pagebias)
4203 (fun v -> conf.pagebias <- v);
4205 src#int "scroll step"
4206 (fun () -> conf.scrollstep)
4207 (fun n -> conf.scrollstep <- n);
4209 src#int "horizontal scroll step"
4210 (fun () -> conf.hscrollstep)
4211 (fun v -> conf.hscrollstep <- v);
4213 src#int "auto scroll step"
4214 (fun () ->
4215 match state.autoscroll with
4216 | Some step -> step
4217 | _ -> conf.autoscrollstep)
4218 (fun n ->
4219 if state.autoscroll <> None
4220 then state.autoscroll <- Some n;
4221 conf.autoscrollstep <- n);
4223 src#int "zoom"
4224 (fun () -> truncate (conf.zoom *. 100.))
4225 (fun v -> setzoom ((float v) /. 100.));
4227 src#int "rotation"
4228 (fun () -> conf.angle)
4229 (fun v -> reqlayout v conf.proportional);
4231 src#int "scroll bar width"
4232 (fun () -> state.scrollw)
4233 (fun v ->
4234 state.scrollw <- v;
4235 conf.scrollbw <- v;
4236 reshape conf.winw conf.winh;
4239 src#int "scroll handle height"
4240 (fun () -> conf.scrollh)
4241 (fun v -> conf.scrollh <- v;);
4243 src#int "thumbnail width"
4244 (fun () -> conf.thumbw)
4245 (fun v ->
4246 conf.thumbw <- min 4096 v;
4247 match oldmode with
4248 | Birdseye beye ->
4249 leavebirdseye beye false;
4250 enterbirdseye ()
4251 | _ -> ()
4254 let mode = state.mode in
4255 src#string "columns"
4256 (fun () ->
4257 match conf.columns with
4258 | Csingle _ -> "1"
4259 | Cmulti (multi, _) -> multicolumns_to_string multi
4260 | Csplit (count, _) -> "-" ^ string_of_int count
4262 (fun v ->
4263 let n, a, b = multicolumns_of_string v in
4264 setcolumns mode n a b);
4266 sep ();
4267 src#caption "Presentation mode" 0;
4268 src#bool "scrollbar visible"
4269 (fun () -> conf.scrollbarinpm)
4270 (fun v ->
4271 if v != conf.scrollbarinpm
4272 then (
4273 conf.scrollbarinpm <- v;
4274 if conf.presentation
4275 then (
4276 state.scrollw <- if v then conf.scrollbw else 0;
4277 reshape conf.winw conf.winh;
4282 sep ();
4283 src#caption "Pixmap cache" 0;
4284 src#int_with_suffix "size (advisory)"
4285 (fun () -> conf.memlimit)
4286 (fun v -> conf.memlimit <- v);
4288 src#caption2 "used"
4289 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4290 (string_with_suffix_of_int state.memused)
4291 (Hashtbl.length state.tilemap)) 1;
4293 sep ();
4294 src#caption "Layout" 0;
4295 src#caption2 "Dimension"
4296 (fun () ->
4297 Printf.sprintf "%dx%d (virtual %dx%d)"
4298 conf.winw conf.winh
4299 state.w state.maxy)
4301 if conf.debug
4302 then
4303 src#caption2 "Position" (fun () ->
4304 Printf.sprintf "%dx%d" state.x state.y
4306 else
4307 src#caption2 "Visible" (fun () -> describe_location ()) 1
4310 sep ();
4311 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4312 "Save these parameters as global defaults at exit"
4313 (fun () -> conf.bedefault)
4314 (fun v -> conf.bedefault <- v)
4317 sep ();
4318 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4319 src#bool ~offset:0 ~btos "Extended parameters"
4320 (fun () -> !showextended)
4321 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4322 if !showextended
4323 then (
4324 src#bool "checkers"
4325 (fun () -> conf.checkers)
4326 (fun v -> conf.checkers <- v; setcheckers v);
4327 src#bool "update cursor"
4328 (fun () -> conf.updatecurs)
4329 (fun v -> conf.updatecurs <- v);
4330 src#bool "verbose"
4331 (fun () -> conf.verbose)
4332 (fun v -> conf.verbose <- v);
4333 src#bool "invert colors"
4334 (fun () -> conf.invert)
4335 (fun v -> conf.invert <- v);
4336 src#bool "max fit"
4337 (fun () -> conf.maxhfit)
4338 (fun v -> conf.maxhfit <- v);
4339 src#bool "redirect stderr"
4340 (fun () -> conf.redirectstderr)
4341 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4342 src#string "uri launcher"
4343 (fun () -> conf.urilauncher)
4344 (fun v -> conf.urilauncher <- v);
4345 src#string "path launcher"
4346 (fun () -> conf.pathlauncher)
4347 (fun v -> conf.pathlauncher <- v);
4348 src#string "tile size"
4349 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4350 (fun v ->
4352 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4353 conf.tilew <- max 64 w;
4354 conf.tileh <- max 64 h;
4355 flushtiles ();
4356 with exn ->
4357 state.text <- Printf.sprintf "bad tile size `%s': %s"
4358 v (Printexc.to_string exn));
4359 src#int "texture count"
4360 (fun () -> conf.texcount)
4361 (fun v ->
4362 if realloctexts v
4363 then conf.texcount <- v
4364 else showtext '!' " Failed to set texture count please retry later"
4366 src#int "slice height"
4367 (fun () -> conf.sliceheight)
4368 (fun v ->
4369 conf.sliceheight <- v;
4370 wcmd "sliceh %d" conf.sliceheight;
4372 src#int "anti-aliasing level"
4373 (fun () -> conf.aalevel)
4374 (fun v ->
4375 conf.aalevel <- bound v 0 8;
4376 state.anchor <- getanchor ();
4377 opendoc state.path state.password;
4379 src#string "page scroll scaling factor"
4380 (fun () -> string_of_float conf.pgscale)
4381 (fun v ->
4383 let s = float_of_string v in
4384 conf.pgscale <- s
4385 with exn ->
4386 state.text <- Printf.sprintf
4387 "bad page scroll scaling factor `%s': %s"
4388 v (Printexc.to_string exn)
4391 src#int "ui font size"
4392 (fun () -> fstate.fontsize)
4393 (fun v -> setfontsize (bound v 5 100));
4394 src#int "hint font size"
4395 (fun () -> conf.hfsize)
4396 (fun v -> conf.hfsize <- bound v 5 100);
4397 colorp "background color"
4398 (fun () -> conf.bgcolor)
4399 (fun v -> conf.bgcolor <- v);
4400 src#bool "crop hack"
4401 (fun () -> conf.crophack)
4402 (fun v -> conf.crophack <- v);
4403 src#string "trim fuzz"
4404 (fun () -> irect_to_string conf.trimfuzz)
4405 (fun v ->
4407 conf.trimfuzz <- irect_of_string v;
4408 if conf.trimmargins
4409 then settrim true conf.trimfuzz;
4410 with exn ->
4411 state.text <- Printf.sprintf "bad irect `%s': %s"
4412 v (Printexc.to_string exn)
4414 src#string "throttle"
4415 (fun () ->
4416 match conf.maxwait with
4417 | None -> "show place holder if page is not ready"
4418 | Some time ->
4419 if time = infinity
4420 then "wait for page to fully render"
4421 else
4422 "wait " ^ string_of_float time
4423 ^ " seconds before showing placeholder"
4425 (fun v ->
4427 let f = float_of_string v in
4428 if f <= 0.0
4429 then conf.maxwait <- None
4430 else conf.maxwait <- Some f
4431 with exn ->
4432 state.text <- Printf.sprintf "bad time `%s': %s"
4433 v (Printexc.to_string exn)
4435 src#string "ghyll scroll"
4436 (fun () ->
4437 match conf.ghyllscroll with
4438 | None -> ""
4439 | Some nab -> ghyllscroll_to_string nab
4441 (fun v ->
4443 let gs =
4444 if String.length v = 0
4445 then None
4446 else Some (ghyllscroll_of_string v)
4448 conf.ghyllscroll <- gs
4449 with exn ->
4450 state.text <- Printf.sprintf "bad ghyll `%s': %s"
4451 v (Printexc.to_string exn)
4453 src#string "selection command"
4454 (fun () -> conf.selcmd)
4455 (fun v -> conf.selcmd <- v);
4456 src#colorspace "color space"
4457 (fun () -> colorspace_to_string conf.colorspace)
4458 (fun v ->
4459 conf.colorspace <- colorspace_of_int v;
4460 wcmd "cs %d" v;
4461 load state.layout;
4465 sep ();
4466 src#caption "Document" 0;
4467 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4468 src#caption2 "Pages"
4469 (fun () -> string_of_int state.pagecount) 1;
4470 src#caption2 "Dimensions"
4471 (fun () -> string_of_int (List.length state.pdims)) 1;
4472 if conf.trimmargins
4473 then (
4474 sep ();
4475 src#caption "Trimmed margins" 0;
4476 src#caption2 "Dimensions"
4477 (fun () -> string_of_int (List.length state.pdims)) 1;
4480 sep ();
4481 src#caption "OpenGL" 0;
4482 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4483 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4484 src#reset prevmode prevuioh;
4486 fun () ->
4487 state.text <- "";
4488 let prevmode = state.mode
4489 and prevuioh = state.uioh in
4490 fillsrc prevmode prevuioh;
4491 let source = (src :> lvsource) in
4492 let modehash = findkeyhash conf "info" in
4493 state.uioh <- coe (object (self)
4494 inherit listview ~source ~trusted:true ~modehash as super
4495 val mutable m_prevmemused = 0
4496 method infochanged = function
4497 | Memused ->
4498 if m_prevmemused != state.memused
4499 then (
4500 m_prevmemused <- state.memused;
4501 G.postRedisplay "memusedchanged";
4503 | Pdim -> G.postRedisplay "pdimchanged"
4504 | Docinfo -> fillsrc prevmode prevuioh
4506 method key key mask =
4507 if not (Wsi.withctrl mask)
4508 then
4509 match key with
4510 | 0xff51 -> coe (self#updownlevel ~-1)
4511 | 0xff53 -> coe (self#updownlevel 1)
4512 | _ -> super#key key mask
4513 else super#key key mask
4514 end);
4515 G.postRedisplay "info";
4518 let enterhelpmode =
4519 let source =
4520 (object
4521 inherit lvsourcebase
4522 method getitemcount = Array.length state.help
4523 method getitem n =
4524 let s, l, _ = state.help.(n) in
4525 (s, l)
4527 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4528 let optuioh =
4529 if not cancel
4530 then (
4531 m_qsearch <- qsearch;
4532 match state.help.(active) with
4533 | _, _, Action f -> Some (f uioh)
4534 | _ -> Some (uioh)
4536 else None
4538 m_active <- active;
4539 m_first <- first;
4540 m_pan <- pan;
4541 optuioh
4543 method hasaction n =
4544 match state.help.(n) with
4545 | _, _, Action _ -> true
4546 | _ -> false
4548 initializer
4549 m_active <- -1
4550 end)
4551 in fun () ->
4552 let modehash = findkeyhash conf "help" in
4553 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4554 G.postRedisplay "help";
4557 let entermsgsmode =
4558 let msgsource =
4559 let re = Str.regexp "[\r\n]" in
4560 (object
4561 inherit lvsourcebase
4562 val mutable m_items = [||]
4564 method getitemcount = 1 + Array.length m_items
4566 method getitem n =
4567 if n = 0
4568 then "[Clear]", 0
4569 else m_items.(n-1), 0
4571 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4572 ignore uioh;
4573 if not cancel
4574 then (
4575 if active = 0
4576 then Buffer.clear state.errmsgs;
4577 m_qsearch <- qsearch;
4579 m_active <- active;
4580 m_first <- first;
4581 m_pan <- pan;
4582 None
4584 method hasaction n =
4585 n = 0
4587 method reset =
4588 state.newerrmsgs <- false;
4589 let l = Str.split re (Buffer.contents state.errmsgs) in
4590 m_items <- Array.of_list l
4592 initializer
4593 m_active <- 0
4594 end)
4595 in fun () ->
4596 state.text <- "";
4597 msgsource#reset;
4598 let source = (msgsource :> lvsource) in
4599 let modehash = findkeyhash conf "listview" in
4600 state.uioh <- coe (object
4601 inherit listview ~source ~trusted:false ~modehash as super
4602 method display =
4603 if state.newerrmsgs
4604 then msgsource#reset;
4605 super#display
4606 end);
4607 G.postRedisplay "msgs";
4610 let quickbookmark ?title () =
4611 match state.layout with
4612 | [] -> ()
4613 | l :: _ ->
4614 let title =
4615 match title with
4616 | None ->
4617 let sec = Unix.gettimeofday () in
4618 let tm = Unix.localtime sec in
4619 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4620 (l.pageno+1)
4621 tm.Unix.tm_mday
4622 tm.Unix.tm_mon
4623 (tm.Unix.tm_year + 1900)
4624 tm.Unix.tm_hour
4625 tm.Unix.tm_min
4626 | Some title -> title
4628 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4631 let doreshape w h =
4632 state.fullscreen <- None;
4633 Wsi.reshape w h;
4636 let setautoscrollspeed step goingdown =
4637 let incr = max 1 ((abs step) / 2) in
4638 let incr = if goingdown then incr else -incr in
4639 let astep = step + incr in
4640 state.autoscroll <- Some astep;
4643 let gotounder = function
4644 | Ulinkgoto (pageno, top) ->
4645 if pageno >= 0
4646 then (
4647 addnav ();
4648 gotopage1 pageno top;
4651 | Ulinkuri s ->
4652 gotouri s
4654 | Uremote (filename, pageno) ->
4655 let path =
4656 if Sys.file_exists filename
4657 then filename
4658 else
4659 let dir = Filename.dirname state.path in
4660 let path = Filename.concat dir filename in
4661 if Sys.file_exists path
4662 then path
4663 else ""
4665 if String.length path > 0
4666 then (
4667 let anchor = getanchor () in
4668 let ranchor = state.path, state.password, anchor in
4669 state.anchor <- (pageno, 0.0, 0.0);
4670 state.ranchors <- ranchor :: state.ranchors;
4671 opendoc path "";
4673 else showtext '!' ("Could not find " ^ filename)
4675 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4678 let canpan () =
4679 match conf.columns with
4680 | Csplit _ -> true
4681 | _ -> conf.zoom > 1.0
4684 let viewkeyboard key mask =
4685 let enttext te =
4686 let mode = state.mode in
4687 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4688 state.text <- "";
4689 enttext ();
4690 G.postRedisplay "view:enttext"
4692 let ctrl = Wsi.withctrl mask in
4693 let existsinrow pageno (columns, coverA, coverB) p =
4694 let last = ((pageno - coverA) mod columns) + columns in
4695 let rec any = function
4696 | [] -> false
4697 | l :: rest ->
4698 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4699 then p l
4700 else (
4701 if not (p l)
4702 then (if l.pageno = last then false else any rest)
4703 else true
4706 any state.layout
4708 match key with
4709 | 81 -> (* Q *)
4710 exit 0
4712 | 0xff63 -> (* insert *)
4713 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4714 then (
4715 state.mode <- LinkNav (Ltgendir 0);
4716 gotoy state.y;
4718 else showtext '!' "Keyboard link navigation does not work under rotation"
4720 | 0xff1b | 113 -> (* escape / q *)
4721 begin match state.mstate with
4722 | Mzoomrect _ ->
4723 state.mstate <- Mnone;
4724 Wsi.setcursor Wsi.CURSOR_INHERIT;
4725 G.postRedisplay "kill zoom rect";
4726 | _ ->
4727 match state.ranchors with
4728 | [] -> raise Quit
4729 | (path, password, anchor) :: rest ->
4730 state.ranchors <- rest;
4731 state.anchor <- anchor;
4732 opendoc path password
4733 end;
4735 | 0xff08 -> (* backspace *)
4736 gotoghyll (getnav ~-1)
4738 | 111 -> (* o *)
4739 enteroutlinemode ()
4741 | 117 -> (* u *)
4742 state.rects <- [];
4743 state.text <- "";
4744 G.postRedisplay "dehighlight";
4746 | 47 | 63 -> (* / ? *)
4747 let ondone isforw s =
4748 cbput state.hists.pat s;
4749 state.searchpattern <- s;
4750 search s isforw
4752 let s = String.create 1 in
4753 s.[0] <- Char.chr key;
4754 enttext (s, "", Some (onhist state.hists.pat),
4755 textentry, ondone (key = 47), true)
4757 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4758 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4759 setzoom (conf.zoom +. incr)
4761 | 43 | 0xffab -> (* + *)
4762 let ondone s =
4763 let n =
4764 try int_of_string s with exc ->
4765 state.text <- Printf.sprintf "bad integer `%s': %s"
4766 s (Printexc.to_string exc);
4767 max_int
4769 if n != max_int
4770 then (
4771 conf.pagebias <- n;
4772 state.text <- "page bias is now " ^ string_of_int n;
4775 enttext ("page bias: ", "", None, intentry, ondone, true)
4777 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4778 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4779 setzoom (max 0.01 (conf.zoom -. decr))
4781 | 45 | 0xffad -> (* - *)
4782 let ondone msg = state.text <- msg in
4783 enttext (
4784 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4785 optentry state.mode, ondone, true
4788 | 48 when ctrl -> (* ctrl-0 *)
4789 setzoom 1.0
4791 | 49 when ctrl -> (* ctrl-1 *)
4792 let cols =
4793 match conf.columns with
4794 | Csingle _ | Cmulti _ -> 1
4795 | Csplit (n, _) -> n
4797 let zoom = zoomforh conf.winw conf.winh state.scrollw cols in
4798 if zoom < 1.0
4799 then setzoom zoom
4801 | 0xffc6 -> (* f9 *)
4802 togglebirdseye ()
4804 | 57 when ctrl -> (* ctrl-9 *)
4805 togglebirdseye ()
4807 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4808 when not ctrl -> (* 0..9 *)
4809 let ondone s =
4810 let n =
4811 try int_of_string s with exc ->
4812 state.text <- Printf.sprintf "bad integer `%s': %s"
4813 s (Printexc.to_string exc);
4816 if n >= 0
4817 then (
4818 addnav ();
4819 cbput state.hists.pag (string_of_int n);
4820 gotopage1 (n + conf.pagebias - 1) 0;
4823 let pageentry text key =
4824 match Char.unsafe_chr key with
4825 | 'g' -> TEdone text
4826 | _ -> intentry text key
4828 let text = "x" in text.[0] <- Char.chr key;
4829 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4831 | 98 -> (* b *)
4832 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
4833 reshape conf.winw conf.winh;
4835 | 108 -> (* l *)
4836 conf.hlinks <- not conf.hlinks;
4837 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4838 G.postRedisplay "toggle highlightlinks";
4840 | 70 -> (* F *)
4841 state.glinks <- true;
4842 let mode = state.mode in
4843 state.mode <- Textentry (
4844 (":", "", None, linknentry, linkndone gotounder, false),
4845 (fun _ ->
4846 state.glinks <- false;
4847 state.mode <- mode)
4849 state.text <- "";
4850 G.postRedisplay "view:linkent(F)"
4852 | 121 -> (* y *)
4853 state.glinks <- true;
4854 let mode = state.mode in
4855 state.mode <- Textentry (
4856 (":", "", None, linknentry, linkndone (fun under ->
4857 match Ne.pipe () with
4858 | Ne.Exn exn ->
4859 showtext '!' (Printf.sprintf "pipe failed: %s"
4860 (Printexc.to_string exn));
4861 | Ne.Res (r, w) ->
4862 let popened =
4863 try popen conf.selcmd [r, 0; w, -1]; true
4864 with exn ->
4865 showtext '!'
4866 (Printf.sprintf "failed to execute %s: %s"
4867 conf.selcmd (Printexc.to_string exn));
4868 false
4870 let clo cap fd =
4871 Ne.clo fd (fun msg ->
4872 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
4875 let s = undertext under in
4876 if popened
4877 then
4878 (try
4879 let l = String.length s in
4880 let n = Unix.write w s 0 l in
4881 if n != l
4882 then
4883 showtext '!'
4884 (Printf.sprintf
4885 "failed to write %d characters to sel pipe, wrote %d"
4888 with exn ->
4889 showtext '!'
4890 (Printf.sprintf "failed to write to sel pipe: %s"
4891 (Printexc.to_string exn)
4894 else dolog "%s" s;
4895 clo "pipe/r" r;
4896 clo "pipe/w" w;
4897 ), false
4899 fun _ ->
4900 state.glinks <- false;
4901 state.mode <- mode
4903 state.text <- "";
4904 G.postRedisplay "view:linkent"
4906 | 97 -> (* a *)
4907 begin match state.autoscroll with
4908 | Some step ->
4909 conf.autoscrollstep <- step;
4910 state.autoscroll <- None
4911 | None ->
4912 if conf.autoscrollstep = 0
4913 then state.autoscroll <- Some 1
4914 else state.autoscroll <- Some conf.autoscrollstep
4917 | 112 when ctrl -> (* ctrl-p *)
4918 launchpath ()
4920 | 80 -> (* P *)
4921 setpresentationmode (not conf.presentation);
4922 showtext ' ' ("presentation mode " ^
4923 if conf.presentation then "on" else "off");
4925 | 102 -> (* f *)
4926 begin match state.fullscreen with
4927 | None ->
4928 state.fullscreen <- Some (conf.winw, conf.winh);
4929 Wsi.fullscreen ()
4930 | Some (w, h) ->
4931 state.fullscreen <- None;
4932 doreshape w h
4935 | 112 | 78 -> (* p|N *)
4936 search state.searchpattern false
4938 | 110 | 0xffc0 -> (* n|F3 *)
4939 search state.searchpattern true
4941 | 116 -> (* t *)
4942 begin match state.layout with
4943 | [] -> ()
4944 | l :: _ ->
4945 gotoy_and_clear_text (getpagey l.pageno)
4948 | 32 -> (* space *)
4949 begin match state.layout with
4950 | [] -> ()
4951 | l :: rest ->
4952 match conf.columns with
4953 | Csingle _ ->
4954 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4955 then
4956 let y = clamp (pgscale conf.winh) in
4957 gotoghyll y
4958 else
4959 let pageno = min (l.pageno+1) (state.pagecount-1) in
4960 gotoghyll (getpagey pageno)
4961 | Cmulti ((c, _, _) as cl, _) ->
4962 if conf.presentation
4963 && (existsinrow l.pageno cl
4964 (fun l -> l.pageh > l.pagey + l.pagevh))
4965 then
4966 let y = clamp (pgscale conf.winh) in
4967 gotoghyll y
4968 else
4969 let pageno = min (l.pageno+c) (state.pagecount-1) in
4970 gotoghyll (getpagey pageno)
4971 | Csplit (n, _) ->
4972 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
4973 then
4974 let pagey, pageh = getpageyh l.pageno in
4975 let pagey = pagey + pageh * l.pagecol in
4976 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
4977 gotoghyll (pagey + pageh + ips)
4980 | 0xff9f | 0xffff -> (* delete *)
4981 begin match state.layout with
4982 | [] -> ()
4983 | l :: _ ->
4984 match conf.columns with
4985 | Csingle _ ->
4986 if conf.presentation && l.pagey != 0
4987 then
4988 gotoghyll (clamp (pgscale ~-(conf.winh)))
4989 else
4990 let pageno = max 0 (l.pageno-1) in
4991 gotoghyll (getpagey pageno)
4992 | Cmulti ((c, _, coverB) as cl, _) ->
4993 if conf.presentation &&
4994 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4995 then
4996 gotoghyll (clamp (pgscale ~-(conf.winh)))
4997 else
4998 let decr =
4999 if l.pageno = state.pagecount - coverB
5000 then 1
5001 else c
5003 let pageno = max 0 (l.pageno-decr) in
5004 gotoghyll (getpagey pageno)
5005 | Csplit (n, _) ->
5006 let y =
5007 if l.pagecol = 0
5008 then
5009 if l.pageno = 0
5010 then l.pagey
5011 else
5012 let pageno = max 0 (l.pageno-1) in
5013 let pagey, pageh = getpageyh pageno in
5014 pagey + (n-1)*pageh
5015 else
5016 let pagey, pageh = getpageyh l.pageno in
5017 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5019 gotoghyll y
5022 | 61 -> (* = *)
5023 showtext ' ' (describe_location ());
5025 | 119 -> (* w *)
5026 begin match state.layout with
5027 | [] -> ()
5028 | l :: _ ->
5029 doreshape (l.pagew + state.scrollw) l.pageh;
5030 G.postRedisplay "w"
5033 | 39 -> (* ' *)
5034 enterbookmarkmode ()
5036 | 104 | 0xffbe -> (* h|F1 *)
5037 enterhelpmode ()
5039 | 105 -> (* i *)
5040 enterinfomode ()
5042 | 101 when conf.redirectstderr -> (* e *)
5043 entermsgsmode ()
5045 | 109 -> (* m *)
5046 let ondone s =
5047 match state.layout with
5048 | l :: _ -> state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5049 | _ -> ()
5051 enttext ("bookmark: ", "", None, textentry, ondone, true)
5053 | 126 -> (* ~ *)
5054 quickbookmark ();
5055 showtext ' ' "Quick bookmark added";
5057 | 122 -> (* z *)
5058 begin match state.layout with
5059 | l :: _ ->
5060 let rect = getpdimrect l.pagedimno in
5061 let w, h =
5062 if conf.crophack
5063 then
5064 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5065 truncate (1.2 *. (rect.(3) -. rect.(0))))
5066 else
5067 (truncate (rect.(1) -. rect.(0)),
5068 truncate (rect.(3) -. rect.(0)))
5070 let w = truncate ((float w)*.conf.zoom)
5071 and h = truncate ((float h)*.conf.zoom) in
5072 if w != 0 && h != 0
5073 then (
5074 state.anchor <- getanchor ();
5075 doreshape (w + state.scrollw) (h + conf.interpagespace)
5077 G.postRedisplay "z";
5079 | [] -> ()
5082 | 50 when ctrl -> (* ctrl-2 *)
5083 let maxw = getmaxw () in
5084 if maxw > 0.0
5085 then setzoom (maxw /. float conf.winw)
5087 | 60 | 62 -> (* < > *)
5088 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5090 | 91 | 93 -> (* [ ] *)
5091 conf.colorscale <-
5092 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5094 G.postRedisplay "brightness";
5096 | 99 when state.mode = View -> (* c *)
5097 let (c, a, b), z =
5098 match state.prevcolumns with
5099 | None -> (1, 0, 0), 1.0
5100 | Some (columns, z) ->
5101 let cab =
5102 match columns with
5103 | Csplit (c, _) -> -c, 0, 0
5104 | Cmulti ((c, a, b), _) -> c, a, b
5105 | Csingle _ -> 1, 0, 0
5107 cab, z
5109 setcolumns View c a b;
5110 setzoom z;
5112 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5113 setzoom state.prevzoom
5115 | 107 | 0xff52 -> (* k up *)
5116 begin match state.autoscroll with
5117 | None ->
5118 begin match state.mode with
5119 | Birdseye beye -> upbirdseye 1 beye
5120 | _ ->
5121 if ctrl
5122 then gotoy_and_clear_text (clamp ~-(conf.winh/2))
5123 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5125 | Some n ->
5126 setautoscrollspeed n false
5129 | 106 | 0xff54 -> (* j down *)
5130 begin match state.autoscroll with
5131 | None ->
5132 begin match state.mode with
5133 | Birdseye beye -> downbirdseye 1 beye
5134 | _ ->
5135 if ctrl
5136 then gotoy_and_clear_text (clamp (conf.winh/2))
5137 else gotoy_and_clear_text (clamp conf.scrollstep)
5139 | Some n ->
5140 setautoscrollspeed n true
5143 | 0xff51 | 0xff53 when not (Wsi.withalt mask) -> (* left / right *)
5144 if canpan ()
5145 then
5146 let dx =
5147 if ctrl
5148 then conf.winw / 2
5149 else conf.hscrollstep
5151 let dx = if key = 0xff51 then dx else -dx in
5152 state.x <- state.x + dx;
5153 gotoy_and_clear_text state.y
5154 else (
5155 state.text <- "";
5156 G.postRedisplay "lef/right"
5159 | 0xff55 -> (* prior *)
5160 let y =
5161 if ctrl
5162 then
5163 match state.layout with
5164 | [] -> state.y
5165 | l :: _ -> state.y - l.pagey
5166 else
5167 clamp (pgscale (-conf.winh))
5169 gotoghyll y
5171 | 0xff56 -> (* next *)
5172 let y =
5173 if ctrl
5174 then
5175 match List.rev state.layout with
5176 | [] -> state.y
5177 | l :: _ -> getpagey l.pageno
5178 else
5179 clamp (pgscale conf.winh)
5181 gotoghyll y
5183 | 103 | 0xff50 -> (* g home *)
5184 gotoghyll 0
5185 | 71 | 0xff57 -> (* G end *)
5186 gotoghyll (clamp state.maxy)
5188 | 0xff53 when Wsi.withalt mask -> (* alt-right *)
5189 gotoghyll (getnav 1)
5190 | 0xff51 when Wsi.withalt mask -> (* alt-left *)
5191 gotoghyll (getnav ~-1)
5193 | 114 -> (* r *)
5194 state.anchor <- getanchor ();
5195 opendoc state.path state.password
5197 | 118 when conf.debug -> (* v *)
5198 state.rects <- [];
5199 List.iter (fun l ->
5200 match getopaque l.pageno with
5201 | None -> ()
5202 | Some opaque ->
5203 let x0, y0, x1, y1 = pagebbox opaque in
5204 let a,b = float x0, float y0 in
5205 let c,d = float x1, float y0 in
5206 let e,f = float x1, float y1 in
5207 let h,j = float x0, float y1 in
5208 let rect = (a,b,c,d,e,f,h,j) in
5209 debugrect rect;
5210 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5211 ) state.layout;
5212 G.postRedisplay "v";
5214 | _ ->
5215 vlog "huh? %s" (Wsi.keyname key)
5218 let linknavkeyboard key mask linknav =
5219 let getpage pageno =
5220 let rec loop = function
5221 | [] -> None
5222 | l :: _ when l.pageno = pageno -> Some l
5223 | _ :: rest -> loop rest
5224 in loop state.layout
5226 let doexact (pageno, n) =
5227 match getopaque pageno, getpage pageno with
5228 | Some opaque, Some l ->
5229 if key = 0xff0d
5230 then
5231 let under = getlink opaque n in
5232 G.postRedisplay "link gotounder";
5233 gotounder under;
5234 state.mode <- View;
5235 else
5236 let opt, dir =
5237 match key with
5238 | 0xff50 -> (* home *)
5239 Some (findlink opaque LDfirst), -1
5241 | 0xff57 -> (* end *)
5242 Some (findlink opaque LDlast), 1
5244 | 0xff51 -> (* left *)
5245 Some (findlink opaque (LDleft n)), -1
5247 | 0xff53 -> (* right *)
5248 Some (findlink opaque (LDright n)), 1
5250 | 0xff52 -> (* up *)
5251 Some (findlink opaque (LDup n)), -1
5253 | 0xff54 -> (* down *)
5254 Some (findlink opaque (LDdown n)), 1
5256 | _ -> None, 0
5258 let pwl l dir =
5259 begin match findpwl l.pageno dir with
5260 | Pwlnotfound -> ()
5261 | Pwl pageno ->
5262 let notfound dir =
5263 state.mode <- LinkNav (Ltgendir dir);
5264 let y, h = getpageyh pageno in
5265 let y =
5266 if dir < 0
5267 then y + h - conf.winh
5268 else y
5270 gotoy y
5272 begin match getopaque pageno, getpage pageno with
5273 | Some opaque, Some _ ->
5274 let link =
5275 let ld = if dir > 0 then LDfirst else LDlast in
5276 findlink opaque ld
5278 begin match link with
5279 | Lfound m ->
5280 showlinktype (getlink opaque m);
5281 state.mode <- LinkNav (Ltexact (pageno, m));
5282 G.postRedisplay "linknav jpage";
5283 | _ -> notfound dir
5284 end;
5285 | _ -> notfound dir
5286 end;
5287 end;
5289 begin match opt with
5290 | Some Lnotfound -> pwl l dir;
5291 | Some (Lfound m) ->
5292 if m = n
5293 then pwl l dir
5294 else (
5295 let _, y0, _, y1 = getlinkrect opaque m in
5296 if y0 < l.pagey
5297 then gotopage1 l.pageno y0
5298 else (
5299 let d = fstate.fontsize + 1 in
5300 if y1 - l.pagey > l.pagevh - d
5301 then gotopage1 l.pageno (y1 - conf.winh - state.hscrollh + d)
5302 else G.postRedisplay "linknav";
5304 showlinktype (getlink opaque m);
5305 state.mode <- LinkNav (Ltexact (l.pageno, m));
5308 | None -> viewkeyboard key mask
5309 end;
5310 | _ -> viewkeyboard key mask
5312 if key = 0xff63
5313 then (
5314 state.mode <- View;
5315 G.postRedisplay "leave linknav"
5317 else
5318 match linknav with
5319 | Ltgendir _ -> viewkeyboard key mask
5320 | Ltexact exact -> doexact exact
5323 let keyboard key mask =
5324 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5325 then wcmd "interrupt"
5326 else state.uioh <- state.uioh#key key mask
5329 let birdseyekeyboard key mask
5330 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5331 let incr =
5332 match conf.columns with
5333 | Csingle _ -> 1
5334 | Cmulti ((c, _, _), _) -> c
5335 | Csplit _ -> failwith "bird's eye split mode"
5337 let pgh layout = List.fold_left (fun m l -> max l.pageh m) conf.winh layout in
5338 match key with
5339 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5340 let y, h = getpageyh pageno in
5341 let top = (conf.winh - h) / 2 in
5342 gotoy (max 0 (y - top))
5343 | 0xff0d -> leavebirdseye beye false
5344 | 0xff1b -> leavebirdseye beye true (* escape *)
5345 | 0xff52 -> upbirdseye incr beye (* up *)
5346 | 0xff54 -> downbirdseye incr beye (* down *)
5347 | 0xff51 -> upbirdseye 1 beye (* left *)
5348 | 0xff53 -> downbirdseye 1 beye (* right *)
5350 | 0xff55 -> (* prior *)
5351 begin match state.layout with
5352 | l :: _ ->
5353 if l.pagey != 0
5354 then (
5355 state.mode <- Birdseye (
5356 oconf, leftx, l.pageno, hooverpageno, anchor
5358 gotopage1 l.pageno 0;
5360 else (
5361 let layout = layout (state.y-conf.winh) (pgh state.layout) in
5362 match layout with
5363 | [] -> gotoy (clamp (-conf.winh))
5364 | l :: _ ->
5365 state.mode <- Birdseye (
5366 oconf, leftx, l.pageno, hooverpageno, anchor
5368 gotopage1 l.pageno 0
5371 | [] -> gotoy (clamp (-conf.winh))
5372 end;
5374 | 0xff56 -> (* next *)
5375 begin match List.rev state.layout with
5376 | l :: _ ->
5377 let layout = layout (state.y + (pgh state.layout)) conf.winh in
5378 begin match layout with
5379 | [] ->
5380 let incr = l.pageh - l.pagevh in
5381 if incr = 0
5382 then (
5383 state.mode <-
5384 Birdseye (
5385 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5387 G.postRedisplay "birdseye pagedown";
5389 else gotoy (clamp (incr + conf.interpagespace*2));
5391 | l :: _ ->
5392 state.mode <-
5393 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5394 gotopage1 l.pageno 0;
5397 | [] -> gotoy (clamp conf.winh)
5398 end;
5400 | 0xff50 -> (* home *)
5401 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5402 gotopage1 0 0
5404 | 0xff57 -> (* end *)
5405 let pageno = state.pagecount - 1 in
5406 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5407 if not (pagevisible state.layout pageno)
5408 then
5409 let h =
5410 match List.rev state.pdims with
5411 | [] -> conf.winh
5412 | (_, _, h, _) :: _ -> h
5414 gotoy (max 0 (getpagey pageno - (conf.winh - h - conf.interpagespace)))
5415 else G.postRedisplay "birdseye end";
5416 | _ -> viewkeyboard key mask
5419 let drawpage l linkindexbase =
5420 let color =
5421 match state.mode with
5422 | Textentry _ -> scalecolor 0.4
5423 | LinkNav _
5424 | View -> scalecolor 1.0
5425 | Birdseye (_, _, pageno, hooverpageno, _) ->
5426 if l.pageno = hooverpageno
5427 then scalecolor 0.9
5428 else (
5429 if l.pageno = pageno
5430 then scalecolor 1.0
5431 else scalecolor 0.8
5434 drawtiles l color;
5435 begin match getopaque l.pageno with
5436 | Some opaque ->
5437 if tileready l l.pagex l.pagey
5438 then
5439 let x = l.pagedispx - l.pagex
5440 and y = l.pagedispy - l.pagey in
5441 let hlmask =
5442 match conf.columns with
5443 | Csingle _ | Cmulti _ ->
5444 (if conf.hlinks then 1 else 0)
5445 + (if state.glinks
5446 && not (isbirdseye state.mode) then 2 else 0)
5447 | _ -> 0
5449 let s =
5450 match state.mode with
5451 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5452 | _ -> ""
5454 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5455 else 0
5457 | _ -> 0
5458 end;
5461 let scrollindicator () =
5462 let sbw, ph, sh = state.uioh#scrollph in
5463 let sbh, pw, sw = state.uioh#scrollpw in
5465 GlDraw.color (0.64, 0.64, 0.64);
5466 GlDraw.rect
5467 (float (conf.winw - sbw), 0.)
5468 (float conf.winw, float conf.winh)
5470 GlDraw.rect
5471 (0., float (conf.winh - sbh))
5472 (float (conf.winw - state.scrollw - 1), float conf.winh)
5474 GlDraw.color (0.0, 0.0, 0.0);
5476 GlDraw.rect
5477 (float (conf.winw - sbw), ph)
5478 (float conf.winw, ph +. sh)
5480 GlDraw.rect
5481 (pw, float (conf.winh - sbh))
5482 (pw +. sw, float conf.winh)
5486 let showsel () =
5487 match state.mstate with
5488 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5491 | Msel ((x0, y0), (x1, y1)) ->
5492 let rec loop = function
5493 | l :: ls ->
5494 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5495 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5496 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5497 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5498 then
5499 match getopaque l.pageno with
5500 | Some opaque ->
5501 let x0, y0 = pagetranslatepoint l x0 y0 in
5502 let x1, y1 = pagetranslatepoint l x1 y1 in
5503 seltext opaque (x0, y0, x1, y1);
5504 | _ -> ()
5505 else loop ls
5506 | [] -> ()
5508 loop state.layout
5511 let showrects rects =
5512 Gl.enable `blend;
5513 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5514 GlDraw.polygon_mode `both `fill;
5515 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5516 List.iter
5517 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5518 List.iter (fun l ->
5519 if l.pageno = pageno
5520 then (
5521 let dx = float (l.pagedispx - l.pagex) in
5522 let dy = float (l.pagedispy - l.pagey) in
5523 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5524 GlDraw.begins `quads;
5526 GlDraw.vertex2 (x0+.dx, y0+.dy);
5527 GlDraw.vertex2 (x1+.dx, y1+.dy);
5528 GlDraw.vertex2 (x2+.dx, y2+.dy);
5529 GlDraw.vertex2 (x3+.dx, y3+.dy);
5531 GlDraw.ends ();
5533 ) state.layout
5534 ) rects
5536 Gl.disable `blend;
5539 let display () =
5540 GlClear.color (scalecolor2 conf.bgcolor);
5541 GlClear.clear [`color];
5542 let rec loop linkindexbase = function
5543 | l :: rest ->
5544 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5545 loop linkindexbase rest
5546 | [] -> ()
5548 loop 0 state.layout;
5549 let rects =
5550 match state.mode with
5551 | LinkNav (Ltexact (pageno, linkno)) ->
5552 begin match getopaque pageno with
5553 | Some opaque ->
5554 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5555 (pageno, 5, (
5556 float x0, float y0,
5557 float x1, float y0,
5558 float x1, float y1,
5559 float x0, float y1)
5560 ) :: state.rects
5561 | None -> state.rects
5563 | _ -> state.rects
5565 showrects rects;
5566 showsel ();
5567 state.uioh#display;
5568 begin match state.mstate with
5569 | Mzoomrect ((x0, y0), (x1, y1)) ->
5570 Gl.enable `blend;
5571 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5572 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5573 GlDraw.rect (float x0, float y0)
5574 (float x1, float y1);
5575 Gl.disable `blend;
5576 | _ -> ()
5577 end;
5578 enttext ();
5579 scrollindicator ();
5580 Wsi.swapb ();
5583 let zoomrect x y x1 y1 =
5584 let x0 = min x x1
5585 and x1 = max x x1
5586 and y0 = min y y1 in
5587 gotoy (state.y + y0);
5588 state.anchor <- getanchor ();
5589 let zoom = (float conf.winw *. conf.zoom) /. float (x1 - x0) in
5590 let margin =
5591 if state.w < conf.winw - state.scrollw
5592 then (conf.winw - state.scrollw - state.w) / 2
5593 else 0
5595 state.x <- (state.x + margin) - x0;
5596 setzoom zoom;
5597 Wsi.setcursor Wsi.CURSOR_INHERIT;
5598 state.mstate <- Mnone;
5601 let scrollx x =
5602 let winw = conf.winw - state.scrollw - 1 in
5603 let s = float x /. float winw in
5604 let destx = truncate (float (state.w + winw) *. s) in
5605 state.x <- winw - destx;
5606 gotoy_and_clear_text state.y;
5607 state.mstate <- Mscrollx;
5610 let scrolly y =
5611 let s = float y /. float conf.winh in
5612 let desty = truncate (float (state.maxy - conf.winh) *. s) in
5613 gotoy_and_clear_text desty;
5614 state.mstate <- Mscrolly;
5617 let viewmouse button down x y mask =
5618 match button with
5619 | n when (n == 4 || n == 5) && not down ->
5620 if Wsi.withctrl mask
5621 then (
5622 match state.mstate with
5623 | Mzoom (oldn, i) ->
5624 if oldn = n
5625 then (
5626 if i = 2
5627 then
5628 let incr =
5629 match n with
5630 | 5 ->
5631 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5632 | _ ->
5633 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5635 let zoom = conf.zoom -. incr in
5636 setzoom zoom;
5637 state.mstate <- Mzoom (n, 0);
5638 else
5639 state.mstate <- Mzoom (n, i+1);
5641 else state.mstate <- Mzoom (n, 0)
5643 | _ -> state.mstate <- Mzoom (n, 0)
5645 else (
5646 match state.autoscroll with
5647 | Some step -> setautoscrollspeed step (n=4)
5648 | None ->
5649 let incr =
5650 if n = 4
5651 then -conf.scrollstep
5652 else conf.scrollstep
5654 let incr = incr * 2 in
5655 let y = clamp incr in
5656 gotoy_and_clear_text y
5659 | n when (n = 6 || n = 7) && not down && canpan () ->
5660 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5661 gotoy_and_clear_text state.y
5663 | 1 when Wsi.withctrl mask ->
5664 if down
5665 then (
5666 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5667 state.mstate <- Mpan (x, y)
5669 else
5670 state.mstate <- Mnone
5672 | 3 ->
5673 if down
5674 then (
5675 Wsi.setcursor Wsi.CURSOR_CYCLE;
5676 let p = (x, y) in
5677 state.mstate <- Mzoomrect (p, p)
5679 else (
5680 match state.mstate with
5681 | Mzoomrect ((x0, y0), _) ->
5682 if abs (x-x0) > 10 && abs (y - y0) > 10
5683 then zoomrect x0 y0 x y
5684 else (
5685 state.mstate <- Mnone;
5686 Wsi.setcursor Wsi.CURSOR_INHERIT;
5687 G.postRedisplay "kill accidental zoom rect";
5689 | _ ->
5690 Wsi.setcursor Wsi.CURSOR_INHERIT;
5691 state.mstate <- Mnone
5694 | 1 when x > conf.winw - state.scrollw ->
5695 if down
5696 then
5697 let _, position, sh = state.uioh#scrollph in
5698 if y > truncate position && y < truncate (position +. sh)
5699 then state.mstate <- Mscrolly
5700 else scrolly y
5701 else
5702 state.mstate <- Mnone
5704 | 1 when y > conf.winh - state.hscrollh ->
5705 if down
5706 then
5707 let _, position, sw = state.uioh#scrollpw in
5708 if x > truncate position && x < truncate (position +. sw)
5709 then state.mstate <- Mscrollx
5710 else scrollx x
5711 else
5712 state.mstate <- Mnone
5714 | 1 ->
5715 let dest = if down then getunder x y else Unone in
5716 begin match dest with
5717 | Ulinkgoto _
5718 | Ulinkuri _
5719 | Uremote _
5720 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5721 gotounder dest
5723 | Unone when down ->
5724 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5725 state.mstate <- Mpan (x, y);
5727 | Unone | Utext _ ->
5728 if down
5729 then (
5730 if conf.angle mod 360 = 0
5731 then (
5732 state.mstate <- Msel ((x, y), (x, y));
5733 G.postRedisplay "mouse select";
5736 else (
5737 match state.mstate with
5738 | Mnone -> ()
5740 | Mzoom _ | Mscrollx | Mscrolly ->
5741 state.mstate <- Mnone
5743 | Mzoomrect ((x0, y0), _) ->
5744 zoomrect x0 y0 x y
5746 | Mpan _ ->
5747 Wsi.setcursor Wsi.CURSOR_INHERIT;
5748 state.mstate <- Mnone
5750 | Msel ((x0, y0), (x1, y1)) ->
5751 let rec loop = function
5752 | [] -> ()
5753 | l :: rest ->
5754 let inside =
5755 let a0 = l.pagedispy in
5756 let a1 = a0 + l.pagevh in
5757 let b0 = l.pagedispx in
5758 let b1 = b0 + l.pagevw in
5759 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5760 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5762 if inside
5763 then
5764 match getopaque l.pageno with
5765 | Some opaque ->
5766 begin
5767 match Ne.pipe () with
5768 | Ne.Exn exn ->
5769 showtext '!'
5770 (Printf.sprintf
5771 "can not create sel pipe: %s"
5772 (Printexc.to_string exn));
5773 | Ne.Res (r, w) ->
5774 let doclose what fd =
5775 Ne.clo fd (fun msg ->
5776 dolog "%s close failed: %s" what msg)
5779 popen conf.selcmd [r, 0; w, -1];
5780 copysel w opaque;
5781 doclose "pipe/r" r;
5782 G.postRedisplay "copysel";
5783 with exn ->
5784 dolog "can not execute %S: %s"
5785 conf.selcmd (Printexc.to_string exn);
5786 doclose "pipe/r" r;
5787 doclose "pipe/w" w;
5789 | None -> ()
5790 else loop rest
5792 loop state.layout;
5793 Wsi.setcursor Wsi.CURSOR_INHERIT;
5794 state.mstate <- Mnone;
5798 | _ -> ()
5801 let birdseyemouse button down x y mask
5802 (conf, leftx, _, hooverpageno, anchor) =
5803 match button with
5804 | 1 when down ->
5805 let rec loop = function
5806 | [] -> ()
5807 | l :: rest ->
5808 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5809 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5810 then (
5811 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5813 else loop rest
5815 loop state.layout
5816 | 3 -> ()
5817 | _ -> viewmouse button down x y mask
5820 let mouse button down x y mask =
5821 state.uioh <- state.uioh#button button down x y mask;
5824 let motion ~x ~y =
5825 state.uioh <- state.uioh#motion x y
5828 let pmotion ~x ~y =
5829 state.uioh <- state.uioh#pmotion x y;
5832 let uioh = object
5833 method display = ()
5835 method key key mask =
5836 begin match state.mode with
5837 | Textentry textentry -> textentrykeyboard key mask textentry
5838 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5839 | View -> viewkeyboard key mask
5840 | LinkNav linknav -> linknavkeyboard key mask linknav
5841 end;
5842 state.uioh
5844 method button button bstate x y mask =
5845 begin match state.mode with
5846 | LinkNav _
5847 | View -> viewmouse button bstate x y mask
5848 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5849 | Textentry _ -> ()
5850 end;
5851 state.uioh
5853 method motion x y =
5854 begin match state.mode with
5855 | Textentry _ -> ()
5856 | View | Birdseye _ | LinkNav _ ->
5857 match state.mstate with
5858 | Mzoom _ | Mnone -> ()
5860 | Mpan (x0, y0) ->
5861 let dx = x - x0
5862 and dy = y0 - y in
5863 state.mstate <- Mpan (x, y);
5864 if canpan ()
5865 then state.x <- state.x + dx;
5866 let y = clamp dy in
5867 gotoy_and_clear_text y
5869 | Msel (a, _) ->
5870 state.mstate <- Msel (a, (x, y));
5871 G.postRedisplay "motion select";
5873 | Mscrolly ->
5874 let y = min conf.winh (max 0 y) in
5875 scrolly y
5877 | Mscrollx ->
5878 let x = min conf.winw (max 0 x) in
5879 scrollx x
5881 | Mzoomrect (p0, _) ->
5882 state.mstate <- Mzoomrect (p0, (x, y));
5883 G.postRedisplay "motion zoomrect";
5884 end;
5885 state.uioh
5887 method pmotion x y =
5888 begin match state.mode with
5889 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5890 let rec loop = function
5891 | [] ->
5892 if hooverpageno != -1
5893 then (
5894 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5895 G.postRedisplay "pmotion birdseye no hoover";
5897 | l :: rest ->
5898 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5899 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5900 then (
5901 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5902 G.postRedisplay "pmotion birdseye hoover";
5904 else loop rest
5906 loop state.layout
5908 | Textentry _ -> ()
5910 | LinkNav _
5911 | View ->
5912 match state.mstate with
5913 | Mnone -> updateunder x y
5914 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5916 end;
5917 state.uioh
5919 method infochanged _ = ()
5921 method scrollph =
5922 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
5923 let p, h = scrollph state.y maxy in
5924 state.scrollw, p, h
5926 method scrollpw =
5927 let winw = conf.winw - state.scrollw - 1 in
5928 let fwinw = float winw in
5929 let sw =
5930 let sw = fwinw /. float state.w in
5931 let sw = fwinw *. sw in
5932 max sw (float conf.scrollh)
5934 let position, sw =
5935 let f = state.w+winw in
5936 let r = float (winw-state.x) /. float f in
5937 let p = fwinw *. r in
5938 p-.sw/.2., sw
5940 let sw =
5941 if position +. sw > fwinw
5942 then fwinw -. position
5943 else sw
5945 state.hscrollh, position, sw
5947 method modehash =
5948 let modename =
5949 match state.mode with
5950 | LinkNav _ -> "links"
5951 | Textentry _ -> "textentry"
5952 | Birdseye _ -> "birdseye"
5953 | View -> "view"
5955 findkeyhash conf modename
5956 end;;
5958 module Config =
5959 struct
5960 open Parser
5962 let fontpath = ref "";;
5964 module KeyMap =
5965 Map.Make (struct type t = (int * int) let compare = compare end);;
5967 let unent s =
5968 let l = String.length s in
5969 let b = Buffer.create l in
5970 unent b s 0 l;
5971 Buffer.contents b;
5974 let home =
5975 try Sys.getenv "HOME"
5976 with exn ->
5977 prerr_endline
5978 ("Can not determine home directory location: " ^
5979 Printexc.to_string exn);
5983 let modifier_of_string = function
5984 | "alt" -> Wsi.altmask
5985 | "shift" -> Wsi.shiftmask
5986 | "ctrl" | "control" -> Wsi.ctrlmask
5987 | "meta" -> Wsi.metamask
5988 | _ -> 0
5991 let key_of_string =
5992 let r = Str.regexp "-" in
5993 fun s ->
5994 let elems = Str.full_split r s in
5995 let f n k m =
5996 let g s =
5997 let m1 = modifier_of_string s in
5998 if m1 = 0
5999 then (Wsi.namekey s, m)
6000 else (k, m lor m1)
6001 in function
6002 | Str.Delim s when n land 1 = 0 -> g s
6003 | Str.Text s -> g s
6004 | Str.Delim _ -> (k, m)
6006 let rec loop n k m = function
6007 | [] -> (k, m)
6008 | x :: xs ->
6009 let k, m = f n k m x in
6010 loop (n+1) k m xs
6012 loop 0 0 0 elems
6015 let keys_of_string =
6016 let r = Str.regexp "[ \t]" in
6017 fun s ->
6018 let elems = Str.split r s in
6019 List.map key_of_string elems
6022 let copykeyhashes c =
6023 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6026 let config_of c attrs =
6027 let apply c k v =
6029 match k with
6030 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6031 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6032 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6033 | "preload" -> { c with preload = bool_of_string v }
6034 | "page-bias" -> { c with pagebias = int_of_string v }
6035 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6036 | "horizontal-scroll-step" ->
6037 { c with hscrollstep = max (int_of_string v) 1 }
6038 | "auto-scroll-step" ->
6039 { c with autoscrollstep = max 0 (int_of_string v) }
6040 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6041 | "crop-hack" -> { c with crophack = bool_of_string v }
6042 | "throttle" ->
6043 let mw =
6044 match String.lowercase v with
6045 | "true" -> Some infinity
6046 | "false" -> None
6047 | f -> Some (float_of_string f)
6049 { c with maxwait = mw}
6050 | "highlight-links" -> { c with hlinks = bool_of_string v }
6051 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6052 | "vertical-margin" ->
6053 { c with interpagespace = max 0 (int_of_string v) }
6054 | "zoom" ->
6055 let zoom = float_of_string v /. 100. in
6056 let zoom = max zoom 0.0 in
6057 { c with zoom = zoom }
6058 | "presentation" -> { c with presentation = bool_of_string v }
6059 | "rotation-angle" -> { c with angle = int_of_string v }
6060 | "width" -> { c with winw = max 20 (int_of_string v) }
6061 | "height" -> { c with winh = max 20 (int_of_string v) }
6062 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6063 | "proportional-display" -> { c with proportional = bool_of_string v }
6064 | "pixmap-cache-size" ->
6065 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6066 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6067 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6068 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6069 | "persistent-location" -> { c with jumpback = bool_of_string v }
6070 | "background-color" -> { c with bgcolor = color_of_string v }
6071 | "scrollbar-in-presentation" ->
6072 { c with scrollbarinpm = bool_of_string v }
6073 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6074 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6075 | "mupdf-store-size" ->
6076 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6077 | "checkers" -> { c with checkers = bool_of_string v }
6078 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6079 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6080 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6081 | "uri-launcher" -> { c with urilauncher = unent v }
6082 | "path-launcher" -> { c with pathlauncher = unent v }
6083 | "color-space" -> { c with colorspace = colorspace_of_string v }
6084 | "invert-colors" -> { c with invert = bool_of_string v }
6085 | "brightness" -> { c with colorscale = float_of_string v }
6086 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6087 | "ghyllscroll" ->
6088 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6089 | "columns" ->
6090 let (n, _, _) as nab = multicolumns_of_string v in
6091 if n < 0
6092 then { c with columns = Csplit (-n, [||]) }
6093 else { c with columns = Cmulti (nab, [||]) }
6094 | "birds-eye-columns" ->
6095 { c with beyecolumns = Some (max (int_of_string v) 2) }
6096 | "selection-command" -> { c with selcmd = unent v }
6097 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6098 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6099 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6100 | _ -> c
6101 with exn ->
6102 prerr_endline ("Error processing attribute (`" ^
6103 k ^ "'=`" ^ v ^ "'): " ^ Printexc.to_string exn);
6106 let rec fold c = function
6107 | [] -> c
6108 | (k, v) :: rest ->
6109 let c = apply c k v in
6110 fold c rest
6112 fold { c with keyhashes = copykeyhashes c } attrs;
6115 let fromstring f pos n v d =
6116 try f v
6117 with exn ->
6118 dolog "Error processing attribute (%S=%S) at %d\n%s"
6119 n v pos (Printexc.to_string exn)
6124 let bookmark_of attrs =
6125 let rec fold title page rely visy = function
6126 | ("title", v) :: rest -> fold v page rely visy rest
6127 | ("page", v) :: rest -> fold title v rely visy rest
6128 | ("rely", v) :: rest -> fold title page v visy rest
6129 | ("visy", v) :: rest -> fold title page rely v rest
6130 | _ :: rest -> fold title page rely visy rest
6131 | [] -> title, page, rely, visy
6133 fold "invalid" "0" "0" "0" attrs
6136 let doc_of attrs =
6137 let rec fold path page rely pan visy = function
6138 | ("path", v) :: rest -> fold v page rely pan visy rest
6139 | ("page", v) :: rest -> fold path v rely pan visy rest
6140 | ("rely", v) :: rest -> fold path page v pan visy rest
6141 | ("pan", v) :: rest -> fold path page rely v visy rest
6142 | ("visy", v) :: rest -> fold path page rely pan v rest
6143 | _ :: rest -> fold path page rely pan visy rest
6144 | [] -> path, page, rely, pan, visy
6146 fold "" "0" "0" "0" "0" attrs
6149 let map_of attrs =
6150 let rec fold rs ls = function
6151 | ("out", v) :: rest -> fold v ls rest
6152 | ("in", v) :: rest -> fold rs v rest
6153 | _ :: rest -> fold ls rs rest
6154 | [] -> ls, rs
6156 fold "" "" attrs
6159 let setconf dst src =
6160 dst.scrollbw <- src.scrollbw;
6161 dst.scrollh <- src.scrollh;
6162 dst.icase <- src.icase;
6163 dst.preload <- src.preload;
6164 dst.pagebias <- src.pagebias;
6165 dst.verbose <- src.verbose;
6166 dst.scrollstep <- src.scrollstep;
6167 dst.maxhfit <- src.maxhfit;
6168 dst.crophack <- src.crophack;
6169 dst.autoscrollstep <- src.autoscrollstep;
6170 dst.maxwait <- src.maxwait;
6171 dst.hlinks <- src.hlinks;
6172 dst.underinfo <- src.underinfo;
6173 dst.interpagespace <- src.interpagespace;
6174 dst.zoom <- src.zoom;
6175 dst.presentation <- src.presentation;
6176 dst.angle <- src.angle;
6177 dst.winw <- src.winw;
6178 dst.winh <- src.winh;
6179 dst.savebmarks <- src.savebmarks;
6180 dst.memlimit <- src.memlimit;
6181 dst.proportional <- src.proportional;
6182 dst.texcount <- src.texcount;
6183 dst.sliceheight <- src.sliceheight;
6184 dst.thumbw <- src.thumbw;
6185 dst.jumpback <- src.jumpback;
6186 dst.bgcolor <- src.bgcolor;
6187 dst.scrollbarinpm <- src.scrollbarinpm;
6188 dst.tilew <- src.tilew;
6189 dst.tileh <- src.tileh;
6190 dst.mustoresize <- src.mustoresize;
6191 dst.checkers <- src.checkers;
6192 dst.aalevel <- src.aalevel;
6193 dst.trimmargins <- src.trimmargins;
6194 dst.trimfuzz <- src.trimfuzz;
6195 dst.urilauncher <- src.urilauncher;
6196 dst.colorspace <- src.colorspace;
6197 dst.invert <- src.invert;
6198 dst.colorscale <- src.colorscale;
6199 dst.redirectstderr <- src.redirectstderr;
6200 dst.ghyllscroll <- src.ghyllscroll;
6201 dst.columns <- src.columns;
6202 dst.beyecolumns <- src.beyecolumns;
6203 dst.selcmd <- src.selcmd;
6204 dst.updatecurs <- src.updatecurs;
6205 dst.pathlauncher <- src.pathlauncher;
6206 dst.keyhashes <- copykeyhashes src;
6207 dst.hfsize <- src.hfsize;
6208 dst.hscrollstep <- src.hscrollstep;
6209 dst.pgscale <- src.pgscale;
6212 let get s =
6213 let h = Hashtbl.create 10 in
6214 let dc = { defconf with angle = defconf.angle } in
6215 let rec toplevel v t spos _ =
6216 match t with
6217 | Vdata | Vcdata | Vend -> v
6218 | Vopen ("llppconfig", _, closed) ->
6219 if closed
6220 then v
6221 else { v with f = llppconfig }
6222 | Vopen _ ->
6223 error "unexpected subelement at top level" s spos
6224 | Vclose _ -> error "unexpected close at top level" s spos
6226 and llppconfig v t spos _ =
6227 match t with
6228 | Vdata | Vcdata -> v
6229 | Vend -> error "unexpected end of input in llppconfig" s spos
6230 | Vopen ("defaults", attrs, closed) ->
6231 let c = config_of dc attrs in
6232 setconf dc c;
6233 if closed
6234 then v
6235 else { v with f = defaults }
6237 | Vopen ("ui-font", attrs, closed) ->
6238 let rec getsize size = function
6239 | [] -> size
6240 | ("size", v) :: rest ->
6241 let size =
6242 fromstring int_of_string spos "size" v fstate.fontsize in
6243 getsize size rest
6244 | l -> getsize size l
6246 fstate.fontsize <- getsize fstate.fontsize attrs;
6247 if closed
6248 then v
6249 else { v with f = uifont (Buffer.create 10) }
6251 | Vopen ("doc", attrs, closed) ->
6252 let pathent, spage, srely, span, svisy = doc_of attrs in
6253 let path = unent pathent
6254 and pageno = fromstring int_of_string spos "page" spage 0
6255 and rely = fromstring float_of_string spos "rely" srely 0.0
6256 and pan = fromstring int_of_string spos "pan" span 0
6257 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6258 let c = config_of dc attrs in
6259 let anchor = (pageno, rely, visy) in
6260 if closed
6261 then (Hashtbl.add h path (c, [], pan, anchor); v)
6262 else { v with f = doc path pan anchor c [] }
6264 | Vopen _ ->
6265 error "unexpected subelement in llppconfig" s spos
6267 | Vclose "llppconfig" -> { v with f = toplevel }
6268 | Vclose _ -> error "unexpected close in llppconfig" s spos
6270 and defaults v t spos _ =
6271 match t with
6272 | Vdata | Vcdata -> v
6273 | Vend -> error "unexpected end of input in defaults" s spos
6274 | Vopen ("keymap", attrs, closed) ->
6275 let modename =
6276 try List.assoc "mode" attrs
6277 with Not_found -> "global" in
6278 if closed
6279 then v
6280 else
6281 let ret keymap =
6282 let h = findkeyhash dc modename in
6283 KeyMap.iter (Hashtbl.replace h) keymap;
6284 defaults
6286 { v with f = pkeymap ret KeyMap.empty }
6288 | Vopen (_, _, _) ->
6289 error "unexpected subelement in defaults" s spos
6291 | Vclose "defaults" ->
6292 { v with f = llppconfig }
6294 | Vclose _ -> error "unexpected close in defaults" s spos
6296 and uifont b v t spos epos =
6297 match t with
6298 | Vdata | Vcdata ->
6299 Buffer.add_substring b s spos (epos - spos);
6301 | Vopen (_, _, _) ->
6302 error "unexpected subelement in ui-font" s spos
6303 | Vclose "ui-font" ->
6304 if String.length !fontpath = 0
6305 then fontpath := Buffer.contents b;
6306 { v with f = llppconfig }
6307 | Vclose _ -> error "unexpected close in ui-font" s spos
6308 | Vend -> error "unexpected end of input in ui-font" s spos
6310 and doc path pan anchor c bookmarks v t spos _ =
6311 match t with
6312 | Vdata | Vcdata -> v
6313 | Vend -> error "unexpected end of input in doc" s spos
6314 | Vopen ("bookmarks", _, closed) ->
6315 if closed
6316 then v
6317 else { v with f = pbookmarks path pan anchor c bookmarks }
6319 | Vopen ("keymap", attrs, closed) ->
6320 let modename =
6321 try List.assoc "mode" attrs
6322 with Not_found -> "global"
6324 if closed
6325 then v
6326 else
6327 let ret keymap =
6328 let h = findkeyhash c modename in
6329 KeyMap.iter (Hashtbl.replace h) keymap;
6330 doc path pan anchor c bookmarks
6332 { v with f = pkeymap ret KeyMap.empty }
6334 | Vopen (_, _, _) ->
6335 error "unexpected subelement in doc" s spos
6337 | Vclose "doc" ->
6338 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6339 { v with f = llppconfig }
6341 | Vclose _ -> error "unexpected close in doc" s spos
6343 and pkeymap ret keymap v t spos _ =
6344 match t with
6345 | Vdata | Vcdata -> v
6346 | Vend -> error "unexpected end of input in keymap" s spos
6347 | Vopen ("map", attrs, closed) ->
6348 let r, l = map_of attrs in
6349 let kss = fromstring keys_of_string spos "in" r [] in
6350 let lss = fromstring keys_of_string spos "out" l [] in
6351 let keymap =
6352 match kss with
6353 | [] -> keymap
6354 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6355 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6357 if closed
6358 then { v with f = pkeymap ret keymap }
6359 else
6360 let f () = v in
6361 { v with f = skip "map" f }
6363 | Vopen _ ->
6364 error "unexpected subelement in keymap" s spos
6366 | Vclose "keymap" ->
6367 { v with f = ret keymap }
6369 | Vclose _ -> error "unexpected close in keymap" s spos
6371 and pbookmarks path pan anchor c bookmarks v t spos _ =
6372 match t with
6373 | Vdata | Vcdata -> v
6374 | Vend -> error "unexpected end of input in bookmarks" s spos
6375 | Vopen ("item", attrs, closed) ->
6376 let titleent, spage, srely, svisy = bookmark_of attrs in
6377 let page = fromstring int_of_string spos "page" spage 0
6378 and rely = fromstring float_of_string spos "rely" srely 0.0
6379 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6380 let bookmarks =
6381 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6383 if closed
6384 then { v with f = pbookmarks path pan anchor c bookmarks }
6385 else
6386 let f () = v in
6387 { v with f = skip "item" f }
6389 | Vopen _ ->
6390 error "unexpected subelement in bookmarks" s spos
6392 | Vclose "bookmarks" ->
6393 { v with f = doc path pan anchor c bookmarks }
6395 | Vclose _ -> error "unexpected close in bookmarks" s spos
6397 and skip tag f v t spos _ =
6398 match t with
6399 | Vdata | Vcdata -> v
6400 | Vend ->
6401 error ("unexpected end of input in skipped " ^ tag) s spos
6402 | Vopen (tag', _, closed) ->
6403 if closed
6404 then v
6405 else
6406 let f' () = { v with f = skip tag f } in
6407 { v with f = skip tag' f' }
6408 | Vclose ctag ->
6409 if tag = ctag
6410 then f ()
6411 else error ("unexpected close in skipped " ^ tag) s spos
6414 parse { f = toplevel; accu = () } s;
6415 h, dc;
6418 let do_load f ic =
6420 let len = in_channel_length ic in
6421 let s = String.create len in
6422 really_input ic s 0 len;
6423 f s;
6424 with
6425 | Parse_error (msg, s, pos) ->
6426 let subs = subs s pos in
6427 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6428 failwith ("parse error: " ^ s)
6430 | exn ->
6431 failwith ("config load error: " ^ Printexc.to_string exn)
6434 let defconfpath =
6435 let dir =
6437 let dir = Filename.concat home ".config" in
6438 if Sys.is_directory dir then dir else home
6439 with _ -> home
6441 Filename.concat dir "llpp.conf"
6444 let confpath = ref defconfpath;;
6446 let load1 f =
6447 if Sys.file_exists !confpath
6448 then
6449 match
6450 (try Some (open_in_bin !confpath)
6451 with exn ->
6452 prerr_endline
6453 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6454 Printexc.to_string exn);
6455 None
6457 with
6458 | Some ic ->
6459 let success =
6461 f (do_load get ic)
6462 with exn ->
6463 prerr_endline
6464 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6465 Printexc.to_string exn);
6466 false
6468 close_in ic;
6469 success
6471 | None -> false
6472 else
6473 f (Hashtbl.create 0, defconf)
6476 let load () =
6477 let f (h, dc) =
6478 let pc, pb, px, pa =
6480 Hashtbl.find h (Filename.basename state.path)
6481 with Not_found -> dc, [], 0, emptyanchor
6483 setconf defconf dc;
6484 setconf conf pc;
6485 state.bookmarks <- pb;
6486 state.x <- px;
6487 state.scrollw <- conf.scrollbw;
6488 if conf.jumpback
6489 then state.anchor <- pa;
6490 cbput state.hists.nav pa;
6491 true
6493 load1 f
6496 let add_attrs bb always dc c =
6497 let ob s a b =
6498 if always || a != b
6499 then Printf.bprintf bb "\n %s='%b'" s a
6500 and oi s a b =
6501 if always || a != b
6502 then Printf.bprintf bb "\n %s='%d'" s a
6503 and oI s a b =
6504 if always || a != b
6505 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6506 and oz s a b =
6507 if always || a <> b
6508 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6509 and oF s a b =
6510 if always || a <> b
6511 then Printf.bprintf bb "\n %s='%f'" s a
6512 and oc s a b =
6513 if always || a <> b
6514 then
6515 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6516 and oC s a b =
6517 if always || a <> b
6518 then
6519 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6520 and oR s a b =
6521 if always || a <> b
6522 then
6523 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6524 and os s a b =
6525 if always || a <> b
6526 then
6527 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6528 and og s a b =
6529 if always || a <> b
6530 then
6531 match a with
6532 | None -> ()
6533 | Some (_N, _A, _B) ->
6534 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6535 and oW s a b =
6536 if always || a <> b
6537 then
6538 let v =
6539 match a with
6540 | None -> "false"
6541 | Some f ->
6542 if f = infinity
6543 then "true"
6544 else string_of_float f
6546 Printf.bprintf bb "\n %s='%s'" s v
6547 and oco s a b =
6548 if always || a <> b
6549 then
6550 match a with
6551 | Cmulti ((n, a, b), _) when n > 1 ->
6552 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6553 | Csplit (n, _) when n > 1 ->
6554 Printf.bprintf bb "\n %s='%d'" s ~-n
6555 | _ -> ()
6556 and obeco s a b =
6557 if always || a <> b
6558 then
6559 match a with
6560 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6561 | _ -> ()
6563 let w, h =
6564 if always
6565 then dc.winw, dc.winh
6566 else
6567 match state.fullscreen with
6568 | Some wh -> wh
6569 | None -> c.winw, c.winh
6571 oi "width" w dc.winw;
6572 oi "height" h dc.winh;
6573 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6574 oi "scroll-handle-height" c.scrollh dc.scrollh;
6575 ob "case-insensitive-search" c.icase dc.icase;
6576 ob "preload" c.preload dc.preload;
6577 oi "page-bias" c.pagebias dc.pagebias;
6578 oi "scroll-step" c.scrollstep dc.scrollstep;
6579 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6580 ob "max-height-fit" c.maxhfit dc.maxhfit;
6581 ob "crop-hack" c.crophack dc.crophack;
6582 oW "throttle" c.maxwait dc.maxwait;
6583 ob "highlight-links" c.hlinks dc.hlinks;
6584 ob "under-cursor-info" c.underinfo dc.underinfo;
6585 oi "vertical-margin" c.interpagespace dc.interpagespace;
6586 oz "zoom" c.zoom dc.zoom;
6587 ob "presentation" c.presentation dc.presentation;
6588 oi "rotation-angle" c.angle dc.angle;
6589 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6590 ob "proportional-display" c.proportional dc.proportional;
6591 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6592 oi "tex-count" c.texcount dc.texcount;
6593 oi "slice-height" c.sliceheight dc.sliceheight;
6594 oi "thumbnail-width" c.thumbw dc.thumbw;
6595 ob "persistent-location" c.jumpback dc.jumpback;
6596 oc "background-color" c.bgcolor dc.bgcolor;
6597 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6598 oi "tile-width" c.tilew dc.tilew;
6599 oi "tile-height" c.tileh dc.tileh;
6600 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6601 ob "checkers" c.checkers dc.checkers;
6602 oi "aalevel" c.aalevel dc.aalevel;
6603 ob "trim-margins" c.trimmargins dc.trimmargins;
6604 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6605 os "uri-launcher" c.urilauncher dc.urilauncher;
6606 os "path-launcher" c.pathlauncher dc.pathlauncher;
6607 oC "color-space" c.colorspace dc.colorspace;
6608 ob "invert-colors" c.invert dc.invert;
6609 oF "brightness" c.colorscale dc.colorscale;
6610 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6611 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6612 oco "columns" c.columns dc.columns;
6613 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6614 os "selection-command" c.selcmd dc.selcmd;
6615 ob "update-cursor" c.updatecurs dc.updatecurs;
6616 oi "hint-font-size" c.hfsize dc.hfsize;
6617 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6618 oF "page-scroll-scale" c.pgscale dc.pgscale;
6621 let keymapsbuf always dc c =
6622 let bb = Buffer.create 16 in
6623 let rec loop = function
6624 | [] -> ()
6625 | (modename, h) :: rest ->
6626 let dh = findkeyhash dc modename in
6627 if always || h <> dh
6628 then (
6629 if Hashtbl.length h > 0
6630 then (
6631 if Buffer.length bb > 0
6632 then Buffer.add_char bb '\n';
6633 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6634 Hashtbl.iter (fun i o ->
6635 let isdifferent = always ||
6637 let dO = Hashtbl.find dh i in
6638 dO <> o
6639 with Not_found -> true
6641 if isdifferent
6642 then
6643 let addkm (k, m) =
6644 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6645 if Wsi.withalt m then Buffer.add_string bb "alt-";
6646 if Wsi.withshift m then Buffer.add_string bb "shift-";
6647 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6648 Buffer.add_string bb (Wsi.keyname k);
6650 let addkms l =
6651 let rec loop = function
6652 | [] -> ()
6653 | km :: [] -> addkm km
6654 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6656 loop l
6658 Buffer.add_string bb "<map in='";
6659 addkm i;
6660 match o with
6661 | KMinsrt km ->
6662 Buffer.add_string bb "' out='";
6663 addkm km;
6664 Buffer.add_string bb "'/>\n"
6666 | KMinsrl kms ->
6667 Buffer.add_string bb "' out='";
6668 addkms kms;
6669 Buffer.add_string bb "'/>\n"
6671 | KMmulti (ins, kms) ->
6672 Buffer.add_char bb ' ';
6673 addkms ins;
6674 Buffer.add_string bb "' out='";
6675 addkms kms;
6676 Buffer.add_string bb "'/>\n"
6677 ) h;
6678 Buffer.add_string bb "</keymap>";
6681 loop rest
6683 loop c.keyhashes;
6687 let save () =
6688 let uifontsize = fstate.fontsize in
6689 let bb = Buffer.create 32768 in
6690 let f (h, dc) =
6691 let dc = if conf.bedefault then conf else dc in
6692 Buffer.add_string bb "<llppconfig>\n";
6694 if String.length !fontpath > 0
6695 then
6696 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6697 uifontsize
6698 !fontpath
6699 else (
6700 if uifontsize <> 14
6701 then
6702 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6705 Buffer.add_string bb "<defaults ";
6706 add_attrs bb true dc dc;
6707 let kb = keymapsbuf true dc dc in
6708 if Buffer.length kb > 0
6709 then (
6710 Buffer.add_string bb ">\n";
6711 Buffer.add_buffer bb kb;
6712 Buffer.add_string bb "\n</defaults>\n";
6714 else Buffer.add_string bb "/>\n";
6716 let adddoc path pan anchor c bookmarks =
6717 if bookmarks == [] && c = dc && anchor = emptyanchor
6718 then ()
6719 else (
6720 Printf.bprintf bb "<doc path='%s'"
6721 (enent path 0 (String.length path));
6723 if anchor <> emptyanchor
6724 then (
6725 let n, rely, visy = anchor in
6726 Printf.bprintf bb " page='%d'" n;
6727 if rely > 1e-6
6728 then
6729 Printf.bprintf bb " rely='%f'" rely
6731 if abs_float visy > 1e-6
6732 then
6733 Printf.bprintf bb " visy='%f'" visy
6737 if pan != 0
6738 then Printf.bprintf bb " pan='%d'" pan;
6740 add_attrs bb false dc c;
6741 let kb = keymapsbuf false dc c in
6743 begin match bookmarks with
6744 | [] ->
6745 if Buffer.length kb > 0
6746 then (
6747 Buffer.add_string bb ">\n";
6748 Buffer.add_buffer bb kb;
6749 Buffer.add_string bb "\n</doc>\n";
6751 else Buffer.add_string bb "/>\n"
6752 | _ ->
6753 Buffer.add_string bb ">\n<bookmarks>\n";
6754 List.iter (fun (title, _level, (page, rely, visy)) ->
6755 Printf.bprintf bb
6756 "<item title='%s' page='%d'"
6757 (enent title 0 (String.length title))
6758 page
6760 if rely > 1e-6
6761 then
6762 Printf.bprintf bb " rely='%f'" rely
6764 if abs_float visy > 1e-6
6765 then
6766 Printf.bprintf bb " visy='%f'" visy
6768 Buffer.add_string bb "/>\n";
6769 ) bookmarks;
6770 Buffer.add_string bb "</bookmarks>";
6771 if Buffer.length kb > 0
6772 then (
6773 Buffer.add_string bb "\n";
6774 Buffer.add_buffer bb kb;
6776 Buffer.add_string bb "\n</doc>\n";
6777 end;
6781 let pan, conf =
6782 match state.mode with
6783 | Birdseye (c, pan, _, _, _) ->
6784 let beyecolumns =
6785 match conf.columns with
6786 | Cmulti ((c, _, _), _) -> Some c
6787 | Csingle _ -> None
6788 | Csplit _ -> None
6789 and columns =
6790 match c.columns with
6791 | Cmulti (c, _) -> Cmulti (c, [||])
6792 | Csingle _ -> Csingle [||]
6793 | Csplit _ -> failwith "quit from bird's eye while split"
6795 pan, { c with beyecolumns = beyecolumns; columns = columns }
6796 | _ -> state.x, conf
6798 let basename = Filename.basename state.path in
6799 adddoc basename pan (getanchor ())
6800 (let conf =
6801 let autoscrollstep =
6802 match state.autoscroll with
6803 | Some step -> step
6804 | None -> conf.autoscrollstep
6806 match state.mode with
6807 | Birdseye (bc, _, _, _, _) ->
6808 { conf with
6809 zoom = bc.zoom;
6810 presentation = bc.presentation;
6811 interpagespace = bc.interpagespace;
6812 maxwait = bc.maxwait;
6813 autoscrollstep = autoscrollstep }
6814 | _ -> { conf with autoscrollstep = autoscrollstep }
6815 in conf)
6816 (if conf.savebmarks then state.bookmarks else []);
6818 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6819 if basename <> path
6820 then adddoc path x anchor c bookmarks
6821 ) h;
6822 Buffer.add_string bb "</llppconfig>\n";
6823 true;
6825 if load1 f && Buffer.length bb > 0
6826 then
6828 let tmp = !confpath ^ ".tmp" in
6829 let oc = open_out_bin tmp in
6830 Buffer.output_buffer oc bb;
6831 close_out oc;
6832 Unix.rename tmp !confpath;
6833 with exn ->
6834 prerr_endline
6835 ("error while saving configuration: " ^ Printexc.to_string exn)
6837 end;;
6839 let () =
6840 let trimcachepath = ref "" in
6841 Arg.parse
6842 (Arg.align
6843 [("-p", Arg.String (fun s -> state.password <- s) ,
6844 "<password> Set password");
6846 ("-f", Arg.String (fun s -> Config.fontpath := s),
6847 "<path> Set path to the user interface font");
6849 ("-c", Arg.String (fun s -> Config.confpath := s),
6850 "<path> Set path to the configuration file");
6852 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6853 "<path> Set path to the trim cache file");
6855 ("-v", Arg.Unit (fun () ->
6856 Printf.printf
6857 "%s\nconfiguration path: %s\n"
6858 (version ())
6859 Config.defconfpath
6861 exit 0), " Print version and exit");
6864 (fun s -> state.path <- s)
6865 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6867 if String.length state.path = 0
6868 then (prerr_endline "file name missing"; exit 1);
6870 if not (Config.load ())
6871 then prerr_endline "failed to load configuration";
6873 let globalkeyhash = findkeyhash conf "global" in
6874 let wsfd, winw, winh = Wsi.init (object
6875 method expose =
6876 if nogeomcmds state.geomcmds || platform == Posx
6877 then display ()
6878 else (
6879 GlClear.color (scalecolor2 conf.bgcolor);
6880 GlClear.clear [`color];
6882 method display = display ()
6883 method reshape w h = reshape w h
6884 method mouse b d x y m = mouse b d x y m
6885 method motion x y = state.mpos <- (x, y); motion x y
6886 method pmotion x y = state.mpos <- (x, y); pmotion x y
6887 method key k m =
6888 let mascm = m land (
6889 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6890 ) in
6891 match state.keystate with
6892 | KSnone ->
6893 let km = k, mascm in
6894 begin
6895 match
6896 let modehash = state.uioh#modehash in
6897 try Hashtbl.find modehash km
6898 with Not_found ->
6899 try Hashtbl.find globalkeyhash km
6900 with Not_found -> KMinsrt (k, m)
6901 with
6902 | KMinsrt (k, m) -> keyboard k m
6903 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6904 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6906 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6907 List.iter (fun (k, m) -> keyboard k m) insrt;
6908 state.keystate <- KSnone
6909 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6910 state.keystate <- KSinto (keys, insrt)
6911 | _ ->
6912 state.keystate <- KSnone
6914 method enter x y = state.mpos <- (x, y); pmotion x y
6915 method leave = state.mpos <- (-1, -1)
6916 method quit = raise Quit
6917 end) conf.winw conf.winh (platform = Posx) in
6919 state.wsfd <- wsfd;
6921 if not (
6922 List.exists GlMisc.check_extension
6923 [ "GL_ARB_texture_rectangle"
6924 ; "GL_EXT_texture_recangle"
6925 ; "GL_NV_texture_rectangle" ]
6927 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6929 let cr, sw =
6930 match Ne.pipe () with
6931 | Ne.Exn exn ->
6932 Printf.eprintf "pipe/crsw failed: %s" (Printexc.to_string exn);
6933 exit 1
6934 | Ne.Res rw -> rw
6935 and sr, cw =
6936 match Ne.pipe () with
6937 | Ne.Exn exn ->
6938 Printf.eprintf "pipe/srcw failed: %s" (Printexc.to_string exn);
6939 exit 1
6940 | Ne.Res rw -> rw
6943 cloexec cr;
6944 cloexec sw;
6945 cloexec sr;
6946 cloexec cw;
6948 setcheckers conf.checkers;
6949 redirectstderr ();
6951 init (cr, cw) (
6952 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
6953 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6954 !Config.fontpath, !trimcachepath
6956 state.sr <- sr;
6957 state.sw <- sw;
6958 state.text <- "Opening " ^ state.path;
6959 reshape winw winh;
6960 opendoc state.path state.password;
6961 state.uioh <- uioh;
6963 let rec loop deadline =
6964 let r =
6965 match state.errfd with
6966 | None -> [state.sr; state.wsfd]
6967 | Some fd -> [state.sr; state.wsfd; fd]
6969 if state.redisplay
6970 then (
6971 state.redisplay <- false;
6972 display ();
6974 let timeout =
6975 let now = now () in
6976 if deadline > now
6977 then (
6978 if deadline = infinity
6979 then ~-.1.0
6980 else max 0.0 (deadline -. now)
6982 else 0.0
6984 let r, _, _ =
6985 try Unix.select r [] [] timeout
6986 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
6988 begin match r with
6989 | [] ->
6990 state.ghyll None;
6991 let newdeadline =
6992 if state.ghyll == noghyll
6993 then
6994 match state.autoscroll with
6995 | Some step when step != 0 ->
6996 let y = state.y + step in
6997 let y =
6998 if y < 0
6999 then state.maxy
7000 else if y >= state.maxy then 0 else y
7002 gotoy y;
7003 if state.mode = View
7004 then state.text <- "";
7005 deadline +. 0.01
7006 | _ -> infinity
7007 else deadline +. 0.01
7009 loop newdeadline
7011 | l ->
7012 let rec checkfds = function
7013 | [] -> ()
7014 | fd :: rest when fd = state.sr ->
7015 let cmd = readcmd state.sr in
7016 act cmd;
7017 checkfds rest
7019 | fd :: rest when fd = state.wsfd ->
7020 Wsi.readresp fd;
7021 checkfds rest
7023 | fd :: rest ->
7024 let s = String.create 80 in
7025 let n = Unix.read fd s 0 80 in
7026 if conf.redirectstderr
7027 then (
7028 Buffer.add_substring state.errmsgs s 0 n;
7029 state.newerrmsgs <- true;
7030 state.redisplay <- true;
7032 else (
7033 prerr_string (String.sub s 0 n);
7034 flush stderr;
7036 checkfds rest
7038 checkfds l;
7039 let newdeadline =
7040 let deadline1 =
7041 if deadline = infinity
7042 then now () +. 0.01
7043 else deadline
7045 match state.autoscroll with
7046 | Some step when step != 0 -> deadline1
7047 | _ -> if state.ghyll == noghyll then infinity else deadline1
7049 loop newdeadline
7050 end;
7053 loop infinity;
7054 with Quit ->
7055 Config.save ();