Try to use pbo if available
[llpp.git] / main.ml
blob3b447e133a0f815fa1c6609767b7346fbab3da70
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 20) - 1) = 0
3895 then n lsr 20, "M"
3896 else (
3897 if n land ((1 lsl 10) - 1) = 0
3898 then n lsr 10, "K"
3899 else n, ""
3902 let rec loop s n =
3903 let h = n mod 1000 in
3904 let n = n / 1000 in
3905 if n = 0
3906 then string_of_int h ^ s
3907 else (
3908 let s = Printf.sprintf "_%03d%s" h s in
3909 loop s n
3912 loop "" n ^ s;
3915 let defghyllscroll = (40, 8, 32);;
3916 let ghyllscroll_of_string s =
3917 let (n, a, b) as nab =
3918 if s = "default"
3919 then defghyllscroll
3920 else Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b)
3922 if n <= a || n <= b || a >= b
3923 then failwith "invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3924 nab;
3927 let ghyllscroll_to_string ((n, a, b) as nab) =
3928 if nab = defghyllscroll
3929 then "default"
3930 else Printf.sprintf "%d,%d,%d" n a b;
3933 let describe_location () =
3934 let f (fn, _) l =
3935 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
3937 let fn, ln = List.fold_left f (-1, -1) state.layout in
3938 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
3939 let percent =
3940 if maxy <= 0
3941 then 100.
3942 else (100. *. (float state.y /. float maxy))
3944 if fn = ln
3945 then
3946 Printf.sprintf "page %d of %d [%.2f%%]"
3947 (fn+1) state.pagecount percent
3948 else
3949 Printf.sprintf
3950 "pages %d-%d of %d [%.2f%%]"
3951 (fn+1) (ln+1) state.pagecount percent
3954 let setpresentationmode v =
3955 let (n, _, _) = getanchor () in
3956 let _, h = getpageyh n in
3957 let ips = if conf.presentation then calcips h else conf.interpagespace in
3958 state.anchor <- (n, 0.0, float ips);
3959 conf.presentation <- v;
3960 if conf.presentation
3961 then (
3962 if not conf.scrollbarinpm
3963 then state.scrollw <- 0;
3965 else state.scrollw <- conf.scrollbw;
3966 represent ();
3969 let enterinfomode =
3970 let btos b = if b then "\xe2\x88\x9a" else "" in
3971 let showextended = ref false in
3972 let leave mode = function
3973 | Confirm -> state.mode <- mode
3974 | Cancel -> state.mode <- mode in
3975 let src =
3976 (object
3977 val mutable m_first_time = true
3978 val mutable m_l = []
3979 val mutable m_a = [||]
3980 val mutable m_prev_uioh = nouioh
3981 val mutable m_prev_mode = View
3983 inherit lvsourcebase
3985 method reset prev_mode prev_uioh =
3986 m_a <- Array.of_list (List.rev m_l);
3987 m_l <- [];
3988 m_prev_mode <- prev_mode;
3989 m_prev_uioh <- prev_uioh;
3990 if m_first_time
3991 then (
3992 let rec loop n =
3993 if n >= Array.length m_a
3994 then ()
3995 else
3996 match m_a.(n) with
3997 | _, _, _, Action _ -> m_active <- n
3998 | _ -> loop (n+1)
4000 loop 0;
4001 m_first_time <- false;
4004 method int name get set =
4005 m_l <-
4006 (name, `int get, 1, Action (
4007 fun u ->
4008 let ondone s =
4009 try set (int_of_string s)
4010 with exn ->
4011 state.text <- Printf.sprintf "bad integer `%s': %s"
4012 s (Printexc.to_string exn)
4014 state.text <- "";
4015 let te = name ^ ": ", "", None, intentry, ondone, true in
4016 state.mode <- Textentry (te, leave m_prev_mode);
4018 )) :: m_l
4020 method int_with_suffix name get set =
4021 m_l <-
4022 (name, `intws get, 1, Action (
4023 fun u ->
4024 let ondone s =
4025 try set (int_of_string_with_suffix s)
4026 with exn ->
4027 state.text <- Printf.sprintf "bad integer `%s': %s"
4028 s (Printexc.to_string exn)
4030 state.text <- "";
4031 let te =
4032 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4034 state.mode <- Textentry (te, leave m_prev_mode);
4036 )) :: m_l
4038 method bool ?(offset=1) ?(btos=btos) name get set =
4039 m_l <-
4040 (name, `bool (btos, get), offset, Action (
4041 fun u ->
4042 let v = get () in
4043 set (not v);
4045 )) :: m_l
4047 method color name get set =
4048 m_l <-
4049 (name, `color get, 1, Action (
4050 fun u ->
4051 let invalid = (nan, nan, nan) in
4052 let ondone s =
4053 let c =
4054 try color_of_string s
4055 with exn ->
4056 state.text <- Printf.sprintf "bad color `%s': %s"
4057 s (Printexc.to_string exn);
4058 invalid
4060 if c <> invalid
4061 then set c;
4063 let te = name ^ ": ", "", None, textentry, ondone, true in
4064 state.text <- color_to_string (get ());
4065 state.mode <- Textentry (te, leave m_prev_mode);
4067 )) :: m_l
4069 method string name get set =
4070 m_l <-
4071 (name, `string get, 1, Action (
4072 fun u ->
4073 let ondone s = set s in
4074 let te = name ^ ": ", "", None, textentry, ondone, true in
4075 state.mode <- Textentry (te, leave m_prev_mode);
4077 )) :: m_l
4079 method colorspace name get set =
4080 m_l <-
4081 (name, `string get, 1, Action (
4082 fun _ ->
4083 let source =
4084 let vals = [| "rgb"; "bgr"; "gray" |] in
4085 (object
4086 inherit lvsourcebase
4088 initializer
4089 m_active <- int_of_colorspace conf.colorspace;
4090 m_first <- 0;
4092 method getitemcount = Array.length vals
4093 method getitem n = (vals.(n), 0)
4094 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4095 ignore (uioh, first, pan, qsearch);
4096 if not cancel then set active;
4097 None
4098 method hasaction _ = true
4099 end)
4101 state.text <- "";
4102 let modehash = findkeyhash conf "info" in
4103 coe (new listview ~source ~trusted:true ~modehash)
4104 )) :: m_l
4106 method caption s offset =
4107 m_l <- (s, `empty, offset, Noaction) :: m_l
4109 method caption2 s f offset =
4110 m_l <- (s, `string f, offset, Noaction) :: m_l
4112 method getitemcount = Array.length m_a
4114 method getitem n =
4115 let tostr = function
4116 | `int f -> string_of_int (f ())
4117 | `intws f -> string_with_suffix_of_int (f ())
4118 | `string f -> f ()
4119 | `color f -> color_to_string (f ())
4120 | `bool (btos, f) -> btos (f ())
4121 | `empty -> ""
4123 let name, t, offset, _ = m_a.(n) in
4124 ((let s = tostr t in
4125 if String.length s > 0
4126 then Printf.sprintf "%s\t%s" name s
4127 else name),
4128 offset)
4130 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4131 let uiohopt =
4132 if not cancel
4133 then (
4134 m_qsearch <- qsearch;
4135 let uioh =
4136 match m_a.(active) with
4137 | _, _, _, Action f -> f uioh
4138 | _ -> uioh
4140 Some uioh
4142 else None
4144 m_active <- active;
4145 m_first <- first;
4146 m_pan <- pan;
4147 uiohopt
4149 method hasaction n =
4150 match m_a.(n) with
4151 | _, _, _, Action _ -> true
4152 | _ -> false
4153 end)
4155 let rec fillsrc prevmode prevuioh =
4156 let sep () = src#caption "" 0 in
4157 let colorp name get set =
4158 src#string name
4159 (fun () -> color_to_string (get ()))
4160 (fun v ->
4162 let c = color_of_string v in
4163 set c
4164 with exn ->
4165 state.text <- Printf.sprintf "bad color `%s': %s"
4166 v (Printexc.to_string exn);
4169 let oldmode = state.mode in
4170 let birdseye = isbirdseye state.mode in
4172 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4174 src#bool "presentation mode"
4175 (fun () -> conf.presentation)
4176 (fun v -> setpresentationmode v);
4178 src#bool "ignore case in searches"
4179 (fun () -> conf.icase)
4180 (fun v -> conf.icase <- v);
4182 src#bool "preload"
4183 (fun () -> conf.preload)
4184 (fun v -> conf.preload <- v);
4186 src#bool "highlight links"
4187 (fun () -> conf.hlinks)
4188 (fun v -> conf.hlinks <- v);
4190 src#bool "under info"
4191 (fun () -> conf.underinfo)
4192 (fun v -> conf.underinfo <- v);
4194 src#bool "persistent bookmarks"
4195 (fun () -> conf.savebmarks)
4196 (fun v -> conf.savebmarks <- v);
4198 src#bool "proportional display"
4199 (fun () -> conf.proportional)
4200 (fun v -> reqlayout conf.angle v);
4202 src#bool "trim margins"
4203 (fun () -> conf.trimmargins)
4204 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4206 src#bool "persistent location"
4207 (fun () -> conf.jumpback)
4208 (fun v -> conf.jumpback <- v);
4210 sep ();
4211 src#int "inter-page space"
4212 (fun () -> conf.interpagespace)
4213 (fun n ->
4214 conf.interpagespace <- n;
4215 docolumns conf.columns;
4216 let pageno, py =
4217 match state.layout with
4218 | [] -> 0, 0
4219 | l :: _ ->
4220 l.pageno, l.pagey
4222 state.maxy <- calcheight ();
4223 let y = getpagey pageno in
4224 gotoy (y + py)
4227 src#int "page bias"
4228 (fun () -> conf.pagebias)
4229 (fun v -> conf.pagebias <- v);
4231 src#int "scroll step"
4232 (fun () -> conf.scrollstep)
4233 (fun n -> conf.scrollstep <- n);
4235 src#int "horizontal scroll step"
4236 (fun () -> conf.hscrollstep)
4237 (fun v -> conf.hscrollstep <- v);
4239 src#int "auto scroll step"
4240 (fun () ->
4241 match state.autoscroll with
4242 | Some step -> step
4243 | _ -> conf.autoscrollstep)
4244 (fun n ->
4245 if state.autoscroll <> None
4246 then state.autoscroll <- Some n;
4247 conf.autoscrollstep <- n);
4249 src#int "zoom"
4250 (fun () -> truncate (conf.zoom *. 100.))
4251 (fun v -> setzoom ((float v) /. 100.));
4253 src#int "rotation"
4254 (fun () -> conf.angle)
4255 (fun v -> reqlayout v conf.proportional);
4257 src#int "scroll bar width"
4258 (fun () -> state.scrollw)
4259 (fun v ->
4260 state.scrollw <- v;
4261 conf.scrollbw <- v;
4262 reshape conf.winw conf.winh;
4265 src#int "scroll handle height"
4266 (fun () -> conf.scrollh)
4267 (fun v -> conf.scrollh <- v;);
4269 src#int "thumbnail width"
4270 (fun () -> conf.thumbw)
4271 (fun v ->
4272 conf.thumbw <- min 4096 v;
4273 match oldmode with
4274 | Birdseye beye ->
4275 leavebirdseye beye false;
4276 enterbirdseye ()
4277 | _ -> ()
4280 let mode = state.mode in
4281 src#string "columns"
4282 (fun () ->
4283 match conf.columns with
4284 | Csingle _ -> "1"
4285 | Cmulti (multi, _) -> multicolumns_to_string multi
4286 | Csplit (count, _) -> "-" ^ string_of_int count
4288 (fun v ->
4289 let n, a, b = multicolumns_of_string v in
4290 setcolumns mode n a b);
4292 sep ();
4293 src#caption "Presentation mode" 0;
4294 src#bool "scrollbar visible"
4295 (fun () -> conf.scrollbarinpm)
4296 (fun v ->
4297 if v != conf.scrollbarinpm
4298 then (
4299 conf.scrollbarinpm <- v;
4300 if conf.presentation
4301 then (
4302 state.scrollw <- if v then conf.scrollbw else 0;
4303 reshape conf.winw conf.winh;
4308 sep ();
4309 src#caption "Pixmap cache" 0;
4310 src#int_with_suffix "size (advisory)"
4311 (fun () -> conf.memlimit)
4312 (fun v -> conf.memlimit <- v);
4314 src#caption2 "used"
4315 (fun () -> Printf.sprintf "%s bytes, %d tiles"
4316 (string_with_suffix_of_int state.memused)
4317 (Hashtbl.length state.tilemap)) 1;
4319 sep ();
4320 src#caption "Layout" 0;
4321 src#caption2 "Dimension"
4322 (fun () ->
4323 Printf.sprintf "%dx%d (virtual %dx%d)"
4324 conf.winw conf.winh
4325 state.w state.maxy)
4327 if conf.debug
4328 then
4329 src#caption2 "Position" (fun () ->
4330 Printf.sprintf "%dx%d" state.x state.y
4332 else
4333 src#caption2 "Visible" (fun () -> describe_location ()) 1
4336 sep ();
4337 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
4338 "Save these parameters as global defaults at exit"
4339 (fun () -> conf.bedefault)
4340 (fun v -> conf.bedefault <- v)
4343 sep ();
4344 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4345 src#bool ~offset:0 ~btos "Extended parameters"
4346 (fun () -> !showextended)
4347 (fun v -> showextended := v; fillsrc prevmode prevuioh);
4348 if !showextended
4349 then (
4350 src#bool "checkers"
4351 (fun () -> conf.checkers)
4352 (fun v -> conf.checkers <- v; setcheckers v);
4353 src#bool "update cursor"
4354 (fun () -> conf.updatecurs)
4355 (fun v -> conf.updatecurs <- v);
4356 src#bool "verbose"
4357 (fun () -> conf.verbose)
4358 (fun v -> conf.verbose <- v);
4359 src#bool "invert colors"
4360 (fun () -> conf.invert)
4361 (fun v -> conf.invert <- v);
4362 src#bool "max fit"
4363 (fun () -> conf.maxhfit)
4364 (fun v -> conf.maxhfit <- v);
4365 src#bool "redirect stderr"
4366 (fun () -> conf.redirectstderr)
4367 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4368 src#string "uri launcher"
4369 (fun () -> conf.urilauncher)
4370 (fun v -> conf.urilauncher <- v);
4371 src#string "path launcher"
4372 (fun () -> conf.pathlauncher)
4373 (fun v -> conf.pathlauncher <- v);
4374 src#string "tile size"
4375 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
4376 (fun v ->
4378 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
4379 conf.tilew <- max 64 w;
4380 conf.tileh <- max 64 h;
4381 flushtiles ();
4382 with exn ->
4383 state.text <- Printf.sprintf "bad tile size `%s': %s"
4384 v (Printexc.to_string exn));
4385 src#int "texture count"
4386 (fun () -> conf.texcount)
4387 (fun v ->
4388 if realloctexts v
4389 then conf.texcount <- v
4390 else showtext '!' " Failed to set texture count please retry later"
4392 src#int "slice height"
4393 (fun () -> conf.sliceheight)
4394 (fun v ->
4395 conf.sliceheight <- v;
4396 wcmd "sliceh %d" conf.sliceheight;
4398 src#int "anti-aliasing level"
4399 (fun () -> conf.aalevel)
4400 (fun v ->
4401 conf.aalevel <- bound v 0 8;
4402 state.anchor <- getanchor ();
4403 opendoc state.path state.password;
4405 src#string "page scroll scaling factor"
4406 (fun () -> string_of_float conf.pgscale)
4407 (fun v ->
4409 let s = float_of_string v in
4410 conf.pgscale <- s
4411 with exn ->
4412 state.text <- Printf.sprintf
4413 "bad page scroll scaling factor `%s': %s"
4414 v (Printexc.to_string exn)
4417 src#int "ui font size"
4418 (fun () -> fstate.fontsize)
4419 (fun v -> setfontsize (bound v 5 100));
4420 src#int "hint font size"
4421 (fun () -> conf.hfsize)
4422 (fun v -> conf.hfsize <- bound v 5 100);
4423 colorp "background color"
4424 (fun () -> conf.bgcolor)
4425 (fun v -> conf.bgcolor <- v);
4426 src#bool "crop hack"
4427 (fun () -> conf.crophack)
4428 (fun v -> conf.crophack <- v);
4429 src#string "trim fuzz"
4430 (fun () -> irect_to_string conf.trimfuzz)
4431 (fun v ->
4433 conf.trimfuzz <- irect_of_string v;
4434 if conf.trimmargins
4435 then settrim true conf.trimfuzz;
4436 with exn ->
4437 state.text <- Printf.sprintf "bad irect `%s': %s"
4438 v (Printexc.to_string exn)
4440 src#string "throttle"
4441 (fun () ->
4442 match conf.maxwait with
4443 | None -> "show place holder if page is not ready"
4444 | Some time ->
4445 if time = infinity
4446 then "wait for page to fully render"
4447 else
4448 "wait " ^ string_of_float time
4449 ^ " seconds before showing placeholder"
4451 (fun v ->
4453 let f = float_of_string v in
4454 if f <= 0.0
4455 then conf.maxwait <- None
4456 else conf.maxwait <- Some f
4457 with exn ->
4458 state.text <- Printf.sprintf "bad time `%s': %s"
4459 v (Printexc.to_string exn)
4461 src#string "ghyll scroll"
4462 (fun () ->
4463 match conf.ghyllscroll with
4464 | None -> ""
4465 | Some nab -> ghyllscroll_to_string nab
4467 (fun v ->
4469 let gs =
4470 if String.length v = 0
4471 then None
4472 else Some (ghyllscroll_of_string v)
4474 conf.ghyllscroll <- gs
4475 with exn ->
4476 state.text <- Printf.sprintf "bad ghyll `%s': %s"
4477 v (Printexc.to_string exn)
4479 src#string "selection command"
4480 (fun () -> conf.selcmd)
4481 (fun v -> conf.selcmd <- v);
4482 src#colorspace "color space"
4483 (fun () -> colorspace_to_string conf.colorspace)
4484 (fun v ->
4485 conf.colorspace <- colorspace_of_int v;
4486 wcmd "cs %d" v;
4487 load state.layout;
4489 if pbousable ()
4490 then
4491 src#bool "use PBO"
4492 (fun () -> conf.usepbo)
4493 (fun v -> conf.usepbo <- v);
4496 sep ();
4497 src#caption "Document" 0;
4498 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
4499 src#caption2 "Pages"
4500 (fun () -> string_of_int state.pagecount) 1;
4501 src#caption2 "Dimensions"
4502 (fun () -> string_of_int (List.length state.pdims)) 1;
4503 if conf.trimmargins
4504 then (
4505 sep ();
4506 src#caption "Trimmed margins" 0;
4507 src#caption2 "Dimensions"
4508 (fun () -> string_of_int (List.length state.pdims)) 1;
4511 sep ();
4512 src#caption "OpenGL" 0;
4513 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
4514 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
4515 src#reset prevmode prevuioh;
4517 fun () ->
4518 state.text <- "";
4519 let prevmode = state.mode
4520 and prevuioh = state.uioh in
4521 fillsrc prevmode prevuioh;
4522 let source = (src :> lvsource) in
4523 let modehash = findkeyhash conf "info" in
4524 state.uioh <- coe (object (self)
4525 inherit listview ~source ~trusted:true ~modehash as super
4526 val mutable m_prevmemused = 0
4527 method infochanged = function
4528 | Memused ->
4529 if m_prevmemused != state.memused
4530 then (
4531 m_prevmemused <- state.memused;
4532 G.postRedisplay "memusedchanged";
4534 | Pdim -> G.postRedisplay "pdimchanged"
4535 | Docinfo -> fillsrc prevmode prevuioh
4537 method key key mask =
4538 if not (Wsi.withctrl mask)
4539 then
4540 match key with
4541 | 0xff51 -> coe (self#updownlevel ~-1)
4542 | 0xff53 -> coe (self#updownlevel 1)
4543 | _ -> super#key key mask
4544 else super#key key mask
4545 end);
4546 G.postRedisplay "info";
4549 let enterhelpmode =
4550 let source =
4551 (object
4552 inherit lvsourcebase
4553 method getitemcount = Array.length state.help
4554 method getitem n =
4555 let s, l, _ = state.help.(n) in
4556 (s, l)
4558 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4559 let optuioh =
4560 if not cancel
4561 then (
4562 m_qsearch <- qsearch;
4563 match state.help.(active) with
4564 | _, _, Action f -> Some (f uioh)
4565 | _ -> Some (uioh)
4567 else None
4569 m_active <- active;
4570 m_first <- first;
4571 m_pan <- pan;
4572 optuioh
4574 method hasaction n =
4575 match state.help.(n) with
4576 | _, _, Action _ -> true
4577 | _ -> false
4579 initializer
4580 m_active <- -1
4581 end)
4582 in fun () ->
4583 let modehash = findkeyhash conf "help" in
4584 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
4585 G.postRedisplay "help";
4588 let entermsgsmode =
4589 let msgsource =
4590 let re = Str.regexp "[\r\n]" in
4591 (object
4592 inherit lvsourcebase
4593 val mutable m_items = [||]
4595 method getitemcount = 1 + Array.length m_items
4597 method getitem n =
4598 if n = 0
4599 then "[Clear]", 0
4600 else m_items.(n-1), 0
4602 method exit ~uioh ~cancel ~active ~first ~pan ~qsearch =
4603 ignore uioh;
4604 if not cancel
4605 then (
4606 if active = 0
4607 then Buffer.clear state.errmsgs;
4608 m_qsearch <- qsearch;
4610 m_active <- active;
4611 m_first <- first;
4612 m_pan <- pan;
4613 None
4615 method hasaction n =
4616 n = 0
4618 method reset =
4619 state.newerrmsgs <- false;
4620 let l = Str.split re (Buffer.contents state.errmsgs) in
4621 m_items <- Array.of_list l
4623 initializer
4624 m_active <- 0
4625 end)
4626 in fun () ->
4627 state.text <- "";
4628 msgsource#reset;
4629 let source = (msgsource :> lvsource) in
4630 let modehash = findkeyhash conf "listview" in
4631 state.uioh <- coe (object
4632 inherit listview ~source ~trusted:false ~modehash as super
4633 method display =
4634 if state.newerrmsgs
4635 then msgsource#reset;
4636 super#display
4637 end);
4638 G.postRedisplay "msgs";
4641 let quickbookmark ?title () =
4642 match state.layout with
4643 | [] -> ()
4644 | l :: _ ->
4645 let title =
4646 match title with
4647 | None ->
4648 let sec = Unix.gettimeofday () in
4649 let tm = Unix.localtime sec in
4650 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4651 (l.pageno+1)
4652 tm.Unix.tm_mday
4653 tm.Unix.tm_mon
4654 (tm.Unix.tm_year + 1900)
4655 tm.Unix.tm_hour
4656 tm.Unix.tm_min
4657 | Some title -> title
4659 state.bookmarks <- (title, 0, getanchor1 l) :: state.bookmarks
4662 let doreshape w h =
4663 state.fullscreen <- None;
4664 Wsi.reshape w h;
4667 let setautoscrollspeed step goingdown =
4668 let incr = max 1 ((abs step) / 2) in
4669 let incr = if goingdown then incr else -incr in
4670 let astep = step + incr in
4671 state.autoscroll <- Some astep;
4674 let gotounder = function
4675 | Ulinkgoto (pageno, top) ->
4676 if pageno >= 0
4677 then (
4678 addnav ();
4679 gotopage1 pageno top;
4682 | Ulinkuri s ->
4683 gotouri s
4685 | Uremote (filename, pageno) ->
4686 let path =
4687 if Sys.file_exists filename
4688 then filename
4689 else
4690 let dir = Filename.dirname state.path in
4691 let path = Filename.concat dir filename in
4692 if Sys.file_exists path
4693 then path
4694 else ""
4696 if String.length path > 0
4697 then (
4698 let anchor = getanchor () in
4699 let ranchor = state.path, state.password, anchor in
4700 state.anchor <- (pageno, 0.0, 0.0);
4701 state.ranchors <- ranchor :: state.ranchors;
4702 opendoc path "";
4704 else showtext '!' ("Could not find " ^ filename)
4706 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4709 let canpan () =
4710 match conf.columns with
4711 | Csplit _ -> true
4712 | _ -> conf.zoom > 1.0
4715 let viewkeyboard key mask =
4716 let enttext te =
4717 let mode = state.mode in
4718 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
4719 state.text <- "";
4720 enttext ();
4721 G.postRedisplay "view:enttext"
4723 let ctrl = Wsi.withctrl mask in
4724 let existsinrow pageno (columns, coverA, coverB) p =
4725 let last = ((pageno - coverA) mod columns) + columns in
4726 let rec any = function
4727 | [] -> false
4728 | l :: rest ->
4729 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
4730 then p l
4731 else (
4732 if not (p l)
4733 then (if l.pageno = last then false else any rest)
4734 else true
4737 any state.layout
4739 match key with
4740 | 81 -> (* Q *)
4741 exit 0
4743 | 0xff63 -> (* insert *)
4744 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
4745 then (
4746 state.mode <- LinkNav (Ltgendir 0);
4747 gotoy state.y;
4749 else showtext '!' "Keyboard link navigation does not work under rotation"
4751 | 0xff1b | 113 -> (* escape / q *)
4752 begin match state.mstate with
4753 | Mzoomrect _ ->
4754 state.mstate <- Mnone;
4755 Wsi.setcursor Wsi.CURSOR_INHERIT;
4756 G.postRedisplay "kill zoom rect";
4757 | _ ->
4758 begin match state.mode with
4759 | LinkNav _ ->
4760 state.mode <- View;
4761 G.postRedisplay "esc leave linknav"
4762 | _ ->
4763 match state.ranchors with
4764 | [] -> raise Quit
4765 | (path, password, anchor) :: rest ->
4766 state.ranchors <- rest;
4767 state.anchor <- anchor;
4768 opendoc path password
4769 end;
4770 end;
4772 | 0xff08 -> (* backspace *)
4773 gotoghyll (getnav ~-1)
4775 | 111 -> (* o *)
4776 enteroutlinemode ()
4778 | 117 -> (* u *)
4779 state.rects <- [];
4780 state.text <- "";
4781 G.postRedisplay "dehighlight";
4783 | 47 | 63 -> (* / ? *)
4784 let ondone isforw s =
4785 cbput state.hists.pat s;
4786 state.searchpattern <- s;
4787 search s isforw
4789 let s = String.create 1 in
4790 s.[0] <- Char.chr key;
4791 enttext (s, "", Some (onhist state.hists.pat),
4792 textentry, ondone (key = 47), true)
4794 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4795 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4796 setzoom (conf.zoom +. incr)
4798 | 43 | 0xffab -> (* + *)
4799 let ondone s =
4800 let n =
4801 try int_of_string s with exc ->
4802 state.text <- Printf.sprintf "bad integer `%s': %s"
4803 s (Printexc.to_string exc);
4804 max_int
4806 if n != max_int
4807 then (
4808 conf.pagebias <- n;
4809 state.text <- "page bias is now " ^ string_of_int n;
4812 enttext ("page bias: ", "", None, intentry, ondone, true)
4814 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4815 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4816 setzoom (max 0.01 (conf.zoom -. decr))
4818 | 45 | 0xffad -> (* - *)
4819 let ondone msg = state.text <- msg in
4820 enttext (
4821 "option [acfhilpstvxACFPRSZTIS]: ", "", None,
4822 optentry state.mode, ondone, true
4825 | 48 when ctrl -> (* ctrl-0 *)
4826 setzoom 1.0
4828 | 49 when ctrl -> (* ctrl-1 *)
4829 let cols =
4830 match conf.columns with
4831 | Csingle _ | Cmulti _ -> 1
4832 | Csplit (n, _) -> n
4834 let zoom = zoomforh conf.winw conf.winh state.scrollw cols in
4835 if zoom < 1.0
4836 then setzoom zoom
4838 | 0xffc6 -> (* f9 *)
4839 togglebirdseye ()
4841 | 57 when ctrl -> (* ctrl-9 *)
4842 togglebirdseye ()
4844 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4845 when not ctrl -> (* 0..9 *)
4846 let ondone s =
4847 let n =
4848 try int_of_string s with exc ->
4849 state.text <- Printf.sprintf "bad integer `%s': %s"
4850 s (Printexc.to_string exc);
4853 if n >= 0
4854 then (
4855 addnav ();
4856 cbput state.hists.pag (string_of_int n);
4857 gotopage1 (n + conf.pagebias - 1) 0;
4860 let pageentry text key =
4861 match Char.unsafe_chr key with
4862 | 'g' -> TEdone text
4863 | _ -> intentry text key
4865 let text = "x" in text.[0] <- Char.chr key;
4866 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
4868 | 98 -> (* b *)
4869 state.scrollw <- if state.scrollw > 0 then 0 else conf.scrollbw;
4870 reshape conf.winw conf.winh;
4872 | 108 -> (* l *)
4873 conf.hlinks <- not conf.hlinks;
4874 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
4875 G.postRedisplay "toggle highlightlinks";
4877 | 70 -> (* F *)
4878 state.glinks <- true;
4879 let mode = state.mode in
4880 state.mode <- Textentry (
4881 (":", "", None, linknentry, linkndone gotounder, false),
4882 (fun _ ->
4883 state.glinks <- false;
4884 state.mode <- mode)
4886 state.text <- "";
4887 G.postRedisplay "view:linkent(F)"
4889 | 121 -> (* y *)
4890 state.glinks <- true;
4891 let mode = state.mode in
4892 state.mode <- Textentry (
4893 (":", "", None, linknentry, linkndone (fun under ->
4894 match Ne.pipe () with
4895 | Ne.Exn exn ->
4896 showtext '!' (Printf.sprintf "pipe failed: %s"
4897 (Printexc.to_string exn));
4898 | Ne.Res (r, w) ->
4899 let popened =
4900 try popen conf.selcmd [r, 0; w, -1]; true
4901 with exn ->
4902 showtext '!'
4903 (Printf.sprintf "failed to execute %s: %s"
4904 conf.selcmd (Printexc.to_string exn));
4905 false
4907 let clo cap fd =
4908 Ne.clo fd (fun msg ->
4909 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
4912 let s = undertext under in
4913 if popened
4914 then
4915 (try
4916 let l = String.length s in
4917 let n = Unix.write w s 0 l in
4918 if n != l
4919 then
4920 showtext '!'
4921 (Printf.sprintf
4922 "failed to write %d characters to sel pipe, wrote %d"
4925 with exn ->
4926 showtext '!'
4927 (Printf.sprintf "failed to write to sel pipe: %s"
4928 (Printexc.to_string exn)
4931 else dolog "%s" s;
4932 clo "pipe/r" r;
4933 clo "pipe/w" w;
4934 ), false
4936 fun _ ->
4937 state.glinks <- false;
4938 state.mode <- mode
4940 state.text <- "";
4941 G.postRedisplay "view:linkent"
4943 | 97 -> (* a *)
4944 begin match state.autoscroll with
4945 | Some step ->
4946 conf.autoscrollstep <- step;
4947 state.autoscroll <- None
4948 | None ->
4949 if conf.autoscrollstep = 0
4950 then state.autoscroll <- Some 1
4951 else state.autoscroll <- Some conf.autoscrollstep
4954 | 112 when ctrl -> (* ctrl-p *)
4955 launchpath ()
4957 | 80 -> (* P *)
4958 setpresentationmode (not conf.presentation);
4959 showtext ' ' ("presentation mode " ^
4960 if conf.presentation then "on" else "off");
4962 | 102 -> (* f *)
4963 begin match state.fullscreen with
4964 | None ->
4965 state.fullscreen <- Some (conf.winw, conf.winh);
4966 Wsi.fullscreen ()
4967 | Some (w, h) ->
4968 state.fullscreen <- None;
4969 doreshape w h
4972 | 112 | 78 -> (* p|N *)
4973 search state.searchpattern false
4975 | 110 | 0xffc0 -> (* n|F3 *)
4976 search state.searchpattern true
4978 | 116 -> (* t *)
4979 begin match state.layout with
4980 | [] -> ()
4981 | l :: _ ->
4982 gotoy_and_clear_text (getpagey l.pageno)
4985 | 32 -> (* space *)
4986 begin match state.layout with
4987 | [] -> ()
4988 | l :: rest ->
4989 match conf.columns with
4990 | Csingle _ ->
4991 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
4992 then
4993 let y = clamp (pgscale conf.winh) in
4994 gotoghyll y
4995 else
4996 let pageno = min (l.pageno+1) (state.pagecount-1) in
4997 gotoghyll (getpagey pageno)
4998 | Cmulti ((c, _, _) as cl, _) ->
4999 if conf.presentation
5000 && (existsinrow l.pageno cl
5001 (fun l -> l.pageh > l.pagey + l.pagevh))
5002 then
5003 let y = clamp (pgscale conf.winh) in
5004 gotoghyll y
5005 else
5006 let pageno = min (l.pageno+c) (state.pagecount-1) in
5007 gotoghyll (getpagey pageno)
5008 | Csplit (n, _) ->
5009 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
5010 then
5011 let pagey, pageh = getpageyh l.pageno in
5012 let pagey = pagey + pageh * l.pagecol in
5013 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
5014 gotoghyll (pagey + pageh + ips)
5017 | 0xff9f | 0xffff -> (* delete *)
5018 begin match state.layout with
5019 | [] -> ()
5020 | l :: _ ->
5021 match conf.columns with
5022 | Csingle _ ->
5023 if conf.presentation && l.pagey != 0
5024 then
5025 gotoghyll (clamp (pgscale ~-(conf.winh)))
5026 else
5027 let pageno = max 0 (l.pageno-1) in
5028 gotoghyll (getpagey pageno)
5029 | Cmulti ((c, _, coverB) as cl, _) ->
5030 if conf.presentation &&
5031 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
5032 then
5033 gotoghyll (clamp (pgscale ~-(conf.winh)))
5034 else
5035 let decr =
5036 if l.pageno = state.pagecount - coverB
5037 then 1
5038 else c
5040 let pageno = max 0 (l.pageno-decr) in
5041 gotoghyll (getpagey pageno)
5042 | Csplit (n, _) ->
5043 let y =
5044 if l.pagecol = 0
5045 then
5046 if l.pageno = 0
5047 then l.pagey
5048 else
5049 let pageno = max 0 (l.pageno-1) in
5050 let pagey, pageh = getpageyh pageno in
5051 pagey + (n-1)*pageh
5052 else
5053 let pagey, pageh = getpageyh l.pageno in
5054 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5056 gotoghyll y
5059 | 61 -> (* = *)
5060 showtext ' ' (describe_location ());
5062 | 119 -> (* w *)
5063 begin match state.layout with
5064 | [] -> ()
5065 | l :: _ ->
5066 doreshape (l.pagew + state.scrollw) l.pageh;
5067 G.postRedisplay "w"
5070 | 39 -> (* ' *)
5071 enterbookmarkmode ()
5073 | 104 | 0xffbe -> (* h|F1 *)
5074 enterhelpmode ()
5076 | 105 -> (* i *)
5077 enterinfomode ()
5079 | 101 when conf.redirectstderr -> (* e *)
5080 entermsgsmode ()
5082 | 109 -> (* m *)
5083 let ondone s =
5084 match state.layout with
5085 | l :: _ -> state.bookmarks <- (s, 0, getanchor1 l) :: state.bookmarks
5086 | _ -> ()
5088 enttext ("bookmark: ", "", None, textentry, ondone, true)
5090 | 126 -> (* ~ *)
5091 quickbookmark ();
5092 showtext ' ' "Quick bookmark added";
5094 | 122 -> (* z *)
5095 begin match state.layout with
5096 | l :: _ ->
5097 let rect = getpdimrect l.pagedimno in
5098 let w, h =
5099 if conf.crophack
5100 then
5101 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5102 truncate (1.2 *. (rect.(3) -. rect.(0))))
5103 else
5104 (truncate (rect.(1) -. rect.(0)),
5105 truncate (rect.(3) -. rect.(0)))
5107 let w = truncate ((float w)*.conf.zoom)
5108 and h = truncate ((float h)*.conf.zoom) in
5109 if w != 0 && h != 0
5110 then (
5111 state.anchor <- getanchor ();
5112 doreshape (w + state.scrollw) (h + conf.interpagespace)
5114 G.postRedisplay "z";
5116 | [] -> ()
5119 | 50 when ctrl -> (* ctrl-2 *)
5120 let maxw = getmaxw () in
5121 if maxw > 0.0
5122 then setzoom (maxw /. float conf.winw)
5124 | 60 | 62 -> (* < > *)
5125 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.proportional
5127 | 91 | 93 -> (* [ ] *)
5128 conf.colorscale <-
5129 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5131 G.postRedisplay "brightness";
5133 | 99 when state.mode = View -> (* c *)
5134 let (c, a, b), z =
5135 match state.prevcolumns with
5136 | None -> (1, 0, 0), 1.0
5137 | Some (columns, z) ->
5138 let cab =
5139 match columns with
5140 | Csplit (c, _) -> -c, 0, 0
5141 | Cmulti ((c, a, b), _) -> c, a, b
5142 | Csingle _ -> 1, 0, 0
5144 cab, z
5146 setcolumns View c a b;
5147 setzoom z;
5149 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask ->
5150 setzoom state.prevzoom
5152 | 107 | 0xff52 -> (* k up *)
5153 begin match state.autoscroll with
5154 | None ->
5155 begin match state.mode with
5156 | Birdseye beye -> upbirdseye 1 beye
5157 | _ ->
5158 if ctrl
5159 then gotoy_and_clear_text (clamp ~-(conf.winh/2))
5160 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5162 | Some n ->
5163 setautoscrollspeed n false
5166 | 106 | 0xff54 -> (* j down *)
5167 begin match state.autoscroll with
5168 | None ->
5169 begin match state.mode with
5170 | Birdseye beye -> downbirdseye 1 beye
5171 | _ ->
5172 if ctrl
5173 then gotoy_and_clear_text (clamp (conf.winh/2))
5174 else gotoy_and_clear_text (clamp conf.scrollstep)
5176 | Some n ->
5177 setautoscrollspeed n true
5180 | 0xff51 | 0xff53 when not (Wsi.withalt mask) -> (* left / right *)
5181 if canpan ()
5182 then
5183 let dx =
5184 if ctrl
5185 then conf.winw / 2
5186 else conf.hscrollstep
5188 let dx = if key = 0xff51 then dx else -dx in
5189 state.x <- state.x + dx;
5190 gotoy_and_clear_text state.y
5191 else (
5192 state.text <- "";
5193 G.postRedisplay "lef/right"
5196 | 0xff55 -> (* prior *)
5197 let y =
5198 if ctrl
5199 then
5200 match state.layout with
5201 | [] -> state.y
5202 | l :: _ -> state.y - l.pagey
5203 else
5204 clamp (pgscale (-conf.winh))
5206 gotoghyll y
5208 | 0xff56 -> (* next *)
5209 let y =
5210 if ctrl
5211 then
5212 match List.rev state.layout with
5213 | [] -> state.y
5214 | l :: _ -> getpagey l.pageno
5215 else
5216 clamp (pgscale conf.winh)
5218 gotoghyll y
5220 | 103 | 0xff50 -> (* g home *)
5221 gotoghyll 0
5222 | 71 | 0xff57 -> (* G end *)
5223 gotoghyll (clamp state.maxy)
5225 | 0xff53 when Wsi.withalt mask -> (* alt-right *)
5226 gotoghyll (getnav 1)
5227 | 0xff51 when Wsi.withalt mask -> (* alt-left *)
5228 gotoghyll (getnav ~-1)
5230 | 114 -> (* r *)
5231 reload ()
5233 | 118 when conf.debug -> (* v *)
5234 state.rects <- [];
5235 List.iter (fun l ->
5236 match getopaque l.pageno with
5237 | None -> ()
5238 | Some opaque ->
5239 let x0, y0, x1, y1 = pagebbox opaque in
5240 let a,b = float x0, float y0 in
5241 let c,d = float x1, float y0 in
5242 let e,f = float x1, float y1 in
5243 let h,j = float x0, float y1 in
5244 let rect = (a,b,c,d,e,f,h,j) in
5245 debugrect rect;
5246 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5247 ) state.layout;
5248 G.postRedisplay "v";
5250 | _ ->
5251 vlog "huh? %s" (Wsi.keyname key)
5254 let linknavkeyboard key mask linknav =
5255 let getpage pageno =
5256 let rec loop = function
5257 | [] -> None
5258 | l :: _ when l.pageno = pageno -> Some l
5259 | _ :: rest -> loop rest
5260 in loop state.layout
5262 let doexact (pageno, n) =
5263 match getopaque pageno, getpage pageno with
5264 | Some opaque, Some l ->
5265 if key = 0xff0d
5266 then
5267 let under = getlink opaque n in
5268 G.postRedisplay "link gotounder";
5269 gotounder under;
5270 state.mode <- View;
5271 else
5272 let opt, dir =
5273 match key with
5274 | 0xff50 -> (* home *)
5275 Some (findlink opaque LDfirst), -1
5277 | 0xff57 -> (* end *)
5278 Some (findlink opaque LDlast), 1
5280 | 0xff51 -> (* left *)
5281 Some (findlink opaque (LDleft n)), -1
5283 | 0xff53 -> (* right *)
5284 Some (findlink opaque (LDright n)), 1
5286 | 0xff52 -> (* up *)
5287 Some (findlink opaque (LDup n)), -1
5289 | 0xff54 -> (* down *)
5290 Some (findlink opaque (LDdown n)), 1
5292 | _ -> None, 0
5294 let pwl l dir =
5295 begin match findpwl l.pageno dir with
5296 | Pwlnotfound -> ()
5297 | Pwl pageno ->
5298 let notfound dir =
5299 state.mode <- LinkNav (Ltgendir dir);
5300 let y, h = getpageyh pageno in
5301 let y =
5302 if dir < 0
5303 then y + h - conf.winh
5304 else y
5306 gotoy y
5308 begin match getopaque pageno, getpage pageno with
5309 | Some opaque, Some _ ->
5310 let link =
5311 let ld = if dir > 0 then LDfirst else LDlast in
5312 findlink opaque ld
5314 begin match link with
5315 | Lfound m ->
5316 showlinktype (getlink opaque m);
5317 state.mode <- LinkNav (Ltexact (pageno, m));
5318 G.postRedisplay "linknav jpage";
5319 | _ -> notfound dir
5320 end;
5321 | _ -> notfound dir
5322 end;
5323 end;
5325 begin match opt with
5326 | Some Lnotfound -> pwl l dir;
5327 | Some (Lfound m) ->
5328 if m = n
5329 then pwl l dir
5330 else (
5331 let _, y0, _, y1 = getlinkrect opaque m in
5332 if y0 < l.pagey
5333 then gotopage1 l.pageno y0
5334 else (
5335 let d = fstate.fontsize + 1 in
5336 if y1 - l.pagey > l.pagevh - d
5337 then gotopage1 l.pageno (y1 - conf.winh - state.hscrollh + d)
5338 else G.postRedisplay "linknav";
5340 showlinktype (getlink opaque m);
5341 state.mode <- LinkNav (Ltexact (l.pageno, m));
5344 | None -> viewkeyboard key mask
5345 end;
5346 | _ -> viewkeyboard key mask
5348 if key = 0xff63
5349 then (
5350 state.mode <- View;
5351 G.postRedisplay "leave linknav"
5353 else
5354 match linknav with
5355 | Ltgendir _ -> viewkeyboard key mask
5356 | Ltexact exact -> doexact exact
5359 let keyboard key mask =
5360 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
5361 then wcmd "interrupt"
5362 else state.uioh <- state.uioh#key key mask
5365 let birdseyekeyboard key mask
5366 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
5367 let incr =
5368 match conf.columns with
5369 | Csingle _ -> 1
5370 | Cmulti ((c, _, _), _) -> c
5371 | Csplit _ -> failwith "bird's eye split mode"
5373 let pgh layout = List.fold_left (fun m l -> max l.pageh m) conf.winh layout in
5374 match key with
5375 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
5376 let y, h = getpageyh pageno in
5377 let top = (conf.winh - h) / 2 in
5378 gotoy (max 0 (y - top))
5379 | 0xff0d -> leavebirdseye beye false
5380 | 0xff1b -> leavebirdseye beye true (* escape *)
5381 | 0xff52 -> upbirdseye incr beye (* up *)
5382 | 0xff54 -> downbirdseye incr beye (* down *)
5383 | 0xff51 -> upbirdseye 1 beye (* left *)
5384 | 0xff53 -> downbirdseye 1 beye (* right *)
5386 | 0xff55 -> (* prior *)
5387 begin match state.layout with
5388 | l :: _ ->
5389 if l.pagey != 0
5390 then (
5391 state.mode <- Birdseye (
5392 oconf, leftx, l.pageno, hooverpageno, anchor
5394 gotopage1 l.pageno 0;
5396 else (
5397 let layout = layout (state.y-conf.winh) (pgh state.layout) in
5398 match layout with
5399 | [] -> gotoy (clamp (-conf.winh))
5400 | l :: _ ->
5401 state.mode <- Birdseye (
5402 oconf, leftx, l.pageno, hooverpageno, anchor
5404 gotopage1 l.pageno 0
5407 | [] -> gotoy (clamp (-conf.winh))
5408 end;
5410 | 0xff56 -> (* next *)
5411 begin match List.rev state.layout with
5412 | l :: _ ->
5413 let layout = layout (state.y + (pgh state.layout)) conf.winh in
5414 begin match layout with
5415 | [] ->
5416 let incr = l.pageh - l.pagevh in
5417 if incr = 0
5418 then (
5419 state.mode <-
5420 Birdseye (
5421 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
5423 G.postRedisplay "birdseye pagedown";
5425 else gotoy (clamp (incr + conf.interpagespace*2));
5427 | l :: _ ->
5428 state.mode <-
5429 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
5430 gotopage1 l.pageno 0;
5433 | [] -> gotoy (clamp conf.winh)
5434 end;
5436 | 0xff50 -> (* home *)
5437 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
5438 gotopage1 0 0
5440 | 0xff57 -> (* end *)
5441 let pageno = state.pagecount - 1 in
5442 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
5443 if not (pagevisible state.layout pageno)
5444 then
5445 let h =
5446 match List.rev state.pdims with
5447 | [] -> conf.winh
5448 | (_, _, h, _) :: _ -> h
5450 gotoy (max 0 (getpagey pageno - (conf.winh - h - conf.interpagespace)))
5451 else G.postRedisplay "birdseye end";
5452 | _ -> viewkeyboard key mask
5455 let drawpage l linkindexbase =
5456 let color =
5457 match state.mode with
5458 | Textentry _ -> scalecolor 0.4
5459 | LinkNav _
5460 | View -> scalecolor 1.0
5461 | Birdseye (_, _, pageno, hooverpageno, _) ->
5462 if l.pageno = hooverpageno
5463 then scalecolor 0.9
5464 else (
5465 if l.pageno = pageno
5466 then scalecolor 1.0
5467 else scalecolor 0.8
5470 drawtiles l color;
5471 begin match getopaque l.pageno with
5472 | Some opaque ->
5473 if tileready l l.pagex l.pagey
5474 then
5475 let x = l.pagedispx - l.pagex
5476 and y = l.pagedispy - l.pagey in
5477 let hlmask =
5478 match conf.columns with
5479 | Csingle _ | Cmulti _ ->
5480 (if conf.hlinks then 1 else 0)
5481 + (if state.glinks
5482 && not (isbirdseye state.mode) then 2 else 0)
5483 | _ -> 0
5485 let s =
5486 match state.mode with
5487 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
5488 | _ -> ""
5490 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
5491 else 0
5493 | _ -> 0
5494 end;
5497 let scrollindicator () =
5498 let sbw, ph, sh = state.uioh#scrollph in
5499 let sbh, pw, sw = state.uioh#scrollpw in
5501 GlDraw.color (0.64, 0.64, 0.64);
5502 GlDraw.rect
5503 (float (conf.winw - sbw), 0.)
5504 (float conf.winw, float conf.winh)
5506 GlDraw.rect
5507 (0., float (conf.winh - sbh))
5508 (float (conf.winw - state.scrollw - 1), float conf.winh)
5510 GlDraw.color (0.0, 0.0, 0.0);
5512 GlDraw.rect
5513 (float (conf.winw - sbw), ph)
5514 (float conf.winw, ph +. sh)
5516 GlDraw.rect
5517 (pw, float (conf.winh - sbh))
5518 (pw +. sw, float conf.winh)
5522 let showsel () =
5523 match state.mstate with
5524 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
5527 | Msel ((x0, y0), (x1, y1)) ->
5528 let rec loop = function
5529 | l :: ls ->
5530 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5531 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5532 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5533 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5534 then
5535 match getopaque l.pageno with
5536 | Some opaque ->
5537 let x0, y0 = pagetranslatepoint l x0 y0 in
5538 let x1, y1 = pagetranslatepoint l x1 y1 in
5539 seltext opaque (x0, y0, x1, y1);
5540 | _ -> ()
5541 else loop ls
5542 | [] -> ()
5544 loop state.layout
5547 let showrects rects =
5548 Gl.enable `blend;
5549 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
5550 GlDraw.polygon_mode `both `fill;
5551 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5552 List.iter
5553 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
5554 List.iter (fun l ->
5555 if l.pageno = pageno
5556 then (
5557 let dx = float (l.pagedispx - l.pagex) in
5558 let dy = float (l.pagedispy - l.pagey) in
5559 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
5560 GlDraw.begins `quads;
5562 GlDraw.vertex2 (x0+.dx, y0+.dy);
5563 GlDraw.vertex2 (x1+.dx, y1+.dy);
5564 GlDraw.vertex2 (x2+.dx, y2+.dy);
5565 GlDraw.vertex2 (x3+.dx, y3+.dy);
5567 GlDraw.ends ();
5569 ) state.layout
5570 ) rects
5572 Gl.disable `blend;
5575 let display () =
5576 GlClear.color (scalecolor2 conf.bgcolor);
5577 GlClear.clear [`color];
5578 let rec loop linkindexbase = function
5579 | l :: rest ->
5580 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5581 loop linkindexbase rest
5582 | [] -> ()
5584 loop 0 state.layout;
5585 let rects =
5586 match state.mode with
5587 | LinkNav (Ltexact (pageno, linkno)) ->
5588 begin match getopaque pageno with
5589 | Some opaque ->
5590 let x0, y0, x1, y1 = getlinkrect opaque linkno in
5591 (pageno, 5, (
5592 float x0, float y0,
5593 float x1, float y0,
5594 float x1, float y1,
5595 float x0, float y1)
5596 ) :: state.rects
5597 | None -> state.rects
5599 | _ -> state.rects
5601 showrects rects;
5602 showsel ();
5603 state.uioh#display;
5604 begin match state.mstate with
5605 | Mzoomrect ((x0, y0), (x1, y1)) ->
5606 Gl.enable `blend;
5607 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
5608 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
5609 GlDraw.rect (float x0, float y0)
5610 (float x1, float y1);
5611 Gl.disable `blend;
5612 | _ -> ()
5613 end;
5614 enttext ();
5615 scrollindicator ();
5616 Wsi.swapb ();
5619 let zoomrect x y x1 y1 =
5620 let x0 = min x x1
5621 and x1 = max x x1
5622 and y0 = min y y1 in
5623 gotoy (state.y + y0);
5624 state.anchor <- getanchor ();
5625 let zoom = (float conf.winw *. conf.zoom) /. float (x1 - x0) in
5626 let margin =
5627 if state.w < conf.winw - state.scrollw
5628 then (conf.winw - state.scrollw - state.w) / 2
5629 else 0
5631 state.x <- (state.x + margin) - x0;
5632 setzoom zoom;
5633 Wsi.setcursor Wsi.CURSOR_INHERIT;
5634 state.mstate <- Mnone;
5637 let scrollx x =
5638 let winw = conf.winw - state.scrollw - 1 in
5639 let s = float x /. float winw in
5640 let destx = truncate (float (state.w + winw) *. s) in
5641 state.x <- winw - destx;
5642 gotoy_and_clear_text state.y;
5643 state.mstate <- Mscrollx;
5646 let scrolly y =
5647 let s = float y /. float conf.winh in
5648 let desty = truncate (float (state.maxy - conf.winh) *. s) in
5649 gotoy_and_clear_text desty;
5650 state.mstate <- Mscrolly;
5653 let viewmouse button down x y mask =
5654 match button with
5655 | n when (n == 4 || n == 5) && not down ->
5656 if Wsi.withctrl mask
5657 then (
5658 match state.mstate with
5659 | Mzoom (oldn, i) ->
5660 if oldn = n
5661 then (
5662 if i = 2
5663 then
5664 let incr =
5665 match n with
5666 | 5 ->
5667 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5668 | _ ->
5669 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5671 let zoom = conf.zoom -. incr in
5672 setzoom zoom;
5673 state.mstate <- Mzoom (n, 0);
5674 else
5675 state.mstate <- Mzoom (n, i+1);
5677 else state.mstate <- Mzoom (n, 0)
5679 | _ -> state.mstate <- Mzoom (n, 0)
5681 else (
5682 match state.autoscroll with
5683 | Some step -> setautoscrollspeed step (n=4)
5684 | None ->
5685 let incr =
5686 if n = 4
5687 then -conf.scrollstep
5688 else conf.scrollstep
5690 let incr = incr * 2 in
5691 let y = clamp incr in
5692 gotoy_and_clear_text y
5695 | n when (n = 6 || n = 7) && not down && canpan () ->
5696 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep;
5697 gotoy_and_clear_text state.y
5699 | 1 when Wsi.withctrl mask ->
5700 if down
5701 then (
5702 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5703 state.mstate <- Mpan (x, y)
5705 else
5706 state.mstate <- Mnone
5708 | 3 ->
5709 if down
5710 then (
5711 Wsi.setcursor Wsi.CURSOR_CYCLE;
5712 let p = (x, y) in
5713 state.mstate <- Mzoomrect (p, p)
5715 else (
5716 match state.mstate with
5717 | Mzoomrect ((x0, y0), _) ->
5718 if abs (x-x0) > 10 && abs (y - y0) > 10
5719 then zoomrect x0 y0 x y
5720 else (
5721 state.mstate <- Mnone;
5722 Wsi.setcursor Wsi.CURSOR_INHERIT;
5723 G.postRedisplay "kill accidental zoom rect";
5725 | _ ->
5726 Wsi.setcursor Wsi.CURSOR_INHERIT;
5727 state.mstate <- Mnone
5730 | 1 when x > conf.winw - state.scrollw ->
5731 if down
5732 then
5733 let _, position, sh = state.uioh#scrollph in
5734 if y > truncate position && y < truncate (position +. sh)
5735 then state.mstate <- Mscrolly
5736 else scrolly y
5737 else
5738 state.mstate <- Mnone
5740 | 1 when y > conf.winh - state.hscrollh ->
5741 if down
5742 then
5743 let _, position, sw = state.uioh#scrollpw in
5744 if x > truncate position && x < truncate (position +. sw)
5745 then state.mstate <- Mscrollx
5746 else scrollx x
5747 else
5748 state.mstate <- Mnone
5750 | 1 ->
5751 let dest = if down then getunder x y else Unone in
5752 begin match dest with
5753 | Ulinkgoto _
5754 | Ulinkuri _
5755 | Uremote _
5756 | Uunexpected _ | Ulaunch _ | Unamed _ ->
5757 gotounder dest
5759 | Unone when down ->
5760 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
5761 state.mstate <- Mpan (x, y);
5763 | Unone | Utext _ ->
5764 if down
5765 then (
5766 if conf.angle mod 360 = 0
5767 then (
5768 state.mstate <- Msel ((x, y), (x, y));
5769 G.postRedisplay "mouse select";
5772 else (
5773 match state.mstate with
5774 | Mnone -> ()
5776 | Mzoom _ | Mscrollx | Mscrolly ->
5777 state.mstate <- Mnone
5779 | Mzoomrect ((x0, y0), _) ->
5780 zoomrect x0 y0 x y
5782 | Mpan _ ->
5783 Wsi.setcursor Wsi.CURSOR_INHERIT;
5784 state.mstate <- Mnone
5786 | Msel ((x0, y0), (x1, y1)) ->
5787 let rec loop = function
5788 | [] -> ()
5789 | l :: rest ->
5790 let inside =
5791 let a0 = l.pagedispy in
5792 let a1 = a0 + l.pagevh in
5793 let b0 = l.pagedispx in
5794 let b1 = b0 + l.pagevw in
5795 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5796 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5798 if inside
5799 then
5800 match getopaque l.pageno with
5801 | Some opaque ->
5802 begin
5803 match Ne.pipe () with
5804 | Ne.Exn exn ->
5805 showtext '!'
5806 (Printf.sprintf
5807 "can not create sel pipe: %s"
5808 (Printexc.to_string exn));
5809 | Ne.Res (r, w) ->
5810 let doclose what fd =
5811 Ne.clo fd (fun msg ->
5812 dolog "%s close failed: %s" what msg)
5815 popen conf.selcmd [r, 0; w, -1];
5816 copysel w opaque;
5817 doclose "pipe/r" r;
5818 G.postRedisplay "copysel";
5819 with exn ->
5820 dolog "can not execute %S: %s"
5821 conf.selcmd (Printexc.to_string exn);
5822 doclose "pipe/r" r;
5823 doclose "pipe/w" w;
5825 | None -> ()
5826 else loop rest
5828 loop state.layout;
5829 Wsi.setcursor Wsi.CURSOR_INHERIT;
5830 state.mstate <- Mnone;
5834 | _ -> ()
5837 let birdseyemouse button down x y mask
5838 (conf, leftx, _, hooverpageno, anchor) =
5839 match button with
5840 | 1 when down ->
5841 let rec loop = function
5842 | [] -> ()
5843 | l :: rest ->
5844 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5845 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5846 then (
5847 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
5849 else loop rest
5851 loop state.layout
5852 | 3 -> ()
5853 | _ -> viewmouse button down x y mask
5856 let mouse button down x y mask =
5857 state.uioh <- state.uioh#button button down x y mask;
5860 let motion ~x ~y =
5861 state.uioh <- state.uioh#motion x y
5864 let pmotion ~x ~y =
5865 state.uioh <- state.uioh#pmotion x y;
5868 let uioh = object
5869 method display = ()
5871 method key key mask =
5872 begin match state.mode with
5873 | Textentry textentry -> textentrykeyboard key mask textentry
5874 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
5875 | View -> viewkeyboard key mask
5876 | LinkNav linknav -> linknavkeyboard key mask linknav
5877 end;
5878 state.uioh
5880 method button button bstate x y mask =
5881 begin match state.mode with
5882 | LinkNav _
5883 | View -> viewmouse button bstate x y mask
5884 | Birdseye beye -> birdseyemouse button bstate x y mask beye
5885 | Textentry _ -> ()
5886 end;
5887 state.uioh
5889 method motion x y =
5890 begin match state.mode with
5891 | Textentry _ -> ()
5892 | View | Birdseye _ | LinkNav _ ->
5893 match state.mstate with
5894 | Mzoom _ | Mnone -> ()
5896 | Mpan (x0, y0) ->
5897 let dx = x - x0
5898 and dy = y0 - y in
5899 state.mstate <- Mpan (x, y);
5900 if canpan ()
5901 then state.x <- state.x + dx;
5902 let y = clamp dy in
5903 gotoy_and_clear_text y
5905 | Msel (a, _) ->
5906 state.mstate <- Msel (a, (x, y));
5907 G.postRedisplay "motion select";
5909 | Mscrolly ->
5910 let y = min conf.winh (max 0 y) in
5911 scrolly y
5913 | Mscrollx ->
5914 let x = min conf.winw (max 0 x) in
5915 scrollx x
5917 | Mzoomrect (p0, _) ->
5918 state.mstate <- Mzoomrect (p0, (x, y));
5919 G.postRedisplay "motion zoomrect";
5920 end;
5921 state.uioh
5923 method pmotion x y =
5924 begin match state.mode with
5925 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
5926 let rec loop = function
5927 | [] ->
5928 if hooverpageno != -1
5929 then (
5930 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
5931 G.postRedisplay "pmotion birdseye no hoover";
5933 | l :: rest ->
5934 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5935 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5936 then (
5937 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
5938 G.postRedisplay "pmotion birdseye hoover";
5940 else loop rest
5942 loop state.layout
5944 | Textentry _ -> ()
5946 | LinkNav _
5947 | View ->
5948 match state.mstate with
5949 | Mnone -> updateunder x y
5950 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
5952 end;
5953 state.uioh
5955 method infochanged _ = ()
5957 method scrollph =
5958 let maxy = state.maxy - (if conf.maxhfit then conf.winh else 0) in
5959 let p, h = scrollph state.y maxy in
5960 state.scrollw, p, h
5962 method scrollpw =
5963 let winw = conf.winw - state.scrollw - 1 in
5964 let fwinw = float winw in
5965 let sw =
5966 let sw = fwinw /. float state.w in
5967 let sw = fwinw *. sw in
5968 max sw (float conf.scrollh)
5970 let position, sw =
5971 let f = state.w+winw in
5972 let r = float (winw-state.x) /. float f in
5973 let p = fwinw *. r in
5974 p-.sw/.2., sw
5976 let sw =
5977 if position +. sw > fwinw
5978 then fwinw -. position
5979 else sw
5981 state.hscrollh, position, sw
5983 method modehash =
5984 let modename =
5985 match state.mode with
5986 | LinkNav _ -> "links"
5987 | Textentry _ -> "textentry"
5988 | Birdseye _ -> "birdseye"
5989 | View -> "view"
5991 findkeyhash conf modename
5992 end;;
5994 module Config =
5995 struct
5996 open Parser
5998 let fontpath = ref "";;
6000 module KeyMap =
6001 Map.Make (struct type t = (int * int) let compare = compare end);;
6003 let unent s =
6004 let l = String.length s in
6005 let b = Buffer.create l in
6006 unent b s 0 l;
6007 Buffer.contents b;
6010 let home =
6011 try Sys.getenv "HOME"
6012 with exn ->
6013 prerr_endline
6014 ("Can not determine home directory location: " ^
6015 Printexc.to_string exn);
6019 let modifier_of_string = function
6020 | "alt" -> Wsi.altmask
6021 | "shift" -> Wsi.shiftmask
6022 | "ctrl" | "control" -> Wsi.ctrlmask
6023 | "meta" -> Wsi.metamask
6024 | _ -> 0
6027 let key_of_string =
6028 let r = Str.regexp "-" in
6029 fun s ->
6030 let elems = Str.full_split r s in
6031 let f n k m =
6032 let g s =
6033 let m1 = modifier_of_string s in
6034 if m1 = 0
6035 then (Wsi.namekey s, m)
6036 else (k, m lor m1)
6037 in function
6038 | Str.Delim s when n land 1 = 0 -> g s
6039 | Str.Text s -> g s
6040 | Str.Delim _ -> (k, m)
6042 let rec loop n k m = function
6043 | [] -> (k, m)
6044 | x :: xs ->
6045 let k, m = f n k m x in
6046 loop (n+1) k m xs
6048 loop 0 0 0 elems
6051 let keys_of_string =
6052 let r = Str.regexp "[ \t]" in
6053 fun s ->
6054 let elems = Str.split r s in
6055 List.map key_of_string elems
6058 let copykeyhashes c =
6059 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6062 let config_of c attrs =
6063 let apply c k v =
6065 match k with
6066 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6067 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6068 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6069 | "preload" -> { c with preload = bool_of_string v }
6070 | "page-bias" -> { c with pagebias = int_of_string v }
6071 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6072 | "horizontal-scroll-step" ->
6073 { c with hscrollstep = max (int_of_string v) 1 }
6074 | "auto-scroll-step" ->
6075 { c with autoscrollstep = max 0 (int_of_string v) }
6076 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6077 | "crop-hack" -> { c with crophack = bool_of_string v }
6078 | "throttle" ->
6079 let mw =
6080 match String.lowercase v with
6081 | "true" -> Some infinity
6082 | "false" -> None
6083 | f -> Some (float_of_string f)
6085 { c with maxwait = mw}
6086 | "highlight-links" -> { c with hlinks = bool_of_string v }
6087 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6088 | "vertical-margin" ->
6089 { c with interpagespace = max 0 (int_of_string v) }
6090 | "zoom" ->
6091 let zoom = float_of_string v /. 100. in
6092 let zoom = max zoom 0.0 in
6093 { c with zoom = zoom }
6094 | "presentation" -> { c with presentation = bool_of_string v }
6095 | "rotation-angle" -> { c with angle = int_of_string v }
6096 | "width" -> { c with winw = max 20 (int_of_string v) }
6097 | "height" -> { c with winh = max 20 (int_of_string v) }
6098 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6099 | "proportional-display" -> { c with proportional = bool_of_string v }
6100 | "pixmap-cache-size" ->
6101 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6102 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6103 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6104 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6105 | "persistent-location" -> { c with jumpback = bool_of_string v }
6106 | "background-color" -> { c with bgcolor = color_of_string v }
6107 | "scrollbar-in-presentation" ->
6108 { c with scrollbarinpm = bool_of_string v }
6109 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6110 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6111 | "mupdf-store-size" ->
6112 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6113 | "checkers" -> { c with checkers = bool_of_string v }
6114 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6115 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6116 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6117 | "uri-launcher" -> { c with urilauncher = unent v }
6118 | "path-launcher" -> { c with pathlauncher = unent v }
6119 | "color-space" -> { c with colorspace = colorspace_of_string v }
6120 | "invert-colors" -> { c with invert = bool_of_string v }
6121 | "brightness" -> { c with colorscale = float_of_string v }
6122 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6123 | "ghyllscroll" ->
6124 { c with ghyllscroll = Some (ghyllscroll_of_string v) }
6125 | "columns" ->
6126 let (n, _, _) as nab = multicolumns_of_string v in
6127 if n < 0
6128 then { c with columns = Csplit (-n, [||]) }
6129 else { c with columns = Cmulti (nab, [||]) }
6130 | "birds-eye-columns" ->
6131 { c with beyecolumns = Some (max (int_of_string v) 2) }
6132 | "selection-command" -> { c with selcmd = unent v }
6133 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6134 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6135 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6136 | "use-pbo" -> { c with usepbo = bool_of_string v }
6137 | _ -> c
6138 with exn ->
6139 prerr_endline ("Error processing attribute (`" ^
6140 k ^ "'=`" ^ v ^ "'): " ^ Printexc.to_string exn);
6143 let rec fold c = function
6144 | [] -> c
6145 | (k, v) :: rest ->
6146 let c = apply c k v in
6147 fold c rest
6149 fold { c with keyhashes = copykeyhashes c } attrs;
6152 let fromstring f pos n v d =
6153 try f v
6154 with exn ->
6155 dolog "Error processing attribute (%S=%S) at %d\n%s"
6156 n v pos (Printexc.to_string exn)
6161 let bookmark_of attrs =
6162 let rec fold title page rely visy = function
6163 | ("title", v) :: rest -> fold v page rely visy rest
6164 | ("page", v) :: rest -> fold title v rely visy rest
6165 | ("rely", v) :: rest -> fold title page v visy rest
6166 | ("visy", v) :: rest -> fold title page rely v rest
6167 | _ :: rest -> fold title page rely visy rest
6168 | [] -> title, page, rely, visy
6170 fold "invalid" "0" "0" "0" attrs
6173 let doc_of attrs =
6174 let rec fold path page rely pan visy = function
6175 | ("path", v) :: rest -> fold v page rely pan visy rest
6176 | ("page", v) :: rest -> fold path v rely pan visy rest
6177 | ("rely", v) :: rest -> fold path page v pan visy rest
6178 | ("pan", v) :: rest -> fold path page rely v visy rest
6179 | ("visy", v) :: rest -> fold path page rely pan v rest
6180 | _ :: rest -> fold path page rely pan visy rest
6181 | [] -> path, page, rely, pan, visy
6183 fold "" "0" "0" "0" "0" attrs
6186 let map_of attrs =
6187 let rec fold rs ls = function
6188 | ("out", v) :: rest -> fold v ls rest
6189 | ("in", v) :: rest -> fold rs v rest
6190 | _ :: rest -> fold ls rs rest
6191 | [] -> ls, rs
6193 fold "" "" attrs
6196 let setconf dst src =
6197 dst.scrollbw <- src.scrollbw;
6198 dst.scrollh <- src.scrollh;
6199 dst.icase <- src.icase;
6200 dst.preload <- src.preload;
6201 dst.pagebias <- src.pagebias;
6202 dst.verbose <- src.verbose;
6203 dst.scrollstep <- src.scrollstep;
6204 dst.maxhfit <- src.maxhfit;
6205 dst.crophack <- src.crophack;
6206 dst.autoscrollstep <- src.autoscrollstep;
6207 dst.maxwait <- src.maxwait;
6208 dst.hlinks <- src.hlinks;
6209 dst.underinfo <- src.underinfo;
6210 dst.interpagespace <- src.interpagespace;
6211 dst.zoom <- src.zoom;
6212 dst.presentation <- src.presentation;
6213 dst.angle <- src.angle;
6214 dst.winw <- src.winw;
6215 dst.winh <- src.winh;
6216 dst.savebmarks <- src.savebmarks;
6217 dst.memlimit <- src.memlimit;
6218 dst.proportional <- src.proportional;
6219 dst.texcount <- src.texcount;
6220 dst.sliceheight <- src.sliceheight;
6221 dst.thumbw <- src.thumbw;
6222 dst.jumpback <- src.jumpback;
6223 dst.bgcolor <- src.bgcolor;
6224 dst.scrollbarinpm <- src.scrollbarinpm;
6225 dst.tilew <- src.tilew;
6226 dst.tileh <- src.tileh;
6227 dst.mustoresize <- src.mustoresize;
6228 dst.checkers <- src.checkers;
6229 dst.aalevel <- src.aalevel;
6230 dst.trimmargins <- src.trimmargins;
6231 dst.trimfuzz <- src.trimfuzz;
6232 dst.urilauncher <- src.urilauncher;
6233 dst.colorspace <- src.colorspace;
6234 dst.invert <- src.invert;
6235 dst.colorscale <- src.colorscale;
6236 dst.redirectstderr <- src.redirectstderr;
6237 dst.ghyllscroll <- src.ghyllscroll;
6238 dst.columns <- src.columns;
6239 dst.beyecolumns <- src.beyecolumns;
6240 dst.selcmd <- src.selcmd;
6241 dst.updatecurs <- src.updatecurs;
6242 dst.pathlauncher <- src.pathlauncher;
6243 dst.keyhashes <- copykeyhashes src;
6244 dst.hfsize <- src.hfsize;
6245 dst.hscrollstep <- src.hscrollstep;
6246 dst.pgscale <- src.pgscale;
6247 dst.usepbo <- src.usepbo;
6250 let get s =
6251 let h = Hashtbl.create 10 in
6252 let dc = { defconf with angle = defconf.angle } in
6253 let rec toplevel v t spos _ =
6254 match t with
6255 | Vdata | Vcdata | Vend -> v
6256 | Vopen ("llppconfig", _, closed) ->
6257 if closed
6258 then v
6259 else { v with f = llppconfig }
6260 | Vopen _ ->
6261 error "unexpected subelement at top level" s spos
6262 | Vclose _ -> error "unexpected close at top level" s spos
6264 and llppconfig v t spos _ =
6265 match t with
6266 | Vdata | Vcdata -> v
6267 | Vend -> error "unexpected end of input in llppconfig" s spos
6268 | Vopen ("defaults", attrs, closed) ->
6269 let c = config_of dc attrs in
6270 setconf dc c;
6271 if closed
6272 then v
6273 else { v with f = defaults }
6275 | Vopen ("ui-font", attrs, closed) ->
6276 let rec getsize size = function
6277 | [] -> size
6278 | ("size", v) :: rest ->
6279 let size =
6280 fromstring int_of_string spos "size" v fstate.fontsize in
6281 getsize size rest
6282 | l -> getsize size l
6284 fstate.fontsize <- getsize fstate.fontsize attrs;
6285 if closed
6286 then v
6287 else { v with f = uifont (Buffer.create 10) }
6289 | Vopen ("doc", attrs, closed) ->
6290 let pathent, spage, srely, span, svisy = doc_of attrs in
6291 let path = unent pathent
6292 and pageno = fromstring int_of_string spos "page" spage 0
6293 and rely = fromstring float_of_string spos "rely" srely 0.0
6294 and pan = fromstring int_of_string spos "pan" span 0
6295 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6296 let c = config_of dc attrs in
6297 let anchor = (pageno, rely, visy) in
6298 if closed
6299 then (Hashtbl.add h path (c, [], pan, anchor); v)
6300 else { v with f = doc path pan anchor c [] }
6302 | Vopen _ ->
6303 error "unexpected subelement in llppconfig" s spos
6305 | Vclose "llppconfig" -> { v with f = toplevel }
6306 | Vclose _ -> error "unexpected close in llppconfig" s spos
6308 and defaults v t spos _ =
6309 match t with
6310 | Vdata | Vcdata -> v
6311 | Vend -> error "unexpected end of input in defaults" s spos
6312 | Vopen ("keymap", attrs, closed) ->
6313 let modename =
6314 try List.assoc "mode" attrs
6315 with Not_found -> "global" in
6316 if closed
6317 then v
6318 else
6319 let ret keymap =
6320 let h = findkeyhash dc modename in
6321 KeyMap.iter (Hashtbl.replace h) keymap;
6322 defaults
6324 { v with f = pkeymap ret KeyMap.empty }
6326 | Vopen (_, _, _) ->
6327 error "unexpected subelement in defaults" s spos
6329 | Vclose "defaults" ->
6330 { v with f = llppconfig }
6332 | Vclose _ -> error "unexpected close in defaults" s spos
6334 and uifont b v t spos epos =
6335 match t with
6336 | Vdata | Vcdata ->
6337 Buffer.add_substring b s spos (epos - spos);
6339 | Vopen (_, _, _) ->
6340 error "unexpected subelement in ui-font" s spos
6341 | Vclose "ui-font" ->
6342 if String.length !fontpath = 0
6343 then fontpath := Buffer.contents b;
6344 { v with f = llppconfig }
6345 | Vclose _ -> error "unexpected close in ui-font" s spos
6346 | Vend -> error "unexpected end of input in ui-font" s spos
6348 and doc path pan anchor c bookmarks v t spos _ =
6349 match t with
6350 | Vdata | Vcdata -> v
6351 | Vend -> error "unexpected end of input in doc" s spos
6352 | Vopen ("bookmarks", _, closed) ->
6353 if closed
6354 then v
6355 else { v with f = pbookmarks path pan anchor c bookmarks }
6357 | Vopen ("keymap", attrs, closed) ->
6358 let modename =
6359 try List.assoc "mode" attrs
6360 with Not_found -> "global"
6362 if closed
6363 then v
6364 else
6365 let ret keymap =
6366 let h = findkeyhash c modename in
6367 KeyMap.iter (Hashtbl.replace h) keymap;
6368 doc path pan anchor c bookmarks
6370 { v with f = pkeymap ret KeyMap.empty }
6372 | Vopen (_, _, _) ->
6373 error "unexpected subelement in doc" s spos
6375 | Vclose "doc" ->
6376 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
6377 { v with f = llppconfig }
6379 | Vclose _ -> error "unexpected close in doc" s spos
6381 and pkeymap ret keymap v t spos _ =
6382 match t with
6383 | Vdata | Vcdata -> v
6384 | Vend -> error "unexpected end of input in keymap" s spos
6385 | Vopen ("map", attrs, closed) ->
6386 let r, l = map_of attrs in
6387 let kss = fromstring keys_of_string spos "in" r [] in
6388 let lss = fromstring keys_of_string spos "out" l [] in
6389 let keymap =
6390 match kss with
6391 | [] -> keymap
6392 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
6393 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
6395 if closed
6396 then { v with f = pkeymap ret keymap }
6397 else
6398 let f () = v in
6399 { v with f = skip "map" f }
6401 | Vopen _ ->
6402 error "unexpected subelement in keymap" s spos
6404 | Vclose "keymap" ->
6405 { v with f = ret keymap }
6407 | Vclose _ -> error "unexpected close in keymap" s spos
6409 and pbookmarks path pan anchor c bookmarks v t spos _ =
6410 match t with
6411 | Vdata | Vcdata -> v
6412 | Vend -> error "unexpected end of input in bookmarks" s spos
6413 | Vopen ("item", attrs, closed) ->
6414 let titleent, spage, srely, svisy = bookmark_of attrs in
6415 let page = fromstring int_of_string spos "page" spage 0
6416 and rely = fromstring float_of_string spos "rely" srely 0.0
6417 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
6418 let bookmarks =
6419 (unent titleent, 0, (page, rely, visy)) :: bookmarks
6421 if closed
6422 then { v with f = pbookmarks path pan anchor c bookmarks }
6423 else
6424 let f () = v in
6425 { v with f = skip "item" f }
6427 | Vopen _ ->
6428 error "unexpected subelement in bookmarks" s spos
6430 | Vclose "bookmarks" ->
6431 { v with f = doc path pan anchor c bookmarks }
6433 | Vclose _ -> error "unexpected close in bookmarks" s spos
6435 and skip tag f v t spos _ =
6436 match t with
6437 | Vdata | Vcdata -> v
6438 | Vend ->
6439 error ("unexpected end of input in skipped " ^ tag) s spos
6440 | Vopen (tag', _, closed) ->
6441 if closed
6442 then v
6443 else
6444 let f' () = { v with f = skip tag f } in
6445 { v with f = skip tag' f' }
6446 | Vclose ctag ->
6447 if tag = ctag
6448 then f ()
6449 else error ("unexpected close in skipped " ^ tag) s spos
6452 parse { f = toplevel; accu = () } s;
6453 h, dc;
6456 let do_load f ic =
6458 let len = in_channel_length ic in
6459 let s = String.create len in
6460 really_input ic s 0 len;
6461 f s;
6462 with
6463 | Parse_error (msg, s, pos) ->
6464 let subs = subs s pos in
6465 let s = Printf.sprintf "%s: at %d [..%s..]" msg pos subs in
6466 failwith ("parse error: " ^ s)
6468 | exn ->
6469 failwith ("config load error: " ^ Printexc.to_string exn)
6472 let defconfpath =
6473 let dir =
6475 let dir = Filename.concat home ".config" in
6476 if Sys.is_directory dir then dir else home
6477 with _ -> home
6479 Filename.concat dir "llpp.conf"
6482 let confpath = ref defconfpath;;
6484 let load1 f =
6485 if Sys.file_exists !confpath
6486 then
6487 match
6488 (try Some (open_in_bin !confpath)
6489 with exn ->
6490 prerr_endline
6491 ("Error opening configuation file `" ^ !confpath ^ "': " ^
6492 Printexc.to_string exn);
6493 None
6495 with
6496 | Some ic ->
6497 let success =
6499 f (do_load get ic)
6500 with exn ->
6501 prerr_endline
6502 ("Error loading configuation from `" ^ !confpath ^ "': " ^
6503 Printexc.to_string exn);
6504 false
6506 close_in ic;
6507 success
6509 | None -> false
6510 else
6511 f (Hashtbl.create 0, defconf)
6514 let load () =
6515 let f (h, dc) =
6516 let pc, pb, px, pa =
6518 Hashtbl.find h (Filename.basename state.path)
6519 with Not_found -> dc, [], 0, emptyanchor
6521 setconf defconf dc;
6522 setconf conf pc;
6523 state.bookmarks <- pb;
6524 state.x <- px;
6525 state.scrollw <- conf.scrollbw;
6526 if conf.jumpback
6527 then state.anchor <- pa;
6528 cbput state.hists.nav pa;
6529 true
6531 load1 f
6534 let add_attrs bb always dc c =
6535 let ob s a b =
6536 if always || a != b
6537 then Printf.bprintf bb "\n %s='%b'" s a
6538 and oi s a b =
6539 if always || a != b
6540 then Printf.bprintf bb "\n %s='%d'" s a
6541 and oI s a b =
6542 if always || a != b
6543 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
6544 and oz s a b =
6545 if always || a <> b
6546 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
6547 and oF s a b =
6548 if always || a <> b
6549 then Printf.bprintf bb "\n %s='%f'" s a
6550 and oc s a b =
6551 if always || a <> b
6552 then
6553 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
6554 and oC s a b =
6555 if always || a <> b
6556 then
6557 Printf.bprintf bb "\n %s='%s'" s (colorspace_to_string a)
6558 and oR s a b =
6559 if always || a <> b
6560 then
6561 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
6562 and os s a b =
6563 if always || a <> b
6564 then
6565 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
6566 and og s a b =
6567 if always || a <> b
6568 then
6569 match a with
6570 | None -> ()
6571 | Some (_N, _A, _B) ->
6572 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
6573 and oW s a b =
6574 if always || a <> b
6575 then
6576 let v =
6577 match a with
6578 | None -> "false"
6579 | Some f ->
6580 if f = infinity
6581 then "true"
6582 else string_of_float f
6584 Printf.bprintf bb "\n %s='%s'" s v
6585 and oco s a b =
6586 if always || a <> b
6587 then
6588 match a with
6589 | Cmulti ((n, a, b), _) when n > 1 ->
6590 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
6591 | Csplit (n, _) when n > 1 ->
6592 Printf.bprintf bb "\n %s='%d'" s ~-n
6593 | _ -> ()
6594 and obeco s a b =
6595 if always || a <> b
6596 then
6597 match a with
6598 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
6599 | _ -> ()
6601 let w, h =
6602 if always
6603 then dc.winw, dc.winh
6604 else
6605 match state.fullscreen with
6606 | Some wh -> wh
6607 | None -> c.winw, c.winh
6609 oi "width" w dc.winw;
6610 oi "height" h dc.winh;
6611 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
6612 oi "scroll-handle-height" c.scrollh dc.scrollh;
6613 ob "case-insensitive-search" c.icase dc.icase;
6614 ob "preload" c.preload dc.preload;
6615 oi "page-bias" c.pagebias dc.pagebias;
6616 oi "scroll-step" c.scrollstep dc.scrollstep;
6617 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
6618 ob "max-height-fit" c.maxhfit dc.maxhfit;
6619 ob "crop-hack" c.crophack dc.crophack;
6620 oW "throttle" c.maxwait dc.maxwait;
6621 ob "highlight-links" c.hlinks dc.hlinks;
6622 ob "under-cursor-info" c.underinfo dc.underinfo;
6623 oi "vertical-margin" c.interpagespace dc.interpagespace;
6624 oz "zoom" c.zoom dc.zoom;
6625 ob "presentation" c.presentation dc.presentation;
6626 oi "rotation-angle" c.angle dc.angle;
6627 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
6628 ob "proportional-display" c.proportional dc.proportional;
6629 oI "pixmap-cache-size" c.memlimit dc.memlimit;
6630 oi "tex-count" c.texcount dc.texcount;
6631 oi "slice-height" c.sliceheight dc.sliceheight;
6632 oi "thumbnail-width" c.thumbw dc.thumbw;
6633 ob "persistent-location" c.jumpback dc.jumpback;
6634 oc "background-color" c.bgcolor dc.bgcolor;
6635 ob "scrollbar-in-presentation" c.scrollbarinpm dc.scrollbarinpm;
6636 oi "tile-width" c.tilew dc.tilew;
6637 oi "tile-height" c.tileh dc.tileh;
6638 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
6639 ob "checkers" c.checkers dc.checkers;
6640 oi "aalevel" c.aalevel dc.aalevel;
6641 ob "trim-margins" c.trimmargins dc.trimmargins;
6642 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
6643 os "uri-launcher" c.urilauncher dc.urilauncher;
6644 os "path-launcher" c.pathlauncher dc.pathlauncher;
6645 oC "color-space" c.colorspace dc.colorspace;
6646 ob "invert-colors" c.invert dc.invert;
6647 oF "brightness" c.colorscale dc.colorscale;
6648 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6649 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
6650 oco "columns" c.columns dc.columns;
6651 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
6652 os "selection-command" c.selcmd dc.selcmd;
6653 ob "update-cursor" c.updatecurs dc.updatecurs;
6654 oi "hint-font-size" c.hfsize dc.hfsize;
6655 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
6656 oF "page-scroll-scale" c.pgscale dc.pgscale;
6657 ob "use-pbo" c.usepbo dc.usepbo;
6660 let keymapsbuf always dc c =
6661 let bb = Buffer.create 16 in
6662 let rec loop = function
6663 | [] -> ()
6664 | (modename, h) :: rest ->
6665 let dh = findkeyhash dc modename in
6666 if always || h <> dh
6667 then (
6668 if Hashtbl.length h > 0
6669 then (
6670 if Buffer.length bb > 0
6671 then Buffer.add_char bb '\n';
6672 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
6673 Hashtbl.iter (fun i o ->
6674 let isdifferent = always ||
6676 let dO = Hashtbl.find dh i in
6677 dO <> o
6678 with Not_found -> true
6680 if isdifferent
6681 then
6682 let addkm (k, m) =
6683 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
6684 if Wsi.withalt m then Buffer.add_string bb "alt-";
6685 if Wsi.withshift m then Buffer.add_string bb "shift-";
6686 if Wsi.withmeta m then Buffer.add_string bb "meta-";
6687 Buffer.add_string bb (Wsi.keyname k);
6689 let addkms l =
6690 let rec loop = function
6691 | [] -> ()
6692 | km :: [] -> addkm km
6693 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
6695 loop l
6697 Buffer.add_string bb "<map in='";
6698 addkm i;
6699 match o with
6700 | KMinsrt km ->
6701 Buffer.add_string bb "' out='";
6702 addkm km;
6703 Buffer.add_string bb "'/>\n"
6705 | KMinsrl kms ->
6706 Buffer.add_string bb "' out='";
6707 addkms kms;
6708 Buffer.add_string bb "'/>\n"
6710 | KMmulti (ins, kms) ->
6711 Buffer.add_char bb ' ';
6712 addkms ins;
6713 Buffer.add_string bb "' out='";
6714 addkms kms;
6715 Buffer.add_string bb "'/>\n"
6716 ) h;
6717 Buffer.add_string bb "</keymap>";
6720 loop rest
6722 loop c.keyhashes;
6726 let save () =
6727 let uifontsize = fstate.fontsize in
6728 let bb = Buffer.create 32768 in
6729 let f (h, dc) =
6730 let dc = if conf.bedefault then conf else dc in
6731 Buffer.add_string bb "<llppconfig>\n";
6733 if String.length !fontpath > 0
6734 then
6735 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6736 uifontsize
6737 !fontpath
6738 else (
6739 if uifontsize <> 14
6740 then
6741 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
6744 Buffer.add_string bb "<defaults ";
6745 add_attrs bb true dc dc;
6746 let kb = keymapsbuf true dc dc in
6747 if Buffer.length kb > 0
6748 then (
6749 Buffer.add_string bb ">\n";
6750 Buffer.add_buffer bb kb;
6751 Buffer.add_string bb "\n</defaults>\n";
6753 else Buffer.add_string bb "/>\n";
6755 let adddoc path pan anchor c bookmarks =
6756 if bookmarks == [] && c = dc && anchor = emptyanchor
6757 then ()
6758 else (
6759 Printf.bprintf bb "<doc path='%s'"
6760 (enent path 0 (String.length path));
6762 if anchor <> emptyanchor
6763 then (
6764 let n, rely, visy = anchor in
6765 Printf.bprintf bb " page='%d'" n;
6766 if rely > 1e-6
6767 then
6768 Printf.bprintf bb " rely='%f'" rely
6770 if abs_float visy > 1e-6
6771 then
6772 Printf.bprintf bb " visy='%f'" visy
6776 if pan != 0
6777 then Printf.bprintf bb " pan='%d'" pan;
6779 add_attrs bb false dc c;
6780 let kb = keymapsbuf false dc c in
6782 begin match bookmarks with
6783 | [] ->
6784 if Buffer.length kb > 0
6785 then (
6786 Buffer.add_string bb ">\n";
6787 Buffer.add_buffer bb kb;
6788 Buffer.add_string bb "\n</doc>\n";
6790 else Buffer.add_string bb "/>\n"
6791 | _ ->
6792 Buffer.add_string bb ">\n<bookmarks>\n";
6793 List.iter (fun (title, _level, (page, rely, visy)) ->
6794 Printf.bprintf bb
6795 "<item title='%s' page='%d'"
6796 (enent title 0 (String.length title))
6797 page
6799 if rely > 1e-6
6800 then
6801 Printf.bprintf bb " rely='%f'" rely
6803 if abs_float visy > 1e-6
6804 then
6805 Printf.bprintf bb " visy='%f'" visy
6807 Buffer.add_string bb "/>\n";
6808 ) bookmarks;
6809 Buffer.add_string bb "</bookmarks>";
6810 if Buffer.length kb > 0
6811 then (
6812 Buffer.add_string bb "\n";
6813 Buffer.add_buffer bb kb;
6815 Buffer.add_string bb "\n</doc>\n";
6816 end;
6820 let pan, conf =
6821 match state.mode with
6822 | Birdseye (c, pan, _, _, _) ->
6823 let beyecolumns =
6824 match conf.columns with
6825 | Cmulti ((c, _, _), _) -> Some c
6826 | Csingle _ -> None
6827 | Csplit _ -> None
6828 and columns =
6829 match c.columns with
6830 | Cmulti (c, _) -> Cmulti (c, [||])
6831 | Csingle _ -> Csingle [||]
6832 | Csplit _ -> failwith "quit from bird's eye while split"
6834 pan, { c with beyecolumns = beyecolumns; columns = columns }
6835 | _ -> state.x, conf
6837 let basename = Filename.basename state.path in
6838 adddoc basename pan (getanchor ())
6839 (let conf =
6840 let autoscrollstep =
6841 match state.autoscroll with
6842 | Some step -> step
6843 | None -> conf.autoscrollstep
6845 match state.mode with
6846 | Birdseye (bc, _, _, _, _) ->
6847 { conf with
6848 zoom = bc.zoom;
6849 presentation = bc.presentation;
6850 interpagespace = bc.interpagespace;
6851 maxwait = bc.maxwait;
6852 autoscrollstep = autoscrollstep }
6853 | _ -> { conf with autoscrollstep = autoscrollstep }
6854 in conf)
6855 (if conf.savebmarks then state.bookmarks else []);
6857 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
6858 if basename <> path
6859 then adddoc path x anchor c bookmarks
6860 ) h;
6861 Buffer.add_string bb "</llppconfig>\n";
6862 true;
6864 if load1 f && Buffer.length bb > 0
6865 then
6867 let tmp = !confpath ^ ".tmp" in
6868 let oc = open_out_bin tmp in
6869 Buffer.output_buffer oc bb;
6870 close_out oc;
6871 Unix.rename tmp !confpath;
6872 with exn ->
6873 prerr_endline
6874 ("error while saving configuration: " ^ Printexc.to_string exn)
6876 end;;
6878 let () =
6879 let trimcachepath = ref "" in
6880 Arg.parse
6881 (Arg.align
6882 [("-p", Arg.String (fun s -> state.password <- s) ,
6883 "<password> Set password");
6885 ("-f", Arg.String (fun s -> Config.fontpath := s),
6886 "<path> Set path to the user interface font");
6888 ("-c", Arg.String (fun s -> Config.confpath := s),
6889 "<path> Set path to the configuration file");
6891 ("-tcf", Arg.String (fun s -> trimcachepath := s),
6892 "<path> Set path to the trim cache file");
6894 ("-v", Arg.Unit (fun () ->
6895 Printf.printf
6896 "%s\nconfiguration path: %s\n"
6897 (version ())
6898 Config.defconfpath
6900 exit 0), " Print version and exit");
6903 (fun s -> state.path <- s)
6904 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
6906 if String.length state.path = 0
6907 then (prerr_endline "file name missing"; exit 1);
6909 if not (Config.load ())
6910 then prerr_endline "failed to load configuration";
6912 let globalkeyhash = findkeyhash conf "global" in
6913 let wsfd, winw, winh = Wsi.init (object
6914 method expose =
6915 if nogeomcmds state.geomcmds || platform == Posx
6916 then display ()
6917 else (
6918 GlClear.color (scalecolor2 conf.bgcolor);
6919 GlClear.clear [`color];
6921 method display = display ()
6922 method reshape w h = reshape w h
6923 method mouse b d x y m = mouse b d x y m
6924 method motion x y = state.mpos <- (x, y); motion x y
6925 method pmotion x y = state.mpos <- (x, y); pmotion x y
6926 method key k m =
6927 let mascm = m land (
6928 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
6929 ) in
6930 match state.keystate with
6931 | KSnone ->
6932 let km = k, mascm in
6933 begin
6934 match
6935 let modehash = state.uioh#modehash in
6936 try Hashtbl.find modehash km
6937 with Not_found ->
6938 try Hashtbl.find globalkeyhash km
6939 with Not_found -> KMinsrt (k, m)
6940 with
6941 | KMinsrt (k, m) -> keyboard k m
6942 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
6943 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
6945 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
6946 List.iter (fun (k, m) -> keyboard k m) insrt;
6947 state.keystate <- KSnone
6948 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
6949 state.keystate <- KSinto (keys, insrt)
6950 | _ ->
6951 state.keystate <- KSnone
6953 method enter x y = state.mpos <- (x, y); pmotion x y
6954 method leave = state.mpos <- (-1, -1)
6955 method quit = raise Quit
6956 end) conf.winw conf.winh (platform = Posx) in
6958 state.wsfd <- wsfd;
6960 if not (
6961 List.exists GlMisc.check_extension
6962 [ "GL_ARB_texture_rectangle"
6963 ; "GL_EXT_texture_recangle"
6964 ; "GL_NV_texture_rectangle" ]
6966 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
6968 let cr, sw =
6969 match Ne.pipe () with
6970 | Ne.Exn exn ->
6971 Printf.eprintf "pipe/crsw failed: %s" (Printexc.to_string exn);
6972 exit 1
6973 | Ne.Res rw -> rw
6974 and sr, cw =
6975 match Ne.pipe () with
6976 | Ne.Exn exn ->
6977 Printf.eprintf "pipe/srcw failed: %s" (Printexc.to_string exn);
6978 exit 1
6979 | Ne.Res rw -> rw
6982 cloexec cr;
6983 cloexec sw;
6984 cloexec sr;
6985 cloexec cw;
6987 setcheckers conf.checkers;
6988 redirectstderr ();
6990 init (cr, cw) (
6991 conf.angle, conf.proportional, (conf.trimmargins, conf.trimfuzz),
6992 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
6993 !Config.fontpath, !trimcachepath,
6994 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
6996 state.sr <- sr;
6997 state.sw <- sw;
6998 state.text <- "Opening " ^ (mbtoutf8 state.path);
6999 reshape winw winh;
7000 opendoc state.path state.password;
7001 state.uioh <- uioh;
7003 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
7005 let rec loop deadline =
7006 let r =
7007 match state.errfd with
7008 | None -> [state.sr; state.wsfd]
7009 | Some fd -> [state.sr; state.wsfd; fd]
7011 if state.redisplay
7012 then (
7013 state.redisplay <- false;
7014 display ();
7016 let timeout =
7017 let now = now () in
7018 if deadline > now
7019 then (
7020 if deadline = infinity
7021 then ~-.1.0
7022 else max 0.0 (deadline -. now)
7024 else 0.0
7026 let r, _, _ =
7027 try Unix.select r [] [] timeout
7028 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
7030 begin match r with
7031 | [] ->
7032 state.ghyll None;
7033 let newdeadline =
7034 if state.ghyll == noghyll
7035 then
7036 match state.autoscroll with
7037 | Some step when step != 0 ->
7038 let y = state.y + step in
7039 let y =
7040 if y < 0
7041 then state.maxy
7042 else if y >= state.maxy then 0 else y
7044 gotoy y;
7045 if state.mode = View
7046 then state.text <- "";
7047 deadline +. 0.01
7048 | _ -> infinity
7049 else deadline +. 0.01
7051 loop newdeadline
7053 | l ->
7054 let rec checkfds = function
7055 | [] -> ()
7056 | fd :: rest when fd = state.sr ->
7057 let cmd = readcmd state.sr in
7058 act cmd;
7059 checkfds rest
7061 | fd :: rest when fd = state.wsfd ->
7062 Wsi.readresp fd;
7063 checkfds rest
7065 | fd :: rest ->
7066 let s = String.create 80 in
7067 let n = Unix.read fd s 0 80 in
7068 if conf.redirectstderr
7069 then (
7070 Buffer.add_substring state.errmsgs s 0 n;
7071 state.newerrmsgs <- true;
7072 state.redisplay <- true;
7074 else (
7075 prerr_string (String.sub s 0 n);
7076 flush stderr;
7078 checkfds rest
7080 checkfds l;
7081 let newdeadline =
7082 let deadline1 =
7083 if deadline = infinity
7084 then now () +. 0.01
7085 else deadline
7087 match state.autoscroll with
7088 | Some step when step != 0 -> deadline1
7089 | _ -> if state.ghyll == noghyll then infinity else deadline1
7091 loop newdeadline
7092 end;
7095 loop infinity;
7096 with Quit ->
7097 Config.save ();