0011b59f96fb163b77e1aa8b3d1b354a953dbf07
[llpp.git] / main.ml
blob0011b59f96fb163b77e1aa8b3d1b354a953dbf07
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 * haspbo)
21 and pageno = int
22 and width = int
23 and height = int
24 and leftx = int
25 and opaque = string
26 and recttype = int
27 and pixmapsize = int
28 and angle = int
29 and proportional = bool
30 and trimmargins = bool
31 and interpagespace = int
32 and texcount = int
33 and sliceheight = int
34 and gen = int
35 and top = float
36 and dtop = float
37 and fontpath = string
38 and trimcachepath = string
39 and memsize = int
40 and aalevel = int
41 and irect = (int * int * int * int)
42 and trimparams = (trimmargins * irect)
43 and colorspace = | Rgb | Bgr | Gray
44 and haspbo = bool
47 type link =
48 | Lnotfound
49 | Lfound of int
50 and linkdir =
51 | LDfirst
52 | LDlast
53 | LDfirstvisible of (int * int * int)
54 | LDleft of int
55 | LDright of int
56 | LDdown of int
57 | LDup of int
60 type pagewithlinks =
61 | Pwlnotfound
62 | Pwl of int
65 type keymap =
66 | KMinsrt of key
67 | KMinsrl of key list
68 | KMmulti of key list * key list
69 and key = int * int
70 and keyhash = (key, keymap) Hashtbl.t
71 and keystate =
72 | KSnone
73 | KSinto of (key list * key list)
76 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
77 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
79 type pipe = (Unix.file_descr * Unix.file_descr);;
81 external init : pipe -> params -> unit = "ml_init";;
82 external seltext : string -> (int * int * int * int) -> unit = "ml_seltext";;
83 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
84 external getpdimrect : int -> float array = "ml_getpdimrect";;
85 external whatsunder : string -> int -> int -> under = "ml_whatsunder";;
86 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
87 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
88 external measurestr : int -> string -> float = "ml_measure_string";;
89 external getmaxw : unit -> float = "ml_getmaxw";;
90 external postprocess :
91 opaque -> int -> int -> int -> (int * string * int) -> int = "ml_postprocess";;
92 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
93 external platform : unit -> platform = "ml_platform";;
94 external setaalevel : int -> unit = "ml_setaalevel";;
95 external realloctexts : int -> bool = "ml_realloctexts";;
96 external cloexec : Unix.file_descr -> unit = "ml_cloexec";;
97 external findlink : opaque -> linkdir -> link = "ml_findlink";;
98 external getlink : opaque -> int -> under = "ml_getlink";;
99 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
100 external getlinkcount : opaque -> int = "ml_getlinkcount";;
101 external findpwl: int -> int -> pagewithlinks = "ml_find_page_with_links"
102 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
103 external mbtoutf8 : string -> string = "ml_mbtoutf8";;
104 external getpbo : width -> height -> colorspace -> string = "ml_getpbo";;
105 external freepbo : string -> unit = "ml_freepbo";;
106 external unmappbo : string -> unit = "ml_unmappbo";;
107 external pbousable : unit -> bool = "ml_pbo_usable";;
109 let platform_to_string = function
110 | Punknown -> "unknown"
111 | Plinux -> "Linux"
112 | Posx -> "OSX"
113 | Psun -> "Sun"
114 | Pfreebsd -> "FreeBSD"
115 | Pdragonflybsd -> "DragonflyBSD"
116 | Popenbsd -> "OpenBSD"
117 | Pnetbsd -> "NetBSD"
118 | Pcygwin -> "Cygwin"
121 let platform = platform ();;
123 let popen cmd fda =
124 if platform = Pcygwin
125 then (
126 let sh = "/bin/sh" in
127 let args = [|sh; "-c"; cmd|] in
128 let rec std si so se = function
129 | [] -> si, so, se
130 | (fd, 0) :: rest -> std fd so se rest
131 | (fd, -1) :: rest ->
132 Unix.set_close_on_exec fd;
133 std si so se rest
134 | (_, n) :: _ ->
135 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
137 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
138 ignore (Unix.create_process sh args si so se)
140 else popen cmd fda;
143 type x = int
144 and y = int
145 and tilex = int
146 and tiley = int
147 and tileparams = (x * y * width * height * tilex * tiley)
150 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
152 type mpos = int * int
153 and mstate =
154 | Msel of (mpos * mpos)
155 | Mpan of mpos
156 | Mscrolly | Mscrollx
157 | Mzoom of (int * int)
158 | Mzoomrect of (mpos * mpos)
159 | Mnone
162 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
163 and onkey = string -> int -> te
164 and ondone = string -> unit
165 and histcancel = unit -> unit
166 and onhist = ((histcmd -> string) * histcancel)
167 and histcmd = HCnext | HCprev | HCfirst | HClast
168 and cancelonempty = bool
169 and te =
170 | TEstop
171 | TEdone of string
172 | TEcont of string
173 | TEswitch of textentry
176 type 'a circbuf =
177 { store : 'a array
178 ; mutable rc : int
179 ; mutable wc : int
180 ; mutable len : int
184 let bound v minv maxv =
185 max minv (min maxv v);
188 let cbnew n v =
189 { store = Array.create n v
190 ; rc = 0
191 ; wc = 0
192 ; len = 0
196 let cbcap b = Array.length b.store;;
198 let cbput b v =
199 let cap = cbcap b in
200 b.store.(b.wc) <- v;
201 b.wc <- (b.wc + 1) mod cap;
202 b.rc <- b.wc;
203 b.len <- min (b.len + 1) cap;
206 let cbempty b = b.len = 0;;
208 let cbgetg b circular dir =
209 if cbempty b
210 then b.store.(0)
211 else
212 let rc = b.rc + dir in
213 let rc =
214 if circular
215 then (
216 if rc = -1
217 then b.len-1
218 else (
219 if rc >= b.len
220 then 0
221 else rc
224 else bound rc 0 (b.len-1)
226 b.rc <- rc;
227 b.store.(rc);
230 let cbget b = cbgetg b false;;
231 let cbgetc b = cbgetg b true;;
233 let drawstring size x y s =
234 Gl.enable `blend;
235 Gl.enable `texture_2d;
236 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
237 ignore (drawstr size x y s);
238 Gl.disable `blend;
239 Gl.disable `texture_2d;
242 let drawstring1 size x y s =
243 drawstr size x y s;
246 let drawstring2 size x y fmt =
247 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
250 type page =
251 { pageno : int
252 ; pagedimno : int
253 ; pagew : int
254 ; pageh : int
255 ; pagex : int
256 ; pagey : int
257 ; pagevw : int
258 ; pagevh : int
259 ; pagedispx : int
260 ; pagedispy : int
261 ; pagecol : int
265 let debugl l =
266 dolog "l %d dim=%d {" l.pageno l.pagedimno;
267 dolog " WxH %dx%d" l.pagew l.pageh;
268 dolog " vWxH %dx%d" l.pagevw l.pagevh;
269 dolog " pagex,y %d,%d" l.pagex l.pagey;
270 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
271 dolog " column %d" l.pagecol;
272 dolog "}";
275 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
276 dolog "rect {";
277 dolog " x0,y0=(% f, % f)" x0 y0;
278 dolog " x1,y1=(% f, % f)" x1 y1;
279 dolog " x2,y2=(% f, % f)" x2 y2;
280 dolog " x3,y3=(% f, % f)" x3 y3;
281 dolog "}";
284 type multicolumns = multicol * pagegeom
285 and singlecolumn = pagegeom
286 and splitcolumns = columncount * pagegeom
287 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
288 and multicol = columncount * covercount * covercount
289 and pdimno = int
290 and columncount = int
291 and covercount = int;;
293 type conf =
294 { mutable scrollbw : int
295 ; mutable scrollh : int
296 ; mutable icase : bool
297 ; mutable preload : bool
298 ; mutable pagebias : int
299 ; mutable verbose : bool
300 ; mutable debug : bool
301 ; mutable scrollstep : int
302 ; mutable hscrollstep : int
303 ; mutable maxhfit : bool
304 ; mutable crophack : bool
305 ; mutable autoscrollstep : int
306 ; mutable maxwait : float option
307 ; mutable hlinks : bool
308 ; mutable underinfo : bool
309 ; mutable interpagespace : interpagespace
310 ; mutable zoom : float
311 ; mutable presentation : bool
312 ; mutable angle : angle
313 ; mutable winw : int
314 ; mutable winh : int
315 ; mutable savebmarks : bool
316 ; mutable proportional : proportional
317 ; mutable trimmargins : trimmargins
318 ; mutable trimfuzz : irect
319 ; mutable memlimit : memsize
320 ; mutable texcount : texcount
321 ; mutable sliceheight : sliceheight
322 ; mutable thumbw : width
323 ; mutable jumpback : bool
324 ; mutable bgcolor : float * float * float
325 ; mutable bedefault : bool
326 ; mutable scrollbarinpm : bool
327 ; mutable tilew : int
328 ; mutable tileh : int
329 ; mutable mustoresize : memsize
330 ; mutable checkers : bool
331 ; mutable aalevel : int
332 ; mutable urilauncher : string
333 ; mutable pathlauncher : string
334 ; mutable colorspace : colorspace
335 ; mutable invert : bool
336 ; mutable colorscale : float
337 ; mutable redirectstderr : bool
338 ; mutable ghyllscroll : (int * int * int) option
339 ; mutable columns : columns
340 ; mutable beyecolumns : columncount option
341 ; mutable selcmd : string
342 ; mutable updatecurs : bool
343 ; mutable keyhashes : (string * keyhash) list
344 ; mutable hfsize : int
345 ; mutable pgscale : float
346 ; mutable usepbo : bool
348 and columns =
349 | Csingle of singlecolumn
350 | Cmulti of multicolumns
351 | Csplit of splitcolumns
354 type anchor = pageno * top * dtop;;
356 type outline = string * int * anchor;;
358 type rect = float * float * float * float * float * float * float * float;;
360 type tile = opaque * pixmapsize * elapsed
361 and elapsed = float;;
362 type pagemapkey = pageno * gen;;
363 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
364 and row = int
365 and col = int;;
367 let emptyanchor = (0, 0.0, 0.0);;
369 type infochange = | Memused | Docinfo | Pdim;;
371 class type uioh = object
372 method display : unit
373 method key : int -> int -> uioh
374 method button : int -> bool -> int -> int -> int -> uioh
375 method motion : int -> int -> uioh
376 method pmotion : int -> int -> uioh
377 method infochanged : infochange -> unit
378 method scrollpw : (int * float * float)
379 method scrollph : (int * float * float)
380 method modehash : keyhash
381 end;;
383 type mode =
384 | Birdseye of (conf * leftx * pageno * pageno * anchor)
385 | Textentry of (textentry * onleave)
386 | View
387 | LinkNav of linktarget
388 and onleave = leavetextentrystatus -> unit
389 and leavetextentrystatus = | Cancel | Confirm
390 and helpitem = string * int * action
391 and action =
392 | Noaction
393 | Action of (uioh -> uioh)
394 and linktarget =
395 | Ltexact of (pageno * int)
396 | Ltgendir of int
399 let isbirdseye = function Birdseye _ -> true | _ -> false;;
400 let istextentry = function Textentry _ -> true | _ -> false;;
402 type currently =
403 | Idle
404 | Loading of (page * gen)
405 | Tiling of (
406 page * opaque * colorspace * angle * gen * col * row * width * height
408 | Outlining of outline list
411 let emptykeyhash = Hashtbl.create 0;;
412 let nouioh : uioh = object (self)
413 method display = ()
414 method key _ _ = self
415 method button _ _ _ _ _ = self
416 method motion _ _ = self
417 method pmotion _ _ = self
418 method infochanged _ = ()
419 method scrollpw = (0, nan, nan)
420 method scrollph = (0, nan, nan)
421 method modehash = emptykeyhash
422 end;;
424 type state =
425 { mutable sr : Unix.file_descr
426 ; mutable sw : Unix.file_descr
427 ; mutable wsfd : Unix.file_descr
428 ; mutable errfd : Unix.file_descr option
429 ; mutable stderr : Unix.file_descr
430 ; mutable errmsgs : Buffer.t
431 ; mutable newerrmsgs : bool
432 ; mutable w : int
433 ; mutable x : int
434 ; mutable y : int
435 ; mutable scrollw : int
436 ; mutable hscrollh : int
437 ; mutable anchor : anchor
438 ; mutable ranchors : (string * string * anchor) list
439 ; mutable maxy : int
440 ; mutable layout : page list
441 ; pagemap : (pagemapkey, opaque) Hashtbl.t
442 ; tilemap : (tilemapkey, tile) Hashtbl.t
443 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
444 ; mutable pdims : (pageno * width * height * leftx) list
445 ; mutable pagecount : int
446 ; mutable currently : currently
447 ; mutable mstate : mstate
448 ; mutable searchpattern : string
449 ; mutable rects : (pageno * recttype * rect) list
450 ; mutable rects1 : (pageno * recttype * rect) list
451 ; mutable text : string
452 ; mutable fullscreen : (width * height) option
453 ; mutable mode : mode
454 ; mutable uioh : uioh
455 ; mutable outlines : outline array
456 ; mutable bookmarks : outline list
457 ; mutable path : string
458 ; mutable password : string
459 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
460 ; mutable memused : memsize
461 ; mutable gen : gen
462 ; mutable throttle : (page list * int * float) option
463 ; mutable autoscroll : int option
464 ; mutable ghyll : (int option -> unit)
465 ; mutable help : helpitem array
466 ; mutable docinfo : (int * string) list
467 ; mutable texid : GlTex.texture_id option
468 ; hists : hists
469 ; mutable prevzoom : float
470 ; mutable progress : float
471 ; mutable redisplay : bool
472 ; mutable mpos : mpos
473 ; mutable keystate : keystate
474 ; mutable glinks : bool
475 ; mutable prevcolumns : (columns * float) option
477 and hists =
478 { pat : string circbuf
479 ; pag : string circbuf
480 ; nav : anchor circbuf
481 ; sel : string circbuf
485 let defconf =
486 { scrollbw = 7
487 ; scrollh = 12
488 ; icase = true
489 ; preload = true
490 ; pagebias = 0
491 ; verbose = false
492 ; debug = false
493 ; scrollstep = 24
494 ; hscrollstep = 24
495 ; maxhfit = true
496 ; crophack = false
497 ; autoscrollstep = 2
498 ; maxwait = None
499 ; hlinks = false
500 ; underinfo = false
501 ; interpagespace = 2
502 ; zoom = 1.0
503 ; presentation = false
504 ; angle = 0
505 ; winw = 900
506 ; winh = 900
507 ; savebmarks = true
508 ; proportional = true
509 ; trimmargins = false
510 ; trimfuzz = (0,0,0,0)
511 ; memlimit = 32 lsl 20
512 ; texcount = 256
513 ; sliceheight = 24
514 ; thumbw = 76
515 ; jumpback = true
516 ; bgcolor = (0.5, 0.5, 0.5)
517 ; bedefault = false
518 ; scrollbarinpm = true
519 ; tilew = 2048
520 ; tileh = 2048
521 ; mustoresize = 256 lsl 20
522 ; checkers = true
523 ; aalevel = 8
524 ; urilauncher =
525 (match platform with
526 | Plinux | Pfreebsd | Pdragonflybsd
527 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
528 | Posx -> "open \"%s\""
529 | Pcygwin -> "cygstart \"%s\""
530 | Punknown -> "echo %s")
531 ; pathlauncher = "lp \"%s\""
532 ; selcmd =
533 (match platform with
534 | Plinux | Pfreebsd | Pdragonflybsd
535 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
536 | Posx -> "pbcopy"
537 | Pcygwin -> "wsel"
538 | Punknown -> "cat")
539 ; colorspace = Rgb
540 ; invert = false
541 ; colorscale = 1.0
542 ; redirectstderr = false
543 ; ghyllscroll = None
544 ; columns = Csingle [||]
545 ; beyecolumns = None
546 ; updatecurs = false
547 ; hfsize = 12
548 ; pgscale = 1.0
549 ; usepbo = false
550 ; keyhashes =
551 let mk n = (n, Hashtbl.create 1) in
552 [ mk "global"
553 ; mk "info"
554 ; mk "help"
555 ; mk "outline"
556 ; mk "listview"
557 ; mk "birdseye"
558 ; mk "textentry"
559 ; mk "links"
560 ; mk "view"
565 let findkeyhash c name =
566 try List.assoc name c.keyhashes
567 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
570 let conf = { defconf with angle = defconf.angle };;
572 let pgscale h = truncate (float h *. conf.pgscale);;
574 type fontstate =
575 { mutable fontsize : int
576 ; mutable wwidth : float
577 ; mutable maxrows : int
581 let fstate =
582 { fontsize = 14
583 ; wwidth = nan
584 ; maxrows = -1
588 let setfontsize n =
589 fstate.fontsize <- n;
590 fstate.wwidth <- measurestr fstate.fontsize "w";
591 fstate.maxrows <- (conf.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
594 let geturl s =
595 let colonpos = try String.index s ':' with Not_found -> -1 in
596 let len = String.length s in
597 if colonpos >= 0 && colonpos + 3 < len
598 then (
599 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
600 then
601 let schemestartpos =
602 try String.rindex_from s colonpos ' '
603 with Not_found -> -1
605 let scheme =
606 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
608 match scheme with
609 | "http" | "ftp" | "mailto" ->
610 let epos =
611 try String.index_from s colonpos ' '
612 with Not_found -> len
614 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
615 | _ -> ""
616 else ""
618 else ""
621 let gotouri uri =
622 if String.length conf.urilauncher = 0
623 then print_endline uri
624 else (
625 let url = geturl uri in
626 if String.length url = 0
627 then print_endline uri
628 else
629 let re = Str.regexp "%s" in
630 let command = Str.global_replace re url conf.urilauncher in
631 try popen command []
632 with exn ->
633 Printf.eprintf
634 "failed to execute `%s': %s\n" command (Printexc.to_string exn);
635 flush stderr;
639 let version () =
640 Printf.sprintf "llpp version %s (%s/%dbit, ocaml %s)" Help.version
641 (platform_to_string platform) Sys.word_size Sys.ocaml_version
644 let makehelp () =
645 let strings = version () :: "" :: Help.keys in
646 Array.of_list (
647 List.map (fun s ->
648 let url = geturl s in
649 if String.length url > 0
650 then (s, 0, Action (fun u -> gotouri url; u))
651 else (s, 0, Noaction)
652 ) strings);
655 let noghyll _ = ();;
656 let firstgeomcmds = "", [];;
658 let state =
659 { sr = Unix.stdin
660 ; sw = Unix.stdin
661 ; wsfd = Unix.stdin
662 ; errfd = None
663 ; stderr = Unix.stderr
664 ; errmsgs = Buffer.create 0
665 ; newerrmsgs = false
666 ; x = 0
667 ; y = 0
668 ; w = 0
669 ; scrollw = 0
670 ; hscrollh = 0
671 ; anchor = emptyanchor
672 ; ranchors = []
673 ; layout = []
674 ; maxy = max_int
675 ; tilelru = Queue.create ()
676 ; pagemap = Hashtbl.create 10
677 ; tilemap = Hashtbl.create 10
678 ; pdims = []
679 ; pagecount = 0
680 ; currently = Idle
681 ; mstate = Mnone
682 ; rects = []
683 ; rects1 = []
684 ; text = ""
685 ; mode = View
686 ; fullscreen = None
687 ; searchpattern = ""
688 ; outlines = [||]
689 ; bookmarks = []
690 ; path = ""
691 ; password = ""
692 ; geomcmds = firstgeomcmds
693 ; hists =
694 { nav = cbnew 10 emptyanchor
695 ; pat = cbnew 10 ""
696 ; pag = cbnew 10 ""
697 ; sel = cbnew 10 ""
699 ; memused = 0
700 ; gen = 0
701 ; throttle = None
702 ; autoscroll = None
703 ; ghyll = noghyll
704 ; help = makehelp ()
705 ; docinfo = []
706 ; texid = None
707 ; prevzoom = 1.0
708 ; progress = -1.0
709 ; uioh = nouioh
710 ; redisplay = true
711 ; mpos = (-1, -1)
712 ; keystate = KSnone
713 ; glinks = false
714 ; prevcolumns = None
718 let vlog fmt =
719 if conf.verbose
720 then
721 Printf.kprintf prerr_endline fmt
722 else
723 Printf.kprintf ignore fmt
726 let launchpath () =
727 if String.length conf.pathlauncher = 0
728 then print_endline state.path
729 else (
730 let re = Str.regexp "%s" in
731 let command = Str.global_replace re state.path conf.pathlauncher in
732 try popen command []
733 with exn ->
734 Printf.eprintf
735 "failed to execute `%s': %s\n" command (Printexc.to_string exn);
736 flush stderr;
740 module Ne = struct
741 type 'a t = | Res of 'a | Exn of exn;;
743 let pipe () =
744 try Res (Unix.pipe ())
745 with exn -> Exn exn
748 let clo fd f =
749 try Unix.close fd
750 with exn -> f (Printexc.to_string exn)
753 let dup fd =
754 try Res (Unix.dup fd)
755 with exn -> Exn exn
758 let dup2 fd1 fd2 =
759 try Res (Unix.dup2 fd1 fd2)
760 with exn -> Exn exn
762 end;;
764 let redirectstderr () =
765 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
766 if conf.redirectstderr
767 then
768 match Ne.pipe () with
769 | Ne.Exn exn ->
770 dolog "failed to create stderr redirection pipes: %s"
771 (Printexc.to_string exn)
773 | Ne.Res (r, w) ->
774 begin match Ne.dup Unix.stderr with
775 | Ne.Exn exn ->
776 dolog "failed to dup stderr: %s" (Printexc.to_string exn);
777 Ne.clo r (clofail "pipe/r");
778 Ne.clo w (clofail "pipe/w");
780 | Ne.Res dupstderr ->
781 begin match Ne.dup2 w Unix.stderr with
782 | Ne.Exn exn ->
783 dolog "failed to dup2 to stderr: %s"
784 (Printexc.to_string exn);
785 Ne.clo dupstderr (clofail "stderr duplicate");
786 Ne.clo r (clofail "redir pipe/r");
787 Ne.clo w (clofail "redir pipe/w");
789 | Ne.Res () ->
790 state.stderr <- dupstderr;
791 state.errfd <- Some r;
792 end;
794 else (
795 state.newerrmsgs <- false;
796 begin match state.errfd with
797 | Some fd ->
798 begin match Ne.dup2 state.stderr Unix.stderr with
799 | Ne.Exn exn ->
800 dolog "failed to dup2 original stderr: %s"
801 (Printexc.to_string exn)
802 | Ne.Res () ->
803 Ne.clo fd (clofail "dup of stderr");
804 Unix.dup2 state.stderr Unix.stderr;
805 state.errfd <- None;
806 end;
807 | None -> ()
808 end;
809 prerr_string (Buffer.contents state.errmsgs);
810 flush stderr;
811 Buffer.clear state.errmsgs;
815 module G =
816 struct
817 let postRedisplay who =
818 if conf.verbose
819 then prerr_endline ("redisplay for " ^ who);
820 state.redisplay <- true;
822 end;;
824 let getopaque pageno =
825 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
826 with Not_found -> None
829 let putopaque pageno opaque =
830 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
833 let pagetranslatepoint l x y =
834 let dy = y - l.pagedispy in
835 let y = dy + l.pagey in
836 let dx = x - l.pagedispx in
837 let x = dx + l.pagex in
838 (x, y);
841 let getunder x y =
842 let rec f = function
843 | l :: rest ->
844 begin match getopaque l.pageno with
845 | Some opaque ->
846 let x0 = l.pagedispx in
847 let x1 = x0 + l.pagevw in
848 let y0 = l.pagedispy in
849 let y1 = y0 + l.pagevh in
850 if y >= y0 && y <= y1 && x >= x0 && x <= x1
851 then
852 let px, py = pagetranslatepoint l x y in
853 match whatsunder opaque px py with
854 | Unone -> f rest
855 | under -> under
856 else f rest
857 | _ ->
858 f rest
860 | [] -> Unone
862 f state.layout
865 let showtext c s =
866 state.text <- Printf.sprintf "%c%s" c s;
867 G.postRedisplay "showtext";
870 let undertext = function
871 | Unone -> "none"
872 | Ulinkuri s -> s
873 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
874 | Utext s -> "font: " ^ s
875 | Uunexpected s -> "unexpected: " ^ s
876 | Ulaunch s -> "launch: " ^ s
877 | Unamed s -> "named: " ^ s
878 | Uremote (filename, pageno) ->
879 Printf.sprintf "%s: page %d" filename (pageno+1)
882 let updateunder x y =
883 match getunder x y with
884 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
885 | Ulinkuri uri ->
886 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
887 Wsi.setcursor Wsi.CURSOR_INFO
888 | Ulinkgoto (pageno, _) ->
889 if conf.underinfo
890 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
891 Wsi.setcursor Wsi.CURSOR_INFO
892 | Utext s ->
893 if conf.underinfo then showtext 'f' ("ont: " ^ s);
894 Wsi.setcursor Wsi.CURSOR_TEXT
895 | Uunexpected s ->
896 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
897 Wsi.setcursor Wsi.CURSOR_INHERIT
898 | Ulaunch s ->
899 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
900 Wsi.setcursor Wsi.CURSOR_INHERIT
901 | Unamed s ->
902 if conf.underinfo then showtext 'n' ("amed: " ^ s);
903 Wsi.setcursor Wsi.CURSOR_INHERIT
904 | Uremote (filename, pageno) ->
905 if conf.underinfo then showtext 'r'
906 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
907 Wsi.setcursor Wsi.CURSOR_INFO
910 let showlinktype under =
911 if conf.underinfo
912 then
913 match under with
914 | Unone -> ()
915 | under ->
916 let s = undertext under in
917 showtext ' ' s
920 let addchar s c =
921 let b = Buffer.create (String.length s + 1) in
922 Buffer.add_string b s;
923 Buffer.add_char b c;
924 Buffer.contents b;
927 let colorspace_of_string s =
928 match String.lowercase s with
929 | "rgb" -> Rgb
930 | "bgr" -> Bgr
931 | "gray" -> Gray
932 | _ -> failwith "invalid colorspace"
935 let int_of_colorspace = function
936 | Rgb -> 0
937 | Bgr -> 1
938 | Gray -> 2
941 let colorspace_of_int = function
942 | 0 -> Rgb
943 | 1 -> Bgr
944 | 2 -> Gray
945 | n -> failwith ("invalid colorspace index " ^ string_of_int n)
948 let colorspace_to_string = function
949 | Rgb -> "rgb"
950 | Bgr -> "bgr"
951 | Gray -> "gray"
954 let intentry_with_suffix text key =
955 let c =
956 if key >= 32 && key < 127
957 then Char.chr key
958 else '\000'
960 match Char.lowercase c with
961 | '0' .. '9' ->
962 let text = addchar text c in
963 TEcont text
965 | 'k' | 'm' | 'g' ->
966 let text = addchar text c in
967 TEcont text
969 | _ ->
970 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
971 TEcont text
974 let multicolumns_to_string (n, a, b) =
975 if a = 0 && b = 0
976 then Printf.sprintf "%d" n
977 else Printf.sprintf "%d,%d,%d" n a b;
980 let multicolumns_of_string s =
982 (int_of_string s, 0, 0)
983 with _ ->
984 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
985 if a > 1 || b > 1
986 then failwith "subtly broken"; (n, a, b)
990 let readcmd fd =
991 let s = "xxxx" in
992 let n = Unix.read fd s 0 4 in
993 if n != 4 then failwith "incomplete read(len)";
994 let len = 0
995 lor (Char.code s.[0] lsl 24)
996 lor (Char.code s.[1] lsl 16)
997 lor (Char.code s.[2] lsl 8)
998 lor (Char.code s.[3] lsl 0)
1000 let s = String.create len in
1001 let n = Unix.read fd s 0 len in
1002 if n != len then failwith "incomplete read(data)";
1006 let btod b = if b then 1 else 0;;
1008 let wcmd fmt =
1009 let b = Buffer.create 16 in
1010 Buffer.add_string b "llll";
1011 Printf.kbprintf
1012 (fun b ->
1013 let s = Buffer.contents b in
1014 let n = String.length s in
1015 let len = n - 4 in
1016 (* dolog "wcmd %S" (String.sub s 4 len); *)
1017 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1018 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1019 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1020 s.[3] <- Char.chr (len land 0xff);
1021 let n' = Unix.write state.sw s 0 n in
1022 if n' != n then failwith "write failed";
1023 ) b fmt;
1026 let calcips h =
1027 let d = conf.winh - h in
1028 max conf.interpagespace ((d + 1) / 2)
1031 let rowyh (c, coverA, coverB) b n =
1032 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1033 then
1034 let _, _, vy, (_, _, h, _) = b.(n) in
1035 (vy, h)
1036 else
1037 let n' = n - coverA in
1038 let d = n' mod c in
1039 let s = n - d in
1040 let e = min state.pagecount (s + c) in
1041 let rec find m miny maxh = if m = e then miny, maxh else
1042 let _, _, y, (_, _, h, _) = b.(m) in
1043 let miny = min miny y in
1044 let maxh = max maxh h in
1045 find (m+1) miny maxh
1046 in find s max_int 0
1049 let calcheight () =
1050 match conf.columns with
1051 | Cmulti ((_, _, _) as cl, b) ->
1052 if Array.length b > 0
1053 then
1054 let y, h = rowyh cl b (Array.length b - 1) in
1055 y + h + (if conf.presentation then calcips h else 0)
1056 else 0
1057 | Csingle b ->
1058 if Array.length b > 0
1059 then
1060 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1061 y + h + (if conf.presentation then calcips h else 0)
1062 else 0
1063 | Csplit (_, b) ->
1064 if Array.length b > 0
1065 then
1066 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1067 y + h
1068 else 0
1071 let getpageyh pageno =
1072 let pageno = bound pageno 0 (state.pagecount-1) in
1073 match conf.columns with
1074 | Csingle b ->
1075 if Array.length b = 0
1076 then 0, 0
1077 else
1078 let (_, _, y, (_, _, h, _)) = b.(pageno) in
1079 let y =
1080 if conf.presentation
1081 then y - calcips h
1082 else y
1084 y, h
1085 | Cmulti (cl, b) ->
1086 if Array.length b = 0
1087 then 0, 0
1088 else
1089 let y, h = rowyh cl b pageno in
1090 let y =
1091 if conf.presentation
1092 then y - calcips h
1093 else y
1095 y, h
1096 | Csplit (c, b) ->
1097 if Array.length b = 0
1098 then 0, 0
1099 else
1100 let n = pageno*c in
1101 let (_, _, y, (_, _, h, _)) = b.(n) in
1102 y, h
1105 let getpagedim pageno =
1106 let rec f ppdim l =
1107 match l with
1108 | (n, _, _, _) as pdim :: rest ->
1109 if n >= pageno
1110 then (if n = pageno then pdim else ppdim)
1111 else f pdim rest
1113 | [] -> ppdim
1115 f (-1, -1, -1, -1) state.pdims
1118 let getpagey pageno = fst (getpageyh pageno);;
1120 let nogeomcmds cmds =
1121 match cmds with
1122 | s, [] -> String.length s = 0
1123 | _ -> false
1126 let page_of_y y =
1127 let ((c, coverA, coverB) as cl), b =
1128 match conf.columns with
1129 | Csingle b -> (1, 0, 0), b
1130 | Cmulti (c, b) -> c, b
1131 | Csplit (_, b) -> (1, 0, 0), b
1133 let rec bsearch nmin nmax =
1134 if nmin > nmax
1135 then bound nmin 0 (state.pagecount-1)
1136 else
1137 let n = (nmax + nmin) / 2 in
1138 let vy, h = rowyh cl b n in
1139 let y0, y1 =
1140 if conf.presentation
1141 then
1142 let ips = calcips h in
1143 let y0 = vy - ips in
1144 let y1 = vy + h + ips in
1145 y0, y1
1146 else (
1147 if n = 0
1148 then 0, vy + h + conf.interpagespace
1149 else
1150 let y0 = vy - conf.interpagespace in
1151 y0, y0 + h + conf.interpagespace
1154 if y >= y0 && y < y1
1155 then (
1156 if c = 1
1157 then n
1158 else (
1159 if n > coverA
1160 then
1161 if n < state.pagecount - coverB
1162 then ((n-coverA)/c)*c + coverA
1163 else n
1164 else n
1167 else (
1168 if y > y0
1169 then bsearch (n+1) nmax
1170 else bsearch nmin (n-1)
1173 let r = bsearch 0 (state.pagecount-1) in
1177 let layoutN ((columns, coverA, coverB), b) y sh =
1178 let sh = sh - state.hscrollh in
1179 let rec fold accu n =
1180 if n = Array.length b
1181 then accu
1182 else
1183 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1184 if (vy - y) > sh &&
1185 (n = coverA - 1
1186 || n = state.pagecount - coverB
1187 || (n - coverA) mod columns = columns - 1)
1188 then accu
1189 else
1190 let accu =
1191 if vy + h > y
1192 then
1193 let pagey = max 0 (y - vy) in
1194 let pagedispy = if pagey > 0 then 0 else vy - y in
1195 let pagedispx, pagex =
1196 let pdx =
1197 if n = coverA - 1 || n = state.pagecount - coverB
1198 then state.x + (conf.winw - state.scrollw - w) / 2
1199 else dx + xoff + state.x
1201 if pdx < 0
1202 then 0, -pdx
1203 else pdx, 0
1205 let pagevw =
1206 let vw = conf.winw - state.scrollw - pagedispx in
1207 let pw = w - pagex in
1208 min vw pw
1210 let pagevh = min (h - pagey) (sh - pagedispy) in
1211 if pagevw > 0 && pagevh > 0
1212 then
1213 let e =
1214 { pageno = n
1215 ; pagedimno = pdimno
1216 ; pagew = w
1217 ; pageh = h
1218 ; pagex = pagex
1219 ; pagey = pagey
1220 ; pagevw = pagevw
1221 ; pagevh = pagevh
1222 ; pagedispx = pagedispx
1223 ; pagedispy = pagedispy
1224 ; pagecol = 0
1227 e :: accu
1228 else
1229 accu
1230 else
1231 accu
1233 fold accu (n+1)
1235 List.rev (fold [] (page_of_y y));
1238 let layoutS (columns, b) y sh =
1239 let sh = sh - state.hscrollh in
1240 let rec fold accu n =
1241 if n = Array.length b
1242 then accu
1243 else
1244 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1245 if (vy - y) > sh
1246 then accu
1247 else
1248 let accu =
1249 if vy + pageh > y
1250 then
1251 let x = xoff + state.x in
1252 let pagey = max 0 (y - vy) in
1253 let pagedispy = if pagey > 0 then 0 else vy - y in
1254 let pagedispx, pagex =
1255 if px = 0
1256 then (
1257 if x < 0
1258 then 0, -x
1259 else x, 0
1261 else (
1262 let px = px - x in
1263 if px < 0
1264 then -px, 0
1265 else 0, px
1268 let pagecolw = pagew/columns in
1269 let pagedispx =
1270 if pagecolw < conf.winw
1271 then pagedispx + ((conf.winw - state.scrollw - pagecolw) / 2)
1272 else pagedispx
1274 let pagevw =
1275 let vw = conf.winw - pagedispx - state.scrollw in
1276 let pw = pagew - pagex in
1277 min vw pw
1279 let pagevw = min pagevw pagecolw in
1280 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1281 if pagevw > 0 && pagevh > 0
1282 then
1283 let e =
1284 { pageno = n/columns
1285 ; pagedimno = pdimno
1286 ; pagew = pagew
1287 ; pageh = pageh
1288 ; pagex = pagex
1289 ; pagey = pagey
1290 ; pagevw = pagevw
1291 ; pagevh = pagevh
1292 ; pagedispx = pagedispx
1293 ; pagedispy = pagedispy
1294 ; pagecol = n mod columns
1297 e :: accu
1298 else
1299 accu
1300 else
1301 accu
1303 fold accu (n+1)
1305 List.rev (fold [] 0)
1308 let layout y sh =
1309 if nogeomcmds state.geomcmds
1310 then
1311 match conf.columns with
1312 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1313 | Cmulti c -> layoutN c y sh
1314 | Csplit s -> layoutS s y sh
1315 else []
1318 let clamp incr =
1319 let y = state.y + incr in
1320 let y = max 0 y in
1321 let y = min y (state.maxy - (if conf.maxhfit then conf.winh else 0)) in
1325 let itertiles l f =
1326 let tilex = l.pagex mod conf.tilew in
1327 let tiley = l.pagey mod conf.tileh in
1329 let col = l.pagex / conf.tilew in
1330 let row = l.pagey / conf.tileh in
1332 let rec rowloop row y0 dispy h =
1333 if h = 0
1334 then ()
1335 else (
1336 let dh = conf.tileh - y0 in
1337 let dh = min h dh in
1338 let rec colloop col x0 dispx w =
1339 if w = 0
1340 then ()
1341 else (
1342 let dw = conf.tilew - x0 in
1343 let dw = min w dw in
1345 f col row dispx dispy x0 y0 dw dh;
1346 colloop (col+1) 0 (dispx+dw) (w-dw)
1349 colloop col tilex l.pagedispx l.pagevw;
1350 rowloop (row+1) 0 (dispy+dh) (h-dh)
1353 if l.pagevw > 0 && l.pagevh > 0
1354 then rowloop row tiley l.pagedispy l.pagevh;
1357 let gettileopaque l col row =
1358 let key =
1359 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1361 try Some (Hashtbl.find state.tilemap key)
1362 with Not_found -> None
1365 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1366 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1367 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1370 let drawtiles l color =
1371 GlDraw.color color;
1372 let f col row x y tilex tiley w h =
1373 match gettileopaque l col row with
1374 | Some (opaque, _, t) ->
1375 let params = x, y, w, h, tilex, tiley in
1376 if conf.invert
1377 then (
1378 Gl.enable `blend;
1379 GlFunc.blend_func `zero `one_minus_src_color;
1381 drawtile params opaque;
1382 if conf.invert
1383 then Gl.disable `blend;
1384 if conf.debug
1385 then (
1386 let s = Printf.sprintf
1387 "%d[%d,%d] %f sec"
1388 l.pageno col row t
1390 let w = measurestr fstate.fontsize s in
1391 GlMisc.push_attrib [`current];
1392 GlDraw.color (0.0, 0.0, 0.0);
1393 GlDraw.rect
1394 (float (x-2), float (y-2))
1395 (float (x+2) +. w, float (y + fstate.fontsize + 2));
1396 GlDraw.color (1.0, 1.0, 1.0);
1397 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1398 GlMisc.pop_attrib ();
1401 | _ ->
1402 let w =
1403 let lw = conf.winw - state.scrollw - x in
1404 min lw w
1405 and h =
1406 let lh = conf.winh - y in
1407 min lh h
1409 begin match state.texid with
1410 | Some id ->
1411 Gl.enable `texture_2d;
1412 GlTex.bind_texture `texture_2d id;
1413 let x0 = float x
1414 and y0 = float y
1415 and x1 = float (x+w)
1416 and y1 = float (y+h) in
1418 let tw = float w /. 16.0
1419 and th = float h /. 16.0 in
1420 let tx0 = float tilex /. 16.0
1421 and ty0 = float tiley /. 16.0 in
1422 let tx1 = tx0 +. tw
1423 and ty1 = ty0 +. th in
1424 GlDraw.begins `quads;
1425 GlTex.coord2 (tx0, ty0); GlDraw.vertex2 (x0, y0);
1426 GlTex.coord2 (tx0, ty1); GlDraw.vertex2 (x0, y1);
1427 GlTex.coord2 (tx1, ty1); GlDraw.vertex2 (x1, y1);
1428 GlTex.coord2 (tx1, ty0); GlDraw.vertex2 (x1, y0);
1429 GlDraw.ends ();
1431 Gl.disable `texture_2d;
1432 | None ->
1433 GlDraw.color (1.0, 1.0, 1.0);
1434 GlDraw.rect
1435 (float x, float y)
1436 (float (x+w), float (y+h));
1437 end;
1438 if w > 128 && h > fstate.fontsize + 10
1439 then (
1440 GlDraw.color (0.0, 0.0, 0.0);
1441 let c, r =
1442 if conf.verbose
1443 then (col*conf.tilew, row*conf.tileh)
1444 else col, row
1446 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1448 GlDraw.color color;
1450 itertiles l f
1453 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1455 let tilevisible1 l x y =
1456 let ax0 = l.pagex
1457 and ax1 = l.pagex + l.pagevw
1458 and ay0 = l.pagey
1459 and ay1 = l.pagey + l.pagevh in
1461 let bx0 = x
1462 and by0 = y in
1463 let bx1 = min (bx0 + conf.tilew) l.pagew
1464 and by1 = min (by0 + conf.tileh) l.pageh in
1466 let rx0 = max ax0 bx0
1467 and ry0 = max ay0 by0
1468 and rx1 = min ax1 bx1
1469 and ry1 = min ay1 by1 in
1471 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1472 nonemptyintersection
1475 let tilevisible layout n x y =
1476 let rec findpageinlayout m = function
1477 | l :: rest when l.pageno = n ->
1478 tilevisible1 l x y || (
1479 match conf.columns with
1480 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1481 | _ -> false
1483 | _ :: rest -> findpageinlayout 0 rest
1484 | [] -> false
1486 findpageinlayout 0 layout;
1489 let tileready l x y =
1490 tilevisible1 l x y &&
1491 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1494 let tilepage n p layout =
1495 let rec loop = function
1496 | l :: rest ->
1497 if l.pageno = n
1498 then
1499 let f col row _ _ _ _ _ _ =
1500 if state.currently = Idle
1501 then
1502 match gettileopaque l col row with
1503 | Some _ -> ()
1504 | None ->
1505 let x = col*conf.tilew
1506 and y = row*conf.tileh in
1507 let w =
1508 let w = l.pagew - x in
1509 min w conf.tilew
1511 let h =
1512 let h = l.pageh - y in
1513 min h conf.tileh
1515 let pbo =
1516 if conf.usepbo
1517 then getpbo w h conf.colorspace
1518 else "0"
1520 wcmd "tile %s %d %d %d %d %s" p x y w h pbo;
1521 state.currently <-
1522 Tiling (
1523 l, p, conf.colorspace, conf.angle, state.gen, col, row,
1524 conf.tilew, conf.tileh
1527 itertiles l f;
1528 else
1529 loop rest
1531 | [] -> ()
1533 if nogeomcmds state.geomcmds
1534 then loop layout;
1537 let preloadlayout y =
1538 let y = if y < conf.winh then 0 else y - conf.winh in
1539 let h = conf.winh*3 in
1540 layout y h;
1543 let load pages =
1544 let rec loop pages =
1545 if state.currently != Idle
1546 then ()
1547 else
1548 match pages with
1549 | l :: rest ->
1550 begin match getopaque l.pageno with
1551 | None ->
1552 wcmd "page %d %d" l.pageno l.pagedimno;
1553 state.currently <- Loading (l, state.gen);
1554 | Some opaque ->
1555 tilepage l.pageno opaque pages;
1556 loop rest
1557 end;
1558 | _ -> ()
1560 if nogeomcmds state.geomcmds
1561 then loop pages
1564 let preload pages =
1565 load pages;
1566 if conf.preload && state.currently = Idle
1567 then load (preloadlayout state.y);
1570 let layoutready layout =
1571 let rec fold all ls =
1572 all && match ls with
1573 | l :: rest ->
1574 let seen = ref false in
1575 let allvisible = ref true in
1576 let foo col row _ _ _ _ _ _ =
1577 seen := true;
1578 allvisible := !allvisible &&
1579 begin match gettileopaque l col row with
1580 | Some _ -> true
1581 | None -> false
1584 itertiles l foo;
1585 fold (!seen && !allvisible) rest
1586 | [] -> true
1588 let alltilesvisible = fold true layout in
1589 alltilesvisible;
1592 let gotoy y =
1593 let y = bound y 0 state.maxy in
1594 let y, layout, proceed =
1595 match conf.maxwait with
1596 | Some time when state.ghyll == noghyll ->
1597 begin match state.throttle with
1598 | None ->
1599 let layout = layout y conf.winh in
1600 let ready = layoutready layout in
1601 if not ready
1602 then (
1603 load layout;
1604 state.throttle <- Some (layout, y, now ());
1606 else G.postRedisplay "gotoy showall (None)";
1607 y, layout, ready
1608 | Some (_, _, started) ->
1609 let dt = now () -. started in
1610 if dt > time
1611 then (
1612 state.throttle <- None;
1613 let layout = layout y conf.winh in
1614 load layout;
1615 G.postRedisplay "maxwait";
1616 y, layout, true
1618 else -1, [], false
1621 | _ ->
1622 let layout = layout y conf.winh in
1623 if true || layoutready layout
1624 then G.postRedisplay "gotoy ready";
1625 y, layout, true
1627 if proceed
1628 then (
1629 state.y <- y;
1630 state.layout <- layout;
1631 begin match state.mode with
1632 | LinkNav (Ltexact (pageno, linkno)) ->
1633 let rec loop = function
1634 | [] ->
1635 state.mode <- LinkNav (Ltgendir 0)
1636 | l :: _ when l.pageno = pageno ->
1637 begin match getopaque pageno with
1638 | None ->
1639 state.mode <- LinkNav (Ltgendir 0)
1640 | Some opaque ->
1641 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1642 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1643 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1644 then state.mode <- LinkNav (Ltgendir 0)
1646 | _ :: rest -> loop rest
1648 loop layout
1649 | _ -> ()
1650 end;
1651 begin match state.mode with
1652 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1653 if not (pagevisible layout pageno)
1654 then (
1655 match state.layout with
1656 | [] -> ()
1657 | l :: _ ->
1658 state.mode <- Birdseye (
1659 conf, leftx, l.pageno, hooverpageno, anchor
1662 | LinkNav (Ltgendir dir as lt) ->
1663 let linknav =
1664 let rec loop = function
1665 | [] -> lt
1666 | l :: rest ->
1667 match getopaque l.pageno with
1668 | None -> loop rest
1669 | Some opaque ->
1670 let link =
1671 let ld =
1672 if dir = 0
1673 then LDfirstvisible (l.pagex, l.pagey, dir)
1674 else (
1675 if dir > 0 then LDfirst else LDlast
1678 findlink opaque ld
1680 match link with
1681 | Lnotfound -> loop rest
1682 | Lfound n ->
1683 showlinktype (getlink opaque n);
1684 Ltexact (l.pageno, n)
1686 loop state.layout
1688 state.mode <- LinkNav linknav
1689 | _ -> ()
1690 end;
1691 preload layout;
1693 state.ghyll <- noghyll;
1694 if conf.updatecurs
1695 then (
1696 let mx, my = state.mpos in
1697 updateunder mx my;
1701 let conttiling pageno opaque =
1702 tilepage pageno opaque
1703 (if conf.preload then preloadlayout state.y else state.layout)
1706 let gotoy_and_clear_text y =
1707 if not conf.verbose then state.text <- "";
1708 gotoy y;
1711 let getanchor1 l =
1712 let top =
1713 let coloff = l.pagecol * l.pageh in
1714 float (l.pagey + coloff) /. float l.pageh
1716 let dtop =
1717 if l.pagedispy = 0
1718 then
1720 else
1721 if conf.presentation
1722 then float l.pagedispy /. float (calcips l.pageh)
1723 else float l.pagedispy /. float conf.interpagespace
1725 (l.pageno, top, dtop)
1728 let getanchor () =
1729 match state.layout with
1730 | l :: _ -> getanchor1 l
1731 | [] ->
1732 let n = page_of_y state.y in
1733 let y, h = getpageyh n in
1734 let dy = y - state.y in
1735 let dtop =
1736 if conf.presentation
1737 then
1738 let ips = calcips h in
1739 float (dy + ips) /. float ips
1740 else
1741 float dy /. float conf.interpagespace
1743 (n, 0.0, dtop)
1746 let getanchory (n, top, dtop) =
1747 let y, h = getpageyh n in
1748 if conf.presentation
1749 then
1750 let ips = calcips h in
1751 y + truncate (top*.float h -. dtop*.float ips) + ips;
1752 else
1753 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
1756 let gotoanchor anchor =
1757 gotoy (getanchory anchor);
1760 let addnav () =
1761 cbput state.hists.nav (getanchor ());
1764 let getnav dir =
1765 let anchor = cbgetc state.hists.nav dir in
1766 getanchory anchor;
1769 let gotoghyll y =
1770 let scroll f n a b =
1771 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1772 let snake f a b =
1773 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1774 if f < a
1775 then s (float f /. float a)
1776 else (
1777 if f > b
1778 then 1.0 -. s ((float (f-b) /. float (n-b)))
1779 else 1.0
1782 snake f a b
1783 and summa f n a b =
1784 (* courtesy:
1785 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1786 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1787 let iv1 = iv f in
1788 let ins = float a *. iv1
1789 and outs = float (n-b) *. iv1 in
1790 let ones = b - a in
1791 ins +. outs +. float ones
1793 let rec set (_N, _A, _B) y sy =
1794 let sum = summa 1.0 _N _A _B in
1795 let dy = float (y - sy) in
1796 state.ghyll <- (
1797 let rec gf n y1 o =
1798 if n >= _N
1799 then state.ghyll <- noghyll
1800 else
1801 let go n =
1802 let s = scroll n _N _A _B in
1803 let y1 = y1 +. ((s *. dy) /. sum) in
1804 gotoy_and_clear_text (truncate y1);
1805 state.ghyll <- gf (n+1) y1;
1807 match o with
1808 | None -> go n
1809 | Some y' -> set (_N/2, 1, 1) y' state.y
1811 gf 0 (float state.y)
1814 match conf.ghyllscroll with
1815 | None ->
1816 gotoy_and_clear_text y
1817 | Some nab ->
1818 if state.ghyll == noghyll
1819 then set nab y state.y
1820 else state.ghyll (Some y)
1823 let gotopage n top =
1824 let y, h = getpageyh n in
1825 let y = y + (truncate (top *. float h)) in
1826 gotoghyll y
1829 let gotopage1 n top =
1830 let y = getpagey n in
1831 let y = y + top in
1832 gotoghyll y
1835 let invalidate s f =
1836 state.layout <- [];
1837 state.pdims <- [];
1838 state.rects <- [];
1839 state.rects1 <- [];
1840 match state.geomcmds with
1841 | ps, [] when String.length ps = 0 ->
1842 f ();
1843 state.geomcmds <- s, [];
1845 | ps, [] ->
1846 state.geomcmds <- ps, [s, f];
1848 | ps, (s', _) :: rest when s' = s ->
1849 state.geomcmds <- ps, ((s, f) :: rest);
1851 | ps, cmds ->
1852 state.geomcmds <- ps, ((s, f) :: cmds);
1855 let flushpages () =
1856 Hashtbl.iter (fun _ opaque ->
1857 wcmd "freepage %s" opaque;
1858 ) state.pagemap;
1859 Hashtbl.clear state.pagemap;
1862 let opendoc path password =
1863 state.path <- path;
1864 state.password <- password;
1865 state.gen <- state.gen + 1;
1866 state.docinfo <- [];
1868 flushpages ();
1869 setaalevel conf.aalevel;
1870 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename path)));
1871 wcmd "open %s\000%s\000" path password;
1872 invalidate "reqlayout"
1873 (fun () ->
1874 wcmd "reqlayout %d %d" conf.angle (btod conf.proportional));
1877 let reload () =
1878 state.anchor <- getanchor ();
1879 opendoc state.path state.password;
1882 let scalecolor c =
1883 let c = c *. conf.colorscale in
1884 (c, c, c);
1887 let scalecolor2 (r, g, b) =
1888 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
1891 let docolumns = function
1892 | Csingle _ ->
1893 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1894 let rec loop pageno pdimno pdim y ph pdims =
1895 if pageno = state.pagecount
1896 then ()
1897 else
1898 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1899 match pdims with
1900 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1901 pdimno+1, pdim, rest
1902 | _ ->
1903 pdimno, pdim, pdims
1905 let x = max 0 (((conf.winw - state.scrollw - w) / 2) - xoff) in
1906 let y = y +
1907 (if conf.presentation
1908 then (if pageno = 0 then calcips h else calcips ph + calcips h)
1909 else (if pageno = 0 then 0 else conf.interpagespace)
1912 a.(pageno) <- (pdimno, x, y, pdim);
1913 loop (pageno+1) pdimno pdim (y + h) h pdims
1915 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
1916 conf.columns <- Csingle a;
1918 | Cmulti ((columns, coverA, coverB), _) ->
1919 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
1920 let rec loop pageno pdimno pdim x y rowh pdims =
1921 let rec fixrow m = if m = pageno then () else
1922 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
1923 if h < rowh
1924 then (
1925 let y = y + (rowh - h) / 2 in
1926 a.(m) <- (pdimno, x, y, pdim);
1928 fixrow (m+1)
1930 if pageno = state.pagecount
1931 then fixrow (((pageno - 1) / columns) * columns)
1932 else
1933 let pdimno, ((_, w, h, xoff) as pdim), pdims =
1934 match pdims with
1935 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
1936 pdimno+1, pdim, rest
1937 | _ ->
1938 pdimno, pdim, pdims
1940 let x, y, rowh' =
1941 if pageno = coverA - 1 || pageno = state.pagecount - coverB
1942 then (
1943 let x = (conf.winw - state.scrollw - w) / 2 in
1944 let ips =
1945 if conf.presentation then calcips h else conf.interpagespace in
1946 x, y + ips + rowh, h
1948 else (
1949 if (pageno - coverA) mod columns = 0
1950 then (
1951 let x = max 0 (conf.winw - state.scrollw - state.w) / 2 in
1952 let y =
1953 if conf.presentation
1954 then
1955 let ips = calcips h in
1956 y + (if pageno = 0 then 0 else calcips rowh + ips)
1957 else
1958 y + (if pageno = 0 then 0 else conf.interpagespace)
1960 x, y + rowh, h
1962 else x, y, max rowh h
1965 let y =
1966 if pageno > 1 && (pageno - coverA) mod columns = 0
1967 then (
1968 let y =
1969 if pageno = columns && conf.presentation
1970 then (
1971 let ips = calcips rowh in
1972 for i = 0 to pred columns
1974 let (pdimno, x, y, pdim) = a.(i) in
1975 a.(i) <- (pdimno, x, y+ips, pdim)
1976 done;
1977 y+ips;
1979 else y
1981 fixrow (pageno - columns);
1984 else y
1986 a.(pageno) <- (pdimno, x, y, pdim);
1987 let x = x + w + xoff*2 + conf.interpagespace in
1988 loop (pageno+1) pdimno pdim x y rowh' pdims
1990 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
1991 conf.columns <- Cmulti ((columns, coverA, coverB), a);
1993 | Csplit (c, _) ->
1994 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1995 let rec loop pageno pdimno pdim y pdims =
1996 if pageno = state.pagecount
1997 then ()
1998 else
1999 let pdimno, ((_, w, h, _) as pdim), pdims =
2000 match pdims with
2001 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2002 pdimno+1, pdim, rest
2003 | _ ->
2004 pdimno, pdim, pdims
2006 let cw = w / c in
2007 let rec loop1 n x y =
2008 if n = c then y else (
2009 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2010 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2013 let y = loop1 0 0 y in
2014 loop (pageno+1) pdimno pdim y pdims
2016 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2017 conf.columns <- Csplit (c, a);
2020 let represent () =
2021 docolumns conf.columns;
2022 state.maxy <- calcheight ();
2023 state.hscrollh <-
2024 if state.w <= conf.winw - state.scrollw
2025 then 0
2026 else state.scrollw
2028 match state.mode with
2029 | Birdseye (_, _, pageno, _, _) ->
2030 let y, h = getpageyh pageno in
2031 let top = (conf.winh - h) / 2 in
2032 gotoy (max 0 (y - top))
2033 | _ -> gotoanchor state.anchor
2036 let reshape w h =
2037 GlDraw.viewport 0 0 w h;
2038 let firsttime = state.geomcmds == firstgeomcmds in
2039 if not firsttime && nogeomcmds state.geomcmds
2040 then state.anchor <- getanchor ();
2042 conf.winw <- w;
2043 let w = truncate (float w *. conf.zoom) - state.scrollw in
2044 let w = max w 2 in
2045 conf.winh <- h;
2046 setfontsize fstate.fontsize;
2047 GlMat.mode `modelview;
2048 GlMat.load_identity ();
2050 GlMat.mode `projection;
2051 GlMat.load_identity ();
2052 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2053 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2054 GlMat.scale3 (2.0 /. float conf.winw, 2.0 /. float conf.winh, 1.0);
2056 let relx =
2057 if conf.zoom <= 1.0
2058 then 0.0
2059 else float state.x /. float state.w
2061 invalidate "geometry"
2062 (fun () ->
2063 state.w <- w;
2064 if not firsttime
2065 then state.x <- truncate (relx *. float w);
2066 let w =
2067 match conf.columns with
2068 | Csingle _ -> w
2069 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2070 | Csplit (c, _) -> w * c
2072 wcmd "geometry %d %d" w h);
2075 let enttext () =
2076 let len = String.length state.text in
2077 let drawstring s =
2078 let hscrollh =
2079 match state.mode with
2080 | Textentry _
2081 | View ->
2082 let h, _, _ = state.uioh#scrollpw in
2084 | _ -> 0
2086 let rect x w =
2087 GlDraw.rect
2088 (x, float (conf.winh - (fstate.fontsize + 4) - hscrollh))
2089 (x+.w, float (conf.winh - hscrollh))
2092 let w = float (conf.winw - state.scrollw - 1) in
2093 if state.progress >= 0.0 && state.progress < 1.0
2094 then (
2095 GlDraw.color (0.3, 0.3, 0.3);
2096 let w1 = w *. state.progress in
2097 rect 0.0 w1;
2098 GlDraw.color (0.0, 0.0, 0.0);
2099 rect w1 (w-.w1)
2101 else (
2102 GlDraw.color (0.0, 0.0, 0.0);
2103 rect 0.0 w;
2106 GlDraw.color (1.0, 1.0, 1.0);
2107 drawstring fstate.fontsize
2108 (if len > 0 then 8 else 2) (conf.winh - hscrollh - 5) s;
2110 let s =
2111 match state.mode with
2112 | Textentry ((prefix, text, _, _, _, _), _) ->
2113 let s =
2114 if len > 0
2115 then
2116 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2117 else
2118 Printf.sprintf "%s%s_" prefix text
2122 | _ -> state.text
2124 let s =
2125 if state.newerrmsgs
2126 then (
2127 if not (istextentry state.mode)
2128 then
2129 let s1 = "(press 'e' to review error messasges)" in
2130 if String.length s > 0 then s ^ " " ^ s1 else s1
2131 else s
2133 else s
2135 if String.length s > 0
2136 then drawstring s
2139 let gctiles () =
2140 let len = Queue.length state.tilelru in
2141 let layout = lazy (
2142 match state.throttle with
2143 | None ->
2144 if conf.preload
2145 then preloadlayout state.y
2146 else state.layout
2147 | Some (layout, _, _) ->
2148 layout
2149 ) in
2150 let rec loop qpos =
2151 if state.memused <= conf.memlimit
2152 then ()
2153 else (
2154 if qpos < len
2155 then
2156 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2157 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2158 let (_, pw, ph, _) = getpagedim n in
2160 gen = state.gen
2161 && colorspace = conf.colorspace
2162 && angle = conf.angle
2163 && pagew = pw
2164 && pageh = ph
2165 && (
2166 let x = col*conf.tilew
2167 and y = row*conf.tileh in
2168 tilevisible (Lazy.force_val layout) n x y
2170 then Queue.push lruitem state.tilelru
2171 else (
2172 freepbo p;
2173 wcmd "freetile %s" p;
2174 state.memused <- state.memused - s;
2175 state.uioh#infochanged Memused;
2176 Hashtbl.remove state.tilemap k;
2178 loop (qpos+1)
2181 loop 0
2184 let flushtiles () =
2185 Queue.iter (fun (k, p, s) ->
2186 wcmd "freetile %s" p;
2187 state.memused <- state.memused - s;
2188 state.uioh#infochanged Memused;
2189 Hashtbl.remove state.tilemap k;
2190 ) state.tilelru;
2191 Queue.clear state.tilelru;
2192 load state.layout;
2195 let logcurrently = function
2196 | Idle -> dolog "Idle"
2197 | Loading (l, gen) ->
2198 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2199 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2200 dolog
2201 "Tiling %d[%d,%d] page=%s cs=%s angle"
2202 l.pageno col row pageopaque
2203 (colorspace_to_string colorspace)
2205 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2206 angle gen conf.angle state.gen
2207 tilew tileh
2208 conf.tilew conf.tileh
2210 | Outlining _ ->
2211 dolog "outlining"
2214 let act cmds =
2215 (* dolog "%S" cmds; *)
2216 let op, args =
2217 let spacepos =
2218 try String.index cmds ' '
2219 with Not_found -> -1
2221 if spacepos = -1
2222 then cmds, ""
2223 else
2224 let l = String.length cmds in
2225 let op = String.sub cmds 0 spacepos in
2226 op, begin
2227 if l - spacepos < 2 then ""
2228 else String.sub cmds (spacepos+1) (l-spacepos-1)
2231 match op with
2232 | "clear" ->
2233 state.uioh#infochanged Pdim;
2234 state.pdims <- [];
2236 | "clearrects" ->
2237 state.rects <- state.rects1;
2238 G.postRedisplay "clearrects";
2240 | "continue" ->
2241 let n =
2242 try Scanf.sscanf args "%u" (fun n -> n)
2243 with exn ->
2244 dolog "error processing 'continue' %S: %s"
2245 cmds (Printexc.to_string exn);
2246 exit 1;
2248 state.pagecount <- n;
2249 begin match state.currently with
2250 | Outlining l ->
2251 state.currently <- Idle;
2252 state.outlines <- Array.of_list (List.rev l)
2253 | _ -> ()
2254 end;
2256 let cur, cmds = state.geomcmds in
2257 if String.length cur = 0
2258 then failwith "umpossible";
2260 begin match List.rev cmds with
2261 | [] ->
2262 state.geomcmds <- "", [];
2263 represent ();
2264 | (s, f) :: rest ->
2265 f ();
2266 state.geomcmds <- s, List.rev rest;
2267 end;
2268 if conf.maxwait = None
2269 then G.postRedisplay "continue";
2271 | "title" ->
2272 Wsi.settitle args
2274 | "msg" ->
2275 showtext ' ' args
2277 | "vmsg" ->
2278 if conf.verbose
2279 then showtext ' ' args
2281 | "progress" ->
2282 let progress, text =
2284 Scanf.sscanf args "%f %n"
2285 (fun f pos ->
2286 f, String.sub args pos (String.length args - pos))
2287 with exn ->
2288 dolog "error processing 'progress' %S: %s"
2289 cmds (Printexc.to_string exn);
2290 exit 1;
2292 state.text <- text;
2293 state.progress <- progress;
2294 G.postRedisplay "progress"
2296 | "firstmatch" ->
2297 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2299 Scanf.sscanf args "%u %d %f %f %f %f %f %f %f %f"
2300 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2301 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2302 with exn ->
2303 dolog "error processing 'firstmatch' %S: %s"
2304 cmds (Printexc.to_string exn);
2305 exit 1;
2307 let y = (getpagey pageno) + truncate y0 in
2308 addnav ();
2309 gotoy y;
2310 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2312 | "match" ->
2313 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2315 Scanf.sscanf args "%u %d %f %f %f %f %f %f %f %f"
2316 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2317 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2318 with exn ->
2319 dolog "error processing 'match' %S: %s"
2320 cmds (Printexc.to_string exn);
2321 exit 1;
2323 state.rects1 <-
2324 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2326 | "page" ->
2327 let pageopaque, t =
2329 Scanf.sscanf args "%s %f" (fun p t -> p, t)
2330 with exn ->
2331 dolog "error processing 'page' %S: %s"
2332 cmds (Printexc.to_string exn);
2333 exit 1;
2335 begin match state.currently with
2336 | Loading (l, gen) ->
2337 vlog "page %d took %f sec" l.pageno t;
2338 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2339 begin match state.throttle with
2340 | None ->
2341 let preloadedpages =
2342 if conf.preload
2343 then preloadlayout state.y
2344 else state.layout
2346 let evict () =
2347 let module IntSet =
2348 Set.Make (struct type t = int let compare = (-) end) in
2349 let set =
2350 List.fold_left (fun s l -> IntSet.add l.pageno s)
2351 IntSet.empty preloadedpages
2353 let evictedpages =
2354 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2355 if not (IntSet.mem pageno set)
2356 then (
2357 wcmd "freepage %s" opaque;
2358 key :: accu
2360 else accu
2361 ) state.pagemap []
2363 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2365 evict ();
2366 state.currently <- Idle;
2367 if gen = state.gen
2368 then (
2369 tilepage l.pageno pageopaque state.layout;
2370 load state.layout;
2371 load preloadedpages;
2372 if pagevisible state.layout l.pageno
2373 && layoutready state.layout
2374 then G.postRedisplay "page";
2377 | Some (layout, _, _) ->
2378 state.currently <- Idle;
2379 tilepage l.pageno pageopaque layout;
2380 load state.layout
2381 end;
2383 | _ ->
2384 dolog "Inconsistent loading state";
2385 logcurrently state.currently;
2386 exit 1
2389 | "tile" ->
2390 let (x, y, opaque, size, t) =
2392 Scanf.sscanf args "%u %u %s %u %f"
2393 (fun x y p size t -> (x, y, p, size, t))
2394 with exn ->
2395 dolog "error processing 'tile' %S: %s"
2396 cmds (Printexc.to_string exn);
2397 exit 1;
2399 begin match state.currently with
2400 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2401 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2403 unmappbo opaque;
2404 if tilew != conf.tilew || tileh != conf.tileh
2405 then (
2406 wcmd "freetile %s" opaque;
2407 state.currently <- Idle;
2408 load state.layout;
2410 else (
2411 puttileopaque l col row gen cs angle opaque size t;
2412 state.memused <- state.memused + size;
2413 state.uioh#infochanged Memused;
2414 gctiles ();
2415 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2416 opaque, size) state.tilelru;
2418 let layout =
2419 match state.throttle with
2420 | None -> state.layout
2421 | Some (layout, _, _) -> layout
2424 state.currently <- Idle;
2425 if gen = state.gen
2426 && conf.colorspace = cs
2427 && conf.angle = angle
2428 && tilevisible layout l.pageno x y
2429 then conttiling l.pageno pageopaque;
2431 begin match state.throttle with
2432 | None ->
2433 preload state.layout;
2434 if gen = state.gen
2435 && conf.colorspace = cs
2436 && conf.angle = angle
2437 && tilevisible state.layout l.pageno x y
2438 then G.postRedisplay "tile nothrottle";
2440 | Some (layout, y, _) ->
2441 let ready = layoutready layout in
2442 if ready
2443 then (
2444 state.y <- y;
2445 state.layout <- layout;
2446 state.throttle <- None;
2447 G.postRedisplay "throttle";
2449 else load layout;
2450 end;
2453 | _ ->
2454 dolog "Inconsistent tiling state";
2455 logcurrently state.currently;
2456 exit 1
2459 | "pdim" ->
2460 let pdim =
2462 Scanf.sscanf args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2463 with exn ->
2464 dolog "error processing 'pdim' %S: %s"
2465 cmds (Printexc.to_string exn);
2466 exit 1;
2468 state.uioh#infochanged Pdim;
2469 state.pdims <- pdim :: state.pdims
2471 | "o" ->
2472 let (l, n, t, h, pos) =
2474 Scanf.sscanf args "%u %u %d %u %n"
2475 (fun l n t h pos -> l, n, t, h, pos)
2476 with exn ->
2477 dolog "error processing 'o' %S: %s"
2478 cmds (Printexc.to_string exn);
2479 exit 1;
2481 let s = String.sub args pos (String.length args - pos) in
2482 let outline = (s, l, (n, float t /. float h, 0.0)) in
2483 begin match state.currently with
2484 | Outlining outlines ->
2485 state.currently <- Outlining (outline :: outlines)
2486 | Idle ->
2487 state.currently <- Outlining [outline]
2488 | currently ->
2489 dolog "invalid outlining state";
2490 logcurrently currently
2493 | "info" ->
2494 state.docinfo <- (1, args) :: state.docinfo
2496 | "infoend" ->
2497 state.uioh#infochanged Docinfo;
2498 state.docinfo <- List.rev state.docinfo
2500 | _ ->
2501 dolog "unknown cmd `%S'" cmds
2504 let onhist cb =
2505 let rc = cb.rc in
2506 let action = function
2507 | HCprev -> cbget cb ~-1
2508 | HCnext -> cbget cb 1
2509 | HCfirst -> cbget cb ~-(cb.rc)
2510 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2511 and cancel () = cb.rc <- rc
2512 in (action, cancel)
2515 let search pattern forward =
2516 if String.length pattern > 0
2517 then
2518 let pn, py =
2519 match state.layout with
2520 | [] -> 0, 0
2521 | l :: _ ->
2522 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2524 wcmd "search %d %d %d %d,%s\000"
2525 (btod conf.icase) pn py (btod forward) pattern;
2528 let intentry text key =
2529 let c =
2530 if key >= 32 && key < 127
2531 then Char.chr key
2532 else '\000'
2534 match c with
2535 | '0' .. '9' ->
2536 let text = addchar text c in
2537 TEcont text
2539 | _ ->
2540 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2541 TEcont text
2544 let linknentry text key =
2545 let c =
2546 if key >= 32 && key < 127
2547 then Char.chr key
2548 else '\000'
2550 match c with
2551 | 'a' .. 'z' ->
2552 let text = addchar text c in
2553 TEcont text
2555 | _ ->
2556 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2557 TEcont text
2560 let linkndone f s =
2561 if String.length s > 0
2562 then (
2563 let n =
2564 let l = String.length s in
2565 let rec loop pos n = if pos = l then n else
2566 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2567 loop (pos+1) (n*26 + m)
2568 in loop 0 0
2570 let rec loop n = function
2571 | [] -> ()
2572 | l :: rest ->
2573 match getopaque l.pageno with
2574 | None -> loop n rest
2575 | Some opaque ->
2576 let m = getlinkcount opaque in
2577 if n < m
2578 then (
2579 let under = getlink opaque n in
2580 f under
2582 else loop (n-m) rest
2584 loop n state.layout;
2588 let textentry text key =
2589 if key land 0xff00 = 0xff00
2590 then TEcont text
2591 else TEcont (text ^ Wsi.toutf8 key)
2594 let reqlayout angle proportional =
2595 match state.throttle with
2596 | None ->
2597 if nogeomcmds state.geomcmds
2598 then state.anchor <- getanchor ();
2599 conf.angle <- angle mod 360;
2600 if conf.angle != 0
2601 then (
2602 match state.mode with
2603 | LinkNav _ -> state.mode <- View
2604 | _ -> ()
2606 conf.proportional <- proportional;
2607 invalidate "reqlayout"
2608 (fun () -> wcmd "reqlayout %d %d" conf.angle (btod proportional));
2609 | _ -> ()
2612 let settrim trimmargins trimfuzz =
2613 if nogeomcmds state.geomcmds
2614 then state.anchor <- getanchor ();
2615 conf.trimmargins <- trimmargins;
2616 conf.trimfuzz <- trimfuzz;
2617 let x0, y0, x1, y1 = trimfuzz in
2618 invalidate "settrim"
2619 (fun () ->
2620 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2621 flushpages ();
2624 let setzoom zoom =
2625 match state.throttle with
2626 | None ->
2627 let zoom = max 0.01 zoom in
2628 if zoom <> conf.zoom
2629 then (
2630 state.prevzoom <- conf.zoom;
2631 conf.zoom <- zoom;
2632 reshape conf.winw conf.winh;
2633 state.text <- Printf.sprintf "zoom is now %-5.1f" (zoom *. 100.0);
2636 | Some (layout, y, started) ->
2637 let time =
2638 match conf.maxwait with
2639 | None -> 0.0
2640 | Some t -> t
2642 let dt = now () -. started in
2643 if dt > time
2644 then (
2645 state.y <- y;
2646 load layout;
2650 let setcolumns mode columns coverA coverB =
2651 state.prevcolumns <- Some (conf.columns, conf.zoom);
2652 if columns < 0
2653 then (
2654 if isbirdseye mode
2655 then showtext '!' "split mode doesn't work in bird's eye"
2656 else (
2657 conf.columns <- Csplit (-columns, [||]);
2658 state.x <- 0;
2659 conf.zoom <- 1.0;
2662 else (
2663 if columns < 2
2664 then (
2665 conf.columns <- Csingle [||];
2666 state.x <- 0;
2667 setzoom 1.0;
2669 else (
2670 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
2671 conf.zoom <- 1.0;
2674 reshape conf.winw conf.winh;
2677 let enterbirdseye () =
2678 let zoom = float conf.thumbw /. float conf.winw in
2679 let birdseyepageno =
2680 let cy = conf.winh / 2 in
2681 let fold = function
2682 | [] -> 0
2683 | l :: rest ->
2684 let rec fold best = function
2685 | [] -> best.pageno
2686 | l :: rest ->
2687 let d = cy - (l.pagedispy + l.pagevh/2)
2688 and dbest = cy - (best.pagedispy + best.pagevh/2) in
2689 if abs d < abs dbest
2690 then fold l rest
2691 else best.pageno
2692 in fold l rest
2694 fold state.layout
2696 state.mode <- Birdseye (
2697 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2699 conf.zoom <- zoom;
2700 conf.presentation <- false;
2701 conf.interpagespace <- 10;
2702 conf.hlinks <- false;
2703 state.x <- 0;
2704 state.mstate <- Mnone;
2705 conf.maxwait <- None;
2706 conf.columns <- (
2707 match conf.beyecolumns with
2708 | Some c ->
2709 conf.zoom <- 1.0;
2710 Cmulti ((c, 0, 0), [||])
2711 | None -> Csingle [||]
2713 Wsi.setcursor Wsi.CURSOR_INHERIT;
2714 if conf.verbose
2715 then
2716 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
2717 (100.0*.zoom)
2718 else
2719 state.text <- ""
2721 reshape conf.winw conf.winh;
2724 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
2725 state.mode <- View;
2726 conf.zoom <- c.zoom;
2727 conf.presentation <- c.presentation;
2728 conf.interpagespace <- c.interpagespace;
2729 conf.maxwait <- c.maxwait;
2730 conf.hlinks <- c.hlinks;
2731 conf.beyecolumns <- (
2732 match conf.columns with
2733 | Cmulti ((c, _, _), _) -> Some c
2734 | Csingle _ -> None
2735 | Csplit _ -> failwith "leaving bird's eye split mode"
2737 conf.columns <- (
2738 match c.columns with
2739 | Cmulti (c, _) -> Cmulti (c, [||])
2740 | Csingle _ -> Csingle [||]
2741 | Csplit (c, _) -> Csplit (c, [||])
2743 state.x <- leftx;
2744 if conf.verbose
2745 then
2746 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
2747 (100.0*.conf.zoom)
2749 reshape conf.winw conf.winh;
2750 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
2753 let togglebirdseye () =
2754 match state.mode with
2755 | Birdseye vals -> leavebirdseye vals true
2756 | View -> enterbirdseye ()
2757 | _ -> ()
2760 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2761 let pageno = max 0 (pageno - incr) in
2762 let rec loop = function
2763 | [] -> gotopage1 pageno 0
2764 | l :: _ when l.pageno = pageno ->
2765 if l.pagedispy >= 0 && l.pagey = 0
2766 then G.postRedisplay "upbirdseye"
2767 else gotopage1 pageno 0
2768 | _ :: rest -> loop rest
2770 loop state.layout;
2771 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
2774 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
2775 let pageno = min (state.pagecount - 1) (pageno + incr) in
2776 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
2777 let rec loop = function
2778 | [] ->
2779 let y, h = getpageyh pageno in
2780 let dy = (y - state.y) - (conf.winh - h - conf.interpagespace) in
2781 gotoy (clamp dy)
2782 | l :: _ when l.pageno = pageno ->
2783 if l.pagevh != l.pageh
2784 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
2785 else G.postRedisplay "downbirdseye"
2786 | _ :: rest -> loop rest
2788 loop state.layout
2791 let optentry mode _ key =
2792 let btos b = if b then "on" else "off" in
2793 if key >= 32 && key < 127
2794 then
2795 let c = Char.chr key in
2796 match c with
2797 | 's' ->
2798 let ondone s =
2799 try conf.scrollstep <- int_of_string s with exc ->
2800 state.text <- Printf.sprintf "bad integer `%s': %s"
2801 s (Printexc.to_string exc)
2803 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
2805 | 'A' ->
2806 let ondone s =
2808 conf.autoscrollstep <- int_of_string s;
2809 if state.autoscroll <> None
2810 then state.autoscroll <- Some conf.autoscrollstep
2811 with exc ->
2812 state.text <- Printf.sprintf "bad integer `%s': %s"
2813 s (Printexc.to_string exc)
2815 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
2817 | 'C' ->
2818 let ondone s =
2820 let n, a, b = multicolumns_of_string s in
2821 setcolumns mode n a b;
2822 with exc ->
2823 state.text <- Printf.sprintf "bad columns `%s': %s"
2824 s (Printexc.to_string exc)
2826 TEswitch ("columns: ", "", None, textentry, ondone, true)
2828 | 'Z' ->
2829 let ondone s =
2831 let zoom = float (int_of_string s) /. 100.0 in
2832 setzoom zoom
2833 with exc ->
2834 state.text <- Printf.sprintf "bad integer `%s': %s"
2835 s (Printexc.to_string exc)
2837 TEswitch ("zoom: ", "", None, intentry, ondone, true)
2839 | 't' ->
2840 let ondone s =
2842 conf.thumbw <- bound (int_of_string s) 2 4096;
2843 state.text <-
2844 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
2845 begin match mode with
2846 | Birdseye beye ->
2847 leavebirdseye beye false;
2848 enterbirdseye ();
2849 | _ -> ();
2851 with exc ->
2852 state.text <- Printf.sprintf "bad integer `%s': %s"
2853 s (Printexc.to_string exc)
2855 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
2857 | 'R' ->
2858 let ondone s =
2859 match try
2860 Some (int_of_string s)
2861 with exc ->
2862 state.text <- Printf.sprintf "bad integer `%s': %s"
2863 s (Printexc.to_string exc);
2864 None
2865 with
2866 | Some angle -> reqlayout angle conf.proportional
2867 | None -> ()
2869 TEswitch ("rotation: ", "", None, intentry, ondone, true)
2871 | 'i' ->
2872 conf.icase <- not conf.icase;
2873 TEdone ("case insensitive search " ^ (btos conf.icase))
2875 | 'p' ->
2876 conf.preload <- not conf.preload;
2877 gotoy state.y;
2878 TEdone ("preload " ^ (btos conf.preload))
2880 | 'v' ->
2881 conf.verbose <- not conf.verbose;
2882 TEdone ("verbose " ^ (btos conf.verbose))
2884 | 'd' ->
2885 conf.debug <- not conf.debug;
2886 TEdone ("debug " ^ (btos conf.debug))
2888 | 'h' ->
2889 conf.maxhfit <- not conf.maxhfit;
2890 state.maxy <- calcheight ();
2891 TEdone ("maxhfit " ^ (btos conf.maxhfit))
2893 | 'c' ->
2894 conf.crophack <- not conf.crophack;
2895 TEdone ("crophack " ^ btos conf.crophack)
2897 | 'a' ->
2898 let s =
2899 match conf.maxwait with
2900 | None ->
2901 conf.maxwait <- Some infinity;
2902 "always wait for page to complete"
2903 | Some _ ->
2904 conf.maxwait <- None;
2905 "show placeholder if page is not ready"
2907 TEdone s
2909 | 'f' ->
2910 conf.underinfo <- not conf.underinfo;
2911 TEdone ("underinfo " ^ btos conf.underinfo)
2913 | 'P' ->
2914 conf.savebmarks <- not conf.savebmarks;
2915 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
2917 | 'S' ->
2918 let ondone s =
2920 let pageno, py =
2921 match state.layout with
2922 | [] -> 0, 0
2923 | l :: _ ->
2924 l.pageno, l.pagey
2926 conf.interpagespace <- int_of_string s;
2927 docolumns conf.columns;
2928 state.maxy <- calcheight ();
2929 let y = getpagey pageno in
2930 gotoy (y + py)
2931 with exc ->
2932 state.text <- Printf.sprintf "bad integer `%s': %s"
2933 s (Printexc.to_string exc)
2935 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
2937 | 'l' ->
2938 reqlayout conf.angle (not conf.proportional);
2939 TEdone ("proportional display " ^ btos conf.proportional)
2941 | 'T' ->
2942 settrim (not conf.trimmargins) conf.trimfuzz;
2943 TEdone ("trim margins " ^ btos conf.trimmargins)
2945 | 'I' ->
2946 conf.invert <- not conf.invert;
2947 TEdone ("invert colors " ^ btos conf.invert)
2949 | 'x' ->
2950 let ondone s =
2951 cbput state.hists.sel s;
2952 conf.selcmd <- s;
2954 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
2955 textentry, ondone, true)
2957 | _ ->
2958 state.text <- Printf.sprintf "bad option %d `%c'" key c;
2959 TEstop
2960 else
2961 TEcont state.text
2964 class type lvsource = object
2965 method getitemcount : int
2966 method getitem : int -> (string * int)
2967 method hasaction : int -> bool
2968 method exit :
2969 uioh:uioh ->
2970 cancel:bool ->
2971 active:int ->
2972 first:int ->
2973 pan:int ->
2974 qsearch:string ->
2975 uioh option
2976 method getactive : int
2977 method getfirst : int
2978 method getqsearch : string
2979 method setqsearch : string -> unit
2980 method getpan : int
2981 end;;
2983 class virtual lvsourcebase = object
2984 val mutable m_active = 0
2985 val mutable m_first = 0
2986 val mutable m_qsearch = ""
2987 val mutable m_pan = 0
2988 method getactive = m_active
2989 method getfirst = m_first
2990 method getqsearch = m_qsearch
2991 method getpan = m_pan
2992 method setqsearch s = m_qsearch <- s
2993 end;;
2995 let withoutlastutf8 s =
2996 let len = String.length s in
2997 if len = 0
2998 then s
2999 else
3000 let rec find pos =
3001 if pos = 0
3002 then pos
3003 else
3004 let b = Char.code s.[pos] in
3005 if b land 0b11000000 = 0b11000000
3006 then pos
3007 else find (pos-1)
3009 let first =
3010 if Char.code s.[len-1] land 0x80 = 0
3011 then len-1
3012 else find (len-1)
3014 String.sub s 0 first;
3017 let textentrykeyboard
3018 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3019 let enttext te =
3020 state.mode <- Textentry (te, onleave);
3021 state.text <- "";
3022 enttext ();
3023 G.postRedisplay "textentrykeyboard enttext";
3025 let histaction cmd =
3026 match opthist with
3027 | None -> ()
3028 | Some (action, _) ->
3029 state.mode <- Textentry (
3030 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3032 G.postRedisplay "textentry histaction"
3034 match key with
3035 | 0xff08 -> (* backspace *)
3036 let s = withoutlastutf8 text in
3037 let len = String.length s in
3038 if cancelonempty && len = 0
3039 then (
3040 onleave Cancel;
3041 G.postRedisplay "textentrykeyboard after cancel";
3043 else (
3044 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3047 | 0xff0d ->
3048 ondone text;
3049 onleave Confirm;
3050 G.postRedisplay "textentrykeyboard after confirm"
3052 | 0xff52 -> histaction HCprev
3053 | 0xff54 -> histaction HCnext
3054 | 0xff50 -> histaction HCfirst
3055 | 0xff57 -> histaction HClast
3057 | 0xff1b -> (* escape*)
3058 if String.length text = 0
3059 then (
3060 begin match opthist with
3061 | None -> ()
3062 | Some (_, onhistcancel) -> onhistcancel ()
3063 end;
3064 onleave Cancel;
3065 state.text <- "";
3066 G.postRedisplay "textentrykeyboard after cancel2"
3068 else (
3069 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3072 | 0xff9f | 0xffff -> () (* delete *)
3074 | _ when key != 0
3075 && key land 0xff00 != 0xff00 (* keyboard *)
3076 && key land 0xfe00 != 0xfe00 (* xkb *)
3077 && key land 0xfd00 != 0xfd00 (* 3270 *)
3079 begin match onkey text key with
3080 | TEdone text ->
3081 ondone text;
3082 onleave Confirm;
3083 G.postRedisplay "textentrykeyboard after confirm2";
3085 | TEcont text ->
3086 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3088 | TEstop ->
3089 onleave Cancel;
3090 G.postRedisplay "textentrykeyboard after cancel3"
3092 | TEswitch te ->
3093 state.mode <- Textentry (te, onleave);
3094 G.postRedisplay "textentrykeyboard switch";
3095 end;
3097 | _ ->
3098 vlog "unhandled key %s" (Wsi.keyname key)
3101 let firstof first active =
3102 if first > active || abs (first - active) > fstate.maxrows - 1
3103 then max 0 (active - (fstate.maxrows/2))
3104 else first
3107 let calcfirst first active =
3108 if active > first
3109 then
3110 let rows = active - first in
3111 if rows > fstate.maxrows then active - fstate.maxrows else first
3112 else active
3115 let scrollph y maxy =
3116 let sh = (float (maxy + conf.winh) /. float conf.winh) in
3117 let sh = float conf.winh /. sh in
3118 let sh = max sh (float conf.scrollh) in
3120 let percent =
3121 if y = state.maxy
3122 then 1.0
3123 else float y /. float maxy
3125 let position = (float conf.winh -. sh) *. percent in
3127 let position =
3128 if position +. sh > float conf.winh
3129 then float conf.winh -. sh
3130 else position
3132 position, sh;
3135 let coe s = (s :> uioh);;
3137 class listview ~(source:lvsource) ~trusted ~modehash =
3138 object (self)
3139 val m_pan = source#getpan
3140 val m_first = source#getfirst
3141 val m_active = source#getactive
3142 val m_qsearch = source#getqsearch
3143 val m_prev_uioh = state.uioh
3145 method private elemunder y =
3146 let n = y / (fstate.fontsize+1) in
3147 if m_first + n < source#getitemcount
3148 then (
3149 if source#hasaction (m_first + n)
3150 then Some (m_first + n)
3151 else None
3153 else None
3155 method display =
3156 Gl.enable `blend;
3157 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3158 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3159 GlDraw.rect (0., 0.) (float conf.winw, float conf.winh);
3160 GlDraw.color (1., 1., 1.);
3161 Gl.enable `texture_2d;
3162 let fs = fstate.fontsize in
3163 let nfs = fs + 1 in
3164 let ww = fstate.wwidth in
3165 let tabw = 30.0*.ww in
3166 let itemcount = source#getitemcount in
3167 let rec loop row =
3168 if (row - m_first) > fstate.maxrows
3169 then ()
3170 else (
3171 if row >= 0 && row < itemcount
3172 then (
3173 let (s, level) = source#getitem row in
3174 let y = (row - m_first) * nfs in
3175 let x = 5.0 +. float (level + m_pan) *. ww in
3176 if row = m_active
3177 then (
3178 Gl.disable `texture_2d;
3179 GlDraw.polygon_mode `both `line;
3180 GlDraw.color (1., 1., 1.) ~alpha:0.9;
3181 GlDraw.rect (1., float (y + 1))
3182 (float (conf.winw - conf.scrollbw - 1), float (y + fs + 3));
3183 GlDraw.polygon_mode `both `fill;
3184 GlDraw.color (1., 1., 1.);
3185 Gl.enable `texture_2d;
3188 let drawtabularstring s =
3189 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3190 if trusted
3191 then
3192 let tabpos = try String.index s '\t' with Not_found -> -1 in
3193 if tabpos > 0
3194 then
3195 let len = String.length s - tabpos - 1 in
3196 let s1 = String.sub s 0 tabpos
3197 and s2 = String.sub s (tabpos + 1) len in
3198 let nx = drawstr x s1 in
3199 let sw = nx -. x in
3200 let x = x +. (max tabw sw) in
3201 drawstr x s2
3202 else
3203 drawstr x s
3204 else
3205 drawstr x s
3207 let _ = drawtabularstring s in
3208 loop (row+1)
3212 loop m_first;
3213 Gl.disable `blend;
3214 Gl.disable `texture_2d;
3216 method updownlevel incr =
3217 let len = source#getitemcount in
3218 let curlevel =
3219 if m_active >= 0 && m_active < len
3220 then snd (source#getitem m_active)
3221 else -1
3223 let rec flow i =
3224 if i = len then i-1 else if i = -1 then 0 else
3225 let _, l = source#getitem i in
3226 if l != curlevel then i else flow (i+incr)
3228 let active = flow m_active in
3229 let first = calcfirst m_first active in
3230 G.postRedisplay "outline updownlevel";
3231 {< m_active = active; m_first = first >}
3233 method private key1 key mask =
3234 let set1 active first qsearch =
3235 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3237 let search active pattern incr =
3238 let dosearch re =
3239 let rec loop n =
3240 if n >= 0 && n < source#getitemcount
3241 then (
3242 let s, _ = source#getitem n in
3244 (try ignore (Str.search_forward re s 0); true
3245 with Not_found -> false)
3246 then Some n
3247 else loop (n + incr)
3249 else None
3251 loop active
3254 let re = Str.regexp_case_fold pattern in
3255 dosearch re
3256 with Failure s ->
3257 state.text <- s;
3258 None
3260 let itemcount = source#getitemcount in
3261 let find start incr =
3262 let rec find i =
3263 if i = -1 || i = itemcount
3264 then -1
3265 else (
3266 if source#hasaction i
3267 then i
3268 else find (i + incr)
3271 find start
3273 let set active first =
3274 let first = bound first 0 (itemcount - fstate.maxrows) in
3275 state.text <- "";
3276 coe {< m_active = active; m_first = first >}
3278 let navigate incr =
3279 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3280 let active, first =
3281 let incr1 = if incr > 0 then 1 else -1 in
3282 if isvisible m_first m_active
3283 then
3284 let next =
3285 let next = m_active + incr in
3286 let next =
3287 if next < 0 || next >= itemcount
3288 then -1
3289 else find next incr1
3291 if next = -1 || abs (m_active - next) > fstate.maxrows
3292 then -1
3293 else next
3295 if next = -1
3296 then
3297 let first = m_first + incr in
3298 let first = bound first 0 (itemcount - 1) in
3299 let next =
3300 let next = m_active + incr in
3301 let next = bound next 0 (itemcount - 1) in
3302 find next ~-incr1
3304 let active = if next = -1 then m_active else next in
3305 active, first
3306 else
3307 let first = min next m_first in
3308 let first =
3309 if abs (next - first) > fstate.maxrows
3310 then first + incr
3311 else first
3313 next, first
3314 else
3315 let first = m_first + incr in
3316 let first = bound first 0 (itemcount - 1) in
3317 let active =
3318 let next = m_active + incr in
3319 let next = bound next 0 (itemcount - 1) in
3320 let next = find next incr1 in
3321 let active =
3322 if next = -1 || abs (m_active - first) > fstate.maxrows
3323 then (
3324 let active = if m_active = -1 then next else m_active in
3325 active
3327 else next
3329 if isvisible first active
3330 then active
3331 else -1
3333 active, first
3335 G.postRedisplay "listview navigate";
3336 set active first;
3338 match key with
3339 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3340 let incr = if key = 0x72 then -1 else 1 in
3341 let active, first =
3342 match search (m_active + incr) m_qsearch incr with
3343 | None ->
3344 state.text <- m_qsearch ^ " [not found]";
3345 m_active, m_first
3346 | Some active ->
3347 state.text <- m_qsearch;
3348 active, firstof m_first active
3350 G.postRedisplay "listview ctrl-r/s";
3351 set1 active first m_qsearch;
3353 | 0xff08 -> (* backspace *)
3354 if String.length m_qsearch = 0
3355 then coe self
3356 else (
3357 let qsearch = withoutlastutf8 m_qsearch in
3358 let len = String.length qsearch in
3359 if len = 0
3360 then (
3361 state.text <- "";
3362 G.postRedisplay "listview empty qsearch";
3363 set1 m_active m_first "";
3365 else
3366 let active, first =
3367 match search m_active qsearch ~-1 with
3368 | None ->
3369 state.text <- qsearch ^ " [not found]";
3370 m_active, m_first
3371 | Some active ->
3372 state.text <- qsearch;
3373 active, firstof m_first active
3375 G.postRedisplay "listview backspace qsearch";
3376 set1 active first qsearch
3379 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3380 let pattern = m_qsearch ^ Wsi.toutf8 key in
3381 let active, first =
3382 match search m_active pattern 1 with
3383 | None ->
3384 state.text <- pattern ^ " [not found]";
3385 m_active, m_first
3386 | Some active ->
3387 state.text <- pattern;
3388 active, firstof m_first active
3390 G.postRedisplay "listview qsearch add";
3391 set1 active first pattern;
3393 | 0xff1b -> (* escape *)
3394 state.text <- "";
3395 if String.length m_qsearch = 0
3396 then (
3397 G.postRedisplay "list view escape";
3398 begin
3399 match
3400 source#exit (coe self) true m_active m_first m_pan m_qsearch
3401 with
3402 | None -> m_prev_uioh
3403 | Some uioh -> uioh
3406 else (
3407 G.postRedisplay "list view kill qsearch";
3408 source#setqsearch "";
3409 coe {< m_qsearch = "" >}
3412 | 0xff0d -> (* return *)
3413 state.text <- "";
3414 let self = {< m_qsearch = "" >} in
3415 source#setqsearch "";
3416 let opt =
3417 G.postRedisplay "listview enter";
3418 if m_active >= 0 && m_active < source#getitemcount
3419 then (
3420 source#exit (coe self) false m_active m_first m_pan "";
3422 else (
3423 source#exit (coe self) true m_active m_first m_pan "";
3426 begin match opt with
3427 | None -> m_prev_uioh
3428 | Some uioh -> uioh
3431 | 0xff9f | 0xffff -> (* delete *)
3432 coe self
3434 | 0xff52 -> navigate ~-1 (* up *)
3435 | 0xff54 -> navigate 1 (* down *)
3436 | 0xff55 -> navigate ~-(fstate.maxrows) (* prior *)
3437 | 0xff56 -> navigate fstate.maxrows (* next *)
3439 | 0xff53 -> (* right *)
3440 state.text <- "";
3441 G.postRedisplay "listview right";
3442 coe {< m_pan = m_pan - 1 >}
3444 | 0xff51 -> (* left *)
3445 state.text <- "";
3446 G.postRedisplay "listview left";
3447 coe {< m_pan = m_pan + 1 >}
3449 | 0xff50 -> (* home *)
3450 let active = find 0 1 in
3451 G.postRedisplay "listview home";
3452 set active 0;
3454 | 0xff57 -> (* end *)
3455 let first = max 0 (itemcount - fstate.maxrows) in
3456 let active = find (itemcount - 1) ~-1 in
3457 G.postRedisplay "listview end";
3458 set active first;
3460 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3461 coe self
3463 | _ ->
3464 dolog "listview unknown key %#x" key; coe self
3466 method key key mask =
3467 match state.mode with
3468 | Textentry te -> textentrykeyboard key mask te; coe self
3469 | _ -> self#key1 key mask
3471 method button button down x y _ =
3472 let opt =
3473 match button with
3474 | 1 when x > conf.winw - conf.scrollbw ->
3475 G.postRedisplay "listview scroll";
3476 if down
3477 then
3478 let _, position, sh = self#scrollph in
3479 if y > truncate position && y < truncate (position +. sh)
3480 then (
3481 state.mstate <- Mscrolly;
3482 Some (coe self)
3484 else
3485 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3486 let first = truncate (s *. float source#getitemcount) in
3487 let first = min source#getitemcount first in
3488 Some (coe {< m_first = first; m_active = first >})
3489 else (
3490 state.mstate <- Mnone;
3491 Some (coe self);
3493 | 1 when not down ->
3494 begin match self#elemunder y with
3495 | Some n ->
3496 G.postRedisplay "listview click";
3497 source#exit
3498 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3499 | _ ->
3500 Some (coe self)
3502 | n when (n == 4 || n == 5) && not down ->
3503 let len = source#getitemcount in
3504 let first =
3505 if n = 5 && m_first + fstate.maxrows >= len
3506 then
3507 m_first
3508 else
3509 let first = m_first + (if n == 4 then -1 else 1) in
3510 bound first 0 (len - 1)
3512 G.postRedisplay "listview wheel";
3513 Some (coe {< m_first = first >})
3514 | n when (n = 6 || n = 7) && not down ->
3515 let inc = m_first + (if n = 7 then -1 else 1) in
3516 G.postRedisplay "listview hwheel";
3517 Some (coe {< m_pan = m_pan + inc >})
3518 | _ ->
3519 Some (coe self)
3521 match opt with
3522 | None -> m_prev_uioh
3523 | Some uioh -> uioh
3525 method motion _ y =
3526 match state.mstate with
3527 | Mscrolly ->
3528 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3529 let first = truncate (s *. float source#getitemcount) in
3530 let first = min source#getitemcount first in
3531 G.postRedisplay "listview motion";
3532 coe {< m_first = first; m_active = first >}
3533 | _ -> coe self
3535 method pmotion x y =
3536 if x < conf.winw - conf.scrollbw
3537 then
3538 let n =
3539 match self#elemunder y with
3540 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3541 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3543 let o =
3544 if n != m_active
3545 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3546 else self
3548 coe o
3549 else (
3550 Wsi.setcursor Wsi.CURSOR_INHERIT;
3551 coe self
3554 method infochanged _ = ()
3556 method scrollpw = (0, 0.0, 0.0)
3557 method scrollph =
3558 let nfs = fstate.fontsize + 1 in
3559 let y = m_first * nfs in
3560 let itemcount = source#getitemcount in
3561 let maxi = max 0 (itemcount - fstate.maxrows) in
3562 let maxy = maxi * nfs in
3563 let p, h = scrollph y maxy in
3564 conf.scrollbw, p, h
3566 method modehash = modehash
3567 end;;
3569 class outlinelistview ~source =
3570 object (self)
3571 inherit listview
3572 ~source:(source :> lvsource)
3573 ~trusted:false
3574 ~modehash:(findkeyhash conf "outline")
3575 as super
3577 method key key mask =
3578 let calcfirst first active =
3579 if active > first
3580 then
3581 let rows = active - first in
3582 let maxrows =
3583 if String.length state.text = 0
3584 then fstate.maxrows
3585 else fstate.maxrows - 2
3587 if rows > maxrows then active - maxrows else first
3588 else active
3590 let navigate incr =
3591 let active = m_active + incr in
3592 let active = bound active 0 (source#getitemcount - 1) in
3593 let first = calcfirst m_first active in
3594 G.postRedisplay "outline navigate";
3595 coe {< m_active = active; m_first = first >}
3597 let ctrl = Wsi.withctrl mask in
3598 match key with
3599 | 110 when ctrl -> (* ctrl-n *)
3600 source#narrow m_qsearch;
3601 G.postRedisplay "outline ctrl-n";
3602 coe {< m_first = 0; m_active = 0 >}
3604 | 117 when ctrl -> (* ctrl-u *)
3605 source#denarrow;
3606 G.postRedisplay "outline ctrl-u";
3607 state.text <- "";
3608 coe {< m_first = 0; m_active = 0 >}
3610 | 108 when ctrl -> (* ctrl-l *)
3611 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3612 G.postRedisplay "outline ctrl-l";
3613 coe {< m_first = first >}
3615 | 0xff9f | 0xffff -> (* delete *)
3616 source#remove m_active;
3617 G.postRedisplay "outline delete";
3618 let active = max 0 (m_active-1) in
3619 coe {< m_first = firstof m_first active;
3620 m_active = active >}
3622 | 0xff52 -> navigate ~-1 (* up *)
3623 | 0xff54 -> navigate 1 (* down *)
3624 | 0xff55 -> (* prior *)
3625 navigate ~-(fstate.maxrows)
3626 | 0xff56 -> (* next *)
3627 navigate fstate.maxrows
3629 | 0xff53 -> (* [ctrl-]right *)
3630 let o =
3631 if ctrl
3632 then (
3633 G.postRedisplay "outline ctrl right";
3634 {< m_pan = m_pan + 1 >}
3636 else self#updownlevel 1
3638 coe o
3640 | 0xff51 -> (* [ctrl-]left *)
3641 let o =
3642 if ctrl
3643 then (
3644 G.postRedisplay "outline ctrl left";
3645 {< m_pan = m_pan - 1 >}
3647 else self#updownlevel ~-1
3649 coe o
3651 | 0xff50 -> (* home *)
3652 G.postRedisplay "outline home";
3653 coe {< m_first = 0; m_active = 0 >}
3655 | 0xff57 -> (* end *)
3656 let active = source#getitemcount - 1 in
3657 let first = max 0 (active - fstate.maxrows) in
3658 G.postRedisplay "outline end";
3659 coe {< m_active = active; m_first = first >}
3661 | _ -> super#key key mask
3664 let outlinesource usebookmarks =
3665 let empty = [||] in
3666 (object
3667 inherit lvsourcebase
3668 val mutable m_items = empty
3669 val mutable m_orig_items = empty
3670 val mutable m_prev_items = empty
3671 val mutable m_narrow_pattern = ""
3672 val mutable m_hadremovals = false
3674 method getitemcount =
3675 Array.length m_items + (if m_hadremovals then 1 else 0)
3677 method getitem n =
3678 if n == Array.length m_items && m_hadremovals
3679 then
3680 ("[Confirm removal]", 0)
3681 else
3682 let s, n, _ = m_items.(n) in
3683 (s, n)
3685 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3686 ignore (uioh, first, qsearch);
3687 let confrimremoval = m_hadremovals && active = Array.length m_items in
3688 let items =
3689 if String.length m_narrow_pattern = 0
3690 then m_orig_items
3691 else m_items
3693 if not cancel
3694 then (
3695 if not confrimremoval
3696 then(
3697 let _, _, anchor = m_items.(active) in
3698 gotoghyll (getanchory anchor);
3699 m_items <- items;
3701 else (
3702 state.bookmarks <- Array.to_list m_items;
3703 m_orig_items <- m_items;
3706 else m_items <- items;
3707 m_pan <- pan;
3708 None
3710 method hasaction _ = true
3712 method greetmsg =
3713 if Array.length m_items != Array.length m_orig_items
3714 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3715 else ""
3717 method narrow pattern =
3718 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3719 match reopt with
3720 | None -> ()
3721 | Some re ->
3722 let rec loop accu n =
3723 if n = -1
3724 then (
3725 m_narrow_pattern <- pattern;
3726 m_items <- Array.of_list accu
3728 else
3729 let (s, _, _) as o = m_items.(n) in
3730 let accu =
3731 if (try ignore (Str.search_forward re s 0); true
3732 with Not_found -> false)
3733 then o :: accu
3734 else accu
3736 loop accu (n-1)
3738 loop [] (Array.length m_items - 1)
3740 method denarrow =
3741 m_orig_items <- (
3742 if usebookmarks
3743 then Array.of_list state.bookmarks
3744 else state.outlines
3746 m_items <- m_orig_items
3748 method remove m =
3749 if usebookmarks
3750 then
3751 if m >= 0 && m < Array.length m_items
3752 then (
3753 m_hadremovals <- true;
3754 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3755 let n = if n >= m then n+1 else n in
3756 m_items.(n)
3760 method reset anchor items =
3761 m_hadremovals <- false;
3762 if m_orig_items == empty || m_prev_items != items
3763 then (
3764 m_orig_items <- items;
3765 if String.length m_narrow_pattern = 0
3766 then m_items <- items;
3768 m_prev_items <- items;
3769 let rely = getanchory anchor in
3770 let active =
3771 let rec loop n best bestd =
3772 if n = Array.length m_items
3773 then best
3774 else
3775 let (_, _, anchor) = m_items.(n) in
3776 let orely = getanchory anchor in
3777 let d = abs (orely - rely) in
3778 if d < bestd
3779 then loop (n+1) n d
3780 else loop (n+1) best bestd
3782 loop 0 ~-1 max_int
3784 m_active <- active;
3785 m_first <- firstof m_first active
3786 end)
3789 let enterselector usebookmarks =
3790 let source = outlinesource usebookmarks in
3791 fun errmsg ->
3792 let outlines =
3793 if usebookmarks
3794 then Array.of_list state.bookmarks
3795 else state.outlines
3797 if Array.length outlines = 0
3798 then (
3799 showtext ' ' errmsg;
3801 else (
3802 state.text <- source#greetmsg;
3803 Wsi.setcursor Wsi.CURSOR_INHERIT;
3804 let anchor = getanchor () in
3805 source#reset anchor outlines;
3806 state.uioh <- coe (new outlinelistview ~source);
3807 G.postRedisplay "enter selector";
3811 let enteroutlinemode =
3812 let f = enterselector false in
3813 fun ()-> f "Document has no outline";
3816 let enterbookmarkmode =
3817 let f = enterselector true in
3818 fun () -> f "Document has no bookmarks (yet)";
3821 let color_of_string s =
3822 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3823 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3827 let color_to_string (r, g, b) =
3828 let r = truncate (r *. 256.0)
3829 and g = truncate (g *. 256.0)
3830 and b = truncate (b *. 256.0) in
3831 Printf.sprintf "%d/%d/%d" r g b
3834 let irect_of_string s =
3835 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3838 let irect_to_string (x0,y0,x1,y1) =
3839 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3842 let makecheckers () =
3843 (* Appropriated from lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3844 following to say:
3845 converted by Issac Trotts. July 25, 2002 *)
3846 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3847 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3848 let id = GlTex.gen_texture () in
3849 GlTex.bind_texture `texture_2d id;
3850 GlPix.store (`unpack_alignment 1);
3851 GlTex.image2d image;
3852 List.iter (GlTex.parameter ~target:`texture_2d)
3853 [ `wrap_s `repeat;
3854 `wrap_t `repeat;
3855 `mag_filter `nearest;
3856 `min_filter `nearest ];
3860 let setcheckers enabled =
3861 match state.texid with
3862 | None ->
3863 if enabled then state.texid <- Some (makecheckers ())
3865 | Some texid ->
3866 if not enabled
3867 then (
3868 GlTex.delete_texture texid;
3869 state.texid <- None;
3873 let int_of_string_with_suffix s =
3874 let l = String.length s in
3875 let s1, shift =
3876 if l > 1
3877 then
3878 let suffix = Char.lowercase s.[l-1] in
3879 match suffix with
3880 | 'k' -> String.sub s 0 (l-1), 10
3881 | 'm' -> String.sub s 0 (l-1), 20
3882 | 'g' -> String.sub s 0 (l-1), 30
3883 | _ -> s, 0
3884 else s, 0
3886 let n = int_of_string s1 in
3887 let m = n lsl shift in
3888 if m < 0 || m < n
3889 then raise (Failure "value too large")
3890 else m
3893 let string_with_suffix_of_int n =
3894 if n = 0
3895 then "0"
3896 else
3897 let n, s =
3898 if n land ((1 lsl 30) - 1) = 0
3899 then n lsr 30, "G"
3900 else (
3901 if n land ((1 lsl 20) - 1) = 0
3902 then n lsr 20, "M"
3903 else (
3904 if n land ((1 lsl 10) - 1) = 0
3905 then n lsr 10, "K"
3906 else n, ""
3910 let rec loop s n =
3911 let h = n mod 1000 in
3912 let n = n / 1000 in
3913 if n = 0
3914 then string_of_int h ^ s
3915 else (
3916 let s = Printf.sprintf "_%03d%s" h s in
3917 loop s n
3920 loop "" n ^ s;
3923 let defghyllscroll = (40, 8, 32);;
3924 let ghyllscroll_of_string s =
3925 let (n, a, b) as nab =
3926 if s = "default"
3927 then defghyllscroll
3928 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
3930 if n <= a || n <= b || a >= b
3931 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3932 nab;
3935 let ghyllscroll_to_string ((n, a, b) as nab) =
3936 if nab = defghyllscroll
3937 then "default"
3938 else Printf.sprintf "%d,%d,%d" n a b;
3941 let describe_location () =
3942 let f (fn, _) l =
3943 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
3945 let fn, ln = List.fold_left f (-1, -1) state.layout in
3946 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
3947 let percent =
3948 if maxy <= 0
3949 then 100.
3950 else (100. *. (float state.y /. float maxy))
3952 if fn = ln
3953 then
3954 Printf.sprintf "page %d of %d [%.2f%%]"
3955 (fn+1) state.pagecount percent
3956 else
3957 Printf.sprintf
3958 "pages %d-%d of %d [%.2f%%]"
3959 (fn+1) (ln+1) state.pagecount percent
3962 let setpresentationmode v =
3963 let (n, _, _) = getanchor () in
3964 let _, h = getpageyh n in
3965 let ips = if conf.presentation then calcips h else conf.interpagespace in
3966 state.anchor <- (n, 0.0, float ips);
3967 conf.presentation <- v;
3968 if conf.presentation
3969 then (
3970 if not conf.scrollbarinpm
3971 then state.scrollw <- 0;
3973 else state.scrollw <- conf.scrollbw;
3974 represent ();
3977 let enterinfomode =
3978 let btos b = if b then "\xe2\x88\x9a" else "" in
3979 let showextended = ref false in
3980 let leave mode = function
3981 | Confirm -> state.mode <- mode
3982 | Cancel -> state.mode <- mode in
3983 let src =
3984 (object
3985 val mutable m_first_time = true
3986 val mutable m_l = []
3987 val mutable m_a = [||]
3988 val mutable m_prev_uioh = nouioh
3989 val mutable m_prev_mode = View
3991 inherit lvsourcebase
3993 method reset prev_mode prev_uioh =
3994 m_a <- Array.of_list (List.rev m_l);
3995 m_l <- [];
3996 m_prev_mode <- prev_mode;
3997 m_prev_uioh <- prev_uioh;
3998 if m_first_time
3999 then (
4000 let rec loop n =
4001 if n >= Array.length m_a
4002 then ()
4003 else
4004 match m_a.(n) with
4005 | _, _, _, Action _ -> m_active <- n
4006 | _ -> loop (n+1)
4008 loop 0;
4009 m_first_time <- false;
4012 method int name get set =
4013 m_l <-
4014 (name, `int get, 1, Action (
4015 fun u ->
4016 let ondone s =
4017 try set (int_of_string s)
4018 with exn ->
4019 state.text <- Printf.sprintf "bad integer `%s': %s"
4020 s (Printexc.to_string exn)
4022 state.text <- "";
4023 let te = name ^ ": ", "", None, intentry, ondone, true in
4024 state.mode <- Textentry (te, leave m_prev_mode);
4026 )) :: m_l
4028 method int_with_suffix name get set =
4029 m_l <-
4030 (name, `intws get, 1, Action (
4031 fun u ->
4032 let ondone s =
4033 try set (int_of_string_with_suffix s)
4034 with exn ->
4035 state.text <- Printf.sprintf "bad integer `%s': %s"
4036 s (Printexc.to_string exn)
4038 state.text <- "";
4039 let te =
4040 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4042 state.mode <- Textentry (te, leave m_prev_mode);
4044 )) :: m_l
4046 method bool ?(offset=1) ?(btos=btos) name get set =
4047 m_l <-
4048 (name, `bool (btos, get), offset, Action (
4049 fun u ->
4050 let v = get () in
4051 set (not v);
4053 )) :: m_l
4055 method color name get set =
4056 m_l <-
4057 (name, `color get, 1, Action (
4058 fun u ->
4059 let invalid = (nan, nan, nan) in
4060 let ondone s =
4061 let c =
4062 try color_of_string s
4063 with exn ->
4064 state.text <- Printf.sprintf "bad color `%s': %s"
4065 s (Printexc.to_string exn);
4066 invalid
4068 if c <> invalid
4069 then set c;
4071 let te = name ^ ": ", "", None, textentry, ondone, true in
4072 state.text <- color_to_string (get ());
4073 state.mode <- Textentry (te, leave m_prev_mode);
4075 )) :: m_l
4077 method string name get set =
4078 m_l <-
4079 (name, `string get, 1, Action (
4080 fun u ->
4081 let ondone s = set s in
4082 let te = name ^ ": ", "", None, textentry, ondone, true in
4083 state.mode <- Textentry (te, leave m_prev_mode);
4085 )) :: m_l
4087 method colorspace name get set =
4088 m_l <-
4089 (name, `string get, 1, Action (
4090 fun _ ->
4091 let source =
4092 let vals = [| "rgb"; "bgr"; "gray" |] in
4093 (object
4094 inherit lvsourcebase
4096 initializer
4097 m_active <- int_of_colorspace conf.colorspace;
4098 m_first <- 0;
4100 method getitemcount = Array.length vals
4101 method getitem n = (vals.(n), 0)
4102 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4103 ignore (uioh, first, pan, qsearch);
4104 if not cancel then set active;
4105 None
4106 method hasaction _ = true
4107 end)
4109 state.text <- "";
4110 let modehash = findkeyhash conf "info" in
4111 coe (new listview ~source ~trusted:true ~modehash)
4112 )) :: m_l
4114 method caption s offset =
4115 m_l <- (s, `empty, offset, Noaction) :: m_l
4117 method caption2 s f offset =
4118 m_l <- (s, `string f, offset, Noaction) :: m_l
4120 method getitemcount = Array.length m_a
4122 method getitem n =
4123 let tostr = function
4124 | `int f -> string_of_int (f ())
4125 | `intws f -> string_with_suffix_of_int (f ())
4126 | `string f -> f ()
4127 | `color f -> color_to_string (f ())
4128 | `bool (btos, f) -> btos (f ())
4129 | `empty -> ""
4131 let name, t, offset, _ = m_a.(n) in
4132 ((let s = tostr t in
4133 if String.length s > 0
4134 then Printf.sprintf "%s\t%s" name s
4135 else name),
4136 offset)
4138 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4139 let uiohopt =
4140 if not cancel
4141 then (
4142 m_qsearch <- qsearch;
4143 let uioh =
4144 match m_a.(active) with
4145 | _, _, _, Action f -> f uioh
4146 | _ -> uioh
4148 Some uioh
4150 else None
4152 m_active <- active;
4153 m_first <- first;
4154 m_pan <- pan;
4155 uiohopt
4157 method hasaction n =
4158 match m_a.(n) with
4159 | _, _, _, Action _ -> true
4160 | _ -> false
4161 end)
4163 let rec fillsrc prevmode prevuioh =
4164 let sep () = src#caption "" 0 in
4165 let colorp name get set =
4166 src#string name
4167 (fun () -> color_to_string (get ()))
4168 (fun v ->
4170 let c = color_of_string v in
4171 set c
4172 with exn ->
4173 state.text <- Printf.sprintf "bad color `%s': %s"
4174 v (Printexc.to_string exn);
4177 let oldmode = state.mode in
4178 let birdseye = isbirdseye state.mode in
4180 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4182 src#bool "presentation mode"
4183 (fun () -> conf.presentation)
4184 (fun v -> setpresentationmode v);
4186 src#bool "ignore case in searches"
4187 (fun () -> conf.icase)
4188 (fun v -> conf.icase <- v);
4190 src#bool "preload"
4191 (fun () -> conf.preload)
4192 (fun v -> conf.preload <- v);
4194 src#bool "highlight links"
4195 (fun () -> conf.hlinks)
4196 (fun v -> conf.hlinks <- v);
4198 src#bool "under info"
4199 (fun () -> conf.underinfo)
4200 (fun v -> conf.underinfo <- v);
4202 src#bool "persistent bookmarks"
4203 (fun () -> conf.savebmarks)
4204 (fun v -> conf.savebmarks <- v);
4206 src#bool "proportional display"
4207 (fun () -> conf.proportional)
4208 (fun v -> reqlayout conf.angle v);
4210 src#bool "trim margins"
4211 (fun () -> conf.trimmargins)
4212 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4214 src#bool "persistent location"
4215 (fun () -> conf.jumpback)
4216 (fun v -> conf.jumpback <- v);
4218 sep ();
4219 src#int "inter-page space"
4220 (fun () -> conf.interpagespace)
4221 (fun n ->
4222 conf.interpagespace <- n;
4223 docolumns conf.columns;
4224 let pageno, py =
4225 match state.layout with
4226 | [] -> 0, 0
4227 | l :: _ ->
4228 l.pageno, l.pagey
4230 state.maxy <- calcheight ();
4231 let y = getpagey pageno in
4232 gotoy (y + py)
4235 src#int "page bias"
4236 (fun () -> conf.pagebias)
4237 (fun v -> conf.pagebias <- v);
4239 src#int "scroll step"
4240 (fun () -> conf.scrollstep)
4241 (fun n -> conf.scrollstep <- n);
4243 src#int "horizontal scroll step"
4244 (fun () -> conf.hscrollstep)
4245 (fun v -> conf.hscrollstep <- v);
4247 src#int "auto scroll step"
4248 (fun () ->
4249 match state.autoscroll with
4250 | Some step -> step
4251 | _ -> conf.autoscrollstep)
4252 (fun n ->
4253 if state.autoscroll <> None
4254 then state.autoscroll <- Some n;
4255 conf.autoscrollstep <- n);
4257 src#int "zoom"
4258 (fun () -> truncate (conf.zoom *. 100.))
4259 (fun v -> setzoom ((float v) /. 100.));
4261 src#int "rotation"
4262 (fun () -> conf.angle)
4263 (fun v -> reqlayout v conf.proportional);
4265 src#int "scroll bar width"
4266 (fun () -> state.scrollw)
4267 (fun v ->
4268 state.scrollw <- v;
4269 conf.scrollbw <- v;
4270 reshape conf.winw conf.winh;
4273 src#int "scroll handle height"
4274 (fun () -> conf.scrollh)
4275 (fun v -> conf.scrollh <- v;);
4277 src#int "thumbnail width"
4278 (fun () -> conf.thumbw)
4279 (fun v ->
4280 conf.thumbw <- min 4096 v;
4281 match oldmode with
4282 | Birdseye beye ->
4283 leavebirdseye beye false;
4284 enterbirdseye ()
4285 | _ -> ()
4288 let mode = state.mode in
4289 src#string "columns"
4290 (fun () ->
4291 match conf.columns with
4292 | Csingle _ -> "1"
4293 | Cmulti (multi, _) -> multicolumns_to_string multi
4294 | Csplit (count, _) -> "-" ^ string_of_int count
4296 (fun v ->
4297 let n, a, b = multicolumns_of_string v in
4298 setcolumns mode n a b);
4300 sep ();
4301 src#caption "Presentation mode" 0;
4302 src#bool "scrollbar visible"
4303 (fun () -> conf.scrollbarinpm)
4304 (fun v ->
4305 if v != conf.scrollbarinpm
4306 then (
4307 conf.scrollbarinpm <- v;
4308 if conf.presentation
4309 then (
4310 state.scrollw <- if v then conf.scrollbw else 0;
4311 reshape conf.winw conf.winh;
4316 sep ();
4317 src#caption "Pixmap cache" 0;
4318 src#int_with_suffix "size (advisory)"
4319 (fun () -> conf.memlimit)
4320 (fun v -> conf.memlimit <- v);
4322 src#caption2 "used"
4323 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4324 (string_with_suffix_of_int state.memused)
4325 (Hashtbl.length state.tilemap)) 1;
4327 sep ();
4328 src#caption "Layout" 0;
4329 src#caption2 "Dimension"
4330 (fun () ->
4331 Printf.sprintf "%dx%d (virtual %dx%d)"
4332 conf.winw conf.winh
4333 state.w state.maxy)
4335 if conf.debug
4336 then
4337 src#caption2 "Position" (fun () ->
4338 Printf.sprintf "%dx%d" state.x state.y
4340 else
4341 src#caption2 "Visible" (fun () -> describe_location ()) 1
4344 sep ();
4345 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4346 "Save these parameters as global defaults at exit"
4347 (fun () -> conf.bedefault)
4348 (fun v -> conf.bedefault <- v)
4351 sep ();
4352 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4353 src#bool ~offset:0 ~btos "Extended parameters"
4354 (fun () -> !showextended)
4355 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4356 if !showextended
4357 then (
4358 src#bool "checkers"
4359 (fun () -> conf.checkers)
4360 (fun v -> conf.checkers <- v; setcheckers v);
4361 src#bool "update cursor"
4362 (fun () -> conf.updatecurs)
4363 (fun v -> conf.updatecurs <- v);
4364 src#bool "verbose"
4365 (fun () -> conf.verbose)
4366 (fun v -> conf.verbose <- v);
4367 src#bool "invert colors"
4368 (fun () -> conf.invert)
4369 (fun v -> conf.invert <- v);
4370 src#bool "max fit"
4371 (fun () -> conf.maxhfit)
4372 (fun v -> conf.maxhfit <- v);
4373 src#bool "redirect stderr"
4374 (fun () -> conf.redirectstderr)
4375 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4376 src#string "uri launcher"
4377 (fun () -> conf.urilauncher)
4378 (fun v -> conf.urilauncher <- v);
4379 src#string "path launcher"
4380 (fun () -> conf.pathlauncher)
4381 (fun v -> conf.pathlauncher <- v);
4382 src#string "tile size"
4383 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4384 (fun v ->
4386 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4387 conf.tilew <- max 64 w;
4388 conf.tileh <- max 64 h;
4389 flushtiles ();
4390 with exn ->
4391 state.text <- Printf.sprintf "bad tile size `%s': %s"
4392 v (Printexc.to_string exn));
4393 src#int "texture count"
4394 (fun () -> conf.texcount)
4395 (fun v ->
4396 if realloctexts v
4397 then conf.texcount <- v
4398 else showtext '!' " Failed to set texture count please retry later"
4400 src#int "slice height"
4401 (fun () -> conf.sliceheight)
4402 (fun v ->
4403 conf.sliceheight <- v;
4404 wcmd "sliceh %d" conf.sliceheight;
4406 src#int "anti-aliasing level"
4407 (fun () -> conf.aalevel)
4408 (fun v ->
4409 conf.aalevel <- bound v 0 8;
4410 state.anchor <- getanchor ();
4411 opendoc state.path state.password;
4413 src#string "page scroll scaling factor"
4414 (fun () -> string_of_float conf.pgscale)
4415 (fun v ->
4417 let s = float_of_string v in
4418 conf.pgscale <- s
4419 with exn ->
4420 state.text <- Printf.sprintf
4421 "bad page scroll scaling factor `%s': %s"
4422 v (Printexc.to_string exn)
4425 src#int "ui font size"
4426 (fun () -> fstate.fontsize)
4427 (fun v -> setfontsize (bound v 5 100));
4428 src#int "hint font size"
4429 (fun () -> conf.hfsize)
4430 (fun v -> conf.hfsize <- bound v 5 100);
4431 colorp "background color"
4432 (fun () -> conf.bgcolor)
4433 (fun v -> conf.bgcolor <- v);
4434 src#bool "crop hack"
4435 (fun () -> conf.crophack)
4436 (fun v -> conf.crophack <- v);
4437 src#string "trim fuzz"
4438 (fun () -> irect_to_string conf.trimfuzz)
4439 (fun v ->
4441 conf.trimfuzz <- irect_of_string v;
4442 if conf.trimmargins
4443 then settrim true conf.trimfuzz;
4444 with exn ->
4445 state.text <- Printf.sprintf "bad irect `%s': %s"
4446 v (Printexc.to_string exn)
4448 src#string "throttle"
4449 (fun () ->
4450 match conf.maxwait with
4451 | None -> "show place holder if page is not ready"
4452 | Some time ->
4453 if time = infinity
4454 then "wait for page to fully render"
4455 else
4456 "wait " ^ string_of_float time
4457 ^ " seconds before showing placeholder"
4459 (fun v ->
4461 let f = float_of_string v in
4462 if f <= 0.0
4463 then conf.maxwait <- None
4464 else conf.maxwait <- Some f
4465 with exn ->
4466 state.text <- Printf.sprintf "bad time `%s': %s"
4467 v (Printexc.to_string exn)
4469 src#string "ghyll scroll"
4470 (fun () ->
4471 match conf.ghyllscroll with
4472 | None -> ""
4473 | Some nab -> ghyllscroll_to_string nab
4475 (fun v ->
4477 let gs =
4478 if String.length v = 0
4479 then None
4480 else Some (ghyllscroll_of_string v)
4482 conf.ghyllscroll <- gs
4483 with exn ->
4484 state.text <- Printf.sprintf "bad ghyll `%s': %s"
4485 v (Printexc.to_string exn)
4487 src#string "selection command"
4488 (fun () -> conf.selcmd)
4489 (fun v -> conf.selcmd <- v);
4490 src#colorspace "color space"
4491 (fun () -> colorspace_to_string conf.colorspace)
4492 (fun v ->
4493 conf.colorspace <- colorspace_of_int v;
4494 wcmd "cs %d" v;
4495 load state.layout;
4497 if pbousable ()
4498 then
4499 src#bool "use PBO"
4500 (fun () -> conf.usepbo)
4501 (fun v -> conf.usepbo <- v);
4504 sep ();
4505 src#caption "Document" 0;
4506 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4507 src#caption2 "Pages"
4508 (fun () -> string_of_int state.pagecount) 1;
4509 src#caption2 "Dimensions"
4510 (fun () -> string_of_int (List.length state.pdims)) 1;
4511 if conf.trimmargins
4512 then (
4513 sep ();
4514 src#caption "Trimmed margins" 0;
4515 src#caption2 "Dimensions"
4516 (fun () -> string_of_int (List.length state.pdims)) 1;
4519 sep ();
4520 src#caption "OpenGL" 0;
4521 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4522 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4523 src#reset prevmode prevuioh;
4525 fun () ->
4526 state.text <- "";
4527 let prevmode = state.mode
4528 and prevuioh = state.uioh in
4529 fillsrc prevmode prevuioh;
4530 let source = (src :> lvsource) in
4531 let modehash = findkeyhash conf "info" in
4532 state.uioh <- coe (object (self)
4533 inherit listview ~source ~trusted:true ~modehash as super
4534 val mutable m_prevmemused = 0
4535 method infochanged = function
4536 | Memused ->
4537 if m_prevmemused != state.memused
4538 then (
4539 m_prevmemused <- state.memused;
4540 G.postRedisplay "memusedchanged";
4542 | Pdim -> G.postRedisplay "pdimchanged"
4543 | Docinfo -> fillsrc prevmode prevuioh
4545 method key key mask =
4546 if not (Wsi.withctrl mask)
4547 then
4548 match key with
4549 | 0xff51 -> coe (self#updownlevel ~-1)
4550 | 0xff53 -> coe (self#updownlevel 1)
4551 | _ -> super#key key mask
4552 else super#key key mask
4553 end);
4554 G.postRedisplay "info";
4557 let enterhelpmode =
4558 let source =
4559 (object
4560 inherit lvsourcebase
4561 method getitemcount = Array.length state.help
4562 method getitem n =
4563 let s, l, _ = state.help.(n) in
4564 (s, l)
4566 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4567 let optuioh =
4568 if not cancel
4569 then (
4570 m_qsearch <- qsearch;
4571 match state.help.(active) with
4572 | _, _, Action f -> Some (f uioh)
4573 | _ -> Some (uioh)
4575 else None
4577 m_active <- active;
4578 m_first <- first;
4579 m_pan <- pan;
4580 optuioh
4582 method hasaction n =
4583 match state.help.(n) with
4584 | _, _, Action _ -> true
4585 | _ -> false
4587 initializer
4588 m_active <- -1
4589 end)
4590 in fun () ->
4591 let modehash = findkeyhash conf "help" in
4592 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4593 G.postRedisplay "help";
4596 let entermsgsmode =
4597 let msgsource =
4598 let re = Str.regexp "[\r\n]" in
4599 (object
4600 inherit lvsourcebase
4601 val mutable m_items = [||]
4603 method getitemcount = 1 + Array.length m_items
4605 method getitem n =
4606 if n = 0
4607 then "[Clear]", 0
4608 else m_items.(n-1), 0
4610 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4611 ignore uioh;
4612 if not cancel
4613 then (
4614 if active = 0
4615 then Buffer.clear state.errmsgs;
4616 m_qsearch <- qsearch;
4618 m_active <- active;
4619 m_first <- first;
4620 m_pan <- pan;
4621 None
4623 method hasaction n =
4624 n = 0
4626 method reset =
4627 state.newerrmsgs <- false;
4628 let l = Str.split re (Buffer.contents state.errmsgs) in
4629 m_items <- Array.of_list l
4631 initializer
4632 m_active <- 0
4633 end)
4634 in fun () ->
4635 state.text <- "";
4636 msgsource#reset;
4637 let source = (msgsource :> lvsource) in
4638 let modehash = findkeyhash conf "listview" in
4639 state.uioh <- coe (object
4640 inherit listview ~source ~trusted:false ~modehash as super
4641 method display =
4642 if state.newerrmsgs
4643 then msgsource#reset;
4644 super#display
4645 end);
4646 G.postRedisplay "msgs";
4649 let quickbookmark ?title () =
4650 match state.layout with
4651 | [] -> ()
4652 | l :: _ ->
4653 let title =
4654 match title with
4655 | None ->
4656 let sec = Unix.gettimeofday () in
4657 let tm = Unix.localtime sec in
4658 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4659 (l.pageno+1)
4660 tm.Unix.tm_mday
4661 tm.Unix.tm_mon
4662 (tm.Unix.tm_year + 1900)
4663 tm.Unix.tm_hour
4664 tm.Unix.tm_min
4665 | Some title -> title
4667 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4670 let doreshape w h =
4671 state.fullscreen <- None;
4672 Wsi.reshape w h;
4675 let setautoscrollspeed step goingdown =
4676 let incr = max 1 ((abs step) / 2) in
4677 let incr = if goingdown then incr else -incr in
4678 let astep = step + incr in
4679 state.autoscroll <- Some astep;
4682 let gotounder = function
4683 | Ulinkgoto (pageno, top) ->
4684 if pageno >= 0
4685 then (
4686 addnav ();
4687 gotopage1 pageno top;
4690 | Ulinkuri s ->
4691 gotouri s
4693 | Uremote (filename, pageno) ->
4694 let path =
4695 if Sys.file_exists filename
4696 then filename
4697 else
4698 let dir = Filename.dirname state.path in
4699 let path = Filename.concat dir filename in
4700 if Sys.file_exists path
4701 then path
4702 else ""
4704 if String.length path > 0
4705 then (
4706 let anchor = getanchor () in
4707 let ranchor = state.path, state.password, anchor in
4708 state.anchor <- (pageno, 0.0, 0.0);
4709 state.ranchors <- ranchor :: state.ranchors;
4710 opendoc path "";
4712 else showtext '!' ("Could not find " ^ filename)
4714 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4717 let canpan () =
4718 match conf.columns with
4719 | Csplit _ -> true
4720 | _ -> conf.zoom > 1.0
4723 let viewkeyboard key mask =
4724 let enttext te =
4725 let mode = state.mode in
4726 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4727 state.text <- "";
4728 enttext ();
4729 G.postRedisplay "view:enttext"
4731 let ctrl = Wsi.withctrl mask in
4732 let existsinrow pageno (columns, coverA, coverB) p =
4733 let last = ((pageno - coverA) mod columns) + columns in
4734 let rec any = function
4735 | [] -> false
4736 | l :: rest ->
4737 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4738 then p l
4739 else (
4740 if not (p l)
4741 then (if l.pageno = last then false else any rest)
4742 else true
4745 any state.layout
4747 match key with
4748 | 81 -> (* Q *)
4749 exit 0
4751 | 0xff63 -> (* insert *)
4752 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4753 then (
4754 state.mode <- LinkNav (Ltgendir 0);
4755 gotoy state.y;
4757 else showtext '!' "Keyboard link navigation does not work under rotation"
4759 | 0xff1b | 113 -> (* escape / q *)
4760 begin match state.mstate with
4761 | Mzoomrect _ ->
4762 state.mstate <- Mnone;
4763 Wsi.setcursor Wsi.CURSOR_INHERIT;
4764 G.postRedisplay "kill zoom rect";
4765 | _ ->
4766 begin match state.mode with
4767 | LinkNav _ ->
4768 state.mode <- View;
4769 G.postRedisplay "esc leave linknav"
4770 | _ ->
4771 match state.ranchors with
4772 | [] -> raise Quit
4773 | (path, password, anchor) :: rest ->
4774 state.ranchors <- rest;
4775 state.anchor <- anchor;
4776 opendoc path password
4777 end;
4778 end;
4780 | 0xff08 -> (* backspace *)
4781 gotoghyll (getnav ~-1)
4783 | 111 -> (* o *)
4784 enteroutlinemode ()
4786 | 117 -> (* u *)
4787 state.rects <- [];
4788 state.text <- "";
4789 G.postRedisplay "dehighlight";
4791 | 47 | 63 -> (* / ? *)
4792 let ondone isforw s =
4793 cbput state.hists.pat s;
4794 state.searchpattern <- s;
4795 search s isforw
4797 let s = String.create 1 in
4798 s.[0] <- Char.chr key;
4799 enttext (s, "", Some (onhist state.hists.pat),
4800 textentry, ondone (key = 47), true)
4802 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4803 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4804 setzoom (conf.zoom +. incr)
4806 | 43 | 0xffab -> (* + *)
4807 let ondone s =
4808 let n =
4809 try int_of_string s with exc ->
4810 state.text <- Printf.sprintf "bad integer `%s': %s"
4811 s (Printexc.to_string exc);
4812 max_int
4814 if n != max_int
4815 then (
4816 conf.pagebias <- n;
4817 state.text <- "page bias is now " ^ string_of_int n;
4820 enttext ("page bias: ", "", None, intentry, ondone, true)
4822 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4823 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4824 setzoom (max 0.01 (conf.zoom -. decr))
4826 | 45 | 0xffad -> (* - *)
4827 let ondone msg = state.text <- msg in
4828 enttext (
4829 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4830 optentry state.mode, ondone, true
4833 | 48 when ctrl -> (* ctrl-0 *)
4834 setzoom 1.0
4836 | 49 when ctrl -> (* ctrl-1 *)
4837 let cols =
4838 match conf.columns with
4839 | Csingle _ | Cmulti _ -> 1
4840 | Csplit (n, _) -> n
4842 let zoom = zoomforh conf.winw conf.winh state.scrollw cols in
4843 if zoom < 1.0
4844 then setzoom zoom
4846 | 0xffc6 -> (* f9 *)
4847 togglebirdseye ()
4849 | 57 when ctrl -> (* ctrl-9 *)
4850 togglebirdseye ()
4852 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4853 when not ctrl -> (* 0..9 *)
4854 let ondone s =
4855 let n =
4856 try int_of_string s with exc ->
4857 state.text <- Printf.sprintf "bad integer `%s': %s"
4858 s (Printexc.to_string exc);
4861 if n >= 0
4862 then (
4863 addnav ();
4864 cbput state.hists.pag (string_of_int n);
4865 gotopage1 (n + conf.pagebias - 1) 0;
4868 let pageentry text key =
4869 match Char.unsafe_chr key with
4870 | 'g' -> TEdone text
4871 | _ -> intentry text key
4873 let text = "x" in text.[0] <- Char.chr key;
4874 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4876 | 98 -> (* b *)
4877 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
4878 reshape conf.winw conf.winh;
4880 | 108 -> (* l *)
4881 conf.hlinks <- not conf.hlinks;
4882 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4883 G.postRedisplay "toggle highlightlinks";
4885 | 70 -> (* F *)
4886 state.glinks <- true;
4887 let mode = state.mode in
4888 state.mode <- Textentry (
4889 (":", "", None, linknentry, linkndone gotounder, false),
4890 (fun _ ->
4891 state.glinks <- false;
4892 state.mode <- mode)
4894 state.text <- "";
4895 G.postRedisplay "view:linkent(F)"
4897 | 121 -> (* y *)
4898 state.glinks <- true;
4899 let mode = state.mode in
4900 state.mode <- Textentry (
4901 (":", "", None, linknentry, linkndone (fun under ->
4902 match Ne.pipe () with
4903 | Ne.Exn exn ->
4904 showtext '!' (Printf.sprintf "pipe failed: %s"
4905 (Printexc.to_string exn));
4906 | Ne.Res (r, w) ->
4907 let popened =
4908 try popen conf.selcmd [r, 0; w, -1]; true
4909 with exn ->
4910 showtext '!'
4911 (Printf.sprintf "failed to execute %s: %s"
4912 conf.selcmd (Printexc.to_string exn));
4913 false
4915 let clo cap fd =
4916 Ne.clo fd (fun msg ->
4917 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
4920 let s = undertext under in
4921 if popened
4922 then
4923 (try
4924 let l = String.length s in
4925 let n = Unix.write w s 0 l in
4926 if n != l
4927 then
4928 showtext '!'
4929 (Printf.sprintf
4930 "failed to write %d characters to sel pipe, wrote %d"
4933 with exn ->
4934 showtext '!'
4935 (Printf.sprintf "failed to write to sel pipe: %s"
4936 (Printexc.to_string exn)
4939 else dolog "%s" s;
4940 clo "pipe/r" r;
4941 clo "pipe/w" w;
4942 ), false
4944 fun _ ->
4945 state.glinks <- false;
4946 state.mode <- mode
4948 state.text <- "";
4949 G.postRedisplay "view:linkent"
4951 | 97 -> (* a *)
4952 begin match state.autoscroll with
4953 | Some step ->
4954 conf.autoscrollstep <- step;
4955 state.autoscroll <- None
4956 | None ->
4957 if conf.autoscrollstep = 0
4958 then state.autoscroll <- Some 1
4959 else state.autoscroll <- Some conf.autoscrollstep
4962 | 112 when ctrl -> (* ctrl-p *)
4963 launchpath ()
4965 | 80 -> (* P *)
4966 setpresentationmode (not conf.presentation);
4967 showtext ' ' ("presentation mode " ^
4968 if conf.presentation then "on" else "off");
4970 | 102 -> (* f *)
4971 begin match state.fullscreen with
4972 | None ->
4973 state.fullscreen <- Some (conf.winw, conf.winh);
4974 Wsi.fullscreen ()
4975 | Some (w, h) ->
4976 state.fullscreen <- None;
4977 doreshape w h
4980 | 112 | 78 -> (* p|N *)
4981 search state.searchpattern false
4983 | 110 | 0xffc0 -> (* n|F3 *)
4984 search state.searchpattern true
4986 | 116 -> (* t *)
4987 begin match state.layout with
4988 | [] -> ()
4989 | l :: _ ->
4990 gotoy_and_clear_text (getpagey l.pageno)
4993 | 32 -> (* space *)
4994 begin match state.layout with
4995 | [] -> ()
4996 | l :: rest ->
4997 match conf.columns with
4998 | Csingle _ ->
4999 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
5000 then
5001 let y = clamp (pgscale conf.winh) in
5002 gotoghyll y
5003 else
5004 let pageno = min (l.pageno+1) (state.pagecount-1) in
5005 gotoghyll (getpagey pageno)
5006 | Cmulti ((c, _, _) as cl, _) ->
5007 if conf.presentation
5008 && (existsinrow l.pageno cl
5009 (fun l -> l.pageh > l.pagey + l.pagevh))
5010 then
5011 let y = clamp (pgscale conf.winh) in
5012 gotoghyll y
5013 else
5014 let pageno = min (l.pageno+c) (state.pagecount-1) in
5015 gotoghyll (getpagey pageno)
5016 | Csplit (n, _) ->
5017 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
5018 then
5019 let pagey, pageh = getpageyh l.pageno in
5020 let pagey = pagey + pageh * l.pagecol in
5021 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
5022 gotoghyll (pagey + pageh + ips)
5025 | 0xff9f | 0xffff -> (* delete *)
5026 begin match state.layout with
5027 | [] -> ()
5028 | l :: _ ->
5029 match conf.columns with
5030 | Csingle _ ->
5031 if conf.presentation && l.pagey != 0
5032 then
5033 gotoghyll (clamp (pgscale ~-(conf.winh)))
5034 else
5035 let pageno = max 0 (l.pageno-1) in
5036 gotoghyll (getpagey pageno)
5037 | Cmulti ((c, _, coverB) as cl, _) ->
5038 if conf.presentation &&
5039 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
5040 then
5041 gotoghyll (clamp (pgscale ~-(conf.winh)))
5042 else
5043 let decr =
5044 if l.pageno = state.pagecount - coverB
5045 then 1
5046 else c
5048 let pageno = max 0 (l.pageno-decr) in
5049 gotoghyll (getpagey pageno)
5050 | Csplit (n, _) ->
5051 let y =
5052 if l.pagecol = 0
5053 then
5054 if l.pageno = 0
5055 then l.pagey
5056 else
5057 let pageno = max 0 (l.pageno-1) in
5058 let pagey, pageh = getpageyh pageno in
5059 pagey + (n-1)*pageh
5060 else
5061 let pagey, pageh = getpageyh l.pageno in
5062 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5064 gotoghyll y
5067 | 61 -> (* = *)
5068 showtext ' ' (describe_location ());
5070 | 119 -> (* w *)
5071 begin match state.layout with
5072 | [] -> ()
5073 | l :: _ ->
5074 doreshape (l.pagew + state.scrollw) l.pageh;
5075 G.postRedisplay "w"
5078 | 39 -> (* ' *)
5079 enterbookmarkmode ()
5081 | 104 | 0xffbe -> (* h|F1 *)
5082 enterhelpmode ()
5084 | 105 -> (* i *)
5085 enterinfomode ()
5087 | 101 when conf.redirectstderr -> (* e *)
5088 entermsgsmode ()
5090 | 109 -> (* m *)
5091 let ondone s =
5092 match state.layout with
5093 | l :: _ -> state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5094 | _ -> ()
5096 enttext ("bookmark: ", "", None, textentry, ondone, true)
5098 | 126 -> (* ~ *)
5099 quickbookmark ();
5100 showtext ' ' "Quick bookmark added";
5102 | 122 -> (* z *)
5103 begin match state.layout with
5104 | l :: _ ->
5105 let rect = getpdimrect l.pagedimno in
5106 let w, h =
5107 if conf.crophack
5108 then
5109 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5110 truncate (1.2 *. (rect.(3) -. rect.(0))))
5111 else
5112 (truncate (rect.(1) -. rect.(0)),
5113 truncate (rect.(3) -. rect.(0)))
5115 let w = truncate ((float w)*.conf.zoom)
5116 and h = truncate ((float h)*.conf.zoom) in
5117 if w != 0 && h != 0
5118 then (
5119 state.anchor <- getanchor ();
5120 doreshape (w + state.scrollw) (h + conf.interpagespace)
5122 G.postRedisplay "z";
5124 | [] -> ()
5127 | 50 when ctrl -> (* ctrl-2 *)
5128 let maxw = getmaxw () in
5129 if maxw > 0.0
5130 then setzoom (maxw /. float conf.winw)
5132 | 60 | 62 -> (* < > *)
5133 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5135 | 91 | 93 -> (* [ ] *)
5136 conf.colorscale <-
5137 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5139 G.postRedisplay "brightness";
5141 | 99 when state.mode = View -> (* c *)
5142 let (c, a, b), z =
5143 match state.prevcolumns with
5144 | None -> (1, 0, 0), 1.0
5145 | Some (columns, z) ->
5146 let cab =
5147 match columns with
5148 | Csplit (c, _) -> -c, 0, 0
5149 | Cmulti ((c, a, b), _) -> c, a, b
5150 | Csingle _ -> 1, 0, 0
5152 cab, z
5154 setcolumns View c a b;
5155 setzoom z;
5157 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5158 setzoom state.prevzoom
5160 | 107 | 0xff52 -> (* k up *)
5161 begin match state.autoscroll with
5162 | None ->
5163 begin match state.mode with
5164 | Birdseye beye -> upbirdseye 1 beye
5165 | _ ->
5166 if ctrl
5167 then gotoy_and_clear_text (clamp ~-(conf.winh/2))
5168 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5170 | Some n ->
5171 setautoscrollspeed n false
5174 | 106 | 0xff54 -> (* j down *)
5175 begin match state.autoscroll with
5176 | None ->
5177 begin match state.mode with
5178 | Birdseye beye -> downbirdseye 1 beye
5179 | _ ->
5180 if ctrl
5181 then gotoy_and_clear_text (clamp (conf.winh/2))
5182 else gotoy_and_clear_text (clamp conf.scrollstep)
5184 | Some n ->
5185 setautoscrollspeed n true
5188 | 0xff51 | 0xff53 when not (Wsi.withalt mask) -> (* left / right *)
5189 if canpan ()
5190 then
5191 let dx =
5192 if ctrl
5193 then conf.winw / 2
5194 else conf.hscrollstep
5196 let dx = if key = 0xff51 then dx else -dx in
5197 state.x <- state.x + dx;
5198 gotoy_and_clear_text state.y
5199 else (
5200 state.text <- "";
5201 G.postRedisplay "lef/right"
5204 | 0xff55 -> (* prior *)
5205 let y =
5206 if ctrl
5207 then
5208 match state.layout with
5209 | [] -> state.y
5210 | l :: _ -> state.y - l.pagey
5211 else
5212 clamp (pgscale (-conf.winh))
5214 gotoghyll y
5216 | 0xff56 -> (* next *)
5217 let y =
5218 if ctrl
5219 then
5220 match List.rev state.layout with
5221 | [] -> state.y
5222 | l :: _ -> getpagey l.pageno
5223 else
5224 clamp (pgscale conf.winh)
5226 gotoghyll y
5228 | 103 | 0xff50 -> (* g home *)
5229 gotoghyll 0
5230 | 71 | 0xff57 -> (* G end *)
5231 gotoghyll (clamp state.maxy)
5233 | 0xff53 when Wsi.withalt mask -> (* alt-right *)
5234 gotoghyll (getnav 1)
5235 | 0xff51 when Wsi.withalt mask -> (* alt-left *)
5236 gotoghyll (getnav ~-1)
5238 | 114 -> (* r *)
5239 reload ()
5241 | 118 when conf.debug -> (* v *)
5242 state.rects <- [];
5243 List.iter (fun l ->
5244 match getopaque l.pageno with
5245 | None -> ()
5246 | Some opaque ->
5247 let x0, y0, x1, y1 = pagebbox opaque in
5248 let a,b = float x0, float y0 in
5249 let c,d = float x1, float y0 in
5250 let e,f = float x1, float y1 in
5251 let h,j = float x0, float y1 in
5252 let rect = (a,b,c,d,e,f,h,j) in
5253 debugrect rect;
5254 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5255 ) state.layout;
5256 G.postRedisplay "v";
5258 | _ ->
5259 vlog "huh? %s" (Wsi.keyname key)
5262 let linknavkeyboard key mask linknav =
5263 let getpage pageno =
5264 let rec loop = function
5265 | [] -> None
5266 | l :: _ when l.pageno = pageno -> Some l
5267 | _ :: rest -> loop rest
5268 in loop state.layout
5270 let doexact (pageno, n) =
5271 match getopaque pageno, getpage pageno with
5272 | Some opaque, Some l ->
5273 if key = 0xff0d
5274 then
5275 let under = getlink opaque n in
5276 G.postRedisplay "link gotounder";
5277 gotounder under;
5278 state.mode <- View;
5279 else
5280 let opt, dir =
5281 match key with
5282 | 0xff50 -> (* home *)
5283 Some (findlink opaque LDfirst), -1
5285 | 0xff57 -> (* end *)
5286 Some (findlink opaque LDlast), 1
5288 | 0xff51 -> (* left *)
5289 Some (findlink opaque (LDleft n)), -1
5291 | 0xff53 -> (* right *)
5292 Some (findlink opaque (LDright n)), 1
5294 | 0xff52 -> (* up *)
5295 Some (findlink opaque (LDup n)), -1
5297 | 0xff54 -> (* down *)
5298 Some (findlink opaque (LDdown n)), 1
5300 | _ -> None, 0
5302 let pwl l dir =
5303 begin match findpwl l.pageno dir with
5304 | Pwlnotfound -> ()
5305 | Pwl pageno ->
5306 let notfound dir =
5307 state.mode <- LinkNav (Ltgendir dir);
5308 let y, h = getpageyh pageno in
5309 let y =
5310 if dir < 0
5311 then y + h - conf.winh
5312 else y
5314 gotoy y
5316 begin match getopaque pageno, getpage pageno with
5317 | Some opaque, Some _ ->
5318 let link =
5319 let ld = if dir > 0 then LDfirst else LDlast in
5320 findlink opaque ld
5322 begin match link with
5323 | Lfound m ->
5324 showlinktype (getlink opaque m);
5325 state.mode <- LinkNav (Ltexact (pageno, m));
5326 G.postRedisplay "linknav jpage";
5327 | _ -> notfound dir
5328 end;
5329 | _ -> notfound dir
5330 end;
5331 end;
5333 begin match opt with
5334 | Some Lnotfound -> pwl l dir;
5335 | Some (Lfound m) ->
5336 if m = n
5337 then pwl l dir
5338 else (
5339 let _, y0, _, y1 = getlinkrect opaque m in
5340 if y0 < l.pagey
5341 then gotopage1 l.pageno y0
5342 else (
5343 let d = fstate.fontsize + 1 in
5344 if y1 - l.pagey > l.pagevh - d
5345 then gotopage1 l.pageno (y1 - conf.winh - state.hscrollh + d)
5346 else G.postRedisplay "linknav";
5348 showlinktype (getlink opaque m);
5349 state.mode <- LinkNav (Ltexact (l.pageno, m));
5352 | None -> viewkeyboard key mask
5353 end;
5354 | _ -> viewkeyboard key mask
5356 if key = 0xff63
5357 then (
5358 state.mode <- View;
5359 G.postRedisplay "leave linknav"
5361 else
5362 match linknav with
5363 | Ltgendir _ -> viewkeyboard key mask
5364 | Ltexact exact -> doexact exact
5367 let keyboard key mask =
5368 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5369 then wcmd "interrupt"
5370 else state.uioh <- state.uioh#key key mask
5373 let birdseyekeyboard key mask
5374 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5375 let incr =
5376 match conf.columns with
5377 | Csingle _ -> 1
5378 | Cmulti ((c, _, _), _) -> c
5379 | Csplit _ -> failwith "bird's eye split mode"
5381 let pgh layout = List.fold_left (fun m l -> max l.pageh m) conf.winh layout in
5382 match key with
5383 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5384 let y, h = getpageyh pageno in
5385 let top = (conf.winh - h) / 2 in
5386 gotoy (max 0 (y - top))
5387 | 0xff0d -> leavebirdseye beye false
5388 | 0xff1b -> leavebirdseye beye true (* escape *)
5389 | 0xff52 -> upbirdseye incr beye (* up *)
5390 | 0xff54 -> downbirdseye incr beye (* down *)
5391 | 0xff51 -> upbirdseye 1 beye (* left *)
5392 | 0xff53 -> downbirdseye 1 beye (* right *)
5394 | 0xff55 -> (* prior *)
5395 begin match state.layout with
5396 | l :: _ ->
5397 if l.pagey != 0
5398 then (
5399 state.mode <- Birdseye (
5400 oconf, leftx, l.pageno, hooverpageno, anchor
5402 gotopage1 l.pageno 0;
5404 else (
5405 let layout = layout (state.y-conf.winh) (pgh state.layout) in
5406 match layout with
5407 | [] -> gotoy (clamp (-conf.winh))
5408 | l :: _ ->
5409 state.mode <- Birdseye (
5410 oconf, leftx, l.pageno, hooverpageno, anchor
5412 gotopage1 l.pageno 0
5415 | [] -> gotoy (clamp (-conf.winh))
5416 end;
5418 | 0xff56 -> (* next *)
5419 begin match List.rev state.layout with
5420 | l :: _ ->
5421 let layout = layout (state.y + (pgh state.layout)) conf.winh in
5422 begin match layout with
5423 | [] ->
5424 let incr = l.pageh - l.pagevh in
5425 if incr = 0
5426 then (
5427 state.mode <-
5428 Birdseye (
5429 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5431 G.postRedisplay "birdseye pagedown";
5433 else gotoy (clamp (incr + conf.interpagespace*2));
5435 | l :: _ ->
5436 state.mode <-
5437 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5438 gotopage1 l.pageno 0;
5441 | [] -> gotoy (clamp conf.winh)
5442 end;
5444 | 0xff50 -> (* home *)
5445 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5446 gotopage1 0 0
5448 | 0xff57 -> (* end *)
5449 let pageno = state.pagecount - 1 in
5450 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5451 if not (pagevisible state.layout pageno)
5452 then
5453 let h =
5454 match List.rev state.pdims with
5455 | [] -> conf.winh
5456 | (_, _, h, _) :: _ -> h
5458 gotoy (max 0 (getpagey pageno - (conf.winh - h - conf.interpagespace)))
5459 else G.postRedisplay "birdseye end";
5460 | _ -> viewkeyboard key mask
5463 let drawpage l linkindexbase =
5464 let color =
5465 match state.mode with
5466 | Textentry _ -> scalecolor 0.4
5467 | LinkNav _
5468 | View -> scalecolor 1.0
5469 | Birdseye (_, _, pageno, hooverpageno, _) ->
5470 if l.pageno = hooverpageno
5471 then scalecolor 0.9
5472 else (
5473 if l.pageno = pageno
5474 then scalecolor 1.0
5475 else scalecolor 0.8
5478 drawtiles l color;
5479 begin match getopaque l.pageno with
5480 | Some opaque ->
5481 if tileready l l.pagex l.pagey
5482 then
5483 let x = l.pagedispx - l.pagex
5484 and y = l.pagedispy - l.pagey in
5485 let hlmask =
5486 match conf.columns with
5487 | Csingle _ | Cmulti _ ->
5488 (if conf.hlinks then 1 else 0)
5489 + (if state.glinks
5490 && not (isbirdseye state.mode) then 2 else 0)
5491 | _ -> 0
5493 let s =
5494 match state.mode with
5495 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5496 | _ -> ""
5498 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5499 else 0
5501 | _ -> 0
5502 end;
5505 let scrollindicator () =
5506 let sbw, ph, sh = state.uioh#scrollph in
5507 let sbh, pw, sw = state.uioh#scrollpw in
5509 GlDraw.color (0.64, 0.64, 0.64);
5510 GlDraw.rect
5511 (float (conf.winw - sbw), 0.)
5512 (float conf.winw, float conf.winh)
5514 GlDraw.rect
5515 (0., float (conf.winh - sbh))
5516 (float (conf.winw - state.scrollw - 1), float conf.winh)
5518 GlDraw.color (0.0, 0.0, 0.0);
5520 GlDraw.rect
5521 (float (conf.winw - sbw), ph)
5522 (float conf.winw, ph +. sh)
5524 GlDraw.rect
5525 (pw, float (conf.winh - sbh))
5526 (pw +. sw, float conf.winh)
5530 let showsel () =
5531 match state.mstate with
5532 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5535 | Msel ((x0, y0), (x1, y1)) ->
5536 let rec loop = function
5537 | l :: ls ->
5538 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5539 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5540 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5541 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5542 then
5543 match getopaque l.pageno with
5544 | Some opaque ->
5545 let x0, y0 = pagetranslatepoint l x0 y0 in
5546 let x1, y1 = pagetranslatepoint l x1 y1 in
5547 seltext opaque (x0, y0, x1, y1);
5548 | _ -> ()
5549 else loop ls
5550 | [] -> ()
5552 loop state.layout
5555 let showrects rects =
5556 Gl.enable `blend;
5557 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5558 GlDraw.polygon_mode `both `fill;
5559 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5560 List.iter
5561 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5562 List.iter (fun l ->
5563 if l.pageno = pageno
5564 then (
5565 let dx = float (l.pagedispx - l.pagex) in
5566 let dy = float (l.pagedispy - l.pagey) in
5567 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5568 GlDraw.begins `quads;
5570 GlDraw.vertex2 (x0+.dx, y0+.dy);
5571 GlDraw.vertex2 (x1+.dx, y1+.dy);
5572 GlDraw.vertex2 (x2+.dx, y2+.dy);
5573 GlDraw.vertex2 (x3+.dx, y3+.dy);
5575 GlDraw.ends ();
5577 ) state.layout
5578 ) rects
5580 Gl.disable `blend;
5583 let display () =
5584 GlClear.color (scalecolor2 conf.bgcolor);
5585 GlClear.clear [`color];
5586 let rec loop linkindexbase = function
5587 | l :: rest ->
5588 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5589 loop linkindexbase rest
5590 | [] -> ()
5592 loop 0 state.layout;
5593 let rects =
5594 match state.mode with
5595 | LinkNav (Ltexact (pageno, linkno)) ->
5596 begin match getopaque pageno with
5597 | Some opaque ->
5598 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5599 (pageno, 5, (
5600 float x0, float y0,
5601 float x1, float y0,
5602 float x1, float y1,
5603 float x0, float y1)
5604 ) :: state.rects
5605 | None -> state.rects
5607 | _ -> state.rects
5609 showrects rects;
5610 showsel ();
5611 state.uioh#display;
5612 begin match state.mstate with
5613 | Mzoomrect ((x0, y0), (x1, y1)) ->
5614 Gl.enable `blend;
5615 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5616 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5617 GlDraw.rect (float x0, float y0)
5618 (float x1, float y1);
5619 Gl.disable `blend;
5620 | _ -> ()
5621 end;
5622 enttext ();
5623 scrollindicator ();
5624 Wsi.swapb ();
5627 let zoomrect x y x1 y1 =
5628 let x0 = min x x1
5629 and x1 = max x x1
5630 and y0 = min y y1 in
5631 gotoy (state.y + y0);
5632 state.anchor <- getanchor ();
5633 let zoom = (float conf.winw *. conf.zoom) /. float (x1 - x0) in
5634 let margin =
5635 if state.w < conf.winw - state.scrollw
5636 then (conf.winw - state.scrollw - state.w) / 2
5637 else 0
5639 state.x <- (state.x + margin) - x0;
5640 setzoom zoom;
5641 Wsi.setcursor Wsi.CURSOR_INHERIT;
5642 state.mstate <- Mnone;
5645 let scrollx x =
5646 let winw = conf.winw - state.scrollw - 1 in
5647 let s = float x /. float winw in
5648 let destx = truncate (float (state.w + winw) *. s) in
5649 state.x <- winw - destx;
5650 gotoy_and_clear_text state.y;
5651 state.mstate <- Mscrollx;
5654 let scrolly y =
5655 let s = float y /. float conf.winh in
5656 let desty = truncate (float (state.maxy - conf.winh) *. s) in
5657 gotoy_and_clear_text desty;
5658 state.mstate <- Mscrolly;
5661 let viewmouse button down x y mask =
5662 match button with
5663 | n when (n == 4 || n == 5) && not down ->
5664 if Wsi.withctrl mask
5665 then (
5666 match state.mstate with
5667 | Mzoom (oldn, i) ->
5668 if oldn = n
5669 then (
5670 if i = 2
5671 then
5672 let incr =
5673 match n with
5674 | 5 ->
5675 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5676 | _ ->
5677 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5679 let zoom = conf.zoom -. incr in
5680 setzoom zoom;
5681 state.mstate <- Mzoom (n, 0);
5682 else
5683 state.mstate <- Mzoom (n, i+1);
5685 else state.mstate <- Mzoom (n, 0)
5687 | _ -> state.mstate <- Mzoom (n, 0)
5689 else (
5690 match state.autoscroll with
5691 | Some step -> setautoscrollspeed step (n=4)
5692 | None ->
5693 let incr =
5694 if n = 4
5695 then -conf.scrollstep
5696 else conf.scrollstep
5698 let incr = incr * 2 in
5699 let y = clamp incr in
5700 gotoy_and_clear_text y
5703 | n when (n = 6 || n = 7) && not down && canpan () ->
5704 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5705 gotoy_and_clear_text state.y
5707 | 1 when Wsi.withctrl mask ->
5708 if down
5709 then (
5710 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5711 state.mstate <- Mpan (x, y)
5713 else
5714 state.mstate <- Mnone
5716 | 3 ->
5717 if down
5718 then (
5719 Wsi.setcursor Wsi.CURSOR_CYCLE;
5720 let p = (x, y) in
5721 state.mstate <- Mzoomrect (p, p)
5723 else (
5724 match state.mstate with
5725 | Mzoomrect ((x0, y0), _) ->
5726 if abs (x-x0) > 10 && abs (y - y0) > 10
5727 then zoomrect x0 y0 x y
5728 else (
5729 state.mstate <- Mnone;
5730 Wsi.setcursor Wsi.CURSOR_INHERIT;
5731 G.postRedisplay "kill accidental zoom rect";
5733 | _ ->
5734 Wsi.setcursor Wsi.CURSOR_INHERIT;
5735 state.mstate <- Mnone
5738 | 1 when x > conf.winw - state.scrollw ->
5739 if down
5740 then
5741 let _, position, sh = state.uioh#scrollph in
5742 if y > truncate position && y < truncate (position +. sh)
5743 then state.mstate <- Mscrolly
5744 else scrolly y
5745 else
5746 state.mstate <- Mnone
5748 | 1 when y > conf.winh - state.hscrollh ->
5749 if down
5750 then
5751 let _, position, sw = state.uioh#scrollpw in
5752 if x > truncate position && x < truncate (position +. sw)
5753 then state.mstate <- Mscrollx
5754 else scrollx x
5755 else
5756 state.mstate <- Mnone
5758 | 1 ->
5759 let dest = if down then getunder x y else Unone in
5760 begin match dest with
5761 | Ulinkgoto _
5762 | Ulinkuri _
5763 | Uremote _
5764 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5765 gotounder dest
5767 | Unone when down ->
5768 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5769 state.mstate <- Mpan (x, y);
5771 | Unone | Utext _ ->
5772 if down
5773 then (
5774 if conf.angle mod 360 = 0
5775 then (
5776 state.mstate <- Msel ((x, y), (x, y));
5777 G.postRedisplay "mouse select";
5780 else (
5781 match state.mstate with
5782 | Mnone -> ()
5784 | Mzoom _ | Mscrollx | Mscrolly ->
5785 state.mstate <- Mnone
5787 | Mzoomrect ((x0, y0), _) ->
5788 zoomrect x0 y0 x y
5790 | Mpan _ ->
5791 Wsi.setcursor Wsi.CURSOR_INHERIT;
5792 state.mstate <- Mnone
5794 | Msel ((x0, y0), (x1, y1)) ->
5795 let rec loop = function
5796 | [] -> ()
5797 | l :: rest ->
5798 let inside =
5799 let a0 = l.pagedispy in
5800 let a1 = a0 + l.pagevh in
5801 let b0 = l.pagedispx in
5802 let b1 = b0 + l.pagevw in
5803 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5804 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5806 if inside
5807 then
5808 match getopaque l.pageno with
5809 | Some opaque ->
5810 begin
5811 match Ne.pipe () with
5812 | Ne.Exn exn ->
5813 showtext '!'
5814 (Printf.sprintf
5815 "can not create sel pipe: %s"
5816 (Printexc.to_string exn));
5817 | Ne.Res (r, w) ->
5818 let doclose what fd =
5819 Ne.clo fd (fun msg ->
5820 dolog "%s close failed: %s" what msg)
5823 popen conf.selcmd [r, 0; w, -1];
5824 copysel w opaque;
5825 doclose "pipe/r" r;
5826 G.postRedisplay "copysel";
5827 with exn ->
5828 dolog "can not execute %S: %s"
5829 conf.selcmd (Printexc.to_string exn);
5830 doclose "pipe/r" r;
5831 doclose "pipe/w" w;
5833 | None -> ()
5834 else loop rest
5836 loop state.layout;
5837 Wsi.setcursor Wsi.CURSOR_INHERIT;
5838 state.mstate <- Mnone;
5842 | _ -> ()
5845 let birdseyemouse button down x y mask
5846 (conf, leftx, _, hooverpageno, anchor) =
5847 match button with
5848 | 1 when down ->
5849 let rec loop = function
5850 | [] -> ()
5851 | l :: rest ->
5852 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5853 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5854 then (
5855 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5857 else loop rest
5859 loop state.layout
5860 | 3 -> ()
5861 | _ -> viewmouse button down x y mask
5864 let mouse button down x y mask =
5865 state.uioh <- state.uioh#button button down x y mask;
5868 let motion ~x ~y =
5869 state.uioh <- state.uioh#motion x y
5872 let pmotion ~x ~y =
5873 state.uioh <- state.uioh#pmotion x y;
5876 let uioh = object
5877 method display = ()
5879 method key key mask =
5880 begin match state.mode with
5881 | Textentry textentry -> textentrykeyboard key mask textentry
5882 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5883 | View -> viewkeyboard key mask
5884 | LinkNav linknav -> linknavkeyboard key mask linknav
5885 end;
5886 state.uioh
5888 method button button bstate x y mask =
5889 begin match state.mode with
5890 | LinkNav _
5891 | View -> viewmouse button bstate x y mask
5892 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5893 | Textentry _ -> ()
5894 end;
5895 state.uioh
5897 method motion x y =
5898 begin match state.mode with
5899 | Textentry _ -> ()
5900 | View | Birdseye _ | LinkNav _ ->
5901 match state.mstate with
5902 | Mzoom _ | Mnone -> ()
5904 | Mpan (x0, y0) ->
5905 let dx = x - x0
5906 and dy = y0 - y in
5907 state.mstate <- Mpan (x, y);
5908 if canpan ()
5909 then state.x <- state.x + dx;
5910 let y = clamp dy in
5911 gotoy_and_clear_text y
5913 | Msel (a, _) ->
5914 state.mstate <- Msel (a, (x, y));
5915 G.postRedisplay "motion select";
5917 | Mscrolly ->
5918 let y = min conf.winh (max 0 y) in
5919 scrolly y
5921 | Mscrollx ->
5922 let x = min conf.winw (max 0 x) in
5923 scrollx x
5925 | Mzoomrect (p0, _) ->
5926 state.mstate <- Mzoomrect (p0, (x, y));
5927 G.postRedisplay "motion zoomrect";
5928 end;
5929 state.uioh
5931 method pmotion x y =
5932 begin match state.mode with
5933 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5934 let rec loop = function
5935 | [] ->
5936 if hooverpageno != -1
5937 then (
5938 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5939 G.postRedisplay "pmotion birdseye no hoover";
5941 | l :: rest ->
5942 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5943 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5944 then (
5945 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5946 G.postRedisplay "pmotion birdseye hoover";
5948 else loop rest
5950 loop state.layout
5952 | Textentry _ -> ()
5954 | LinkNav _
5955 | View ->
5956 match state.mstate with
5957 | Mnone -> updateunder x y
5958 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5960 end;
5961 state.uioh
5963 method infochanged _ = ()
5965 method scrollph =
5966 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
5967 let p, h = scrollph state.y maxy in
5968 state.scrollw, p, h
5970 method scrollpw =
5971 let winw = conf.winw - state.scrollw - 1 in
5972 let fwinw = float winw in
5973 let sw =
5974 let sw = fwinw /. float state.w in
5975 let sw = fwinw *. sw in
5976 max sw (float conf.scrollh)
5978 let position, sw =
5979 let f = state.w+winw in
5980 let r = float (winw-state.x) /. float f in
5981 let p = fwinw *. r in
5982 p-.sw/.2., sw
5984 let sw =
5985 if position +. sw > fwinw
5986 then fwinw -. position
5987 else sw
5989 state.hscrollh, position, sw
5991 method modehash =
5992 let modename =
5993 match state.mode with
5994 | LinkNav _ -> "links"
5995 | Textentry _ -> "textentry"
5996 | Birdseye _ -> "birdseye"
5997 | View -> "view"
5999 findkeyhash conf modename
6000 end;;
6002 module Config =
6003 struct
6004 open Parser
6006 let fontpath = ref "";;
6008 module KeyMap =
6009 Map.Make (struct type t = (int * int) let compare = compare end);;
6011 let unent s =
6012 let l = String.length s in
6013 let b = Buffer.create l in
6014 unent b s 0 l;
6015 Buffer.contents b;
6018 let home =
6019 try Sys.getenv "HOME"
6020 with exn ->
6021 prerr_endline
6022 ("Can not determine home directory location: " ^
6023 Printexc.to_string exn);
6027 let modifier_of_string = function
6028 | "alt" -> Wsi.altmask
6029 | "shift" -> Wsi.shiftmask
6030 | "ctrl" | "control" -> Wsi.ctrlmask
6031 | "meta" -> Wsi.metamask
6032 | _ -> 0
6035 let key_of_string =
6036 let r = Str.regexp "-" in
6037 fun s ->
6038 let elems = Str.full_split r s in
6039 let f n k m =
6040 let g s =
6041 let m1 = modifier_of_string s in
6042 if m1 = 0
6043 then (Wsi.namekey s, m)
6044 else (k, m lor m1)
6045 in function
6046 | Str.Delim s when n land 1 = 0 -> g s
6047 | Str.Text s -> g s
6048 | Str.Delim _ -> (k, m)
6050 let rec loop n k m = function
6051 | [] -> (k, m)
6052 | x :: xs ->
6053 let k, m = f n k m x in
6054 loop (n+1) k m xs
6056 loop 0 0 0 elems
6059 let keys_of_string =
6060 let r = Str.regexp "[ \t]" in
6061 fun s ->
6062 let elems = Str.split r s in
6063 List.map key_of_string elems
6066 let copykeyhashes c =
6067 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6070 let config_of c attrs =
6071 let apply c k v =
6073 match k with
6074 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6075 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6076 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6077 | "preload" -> { c with preload = bool_of_string v }
6078 | "page-bias" -> { c with pagebias = int_of_string v }
6079 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6080 | "horizontal-scroll-step" ->
6081 { c with hscrollstep = max (int_of_string v) 1 }
6082 | "auto-scroll-step" ->
6083 { c with autoscrollstep = max 0 (int_of_string v) }
6084 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6085 | "crop-hack" -> { c with crophack = bool_of_string v }
6086 | "throttle" ->
6087 let mw =
6088 match String.lowercase v with
6089 | "true" -> Some infinity
6090 | "false" -> None
6091 | f -> Some (float_of_string f)
6093 { c with maxwait = mw}
6094 | "highlight-links" -> { c with hlinks = bool_of_string v }
6095 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6096 | "vertical-margin" ->
6097 { c with interpagespace = max 0 (int_of_string v) }
6098 | "zoom" ->
6099 let zoom = float_of_string v /. 100. in
6100 let zoom = max zoom 0.0 in
6101 { c with zoom = zoom }
6102 | "presentation" -> { c with presentation = bool_of_string v }
6103 | "rotation-angle" -> { c with angle = int_of_string v }
6104 | "width" -> { c with winw = max 20 (int_of_string v) }
6105 | "height" -> { c with winh = max 20 (int_of_string v) }
6106 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6107 | "proportional-display" -> { c with proportional = bool_of_string v }
6108 | "pixmap-cache-size" ->
6109 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6110 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6111 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6112 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6113 | "persistent-location" -> { c with jumpback = bool_of_string v }
6114 | "background-color" -> { c with bgcolor = color_of_string v }
6115 | "scrollbar-in-presentation" ->
6116 { c with scrollbarinpm = bool_of_string v }
6117 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6118 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6119 | "mupdf-store-size" ->
6120 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6121 | "checkers" -> { c with checkers = bool_of_string v }
6122 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6123 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6124 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6125 | "uri-launcher" -> { c with urilauncher = unent v }
6126 | "path-launcher" -> { c with pathlauncher = unent v }
6127 | "color-space" -> { c with colorspace = colorspace_of_string v }
6128 | "invert-colors" -> { c with invert = bool_of_string v }
6129 | "brightness" -> { c with colorscale = float_of_string v }
6130 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6131 | "ghyllscroll" ->
6132 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6133 | "columns" ->
6134 let (n, _, _) as nab = multicolumns_of_string v in
6135 if n < 0
6136 then { c with columns = Csplit (-n, [||]) }
6137 else { c with columns = Cmulti (nab, [||]) }
6138 | "birds-eye-columns" ->
6139 { c with beyecolumns = Some (max (int_of_string v) 2) }
6140 | "selection-command" -> { c with selcmd = unent v }
6141 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6142 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6143 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6144 | "use-pbo" -> { c with usepbo = bool_of_string v }
6145 | _ -> c
6146 with exn ->
6147 prerr_endline ("Error processing attribute (`" ^
6148 k ^ "'=`" ^ v ^ "'): " ^ Printexc.to_string exn);
6151 let rec fold c = function
6152 | [] -> c
6153 | (k, v) :: rest ->
6154 let c = apply c k v in
6155 fold c rest
6157 fold { c with keyhashes = copykeyhashes c } attrs;
6160 let fromstring f pos n v d =
6161 try f v
6162 with exn ->
6163 dolog "Error processing attribute (%S=%S) at %d\n%s"
6164 n v pos (Printexc.to_string exn)
6169 let bookmark_of attrs =
6170 let rec fold title page rely visy = function
6171 | ("title", v) :: rest -> fold v page rely visy rest
6172 | ("page", v) :: rest -> fold title v rely visy rest
6173 | ("rely", v) :: rest -> fold title page v visy rest
6174 | ("visy", v) :: rest -> fold title page rely v rest
6175 | _ :: rest -> fold title page rely visy rest
6176 | [] -> title, page, rely, visy
6178 fold "invalid" "0" "0" "0" attrs
6181 let doc_of attrs =
6182 let rec fold path page rely pan visy = function
6183 | ("path", v) :: rest -> fold v page rely pan visy rest
6184 | ("page", v) :: rest -> fold path v rely pan visy rest
6185 | ("rely", v) :: rest -> fold path page v pan visy rest
6186 | ("pan", v) :: rest -> fold path page rely v visy rest
6187 | ("visy", v) :: rest -> fold path page rely pan v rest
6188 | _ :: rest -> fold path page rely pan visy rest
6189 | [] -> path, page, rely, pan, visy
6191 fold "" "0" "0" "0" "0" attrs
6194 let map_of attrs =
6195 let rec fold rs ls = function
6196 | ("out", v) :: rest -> fold v ls rest
6197 | ("in", v) :: rest -> fold rs v rest
6198 | _ :: rest -> fold ls rs rest
6199 | [] -> ls, rs
6201 fold "" "" attrs
6204 let setconf dst src =
6205 dst.scrollbw <- src.scrollbw;
6206 dst.scrollh <- src.scrollh;
6207 dst.icase <- src.icase;
6208 dst.preload <- src.preload;
6209 dst.pagebias <- src.pagebias;
6210 dst.verbose <- src.verbose;
6211 dst.scrollstep <- src.scrollstep;
6212 dst.maxhfit <- src.maxhfit;
6213 dst.crophack <- src.crophack;
6214 dst.autoscrollstep <- src.autoscrollstep;
6215 dst.maxwait <- src.maxwait;
6216 dst.hlinks <- src.hlinks;
6217 dst.underinfo <- src.underinfo;
6218 dst.interpagespace <- src.interpagespace;
6219 dst.zoom <- src.zoom;
6220 dst.presentation <- src.presentation;
6221 dst.angle <- src.angle;
6222 dst.winw <- src.winw;
6223 dst.winh <- src.winh;
6224 dst.savebmarks <- src.savebmarks;
6225 dst.memlimit <- src.memlimit;
6226 dst.proportional <- src.proportional;
6227 dst.texcount <- src.texcount;
6228 dst.sliceheight <- src.sliceheight;
6229 dst.thumbw <- src.thumbw;
6230 dst.jumpback <- src.jumpback;
6231 dst.bgcolor <- src.bgcolor;
6232 dst.scrollbarinpm <- src.scrollbarinpm;
6233 dst.tilew <- src.tilew;
6234 dst.tileh <- src.tileh;
6235 dst.mustoresize <- src.mustoresize;
6236 dst.checkers <- src.checkers;
6237 dst.aalevel <- src.aalevel;
6238 dst.trimmargins <- src.trimmargins;
6239 dst.trimfuzz <- src.trimfuzz;
6240 dst.urilauncher <- src.urilauncher;
6241 dst.colorspace <- src.colorspace;
6242 dst.invert <- src.invert;
6243 dst.colorscale <- src.colorscale;
6244 dst.redirectstderr <- src.redirectstderr;
6245 dst.ghyllscroll <- src.ghyllscroll;
6246 dst.columns <- src.columns;
6247 dst.beyecolumns <- src.beyecolumns;
6248 dst.selcmd <- src.selcmd;
6249 dst.updatecurs <- src.updatecurs;
6250 dst.pathlauncher <- src.pathlauncher;
6251 dst.keyhashes <- copykeyhashes src;
6252 dst.hfsize <- src.hfsize;
6253 dst.hscrollstep <- src.hscrollstep;
6254 dst.pgscale <- src.pgscale;
6255 dst.usepbo <- src.usepbo;
6258 let get s =
6259 let h = Hashtbl.create 10 in
6260 let dc = { defconf with angle = defconf.angle } in
6261 let rec toplevel v t spos _ =
6262 match t with
6263 | Vdata | Vcdata | Vend -> v
6264 | Vopen ("llppconfig", _, closed) ->
6265 if closed
6266 then v
6267 else { v with f = llppconfig }
6268 | Vopen _ ->
6269 error "unexpected subelement at top level" s spos
6270 | Vclose _ -> error "unexpected close at top level" s spos
6272 and llppconfig v t spos _ =
6273 match t with
6274 | Vdata | Vcdata -> v
6275 | Vend -> error "unexpected end of input in llppconfig" s spos
6276 | Vopen ("defaults", attrs, closed) ->
6277 let c = config_of dc attrs in
6278 setconf dc c;
6279 if closed
6280 then v
6281 else { v with f = defaults }
6283 | Vopen ("ui-font", attrs, closed) ->
6284 let rec getsize size = function
6285 | [] -> size
6286 | ("size", v) :: rest ->
6287 let size =
6288 fromstring int_of_string spos "size" v fstate.fontsize in
6289 getsize size rest
6290 | l -> getsize size l
6292 fstate.fontsize <- getsize fstate.fontsize attrs;
6293 if closed
6294 then v
6295 else { v with f = uifont (Buffer.create 10) }
6297 | Vopen ("doc", attrs, closed) ->
6298 let pathent, spage, srely, span, svisy = doc_of attrs in
6299 let path = unent pathent
6300 and pageno = fromstring int_of_string spos "page" spage 0
6301 and rely = fromstring float_of_string spos "rely" srely 0.0
6302 and pan = fromstring int_of_string spos "pan" span 0
6303 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6304 let c = config_of dc attrs in
6305 let anchor = (pageno, rely, visy) in
6306 if closed
6307 then (Hashtbl.add h path (c, [], pan, anchor); v)
6308 else { v with f = doc path pan anchor c [] }
6310 | Vopen _ ->
6311 error "unexpected subelement in llppconfig" s spos
6313 | Vclose "llppconfig" -> { v with f = toplevel }
6314 | Vclose _ -> error "unexpected close in llppconfig" s spos
6316 and defaults v t spos _ =
6317 match t with
6318 | Vdata | Vcdata -> v
6319 | Vend -> error "unexpected end of input in defaults" s spos
6320 | Vopen ("keymap", attrs, closed) ->
6321 let modename =
6322 try List.assoc "mode" attrs
6323 with Not_found -> "global" in
6324 if closed
6325 then v
6326 else
6327 let ret keymap =
6328 let h = findkeyhash dc modename in
6329 KeyMap.iter (Hashtbl.replace h) keymap;
6330 defaults
6332 { v with f = pkeymap ret KeyMap.empty }
6334 | Vopen (_, _, _) ->
6335 error "unexpected subelement in defaults" s spos
6337 | Vclose "defaults" ->
6338 { v with f = llppconfig }
6340 | Vclose _ -> error "unexpected close in defaults" s spos
6342 and uifont b v t spos epos =
6343 match t with
6344 | Vdata | Vcdata ->
6345 Buffer.add_substring b s spos (epos - spos);
6347 | Vopen (_, _, _) ->
6348 error "unexpected subelement in ui-font" s spos
6349 | Vclose "ui-font" ->
6350 if String.length !fontpath = 0
6351 then fontpath := Buffer.contents b;
6352 { v with f = llppconfig }
6353 | Vclose _ -> error "unexpected close in ui-font" s spos
6354 | Vend -> error "unexpected end of input in ui-font" s spos
6356 and doc path pan anchor c bookmarks v t spos _ =
6357 match t with
6358 | Vdata | Vcdata -> v
6359 | Vend -> error "unexpected end of input in doc" s spos
6360 | Vopen ("bookmarks", _, closed) ->
6361 if closed
6362 then v
6363 else { v with f = pbookmarks path pan anchor c bookmarks }
6365 | Vopen ("keymap", attrs, closed) ->
6366 let modename =
6367 try List.assoc "mode" attrs
6368 with Not_found -> "global"
6370 if closed
6371 then v
6372 else
6373 let ret keymap =
6374 let h = findkeyhash c modename in
6375 KeyMap.iter (Hashtbl.replace h) keymap;
6376 doc path pan anchor c bookmarks
6378 { v with f = pkeymap ret KeyMap.empty }
6380 | Vopen (_, _, _) ->
6381 error "unexpected subelement in doc" s spos
6383 | Vclose "doc" ->
6384 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6385 { v with f = llppconfig }
6387 | Vclose _ -> error "unexpected close in doc" s spos
6389 and pkeymap ret keymap v t spos _ =
6390 match t with
6391 | Vdata | Vcdata -> v
6392 | Vend -> error "unexpected end of input in keymap" s spos
6393 | Vopen ("map", attrs, closed) ->
6394 let r, l = map_of attrs in
6395 let kss = fromstring keys_of_string spos "in" r [] in
6396 let lss = fromstring keys_of_string spos "out" l [] in
6397 let keymap =
6398 match kss with
6399 | [] -> keymap
6400 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6401 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6403 if closed
6404 then { v with f = pkeymap ret keymap }
6405 else
6406 let f () = v in
6407 { v with f = skip "map" f }
6409 | Vopen _ ->
6410 error "unexpected subelement in keymap" s spos
6412 | Vclose "keymap" ->
6413 { v with f = ret keymap }
6415 | Vclose _ -> error "unexpected close in keymap" s spos
6417 and pbookmarks path pan anchor c bookmarks v t spos _ =
6418 match t with
6419 | Vdata | Vcdata -> v
6420 | Vend -> error "unexpected end of input in bookmarks" s spos
6421 | Vopen ("item", attrs, closed) ->
6422 let titleent, spage, srely, svisy = bookmark_of attrs in
6423 let page = fromstring int_of_string spos "page" spage 0
6424 and rely = fromstring float_of_string spos "rely" srely 0.0
6425 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6426 let bookmarks =
6427 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6429 if closed
6430 then { v with f = pbookmarks path pan anchor c bookmarks }
6431 else
6432 let f () = v in
6433 { v with f = skip "item" f }
6435 | Vopen _ ->
6436 error "unexpected subelement in bookmarks" s spos
6438 | Vclose "bookmarks" ->
6439 { v with f = doc path pan anchor c bookmarks }
6441 | Vclose _ -> error "unexpected close in bookmarks" s spos
6443 and skip tag f v t spos _ =
6444 match t with
6445 | Vdata | Vcdata -> v
6446 | Vend ->
6447 error ("unexpected end of input in skipped " ^ tag) s spos
6448 | Vopen (tag', _, closed) ->
6449 if closed
6450 then v
6451 else
6452 let f' () = { v with f = skip tag f } in
6453 { v with f = skip tag' f' }
6454 | Vclose ctag ->
6455 if tag = ctag
6456 then f ()
6457 else error ("unexpected close in skipped " ^ tag) s spos
6460 parse { f = toplevel; accu = () } s;
6461 h, dc;
6464 let do_load f ic =
6466 let len = in_channel_length ic in
6467 let s = String.create len in
6468 really_input ic s 0 len;
6469 f s;
6470 with
6471 | Parse_error (msg, s, pos) ->
6472 let subs = subs s pos in
6473 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6474 failwith ("parse error: " ^ s)
6476 | exn ->
6477 failwith ("config load error: " ^ Printexc.to_string exn)
6480 let defconfpath =
6481 let dir =
6483 let dir = Filename.concat home ".config" in
6484 if Sys.is_directory dir then dir else home
6485 with _ -> home
6487 Filename.concat dir "llpp.conf"
6490 let confpath = ref defconfpath;;
6492 let load1 f =
6493 if Sys.file_exists !confpath
6494 then
6495 match
6496 (try Some (open_in_bin !confpath)
6497 with exn ->
6498 prerr_endline
6499 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6500 Printexc.to_string exn);
6501 None
6503 with
6504 | Some ic ->
6505 let success =
6507 f (do_load get ic)
6508 with exn ->
6509 prerr_endline
6510 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6511 Printexc.to_string exn);
6512 false
6514 close_in ic;
6515 success
6517 | None -> false
6518 else
6519 f (Hashtbl.create 0, defconf)
6522 let load () =
6523 let f (h, dc) =
6524 let pc, pb, px, pa =
6526 Hashtbl.find h (Filename.basename state.path)
6527 with Not_found -> dc, [], 0, emptyanchor
6529 setconf defconf dc;
6530 setconf conf pc;
6531 state.bookmarks <- pb;
6532 state.x <- px;
6533 state.scrollw <- conf.scrollbw;
6534 if conf.jumpback
6535 then state.anchor <- pa;
6536 cbput state.hists.nav pa;
6537 true
6539 load1 f
6542 let add_attrs bb always dc c =
6543 let ob s a b =
6544 if always || a != b
6545 then Printf.bprintf bb "\n %s='%b'" s a
6546 and oi s a b =
6547 if always || a != b
6548 then Printf.bprintf bb "\n %s='%d'" s a
6549 and oI s a b =
6550 if always || a != b
6551 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6552 and oz s a b =
6553 if always || a <> b
6554 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6555 and oF s a b =
6556 if always || a <> b
6557 then Printf.bprintf bb "\n %s='%f'" s a
6558 and oc s a b =
6559 if always || a <> b
6560 then
6561 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6562 and oC s a b =
6563 if always || a <> b
6564 then
6565 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6566 and oR s a b =
6567 if always || a <> b
6568 then
6569 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6570 and os s a b =
6571 if always || a <> b
6572 then
6573 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6574 and og s a b =
6575 if always || a <> b
6576 then
6577 match a with
6578 | None -> ()
6579 | Some (_N, _A, _B) ->
6580 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6581 and oW s a b =
6582 if always || a <> b
6583 then
6584 let v =
6585 match a with
6586 | None -> "false"
6587 | Some f ->
6588 if f = infinity
6589 then "true"
6590 else string_of_float f
6592 Printf.bprintf bb "\n %s='%s'" s v
6593 and oco s a b =
6594 if always || a <> b
6595 then
6596 match a with
6597 | Cmulti ((n, a, b), _) when n > 1 ->
6598 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6599 | Csplit (n, _) when n > 1 ->
6600 Printf.bprintf bb "\n %s='%d'" s ~-n
6601 | _ -> ()
6602 and obeco s a b =
6603 if always || a <> b
6604 then
6605 match a with
6606 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6607 | _ -> ()
6609 let w, h =
6610 if always
6611 then dc.winw, dc.winh
6612 else
6613 match state.fullscreen with
6614 | Some wh -> wh
6615 | None -> c.winw, c.winh
6617 oi "width" w dc.winw;
6618 oi "height" h dc.winh;
6619 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6620 oi "scroll-handle-height" c.scrollh dc.scrollh;
6621 ob "case-insensitive-search" c.icase dc.icase;
6622 ob "preload" c.preload dc.preload;
6623 oi "page-bias" c.pagebias dc.pagebias;
6624 oi "scroll-step" c.scrollstep dc.scrollstep;
6625 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6626 ob "max-height-fit" c.maxhfit dc.maxhfit;
6627 ob "crop-hack" c.crophack dc.crophack;
6628 oW "throttle" c.maxwait dc.maxwait;
6629 ob "highlight-links" c.hlinks dc.hlinks;
6630 ob "under-cursor-info" c.underinfo dc.underinfo;
6631 oi "vertical-margin" c.interpagespace dc.interpagespace;
6632 oz "zoom" c.zoom dc.zoom;
6633 ob "presentation" c.presentation dc.presentation;
6634 oi "rotation-angle" c.angle dc.angle;
6635 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6636 ob "proportional-display" c.proportional dc.proportional;
6637 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6638 oi "tex-count" c.texcount dc.texcount;
6639 oi "slice-height" c.sliceheight dc.sliceheight;
6640 oi "thumbnail-width" c.thumbw dc.thumbw;
6641 ob "persistent-location" c.jumpback dc.jumpback;
6642 oc "background-color" c.bgcolor dc.bgcolor;
6643 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6644 oi "tile-width" c.tilew dc.tilew;
6645 oi "tile-height" c.tileh dc.tileh;
6646 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6647 ob "checkers" c.checkers dc.checkers;
6648 oi "aalevel" c.aalevel dc.aalevel;
6649 ob "trim-margins" c.trimmargins dc.trimmargins;
6650 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6651 os "uri-launcher" c.urilauncher dc.urilauncher;
6652 os "path-launcher" c.pathlauncher dc.pathlauncher;
6653 oC "color-space" c.colorspace dc.colorspace;
6654 ob "invert-colors" c.invert dc.invert;
6655 oF "brightness" c.colorscale dc.colorscale;
6656 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6657 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6658 oco "columns" c.columns dc.columns;
6659 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6660 os "selection-command" c.selcmd dc.selcmd;
6661 ob "update-cursor" c.updatecurs dc.updatecurs;
6662 oi "hint-font-size" c.hfsize dc.hfsize;
6663 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6664 oF "page-scroll-scale" c.pgscale dc.pgscale;
6665 ob "use-pbo" c.usepbo dc.usepbo;
6668 let keymapsbuf always dc c =
6669 let bb = Buffer.create 16 in
6670 let rec loop = function
6671 | [] -> ()
6672 | (modename, h) :: rest ->
6673 let dh = findkeyhash dc modename in
6674 if always || h <> dh
6675 then (
6676 if Hashtbl.length h > 0
6677 then (
6678 if Buffer.length bb > 0
6679 then Buffer.add_char bb '\n';
6680 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6681 Hashtbl.iter (fun i o ->
6682 let isdifferent = always ||
6684 let dO = Hashtbl.find dh i in
6685 dO <> o
6686 with Not_found -> true
6688 if isdifferent
6689 then
6690 let addkm (k, m) =
6691 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6692 if Wsi.withalt m then Buffer.add_string bb "alt-";
6693 if Wsi.withshift m then Buffer.add_string bb "shift-";
6694 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6695 Buffer.add_string bb (Wsi.keyname k);
6697 let addkms l =
6698 let rec loop = function
6699 | [] -> ()
6700 | km :: [] -> addkm km
6701 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6703 loop l
6705 Buffer.add_string bb "<map in='";
6706 addkm i;
6707 match o with
6708 | KMinsrt km ->
6709 Buffer.add_string bb "' out='";
6710 addkm km;
6711 Buffer.add_string bb "'/>\n"
6713 | KMinsrl kms ->
6714 Buffer.add_string bb "' out='";
6715 addkms kms;
6716 Buffer.add_string bb "'/>\n"
6718 | KMmulti (ins, kms) ->
6719 Buffer.add_char bb ' ';
6720 addkms ins;
6721 Buffer.add_string bb "' out='";
6722 addkms kms;
6723 Buffer.add_string bb "'/>\n"
6724 ) h;
6725 Buffer.add_string bb "</keymap>";
6728 loop rest
6730 loop c.keyhashes;
6734 let save () =
6735 let uifontsize = fstate.fontsize in
6736 let bb = Buffer.create 32768 in
6737 let f (h, dc) =
6738 let dc = if conf.bedefault then conf else dc in
6739 Buffer.add_string bb "<llppconfig>\n";
6741 if String.length !fontpath > 0
6742 then
6743 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6744 uifontsize
6745 !fontpath
6746 else (
6747 if uifontsize <> 14
6748 then
6749 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6752 Buffer.add_string bb "<defaults ";
6753 add_attrs bb true dc dc;
6754 let kb = keymapsbuf true dc dc in
6755 if Buffer.length kb > 0
6756 then (
6757 Buffer.add_string bb ">\n";
6758 Buffer.add_buffer bb kb;
6759 Buffer.add_string bb "\n</defaults>\n";
6761 else Buffer.add_string bb "/>\n";
6763 let adddoc path pan anchor c bookmarks =
6764 if bookmarks == [] && c = dc && anchor = emptyanchor
6765 then ()
6766 else (
6767 Printf.bprintf bb "<doc path='%s'"
6768 (enent path 0 (String.length path));
6770 if anchor <> emptyanchor
6771 then (
6772 let n, rely, visy = anchor in
6773 Printf.bprintf bb " page='%d'" n;
6774 if rely > 1e-6
6775 then
6776 Printf.bprintf bb " rely='%f'" rely
6778 if abs_float visy > 1e-6
6779 then
6780 Printf.bprintf bb " visy='%f'" visy
6784 if pan != 0
6785 then Printf.bprintf bb " pan='%d'" pan;
6787 add_attrs bb false dc c;
6788 let kb = keymapsbuf false dc c in
6790 begin match bookmarks with
6791 | [] ->
6792 if Buffer.length kb > 0
6793 then (
6794 Buffer.add_string bb ">\n";
6795 Buffer.add_buffer bb kb;
6796 Buffer.add_string bb "\n</doc>\n";
6798 else Buffer.add_string bb "/>\n"
6799 | _ ->
6800 Buffer.add_string bb ">\n<bookmarks>\n";
6801 List.iter (fun (title, _level, (page, rely, visy)) ->
6802 Printf.bprintf bb
6803 "<item title='%s' page='%d'"
6804 (enent title 0 (String.length title))
6805 page
6807 if rely > 1e-6
6808 then
6809 Printf.bprintf bb " rely='%f'" rely
6811 if abs_float visy > 1e-6
6812 then
6813 Printf.bprintf bb " visy='%f'" visy
6815 Buffer.add_string bb "/>\n";
6816 ) bookmarks;
6817 Buffer.add_string bb "</bookmarks>";
6818 if Buffer.length kb > 0
6819 then (
6820 Buffer.add_string bb "\n";
6821 Buffer.add_buffer bb kb;
6823 Buffer.add_string bb "\n</doc>\n";
6824 end;
6828 let pan, conf =
6829 match state.mode with
6830 | Birdseye (c, pan, _, _, _) ->
6831 let beyecolumns =
6832 match conf.columns with
6833 | Cmulti ((c, _, _), _) -> Some c
6834 | Csingle _ -> None
6835 | Csplit _ -> None
6836 and columns =
6837 match c.columns with
6838 | Cmulti (c, _) -> Cmulti (c, [||])
6839 | Csingle _ -> Csingle [||]
6840 | Csplit _ -> failwith "quit from bird's eye while split"
6842 pan, { c with beyecolumns = beyecolumns; columns = columns }
6843 | _ -> state.x, conf
6845 let basename = Filename.basename state.path in
6846 adddoc basename pan (getanchor ())
6847 (let conf =
6848 let autoscrollstep =
6849 match state.autoscroll with
6850 | Some step -> step
6851 | None -> conf.autoscrollstep
6853 match state.mode with
6854 | Birdseye (bc, _, _, _, _) ->
6855 { conf with
6856 zoom = bc.zoom;
6857 presentation = bc.presentation;
6858 interpagespace = bc.interpagespace;
6859 maxwait = bc.maxwait;
6860 autoscrollstep = autoscrollstep }
6861 | _ -> { conf with autoscrollstep = autoscrollstep }
6862 in conf)
6863 (if conf.savebmarks then state.bookmarks else []);
6865 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6866 if basename <> path
6867 then adddoc path x anchor c bookmarks
6868 ) h;
6869 Buffer.add_string bb "</llppconfig>\n";
6870 true;
6872 if load1 f && Buffer.length bb > 0
6873 then
6875 let tmp = !confpath ^ ".tmp" in
6876 let oc = open_out_bin tmp in
6877 Buffer.output_buffer oc bb;
6878 close_out oc;
6879 Unix.rename tmp !confpath;
6880 with exn ->
6881 prerr_endline
6882 ("error while saving configuration: " ^ Printexc.to_string exn)
6884 end;;
6886 let () =
6887 let trimcachepath = ref "" in
6888 Arg.parse
6889 (Arg.align
6890 [("-p", Arg.String (fun s -> state.password <- s) ,
6891 "<password> Set password");
6893 ("-f", Arg.String (fun s -> Config.fontpath := s),
6894 "<path> Set path to the user interface font");
6896 ("-c", Arg.String (fun s -> Config.confpath := s),
6897 "<path> Set path to the configuration file");
6899 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6900 "<path> Set path to the trim cache file");
6902 ("-v", Arg.Unit (fun () ->
6903 Printf.printf
6904 "%s\nconfiguration path: %s\n"
6905 (version ())
6906 Config.defconfpath
6908 exit 0), " Print version and exit");
6911 (fun s -> state.path <- s)
6912 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6914 if String.length state.path = 0
6915 then (prerr_endline "file name missing"; exit 1);
6917 if not (Config.load ())
6918 then prerr_endline "failed to load configuration";
6920 let globalkeyhash = findkeyhash conf "global" in
6921 let wsfd, winw, winh = Wsi.init (object
6922 method expose =
6923 if nogeomcmds state.geomcmds || platform == Posx
6924 then display ()
6925 else (
6926 GlClear.color (scalecolor2 conf.bgcolor);
6927 GlClear.clear [`color];
6929 method display = display ()
6930 method reshape w h = reshape w h
6931 method mouse b d x y m = mouse b d x y m
6932 method motion x y = state.mpos <- (x, y); motion x y
6933 method pmotion x y = state.mpos <- (x, y); pmotion x y
6934 method key k m =
6935 let mascm = m land (
6936 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6937 ) in
6938 match state.keystate with
6939 | KSnone ->
6940 let km = k, mascm in
6941 begin
6942 match
6943 let modehash = state.uioh#modehash in
6944 try Hashtbl.find modehash km
6945 with Not_found ->
6946 try Hashtbl.find globalkeyhash km
6947 with Not_found -> KMinsrt (k, m)
6948 with
6949 | KMinsrt (k, m) -> keyboard k m
6950 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6951 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6953 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6954 List.iter (fun (k, m) -> keyboard k m) insrt;
6955 state.keystate <- KSnone
6956 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6957 state.keystate <- KSinto (keys, insrt)
6958 | _ ->
6959 state.keystate <- KSnone
6961 method enter x y = state.mpos <- (x, y); pmotion x y
6962 method leave = state.mpos <- (-1, -1)
6963 method quit = raise Quit
6964 end) conf.winw conf.winh (platform = Posx) in
6966 state.wsfd <- wsfd;
6968 if not (
6969 List.exists GlMisc.check_extension
6970 [ "GL_ARB_texture_rectangle"
6971 ; "GL_EXT_texture_recangle"
6972 ; "GL_NV_texture_rectangle" ]
6974 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6976 let cr, sw =
6977 match Ne.pipe () with
6978 | Ne.Exn exn ->
6979 Printf.eprintf "pipe/crsw failed: %s" (Printexc.to_string exn);
6980 exit 1
6981 | Ne.Res rw -> rw
6982 and sr, cw =
6983 match Ne.pipe () with
6984 | Ne.Exn exn ->
6985 Printf.eprintf "pipe/srcw failed: %s" (Printexc.to_string exn);
6986 exit 1
6987 | Ne.Res rw -> rw
6990 cloexec cr;
6991 cloexec sw;
6992 cloexec sr;
6993 cloexec cw;
6995 setcheckers conf.checkers;
6996 redirectstderr ();
6998 init (cr, cw) (
6999 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
7000 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
7001 !Config.fontpath, !trimcachepath,
7002 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7004 state.sr <- sr;
7005 state.sw <- sw;
7006 state.text <- "Opening " ^ (mbtoutf8 state.path);
7007 reshape winw winh;
7008 opendoc state.path state.password;
7009 state.uioh <- uioh;
7011 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7013 let rec loop deadline =
7014 let r =
7015 match state.errfd with
7016 | None -> [state.sr; state.wsfd]
7017 | Some fd -> [state.sr; state.wsfd; fd]
7019 if state.redisplay
7020 then (
7021 state.redisplay <- false;
7022 display ();
7024 let timeout =
7025 let now = now () in
7026 if deadline > now
7027 then (
7028 if deadline = infinity
7029 then ~-.1.0
7030 else max 0.0 (deadline -. now)
7032 else 0.0
7034 let r, _, _ =
7035 try Unix.select r [] [] timeout
7036 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7038 begin match r with
7039 | [] ->
7040 state.ghyll None;
7041 let newdeadline =
7042 if state.ghyll == noghyll
7043 then
7044 match state.autoscroll with
7045 | Some step when step != 0 ->
7046 let y = state.y + step in
7047 let y =
7048 if y < 0
7049 then state.maxy
7050 else if y >= state.maxy then 0 else y
7052 gotoy y;
7053 if state.mode = View
7054 then state.text <- "";
7055 deadline +. 0.01
7056 | _ -> infinity
7057 else deadline +. 0.01
7059 loop newdeadline
7061 | l ->
7062 let rec checkfds = function
7063 | [] -> ()
7064 | fd :: rest when fd = state.sr ->
7065 let cmd = readcmd state.sr in
7066 act cmd;
7067 checkfds rest
7069 | fd :: rest when fd = state.wsfd ->
7070 Wsi.readresp fd;
7071 checkfds rest
7073 | fd :: rest ->
7074 let s = String.create 80 in
7075 let n = Unix.read fd s 0 80 in
7076 if conf.redirectstderr
7077 then (
7078 Buffer.add_substring state.errmsgs s 0 n;
7079 state.newerrmsgs <- true;
7080 state.redisplay <- true;
7082 else (
7083 prerr_string (String.sub s 0 n);
7084 flush stderr;
7086 checkfds rest
7088 checkfds l;
7089 let newdeadline =
7090 let deadline1 =
7091 if deadline = infinity
7092 then now () +. 0.01
7093 else deadline
7095 match state.autoscroll with
7096 | Some step when step != 0 -> deadline1
7097 | _ -> if state.ghyll == noghyll then infinity else deadline1
7099 loop newdeadline
7100 end;
7103 loop infinity;
7104 with Quit ->
7105 Config.save ();