G
[llpp.git] / main.ml
blob12725e40fd37d395bdc0732e87f91f19b93b92e9
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 0b110000 = 0b11000000
3006 then find (pos-1)
3007 else 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 && key land 0xff00 != 0xff00 ->
3075 begin match onkey text key with
3076 | TEdone text ->
3077 ondone text;
3078 onleave Confirm;
3079 G.postRedisplay "textentrykeyboard after confirm2";
3081 | TEcont text ->
3082 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3084 | TEstop ->
3085 onleave Cancel;
3086 G.postRedisplay "textentrykeyboard after cancel3"
3088 | TEswitch te ->
3089 state.mode <- Textentry (te, onleave);
3090 G.postRedisplay "textentrykeyboard switch";
3091 end;
3093 | _ ->
3094 vlog "unhandled key %s" (Wsi.keyname key)
3097 let firstof first active =
3098 if first > active || abs (first - active) > fstate.maxrows - 1
3099 then max 0 (active - (fstate.maxrows/2))
3100 else first
3103 let calcfirst first active =
3104 if active > first
3105 then
3106 let rows = active - first in
3107 if rows > fstate.maxrows then active - fstate.maxrows else first
3108 else active
3111 let scrollph y maxy =
3112 let sh = (float (maxy + conf.winh) /. float conf.winh) in
3113 let sh = float conf.winh /. sh in
3114 let sh = max sh (float conf.scrollh) in
3116 let percent =
3117 if y = state.maxy
3118 then 1.0
3119 else float y /. float maxy
3121 let position = (float conf.winh -. sh) *. percent in
3123 let position =
3124 if position +. sh > float conf.winh
3125 then float conf.winh -. sh
3126 else position
3128 position, sh;
3131 let coe s = (s :> uioh);;
3133 class listview ~(source:lvsource) ~trusted ~modehash =
3134 object (self)
3135 val m_pan = source#getpan
3136 val m_first = source#getfirst
3137 val m_active = source#getactive
3138 val m_qsearch = source#getqsearch
3139 val m_prev_uioh = state.uioh
3141 method private elemunder y =
3142 let n = y / (fstate.fontsize+1) in
3143 if m_first + n < source#getitemcount
3144 then (
3145 if source#hasaction (m_first + n)
3146 then Some (m_first + n)
3147 else None
3149 else None
3151 method display =
3152 Gl.enable `blend;
3153 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3154 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3155 GlDraw.rect (0., 0.) (float conf.winw, float conf.winh);
3156 GlDraw.color (1., 1., 1.);
3157 Gl.enable `texture_2d;
3158 let fs = fstate.fontsize in
3159 let nfs = fs + 1 in
3160 let ww = fstate.wwidth in
3161 let tabw = 30.0*.ww in
3162 let itemcount = source#getitemcount in
3163 let rec loop row =
3164 if (row - m_first) > fstate.maxrows
3165 then ()
3166 else (
3167 if row >= 0 && row < itemcount
3168 then (
3169 let (s, level) = source#getitem row in
3170 let y = (row - m_first) * nfs in
3171 let x = 5.0 +. float (level + m_pan) *. ww in
3172 if row = m_active
3173 then (
3174 Gl.disable `texture_2d;
3175 GlDraw.polygon_mode `both `line;
3176 GlDraw.color (1., 1., 1.) ~alpha:0.9;
3177 GlDraw.rect (1., float (y + 1))
3178 (float (conf.winw - conf.scrollbw - 1), float (y + fs + 3));
3179 GlDraw.polygon_mode `both `fill;
3180 GlDraw.color (1., 1., 1.);
3181 Gl.enable `texture_2d;
3184 let drawtabularstring s =
3185 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3186 if trusted
3187 then
3188 let tabpos = try String.index s '\t' with Not_found -> -1 in
3189 if tabpos > 0
3190 then
3191 let len = String.length s - tabpos - 1 in
3192 let s1 = String.sub s 0 tabpos
3193 and s2 = String.sub s (tabpos + 1) len in
3194 let nx = drawstr x s1 in
3195 let sw = nx -. x in
3196 let x = x +. (max tabw sw) in
3197 drawstr x s2
3198 else
3199 drawstr x s
3200 else
3201 drawstr x s
3203 let _ = drawtabularstring s in
3204 loop (row+1)
3208 loop m_first;
3209 Gl.disable `blend;
3210 Gl.disable `texture_2d;
3212 method updownlevel incr =
3213 let len = source#getitemcount in
3214 let curlevel =
3215 if m_active >= 0 && m_active < len
3216 then snd (source#getitem m_active)
3217 else -1
3219 let rec flow i =
3220 if i = len then i-1 else if i = -1 then 0 else
3221 let _, l = source#getitem i in
3222 if l != curlevel then i else flow (i+incr)
3224 let active = flow m_active in
3225 let first = calcfirst m_first active in
3226 G.postRedisplay "outline updownlevel";
3227 {< m_active = active; m_first = first >}
3229 method private key1 key mask =
3230 let set1 active first qsearch =
3231 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3233 let search active pattern incr =
3234 let dosearch re =
3235 let rec loop n =
3236 if n >= 0 && n < source#getitemcount
3237 then (
3238 let s, _ = source#getitem n in
3240 (try ignore (Str.search_forward re s 0); true
3241 with Not_found -> false)
3242 then Some n
3243 else loop (n + incr)
3245 else None
3247 loop active
3250 let re = Str.regexp_case_fold pattern in
3251 dosearch re
3252 with Failure s ->
3253 state.text <- s;
3254 None
3256 let itemcount = source#getitemcount in
3257 let find start incr =
3258 let rec find i =
3259 if i = -1 || i = itemcount
3260 then -1
3261 else (
3262 if source#hasaction i
3263 then i
3264 else find (i + incr)
3267 find start
3269 let set active first =
3270 let first = bound first 0 (itemcount - fstate.maxrows) in
3271 state.text <- "";
3272 coe {< m_active = active; m_first = first >}
3274 let navigate incr =
3275 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3276 let active, first =
3277 let incr1 = if incr > 0 then 1 else -1 in
3278 if isvisible m_first m_active
3279 then
3280 let next =
3281 let next = m_active + incr in
3282 let next =
3283 if next < 0 || next >= itemcount
3284 then -1
3285 else find next incr1
3287 if next = -1 || abs (m_active - next) > fstate.maxrows
3288 then -1
3289 else next
3291 if next = -1
3292 then
3293 let first = m_first + incr in
3294 let first = bound first 0 (itemcount - 1) in
3295 let next =
3296 let next = m_active + incr in
3297 let next = bound next 0 (itemcount - 1) in
3298 find next ~-incr1
3300 let active = if next = -1 then m_active else next in
3301 active, first
3302 else
3303 let first = min next m_first in
3304 let first =
3305 if abs (next - first) > fstate.maxrows
3306 then first + incr
3307 else first
3309 next, first
3310 else
3311 let first = m_first + incr in
3312 let first = bound first 0 (itemcount - 1) in
3313 let active =
3314 let next = m_active + incr in
3315 let next = bound next 0 (itemcount - 1) in
3316 let next = find next incr1 in
3317 let active =
3318 if next = -1 || abs (m_active - first) > fstate.maxrows
3319 then (
3320 let active = if m_active = -1 then next else m_active in
3321 active
3323 else next
3325 if isvisible first active
3326 then active
3327 else -1
3329 active, first
3331 G.postRedisplay "listview navigate";
3332 set active first;
3334 match key with
3335 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3336 let incr = if key = 0x72 then -1 else 1 in
3337 let active, first =
3338 match search (m_active + incr) m_qsearch incr with
3339 | None ->
3340 state.text <- m_qsearch ^ " [not found]";
3341 m_active, m_first
3342 | Some active ->
3343 state.text <- m_qsearch;
3344 active, firstof m_first active
3346 G.postRedisplay "listview ctrl-r/s";
3347 set1 active first m_qsearch;
3349 | 0xff08 -> (* backspace *)
3350 if String.length m_qsearch = 0
3351 then coe self
3352 else (
3353 let qsearch = withoutlastutf8 m_qsearch in
3354 let len = String.length qsearch in
3355 if len = 0
3356 then (
3357 state.text <- "";
3358 G.postRedisplay "listview empty qsearch";
3359 set1 m_active m_first "";
3361 else
3362 let active, first =
3363 match search m_active qsearch ~-1 with
3364 | None ->
3365 state.text <- qsearch ^ " [not found]";
3366 m_active, m_first
3367 | Some active ->
3368 state.text <- qsearch;
3369 active, firstof m_first active
3371 G.postRedisplay "listview backspace qsearch";
3372 set1 active first qsearch
3375 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3376 let pattern = m_qsearch ^ Wsi.toutf8 key in
3377 let active, first =
3378 match search m_active pattern 1 with
3379 | None ->
3380 state.text <- pattern ^ " [not found]";
3381 m_active, m_first
3382 | Some active ->
3383 state.text <- pattern;
3384 active, firstof m_first active
3386 G.postRedisplay "listview qsearch add";
3387 set1 active first pattern;
3389 | 0xff1b -> (* escape *)
3390 state.text <- "";
3391 if String.length m_qsearch = 0
3392 then (
3393 G.postRedisplay "list view escape";
3394 begin
3395 match
3396 source#exit (coe self) true m_active m_first m_pan m_qsearch
3397 with
3398 | None -> m_prev_uioh
3399 | Some uioh -> uioh
3402 else (
3403 G.postRedisplay "list view kill qsearch";
3404 source#setqsearch "";
3405 coe {< m_qsearch = "" >}
3408 | 0xff0d -> (* return *)
3409 state.text <- "";
3410 let self = {< m_qsearch = "" >} in
3411 source#setqsearch "";
3412 let opt =
3413 G.postRedisplay "listview enter";
3414 if m_active >= 0 && m_active < source#getitemcount
3415 then (
3416 source#exit (coe self) false m_active m_first m_pan "";
3418 else (
3419 source#exit (coe self) true m_active m_first m_pan "";
3422 begin match opt with
3423 | None -> m_prev_uioh
3424 | Some uioh -> uioh
3427 | 0xff9f | 0xffff -> (* delete *)
3428 coe self
3430 | 0xff52 -> navigate ~-1 (* up *)
3431 | 0xff54 -> navigate 1 (* down *)
3432 | 0xff55 -> navigate ~-(fstate.maxrows) (* prior *)
3433 | 0xff56 -> navigate fstate.maxrows (* next *)
3435 | 0xff53 -> (* right *)
3436 state.text <- "";
3437 G.postRedisplay "listview right";
3438 coe {< m_pan = m_pan - 1 >}
3440 | 0xff51 -> (* left *)
3441 state.text <- "";
3442 G.postRedisplay "listview left";
3443 coe {< m_pan = m_pan + 1 >}
3445 | 0xff50 -> (* home *)
3446 let active = find 0 1 in
3447 G.postRedisplay "listview home";
3448 set active 0;
3450 | 0xff57 -> (* end *)
3451 let first = max 0 (itemcount - fstate.maxrows) in
3452 let active = find (itemcount - 1) ~-1 in
3453 G.postRedisplay "listview end";
3454 set active first;
3456 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3457 coe self
3459 | _ ->
3460 dolog "listview unknown key %#x" key; coe self
3462 method key key mask =
3463 match state.mode with
3464 | Textentry te -> textentrykeyboard key mask te; coe self
3465 | _ -> self#key1 key mask
3467 method button button down x y _ =
3468 let opt =
3469 match button with
3470 | 1 when x > conf.winw - conf.scrollbw ->
3471 G.postRedisplay "listview scroll";
3472 if down
3473 then
3474 let _, position, sh = self#scrollph in
3475 if y > truncate position && y < truncate (position +. sh)
3476 then (
3477 state.mstate <- Mscrolly;
3478 Some (coe self)
3480 else
3481 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3482 let first = truncate (s *. float source#getitemcount) in
3483 let first = min source#getitemcount first in
3484 Some (coe {< m_first = first; m_active = first >})
3485 else (
3486 state.mstate <- Mnone;
3487 Some (coe self);
3489 | 1 when not down ->
3490 begin match self#elemunder y with
3491 | Some n ->
3492 G.postRedisplay "listview click";
3493 source#exit
3494 (coe {< m_active = n >}) false n m_first m_pan m_qsearch
3495 | _ ->
3496 Some (coe self)
3498 | n when (n == 4 || n == 5) && not down ->
3499 let len = source#getitemcount in
3500 let first =
3501 if n = 5 && m_first + fstate.maxrows >= len
3502 then
3503 m_first
3504 else
3505 let first = m_first + (if n == 4 then -1 else 1) in
3506 bound first 0 (len - 1)
3508 G.postRedisplay "listview wheel";
3509 Some (coe {< m_first = first >})
3510 | n when (n = 6 || n = 7) && not down ->
3511 let inc = m_first + (if n = 7 then -1 else 1) in
3512 G.postRedisplay "listview hwheel";
3513 Some (coe {< m_pan = m_pan + inc >})
3514 | _ ->
3515 Some (coe self)
3517 match opt with
3518 | None -> m_prev_uioh
3519 | Some uioh -> uioh
3521 method motion _ y =
3522 match state.mstate with
3523 | Mscrolly ->
3524 let s = float (max 0 (y - conf.scrollh)) /. float conf.winh in
3525 let first = truncate (s *. float source#getitemcount) in
3526 let first = min source#getitemcount first in
3527 G.postRedisplay "listview motion";
3528 coe {< m_first = first; m_active = first >}
3529 | _ -> coe self
3531 method pmotion x y =
3532 if x < conf.winw - conf.scrollbw
3533 then
3534 let n =
3535 match self#elemunder y with
3536 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3537 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3539 let o =
3540 if n != m_active
3541 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3542 else self
3544 coe o
3545 else (
3546 Wsi.setcursor Wsi.CURSOR_INHERIT;
3547 coe self
3550 method infochanged _ = ()
3552 method scrollpw = (0, 0.0, 0.0)
3553 method scrollph =
3554 let nfs = fstate.fontsize + 1 in
3555 let y = m_first * nfs in
3556 let itemcount = source#getitemcount in
3557 let maxi = max 0 (itemcount - fstate.maxrows) in
3558 let maxy = maxi * nfs in
3559 let p, h = scrollph y maxy in
3560 conf.scrollbw, p, h
3562 method modehash = modehash
3563 end;;
3565 class outlinelistview ~source =
3566 object (self)
3567 inherit listview
3568 ~source:(source :> lvsource)
3569 ~trusted:false
3570 ~modehash:(findkeyhash conf "outline")
3571 as super
3573 method key key mask =
3574 let calcfirst first active =
3575 if active > first
3576 then
3577 let rows = active - first in
3578 let maxrows =
3579 if String.length state.text = 0
3580 then fstate.maxrows
3581 else fstate.maxrows - 2
3583 if rows > maxrows then active - maxrows else first
3584 else active
3586 let navigate incr =
3587 let active = m_active + incr in
3588 let active = bound active 0 (source#getitemcount - 1) in
3589 let first = calcfirst m_first active in
3590 G.postRedisplay "outline navigate";
3591 coe {< m_active = active; m_first = first >}
3593 let ctrl = Wsi.withctrl mask in
3594 match key with
3595 | 110 when ctrl -> (* ctrl-n *)
3596 source#narrow m_qsearch;
3597 G.postRedisplay "outline ctrl-n";
3598 coe {< m_first = 0; m_active = 0 >}
3600 | 117 when ctrl -> (* ctrl-u *)
3601 source#denarrow;
3602 G.postRedisplay "outline ctrl-u";
3603 state.text <- "";
3604 coe {< m_first = 0; m_active = 0 >}
3606 | 108 when ctrl -> (* ctrl-l *)
3607 let first = max 0 (m_active - (fstate.maxrows / 2)) in
3608 G.postRedisplay "outline ctrl-l";
3609 coe {< m_first = first >}
3611 | 0xff9f | 0xffff -> (* delete *)
3612 source#remove m_active;
3613 G.postRedisplay "outline delete";
3614 let active = max 0 (m_active-1) in
3615 coe {< m_first = firstof m_first active;
3616 m_active = active >}
3618 | 0xff52 -> navigate ~-1 (* up *)
3619 | 0xff54 -> navigate 1 (* down *)
3620 | 0xff55 -> (* prior *)
3621 navigate ~-(fstate.maxrows)
3622 | 0xff56 -> (* next *)
3623 navigate fstate.maxrows
3625 | 0xff53 -> (* [ctrl-]right *)
3626 let o =
3627 if ctrl
3628 then (
3629 G.postRedisplay "outline ctrl right";
3630 {< m_pan = m_pan + 1 >}
3632 else self#updownlevel 1
3634 coe o
3636 | 0xff51 -> (* [ctrl-]left *)
3637 let o =
3638 if ctrl
3639 then (
3640 G.postRedisplay "outline ctrl left";
3641 {< m_pan = m_pan - 1 >}
3643 else self#updownlevel ~-1
3645 coe o
3647 | 0xff50 -> (* home *)
3648 G.postRedisplay "outline home";
3649 coe {< m_first = 0; m_active = 0 >}
3651 | 0xff57 -> (* end *)
3652 let active = source#getitemcount - 1 in
3653 let first = max 0 (active - fstate.maxrows) in
3654 G.postRedisplay "outline end";
3655 coe {< m_active = active; m_first = first >}
3657 | _ -> super#key key mask
3660 let outlinesource usebookmarks =
3661 let empty = [||] in
3662 (object
3663 inherit lvsourcebase
3664 val mutable m_items = empty
3665 val mutable m_orig_items = empty
3666 val mutable m_prev_items = empty
3667 val mutable m_narrow_pattern = ""
3668 val mutable m_hadremovals = false
3670 method getitemcount =
3671 Array.length m_items + (if m_hadremovals then 1 else 0)
3673 method getitem n =
3674 if n == Array.length m_items && m_hadremovals
3675 then
3676 ("[Confirm removal]", 0)
3677 else
3678 let s, n, _ = m_items.(n) in
3679 (s, n)
3681 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
3682 ignore (uioh, first, qsearch);
3683 let confrimremoval = m_hadremovals && active = Array.length m_items in
3684 let items =
3685 if String.length m_narrow_pattern = 0
3686 then m_orig_items
3687 else m_items
3689 if not cancel
3690 then (
3691 if not confrimremoval
3692 then(
3693 let _, _, anchor = m_items.(active) in
3694 gotoghyll (getanchory anchor);
3695 m_items <- items;
3697 else (
3698 state.bookmarks <- Array.to_list m_items;
3699 m_orig_items <- m_items;
3702 else m_items <- items;
3703 m_pan <- pan;
3704 None
3706 method hasaction _ = true
3708 method greetmsg =
3709 if Array.length m_items != Array.length m_orig_items
3710 then "Narrowed to " ^ m_narrow_pattern ^ " (ctrl-u to restore)"
3711 else ""
3713 method narrow pattern =
3714 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
3715 match reopt with
3716 | None -> ()
3717 | Some re ->
3718 let rec loop accu n =
3719 if n = -1
3720 then (
3721 m_narrow_pattern <- pattern;
3722 m_items <- Array.of_list accu
3724 else
3725 let (s, _, _) as o = m_items.(n) in
3726 let accu =
3727 if (try ignore (Str.search_forward re s 0); true
3728 with Not_found -> false)
3729 then o :: accu
3730 else accu
3732 loop accu (n-1)
3734 loop [] (Array.length m_items - 1)
3736 method denarrow =
3737 m_orig_items <- (
3738 if usebookmarks
3739 then Array.of_list state.bookmarks
3740 else state.outlines
3742 m_items <- m_orig_items
3744 method remove m =
3745 if usebookmarks
3746 then
3747 if m >= 0 && m < Array.length m_items
3748 then (
3749 m_hadremovals <- true;
3750 m_items <- Array.init (Array.length m_items - 1) (fun n ->
3751 let n = if n >= m then n+1 else n in
3752 m_items.(n)
3756 method reset anchor items =
3757 m_hadremovals <- false;
3758 if m_orig_items == empty || m_prev_items != items
3759 then (
3760 m_orig_items <- items;
3761 if String.length m_narrow_pattern = 0
3762 then m_items <- items;
3764 m_prev_items <- items;
3765 let rely = getanchory anchor in
3766 let active =
3767 let rec loop n best bestd =
3768 if n = Array.length m_items
3769 then best
3770 else
3771 let (_, _, anchor) = m_items.(n) in
3772 let orely = getanchory anchor in
3773 let d = abs (orely - rely) in
3774 if d < bestd
3775 then loop (n+1) n d
3776 else loop (n+1) best bestd
3778 loop 0 ~-1 max_int
3780 m_active <- active;
3781 m_first <- firstof m_first active
3782 end)
3785 let enterselector usebookmarks =
3786 let source = outlinesource usebookmarks in
3787 fun errmsg ->
3788 let outlines =
3789 if usebookmarks
3790 then Array.of_list state.bookmarks
3791 else state.outlines
3793 if Array.length outlines = 0
3794 then (
3795 showtext ' ' errmsg;
3797 else (
3798 state.text <- source#greetmsg;
3799 Wsi.setcursor Wsi.CURSOR_INHERIT;
3800 let anchor = getanchor () in
3801 source#reset anchor outlines;
3802 state.uioh <- coe (new outlinelistview ~source);
3803 G.postRedisplay "enter selector";
3807 let enteroutlinemode =
3808 let f = enterselector false in
3809 fun ()-> f "Document has no outline";
3812 let enterbookmarkmode =
3813 let f = enterselector true in
3814 fun () -> f "Document has no bookmarks (yet)";
3817 let color_of_string s =
3818 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
3819 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3823 let color_to_string (r, g, b) =
3824 let r = truncate (r *. 256.0)
3825 and g = truncate (g *. 256.0)
3826 and b = truncate (b *. 256.0) in
3827 Printf.sprintf "%d/%d/%d" r g b
3830 let irect_of_string s =
3831 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3834 let irect_to_string (x0,y0,x1,y1) =
3835 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
3838 let makecheckers () =
3839 (* Appropriated from lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3840 following to say:
3841 converted by Issac Trotts. July 25, 2002 *)
3842 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
3843 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
3844 let id = GlTex.gen_texture () in
3845 GlTex.bind_texture `texture_2d id;
3846 GlPix.store (`unpack_alignment 1);
3847 GlTex.image2d image;
3848 List.iter (GlTex.parameter ~target:`texture_2d)
3849 [ `wrap_s `repeat;
3850 `wrap_t `repeat;
3851 `mag_filter `nearest;
3852 `min_filter `nearest ];
3856 let setcheckers enabled =
3857 match state.texid with
3858 | None ->
3859 if enabled then state.texid <- Some (makecheckers ())
3861 | Some texid ->
3862 if not enabled
3863 then (
3864 GlTex.delete_texture texid;
3865 state.texid <- None;
3869 let int_of_string_with_suffix s =
3870 let l = String.length s in
3871 let s1, shift =
3872 if l > 1
3873 then
3874 let suffix = Char.lowercase s.[l-1] in
3875 match suffix with
3876 | 'k' -> String.sub s 0 (l-1), 10
3877 | 'm' -> String.sub s 0 (l-1), 20
3878 | 'g' -> String.sub s 0 (l-1), 30
3879 | _ -> s, 0
3880 else s, 0
3882 let n = int_of_string s1 in
3883 let m = n lsl shift in
3884 if m < 0 || m < n
3885 then raise (Failure "value too large")
3886 else m
3889 let string_with_suffix_of_int n =
3890 if n = 0
3891 then "0"
3892 else
3893 let n, s =
3894 if n land ((1 lsl 30) - 1) = 0
3895 then n lsr 30, "G"
3896 else (
3897 if n land ((1 lsl 20) - 1) = 0
3898 then n lsr 20, "M"
3899 else (
3900 if n land ((1 lsl 10) - 1) = 0
3901 then n lsr 10, "K"
3902 else n, ""
3906 let rec loop s n =
3907 let h = n mod 1000 in
3908 let n = n / 1000 in
3909 if n = 0
3910 then string_of_int h ^ s
3911 else (
3912 let s = Printf.sprintf "_%03d%s" h s in
3913 loop s n
3916 loop "" n ^ s;
3919 let defghyllscroll = (40, 8, 32);;
3920 let ghyllscroll_of_string s =
3921 let (n, a, b) as nab =
3922 if s = "default"
3923 then defghyllscroll
3924 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
3926 if n <= a || n <= b || a >= b
3927 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3928 nab;
3931 let ghyllscroll_to_string ((n, a, b) as nab) =
3932 if nab = defghyllscroll
3933 then "default"
3934 else Printf.sprintf "%d,%d,%d" n a b;
3937 let describe_location () =
3938 let f (fn, _) l =
3939 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
3941 let fn, ln = List.fold_left f (-1, -1) state.layout in
3942 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
3943 let percent =
3944 if maxy <= 0
3945 then 100.
3946 else (100. *. (float state.y /. float maxy))
3948 if fn = ln
3949 then
3950 Printf.sprintf "page %d of %d [%.2f%%]"
3951 (fn+1) state.pagecount percent
3952 else
3953 Printf.sprintf
3954 "pages %d-%d of %d [%.2f%%]"
3955 (fn+1) (ln+1) state.pagecount percent
3958 let setpresentationmode v =
3959 let (n, _, _) = getanchor () in
3960 let _, h = getpageyh n in
3961 let ips = if conf.presentation then calcips h else conf.interpagespace in
3962 state.anchor <- (n, 0.0, float ips);
3963 conf.presentation <- v;
3964 if conf.presentation
3965 then (
3966 if not conf.scrollbarinpm
3967 then state.scrollw <- 0;
3969 else state.scrollw <- conf.scrollbw;
3970 represent ();
3973 let enterinfomode =
3974 let btos b = if b then "\xe2\x88\x9a" else "" in
3975 let showextended = ref false in
3976 let leave mode = function
3977 | Confirm -> state.mode <- mode
3978 | Cancel -> state.mode <- mode in
3979 let src =
3980 (object
3981 val mutable m_first_time = true
3982 val mutable m_l = []
3983 val mutable m_a = [||]
3984 val mutable m_prev_uioh = nouioh
3985 val mutable m_prev_mode = View
3987 inherit lvsourcebase
3989 method reset prev_mode prev_uioh =
3990 m_a <- Array.of_list (List.rev m_l);
3991 m_l <- [];
3992 m_prev_mode <- prev_mode;
3993 m_prev_uioh <- prev_uioh;
3994 if m_first_time
3995 then (
3996 let rec loop n =
3997 if n >= Array.length m_a
3998 then ()
3999 else
4000 match m_a.(n) with
4001 | _, _, _, Action _ -> m_active <- n
4002 | _ -> loop (n+1)
4004 loop 0;
4005 m_first_time <- false;
4008 method int name get set =
4009 m_l <-
4010 (name, `int get, 1, Action (
4011 fun u ->
4012 let ondone s =
4013 try set (int_of_string s)
4014 with exn ->
4015 state.text <- Printf.sprintf "bad integer `%s': %s"
4016 s (Printexc.to_string exn)
4018 state.text <- "";
4019 let te = name ^ ": ", "", None, intentry, ondone, true in
4020 state.mode <- Textentry (te, leave m_prev_mode);
4022 )) :: m_l
4024 method int_with_suffix name get set =
4025 m_l <-
4026 (name, `intws get, 1, Action (
4027 fun u ->
4028 let ondone s =
4029 try set (int_of_string_with_suffix s)
4030 with exn ->
4031 state.text <- Printf.sprintf "bad integer `%s': %s"
4032 s (Printexc.to_string exn)
4034 state.text <- "";
4035 let te =
4036 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4038 state.mode <- Textentry (te, leave m_prev_mode);
4040 )) :: m_l
4042 method bool ?(offset=1) ?(btos=btos) name get set =
4043 m_l <-
4044 (name, `bool (btos, get), offset, Action (
4045 fun u ->
4046 let v = get () in
4047 set (not v);
4049 )) :: m_l
4051 method color name get set =
4052 m_l <-
4053 (name, `color get, 1, Action (
4054 fun u ->
4055 let invalid = (nan, nan, nan) in
4056 let ondone s =
4057 let c =
4058 try color_of_string s
4059 with exn ->
4060 state.text <- Printf.sprintf "bad color `%s': %s"
4061 s (Printexc.to_string exn);
4062 invalid
4064 if c <> invalid
4065 then set c;
4067 let te = name ^ ": ", "", None, textentry, ondone, true in
4068 state.text <- color_to_string (get ());
4069 state.mode <- Textentry (te, leave m_prev_mode);
4071 )) :: m_l
4073 method string name get set =
4074 m_l <-
4075 (name, `string get, 1, Action (
4076 fun u ->
4077 let ondone s = set s in
4078 let te = name ^ ": ", "", None, textentry, ondone, true in
4079 state.mode <- Textentry (te, leave m_prev_mode);
4081 )) :: m_l
4083 method colorspace name get set =
4084 m_l <-
4085 (name, `string get, 1, Action (
4086 fun _ ->
4087 let source =
4088 let vals = [| "rgb"; "bgr"; "gray" |] in
4089 (object
4090 inherit lvsourcebase
4092 initializer
4093 m_active <- int_of_colorspace conf.colorspace;
4094 m_first <- 0;
4096 method getitemcount = Array.length vals
4097 method getitem n = (vals.(n), 0)
4098 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4099 ignore (uioh, first, pan, qsearch);
4100 if not cancel then set active;
4101 None
4102 method hasaction _ = true
4103 end)
4105 state.text <- "";
4106 let modehash = findkeyhash conf "info" in
4107 coe (new listview ~source ~trusted:true ~modehash)
4108 )) :: m_l
4110 method caption s offset =
4111 m_l <- (s, `empty, offset, Noaction) :: m_l
4113 method caption2 s f offset =
4114 m_l <- (s, `string f, offset, Noaction) :: m_l
4116 method getitemcount = Array.length m_a
4118 method getitem n =
4119 let tostr = function
4120 | `int f -> string_of_int (f ())
4121 | `intws f -> string_with_suffix_of_int (f ())
4122 | `string f -> f ()
4123 | `color f -> color_to_string (f ())
4124 | `bool (btos, f) -> btos (f ())
4125 | `empty -> ""
4127 let name, t, offset, _ = m_a.(n) in
4128 ((let s = tostr t in
4129 if String.length s > 0
4130 then Printf.sprintf "%s\t%s" name s
4131 else name),
4132 offset)
4134 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4135 let uiohopt =
4136 if not cancel
4137 then (
4138 m_qsearch <- qsearch;
4139 let uioh =
4140 match m_a.(active) with
4141 | _, _, _, Action f -> f uioh
4142 | _ -> uioh
4144 Some uioh
4146 else None
4148 m_active <- active;
4149 m_first <- first;
4150 m_pan <- pan;
4151 uiohopt
4153 method hasaction n =
4154 match m_a.(n) with
4155 | _, _, _, Action _ -> true
4156 | _ -> false
4157 end)
4159 let rec fillsrc prevmode prevuioh =
4160 let sep () = src#caption "" 0 in
4161 let colorp name get set =
4162 src#string name
4163 (fun () -> color_to_string (get ()))
4164 (fun v ->
4166 let c = color_of_string v in
4167 set c
4168 with exn ->
4169 state.text <- Printf.sprintf "bad color `%s': %s"
4170 v (Printexc.to_string exn);
4173 let oldmode = state.mode in
4174 let birdseye = isbirdseye state.mode in
4176 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4178 src#bool "presentation mode"
4179 (fun () -> conf.presentation)
4180 (fun v -> setpresentationmode v);
4182 src#bool "ignore case in searches"
4183 (fun () -> conf.icase)
4184 (fun v -> conf.icase <- v);
4186 src#bool "preload"
4187 (fun () -> conf.preload)
4188 (fun v -> conf.preload <- v);
4190 src#bool "highlight links"
4191 (fun () -> conf.hlinks)
4192 (fun v -> conf.hlinks <- v);
4194 src#bool "under info"
4195 (fun () -> conf.underinfo)
4196 (fun v -> conf.underinfo <- v);
4198 src#bool "persistent bookmarks"
4199 (fun () -> conf.savebmarks)
4200 (fun v -> conf.savebmarks <- v);
4202 src#bool "proportional display"
4203 (fun () -> conf.proportional)
4204 (fun v -> reqlayout conf.angle v);
4206 src#bool "trim margins"
4207 (fun () -> conf.trimmargins)
4208 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4210 src#bool "persistent location"
4211 (fun () -> conf.jumpback)
4212 (fun v -> conf.jumpback <- v);
4214 sep ();
4215 src#int "inter-page space"
4216 (fun () -> conf.interpagespace)
4217 (fun n ->
4218 conf.interpagespace <- n;
4219 docolumns conf.columns;
4220 let pageno, py =
4221 match state.layout with
4222 | [] -> 0, 0
4223 | l :: _ ->
4224 l.pageno, l.pagey
4226 state.maxy <- calcheight ();
4227 let y = getpagey pageno in
4228 gotoy (y + py)
4231 src#int "page bias"
4232 (fun () -> conf.pagebias)
4233 (fun v -> conf.pagebias <- v);
4235 src#int "scroll step"
4236 (fun () -> conf.scrollstep)
4237 (fun n -> conf.scrollstep <- n);
4239 src#int "horizontal scroll step"
4240 (fun () -> conf.hscrollstep)
4241 (fun v -> conf.hscrollstep <- v);
4243 src#int "auto scroll step"
4244 (fun () ->
4245 match state.autoscroll with
4246 | Some step -> step
4247 | _ -> conf.autoscrollstep)
4248 (fun n ->
4249 if state.autoscroll <> None
4250 then state.autoscroll <- Some n;
4251 conf.autoscrollstep <- n);
4253 src#int "zoom"
4254 (fun () -> truncate (conf.zoom *. 100.))
4255 (fun v -> setzoom ((float v) /. 100.));
4257 src#int "rotation"
4258 (fun () -> conf.angle)
4259 (fun v -> reqlayout v conf.proportional);
4261 src#int "scroll bar width"
4262 (fun () -> state.scrollw)
4263 (fun v ->
4264 state.scrollw <- v;
4265 conf.scrollbw <- v;
4266 reshape conf.winw conf.winh;
4269 src#int "scroll handle height"
4270 (fun () -> conf.scrollh)
4271 (fun v -> conf.scrollh <- v;);
4273 src#int "thumbnail width"
4274 (fun () -> conf.thumbw)
4275 (fun v ->
4276 conf.thumbw <- min 4096 v;
4277 match oldmode with
4278 | Birdseye beye ->
4279 leavebirdseye beye false;
4280 enterbirdseye ()
4281 | _ -> ()
4284 let mode = state.mode in
4285 src#string "columns"
4286 (fun () ->
4287 match conf.columns with
4288 | Csingle _ -> "1"
4289 | Cmulti (multi, _) -> multicolumns_to_string multi
4290 | Csplit (count, _) -> "-" ^ string_of_int count
4292 (fun v ->
4293 let n, a, b = multicolumns_of_string v in
4294 setcolumns mode n a b);
4296 sep ();
4297 src#caption "Presentation mode" 0;
4298 src#bool "scrollbar visible"
4299 (fun () -> conf.scrollbarinpm)
4300 (fun v ->
4301 if v != conf.scrollbarinpm
4302 then (
4303 conf.scrollbarinpm <- v;
4304 if conf.presentation
4305 then (
4306 state.scrollw <- if v then conf.scrollbw else 0;
4307 reshape conf.winw conf.winh;
4312 sep ();
4313 src#caption "Pixmap cache" 0;
4314 src#int_with_suffix "size (advisory)"
4315 (fun () -> conf.memlimit)
4316 (fun v -> conf.memlimit <- v);
4318 src#caption2 "used"
4319 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4320 (string_with_suffix_of_int state.memused)
4321 (Hashtbl.length state.tilemap)) 1;
4323 sep ();
4324 src#caption "Layout" 0;
4325 src#caption2 "Dimension"
4326 (fun () ->
4327 Printf.sprintf "%dx%d (virtual %dx%d)"
4328 conf.winw conf.winh
4329 state.w state.maxy)
4331 if conf.debug
4332 then
4333 src#caption2 "Position" (fun () ->
4334 Printf.sprintf "%dx%d" state.x state.y
4336 else
4337 src#caption2 "Visible" (fun () -> describe_location ()) 1
4340 sep ();
4341 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4342 "Save these parameters as global defaults at exit"
4343 (fun () -> conf.bedefault)
4344 (fun v -> conf.bedefault <- v)
4347 sep ();
4348 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4349 src#bool ~offset:0 ~btos "Extended parameters"
4350 (fun () -> !showextended)
4351 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4352 if !showextended
4353 then (
4354 src#bool "checkers"
4355 (fun () -> conf.checkers)
4356 (fun v -> conf.checkers <- v; setcheckers v);
4357 src#bool "update cursor"
4358 (fun () -> conf.updatecurs)
4359 (fun v -> conf.updatecurs <- v);
4360 src#bool "verbose"
4361 (fun () -> conf.verbose)
4362 (fun v -> conf.verbose <- v);
4363 src#bool "invert colors"
4364 (fun () -> conf.invert)
4365 (fun v -> conf.invert <- v);
4366 src#bool "max fit"
4367 (fun () -> conf.maxhfit)
4368 (fun v -> conf.maxhfit <- v);
4369 src#bool "redirect stderr"
4370 (fun () -> conf.redirectstderr)
4371 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4372 src#string "uri launcher"
4373 (fun () -> conf.urilauncher)
4374 (fun v -> conf.urilauncher <- v);
4375 src#string "path launcher"
4376 (fun () -> conf.pathlauncher)
4377 (fun v -> conf.pathlauncher <- v);
4378 src#string "tile size"
4379 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4380 (fun v ->
4382 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4383 conf.tilew <- max 64 w;
4384 conf.tileh <- max 64 h;
4385 flushtiles ();
4386 with exn ->
4387 state.text <- Printf.sprintf "bad tile size `%s': %s"
4388 v (Printexc.to_string exn));
4389 src#int "texture count"
4390 (fun () -> conf.texcount)
4391 (fun v ->
4392 if realloctexts v
4393 then conf.texcount <- v
4394 else showtext '!' " Failed to set texture count please retry later"
4396 src#int "slice height"
4397 (fun () -> conf.sliceheight)
4398 (fun v ->
4399 conf.sliceheight <- v;
4400 wcmd "sliceh %d" conf.sliceheight;
4402 src#int "anti-aliasing level"
4403 (fun () -> conf.aalevel)
4404 (fun v ->
4405 conf.aalevel <- bound v 0 8;
4406 state.anchor <- getanchor ();
4407 opendoc state.path state.password;
4409 src#string "page scroll scaling factor"
4410 (fun () -> string_of_float conf.pgscale)
4411 (fun v ->
4413 let s = float_of_string v in
4414 conf.pgscale <- s
4415 with exn ->
4416 state.text <- Printf.sprintf
4417 "bad page scroll scaling factor `%s': %s"
4418 v (Printexc.to_string exn)
4421 src#int "ui font size"
4422 (fun () -> fstate.fontsize)
4423 (fun v -> setfontsize (bound v 5 100));
4424 src#int "hint font size"
4425 (fun () -> conf.hfsize)
4426 (fun v -> conf.hfsize <- bound v 5 100);
4427 colorp "background color"
4428 (fun () -> conf.bgcolor)
4429 (fun v -> conf.bgcolor <- v);
4430 src#bool "crop hack"
4431 (fun () -> conf.crophack)
4432 (fun v -> conf.crophack <- v);
4433 src#string "trim fuzz"
4434 (fun () -> irect_to_string conf.trimfuzz)
4435 (fun v ->
4437 conf.trimfuzz <- irect_of_string v;
4438 if conf.trimmargins
4439 then settrim true conf.trimfuzz;
4440 with exn ->
4441 state.text <- Printf.sprintf "bad irect `%s': %s"
4442 v (Printexc.to_string exn)
4444 src#string "throttle"
4445 (fun () ->
4446 match conf.maxwait with
4447 | None -> "show place holder if page is not ready"
4448 | Some time ->
4449 if time = infinity
4450 then "wait for page to fully render"
4451 else
4452 "wait " ^ string_of_float time
4453 ^ " seconds before showing placeholder"
4455 (fun v ->
4457 let f = float_of_string v in
4458 if f <= 0.0
4459 then conf.maxwait <- None
4460 else conf.maxwait <- Some f
4461 with exn ->
4462 state.text <- Printf.sprintf "bad time `%s': %s"
4463 v (Printexc.to_string exn)
4465 src#string "ghyll scroll"
4466 (fun () ->
4467 match conf.ghyllscroll with
4468 | None -> ""
4469 | Some nab -> ghyllscroll_to_string nab
4471 (fun v ->
4473 let gs =
4474 if String.length v = 0
4475 then None
4476 else Some (ghyllscroll_of_string v)
4478 conf.ghyllscroll <- gs
4479 with exn ->
4480 state.text <- Printf.sprintf "bad ghyll `%s': %s"
4481 v (Printexc.to_string exn)
4483 src#string "selection command"
4484 (fun () -> conf.selcmd)
4485 (fun v -> conf.selcmd <- v);
4486 src#colorspace "color space"
4487 (fun () -> colorspace_to_string conf.colorspace)
4488 (fun v ->
4489 conf.colorspace <- colorspace_of_int v;
4490 wcmd "cs %d" v;
4491 load state.layout;
4493 if pbousable ()
4494 then
4495 src#bool "use PBO"
4496 (fun () -> conf.usepbo)
4497 (fun v -> conf.usepbo <- v);
4500 sep ();
4501 src#caption "Document" 0;
4502 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4503 src#caption2 "Pages"
4504 (fun () -> string_of_int state.pagecount) 1;
4505 src#caption2 "Dimensions"
4506 (fun () -> string_of_int (List.length state.pdims)) 1;
4507 if conf.trimmargins
4508 then (
4509 sep ();
4510 src#caption "Trimmed margins" 0;
4511 src#caption2 "Dimensions"
4512 (fun () -> string_of_int (List.length state.pdims)) 1;
4515 sep ();
4516 src#caption "OpenGL" 0;
4517 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4518 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4519 src#reset prevmode prevuioh;
4521 fun () ->
4522 state.text <- "";
4523 let prevmode = state.mode
4524 and prevuioh = state.uioh in
4525 fillsrc prevmode prevuioh;
4526 let source = (src :> lvsource) in
4527 let modehash = findkeyhash conf "info" in
4528 state.uioh <- coe (object (self)
4529 inherit listview ~source ~trusted:true ~modehash as super
4530 val mutable m_prevmemused = 0
4531 method infochanged = function
4532 | Memused ->
4533 if m_prevmemused != state.memused
4534 then (
4535 m_prevmemused <- state.memused;
4536 G.postRedisplay "memusedchanged";
4538 | Pdim -> G.postRedisplay "pdimchanged"
4539 | Docinfo -> fillsrc prevmode prevuioh
4541 method key key mask =
4542 if not (Wsi.withctrl mask)
4543 then
4544 match key with
4545 | 0xff51 -> coe (self#updownlevel ~-1)
4546 | 0xff53 -> coe (self#updownlevel 1)
4547 | _ -> super#key key mask
4548 else super#key key mask
4549 end);
4550 G.postRedisplay "info";
4553 let enterhelpmode =
4554 let source =
4555 (object
4556 inherit lvsourcebase
4557 method getitemcount = Array.length state.help
4558 method getitem n =
4559 let s, l, _ = state.help.(n) in
4560 (s, l)
4562 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4563 let optuioh =
4564 if not cancel
4565 then (
4566 m_qsearch <- qsearch;
4567 match state.help.(active) with
4568 | _, _, Action f -> Some (f uioh)
4569 | _ -> Some (uioh)
4571 else None
4573 m_active <- active;
4574 m_first <- first;
4575 m_pan <- pan;
4576 optuioh
4578 method hasaction n =
4579 match state.help.(n) with
4580 | _, _, Action _ -> true
4581 | _ -> false
4583 initializer
4584 m_active <- -1
4585 end)
4586 in fun () ->
4587 let modehash = findkeyhash conf "help" in
4588 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4589 G.postRedisplay "help";
4592 let entermsgsmode =
4593 let msgsource =
4594 let re = Str.regexp "[\r\n]" in
4595 (object
4596 inherit lvsourcebase
4597 val mutable m_items = [||]
4599 method getitemcount = 1 + Array.length m_items
4601 method getitem n =
4602 if n = 0
4603 then "[Clear]", 0
4604 else m_items.(n-1), 0
4606 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4607 ignore uioh;
4608 if not cancel
4609 then (
4610 if active = 0
4611 then Buffer.clear state.errmsgs;
4612 m_qsearch <- qsearch;
4614 m_active <- active;
4615 m_first <- first;
4616 m_pan <- pan;
4617 None
4619 method hasaction n =
4620 n = 0
4622 method reset =
4623 state.newerrmsgs <- false;
4624 let l = Str.split re (Buffer.contents state.errmsgs) in
4625 m_items <- Array.of_list l
4627 initializer
4628 m_active <- 0
4629 end)
4630 in fun () ->
4631 state.text <- "";
4632 msgsource#reset;
4633 let source = (msgsource :> lvsource) in
4634 let modehash = findkeyhash conf "listview" in
4635 state.uioh <- coe (object
4636 inherit listview ~source ~trusted:false ~modehash as super
4637 method display =
4638 if state.newerrmsgs
4639 then msgsource#reset;
4640 super#display
4641 end);
4642 G.postRedisplay "msgs";
4645 let quickbookmark ?title () =
4646 match state.layout with
4647 | [] -> ()
4648 | l :: _ ->
4649 let title =
4650 match title with
4651 | None ->
4652 let sec = Unix.gettimeofday () in
4653 let tm = Unix.localtime sec in
4654 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4655 (l.pageno+1)
4656 tm.Unix.tm_mday
4657 tm.Unix.tm_mon
4658 (tm.Unix.tm_year + 1900)
4659 tm.Unix.tm_hour
4660 tm.Unix.tm_min
4661 | Some title -> title
4663 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4666 let doreshape w h =
4667 state.fullscreen <- None;
4668 Wsi.reshape w h;
4671 let setautoscrollspeed step goingdown =
4672 let incr = max 1 ((abs step) / 2) in
4673 let incr = if goingdown then incr else -incr in
4674 let astep = step + incr in
4675 state.autoscroll <- Some astep;
4678 let gotounder = function
4679 | Ulinkgoto (pageno, top) ->
4680 if pageno >= 0
4681 then (
4682 addnav ();
4683 gotopage1 pageno top;
4686 | Ulinkuri s ->
4687 gotouri s
4689 | Uremote (filename, pageno) ->
4690 let path =
4691 if Sys.file_exists filename
4692 then filename
4693 else
4694 let dir = Filename.dirname state.path in
4695 let path = Filename.concat dir filename in
4696 if Sys.file_exists path
4697 then path
4698 else ""
4700 if String.length path > 0
4701 then (
4702 let anchor = getanchor () in
4703 let ranchor = state.path, state.password, anchor in
4704 state.anchor <- (pageno, 0.0, 0.0);
4705 state.ranchors <- ranchor :: state.ranchors;
4706 opendoc path "";
4708 else showtext '!' ("Could not find " ^ filename)
4710 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4713 let canpan () =
4714 match conf.columns with
4715 | Csplit _ -> true
4716 | _ -> conf.zoom > 1.0
4719 let viewkeyboard key mask =
4720 let enttext te =
4721 let mode = state.mode in
4722 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4723 state.text <- "";
4724 enttext ();
4725 G.postRedisplay "view:enttext"
4727 let ctrl = Wsi.withctrl mask in
4728 let existsinrow pageno (columns, coverA, coverB) p =
4729 let last = ((pageno - coverA) mod columns) + columns in
4730 let rec any = function
4731 | [] -> false
4732 | l :: rest ->
4733 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4734 then p l
4735 else (
4736 if not (p l)
4737 then (if l.pageno = last then false else any rest)
4738 else true
4741 any state.layout
4743 match key with
4744 | 81 -> (* Q *)
4745 exit 0
4747 | 0xff63 -> (* insert *)
4748 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4749 then (
4750 state.mode <- LinkNav (Ltgendir 0);
4751 gotoy state.y;
4753 else showtext '!' "Keyboard link navigation does not work under rotation"
4755 | 0xff1b | 113 -> (* escape / q *)
4756 begin match state.mstate with
4757 | Mzoomrect _ ->
4758 state.mstate <- Mnone;
4759 Wsi.setcursor Wsi.CURSOR_INHERIT;
4760 G.postRedisplay "kill zoom rect";
4761 | _ ->
4762 begin match state.mode with
4763 | LinkNav _ ->
4764 state.mode <- View;
4765 G.postRedisplay "esc leave linknav"
4766 | _ ->
4767 match state.ranchors with
4768 | [] -> raise Quit
4769 | (path, password, anchor) :: rest ->
4770 state.ranchors <- rest;
4771 state.anchor <- anchor;
4772 opendoc path password
4773 end;
4774 end;
4776 | 0xff08 -> (* backspace *)
4777 gotoghyll (getnav ~-1)
4779 | 111 -> (* o *)
4780 enteroutlinemode ()
4782 | 117 -> (* u *)
4783 state.rects <- [];
4784 state.text <- "";
4785 G.postRedisplay "dehighlight";
4787 | 47 | 63 -> (* / ? *)
4788 let ondone isforw s =
4789 cbput state.hists.pat s;
4790 state.searchpattern <- s;
4791 search s isforw
4793 let s = String.create 1 in
4794 s.[0] <- Char.chr key;
4795 enttext (s, "", Some (onhist state.hists.pat),
4796 textentry, ondone (key = 47), true)
4798 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4799 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4800 setzoom (conf.zoom +. incr)
4802 | 43 | 0xffab -> (* + *)
4803 let ondone s =
4804 let n =
4805 try int_of_string s with exc ->
4806 state.text <- Printf.sprintf "bad integer `%s': %s"
4807 s (Printexc.to_string exc);
4808 max_int
4810 if n != max_int
4811 then (
4812 conf.pagebias <- n;
4813 state.text <- "page bias is now " ^ string_of_int n;
4816 enttext ("page bias: ", "", None, intentry, ondone, true)
4818 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4819 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4820 setzoom (max 0.01 (conf.zoom -. decr))
4822 | 45 | 0xffad -> (* - *)
4823 let ondone msg = state.text <- msg in
4824 enttext (
4825 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4826 optentry state.mode, ondone, true
4829 | 48 when ctrl -> (* ctrl-0 *)
4830 setzoom 1.0
4832 | 49 when ctrl -> (* ctrl-1 *)
4833 let cols =
4834 match conf.columns with
4835 | Csingle _ | Cmulti _ -> 1
4836 | Csplit (n, _) -> n
4838 let zoom = zoomforh conf.winw conf.winh state.scrollw cols in
4839 if zoom < 1.0
4840 then setzoom zoom
4842 | 0xffc6 -> (* f9 *)
4843 togglebirdseye ()
4845 | 57 when ctrl -> (* ctrl-9 *)
4846 togglebirdseye ()
4848 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4849 when not ctrl -> (* 0..9 *)
4850 let ondone s =
4851 let n =
4852 try int_of_string s with exc ->
4853 state.text <- Printf.sprintf "bad integer `%s': %s"
4854 s (Printexc.to_string exc);
4857 if n >= 0
4858 then (
4859 addnav ();
4860 cbput state.hists.pag (string_of_int n);
4861 gotopage1 (n + conf.pagebias - 1) 0;
4864 let pageentry text key =
4865 match Char.unsafe_chr key with
4866 | 'g' -> TEdone text
4867 | _ -> intentry text key
4869 let text = "x" in text.[0] <- Char.chr key;
4870 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4872 | 98 -> (* b *)
4873 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
4874 reshape conf.winw conf.winh;
4876 | 108 -> (* l *)
4877 conf.hlinks <- not conf.hlinks;
4878 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4879 G.postRedisplay "toggle highlightlinks";
4881 | 70 -> (* F *)
4882 state.glinks <- true;
4883 let mode = state.mode in
4884 state.mode <- Textentry (
4885 (":", "", None, linknentry, linkndone gotounder, false),
4886 (fun _ ->
4887 state.glinks <- false;
4888 state.mode <- mode)
4890 state.text <- "";
4891 G.postRedisplay "view:linkent(F)"
4893 | 121 -> (* y *)
4894 state.glinks <- true;
4895 let mode = state.mode in
4896 state.mode <- Textentry (
4897 (":", "", None, linknentry, linkndone (fun under ->
4898 match Ne.pipe () with
4899 | Ne.Exn exn ->
4900 showtext '!' (Printf.sprintf "pipe failed: %s"
4901 (Printexc.to_string exn));
4902 | Ne.Res (r, w) ->
4903 let popened =
4904 try popen conf.selcmd [r, 0; w, -1]; true
4905 with exn ->
4906 showtext '!'
4907 (Printf.sprintf "failed to execute %s: %s"
4908 conf.selcmd (Printexc.to_string exn));
4909 false
4911 let clo cap fd =
4912 Ne.clo fd (fun msg ->
4913 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
4916 let s = undertext under in
4917 if popened
4918 then
4919 (try
4920 let l = String.length s in
4921 let n = Unix.write w s 0 l in
4922 if n != l
4923 then
4924 showtext '!'
4925 (Printf.sprintf
4926 "failed to write %d characters to sel pipe, wrote %d"
4929 with exn ->
4930 showtext '!'
4931 (Printf.sprintf "failed to write to sel pipe: %s"
4932 (Printexc.to_string exn)
4935 else dolog "%s" s;
4936 clo "pipe/r" r;
4937 clo "pipe/w" w;
4938 ), false
4940 fun _ ->
4941 state.glinks <- false;
4942 state.mode <- mode
4944 state.text <- "";
4945 G.postRedisplay "view:linkent"
4947 | 97 -> (* a *)
4948 begin match state.autoscroll with
4949 | Some step ->
4950 conf.autoscrollstep <- step;
4951 state.autoscroll <- None
4952 | None ->
4953 if conf.autoscrollstep = 0
4954 then state.autoscroll <- Some 1
4955 else state.autoscroll <- Some conf.autoscrollstep
4958 | 112 when ctrl -> (* ctrl-p *)
4959 launchpath ()
4961 | 80 -> (* P *)
4962 setpresentationmode (not conf.presentation);
4963 showtext ' ' ("presentation mode " ^
4964 if conf.presentation then "on" else "off");
4966 | 102 -> (* f *)
4967 begin match state.fullscreen with
4968 | None ->
4969 state.fullscreen <- Some (conf.winw, conf.winh);
4970 Wsi.fullscreen ()
4971 | Some (w, h) ->
4972 state.fullscreen <- None;
4973 doreshape w h
4976 | 112 | 78 -> (* p|N *)
4977 search state.searchpattern false
4979 | 110 | 0xffc0 -> (* n|F3 *)
4980 search state.searchpattern true
4982 | 116 -> (* t *)
4983 begin match state.layout with
4984 | [] -> ()
4985 | l :: _ ->
4986 gotoy_and_clear_text (getpagey l.pageno)
4989 | 32 -> (* space *)
4990 begin match state.layout with
4991 | [] -> ()
4992 | l :: rest ->
4993 match conf.columns with
4994 | Csingle _ ->
4995 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4996 then
4997 let y = clamp (pgscale conf.winh) in
4998 gotoghyll y
4999 else
5000 let pageno = min (l.pageno+1) (state.pagecount-1) in
5001 gotoghyll (getpagey pageno)
5002 | Cmulti ((c, _, _) as cl, _) ->
5003 if conf.presentation
5004 && (existsinrow l.pageno cl
5005 (fun l -> l.pageh > l.pagey + l.pagevh))
5006 then
5007 let y = clamp (pgscale conf.winh) in
5008 gotoghyll y
5009 else
5010 let pageno = min (l.pageno+c) (state.pagecount-1) in
5011 gotoghyll (getpagey pageno)
5012 | Csplit (n, _) ->
5013 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
5014 then
5015 let pagey, pageh = getpageyh l.pageno in
5016 let pagey = pagey + pageh * l.pagecol in
5017 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
5018 gotoghyll (pagey + pageh + ips)
5021 | 0xff9f | 0xffff -> (* delete *)
5022 begin match state.layout with
5023 | [] -> ()
5024 | l :: _ ->
5025 match conf.columns with
5026 | Csingle _ ->
5027 if conf.presentation && l.pagey != 0
5028 then
5029 gotoghyll (clamp (pgscale ~-(conf.winh)))
5030 else
5031 let pageno = max 0 (l.pageno-1) in
5032 gotoghyll (getpagey pageno)
5033 | Cmulti ((c, _, coverB) as cl, _) ->
5034 if conf.presentation &&
5035 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
5036 then
5037 gotoghyll (clamp (pgscale ~-(conf.winh)))
5038 else
5039 let decr =
5040 if l.pageno = state.pagecount - coverB
5041 then 1
5042 else c
5044 let pageno = max 0 (l.pageno-decr) in
5045 gotoghyll (getpagey pageno)
5046 | Csplit (n, _) ->
5047 let y =
5048 if l.pagecol = 0
5049 then
5050 if l.pageno = 0
5051 then l.pagey
5052 else
5053 let pageno = max 0 (l.pageno-1) in
5054 let pagey, pageh = getpageyh pageno in
5055 pagey + (n-1)*pageh
5056 else
5057 let pagey, pageh = getpageyh l.pageno in
5058 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5060 gotoghyll y
5063 | 61 -> (* = *)
5064 showtext ' ' (describe_location ());
5066 | 119 -> (* w *)
5067 begin match state.layout with
5068 | [] -> ()
5069 | l :: _ ->
5070 doreshape (l.pagew + state.scrollw) l.pageh;
5071 G.postRedisplay "w"
5074 | 39 -> (* ' *)
5075 enterbookmarkmode ()
5077 | 104 | 0xffbe -> (* h|F1 *)
5078 enterhelpmode ()
5080 | 105 -> (* i *)
5081 enterinfomode ()
5083 | 101 when conf.redirectstderr -> (* e *)
5084 entermsgsmode ()
5086 | 109 -> (* m *)
5087 let ondone s =
5088 match state.layout with
5089 | l :: _ -> state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5090 | _ -> ()
5092 enttext ("bookmark: ", "", None, textentry, ondone, true)
5094 | 126 -> (* ~ *)
5095 quickbookmark ();
5096 showtext ' ' "Quick bookmark added";
5098 | 122 -> (* z *)
5099 begin match state.layout with
5100 | l :: _ ->
5101 let rect = getpdimrect l.pagedimno in
5102 let w, h =
5103 if conf.crophack
5104 then
5105 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5106 truncate (1.2 *. (rect.(3) -. rect.(0))))
5107 else
5108 (truncate (rect.(1) -. rect.(0)),
5109 truncate (rect.(3) -. rect.(0)))
5111 let w = truncate ((float w)*.conf.zoom)
5112 and h = truncate ((float h)*.conf.zoom) in
5113 if w != 0 && h != 0
5114 then (
5115 state.anchor <- getanchor ();
5116 doreshape (w + state.scrollw) (h + conf.interpagespace)
5118 G.postRedisplay "z";
5120 | [] -> ()
5123 | 50 when ctrl -> (* ctrl-2 *)
5124 let maxw = getmaxw () in
5125 if maxw > 0.0
5126 then setzoom (maxw /. float conf.winw)
5128 | 60 | 62 -> (* < > *)
5129 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5131 | 91 | 93 -> (* [ ] *)
5132 conf.colorscale <-
5133 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5135 G.postRedisplay "brightness";
5137 | 99 when state.mode = View -> (* c *)
5138 let (c, a, b), z =
5139 match state.prevcolumns with
5140 | None -> (1, 0, 0), 1.0
5141 | Some (columns, z) ->
5142 let cab =
5143 match columns with
5144 | Csplit (c, _) -> -c, 0, 0
5145 | Cmulti ((c, a, b), _) -> c, a, b
5146 | Csingle _ -> 1, 0, 0
5148 cab, z
5150 setcolumns View c a b;
5151 setzoom z;
5153 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5154 setzoom state.prevzoom
5156 | 107 | 0xff52 -> (* k up *)
5157 begin match state.autoscroll with
5158 | None ->
5159 begin match state.mode with
5160 | Birdseye beye -> upbirdseye 1 beye
5161 | _ ->
5162 if ctrl
5163 then gotoy_and_clear_text (clamp ~-(conf.winh/2))
5164 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5166 | Some n ->
5167 setautoscrollspeed n false
5170 | 106 | 0xff54 -> (* j down *)
5171 begin match state.autoscroll with
5172 | None ->
5173 begin match state.mode with
5174 | Birdseye beye -> downbirdseye 1 beye
5175 | _ ->
5176 if ctrl
5177 then gotoy_and_clear_text (clamp (conf.winh/2))
5178 else gotoy_and_clear_text (clamp conf.scrollstep)
5180 | Some n ->
5181 setautoscrollspeed n true
5184 | 0xff51 | 0xff53 when not (Wsi.withalt mask) -> (* left / right *)
5185 if canpan ()
5186 then
5187 let dx =
5188 if ctrl
5189 then conf.winw / 2
5190 else conf.hscrollstep
5192 let dx = if key = 0xff51 then dx else -dx in
5193 state.x <- state.x + dx;
5194 gotoy_and_clear_text state.y
5195 else (
5196 state.text <- "";
5197 G.postRedisplay "lef/right"
5200 | 0xff55 -> (* prior *)
5201 let y =
5202 if ctrl
5203 then
5204 match state.layout with
5205 | [] -> state.y
5206 | l :: _ -> state.y - l.pagey
5207 else
5208 clamp (pgscale (-conf.winh))
5210 gotoghyll y
5212 | 0xff56 -> (* next *)
5213 let y =
5214 if ctrl
5215 then
5216 match List.rev state.layout with
5217 | [] -> state.y
5218 | l :: _ -> getpagey l.pageno
5219 else
5220 clamp (pgscale conf.winh)
5222 gotoghyll y
5224 | 103 | 0xff50 -> (* g home *)
5225 gotoghyll 0
5226 | 71 | 0xff57 -> (* G end *)
5227 gotoghyll (clamp state.maxy)
5229 | 0xff53 when Wsi.withalt mask -> (* alt-right *)
5230 gotoghyll (getnav 1)
5231 | 0xff51 when Wsi.withalt mask -> (* alt-left *)
5232 gotoghyll (getnav ~-1)
5234 | 114 -> (* r *)
5235 reload ()
5237 | 118 when conf.debug -> (* v *)
5238 state.rects <- [];
5239 List.iter (fun l ->
5240 match getopaque l.pageno with
5241 | None -> ()
5242 | Some opaque ->
5243 let x0, y0, x1, y1 = pagebbox opaque in
5244 let a,b = float x0, float y0 in
5245 let c,d = float x1, float y0 in
5246 let e,f = float x1, float y1 in
5247 let h,j = float x0, float y1 in
5248 let rect = (a,b,c,d,e,f,h,j) in
5249 debugrect rect;
5250 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5251 ) state.layout;
5252 G.postRedisplay "v";
5254 | _ ->
5255 vlog "huh? %s" (Wsi.keyname key)
5258 let linknavkeyboard key mask linknav =
5259 let getpage pageno =
5260 let rec loop = function
5261 | [] -> None
5262 | l :: _ when l.pageno = pageno -> Some l
5263 | _ :: rest -> loop rest
5264 in loop state.layout
5266 let doexact (pageno, n) =
5267 match getopaque pageno, getpage pageno with
5268 | Some opaque, Some l ->
5269 if key = 0xff0d
5270 then
5271 let under = getlink opaque n in
5272 G.postRedisplay "link gotounder";
5273 gotounder under;
5274 state.mode <- View;
5275 else
5276 let opt, dir =
5277 match key with
5278 | 0xff50 -> (* home *)
5279 Some (findlink opaque LDfirst), -1
5281 | 0xff57 -> (* end *)
5282 Some (findlink opaque LDlast), 1
5284 | 0xff51 -> (* left *)
5285 Some (findlink opaque (LDleft n)), -1
5287 | 0xff53 -> (* right *)
5288 Some (findlink opaque (LDright n)), 1
5290 | 0xff52 -> (* up *)
5291 Some (findlink opaque (LDup n)), -1
5293 | 0xff54 -> (* down *)
5294 Some (findlink opaque (LDdown n)), 1
5296 | _ -> None, 0
5298 let pwl l dir =
5299 begin match findpwl l.pageno dir with
5300 | Pwlnotfound -> ()
5301 | Pwl pageno ->
5302 let notfound dir =
5303 state.mode <- LinkNav (Ltgendir dir);
5304 let y, h = getpageyh pageno in
5305 let y =
5306 if dir < 0
5307 then y + h - conf.winh
5308 else y
5310 gotoy y
5312 begin match getopaque pageno, getpage pageno with
5313 | Some opaque, Some _ ->
5314 let link =
5315 let ld = if dir > 0 then LDfirst else LDlast in
5316 findlink opaque ld
5318 begin match link with
5319 | Lfound m ->
5320 showlinktype (getlink opaque m);
5321 state.mode <- LinkNav (Ltexact (pageno, m));
5322 G.postRedisplay "linknav jpage";
5323 | _ -> notfound dir
5324 end;
5325 | _ -> notfound dir
5326 end;
5327 end;
5329 begin match opt with
5330 | Some Lnotfound -> pwl l dir;
5331 | Some (Lfound m) ->
5332 if m = n
5333 then pwl l dir
5334 else (
5335 let _, y0, _, y1 = getlinkrect opaque m in
5336 if y0 < l.pagey
5337 then gotopage1 l.pageno y0
5338 else (
5339 let d = fstate.fontsize + 1 in
5340 if y1 - l.pagey > l.pagevh - d
5341 then gotopage1 l.pageno (y1 - conf.winh - state.hscrollh + d)
5342 else G.postRedisplay "linknav";
5344 showlinktype (getlink opaque m);
5345 state.mode <- LinkNav (Ltexact (l.pageno, m));
5348 | None -> viewkeyboard key mask
5349 end;
5350 | _ -> viewkeyboard key mask
5352 if key = 0xff63
5353 then (
5354 state.mode <- View;
5355 G.postRedisplay "leave linknav"
5357 else
5358 match linknav with
5359 | Ltgendir _ -> viewkeyboard key mask
5360 | Ltexact exact -> doexact exact
5363 let keyboard key mask =
5364 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5365 then wcmd "interrupt"
5366 else state.uioh <- state.uioh#key key mask
5369 let birdseyekeyboard key mask
5370 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5371 let incr =
5372 match conf.columns with
5373 | Csingle _ -> 1
5374 | Cmulti ((c, _, _), _) -> c
5375 | Csplit _ -> failwith "bird's eye split mode"
5377 let pgh layout = List.fold_left (fun m l -> max l.pageh m) conf.winh layout in
5378 match key with
5379 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5380 let y, h = getpageyh pageno in
5381 let top = (conf.winh - h) / 2 in
5382 gotoy (max 0 (y - top))
5383 | 0xff0d -> leavebirdseye beye false
5384 | 0xff1b -> leavebirdseye beye true (* escape *)
5385 | 0xff52 -> upbirdseye incr beye (* up *)
5386 | 0xff54 -> downbirdseye incr beye (* down *)
5387 | 0xff51 -> upbirdseye 1 beye (* left *)
5388 | 0xff53 -> downbirdseye 1 beye (* right *)
5390 | 0xff55 -> (* prior *)
5391 begin match state.layout with
5392 | l :: _ ->
5393 if l.pagey != 0
5394 then (
5395 state.mode <- Birdseye (
5396 oconf, leftx, l.pageno, hooverpageno, anchor
5398 gotopage1 l.pageno 0;
5400 else (
5401 let layout = layout (state.y-conf.winh) (pgh state.layout) in
5402 match layout with
5403 | [] -> gotoy (clamp (-conf.winh))
5404 | l :: _ ->
5405 state.mode <- Birdseye (
5406 oconf, leftx, l.pageno, hooverpageno, anchor
5408 gotopage1 l.pageno 0
5411 | [] -> gotoy (clamp (-conf.winh))
5412 end;
5414 | 0xff56 -> (* next *)
5415 begin match List.rev state.layout with
5416 | l :: _ ->
5417 let layout = layout (state.y + (pgh state.layout)) conf.winh in
5418 begin match layout with
5419 | [] ->
5420 let incr = l.pageh - l.pagevh in
5421 if incr = 0
5422 then (
5423 state.mode <-
5424 Birdseye (
5425 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5427 G.postRedisplay "birdseye pagedown";
5429 else gotoy (clamp (incr + conf.interpagespace*2));
5431 | l :: _ ->
5432 state.mode <-
5433 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5434 gotopage1 l.pageno 0;
5437 | [] -> gotoy (clamp conf.winh)
5438 end;
5440 | 0xff50 -> (* home *)
5441 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5442 gotopage1 0 0
5444 | 0xff57 -> (* end *)
5445 let pageno = state.pagecount - 1 in
5446 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5447 if not (pagevisible state.layout pageno)
5448 then
5449 let h =
5450 match List.rev state.pdims with
5451 | [] -> conf.winh
5452 | (_, _, h, _) :: _ -> h
5454 gotoy (max 0 (getpagey pageno - (conf.winh - h - conf.interpagespace)))
5455 else G.postRedisplay "birdseye end";
5456 | _ -> viewkeyboard key mask
5459 let drawpage l linkindexbase =
5460 let color =
5461 match state.mode with
5462 | Textentry _ -> scalecolor 0.4
5463 | LinkNav _
5464 | View -> scalecolor 1.0
5465 | Birdseye (_, _, pageno, hooverpageno, _) ->
5466 if l.pageno = hooverpageno
5467 then scalecolor 0.9
5468 else (
5469 if l.pageno = pageno
5470 then scalecolor 1.0
5471 else scalecolor 0.8
5474 drawtiles l color;
5475 begin match getopaque l.pageno with
5476 | Some opaque ->
5477 if tileready l l.pagex l.pagey
5478 then
5479 let x = l.pagedispx - l.pagex
5480 and y = l.pagedispy - l.pagey in
5481 let hlmask =
5482 match conf.columns with
5483 | Csingle _ | Cmulti _ ->
5484 (if conf.hlinks then 1 else 0)
5485 + (if state.glinks
5486 && not (isbirdseye state.mode) then 2 else 0)
5487 | _ -> 0
5489 let s =
5490 match state.mode with
5491 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5492 | _ -> ""
5494 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5495 else 0
5497 | _ -> 0
5498 end;
5501 let scrollindicator () =
5502 let sbw, ph, sh = state.uioh#scrollph in
5503 let sbh, pw, sw = state.uioh#scrollpw in
5505 GlDraw.color (0.64, 0.64, 0.64);
5506 GlDraw.rect
5507 (float (conf.winw - sbw), 0.)
5508 (float conf.winw, float conf.winh)
5510 GlDraw.rect
5511 (0., float (conf.winh - sbh))
5512 (float (conf.winw - state.scrollw - 1), float conf.winh)
5514 GlDraw.color (0.0, 0.0, 0.0);
5516 GlDraw.rect
5517 (float (conf.winw - sbw), ph)
5518 (float conf.winw, ph +. sh)
5520 GlDraw.rect
5521 (pw, float (conf.winh - sbh))
5522 (pw +. sw, float conf.winh)
5526 let showsel () =
5527 match state.mstate with
5528 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5531 | Msel ((x0, y0), (x1, y1)) ->
5532 let rec loop = function
5533 | l :: ls ->
5534 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5535 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5536 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5537 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5538 then
5539 match getopaque l.pageno with
5540 | Some opaque ->
5541 let x0, y0 = pagetranslatepoint l x0 y0 in
5542 let x1, y1 = pagetranslatepoint l x1 y1 in
5543 seltext opaque (x0, y0, x1, y1);
5544 | _ -> ()
5545 else loop ls
5546 | [] -> ()
5548 loop state.layout
5551 let showrects rects =
5552 Gl.enable `blend;
5553 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5554 GlDraw.polygon_mode `both `fill;
5555 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5556 List.iter
5557 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5558 List.iter (fun l ->
5559 if l.pageno = pageno
5560 then (
5561 let dx = float (l.pagedispx - l.pagex) in
5562 let dy = float (l.pagedispy - l.pagey) in
5563 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5564 GlDraw.begins `quads;
5566 GlDraw.vertex2 (x0+.dx, y0+.dy);
5567 GlDraw.vertex2 (x1+.dx, y1+.dy);
5568 GlDraw.vertex2 (x2+.dx, y2+.dy);
5569 GlDraw.vertex2 (x3+.dx, y3+.dy);
5571 GlDraw.ends ();
5573 ) state.layout
5574 ) rects
5576 Gl.disable `blend;
5579 let display () =
5580 GlClear.color (scalecolor2 conf.bgcolor);
5581 GlClear.clear [`color];
5582 let rec loop linkindexbase = function
5583 | l :: rest ->
5584 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5585 loop linkindexbase rest
5586 | [] -> ()
5588 loop 0 state.layout;
5589 let rects =
5590 match state.mode with
5591 | LinkNav (Ltexact (pageno, linkno)) ->
5592 begin match getopaque pageno with
5593 | Some opaque ->
5594 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5595 (pageno, 5, (
5596 float x0, float y0,
5597 float x1, float y0,
5598 float x1, float y1,
5599 float x0, float y1)
5600 ) :: state.rects
5601 | None -> state.rects
5603 | _ -> state.rects
5605 showrects rects;
5606 showsel ();
5607 state.uioh#display;
5608 begin match state.mstate with
5609 | Mzoomrect ((x0, y0), (x1, y1)) ->
5610 Gl.enable `blend;
5611 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5612 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5613 GlDraw.rect (float x0, float y0)
5614 (float x1, float y1);
5615 Gl.disable `blend;
5616 | _ -> ()
5617 end;
5618 enttext ();
5619 scrollindicator ();
5620 Wsi.swapb ();
5623 let zoomrect x y x1 y1 =
5624 let x0 = min x x1
5625 and x1 = max x x1
5626 and y0 = min y y1 in
5627 gotoy (state.y + y0);
5628 state.anchor <- getanchor ();
5629 let zoom = (float conf.winw *. conf.zoom) /. float (x1 - x0) in
5630 let margin =
5631 if state.w < conf.winw - state.scrollw
5632 then (conf.winw - state.scrollw - state.w) / 2
5633 else 0
5635 state.x <- (state.x + margin) - x0;
5636 setzoom zoom;
5637 Wsi.setcursor Wsi.CURSOR_INHERIT;
5638 state.mstate <- Mnone;
5641 let scrollx x =
5642 let winw = conf.winw - state.scrollw - 1 in
5643 let s = float x /. float winw in
5644 let destx = truncate (float (state.w + winw) *. s) in
5645 state.x <- winw - destx;
5646 gotoy_and_clear_text state.y;
5647 state.mstate <- Mscrollx;
5650 let scrolly y =
5651 let s = float y /. float conf.winh in
5652 let desty = truncate (float (state.maxy - conf.winh) *. s) in
5653 gotoy_and_clear_text desty;
5654 state.mstate <- Mscrolly;
5657 let viewmouse button down x y mask =
5658 match button with
5659 | n when (n == 4 || n == 5) && not down ->
5660 if Wsi.withctrl mask
5661 then (
5662 match state.mstate with
5663 | Mzoom (oldn, i) ->
5664 if oldn = n
5665 then (
5666 if i = 2
5667 then
5668 let incr =
5669 match n with
5670 | 5 ->
5671 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5672 | _ ->
5673 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5675 let zoom = conf.zoom -. incr in
5676 setzoom zoom;
5677 state.mstate <- Mzoom (n, 0);
5678 else
5679 state.mstate <- Mzoom (n, i+1);
5681 else state.mstate <- Mzoom (n, 0)
5683 | _ -> state.mstate <- Mzoom (n, 0)
5685 else (
5686 match state.autoscroll with
5687 | Some step -> setautoscrollspeed step (n=4)
5688 | None ->
5689 let incr =
5690 if n = 4
5691 then -conf.scrollstep
5692 else conf.scrollstep
5694 let incr = incr * 2 in
5695 let y = clamp incr in
5696 gotoy_and_clear_text y
5699 | n when (n = 6 || n = 7) && not down && canpan () ->
5700 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5701 gotoy_and_clear_text state.y
5703 | 1 when Wsi.withctrl mask ->
5704 if down
5705 then (
5706 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5707 state.mstate <- Mpan (x, y)
5709 else
5710 state.mstate <- Mnone
5712 | 3 ->
5713 if down
5714 then (
5715 Wsi.setcursor Wsi.CURSOR_CYCLE;
5716 let p = (x, y) in
5717 state.mstate <- Mzoomrect (p, p)
5719 else (
5720 match state.mstate with
5721 | Mzoomrect ((x0, y0), _) ->
5722 if abs (x-x0) > 10 && abs (y - y0) > 10
5723 then zoomrect x0 y0 x y
5724 else (
5725 state.mstate <- Mnone;
5726 Wsi.setcursor Wsi.CURSOR_INHERIT;
5727 G.postRedisplay "kill accidental zoom rect";
5729 | _ ->
5730 Wsi.setcursor Wsi.CURSOR_INHERIT;
5731 state.mstate <- Mnone
5734 | 1 when x > conf.winw - state.scrollw ->
5735 if down
5736 then
5737 let _, position, sh = state.uioh#scrollph in
5738 if y > truncate position && y < truncate (position +. sh)
5739 then state.mstate <- Mscrolly
5740 else scrolly y
5741 else
5742 state.mstate <- Mnone
5744 | 1 when y > conf.winh - state.hscrollh ->
5745 if down
5746 then
5747 let _, position, sw = state.uioh#scrollpw in
5748 if x > truncate position && x < truncate (position +. sw)
5749 then state.mstate <- Mscrollx
5750 else scrollx x
5751 else
5752 state.mstate <- Mnone
5754 | 1 ->
5755 let dest = if down then getunder x y else Unone in
5756 begin match dest with
5757 | Ulinkgoto _
5758 | Ulinkuri _
5759 | Uremote _
5760 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5761 gotounder dest
5763 | Unone when down ->
5764 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5765 state.mstate <- Mpan (x, y);
5767 | Unone | Utext _ ->
5768 if down
5769 then (
5770 if conf.angle mod 360 = 0
5771 then (
5772 state.mstate <- Msel ((x, y), (x, y));
5773 G.postRedisplay "mouse select";
5776 else (
5777 match state.mstate with
5778 | Mnone -> ()
5780 | Mzoom _ | Mscrollx | Mscrolly ->
5781 state.mstate <- Mnone
5783 | Mzoomrect ((x0, y0), _) ->
5784 zoomrect x0 y0 x y
5786 | Mpan _ ->
5787 Wsi.setcursor Wsi.CURSOR_INHERIT;
5788 state.mstate <- Mnone
5790 | Msel ((x0, y0), (x1, y1)) ->
5791 let rec loop = function
5792 | [] -> ()
5793 | l :: rest ->
5794 let inside =
5795 let a0 = l.pagedispy in
5796 let a1 = a0 + l.pagevh in
5797 let b0 = l.pagedispx in
5798 let b1 = b0 + l.pagevw in
5799 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5800 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5802 if inside
5803 then
5804 match getopaque l.pageno with
5805 | Some opaque ->
5806 begin
5807 match Ne.pipe () with
5808 | Ne.Exn exn ->
5809 showtext '!'
5810 (Printf.sprintf
5811 "can not create sel pipe: %s"
5812 (Printexc.to_string exn));
5813 | Ne.Res (r, w) ->
5814 let doclose what fd =
5815 Ne.clo fd (fun msg ->
5816 dolog "%s close failed: %s" what msg)
5819 popen conf.selcmd [r, 0; w, -1];
5820 copysel w opaque;
5821 doclose "pipe/r" r;
5822 G.postRedisplay "copysel";
5823 with exn ->
5824 dolog "can not execute %S: %s"
5825 conf.selcmd (Printexc.to_string exn);
5826 doclose "pipe/r" r;
5827 doclose "pipe/w" w;
5829 | None -> ()
5830 else loop rest
5832 loop state.layout;
5833 Wsi.setcursor Wsi.CURSOR_INHERIT;
5834 state.mstate <- Mnone;
5838 | _ -> ()
5841 let birdseyemouse button down x y mask
5842 (conf, leftx, _, hooverpageno, anchor) =
5843 match button with
5844 | 1 when down ->
5845 let rec loop = function
5846 | [] -> ()
5847 | l :: rest ->
5848 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5849 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5850 then (
5851 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5853 else loop rest
5855 loop state.layout
5856 | 3 -> ()
5857 | _ -> viewmouse button down x y mask
5860 let mouse button down x y mask =
5861 state.uioh <- state.uioh#button button down x y mask;
5864 let motion ~x ~y =
5865 state.uioh <- state.uioh#motion x y
5868 let pmotion ~x ~y =
5869 state.uioh <- state.uioh#pmotion x y;
5872 let uioh = object
5873 method display = ()
5875 method key key mask =
5876 begin match state.mode with
5877 | Textentry textentry -> textentrykeyboard key mask textentry
5878 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5879 | View -> viewkeyboard key mask
5880 | LinkNav linknav -> linknavkeyboard key mask linknav
5881 end;
5882 state.uioh
5884 method button button bstate x y mask =
5885 begin match state.mode with
5886 | LinkNav _
5887 | View -> viewmouse button bstate x y mask
5888 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5889 | Textentry _ -> ()
5890 end;
5891 state.uioh
5893 method motion x y =
5894 begin match state.mode with
5895 | Textentry _ -> ()
5896 | View | Birdseye _ | LinkNav _ ->
5897 match state.mstate with
5898 | Mzoom _ | Mnone -> ()
5900 | Mpan (x0, y0) ->
5901 let dx = x - x0
5902 and dy = y0 - y in
5903 state.mstate <- Mpan (x, y);
5904 if canpan ()
5905 then state.x <- state.x + dx;
5906 let y = clamp dy in
5907 gotoy_and_clear_text y
5909 | Msel (a, _) ->
5910 state.mstate <- Msel (a, (x, y));
5911 G.postRedisplay "motion select";
5913 | Mscrolly ->
5914 let y = min conf.winh (max 0 y) in
5915 scrolly y
5917 | Mscrollx ->
5918 let x = min conf.winw (max 0 x) in
5919 scrollx x
5921 | Mzoomrect (p0, _) ->
5922 state.mstate <- Mzoomrect (p0, (x, y));
5923 G.postRedisplay "motion zoomrect";
5924 end;
5925 state.uioh
5927 method pmotion x y =
5928 begin match state.mode with
5929 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5930 let rec loop = function
5931 | [] ->
5932 if hooverpageno != -1
5933 then (
5934 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5935 G.postRedisplay "pmotion birdseye no hoover";
5937 | l :: rest ->
5938 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5939 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5940 then (
5941 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5942 G.postRedisplay "pmotion birdseye hoover";
5944 else loop rest
5946 loop state.layout
5948 | Textentry _ -> ()
5950 | LinkNav _
5951 | View ->
5952 match state.mstate with
5953 | Mnone -> updateunder x y
5954 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5956 end;
5957 state.uioh
5959 method infochanged _ = ()
5961 method scrollph =
5962 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
5963 let p, h = scrollph state.y maxy in
5964 state.scrollw, p, h
5966 method scrollpw =
5967 let winw = conf.winw - state.scrollw - 1 in
5968 let fwinw = float winw in
5969 let sw =
5970 let sw = fwinw /. float state.w in
5971 let sw = fwinw *. sw in
5972 max sw (float conf.scrollh)
5974 let position, sw =
5975 let f = state.w+winw in
5976 let r = float (winw-state.x) /. float f in
5977 let p = fwinw *. r in
5978 p-.sw/.2., sw
5980 let sw =
5981 if position +. sw > fwinw
5982 then fwinw -. position
5983 else sw
5985 state.hscrollh, position, sw
5987 method modehash =
5988 let modename =
5989 match state.mode with
5990 | LinkNav _ -> "links"
5991 | Textentry _ -> "textentry"
5992 | Birdseye _ -> "birdseye"
5993 | View -> "view"
5995 findkeyhash conf modename
5996 end;;
5998 module Config =
5999 struct
6000 open Parser
6002 let fontpath = ref "";;
6004 module KeyMap =
6005 Map.Make (struct type t = (int * int) let compare = compare end);;
6007 let unent s =
6008 let l = String.length s in
6009 let b = Buffer.create l in
6010 unent b s 0 l;
6011 Buffer.contents b;
6014 let home =
6015 try Sys.getenv "HOME"
6016 with exn ->
6017 prerr_endline
6018 ("Can not determine home directory location: " ^
6019 Printexc.to_string exn);
6023 let modifier_of_string = function
6024 | "alt" -> Wsi.altmask
6025 | "shift" -> Wsi.shiftmask
6026 | "ctrl" | "control" -> Wsi.ctrlmask
6027 | "meta" -> Wsi.metamask
6028 | _ -> 0
6031 let key_of_string =
6032 let r = Str.regexp "-" in
6033 fun s ->
6034 let elems = Str.full_split r s in
6035 let f n k m =
6036 let g s =
6037 let m1 = modifier_of_string s in
6038 if m1 = 0
6039 then (Wsi.namekey s, m)
6040 else (k, m lor m1)
6041 in function
6042 | Str.Delim s when n land 1 = 0 -> g s
6043 | Str.Text s -> g s
6044 | Str.Delim _ -> (k, m)
6046 let rec loop n k m = function
6047 | [] -> (k, m)
6048 | x :: xs ->
6049 let k, m = f n k m x in
6050 loop (n+1) k m xs
6052 loop 0 0 0 elems
6055 let keys_of_string =
6056 let r = Str.regexp "[ \t]" in
6057 fun s ->
6058 let elems = Str.split r s in
6059 List.map key_of_string elems
6062 let copykeyhashes c =
6063 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6066 let config_of c attrs =
6067 let apply c k v =
6069 match k with
6070 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6071 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6072 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6073 | "preload" -> { c with preload = bool_of_string v }
6074 | "page-bias" -> { c with pagebias = int_of_string v }
6075 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6076 | "horizontal-scroll-step" ->
6077 { c with hscrollstep = max (int_of_string v) 1 }
6078 | "auto-scroll-step" ->
6079 { c with autoscrollstep = max 0 (int_of_string v) }
6080 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6081 | "crop-hack" -> { c with crophack = bool_of_string v }
6082 | "throttle" ->
6083 let mw =
6084 match String.lowercase v with
6085 | "true" -> Some infinity
6086 | "false" -> None
6087 | f -> Some (float_of_string f)
6089 { c with maxwait = mw}
6090 | "highlight-links" -> { c with hlinks = bool_of_string v }
6091 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6092 | "vertical-margin" ->
6093 { c with interpagespace = max 0 (int_of_string v) }
6094 | "zoom" ->
6095 let zoom = float_of_string v /. 100. in
6096 let zoom = max zoom 0.0 in
6097 { c with zoom = zoom }
6098 | "presentation" -> { c with presentation = bool_of_string v }
6099 | "rotation-angle" -> { c with angle = int_of_string v }
6100 | "width" -> { c with winw = max 20 (int_of_string v) }
6101 | "height" -> { c with winh = max 20 (int_of_string v) }
6102 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6103 | "proportional-display" -> { c with proportional = bool_of_string v }
6104 | "pixmap-cache-size" ->
6105 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6106 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6107 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6108 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6109 | "persistent-location" -> { c with jumpback = bool_of_string v }
6110 | "background-color" -> { c with bgcolor = color_of_string v }
6111 | "scrollbar-in-presentation" ->
6112 { c with scrollbarinpm = bool_of_string v }
6113 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6114 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6115 | "mupdf-store-size" ->
6116 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6117 | "checkers" -> { c with checkers = bool_of_string v }
6118 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6119 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6120 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6121 | "uri-launcher" -> { c with urilauncher = unent v }
6122 | "path-launcher" -> { c with pathlauncher = unent v }
6123 | "color-space" -> { c with colorspace = colorspace_of_string v }
6124 | "invert-colors" -> { c with invert = bool_of_string v }
6125 | "brightness" -> { c with colorscale = float_of_string v }
6126 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6127 | "ghyllscroll" ->
6128 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6129 | "columns" ->
6130 let (n, _, _) as nab = multicolumns_of_string v in
6131 if n < 0
6132 then { c with columns = Csplit (-n, [||]) }
6133 else { c with columns = Cmulti (nab, [||]) }
6134 | "birds-eye-columns" ->
6135 { c with beyecolumns = Some (max (int_of_string v) 2) }
6136 | "selection-command" -> { c with selcmd = unent v }
6137 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6138 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6139 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6140 | "use-pbo" -> { c with usepbo = bool_of_string v }
6141 | _ -> c
6142 with exn ->
6143 prerr_endline ("Error processing attribute (`" ^
6144 k ^ "'=`" ^ v ^ "'): " ^ Printexc.to_string exn);
6147 let rec fold c = function
6148 | [] -> c
6149 | (k, v) :: rest ->
6150 let c = apply c k v in
6151 fold c rest
6153 fold { c with keyhashes = copykeyhashes c } attrs;
6156 let fromstring f pos n v d =
6157 try f v
6158 with exn ->
6159 dolog "Error processing attribute (%S=%S) at %d\n%s"
6160 n v pos (Printexc.to_string exn)
6165 let bookmark_of attrs =
6166 let rec fold title page rely visy = function
6167 | ("title", v) :: rest -> fold v page rely visy rest
6168 | ("page", v) :: rest -> fold title v rely visy rest
6169 | ("rely", v) :: rest -> fold title page v visy rest
6170 | ("visy", v) :: rest -> fold title page rely v rest
6171 | _ :: rest -> fold title page rely visy rest
6172 | [] -> title, page, rely, visy
6174 fold "invalid" "0" "0" "0" attrs
6177 let doc_of attrs =
6178 let rec fold path page rely pan visy = function
6179 | ("path", v) :: rest -> fold v page rely pan visy rest
6180 | ("page", v) :: rest -> fold path v rely pan visy rest
6181 | ("rely", v) :: rest -> fold path page v pan visy rest
6182 | ("pan", v) :: rest -> fold path page rely v visy rest
6183 | ("visy", v) :: rest -> fold path page rely pan v rest
6184 | _ :: rest -> fold path page rely pan visy rest
6185 | [] -> path, page, rely, pan, visy
6187 fold "" "0" "0" "0" "0" attrs
6190 let map_of attrs =
6191 let rec fold rs ls = function
6192 | ("out", v) :: rest -> fold v ls rest
6193 | ("in", v) :: rest -> fold rs v rest
6194 | _ :: rest -> fold ls rs rest
6195 | [] -> ls, rs
6197 fold "" "" attrs
6200 let setconf dst src =
6201 dst.scrollbw <- src.scrollbw;
6202 dst.scrollh <- src.scrollh;
6203 dst.icase <- src.icase;
6204 dst.preload <- src.preload;
6205 dst.pagebias <- src.pagebias;
6206 dst.verbose <- src.verbose;
6207 dst.scrollstep <- src.scrollstep;
6208 dst.maxhfit <- src.maxhfit;
6209 dst.crophack <- src.crophack;
6210 dst.autoscrollstep <- src.autoscrollstep;
6211 dst.maxwait <- src.maxwait;
6212 dst.hlinks <- src.hlinks;
6213 dst.underinfo <- src.underinfo;
6214 dst.interpagespace <- src.interpagespace;
6215 dst.zoom <- src.zoom;
6216 dst.presentation <- src.presentation;
6217 dst.angle <- src.angle;
6218 dst.winw <- src.winw;
6219 dst.winh <- src.winh;
6220 dst.savebmarks <- src.savebmarks;
6221 dst.memlimit <- src.memlimit;
6222 dst.proportional <- src.proportional;
6223 dst.texcount <- src.texcount;
6224 dst.sliceheight <- src.sliceheight;
6225 dst.thumbw <- src.thumbw;
6226 dst.jumpback <- src.jumpback;
6227 dst.bgcolor <- src.bgcolor;
6228 dst.scrollbarinpm <- src.scrollbarinpm;
6229 dst.tilew <- src.tilew;
6230 dst.tileh <- src.tileh;
6231 dst.mustoresize <- src.mustoresize;
6232 dst.checkers <- src.checkers;
6233 dst.aalevel <- src.aalevel;
6234 dst.trimmargins <- src.trimmargins;
6235 dst.trimfuzz <- src.trimfuzz;
6236 dst.urilauncher <- src.urilauncher;
6237 dst.colorspace <- src.colorspace;
6238 dst.invert <- src.invert;
6239 dst.colorscale <- src.colorscale;
6240 dst.redirectstderr <- src.redirectstderr;
6241 dst.ghyllscroll <- src.ghyllscroll;
6242 dst.columns <- src.columns;
6243 dst.beyecolumns <- src.beyecolumns;
6244 dst.selcmd <- src.selcmd;
6245 dst.updatecurs <- src.updatecurs;
6246 dst.pathlauncher <- src.pathlauncher;
6247 dst.keyhashes <- copykeyhashes src;
6248 dst.hfsize <- src.hfsize;
6249 dst.hscrollstep <- src.hscrollstep;
6250 dst.pgscale <- src.pgscale;
6251 dst.usepbo <- src.usepbo;
6254 let get s =
6255 let h = Hashtbl.create 10 in
6256 let dc = { defconf with angle = defconf.angle } in
6257 let rec toplevel v t spos _ =
6258 match t with
6259 | Vdata | Vcdata | Vend -> v
6260 | Vopen ("llppconfig", _, closed) ->
6261 if closed
6262 then v
6263 else { v with f = llppconfig }
6264 | Vopen _ ->
6265 error "unexpected subelement at top level" s spos
6266 | Vclose _ -> error "unexpected close at top level" s spos
6268 and llppconfig v t spos _ =
6269 match t with
6270 | Vdata | Vcdata -> v
6271 | Vend -> error "unexpected end of input in llppconfig" s spos
6272 | Vopen ("defaults", attrs, closed) ->
6273 let c = config_of dc attrs in
6274 setconf dc c;
6275 if closed
6276 then v
6277 else { v with f = defaults }
6279 | Vopen ("ui-font", attrs, closed) ->
6280 let rec getsize size = function
6281 | [] -> size
6282 | ("size", v) :: rest ->
6283 let size =
6284 fromstring int_of_string spos "size" v fstate.fontsize in
6285 getsize size rest
6286 | l -> getsize size l
6288 fstate.fontsize <- getsize fstate.fontsize attrs;
6289 if closed
6290 then v
6291 else { v with f = uifont (Buffer.create 10) }
6293 | Vopen ("doc", attrs, closed) ->
6294 let pathent, spage, srely, span, svisy = doc_of attrs in
6295 let path = unent pathent
6296 and pageno = fromstring int_of_string spos "page" spage 0
6297 and rely = fromstring float_of_string spos "rely" srely 0.0
6298 and pan = fromstring int_of_string spos "pan" span 0
6299 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6300 let c = config_of dc attrs in
6301 let anchor = (pageno, rely, visy) in
6302 if closed
6303 then (Hashtbl.add h path (c, [], pan, anchor); v)
6304 else { v with f = doc path pan anchor c [] }
6306 | Vopen _ ->
6307 error "unexpected subelement in llppconfig" s spos
6309 | Vclose "llppconfig" -> { v with f = toplevel }
6310 | Vclose _ -> error "unexpected close in llppconfig" s spos
6312 and defaults v t spos _ =
6313 match t with
6314 | Vdata | Vcdata -> v
6315 | Vend -> error "unexpected end of input in defaults" s spos
6316 | Vopen ("keymap", attrs, closed) ->
6317 let modename =
6318 try List.assoc "mode" attrs
6319 with Not_found -> "global" in
6320 if closed
6321 then v
6322 else
6323 let ret keymap =
6324 let h = findkeyhash dc modename in
6325 KeyMap.iter (Hashtbl.replace h) keymap;
6326 defaults
6328 { v with f = pkeymap ret KeyMap.empty }
6330 | Vopen (_, _, _) ->
6331 error "unexpected subelement in defaults" s spos
6333 | Vclose "defaults" ->
6334 { v with f = llppconfig }
6336 | Vclose _ -> error "unexpected close in defaults" s spos
6338 and uifont b v t spos epos =
6339 match t with
6340 | Vdata | Vcdata ->
6341 Buffer.add_substring b s spos (epos - spos);
6343 | Vopen (_, _, _) ->
6344 error "unexpected subelement in ui-font" s spos
6345 | Vclose "ui-font" ->
6346 if String.length !fontpath = 0
6347 then fontpath := Buffer.contents b;
6348 { v with f = llppconfig }
6349 | Vclose _ -> error "unexpected close in ui-font" s spos
6350 | Vend -> error "unexpected end of input in ui-font" s spos
6352 and doc path pan anchor c bookmarks v t spos _ =
6353 match t with
6354 | Vdata | Vcdata -> v
6355 | Vend -> error "unexpected end of input in doc" s spos
6356 | Vopen ("bookmarks", _, closed) ->
6357 if closed
6358 then v
6359 else { v with f = pbookmarks path pan anchor c bookmarks }
6361 | Vopen ("keymap", attrs, closed) ->
6362 let modename =
6363 try List.assoc "mode" attrs
6364 with Not_found -> "global"
6366 if closed
6367 then v
6368 else
6369 let ret keymap =
6370 let h = findkeyhash c modename in
6371 KeyMap.iter (Hashtbl.replace h) keymap;
6372 doc path pan anchor c bookmarks
6374 { v with f = pkeymap ret KeyMap.empty }
6376 | Vopen (_, _, _) ->
6377 error "unexpected subelement in doc" s spos
6379 | Vclose "doc" ->
6380 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6381 { v with f = llppconfig }
6383 | Vclose _ -> error "unexpected close in doc" s spos
6385 and pkeymap ret keymap v t spos _ =
6386 match t with
6387 | Vdata | Vcdata -> v
6388 | Vend -> error "unexpected end of input in keymap" s spos
6389 | Vopen ("map", attrs, closed) ->
6390 let r, l = map_of attrs in
6391 let kss = fromstring keys_of_string spos "in" r [] in
6392 let lss = fromstring keys_of_string spos "out" l [] in
6393 let keymap =
6394 match kss with
6395 | [] -> keymap
6396 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6397 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6399 if closed
6400 then { v with f = pkeymap ret keymap }
6401 else
6402 let f () = v in
6403 { v with f = skip "map" f }
6405 | Vopen _ ->
6406 error "unexpected subelement in keymap" s spos
6408 | Vclose "keymap" ->
6409 { v with f = ret keymap }
6411 | Vclose _ -> error "unexpected close in keymap" s spos
6413 and pbookmarks path pan anchor c bookmarks v t spos _ =
6414 match t with
6415 | Vdata | Vcdata -> v
6416 | Vend -> error "unexpected end of input in bookmarks" s spos
6417 | Vopen ("item", attrs, closed) ->
6418 let titleent, spage, srely, svisy = bookmark_of attrs in
6419 let page = fromstring int_of_string spos "page" spage 0
6420 and rely = fromstring float_of_string spos "rely" srely 0.0
6421 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6422 let bookmarks =
6423 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6425 if closed
6426 then { v with f = pbookmarks path pan anchor c bookmarks }
6427 else
6428 let f () = v in
6429 { v with f = skip "item" f }
6431 | Vopen _ ->
6432 error "unexpected subelement in bookmarks" s spos
6434 | Vclose "bookmarks" ->
6435 { v with f = doc path pan anchor c bookmarks }
6437 | Vclose _ -> error "unexpected close in bookmarks" s spos
6439 and skip tag f v t spos _ =
6440 match t with
6441 | Vdata | Vcdata -> v
6442 | Vend ->
6443 error ("unexpected end of input in skipped " ^ tag) s spos
6444 | Vopen (tag', _, closed) ->
6445 if closed
6446 then v
6447 else
6448 let f' () = { v with f = skip tag f } in
6449 { v with f = skip tag' f' }
6450 | Vclose ctag ->
6451 if tag = ctag
6452 then f ()
6453 else error ("unexpected close in skipped " ^ tag) s spos
6456 parse { f = toplevel; accu = () } s;
6457 h, dc;
6460 let do_load f ic =
6462 let len = in_channel_length ic in
6463 let s = String.create len in
6464 really_input ic s 0 len;
6465 f s;
6466 with
6467 | Parse_error (msg, s, pos) ->
6468 let subs = subs s pos in
6469 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6470 failwith ("parse error: " ^ s)
6472 | exn ->
6473 failwith ("config load error: " ^ Printexc.to_string exn)
6476 let defconfpath =
6477 let dir =
6479 let dir = Filename.concat home ".config" in
6480 if Sys.is_directory dir then dir else home
6481 with _ -> home
6483 Filename.concat dir "llpp.conf"
6486 let confpath = ref defconfpath;;
6488 let load1 f =
6489 if Sys.file_exists !confpath
6490 then
6491 match
6492 (try Some (open_in_bin !confpath)
6493 with exn ->
6494 prerr_endline
6495 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6496 Printexc.to_string exn);
6497 None
6499 with
6500 | Some ic ->
6501 let success =
6503 f (do_load get ic)
6504 with exn ->
6505 prerr_endline
6506 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6507 Printexc.to_string exn);
6508 false
6510 close_in ic;
6511 success
6513 | None -> false
6514 else
6515 f (Hashtbl.create 0, defconf)
6518 let load () =
6519 let f (h, dc) =
6520 let pc, pb, px, pa =
6522 Hashtbl.find h (Filename.basename state.path)
6523 with Not_found -> dc, [], 0, emptyanchor
6525 setconf defconf dc;
6526 setconf conf pc;
6527 state.bookmarks <- pb;
6528 state.x <- px;
6529 state.scrollw <- conf.scrollbw;
6530 if conf.jumpback
6531 then state.anchor <- pa;
6532 cbput state.hists.nav pa;
6533 true
6535 load1 f
6538 let add_attrs bb always dc c =
6539 let ob s a b =
6540 if always || a != b
6541 then Printf.bprintf bb "\n %s='%b'" s a
6542 and oi s a b =
6543 if always || a != b
6544 then Printf.bprintf bb "\n %s='%d'" s a
6545 and oI s a b =
6546 if always || a != b
6547 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6548 and oz s a b =
6549 if always || a <> b
6550 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6551 and oF s a b =
6552 if always || a <> b
6553 then Printf.bprintf bb "\n %s='%f'" s a
6554 and oc s a b =
6555 if always || a <> b
6556 then
6557 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6558 and oC s a b =
6559 if always || a <> b
6560 then
6561 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6562 and oR s a b =
6563 if always || a <> b
6564 then
6565 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6566 and os s a b =
6567 if always || a <> b
6568 then
6569 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6570 and og s a b =
6571 if always || a <> b
6572 then
6573 match a with
6574 | None -> ()
6575 | Some (_N, _A, _B) ->
6576 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6577 and oW s a b =
6578 if always || a <> b
6579 then
6580 let v =
6581 match a with
6582 | None -> "false"
6583 | Some f ->
6584 if f = infinity
6585 then "true"
6586 else string_of_float f
6588 Printf.bprintf bb "\n %s='%s'" s v
6589 and oco s a b =
6590 if always || a <> b
6591 then
6592 match a with
6593 | Cmulti ((n, a, b), _) when n > 1 ->
6594 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6595 | Csplit (n, _) when n > 1 ->
6596 Printf.bprintf bb "\n %s='%d'" s ~-n
6597 | _ -> ()
6598 and obeco s a b =
6599 if always || a <> b
6600 then
6601 match a with
6602 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6603 | _ -> ()
6605 let w, h =
6606 if always
6607 then dc.winw, dc.winh
6608 else
6609 match state.fullscreen with
6610 | Some wh -> wh
6611 | None -> c.winw, c.winh
6613 oi "width" w dc.winw;
6614 oi "height" h dc.winh;
6615 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6616 oi "scroll-handle-height" c.scrollh dc.scrollh;
6617 ob "case-insensitive-search" c.icase dc.icase;
6618 ob "preload" c.preload dc.preload;
6619 oi "page-bias" c.pagebias dc.pagebias;
6620 oi "scroll-step" c.scrollstep dc.scrollstep;
6621 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6622 ob "max-height-fit" c.maxhfit dc.maxhfit;
6623 ob "crop-hack" c.crophack dc.crophack;
6624 oW "throttle" c.maxwait dc.maxwait;
6625 ob "highlight-links" c.hlinks dc.hlinks;
6626 ob "under-cursor-info" c.underinfo dc.underinfo;
6627 oi "vertical-margin" c.interpagespace dc.interpagespace;
6628 oz "zoom" c.zoom dc.zoom;
6629 ob "presentation" c.presentation dc.presentation;
6630 oi "rotation-angle" c.angle dc.angle;
6631 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6632 ob "proportional-display" c.proportional dc.proportional;
6633 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6634 oi "tex-count" c.texcount dc.texcount;
6635 oi "slice-height" c.sliceheight dc.sliceheight;
6636 oi "thumbnail-width" c.thumbw dc.thumbw;
6637 ob "persistent-location" c.jumpback dc.jumpback;
6638 oc "background-color" c.bgcolor dc.bgcolor;
6639 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6640 oi "tile-width" c.tilew dc.tilew;
6641 oi "tile-height" c.tileh dc.tileh;
6642 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6643 ob "checkers" c.checkers dc.checkers;
6644 oi "aalevel" c.aalevel dc.aalevel;
6645 ob "trim-margins" c.trimmargins dc.trimmargins;
6646 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6647 os "uri-launcher" c.urilauncher dc.urilauncher;
6648 os "path-launcher" c.pathlauncher dc.pathlauncher;
6649 oC "color-space" c.colorspace dc.colorspace;
6650 ob "invert-colors" c.invert dc.invert;
6651 oF "brightness" c.colorscale dc.colorscale;
6652 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6653 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6654 oco "columns" c.columns dc.columns;
6655 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6656 os "selection-command" c.selcmd dc.selcmd;
6657 ob "update-cursor" c.updatecurs dc.updatecurs;
6658 oi "hint-font-size" c.hfsize dc.hfsize;
6659 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6660 oF "page-scroll-scale" c.pgscale dc.pgscale;
6661 ob "use-pbo" c.usepbo dc.usepbo;
6664 let keymapsbuf always dc c =
6665 let bb = Buffer.create 16 in
6666 let rec loop = function
6667 | [] -> ()
6668 | (modename, h) :: rest ->
6669 let dh = findkeyhash dc modename in
6670 if always || h <> dh
6671 then (
6672 if Hashtbl.length h > 0
6673 then (
6674 if Buffer.length bb > 0
6675 then Buffer.add_char bb '\n';
6676 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6677 Hashtbl.iter (fun i o ->
6678 let isdifferent = always ||
6680 let dO = Hashtbl.find dh i in
6681 dO <> o
6682 with Not_found -> true
6684 if isdifferent
6685 then
6686 let addkm (k, m) =
6687 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6688 if Wsi.withalt m then Buffer.add_string bb "alt-";
6689 if Wsi.withshift m then Buffer.add_string bb "shift-";
6690 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6691 Buffer.add_string bb (Wsi.keyname k);
6693 let addkms l =
6694 let rec loop = function
6695 | [] -> ()
6696 | km :: [] -> addkm km
6697 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6699 loop l
6701 Buffer.add_string bb "<map in='";
6702 addkm i;
6703 match o with
6704 | KMinsrt km ->
6705 Buffer.add_string bb "' out='";
6706 addkm km;
6707 Buffer.add_string bb "'/>\n"
6709 | KMinsrl kms ->
6710 Buffer.add_string bb "' out='";
6711 addkms kms;
6712 Buffer.add_string bb "'/>\n"
6714 | KMmulti (ins, kms) ->
6715 Buffer.add_char bb ' ';
6716 addkms ins;
6717 Buffer.add_string bb "' out='";
6718 addkms kms;
6719 Buffer.add_string bb "'/>\n"
6720 ) h;
6721 Buffer.add_string bb "</keymap>";
6724 loop rest
6726 loop c.keyhashes;
6730 let save () =
6731 let uifontsize = fstate.fontsize in
6732 let bb = Buffer.create 32768 in
6733 let f (h, dc) =
6734 let dc = if conf.bedefault then conf else dc in
6735 Buffer.add_string bb "<llppconfig>\n";
6737 if String.length !fontpath > 0
6738 then
6739 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6740 uifontsize
6741 !fontpath
6742 else (
6743 if uifontsize <> 14
6744 then
6745 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6748 Buffer.add_string bb "<defaults ";
6749 add_attrs bb true dc dc;
6750 let kb = keymapsbuf true dc dc in
6751 if Buffer.length kb > 0
6752 then (
6753 Buffer.add_string bb ">\n";
6754 Buffer.add_buffer bb kb;
6755 Buffer.add_string bb "\n</defaults>\n";
6757 else Buffer.add_string bb "/>\n";
6759 let adddoc path pan anchor c bookmarks =
6760 if bookmarks == [] && c = dc && anchor = emptyanchor
6761 then ()
6762 else (
6763 Printf.bprintf bb "<doc path='%s'"
6764 (enent path 0 (String.length path));
6766 if anchor <> emptyanchor
6767 then (
6768 let n, rely, visy = anchor in
6769 Printf.bprintf bb " page='%d'" n;
6770 if rely > 1e-6
6771 then
6772 Printf.bprintf bb " rely='%f'" rely
6774 if abs_float visy > 1e-6
6775 then
6776 Printf.bprintf bb " visy='%f'" visy
6780 if pan != 0
6781 then Printf.bprintf bb " pan='%d'" pan;
6783 add_attrs bb false dc c;
6784 let kb = keymapsbuf false dc c in
6786 begin match bookmarks with
6787 | [] ->
6788 if Buffer.length kb > 0
6789 then (
6790 Buffer.add_string bb ">\n";
6791 Buffer.add_buffer bb kb;
6792 Buffer.add_string bb "\n</doc>\n";
6794 else Buffer.add_string bb "/>\n"
6795 | _ ->
6796 Buffer.add_string bb ">\n<bookmarks>\n";
6797 List.iter (fun (title, _level, (page, rely, visy)) ->
6798 Printf.bprintf bb
6799 "<item title='%s' page='%d'"
6800 (enent title 0 (String.length title))
6801 page
6803 if rely > 1e-6
6804 then
6805 Printf.bprintf bb " rely='%f'" rely
6807 if abs_float visy > 1e-6
6808 then
6809 Printf.bprintf bb " visy='%f'" visy
6811 Buffer.add_string bb "/>\n";
6812 ) bookmarks;
6813 Buffer.add_string bb "</bookmarks>";
6814 if Buffer.length kb > 0
6815 then (
6816 Buffer.add_string bb "\n";
6817 Buffer.add_buffer bb kb;
6819 Buffer.add_string bb "\n</doc>\n";
6820 end;
6824 let pan, conf =
6825 match state.mode with
6826 | Birdseye (c, pan, _, _, _) ->
6827 let beyecolumns =
6828 match conf.columns with
6829 | Cmulti ((c, _, _), _) -> Some c
6830 | Csingle _ -> None
6831 | Csplit _ -> None
6832 and columns =
6833 match c.columns with
6834 | Cmulti (c, _) -> Cmulti (c, [||])
6835 | Csingle _ -> Csingle [||]
6836 | Csplit _ -> failwith "quit from bird's eye while split"
6838 pan, { c with beyecolumns = beyecolumns; columns = columns }
6839 | _ -> state.x, conf
6841 let basename = Filename.basename state.path in
6842 adddoc basename pan (getanchor ())
6843 (let conf =
6844 let autoscrollstep =
6845 match state.autoscroll with
6846 | Some step -> step
6847 | None -> conf.autoscrollstep
6849 match state.mode with
6850 | Birdseye (bc, _, _, _, _) ->
6851 { conf with
6852 zoom = bc.zoom;
6853 presentation = bc.presentation;
6854 interpagespace = bc.interpagespace;
6855 maxwait = bc.maxwait;
6856 autoscrollstep = autoscrollstep }
6857 | _ -> { conf with autoscrollstep = autoscrollstep }
6858 in conf)
6859 (if conf.savebmarks then state.bookmarks else []);
6861 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6862 if basename <> path
6863 then adddoc path x anchor c bookmarks
6864 ) h;
6865 Buffer.add_string bb "</llppconfig>\n";
6866 true;
6868 if load1 f && Buffer.length bb > 0
6869 then
6871 let tmp = !confpath ^ ".tmp" in
6872 let oc = open_out_bin tmp in
6873 Buffer.output_buffer oc bb;
6874 close_out oc;
6875 Unix.rename tmp !confpath;
6876 with exn ->
6877 prerr_endline
6878 ("error while saving configuration: " ^ Printexc.to_string exn)
6880 end;;
6882 let () =
6883 let trimcachepath = ref "" in
6884 Arg.parse
6885 (Arg.align
6886 [("-p", Arg.String (fun s -> state.password <- s) ,
6887 "<password> Set password");
6889 ("-f", Arg.String (fun s -> Config.fontpath := s),
6890 "<path> Set path to the user interface font");
6892 ("-c", Arg.String (fun s -> Config.confpath := s),
6893 "<path> Set path to the configuration file");
6895 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6896 "<path> Set path to the trim cache file");
6898 ("-v", Arg.Unit (fun () ->
6899 Printf.printf
6900 "%s\nconfiguration path: %s\n"
6901 (version ())
6902 Config.defconfpath
6904 exit 0), " Print version and exit");
6907 (fun s -> state.path <- s)
6908 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6910 if String.length state.path = 0
6911 then (prerr_endline "file name missing"; exit 1);
6913 if not (Config.load ())
6914 then prerr_endline "failed to load configuration";
6916 let globalkeyhash = findkeyhash conf "global" in
6917 let wsfd, winw, winh = Wsi.init (object
6918 method expose =
6919 if nogeomcmds state.geomcmds || platform == Posx
6920 then display ()
6921 else (
6922 GlClear.color (scalecolor2 conf.bgcolor);
6923 GlClear.clear [`color];
6925 method display = display ()
6926 method reshape w h = reshape w h
6927 method mouse b d x y m = mouse b d x y m
6928 method motion x y = state.mpos <- (x, y); motion x y
6929 method pmotion x y = state.mpos <- (x, y); pmotion x y
6930 method key k m =
6931 let mascm = m land (
6932 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6933 ) in
6934 match state.keystate with
6935 | KSnone ->
6936 let km = k, mascm in
6937 begin
6938 match
6939 let modehash = state.uioh#modehash in
6940 try Hashtbl.find modehash km
6941 with Not_found ->
6942 try Hashtbl.find globalkeyhash km
6943 with Not_found -> KMinsrt (k, m)
6944 with
6945 | KMinsrt (k, m) -> keyboard k m
6946 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6947 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6949 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6950 List.iter (fun (k, m) -> keyboard k m) insrt;
6951 state.keystate <- KSnone
6952 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6953 state.keystate <- KSinto (keys, insrt)
6954 | _ ->
6955 state.keystate <- KSnone
6957 method enter x y = state.mpos <- (x, y); pmotion x y
6958 method leave = state.mpos <- (-1, -1)
6959 method quit = raise Quit
6960 end) conf.winw conf.winh (platform = Posx) in
6962 state.wsfd <- wsfd;
6964 if not (
6965 List.exists GlMisc.check_extension
6966 [ "GL_ARB_texture_rectangle"
6967 ; "GL_EXT_texture_recangle"
6968 ; "GL_NV_texture_rectangle" ]
6970 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6972 let cr, sw =
6973 match Ne.pipe () with
6974 | Ne.Exn exn ->
6975 Printf.eprintf "pipe/crsw failed: %s" (Printexc.to_string exn);
6976 exit 1
6977 | Ne.Res rw -> rw
6978 and sr, cw =
6979 match Ne.pipe () with
6980 | Ne.Exn exn ->
6981 Printf.eprintf "pipe/srcw failed: %s" (Printexc.to_string exn);
6982 exit 1
6983 | Ne.Res rw -> rw
6986 cloexec cr;
6987 cloexec sw;
6988 cloexec sr;
6989 cloexec cw;
6991 setcheckers conf.checkers;
6992 redirectstderr ();
6994 init (cr, cw) (
6995 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
6996 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6997 !Config.fontpath, !trimcachepath,
6998 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
7000 state.sr <- sr;
7001 state.sw <- sw;
7002 state.text <- "Opening " ^ (mbtoutf8 state.path);
7003 reshape winw winh;
7004 opendoc state.path state.password;
7005 state.uioh <- uioh;
7007 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7009 let rec loop deadline =
7010 let r =
7011 match state.errfd with
7012 | None -> [state.sr; state.wsfd]
7013 | Some fd -> [state.sr; state.wsfd; fd]
7015 if state.redisplay
7016 then (
7017 state.redisplay <- false;
7018 display ();
7020 let timeout =
7021 let now = now () in
7022 if deadline > now
7023 then (
7024 if deadline = infinity
7025 then ~-.1.0
7026 else max 0.0 (deadline -. now)
7028 else 0.0
7030 let r, _, _ =
7031 try Unix.select r [] [] timeout
7032 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7034 begin match r with
7035 | [] ->
7036 state.ghyll None;
7037 let newdeadline =
7038 if state.ghyll == noghyll
7039 then
7040 match state.autoscroll with
7041 | Some step when step != 0 ->
7042 let y = state.y + step in
7043 let y =
7044 if y < 0
7045 then state.maxy
7046 else if y >= state.maxy then 0 else y
7048 gotoy y;
7049 if state.mode = View
7050 then state.text <- "";
7051 deadline +. 0.01
7052 | _ -> infinity
7053 else deadline +. 0.01
7055 loop newdeadline
7057 | l ->
7058 let rec checkfds = function
7059 | [] -> ()
7060 | fd :: rest when fd = state.sr ->
7061 let cmd = readcmd state.sr in
7062 act cmd;
7063 checkfds rest
7065 | fd :: rest when fd = state.wsfd ->
7066 Wsi.readresp fd;
7067 checkfds rest
7069 | fd :: rest ->
7070 let s = String.create 80 in
7071 let n = Unix.read fd s 0 80 in
7072 if conf.redirectstderr
7073 then (
7074 Buffer.add_substring state.errmsgs s 0 n;
7075 state.newerrmsgs <- true;
7076 state.redisplay <- true;
7078 else (
7079 prerr_string (String.sub s 0 n);
7080 flush stderr;
7082 checkfds rest
7084 checkfds l;
7085 let newdeadline =
7086 let deadline1 =
7087 if deadline = infinity
7088 then now () +. 0.01
7089 else deadline
7091 match state.autoscroll with
7092 | Some step when step != 0 -> deadline1
7093 | _ -> if state.ghyll == noghyll then infinity else deadline1
7095 loop newdeadline
7096 end;
7099 loop infinity;
7100 with Quit ->
7101 Config.save ();