Less confusing
[llpp.git] / main.ml
blob77bc22a43b3d2ffa5a2595f5e12009a5ecfc8727
1 open Utils;;
3 exception Quit;;
5 type under =
6 | Unone
7 | Ulinkuri of string
8 | Ulinkgoto of (int * int)
9 | Utext of facename
10 | Uunexpected of string
11 | Ulaunch of launchcommand
12 | Unamed of destname
13 | Uremote of (filename * pageno)
14 | Uremotedest of (filename * destname)
15 and facename = string
16 and launchcommand = string
17 and filename = string
18 and pageno = int
19 and destname = string;;
21 type mark =
22 | Mark_page
23 | Mark_block
24 | Mark_line
25 | Mark_word
28 module Opaque :
29 sig
30 type t = private string
31 val of_string : string -> t
32 val to_string : t -> string
33 end
35 struct
36 type t = string
37 let of_string s = s
38 let to_string t = t
39 end
42 let (~<) = Opaque.of_string;;
43 let (~>) = Opaque.to_string;;
45 type params = (angle * fitmodel * trimparams
46 * texcount * sliceheight * memsize
47 * colorspace * fontpath * trimcachepath
48 * haspbo)
49 and width = int
50 and height = int
51 and leftx = int
52 and opaque = Opaque.t
53 and recttype = int
54 and pixmapsize = int
55 and angle = int
56 and trimmargins = bool
57 and interpagespace = int
58 and texcount = int
59 and sliceheight = int
60 and gen = int
61 and top = float
62 and dtop = float
63 and fontpath = string
64 and trimcachepath = string
65 and memsize = int
66 and aalevel = int
67 and irect = (int * int * int * int)
68 and trimparams = (trimmargins * irect)
69 and colorspace = | Rgb | Bgr | Gray
70 and fitmodel = | FitWidth | FitProportional | FitPage
71 and haspbo = bool
72 and uri = string
73 and caption = string
76 type x = int
77 and y = int
78 and tilex = int
79 and tiley = int
80 and tileparams = (x * y * width * height * tilex * tiley)
83 type link =
84 | Lnotfound
85 | Lfound of int
86 and linkdir =
87 | LDfirst
88 | LDlast
89 | LDfirstvisible of (int * int * int)
90 | LDleft of int
91 | LDright of int
92 | LDdown of int
93 | LDup of int
96 type pagewithlinks =
97 | Pwlnotfound
98 | Pwl of int
101 type keymap =
102 | KMinsrt of key
103 | KMinsrl of key list
104 | KMmulti of key list * key list
105 and key = int * int
106 and keyhash = (key, keymap) Hashtbl.t
107 and keystate =
108 | KSnone
109 | KSinto of (key list * key list)
112 type platform = | Punknown | Plinux | Posx | Psun | Pfreebsd
113 | Pdragonflybsd | Popenbsd | Pnetbsd | Pcygwin;;
115 type pipe = (Unix.file_descr * Unix.file_descr);;
117 external init : pipe -> params -> unit = "ml_init";;
118 external seltext : opaque -> (int * int * int * int) -> unit = "ml_seltext";;
119 external hassel : opaque -> bool = "ml_hassel";;
120 external copysel : Unix.file_descr -> opaque -> unit = "ml_copysel";;
121 external getpdimrect : int -> float array = "ml_getpdimrect";;
122 external whatsunder : opaque -> int -> int -> under = "ml_whatsunder";;
123 external markunder : opaque -> int -> int -> mark -> bool = "ml_markunder";;
124 external clearmark : opaque -> unit = "ml_clearmark";;
125 external zoomforh : int -> int -> int -> int -> float = "ml_zoom_for_height";;
126 external drawstr : int -> int -> int -> string -> float = "ml_draw_string";;
127 external measurestr : int -> string -> float = "ml_measure_string";;
128 external postprocess :
129 opaque -> int -> int -> int -> (int * string * int) -> int
130 = "ml_postprocess";;
131 external pagebbox : opaque -> (int * int * int * int) = "ml_getpagebox";;
132 external platform : unit -> platform = "ml_platform";;
133 external setaalevel : int -> unit = "ml_setaalevel";;
134 external realloctexts : int -> bool = "ml_realloctexts";;
135 external findlink : opaque -> linkdir -> link = "ml_findlink";;
136 external getlink : opaque -> int -> under = "ml_getlink";;
137 external getlinkrect : opaque -> int -> irect = "ml_getlinkrect";;
138 external getlinkcount : opaque -> int = "ml_getlinkcount";;
139 external findpwl : int -> int -> pagewithlinks = "ml_find_page_with_links"
140 external popen : string -> (Unix.file_descr * int) list -> unit = "ml_popen";;
141 external getpbo : width -> height -> colorspace -> opaque = "ml_getpbo";;
142 external freepbo : opaque -> unit = "ml_freepbo";;
143 external unmappbo : opaque -> unit = "ml_unmappbo";;
144 external pbousable : unit -> bool = "ml_pbo_usable";;
145 external unproject : opaque -> int -> int -> (int * int) option
146 = "ml_unproject";;
147 external drawtile : tileparams -> opaque -> unit = "ml_drawtile";;
148 external rectofblock : opaque -> int -> int -> float array option
149 = "ml_rectofblock";;
150 external fz_version : unit -> string = "ml_fz_version";;
151 external begintiles : unit -> unit = "ml_begintiles";;
152 external endtiles : unit -> unit = "ml_endtiles";;
154 let platform_to_string = function
155 | Punknown -> "unknown"
156 | Plinux -> "Linux"
157 | Posx -> "OSX"
158 | Psun -> "Sun"
159 | Pfreebsd -> "FreeBSD"
160 | Pdragonflybsd -> "DragonflyBSD"
161 | Popenbsd -> "OpenBSD"
162 | Pnetbsd -> "NetBSD"
163 | Pcygwin -> "Cygwin"
166 let platform = platform ();;
168 let now = Unix.gettimeofday;;
170 let selfexec = ref "";;
172 let popen cmd fda =
173 if platform = Pcygwin
174 then (
175 let sh = "/bin/sh" in
176 let args = [|sh; "-c"; cmd|] in
177 let rec std si so se = function
178 | [] -> si, so, se
179 | (fd, 0) :: rest -> std fd so se rest
180 | (fd, -1) :: rest ->
181 Unix.set_close_on_exec fd;
182 std si so se rest
183 | (_, n) :: _ ->
184 failwith ("unexpected fdn in cygwin popen " ^ string_of_int n)
186 let si, so, se = std Unix.stdin Unix.stdout Unix.stderr fda in
187 ignore (Unix.create_process sh args si so se)
189 else popen cmd fda;
192 type mpos = int * int
193 and mstate =
194 | Msel of (mpos * mpos)
195 | Mpan of mpos
196 | Mscrolly | Mscrollx
197 | Mzoom of (int * int)
198 | Mzoomrect of (mpos * mpos)
199 | Mnone
202 type textentry = string * string * onhist option * onkey * ondone * cancelonempty
203 and onkey = string -> int -> te
204 and ondone = string -> unit
205 and histcancel = unit -> unit
206 and onhist = ((histcmd -> string) * histcancel)
207 and histcmd = HCnext | HCprev | HCfirst | HClast
208 and cancelonempty = bool
209 and te =
210 | TEstop
211 | TEdone of string
212 | TEcont of string
213 | TEswitch of textentry
216 type 'a circbuf =
217 { store : 'a array
218 ; mutable rc : int
219 ; mutable wc : int
220 ; mutable len : int
224 let bound v minv maxv =
225 max minv (min maxv v);
228 let cbnew n v =
229 { store = Array.create n v
230 ; rc = 0
231 ; wc = 0
232 ; len = 0
236 let cbcap b = Array.length b.store;;
238 let cbput b v =
239 let cap = cbcap b in
240 b.store.(b.wc) <- v;
241 b.wc <- (b.wc + 1) mod cap;
242 b.rc <- b.wc;
243 b.len <- min (b.len + 1) cap;
246 let cbempty b = b.len = 0;;
248 let cbgetg b circular dir =
249 if cbempty b
250 then b.store.(0)
251 else
252 let rc = b.rc + dir in
253 let rc =
254 if circular
255 then (
256 if rc = -1
257 then b.len-1
258 else (
259 if rc >= b.len
260 then 0
261 else rc
264 else bound rc 0 (b.len-1)
266 b.rc <- rc;
267 b.store.(rc);
270 let cbget b = cbgetg b false;;
271 let cbgetc b = cbgetg b true;;
273 let drawstring size x y s =
274 Gl.enable `blend;
275 Gl.enable `texture_2d;
276 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
277 ignore (drawstr size x y s);
278 Gl.disable `blend;
279 Gl.disable `texture_2d;
282 let drawstring1 size x y s =
283 drawstr size x y s;
286 let drawstring2 size x y fmt =
287 Printf.kprintf (drawstring size (x+1) (y+size+1)) fmt
290 type page =
291 { pageno : int
292 ; pagedimno : int
293 ; pagew : int
294 ; pageh : int
295 ; pagex : int
296 ; pagey : int
297 ; pagevw : int
298 ; pagevh : int
299 ; pagedispx : int
300 ; pagedispy : int
301 ; pagecol : int
305 let debugl l =
306 dolog "l %d dim=%d {" l.pageno l.pagedimno;
307 dolog " WxH %dx%d" l.pagew l.pageh;
308 dolog " vWxH %dx%d" l.pagevw l.pagevh;
309 dolog " pagex,y %d,%d" l.pagex l.pagey;
310 dolog " dispx,y %d,%d" l.pagedispx l.pagedispy;
311 dolog " column %d" l.pagecol;
312 dolog "}";
315 let debugrect (x0, y0, x1, y1, x2, y2, x3, y3) =
316 dolog "rect {";
317 dolog " x0,y0=(% f, % f)" x0 y0;
318 dolog " x1,y1=(% f, % f)" x1 y1;
319 dolog " x2,y2=(% f, % f)" x2 y2;
320 dolog " x3,y3=(% f, % f)" x3 y3;
321 dolog "}";
324 type multicolumns = multicol * pagegeom
325 and singlecolumn = pagegeom
326 and splitcolumns = columncount * pagegeom
327 and pagegeom = ((pdimno * x * y * (pageno * width * height * leftx)) array)
328 and multicol = columncount * covercount * covercount
329 and pdimno = int
330 and columncount = int
331 and covercount = int;;
333 type scrollb = int;;
334 let scrollbvv = 1;;
335 let scrollbhv = 2;;
337 type conf =
338 { mutable scrollbw : int
339 ; mutable scrollh : int
340 ; mutable scrollb : scrollb
341 ; mutable icase : bool
342 ; mutable preload : bool
343 ; mutable pagebias : int
344 ; mutable verbose : bool
345 ; mutable debug : bool
346 ; mutable scrollstep : int
347 ; mutable hscrollstep : int
348 ; mutable maxhfit : bool
349 ; mutable crophack : bool
350 ; mutable autoscrollstep : int
351 ; mutable maxwait : float option
352 ; mutable hlinks : bool
353 ; mutable underinfo : bool
354 ; mutable interpagespace : interpagespace
355 ; mutable zoom : float
356 ; mutable presentation : bool
357 ; mutable angle : angle
358 ; mutable cwinw : int
359 ; mutable cwinh : int
360 ; mutable savebmarks : bool
361 ; mutable fitmodel : fitmodel
362 ; mutable trimmargins : trimmargins
363 ; mutable trimfuzz : irect
364 ; mutable memlimit : memsize
365 ; mutable texcount : texcount
366 ; mutable sliceheight : sliceheight
367 ; mutable thumbw : width
368 ; mutable jumpback : bool
369 ; mutable bgcolor : (float * float * float)
370 ; mutable bedefault : bool
371 ; mutable tilew : int
372 ; mutable tileh : int
373 ; mutable mustoresize : memsize
374 ; mutable checkers : bool
375 ; mutable aalevel : int
376 ; mutable urilauncher : string
377 ; mutable pathlauncher : string
378 ; mutable colorspace : colorspace
379 ; mutable invert : bool
380 ; mutable colorscale : float
381 ; mutable redirectstderr : bool
382 ; mutable ghyllscroll : (int * int * int) option
383 ; mutable columns : columns
384 ; mutable beyecolumns : columncount option
385 ; mutable selcmd : string
386 ; mutable paxcmd : string
387 ; mutable updatecurs : bool
388 ; mutable keyhashes : (string * keyhash) list
389 ; mutable hfsize : int
390 ; mutable pgscale : float
391 ; mutable usepbo : bool
392 ; mutable wheelbypage : bool
393 ; mutable stcmd : string
394 ; mutable riani : bool
395 ; mutable pax : (float * int * int) ref option
396 ; mutable paxmark : mark
398 and columns =
399 | Csingle of singlecolumn
400 | Cmulti of multicolumns
401 | Csplit of splitcolumns
404 type anchor = pageno * top * dtop;;
406 type outlinekind =
407 | Onone
408 | Oanchor of anchor
409 | Ouri of uri
410 | Olaunch of launchcommand
411 | Oremote of (filename * pageno)
412 | Oremotedest of (filename * destname)
413 and outline = (caption * outlinelevel * outlinekind)
414 and outlinelevel = int
417 type rect = float * float * float * float * float * float * float * float;;
419 type tile = opaque * pixmapsize * elapsed
420 and elapsed = float;;
421 type pagemapkey = pageno * gen;;
422 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
423 and row = int
424 and col = int;;
426 let emptyanchor = (0, 0.0, 0.0);;
428 type infochange = | Memused | Docinfo | Pdim;;
430 class type uioh = object
431 method display : unit
432 method key : int -> int -> uioh
433 method button : int -> bool -> int -> int -> int -> uioh
434 method multiclick : int -> int -> int -> int -> uioh
435 method motion : int -> int -> uioh
436 method pmotion : int -> int -> uioh
437 method infochanged : infochange -> unit
438 method scrollpw : (int * float * float)
439 method scrollph : (int * float * float)
440 method modehash : keyhash
441 method eformsgs : bool
442 end;;
444 type mode =
445 | Birdseye of (conf * leftx * pageno * pageno * anchor)
446 | Textentry of (textentry * onleave)
447 | View
448 | LinkNav of linktarget
449 and onleave = leavetextentrystatus -> unit
450 and leavetextentrystatus = | Cancel | Confirm
451 and helpitem = string * int * action
452 and action =
453 | Noaction
454 | Action of (uioh -> uioh)
455 and linktarget =
456 | Ltexact of (pageno * int)
457 | Ltgendir of int
460 let isbirdseye = function Birdseye _ -> true | _ -> false;;
461 let istextentry = function Textentry _ -> true | _ -> false;;
463 type currently =
464 | Idle
465 | Loading of (page * gen)
466 | Tiling of (
467 page * opaque * colorspace * angle * gen * col * row * width * height
469 | Outlining of outline list
472 let emptykeyhash = Hashtbl.create 0;;
473 let nouioh : uioh = object (self)
474 method display = ()
475 method key _ _ = self
476 method multiclick _ _ _ _ = self
477 method button _ _ _ _ _ = self
478 method motion _ _ = self
479 method pmotion _ _ = self
480 method infochanged _ = ()
481 method scrollpw = (0, nan, nan)
482 method scrollph = (0, nan, nan)
483 method modehash = emptykeyhash
484 method eformsgs = false
485 end;;
487 type state =
488 { mutable sr : Unix.file_descr
489 ; mutable sw : Unix.file_descr
490 ; mutable wsfd : Unix.file_descr
491 ; mutable errfd : Unix.file_descr option
492 ; mutable stderr : Unix.file_descr
493 ; mutable errmsgs : Buffer.t
494 ; mutable newerrmsgs : bool
495 ; mutable w : int
496 ; mutable x : int
497 ; mutable y : int
498 ; mutable anchor : anchor
499 ; mutable ranchors : (string * string * anchor * string) list
500 ; mutable maxy : int
501 ; mutable layout : page list
502 ; pagemap : (pagemapkey, opaque) Hashtbl.t
503 ; tilemap : (tilemapkey, tile) Hashtbl.t
504 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
505 ; mutable pdims : (pageno * width * height * leftx) list
506 ; mutable pagecount : int
507 ; mutable currently : currently
508 ; mutable mstate : mstate
509 ; mutable searchpattern : string
510 ; mutable rects : (pageno * recttype * rect) list
511 ; mutable rects1 : (pageno * recttype * rect) list
512 ; mutable text : string
513 ; mutable winstate : Wsi.winstate list
514 ; mutable mode : mode
515 ; mutable uioh : uioh
516 ; mutable outlines : outline array
517 ; mutable bookmarks : outline list
518 ; mutable path : string
519 ; mutable password : string
520 ; mutable nameddest : string
521 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
522 ; mutable memused : memsize
523 ; mutable gen : gen
524 ; mutable throttle : (page list * int * float) option
525 ; mutable autoscroll : int option
526 ; mutable ghyll : (int option -> unit)
527 ; mutable help : helpitem array
528 ; mutable docinfo : (int * string) list
529 ; mutable texid : GlTex.texture_id option
530 ; hists : hists
531 ; mutable prevzoom : (float * int)
532 ; mutable progress : float
533 ; mutable redisplay : bool
534 ; mutable mpos : mpos
535 ; mutable keystate : keystate
536 ; mutable glinks : bool
537 ; mutable prevcolumns : (columns * float) option
538 ; mutable winw : int
539 ; mutable winh : int
540 ; mutable reprf : (unit -> unit)
541 ; mutable origin : string
542 ; mutable roam : (unit -> unit)
543 ; mutable bzoom : bool
544 ; mutable traw : [`float] Raw.t
545 ; mutable vraw : [`float] Raw.t
547 and hists =
548 { pat : string circbuf
549 ; pag : string circbuf
550 ; nav : anchor circbuf
551 ; sel : string circbuf
555 let defconf =
556 { scrollbw = 7
557 ; scrollh = 12
558 ; scrollb = scrollbhv lor scrollbvv
559 ; icase = true
560 ; preload = true
561 ; pagebias = 0
562 ; verbose = false
563 ; debug = false
564 ; scrollstep = 24
565 ; hscrollstep = 24
566 ; maxhfit = true
567 ; crophack = false
568 ; autoscrollstep = 2
569 ; maxwait = None
570 ; hlinks = false
571 ; underinfo = false
572 ; interpagespace = 2
573 ; zoom = 1.0
574 ; presentation = false
575 ; angle = 0
576 ; cwinw = 900
577 ; cwinh = 900
578 ; savebmarks = true
579 ; fitmodel = FitProportional
580 ; trimmargins = false
581 ; trimfuzz = (0,0,0,0)
582 ; memlimit = 32 lsl 20
583 ; texcount = 256
584 ; sliceheight = 24
585 ; thumbw = 76
586 ; jumpback = true
587 ; bgcolor = (0.5, 0.5, 0.5)
588 ; bedefault = false
589 ; tilew = 2048
590 ; tileh = 2048
591 ; mustoresize = 256 lsl 20
592 ; checkers = true
593 ; aalevel = 8
594 ; urilauncher =
595 (match platform with
596 | Plinux | Pfreebsd | Pdragonflybsd
597 | Popenbsd | Pnetbsd | Psun -> "xdg-open \"%s\""
598 | Posx -> "open \"%s\""
599 | Pcygwin -> "cygstart \"%s\""
600 | Punknown -> "echo %s")
601 ; pathlauncher = "lp \"%s\""
602 ; selcmd =
603 (match platform with
604 | Plinux | Pfreebsd | Pdragonflybsd
605 | Popenbsd | Pnetbsd | Psun -> "xsel -i"
606 | Posx -> "pbcopy"
607 | Pcygwin -> "wsel"
608 | Punknown -> "cat")
609 ; paxcmd = "cat"
610 ; colorspace = Rgb
611 ; invert = false
612 ; colorscale = 1.0
613 ; redirectstderr = false
614 ; ghyllscroll = None
615 ; columns = Csingle [||]
616 ; beyecolumns = None
617 ; updatecurs = false
618 ; hfsize = 12
619 ; pgscale = 1.0
620 ; usepbo = false
621 ; wheelbypage = false
622 ; stcmd = "echo SyncTex"
623 ; riani = false
624 ; pax = None
625 ; paxmark = Mark_word
626 ; keyhashes =
627 let mk n = (n, Hashtbl.create 1) in
628 [ mk "global"
629 ; mk "info"
630 ; mk "help"
631 ; mk "outline"
632 ; mk "listview"
633 ; mk "birdseye"
634 ; mk "textentry"
635 ; mk "links"
636 ; mk "view"
641 let wtmode = ref false;;
642 let cxack = ref false;;
644 let findkeyhash c name =
645 try List.assoc name c.keyhashes
646 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
649 let conf = { defconf with angle = defconf.angle };;
651 let pgscale h = truncate (float h *. conf.pgscale);;
653 type fontstate =
654 { mutable fontsize : int
655 ; mutable wwidth : float
656 ; mutable maxrows : int
660 let fstate =
661 { fontsize = 14
662 ; wwidth = nan
663 ; maxrows = -1
667 let geturl s =
668 let colonpos = try String.index s ':' with Not_found -> -1 in
669 let len = String.length s in
670 if colonpos >= 0 && colonpos + 3 < len
671 then (
672 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
673 then
674 let schemestartpos =
675 try String.rindex_from s colonpos ' '
676 with Not_found -> -1
678 let scheme =
679 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
681 match scheme with
682 | "http" | "ftp" | "mailto" ->
683 let epos =
684 try String.index_from s colonpos ' '
685 with Not_found -> len
687 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
688 | _ -> ""
689 else ""
691 else ""
694 let gotouri uri =
695 if emptystr conf.urilauncher
696 then print_endline uri
697 else (
698 let url = geturl uri in
699 if emptystr url
700 then Printf.eprintf "obtained empty url from uri %S" uri
701 else
702 let re = Str.regexp "%s" in
703 let command = Str.global_replace re url conf.urilauncher in
704 try popen command []
705 with exn ->
706 Printf.eprintf
707 "failed to execute `%s': %s\n" command (exntos exn);
708 flush stderr;
712 let version () =
713 Printf.sprintf "llpp version %s, fitz %s, ocaml %s (%s/%dbit)"
714 Help.version (fz_version ()) Sys.ocaml_version
715 (platform_to_string platform) Sys.word_size
718 let makehelp () =
719 let strings = version () :: "" :: Help.keys in
720 Array.of_list (
721 List.map (fun s ->
722 let url = geturl s in
723 if nonemptystr url
724 then (s, 0, Action (fun u -> gotouri url; u))
725 else (s, 0, Noaction)
726 ) strings);
729 let noghyll _ = ();;
730 let firstgeomcmds = "", [];;
731 let noreprf () = ();;
732 let noroam () = ();;
734 let state =
735 { sr = Unix.stdin
736 ; sw = Unix.stdin
737 ; wsfd = Unix.stdin
738 ; errfd = None
739 ; stderr = Unix.stderr
740 ; errmsgs = Buffer.create 0
741 ; newerrmsgs = false
742 ; x = 0
743 ; y = 0
744 ; w = 0
745 ; anchor = emptyanchor
746 ; ranchors = []
747 ; layout = []
748 ; maxy = max_int
749 ; tilelru = Queue.create ()
750 ; pagemap = Hashtbl.create 10
751 ; tilemap = Hashtbl.create 10
752 ; pdims = []
753 ; pagecount = 0
754 ; currently = Idle
755 ; mstate = Mnone
756 ; rects = []
757 ; rects1 = []
758 ; text = ""
759 ; mode = View
760 ; winstate = []
761 ; searchpattern = ""
762 ; outlines = [||]
763 ; bookmarks = []
764 ; path = ""
765 ; password = ""
766 ; nameddest = ""
767 ; geomcmds = firstgeomcmds
768 ; hists =
769 { nav = cbnew 10 emptyanchor
770 ; pat = cbnew 10 ""
771 ; pag = cbnew 10 ""
772 ; sel = cbnew 10 ""
774 ; memused = 0
775 ; gen = 0
776 ; throttle = None
777 ; autoscroll = None
778 ; ghyll = noghyll
779 ; help = makehelp ()
780 ; docinfo = []
781 ; texid = None
782 ; prevzoom = (1.0, 0)
783 ; progress = -1.0
784 ; uioh = nouioh
785 ; redisplay = true
786 ; mpos = (-1, -1)
787 ; keystate = KSnone
788 ; glinks = false
789 ; prevcolumns = None
790 ; winw = -1
791 ; winh = -1
792 ; reprf = noreprf
793 ; origin = ""
794 ; roam = noroam
795 ; bzoom = false
796 ; traw = Raw.create_static `float 8
797 ; vraw = Raw.create_static `float 8
801 let hscrollh () =
802 if (conf.scrollb land scrollbhv = 0)
803 || (state.x = 0 && state.w <= state.winw - conf.scrollbw)
804 then 0
805 else conf.scrollbw
808 let vscrollw () =
809 if (conf.scrollb land scrollbvv = 0)
810 then 0
811 else conf.scrollbw
814 let wadjsb w = w - vscrollw ();;
816 let setfontsize n =
817 fstate.fontsize <- n;
818 fstate.wwidth <- measurestr fstate.fontsize "w";
819 fstate.maxrows <- (state.winh - fstate.fontsize - 1) / (fstate.fontsize + 1);
822 let vlog fmt =
823 if conf.verbose
824 then
825 Printf.kprintf prerr_endline fmt
826 else
827 Printf.kprintf ignore fmt
830 let launchpath () =
831 if emptystr conf.pathlauncher
832 then print_endline state.path
833 else (
834 let re = Str.regexp "%s" in
835 let command = Str.global_replace re state.path conf.pathlauncher in
836 try popen command []
837 with exn ->
838 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
839 flush stderr;
843 module Ne = struct
844 type 'a t = | Res of 'a | Exn of exn;;
846 let res f =
847 try Res (f ())
848 with exn -> Exn exn
851 let clo fd f =
852 try tempfailureretry Unix.close fd
853 with exn -> f (exntos exn)
856 let dup fd =
857 try Res (tempfailureretry Unix.dup fd)
858 with exn -> Exn exn
861 let dup2 fd1 fd2 =
862 try Res (tempfailureretry (Unix.dup2 fd1) fd2)
863 with exn -> Exn exn
865 end;;
867 let redirectstderr () =
868 let clofail what errmsg = dolog "failed to close %s: %s" what errmsg in
869 if conf.redirectstderr
870 then
871 match Ne.res Unix.pipe with
872 | Ne.Exn exn ->
873 dolog "failed to create stderr redirection pipes: %s" (exntos exn)
875 | Ne.Res (r, w) ->
876 begin match Ne.dup Unix.stderr with
877 | Ne.Exn exn ->
878 dolog "failed to dup stderr: %s" (exntos exn);
879 Ne.clo r (clofail "pipe/r");
880 Ne.clo w (clofail "pipe/w");
882 | Ne.Res dupstderr ->
883 begin match Ne.dup2 w Unix.stderr with
884 | Ne.Exn exn ->
885 dolog "failed to dup2 to stderr: %s" (exntos exn);
886 Ne.clo dupstderr (clofail "stderr duplicate");
887 Ne.clo r (clofail "redir pipe/r");
888 Ne.clo w (clofail "redir pipe/w");
890 | Ne.Res () ->
891 state.stderr <- dupstderr;
892 state.errfd <- Some r;
893 end;
895 else (
896 state.newerrmsgs <- false;
897 begin match state.errfd with
898 | Some fd ->
899 begin match Ne.dup2 state.stderr Unix.stderr with
900 | Ne.Exn exn ->
901 dolog "failed to dup2 original stderr: %s" (exntos exn)
902 | Ne.Res () ->
903 Ne.clo fd (clofail "dup of stderr");
904 state.errfd <- None;
905 end;
906 | None -> ()
907 end;
908 prerr_string (Buffer.contents state.errmsgs);
909 flush stderr;
910 Buffer.clear state.errmsgs;
914 module G =
915 struct
916 let postRedisplay who =
917 if conf.verbose
918 then prerr_endline ("redisplay for " ^ who);
919 state.redisplay <- true;
921 end;;
923 let getopaque pageno =
924 try Some (Hashtbl.find state.pagemap (pageno, state.gen))
925 with Not_found -> None
928 let putopaque pageno opaque =
929 Hashtbl.replace state.pagemap (pageno, state.gen) opaque
932 let pagetranslatepoint l x y =
933 let dy = y - l.pagedispy in
934 let y = dy + l.pagey in
935 let dx = x - l.pagedispx in
936 let x = dx + l.pagex in
937 (x, y);
940 let onppundermouse g x y d =
941 let rec f = function
942 | l :: rest ->
943 begin match getopaque l.pageno with
944 | Some opaque ->
945 let x0 = l.pagedispx in
946 let x1 = x0 + l.pagevw in
947 let y0 = l.pagedispy in
948 let y1 = y0 + l.pagevh in
949 if y >= y0 && y <= y1 && x >= x0 && x <= x1
950 then
951 let px, py = pagetranslatepoint l x y in
952 match g opaque l px py with
953 | Some res -> res
954 | None -> f rest
955 else f rest
956 | _ ->
957 f rest
959 | [] -> d
961 f state.layout
964 let getunder x y =
965 let g opaque l px py =
966 if state.bzoom
967 then (
968 match rectofblock opaque px py with
969 | Some a ->
970 let rect = (a.(0),a.(2),a.(1),a.(2),a.(1),a.(3),a.(0),a.(3)) in
971 state.rects <- [l.pageno, l.pageno mod 3, rect];
972 G.postRedisplay "getunder";
973 | None -> ()
975 match whatsunder opaque px py with
976 | Unone -> None
977 | under -> Some under
979 onppundermouse g x y Unone
982 let unproject x y =
983 let g opaque l x y =
984 match unproject opaque x y with
985 | Some (x, y) -> Some (Some (l.pageno, x, y))
986 | None -> None
988 onppundermouse g x y None;
991 let showtext c s =
992 state.text <- Printf.sprintf "%c%s" c s;
993 G.postRedisplay "showtext";
996 let pipesel opaque cmd =
997 if hassel opaque
998 then
999 match Ne.res Unix.pipe with
1000 | Ne.Exn exn ->
1001 showtext '!'
1002 (Printf.sprintf "pipesel can not create pipe: %s" (exntos exn));
1003 | Ne.Res (r, w) ->
1004 let doclose what fd =
1005 Ne.clo fd (fun msg -> dolog "%s close failed: %s" what msg)
1007 let popened =
1008 try popen cmd [r, 0; w, -1]; true
1009 with exn ->
1010 dolog "can not execute %S: %s" cmd (exntos exn);
1011 false
1013 if popened
1014 then (
1015 copysel w opaque;
1016 G.postRedisplay "pipesel";
1018 else doclose "pipesel pipe/w" w;
1019 doclose "pipesel pipe/r" r;
1022 let paxunder x y =
1023 let g opaque l px py =
1024 if markunder opaque px py conf.paxmark
1025 then (
1026 Some (fun () ->
1027 match getopaque l.pageno with
1028 | None -> ()
1029 | Some opaque -> pipesel opaque conf.paxcmd
1032 else None
1034 G.postRedisplay "paxunder";
1035 if conf.paxmark = Mark_page
1036 then
1037 List.iter (fun l ->
1038 match getopaque l.pageno with
1039 | None -> ()
1040 | Some opaque -> clearmark opaque) state.layout;
1041 state.roam <-
1042 onppundermouse g x y (fun () -> showtext '!' "Whoopsie daisy");
1045 let selstring s =
1046 match Ne.res Unix.pipe with
1047 | Ne.Exn exn ->
1048 showtext '!' (Printf.sprintf "pipe failed: %s" (exntos exn))
1049 | Ne.Res (r, w) ->
1050 let clo cap fd =
1051 Ne.clo fd (fun msg ->
1052 showtext '!' (Printf.sprintf "failed to close %s: %s" cap msg)
1055 let popened =
1056 try popen conf.selcmd [r, 0; w, -1]; true
1057 with exn ->
1058 showtext '!'
1059 (Printf.sprintf "failed to execute %s: %s"
1060 conf.selcmd (exntos exn));
1061 false
1063 if popened
1064 then (
1066 let l = String.length s in
1067 let n = tempfailureretry (Unix.write w s 0) l in
1068 if n != l
1069 then
1070 showtext '!'
1071 (Printf.sprintf
1072 "failed to write %d characters to sel pipe, wrote %d"
1075 with exn ->
1076 showtext '!'
1077 (Printf.sprintf "failed to write to sel pipe: %s"
1078 (exntos exn)
1081 else dolog "%s" s;
1082 clo "selstring pipe/r" r;
1083 clo "selstring pipe/w" w;
1086 let undertext = function
1087 | Unone -> "none"
1088 | Ulinkuri s -> s
1089 | Ulinkgoto (pageno, _) -> Printf.sprintf "%s: page %d" state.path (pageno+1)
1090 | Utext s -> "font: " ^ s
1091 | Uunexpected s -> "unexpected: " ^ s
1092 | Ulaunch s -> "launch: " ^ s
1093 | Unamed s -> "named: " ^ s
1094 | Uremote (filename, pageno) ->
1095 Printf.sprintf "%s: page %d" filename (pageno+1)
1096 | Uremotedest (filename, destname) ->
1097 Printf.sprintf "%s: destination %S" filename destname
1100 let updateunder x y =
1101 match getunder x y with
1102 | Unone -> Wsi.setcursor Wsi.CURSOR_INHERIT
1103 | Ulinkuri uri ->
1104 if conf.underinfo then showtext 'u' ("ri: " ^ uri);
1105 Wsi.setcursor Wsi.CURSOR_INFO
1106 | Ulinkgoto (pageno, _) ->
1107 if conf.underinfo
1108 then showtext 'p' ("age: " ^ string_of_int (pageno+1));
1109 Wsi.setcursor Wsi.CURSOR_INFO
1110 | Utext s ->
1111 if conf.underinfo then showtext 'f' ("ont: " ^ s);
1112 Wsi.setcursor Wsi.CURSOR_TEXT
1113 | Uunexpected s ->
1114 if conf.underinfo then showtext 'u' ("nexpected: " ^ s);
1115 Wsi.setcursor Wsi.CURSOR_INHERIT
1116 | Ulaunch s ->
1117 if conf.underinfo then showtext 'l' ("aunch: " ^ s);
1118 Wsi.setcursor Wsi.CURSOR_INHERIT
1119 | Unamed s ->
1120 if conf.underinfo then showtext 'n' ("amed: " ^ s);
1121 Wsi.setcursor Wsi.CURSOR_INHERIT
1122 | Uremote (filename, pageno) ->
1123 if conf.underinfo then showtext 'r'
1124 (Printf.sprintf "emote: %s (%d)" filename (pageno+1));
1125 Wsi.setcursor Wsi.CURSOR_INFO
1126 | Uremotedest (filename, destname) ->
1127 if conf.underinfo then showtext 'r'
1128 (Printf.sprintf "emote destination: %s (%S)" filename destname);
1129 Wsi.setcursor Wsi.CURSOR_INFO
1132 let showlinktype under =
1133 if conf.underinfo
1134 then
1135 match under with
1136 | Unone -> ()
1137 | under ->
1138 let s = undertext under in
1139 showtext ' ' s
1142 let addchar s c =
1143 let b = Buffer.create (String.length s + 1) in
1144 Buffer.add_string b s;
1145 Buffer.add_char b c;
1146 Buffer.contents b;
1149 module type TextEnumType =
1151 type t
1152 val name : string
1153 val names : string array
1154 end;;
1156 module TextEnumMake (Ten : TextEnumType) =
1157 struct
1158 let names = Ten.names;;
1159 let to_int (t : Ten.t) = Obj.magic t;;
1160 let to_string t = names.(to_int t);;
1161 let of_int n : Ten.t = Obj.magic n;;
1162 let of_string s =
1163 let rec find i =
1164 if i = Array.length names
1165 then failwith ("invalid " ^ Ten.name ^ ": " ^ s)
1166 else (
1167 if Ten.names.(i) = s
1168 then of_int i
1169 else find (i+1)
1171 in find 0;;
1172 end;;
1174 module CSTE = TextEnumMake (struct
1175 type t = colorspace;;
1176 let name = "colorspace";;
1177 let names = [|"rgb"; "bgr"; "gray"|];;
1178 end);;
1180 module MTE = TextEnumMake (struct
1181 type t = mark;;
1182 let name = "mark";;
1183 let names = [|"page"; "block"; "line"; "word"|];;
1184 end);;
1186 module FMTE = TextEnumMake (struct
1187 type t = fitmodel;;
1188 let name = "fitmodel";;
1189 let names = [|"width"; "proportional"; "page"|];;
1190 end);;
1192 let intentry_with_suffix text key =
1193 let c =
1194 if key >= 32 && key < 127
1195 then Char.chr key
1196 else '\000'
1198 match Char.lowercase c with
1199 | '0' .. '9' ->
1200 let text = addchar text c in
1201 TEcont text
1203 | 'k' | 'm' | 'g' ->
1204 let text = addchar text c in
1205 TEcont text
1207 | _ ->
1208 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
1209 TEcont text
1212 let multicolumns_to_string (n, a, b) =
1213 if a = 0 && b = 0
1214 then Printf.sprintf "%d" n
1215 else Printf.sprintf "%d,%d,%d" n a b;
1218 let multicolumns_of_string s =
1220 (int_of_string s, 0, 0)
1221 with _ ->
1222 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
1223 if a > 1 || b > 1
1224 then failwith "subtly broken"; (n, a, b)
1228 let readcmd fd =
1229 let s = "xxxx" in
1230 let n = tempfailureretry (Unix.read fd s 0) 4 in
1231 if n != 4 then error "incomplete read(len) = %d" n;
1232 let len = 0
1233 lor (Char.code s.[0] lsl 24)
1234 lor (Char.code s.[1] lsl 16)
1235 lor (Char.code s.[2] lsl 8)
1236 lor (Char.code s.[3] lsl 0)
1238 let s = String.create len in
1239 let n = tempfailureretry (Unix.read fd s 0) len in
1240 if n != len then error "incomplete read(data) %d vs %d" n len;
1244 let btod b = if b then 1 else 0;;
1246 let wcmd fmt =
1247 let b = Buffer.create 16 in
1248 Buffer.add_string b "llll";
1249 Printf.kbprintf
1250 (fun b ->
1251 let s = Buffer.contents b in
1252 let n = String.length s in
1253 let len = n - 4 in
1254 (* dolog "wcmd %S" (String.sub s 4 len); *)
1255 s.[0] <- Char.chr ((len lsr 24) land 0xff);
1256 s.[1] <- Char.chr ((len lsr 16) land 0xff);
1257 s.[2] <- Char.chr ((len lsr 8) land 0xff);
1258 s.[3] <- Char.chr (len land 0xff);
1259 let n' = tempfailureretry (Unix.write state.sw s 0) n in
1260 if n' != n then error "write failed %d vs %d" n' n;
1261 ) b fmt;
1264 let calcips h =
1265 let d = state.winh - h in
1266 max conf.interpagespace ((d + 1) / 2)
1269 let rowyh (c, coverA, coverB) b n =
1270 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
1271 then
1272 let _, _, vy, (_, _, h, _) = b.(n) in
1273 (vy, h)
1274 else
1275 let n' = n - coverA in
1276 let d = n' mod c in
1277 let s = n - d in
1278 let e = min state.pagecount (s + c) in
1279 let rec find m miny maxh = if m = e then miny, maxh else
1280 let _, _, y, (_, _, h, _) = b.(m) in
1281 let miny = min miny y in
1282 let maxh = max maxh h in
1283 find (m+1) miny maxh
1284 in find s max_int 0
1287 let calcheight () =
1288 match conf.columns with
1289 | Cmulti ((_, _, _) as cl, b) ->
1290 if Array.length b > 0
1291 then
1292 let y, h = rowyh cl b (Array.length b - 1) in
1293 y + h + (if conf.presentation then calcips h else 0)
1294 else 0
1295 | Csingle b ->
1296 if Array.length b > 0
1297 then
1298 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1299 y + h + (if conf.presentation then calcips h else 0)
1300 else 0
1301 | Csplit (_, b) ->
1302 if Array.length b > 0
1303 then
1304 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
1305 y + h
1306 else 0
1309 let getpageywh pageno =
1310 let pageno = bound pageno 0 (state.pagecount-1) in
1311 match conf.columns with
1312 | Csingle b ->
1313 if Array.length b = 0
1314 then 0, 0, 0
1315 else
1316 let (_, _, y, (_, w, h, _)) = b.(pageno) in
1317 let y =
1318 if conf.presentation
1319 then y - calcips h
1320 else y
1322 y, w, h
1323 | Cmulti (cl, b) ->
1324 if Array.length b = 0
1325 then 0, 0, 0
1326 else
1327 let y, h = rowyh cl b pageno in
1328 let (_, _, _, (_, w, _, _)) = b.(pageno) in
1329 let y =
1330 if conf.presentation
1331 then y - calcips h
1332 else y
1334 y, w, h
1335 | Csplit (c, b) ->
1336 if Array.length b = 0
1337 then 0, 0, 0
1338 else
1339 let n = pageno*c in
1340 let (_, _, y, (_, w, h, _)) = b.(n) in
1341 y, w / c, h
1344 let getpageyh pageno =
1345 let y,_,h = getpageywh pageno in
1346 y, h;
1349 let getpagedim pageno =
1350 let rec f ppdim l =
1351 match l with
1352 | (n, _, _, _) as pdim :: rest ->
1353 if n >= pageno
1354 then (if n = pageno then pdim else ppdim)
1355 else f pdim rest
1357 | [] -> ppdim
1359 f (-1, -1, -1, -1) state.pdims
1362 let getpagey pageno = fst (getpageyh pageno);;
1364 let nogeomcmds cmds =
1365 match cmds with
1366 | s, [] -> emptystr s
1367 | _ -> false
1370 let page_of_y y =
1371 let ((c, coverA, coverB) as cl), b =
1372 match conf.columns with
1373 | Csingle b -> (1, 0, 0), b
1374 | Cmulti (c, b) -> c, b
1375 | Csplit (_, b) -> (1, 0, 0), b
1377 if Array.length b = 0
1378 then -1
1379 else
1380 let rec bsearch nmin nmax =
1381 if nmin > nmax
1382 then bound nmin 0 (state.pagecount-1)
1383 else
1384 let n = (nmax + nmin) / 2 in
1385 let vy, h = rowyh cl b n in
1386 let y0, y1 =
1387 if conf.presentation
1388 then
1389 let ips = calcips h in
1390 let y0 = vy - ips in
1391 let y1 = vy + h + ips in
1392 y0, y1
1393 else (
1394 if n = 0
1395 then 0, vy + h + conf.interpagespace
1396 else
1397 let y0 = vy - conf.interpagespace in
1398 y0, y0 + h + conf.interpagespace
1401 if y >= y0 && y < y1
1402 then (
1403 if c = 1
1404 then n
1405 else (
1406 if n > coverA
1407 then
1408 if n < state.pagecount - coverB
1409 then ((n-coverA)/c)*c + coverA
1410 else n
1411 else n
1414 else (
1415 if y > y0
1416 then bsearch (n+1) nmax
1417 else bsearch nmin (n-1)
1420 bsearch 0 (state.pagecount-1);
1423 let layoutN ((columns, coverA, coverB), b) y sh =
1424 let sh = sh - (hscrollh ()) in
1425 let rec fold accu n =
1426 if n = Array.length b
1427 then accu
1428 else
1429 let pdimno, dx, vy, (_, w, h, xoff) = b.(n) in
1430 if (vy - y) > sh &&
1431 (n = coverA - 1
1432 || n = state.pagecount - coverB
1433 || (n - coverA) mod columns = columns - 1)
1434 then accu
1435 else
1436 let accu =
1437 if vy + h > y
1438 then
1439 let pagey = max 0 (y - vy) in
1440 let pagedispy = if pagey > 0 then 0 else vy - y in
1441 let pagedispx, pagex =
1442 let pdx =
1443 if n = coverA - 1 || n = state.pagecount - coverB
1444 then state.x + (wadjsb state.winw - w) / 2
1445 else dx + xoff + state.x
1447 if pdx < 0
1448 then 0, -pdx
1449 else pdx, 0
1451 let pagevw =
1452 let vw = wadjsb state.winw - pagedispx in
1453 let pw = w - pagex in
1454 min vw pw
1456 let pagevh = min (h - pagey) (sh - pagedispy) in
1457 if pagevw > 0 && pagevh > 0
1458 then
1459 let e =
1460 { pageno = n
1461 ; pagedimno = pdimno
1462 ; pagew = w
1463 ; pageh = h
1464 ; pagex = pagex
1465 ; pagey = pagey
1466 ; pagevw = pagevw
1467 ; pagevh = pagevh
1468 ; pagedispx = pagedispx
1469 ; pagedispy = pagedispy
1470 ; pagecol = 0
1473 e :: accu
1474 else
1475 accu
1476 else
1477 accu
1479 fold accu (n+1)
1481 if Array.length b = 0
1482 then []
1483 else List.rev (fold [] (page_of_y y))
1486 let layoutS (columns, b) y sh =
1487 let sh = sh - hscrollh () in
1488 let rec fold accu n =
1489 if n = Array.length b
1490 then accu
1491 else
1492 let pdimno, px, vy, (_, pagew, pageh, xoff) = b.(n) in
1493 if (vy - y) > sh
1494 then accu
1495 else
1496 let accu =
1497 if vy + pageh > y
1498 then
1499 let x = xoff + state.x in
1500 let pagey = max 0 (y - vy) in
1501 let pagedispy = if pagey > 0 then 0 else vy - y in
1502 let pagedispx, pagex =
1503 if px = 0
1504 then (
1505 if x < 0
1506 then 0, -x
1507 else x, 0
1509 else (
1510 let px = px - x in
1511 if px < 0
1512 then -px, 0
1513 else 0, px
1516 let pagecolw = pagew/columns in
1517 let pagedispx =
1518 if pagecolw < state.winw
1519 then pagedispx + ((wadjsb state.winw - pagecolw) / 2)
1520 else pagedispx
1522 let pagevw =
1523 let vw = wadjsb state.winw - pagedispx in
1524 let pw = pagew - pagex in
1525 min vw pw
1527 let pagevw = min pagevw pagecolw in
1528 let pagevh = min (pageh - pagey) (sh - pagedispy) in
1529 if pagevw > 0 && pagevh > 0
1530 then
1531 let e =
1532 { pageno = n/columns
1533 ; pagedimno = pdimno
1534 ; pagew = pagew
1535 ; pageh = pageh
1536 ; pagex = pagex
1537 ; pagey = pagey
1538 ; pagevw = pagevw
1539 ; pagevh = pagevh
1540 ; pagedispx = pagedispx
1541 ; pagedispy = pagedispy
1542 ; pagecol = n mod columns
1545 e :: accu
1546 else
1547 accu
1548 else
1549 accu
1551 fold accu (n+1)
1553 List.rev (fold [] 0)
1556 let layout y sh =
1557 if nogeomcmds state.geomcmds
1558 then
1559 match conf.columns with
1560 | Csingle b -> layoutN ((1, 0, 0), b) y sh
1561 | Cmulti c -> layoutN c y sh
1562 | Csplit s -> layoutS s y sh
1563 else []
1566 let clamp incr =
1567 let y = state.y + incr in
1568 let y = max 0 y in
1569 let y = min y (state.maxy - (if conf.maxhfit then state.winh else 0)) in
1573 let itertiles l f =
1574 let tilex = l.pagex mod conf.tilew in
1575 let tiley = l.pagey mod conf.tileh in
1577 let col = l.pagex / conf.tilew in
1578 let row = l.pagey / conf.tileh in
1580 let rec rowloop row y0 dispy h =
1581 if h = 0
1582 then ()
1583 else (
1584 let dh = conf.tileh - y0 in
1585 let dh = min h dh in
1586 let rec colloop col x0 dispx w =
1587 if w = 0
1588 then ()
1589 else (
1590 let dw = conf.tilew - x0 in
1591 let dw = min w dw in
1593 f col row dispx dispy x0 y0 dw dh;
1594 colloop (col+1) 0 (dispx+dw) (w-dw)
1597 colloop col tilex l.pagedispx l.pagevw;
1598 rowloop (row+1) 0 (dispy+dh) (h-dh)
1601 if l.pagevw > 0 && l.pagevh > 0
1602 then rowloop row tiley l.pagedispy l.pagevh;
1605 let gettileopaque l col row =
1606 let key =
1607 l.pageno, state.gen, conf.colorspace, conf.angle, l.pagew, l.pageh, col, row
1609 try Some (Hashtbl.find state.tilemap key)
1610 with Not_found -> None
1613 let puttileopaque l col row gen colorspace angle opaque size elapsed =
1614 let key = l.pageno, gen, colorspace, angle, l.pagew, l.pageh, col, row in
1615 Hashtbl.add state.tilemap key (opaque, size, elapsed)
1618 let filledrect x0 y0 x1 y1 =
1619 GlArray.disable `texture_coord;
1620 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
1621 GlArray.vertex `two state.vraw;
1622 GlArray.draw_arrays `triangle_strip 0 4;
1623 GlArray.enable `texture_coord;
1626 let linerect x0 y0 x1 y1 =
1627 GlArray.disable `texture_coord;
1628 Raw.sets_float state.vraw ~pos:0 [| x0; y0; x0; y1; x1; y1; x1; y0 |];
1629 GlArray.vertex `two state.vraw;
1630 GlArray.draw_arrays `line_loop 0 4;
1631 GlArray.enable `texture_coord;
1634 let drawtiles l color =
1635 GlDraw.color color;
1636 begintiles ();
1637 let f col row x y tilex tiley w h =
1638 match gettileopaque l col row with
1639 | Some (opaque, _, t) ->
1640 let params = x, y, w, h, tilex, tiley in
1641 if conf.invert
1642 then (
1643 Gl.enable `blend;
1644 GlFunc.blend_func `zero `one_minus_src_color;
1646 drawtile params opaque;
1647 if conf.invert
1648 then Gl.disable `blend;
1649 if conf.debug
1650 then (
1651 endtiles ();
1652 let s = Printf.sprintf
1653 "%d[%d,%d] %f sec"
1654 l.pageno col row t
1656 let w = measurestr fstate.fontsize s in
1657 GlDraw.color (0.0, 0.0, 0.0);
1658 filledrect (float (x-2))
1659 (float (y-2))
1660 (float (x+2) +. w)
1661 (float (y + fstate.fontsize + 2));
1662 GlDraw.color (1.0, 1.0, 1.0);
1663 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1664 begintiles ();
1667 | None ->
1668 endtiles ();
1669 let w =
1670 let lw = wadjsb state.winw - x in
1671 min lw w
1672 and h =
1673 let lh = state.winh - y in
1674 min lh h
1676 if conf.invert
1677 then (
1678 Gl.enable `blend;
1679 GlFunc.blend_func `zero `one_minus_src_color;
1681 begin match state.texid with
1682 | Some id ->
1683 Gl.enable `texture_2d;
1684 GlTex.bind_texture `texture_2d id;
1685 let x0 = float x
1686 and y0 = float y
1687 and x1 = float (x+w)
1688 and y1 = float (y+h) in
1690 let tw = float w /. 16.0
1691 and th = float h /. 16.0 in
1692 let tx0 = float tilex /. 16.0
1693 and ty0 = float tiley /. 16.0 in
1694 let tx1 = tx0 +. tw
1695 and ty1 = ty0 +. th in
1696 Raw.sets_float state.vraw ~pos:0
1697 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
1698 Raw.sets_float state.traw ~pos:0
1699 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
1700 GlArray.vertex `two state.vraw;
1701 GlArray.tex_coord `two state.traw;
1702 GlArray.draw_arrays `triangle_strip 0 4;
1704 | None ->
1705 GlDraw.color (1.0, 1.0, 1.0);
1706 filledrect (float x) (float y) (float (x+w)) (float (y+h));
1707 end;
1708 if w > 128 && h > fstate.fontsize + 10
1709 then (
1710 let c = if conf.invert then 1.0 else 0.0 in
1711 GlDraw.color (c, c, c);
1712 let c, r =
1713 if conf.verbose
1714 then (col*conf.tilew, row*conf.tileh)
1715 else col, row
1717 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1719 GlDraw.color color;
1720 begintiles ();
1722 itertiles l f;
1723 endtiles ();
1726 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1728 let tilevisible1 l x y =
1729 let ax0 = l.pagex
1730 and ax1 = l.pagex + l.pagevw
1731 and ay0 = l.pagey
1732 and ay1 = l.pagey + l.pagevh in
1734 let bx0 = x
1735 and by0 = y in
1736 let bx1 = min (bx0 + conf.tilew) l.pagew
1737 and by1 = min (by0 + conf.tileh) l.pageh in
1739 let rx0 = max ax0 bx0
1740 and ry0 = max ay0 by0
1741 and rx1 = min ax1 bx1
1742 and ry1 = min ay1 by1 in
1744 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1745 nonemptyintersection
1748 let tilevisible layout n x y =
1749 let rec findpageinlayout m = function
1750 | l :: rest when l.pageno = n ->
1751 tilevisible1 l x y || (
1752 match conf.columns with
1753 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1754 | _ -> false
1756 | _ :: rest -> findpageinlayout 0 rest
1757 | [] -> false
1759 findpageinlayout 0 layout;
1762 let tileready l x y =
1763 tilevisible1 l x y &&
1764 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1767 let tilepage n p layout =
1768 let rec loop = function
1769 | l :: rest ->
1770 if l.pageno = n
1771 then
1772 let f col row _ _ _ _ _ _ =
1773 if state.currently = Idle
1774 then
1775 match gettileopaque l col row with
1776 | Some _ -> ()
1777 | None ->
1778 let x = col*conf.tilew
1779 and y = row*conf.tileh in
1780 let w =
1781 let w = l.pagew - x in
1782 min w conf.tilew
1784 let h =
1785 let h = l.pageh - y in
1786 min h conf.tileh
1788 let pbo =
1789 if conf.usepbo
1790 then getpbo w h conf.colorspace
1791 else ~< "0"
1793 wcmd "tile %s %d %d %d %d %s"
1794 (~> p) x y w h (~> pbo);
1795 state.currently <-
1796 Tiling (
1797 l, p, conf.colorspace, conf.angle,
1798 state.gen, col, row, conf.tilew, conf.tileh
1801 itertiles l f;
1802 else
1803 loop rest
1805 | [] -> ()
1807 if nogeomcmds state.geomcmds
1808 then loop layout;
1811 let preloadlayout y =
1812 let y = if y < state.winh then 0 else y - state.winh in
1813 let h = state.winh*3 in
1814 layout y h;
1817 let load pages =
1818 let rec loop pages =
1819 if state.currently != Idle
1820 then ()
1821 else
1822 match pages with
1823 | l :: rest ->
1824 begin match getopaque l.pageno with
1825 | None ->
1826 wcmd "page %d %d" l.pageno l.pagedimno;
1827 state.currently <- Loading (l, state.gen);
1828 | Some opaque ->
1829 tilepage l.pageno opaque pages;
1830 loop rest
1831 end;
1832 | _ -> ()
1834 if nogeomcmds state.geomcmds
1835 then loop pages
1838 let preload pages =
1839 load pages;
1840 if conf.preload && state.currently = Idle
1841 then load (preloadlayout state.y);
1844 let layoutready layout =
1845 let rec fold all ls =
1846 all && match ls with
1847 | l :: rest ->
1848 let seen = ref false in
1849 let allvisible = ref true in
1850 let foo col row _ _ _ _ _ _ =
1851 seen := true;
1852 allvisible := !allvisible &&
1853 begin match gettileopaque l col row with
1854 | Some _ -> true
1855 | None -> false
1858 itertiles l foo;
1859 fold (!seen && !allvisible) rest
1860 | [] -> true
1862 let alltilesvisible = fold true layout in
1863 alltilesvisible;
1866 let gotoy y =
1867 let y = bound y 0 state.maxy in
1868 let y, layout, proceed =
1869 match conf.maxwait with
1870 | Some time when state.ghyll == noghyll ->
1871 begin match state.throttle with
1872 | None ->
1873 let layout = layout y state.winh in
1874 let ready = layoutready layout in
1875 if not ready
1876 then (
1877 load layout;
1878 state.throttle <- Some (layout, y, now ());
1880 else G.postRedisplay "gotoy showall (None)";
1881 y, layout, ready
1882 | Some (_, _, started) ->
1883 let dt = now () -. started in
1884 if dt > time
1885 then (
1886 state.throttle <- None;
1887 let layout = layout y state.winh in
1888 load layout;
1889 G.postRedisplay "maxwait";
1890 y, layout, true
1892 else -1, [], false
1895 | _ ->
1896 let layout = layout y state.winh in
1897 if not !wtmode || layoutready layout
1898 then G.postRedisplay "gotoy ready";
1899 y, layout, true
1901 if proceed
1902 then (
1903 state.y <- y;
1904 state.layout <- layout;
1905 begin match state.mode with
1906 | LinkNav (Ltexact (pageno, linkno)) ->
1907 let rec loop = function
1908 | [] ->
1909 state.mode <- LinkNav (Ltgendir 0)
1910 | l :: _ when l.pageno = pageno ->
1911 begin match getopaque pageno with
1912 | None ->
1913 state.mode <- LinkNav (Ltgendir 0)
1914 | Some opaque ->
1915 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1916 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1917 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1918 then state.mode <- LinkNav (Ltgendir 0)
1920 | _ :: rest -> loop rest
1922 loop layout
1923 | _ -> ()
1924 end;
1925 begin match state.mode with
1926 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1927 if not (pagevisible layout pageno)
1928 then (
1929 match state.layout with
1930 | [] -> ()
1931 | l :: _ ->
1932 state.mode <- Birdseye (
1933 conf, leftx, l.pageno, hooverpageno, anchor
1936 | LinkNav (Ltgendir dir as lt) ->
1937 let linknav =
1938 let rec loop = function
1939 | [] -> lt
1940 | l :: rest ->
1941 match getopaque l.pageno with
1942 | None -> loop rest
1943 | Some opaque ->
1944 let link =
1945 let ld =
1946 if dir = 0
1947 then LDfirstvisible (l.pagex, l.pagey, dir)
1948 else (
1949 if dir > 0 then LDfirst else LDlast
1952 findlink opaque ld
1954 match link with
1955 | Lnotfound -> loop rest
1956 | Lfound n ->
1957 showlinktype (getlink opaque n);
1958 Ltexact (l.pageno, n)
1960 loop state.layout
1962 state.mode <- LinkNav linknav
1963 | _ -> ()
1964 end;
1965 preload layout;
1967 state.ghyll <- noghyll;
1968 if conf.updatecurs
1969 then (
1970 let mx, my = state.mpos in
1971 updateunder mx my;
1975 let conttiling pageno opaque =
1976 tilepage pageno opaque
1977 (if conf.preload then preloadlayout state.y else state.layout)
1980 let gotoy_and_clear_text y =
1981 if not conf.verbose then state.text <- "";
1982 gotoy y;
1985 let getanchor1 l =
1986 let top =
1987 let coloff = l.pagecol * l.pageh in
1988 float (l.pagey + coloff) /. float l.pageh
1990 let dtop =
1991 if l.pagedispy = 0
1992 then
1994 else (
1995 if conf.presentation
1996 then float l.pagedispy /. float (calcips l.pageh)
1997 else float l.pagedispy /. float conf.interpagespace
2000 (l.pageno, top, dtop)
2003 let getanchor () =
2004 match state.layout with
2005 | l :: _ -> getanchor1 l
2006 | [] ->
2007 let n = page_of_y state.y in
2008 if n = -1
2009 then state.anchor
2010 else
2011 let y, h = getpageyh n in
2012 let dy = y - state.y in
2013 let dtop =
2014 if conf.presentation
2015 then
2016 let ips = calcips h in
2017 float (dy + ips) /. float ips
2018 else
2019 float dy /. float conf.interpagespace
2021 (n, 0.0, dtop)
2024 let getanchory (n, top, dtop) =
2025 let y, h = getpageyh n in
2026 if conf.presentation
2027 then
2028 let ips = calcips h in
2029 y + truncate (top*.float h -. dtop*.float ips) + ips;
2030 else
2031 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
2034 let gotoanchor anchor =
2035 gotoy (getanchory anchor);
2038 let addnav () =
2039 cbput state.hists.nav (getanchor ());
2042 let getnav dir =
2043 let anchor = cbgetc state.hists.nav dir in
2044 getanchory anchor;
2047 let gotoghyll y =
2048 let scroll f n a b =
2049 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
2050 let snake f a b =
2051 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
2052 if f < a
2053 then s (float f /. float a)
2054 else (
2055 if f > b
2056 then 1.0 -. s ((float (f-b) /. float (n-b)))
2057 else 1.0
2060 snake f a b
2061 and summa n a b =
2062 let ins = float a *. 0.5
2063 and outs = float (n-b) *. 0.5 in
2064 let ones = b - a in
2065 ins +. outs +. float ones
2067 let rec set (_N, _A, _B) y sy =
2068 let sum = summa _N _A _B in
2069 let dy = float (y - sy) in
2070 state.ghyll <- (
2071 let rec gf n y1 o =
2072 if n >= _N
2073 then state.ghyll <- noghyll
2074 else
2075 let go n =
2076 let s = scroll n _N _A _B in
2077 let y1 = y1 +. ((s *. dy) /. sum) in
2078 gotoy_and_clear_text (truncate y1);
2079 state.ghyll <- gf (n+1) y1;
2081 match o with
2082 | None -> go n
2083 | Some y' -> set (_N/2, 1, 1) y' state.y
2085 gf 0 (float state.y)
2088 match conf.ghyllscroll with
2089 | Some nab when not conf.presentation ->
2090 if state.ghyll == noghyll
2091 then set nab y state.y
2092 else state.ghyll (Some y)
2093 | _ ->
2094 gotoy_and_clear_text y
2097 let gotopage n top =
2098 let y, h = getpageyh n in
2099 let y = y + (truncate (top *. float h)) in
2100 gotoghyll y
2103 let gotopage1 n top =
2104 let y = getpagey n in
2105 let y = y + top in
2106 gotoghyll y
2109 let invalidate s f =
2110 state.layout <- [];
2111 state.pdims <- [];
2112 state.rects <- [];
2113 state.rects1 <- [];
2114 match state.geomcmds with
2115 | ps, [] when emptystr ps ->
2116 f ();
2117 state.geomcmds <- s, [];
2119 | ps, [] ->
2120 state.geomcmds <- ps, [s, f];
2122 | ps, (s', _) :: rest when s' = s ->
2123 state.geomcmds <- ps, ((s, f) :: rest);
2125 | ps, cmds ->
2126 state.geomcmds <- ps, ((s, f) :: cmds);
2129 let flushpages () =
2130 Hashtbl.iter (fun _ opaque ->
2131 wcmd "freepage %s" (~> opaque);
2132 ) state.pagemap;
2133 Hashtbl.clear state.pagemap;
2136 let flushtiles () =
2137 if not (Queue.is_empty state.tilelru)
2138 then (
2139 Queue.iter (fun (k, p, s) ->
2140 wcmd "freetile %s" (~> p);
2141 state.memused <- state.memused - s;
2142 Hashtbl.remove state.tilemap k;
2143 ) state.tilelru;
2144 state.uioh#infochanged Memused;
2145 Queue.clear state.tilelru;
2147 load state.layout;
2150 let stateh h =
2151 let h = truncate (float h*.conf.zoom) in
2152 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
2153 h - d
2156 let opendoc path password =
2157 state.path <- path;
2158 state.password <- password;
2159 state.gen <- state.gen + 1;
2160 state.docinfo <- [];
2162 flushpages ();
2163 setaalevel conf.aalevel;
2164 let titlepath =
2165 if emptystr state.origin
2166 then path
2167 else state.origin
2169 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename titlepath)));
2170 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password;
2171 invalidate "reqlayout"
2172 (fun () ->
2173 wcmd "reqlayout %d %d %d %s\000"
2174 conf.angle (FMTE.to_int conf.fitmodel)
2175 (stateh state.winh) state.nameddest
2179 let reload () =
2180 state.anchor <- getanchor ();
2181 opendoc state.path state.password;
2184 let scalecolor c =
2185 let c = c *. conf.colorscale in
2186 (c, c, c);
2189 let scalecolor2 (r, g, b) =
2190 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
2193 let docolumns = function
2194 | Csingle _ ->
2195 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
2196 let rec loop pageno pdimno pdim y ph pdims =
2197 if pageno = state.pagecount
2198 then ()
2199 else
2200 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2201 match pdims with
2202 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2203 pdimno+1, pdim, rest
2204 | _ ->
2205 pdimno, pdim, pdims
2207 let x = max 0 (((wadjsb state.winw - w) / 2) - xoff) in
2208 let y = y +
2209 (if conf.presentation
2210 then (if pageno = 0 then calcips h else calcips ph + calcips h)
2211 else (if pageno = 0 then 0 else conf.interpagespace)
2214 a.(pageno) <- (pdimno, x, y, pdim);
2215 loop (pageno+1) pdimno pdim (y + h) h pdims
2217 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
2218 conf.columns <- Csingle a;
2220 | Cmulti ((columns, coverA, coverB), _) ->
2221 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
2222 let rec loop pageno pdimno pdim x y rowh pdims =
2223 let rec fixrow m = if m = pageno then () else
2224 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
2225 if h < rowh
2226 then (
2227 let y = y + (rowh - h) / 2 in
2228 a.(m) <- (pdimno, x, y, pdim);
2230 fixrow (m+1)
2232 if pageno = state.pagecount
2233 then fixrow (((pageno - 1) / columns) * columns)
2234 else
2235 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2236 match pdims with
2237 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2238 pdimno+1, pdim, rest
2239 | _ ->
2240 pdimno, pdim, pdims
2242 let x, y, rowh' =
2243 if pageno = coverA - 1 || pageno = state.pagecount - coverB
2244 then (
2245 let x = (wadjsb state.winw - w) / 2 in
2246 let ips =
2247 if conf.presentation then calcips h else conf.interpagespace in
2248 x, y + ips + rowh, h
2250 else (
2251 if (pageno - coverA) mod columns = 0
2252 then (
2253 let x = max 0 (wadjsb state.winw - state.w) / 2 in
2254 let y =
2255 if conf.presentation
2256 then
2257 let ips = calcips h in
2258 y + (if pageno = 0 then 0 else calcips rowh + ips)
2259 else
2260 y + (if pageno = 0 then 0 else conf.interpagespace)
2262 x, y + rowh, h
2264 else x, y, max rowh h
2267 let y =
2268 if pageno > 1 && (pageno - coverA) mod columns = 0
2269 then (
2270 let y =
2271 if pageno = columns && conf.presentation
2272 then (
2273 let ips = calcips rowh in
2274 for i = 0 to pred columns
2276 let (pdimno, x, y, pdim) = a.(i) in
2277 a.(i) <- (pdimno, x, y+ips, pdim)
2278 done;
2279 y+ips;
2281 else y
2283 fixrow (pageno - columns);
2286 else y
2288 a.(pageno) <- (pdimno, x, y, pdim);
2289 let x = x + w + xoff*2 + conf.interpagespace in
2290 loop (pageno+1) pdimno pdim x y rowh' pdims
2292 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2293 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2295 | Csplit (c, _) ->
2296 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2297 let rec loop pageno pdimno pdim y pdims =
2298 if pageno = state.pagecount
2299 then ()
2300 else
2301 let pdimno, ((_, w, h, _) as pdim), pdims =
2302 match pdims with
2303 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2304 pdimno+1, pdim, rest
2305 | _ ->
2306 pdimno, pdim, pdims
2308 let cw = w / c in
2309 let rec loop1 n x y =
2310 if n = c then y else (
2311 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2312 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2315 let y = loop1 0 0 y in
2316 loop (pageno+1) pdimno pdim y pdims
2318 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2319 conf.columns <- Csplit (c, a);
2322 let represent () =
2323 docolumns conf.columns;
2324 state.maxy <- calcheight ();
2325 if state.reprf == noreprf
2326 then (
2327 match state.mode with
2328 | Birdseye (_, _, pageno, _, _) ->
2329 let y, h = getpageyh pageno in
2330 let top = (state.winh - h) / 2 in
2331 gotoy (max 0 (y - top))
2332 | _ -> gotoanchor state.anchor
2334 else (
2335 state.reprf ();
2336 state.reprf <- noreprf;
2340 let reshape w h =
2341 GlDraw.viewport 0 0 w h;
2342 let firsttime = state.geomcmds == firstgeomcmds in
2343 if not firsttime && nogeomcmds state.geomcmds
2344 then state.anchor <- getanchor ();
2346 state.winw <- w;
2347 let w = wadjsb (truncate (float w *. conf.zoom)) in
2348 let w = max w 2 in
2349 state.winh <- h;
2350 setfontsize fstate.fontsize;
2351 GlMat.mode `modelview;
2352 GlMat.load_identity ();
2354 GlMat.mode `projection;
2355 GlMat.load_identity ();
2356 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2357 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2358 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2360 let relx =
2361 if conf.zoom <= 1.0
2362 then 0.0
2363 else float state.x /. float state.w
2365 invalidate "geometry"
2366 (fun () ->
2367 state.w <- w;
2368 if not firsttime
2369 then state.x <- truncate (relx *. float w);
2370 let w =
2371 match conf.columns with
2372 | Csingle _ -> w
2373 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2374 | Csplit (c, _) -> w * c
2376 wcmd "geometry %d %d %d"
2377 w (stateh h) (FMTE.to_int conf.fitmodel)
2381 let enttext () =
2382 let len = String.length state.text in
2383 let drawstring s =
2384 let hscrollh =
2385 match state.mode with
2386 | Textentry _ | View | LinkNav _ ->
2387 let h, _, _ = state.uioh#scrollpw in
2389 | _ -> 0
2391 let rect x w =
2392 filledrect x (float (state.winh - (fstate.fontsize + 4) - hscrollh))
2393 (x+.w) (float (state.winh - hscrollh))
2396 let w = float (wadjsb state.winw - 1) in
2397 if state.progress >= 0.0 && state.progress < 1.0
2398 then (
2399 GlDraw.color (0.3, 0.3, 0.3);
2400 let w1 = w *. state.progress in
2401 rect 0.0 w1;
2402 GlDraw.color (0.0, 0.0, 0.0);
2403 rect w1 (w-.w1)
2405 else (
2406 GlDraw.color (0.0, 0.0, 0.0);
2407 rect 0.0 w;
2410 GlDraw.color (1.0, 1.0, 1.0);
2411 drawstring fstate.fontsize
2412 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2414 let s =
2415 match state.mode with
2416 | Textentry ((prefix, text, _, _, _, _), _) ->
2417 let s =
2418 if len > 0
2419 then
2420 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2421 else
2422 Printf.sprintf "%s%s_" prefix text
2426 | _ -> state.text
2428 let s =
2429 if state.newerrmsgs
2430 then (
2431 if not (istextentry state.mode) && state.uioh#eformsgs
2432 then
2433 let s1 = "(press 'e' to review error messasges)" in
2434 if nonemptystr s then s ^ " " ^ s1 else s1
2435 else s
2437 else s
2439 if nonemptystr s
2440 then drawstring s
2443 let gctiles () =
2444 let len = Queue.length state.tilelru in
2445 let layout = lazy (
2446 match state.throttle with
2447 | None ->
2448 if conf.preload
2449 then preloadlayout state.y
2450 else state.layout
2451 | Some (layout, _, _) ->
2452 layout
2453 ) in
2454 let rec loop qpos =
2455 if state.memused <= conf.memlimit
2456 then ()
2457 else (
2458 if qpos < len
2459 then
2460 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2461 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2462 let (_, pw, ph, _) = getpagedim n in
2464 gen = state.gen
2465 && colorspace = conf.colorspace
2466 && angle = conf.angle
2467 && pagew = pw
2468 && pageh = ph
2469 && (
2470 let x = col*conf.tilew
2471 and y = row*conf.tileh in
2472 tilevisible (Lazy.force_val layout) n x y
2474 then Queue.push lruitem state.tilelru
2475 else (
2476 freepbo p;
2477 wcmd "freetile %s" (~> p);
2478 state.memused <- state.memused - s;
2479 state.uioh#infochanged Memused;
2480 Hashtbl.remove state.tilemap k;
2482 loop (qpos+1)
2485 loop 0
2488 let logcurrently = function
2489 | Idle -> dolog "Idle"
2490 | Loading (l, gen) ->
2491 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2492 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2493 dolog
2494 "Tiling %d[%d,%d] page=%s cs=%s angle"
2495 l.pageno col row (~> pageopaque)
2496 (CSTE.to_string colorspace)
2498 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2499 angle gen conf.angle state.gen
2500 tilew tileh
2501 conf.tilew conf.tileh
2503 | Outlining _ ->
2504 dolog "outlining"
2507 let splitatspace =
2508 let r = Str.regexp " " in
2509 fun s -> Str.bounded_split r s 2;
2512 let onpagerect pageno f =
2513 let b =
2514 match conf.columns with
2515 | Cmulti (_, b) -> b
2516 | Csingle b -> b
2517 | Csplit (_, b) -> b
2519 if pageno >= 0 && pageno < Array.length b
2520 then
2521 let (_, _, _, (w, h, _, _)) = b.(pageno) in
2522 f w h
2525 let gotopagexy1 pageno x y =
2526 let _,w1,h1,leftx = getpagedim pageno in
2527 let top = y /. (float h1) in
2528 let left = x /. (float w1) in
2529 let py, w, h = getpageywh pageno in
2530 let wh = state.winh - hscrollh () in
2531 let x = left *. (float w) in
2532 let x = leftx + state.x + truncate x in
2533 let sx =
2534 if x < 0 || x >= wadjsb state.winw
2535 then state.x - x
2536 else state.x
2538 let pdy = truncate (top *. float h) in
2539 let y' = py + pdy in
2540 let dy = y' - state.y in
2541 let sy =
2542 if x != state.x || not (dy > 0 && dy < wh)
2543 then (
2544 if conf.presentation
2545 then
2546 if abs (py - y') > wh
2547 then y'
2548 else py
2549 else y';
2551 else state.y
2553 if state.x != sx || state.y != sy
2554 then (
2555 let x, y =
2556 if !wtmode
2557 then (
2558 let ww = wadjsb state.winw in
2559 let qx = sx / ww
2560 and qy = pdy / wh in
2561 let x = qx * ww
2562 and y = py + qy * wh in
2563 let x = if -x + ww > w1 then -(w1-ww) else x
2564 and y' = if y + wh > state.maxy then state.maxy - wh else y in
2565 let y =
2566 if conf.presentation
2567 then
2568 if abs (py - y') > wh
2569 then y'
2570 else py
2571 else y';
2573 (x, y)
2575 else (sx, sy)
2577 state.x <- x;
2578 gotoy_and_clear_text y;
2580 else gotoy_and_clear_text state.y;
2583 let gotopagexy pageno x y =
2584 match state.mode with
2585 | Birdseye _ -> gotopage pageno 0.0
2586 | _ -> gotopagexy1 pageno x y
2589 let act cmds =
2590 (* dolog "%S" cmds; *)
2591 let cl = splitatspace cmds in
2592 let scan s fmt f =
2593 try Scanf.sscanf s fmt f
2594 with exn ->
2595 dolog "error processing '%S': %s" cmds (exntos exn);
2596 exit 1
2598 let addoutline outline =
2599 match state.currently with
2600 | Outlining outlines ->
2601 state.currently <- Outlining (outline :: outlines)
2602 | Idle -> state.currently <- Outlining [outline]
2603 | currently ->
2604 dolog "invalid outlining state";
2605 logcurrently currently
2607 match cl with
2608 | "clear" :: [] ->
2609 state.uioh#infochanged Pdim;
2610 state.pdims <- [];
2612 | "clearrects" :: [] ->
2613 state.rects <- state.rects1;
2614 G.postRedisplay "clearrects";
2616 | "continue" :: args :: [] ->
2617 let n = scan args "%u" (fun n -> n) in
2618 state.pagecount <- n;
2619 begin match state.currently with
2620 | Outlining l ->
2621 state.currently <- Idle;
2622 state.outlines <- Array.of_list (List.rev l)
2623 | _ -> ()
2624 end;
2626 let cur, cmds = state.geomcmds in
2627 if emptystr cur
2628 then failwith "umpossible";
2630 begin match List.rev cmds with
2631 | [] ->
2632 state.geomcmds <- "", [];
2633 state.throttle <- None;
2634 represent ();
2635 | (s, f) :: rest ->
2636 f ();
2637 state.geomcmds <- s, List.rev rest;
2638 end;
2639 if conf.maxwait = None && not !wtmode
2640 then G.postRedisplay "continue";
2642 | "title" :: args :: [] ->
2643 Wsi.settitle args
2645 | "msg" :: args :: [] ->
2646 showtext ' ' args
2648 | "vmsg" :: args :: [] ->
2649 if conf.verbose
2650 then showtext ' ' args
2652 | "emsg" :: args :: [] ->
2653 Buffer.add_string state.errmsgs args;
2654 state.newerrmsgs <- true;
2655 G.postRedisplay "error message"
2657 | "progress" :: args :: [] ->
2658 let progress, text =
2659 scan args "%f %n"
2660 (fun f pos ->
2661 f, String.sub args pos (String.length args - pos))
2663 state.text <- text;
2664 state.progress <- progress;
2665 G.postRedisplay "progress"
2667 | "firstmatch" :: args :: [] ->
2668 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2669 scan args "%u %d %f %f %f %f %f %f %f %f"
2670 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2671 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2673 let y = (getpagey pageno) + truncate y0 in
2674 addnav ();
2675 gotoy y;
2676 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2678 | "match" :: args :: [] ->
2679 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2680 scan args "%u %d %f %f %f %f %f %f %f %f"
2681 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2682 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2684 state.rects1 <-
2685 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2687 | "page" :: args :: [] ->
2688 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
2689 let pageopaque = ~< pageopaques in
2690 begin match state.currently with
2691 | Loading (l, gen) ->
2692 vlog "page %d took %f sec" l.pageno t;
2693 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2694 begin match state.throttle with
2695 | None ->
2696 let preloadedpages =
2697 if conf.preload
2698 then preloadlayout state.y
2699 else state.layout
2701 let evict () =
2702 let set =
2703 List.fold_left (fun s l -> IntSet.add l.pageno s)
2704 IntSet.empty preloadedpages
2706 let evictedpages =
2707 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2708 if not (IntSet.mem pageno set)
2709 then (
2710 wcmd "freepage %s" (~> opaque);
2711 key :: accu
2713 else accu
2714 ) state.pagemap []
2716 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2718 evict ();
2719 state.currently <- Idle;
2720 if gen = state.gen
2721 then (
2722 tilepage l.pageno pageopaque state.layout;
2723 load state.layout;
2724 load preloadedpages;
2725 if pagevisible state.layout l.pageno
2726 && layoutready state.layout
2727 then G.postRedisplay "page";
2730 | Some (layout, _, _) ->
2731 state.currently <- Idle;
2732 tilepage l.pageno pageopaque layout;
2733 load state.layout
2734 end;
2736 | _ ->
2737 dolog "Inconsistent loading state";
2738 logcurrently state.currently;
2739 exit 1
2742 | "tile" :: args :: [] ->
2743 let (x, y, opaques, size, t) =
2744 scan args "%u %u %s %u %f"
2745 (fun x y p size t -> (x, y, p, size, t))
2747 let opaque = ~< opaques in
2748 begin match state.currently with
2749 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2750 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2752 unmappbo opaque;
2753 if tilew != conf.tilew || tileh != conf.tileh
2754 then (
2755 wcmd "freetile %s" (~> opaque);
2756 state.currently <- Idle;
2757 load state.layout;
2759 else (
2760 puttileopaque l col row gen cs angle opaque size t;
2761 state.memused <- state.memused + size;
2762 state.uioh#infochanged Memused;
2763 gctiles ();
2764 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2765 opaque, size) state.tilelru;
2767 let layout =
2768 match state.throttle with
2769 | None -> state.layout
2770 | Some (layout, _, _) -> layout
2773 state.currently <- Idle;
2774 if gen = state.gen
2775 && conf.colorspace = cs
2776 && conf.angle = angle
2777 && tilevisible layout l.pageno x y
2778 then conttiling l.pageno pageopaque;
2780 begin match state.throttle with
2781 | None ->
2782 preload state.layout;
2783 if gen = state.gen
2784 && conf.colorspace = cs
2785 && conf.angle = angle
2786 && tilevisible state.layout l.pageno x y
2787 && (not !wtmode || layoutready state.layout)
2788 then G.postRedisplay "tile nothrottle";
2790 | Some (layout, y, _) ->
2791 let ready = layoutready layout in
2792 if ready
2793 then (
2794 state.y <- y;
2795 state.layout <- layout;
2796 state.throttle <- None;
2797 G.postRedisplay "throttle";
2799 else load layout;
2800 end;
2803 | _ ->
2804 dolog "Inconsistent tiling state";
2805 logcurrently state.currently;
2806 exit 1
2809 | "pdim" :: args :: [] ->
2810 let (n, w, h, _) as pdim =
2811 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2813 let pdim =
2814 match conf.fitmodel, conf.columns with
2815 | (FitPage | FitProportional), Csplit _ -> (n, w, h, 0)
2816 | _ -> pdim
2818 state.uioh#infochanged Pdim;
2819 state.pdims <- pdim :: state.pdims
2821 | "o" :: args :: [] ->
2822 let (l, n, t, h, pos) =
2823 scan args "%u %u %d %u %n"
2824 (fun l n t h pos -> l, n, t, h, pos)
2826 let s = String.sub args pos (String.length args - pos) in
2827 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
2829 | "ou" :: args :: [] ->
2830 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
2831 let s = String.sub args pos len in
2832 let pos2 = pos + len + 1 in
2833 let uri = String.sub args pos2 (String.length args - pos2) in
2834 addoutline (s, l, Ouri uri)
2836 | "on" :: args :: [] ->
2837 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
2838 let s = String.sub args pos (String.length args - pos) in
2839 addoutline (s, l, Onone)
2841 | "a" :: args :: [] ->
2842 let (n, l, t) =
2843 scan args "%u %d %d" (fun n l t -> n, l, t)
2845 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2847 | "info" :: args :: [] ->
2848 state.docinfo <- (1, args) :: state.docinfo
2850 | "infoend" :: [] ->
2851 state.uioh#infochanged Docinfo;
2852 state.docinfo <- List.rev state.docinfo
2854 | _ ->
2855 error "unknown cmd `%S'" cmds
2858 let onhist cb =
2859 let rc = cb.rc in
2860 let action = function
2861 | HCprev -> cbget cb ~-1
2862 | HCnext -> cbget cb 1
2863 | HCfirst -> cbget cb ~-(cb.rc)
2864 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2865 and cancel () = cb.rc <- rc
2866 in (action, cancel)
2869 let search pattern forward =
2870 match conf.columns with
2871 | Csplit _ ->
2872 showtext '!' "searching does not work properly in split columns mode"
2873 | _ ->
2874 if nonemptystr pattern
2875 then
2876 let pn, py =
2877 match state.layout with
2878 | [] -> 0, 0
2879 | l :: _ ->
2880 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2882 wcmd "search %d %d %d %d,%s\000"
2883 (btod conf.icase) pn py (btod forward) pattern;
2886 let intentry text key =
2887 let c =
2888 if key >= 32 && key < 127
2889 then Char.chr key
2890 else '\000'
2892 match c with
2893 | '0' .. '9' ->
2894 let text = addchar text c in
2895 TEcont text
2897 | _ ->
2898 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2899 TEcont text
2902 let linknentry text key =
2903 let c =
2904 if key >= 32 && key < 127
2905 then Char.chr key
2906 else '\000'
2908 match c with
2909 | 'a' .. 'z' ->
2910 let text = addchar text c in
2911 TEcont text
2913 | _ ->
2914 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2915 TEcont text
2918 let linkndone f s =
2919 if nonemptystr s
2920 then (
2921 let n =
2922 let l = String.length s in
2923 let rec loop pos n = if pos = l then n else
2924 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2925 loop (pos+1) (n*26 + m)
2926 in loop 0 0
2928 let rec loop n = function
2929 | [] -> ()
2930 | l :: rest ->
2931 match getopaque l.pageno with
2932 | None -> loop n rest
2933 | Some opaque ->
2934 let m = getlinkcount opaque in
2935 if n < m
2936 then (
2937 let under = getlink opaque n in
2938 f under
2940 else loop (n-m) rest
2942 loop n state.layout;
2946 let textentry text key =
2947 if key land 0xff00 = 0xff00
2948 then TEcont text
2949 else TEcont (text ^ toutf8 key)
2952 let reqlayout angle fitmodel =
2953 match state.throttle with
2954 | None ->
2955 if nogeomcmds state.geomcmds
2956 then state.anchor <- getanchor ();
2957 conf.angle <- angle mod 360;
2958 if conf.angle != 0
2959 then (
2960 match state.mode with
2961 | LinkNav _ -> state.mode <- View
2962 | _ -> ()
2964 conf.fitmodel <- fitmodel;
2965 invalidate "reqlayout"
2966 (fun () ->
2967 wcmd "reqlayout %d %d %d"
2968 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh)
2970 | _ -> ()
2973 let settrim trimmargins trimfuzz =
2974 if nogeomcmds state.geomcmds
2975 then state.anchor <- getanchor ();
2976 conf.trimmargins <- trimmargins;
2977 conf.trimfuzz <- trimfuzz;
2978 let x0, y0, x1, y1 = trimfuzz in
2979 invalidate "settrim"
2980 (fun () ->
2981 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2982 flushpages ();
2985 let setzoom zoom =
2986 match state.throttle with
2987 | None ->
2988 let zoom = max 0.0001 zoom in
2989 if zoom <> conf.zoom
2990 then (
2991 state.prevzoom <- (conf.zoom, state.x);
2992 conf.zoom <- zoom;
2993 reshape state.winw state.winh;
2994 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
2997 | Some (layout, y, started) ->
2998 let time =
2999 match conf.maxwait with
3000 | None -> 0.0
3001 | Some t -> t
3003 let dt = now () -. started in
3004 if dt > time
3005 then (
3006 state.y <- y;
3007 load layout;
3011 let setcolumns mode columns coverA coverB =
3012 state.prevcolumns <- Some (conf.columns, conf.zoom);
3013 if columns < 0
3014 then (
3015 if isbirdseye mode
3016 then showtext '!' "split mode doesn't work in bird's eye"
3017 else (
3018 conf.columns <- Csplit (-columns, [||]);
3019 state.x <- 0;
3020 conf.zoom <- 1.0;
3023 else (
3024 if columns < 2
3025 then (
3026 conf.columns <- Csingle [||];
3027 state.x <- 0;
3028 setzoom 1.0;
3030 else (
3031 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
3032 conf.zoom <- 1.0;
3035 reshape state.winw state.winh;
3038 let enterbirdseye () =
3039 let zoom = float conf.thumbw /. float state.winw in
3040 let birdseyepageno =
3041 let cy = state.winh / 2 in
3042 let fold = function
3043 | [] -> 0
3044 | l :: rest ->
3045 let rec fold best = function
3046 | [] -> best.pageno
3047 | l :: rest ->
3048 let d = cy - (l.pagedispy + l.pagevh/2)
3049 and dbest = cy - (best.pagedispy + best.pagevh/2) in
3050 if abs d < abs dbest
3051 then fold l rest
3052 else best.pageno
3053 in fold l rest
3055 fold state.layout
3057 state.mode <- Birdseye (
3058 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
3060 conf.zoom <- zoom;
3061 conf.presentation <- false;
3062 conf.interpagespace <- 10;
3063 conf.hlinks <- false;
3064 conf.fitmodel <- FitProportional;
3065 state.x <- 0;
3066 state.mstate <- Mnone;
3067 conf.maxwait <- None;
3068 conf.columns <- (
3069 match conf.beyecolumns with
3070 | Some c ->
3071 conf.zoom <- 1.0;
3072 Cmulti ((c, 0, 0), [||])
3073 | None -> Csingle [||]
3075 Wsi.setcursor Wsi.CURSOR_INHERIT;
3076 if conf.verbose
3077 then
3078 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
3079 (100.0*.zoom)
3080 else
3081 state.text <- ""
3083 reshape state.winw state.winh;
3086 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
3087 state.mode <- View;
3088 conf.zoom <- c.zoom;
3089 conf.presentation <- c.presentation;
3090 conf.interpagespace <- c.interpagespace;
3091 conf.maxwait <- c.maxwait;
3092 conf.hlinks <- c.hlinks;
3093 conf.fitmodel <- c.fitmodel;
3094 conf.beyecolumns <- (
3095 match conf.columns with
3096 | Cmulti ((c, _, _), _) -> Some c
3097 | Csingle _ -> None
3098 | Csplit _ -> failwith "leaving bird's eye split mode"
3100 conf.columns <- (
3101 match c.columns with
3102 | Cmulti (c, _) -> Cmulti (c, [||])
3103 | Csingle _ -> Csingle [||]
3104 | Csplit (c, _) -> Csplit (c, [||])
3106 if conf.verbose
3107 then
3108 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
3109 (100.0*.conf.zoom)
3111 reshape state.winw state.winh;
3112 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
3113 state.x <- leftx;
3116 let togglebirdseye () =
3117 match state.mode with
3118 | Birdseye vals -> leavebirdseye vals true
3119 | View -> enterbirdseye ()
3120 | _ -> ()
3123 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
3124 let pageno = max 0 (pageno - incr) in
3125 let rec loop = function
3126 | [] -> gotopage1 pageno 0
3127 | l :: _ when l.pageno = pageno ->
3128 if l.pagedispy >= 0 && l.pagey = 0
3129 then G.postRedisplay "upbirdseye"
3130 else gotopage1 pageno 0
3131 | _ :: rest -> loop rest
3133 loop state.layout;
3134 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
3137 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
3138 let pageno = min (state.pagecount - 1) (pageno + incr) in
3139 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
3140 let rec loop = function
3141 | [] ->
3142 let y, h = getpageyh pageno in
3143 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
3144 gotoy (clamp dy)
3145 | l :: _ when l.pageno = pageno ->
3146 if l.pagevh != l.pageh
3147 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
3148 else G.postRedisplay "downbirdseye"
3149 | _ :: rest -> loop rest
3151 loop state.layout
3154 let boundastep h step =
3155 if step < 0
3156 then bound step ~-h 0
3157 else bound step 0 h
3160 let optentry mode _ key =
3161 let btos b = if b then "on" else "off" in
3162 if key >= 32 && key < 127
3163 then
3164 let c = Char.chr key in
3165 match c with
3166 | 's' ->
3167 let ondone s =
3168 try conf.scrollstep <- int_of_string s with exc ->
3169 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3171 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
3173 | 'A' ->
3174 let ondone s =
3176 conf.autoscrollstep <- boundastep state.winh (int_of_string s);
3177 if state.autoscroll <> None
3178 then state.autoscroll <- Some conf.autoscrollstep
3179 with exc ->
3180 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3182 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
3184 | 'C' ->
3185 let ondone s =
3187 let n, a, b = multicolumns_of_string s in
3188 setcolumns mode n a b;
3189 with exc ->
3190 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
3192 TEswitch ("columns: ", "", None, textentry, ondone, true)
3194 | 'Z' ->
3195 let ondone s =
3197 let zoom = float (int_of_string s) /. 100.0 in
3198 setzoom zoom
3199 with exc ->
3200 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3202 TEswitch ("zoom: ", "", None, intentry, ondone, true)
3204 | 't' ->
3205 let ondone s =
3207 conf.thumbw <- bound (int_of_string s) 2 4096;
3208 state.text <-
3209 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
3210 begin match mode with
3211 | Birdseye beye ->
3212 leavebirdseye beye false;
3213 enterbirdseye ();
3214 | _ -> ();
3216 with exc ->
3217 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3219 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
3221 | 'R' ->
3222 let ondone s =
3223 match try
3224 Some (int_of_string s)
3225 with exc ->
3226 state.text <- Printf.sprintf "bad integer `%s': %s"
3227 s (exntos exc);
3228 None
3229 with
3230 | Some angle -> reqlayout angle conf.fitmodel
3231 | None -> ()
3233 TEswitch ("rotation: ", "", None, intentry, ondone, true)
3235 | 'i' ->
3236 conf.icase <- not conf.icase;
3237 TEdone ("case insensitive search " ^ (btos conf.icase))
3239 | 'p' ->
3240 conf.preload <- not conf.preload;
3241 gotoy state.y;
3242 TEdone ("preload " ^ (btos conf.preload))
3244 | 'v' ->
3245 conf.verbose <- not conf.verbose;
3246 TEdone ("verbose " ^ (btos conf.verbose))
3248 | 'd' ->
3249 conf.debug <- not conf.debug;
3250 TEdone ("debug " ^ (btos conf.debug))
3252 | 'h' ->
3253 conf.maxhfit <- not conf.maxhfit;
3254 state.maxy <- calcheight ();
3255 TEdone ("maxhfit " ^ (btos conf.maxhfit))
3257 | 'c' ->
3258 conf.crophack <- not conf.crophack;
3259 TEdone ("crophack " ^ btos conf.crophack)
3261 | 'a' ->
3262 let s =
3263 match conf.maxwait with
3264 | None ->
3265 conf.maxwait <- Some infinity;
3266 "always wait for page to complete"
3267 | Some _ ->
3268 conf.maxwait <- None;
3269 "show placeholder if page is not ready"
3271 TEdone s
3273 | 'f' ->
3274 conf.underinfo <- not conf.underinfo;
3275 TEdone ("underinfo " ^ btos conf.underinfo)
3277 | 'P' ->
3278 conf.savebmarks <- not conf.savebmarks;
3279 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
3281 | 'S' ->
3282 let ondone s =
3284 let pageno, py =
3285 match state.layout with
3286 | [] -> 0, 0
3287 | l :: _ ->
3288 l.pageno, l.pagey
3290 conf.interpagespace <- int_of_string s;
3291 docolumns conf.columns;
3292 state.maxy <- calcheight ();
3293 let y = getpagey pageno in
3294 gotoy (y + py)
3295 with exc ->
3296 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3298 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
3300 | 'l' ->
3301 let fm =
3302 match conf.fitmodel with
3303 | FitProportional -> FitWidth
3304 | _ -> FitProportional
3306 reqlayout conf.angle fm;
3307 TEdone ("proportional display " ^ btos (fm == FitProportional))
3309 | 'T' ->
3310 settrim (not conf.trimmargins) conf.trimfuzz;
3311 TEdone ("trim margins " ^ btos conf.trimmargins)
3313 | 'I' ->
3314 conf.invert <- not conf.invert;
3315 TEdone ("invert colors " ^ btos conf.invert)
3317 | 'x' ->
3318 let ondone s =
3319 cbput state.hists.sel s;
3320 conf.selcmd <- s;
3322 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3323 textentry, ondone, true)
3325 | 'M' ->
3326 if conf.pax == None
3327 then conf.pax <- Some (ref (0.0, 0, 0))
3328 else conf.pax <- None;
3329 TEdone ("PAX " ^ btos (conf.pax != None))
3331 | _ ->
3332 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3333 TEstop
3334 else
3335 TEcont state.text
3338 class type lvsource = object
3339 method getitemcount : int
3340 method getitem : int -> (string * int)
3341 method hasaction : int -> bool
3342 method exit :
3343 uioh:uioh ->
3344 cancel:bool ->
3345 active:int ->
3346 first:int ->
3347 pan:int ->
3348 uioh option
3349 method getactive : int
3350 method getfirst : int
3351 method getpan : int
3352 method getminfo : (int * int) array
3353 end;;
3355 class virtual lvsourcebase = object
3356 val mutable m_active = 0
3357 val mutable m_first = 0
3358 val mutable m_pan = 0
3359 method getactive = m_active
3360 method getfirst = m_first
3361 method getpan = m_pan
3362 method getminfo : (int * int) array = [||]
3363 end;;
3365 let withoutlastutf8 s =
3366 let len = String.length s in
3367 if len = 0
3368 then s
3369 else
3370 let rec find pos =
3371 if pos = 0
3372 then pos
3373 else
3374 let b = Char.code s.[pos] in
3375 if b land 0b11000000 = 0b11000000
3376 then pos
3377 else find (pos-1)
3379 let first =
3380 if Char.code s.[len-1] land 0x80 = 0
3381 then len-1
3382 else find (len-1)
3384 String.sub s 0 first;
3387 let textentrykeyboard
3388 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3389 let key =
3390 if key >= 0xffb0 && key <= 0xffb9
3391 then key - 0xffb0 + 48 else key
3393 let enttext te =
3394 state.mode <- Textentry (te, onleave);
3395 state.text <- "";
3396 enttext ();
3397 G.postRedisplay "textentrykeyboard enttext";
3399 let histaction cmd =
3400 match opthist with
3401 | None -> ()
3402 | Some (action, _) ->
3403 state.mode <- Textentry (
3404 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3406 G.postRedisplay "textentry histaction"
3408 match key with
3409 | 0xff08 -> (* backspace *)
3410 if emptystr text && cancelonempty
3411 then (
3412 onleave Cancel;
3413 G.postRedisplay "textentrykeyboard after cancel";
3415 else
3416 let s = withoutlastutf8 text in
3417 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3419 | 0xff0d | 0xff8d -> (* (kp) enter *)
3420 ondone text;
3421 onleave Confirm;
3422 G.postRedisplay "textentrykeyboard after confirm"
3424 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3425 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3426 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3427 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3429 | 0xff1b -> (* escape*)
3430 if emptystr text
3431 then (
3432 begin match opthist with
3433 | None -> ()
3434 | Some (_, onhistcancel) -> onhistcancel ()
3435 end;
3436 onleave Cancel;
3437 state.text <- "";
3438 G.postRedisplay "textentrykeyboard after cancel2"
3440 else (
3441 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3444 | 0xff9f | 0xffff -> () (* delete *)
3446 | _ when key != 0
3447 && key land 0xff00 != 0xff00 (* keyboard *)
3448 && key land 0xfe00 != 0xfe00 (* xkb *)
3449 && key land 0xfd00 != 0xfd00 (* 3270 *)
3451 begin match onkey text key with
3452 | TEdone text ->
3453 ondone text;
3454 onleave Confirm;
3455 G.postRedisplay "textentrykeyboard after confirm2";
3457 | TEcont text ->
3458 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3460 | TEstop ->
3461 onleave Cancel;
3462 G.postRedisplay "textentrykeyboard after cancel3"
3464 | TEswitch te ->
3465 state.mode <- Textentry (te, onleave);
3466 G.postRedisplay "textentrykeyboard switch";
3467 end;
3469 | _ ->
3470 vlog "unhandled key %s" (Wsi.keyname key)
3473 let firstof first active =
3474 if first > active || abs (first - active) > fstate.maxrows - 1
3475 then max 0 (active - (fstate.maxrows/2))
3476 else first
3479 let calcfirst first active =
3480 if active > first
3481 then
3482 let rows = active - first in
3483 if rows > fstate.maxrows then active - fstate.maxrows else first
3484 else active
3487 let scrollph y maxy =
3488 let sh = float (maxy + state.winh) /. float state.winh in
3489 let sh = float state.winh /. sh in
3490 let sh = max sh (float conf.scrollh) in
3492 let percent = float y /. float maxy in
3493 let position = (float state.winh -. sh) *. percent in
3495 let position =
3496 if position +. sh > float state.winh
3497 then float state.winh -. sh
3498 else position
3500 position, sh;
3503 let coe s = (s :> uioh);;
3505 class listview ~(source:lvsource) ~trusted ~modehash =
3506 object (self)
3507 val m_pan = source#getpan
3508 val m_first = source#getfirst
3509 val m_active = source#getactive
3510 val m_qsearch = ""
3511 val m_prev_uioh = state.uioh
3513 method private elemunder y =
3514 let n = y / (fstate.fontsize+1) in
3515 if m_first + n < source#getitemcount
3516 then (
3517 if source#hasaction (m_first + n)
3518 then Some (m_first + n)
3519 else None
3521 else None
3523 method display =
3524 Gl.enable `blend;
3525 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3526 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3527 filledrect 0. 0. (float state.winw) (float state.winh);
3528 GlDraw.color (1., 1., 1.);
3529 Gl.enable `texture_2d;
3530 let fs = fstate.fontsize in
3531 let nfs = fs + 1 in
3532 let ww = fstate.wwidth in
3533 let tabw = 30.0*.ww in
3534 let itemcount = source#getitemcount in
3535 let minfo = source#getminfo in
3536 let rec loop row =
3537 if (row - m_first) > fstate.maxrows
3538 then ()
3539 else (
3540 if row >= 0 && row < itemcount
3541 then (
3542 let (s, level) = source#getitem row in
3543 let y = (row - m_first) * nfs in
3544 let x = 5.0 +. float (level + m_pan) *. ww in
3545 if row = m_active
3546 then (
3547 Gl.disable `texture_2d;
3548 let alpha = if source#hasaction row then 0.9 else 0.3 in
3549 GlDraw.color (1., 1., 1.) ~alpha;
3550 linerect 1. (float (y + 1))
3551 (float (state.winw - conf.scrollbw - 1)) (float (y + fs + 3));
3552 Gl.enable `texture_2d;
3553 GlDraw.color (1., 1., 1.);
3555 let drawtabularstring s =
3556 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3557 if trusted
3558 then
3559 let tabpos = try String.index s '\t' with Not_found -> -1 in
3560 if tabpos > 0
3561 then
3562 let len = String.length s - tabpos - 1 in
3563 let s1 = String.sub s 0 tabpos
3564 and s2 = String.sub s (tabpos + 1) len in
3565 let nx = drawstr x s1 in
3566 let sw = nx -. x in
3567 let x = x +. (max tabw sw) in
3568 drawstr x s2
3569 else
3570 drawstr x s
3571 else
3572 drawstr x s
3574 let _ = drawtabularstring s in
3575 loop (row+1)
3579 loop m_first;
3580 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
3581 let rec loop row =
3582 if (row - m_first) > fstate.maxrows
3583 then ()
3584 else (
3585 if row >= 0 && row < itemcount
3586 then (
3587 let (s, level) = source#getitem row in
3588 let y = (row - m_first) * nfs in
3589 let x = 5.0 +. float (level + m_pan) *. ww in
3590 let (first, last) = minfo.(row) in
3591 let prefix = String.sub s 0 first in
3592 let suffix = String.sub s first (last - first) in
3593 let w1 = measurestr fstate.fontsize prefix in
3594 let w2 = measurestr fstate.fontsize suffix in
3595 let x0 = x +. w1
3596 and y0 = (float (y+2)) in
3597 let x1 = x0 +. w2
3598 and y1 = (float (y+fs+3)) in
3599 filledrect x0 y0 x1 y1;
3600 loop (row+1)
3604 Gl.disable `texture_2d;
3605 if Array.length minfo > 0 then loop m_first;
3606 Gl.disable `blend;
3608 method updownlevel incr =
3609 let len = source#getitemcount in
3610 let curlevel =
3611 if m_active >= 0 && m_active < len
3612 then snd (source#getitem m_active)
3613 else -1
3615 let rec flow i =
3616 if i = len then i-1 else if i = -1 then 0 else
3617 let _, l = source#getitem i in
3618 if l != curlevel then i else flow (i+incr)
3620 let active = flow m_active in
3621 let first = calcfirst m_first active in
3622 G.postRedisplay "outline updownlevel";
3623 {< m_active = active; m_first = first >}
3625 method private key1 key mask =
3626 let set1 active first qsearch =
3627 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3629 let search active pattern incr =
3630 let active = if active = -1 then m_first else active in
3631 let dosearch re =
3632 let rec loop n =
3633 if n >= 0 && n < source#getitemcount
3634 then (
3635 let s, _ = source#getitem n in
3637 (try ignore (Str.search_forward re s 0); true
3638 with Not_found -> false)
3639 then Some n
3640 else loop (n + incr)
3642 else None
3644 loop active
3647 let re = Str.regexp_case_fold pattern in
3648 dosearch re
3649 with Failure s ->
3650 state.text <- s;
3651 None
3653 let itemcount = source#getitemcount in
3654 let find start incr =
3655 let rec find i =
3656 if i = -1 || i = itemcount
3657 then -1
3658 else (
3659 if source#hasaction i
3660 then i
3661 else find (i + incr)
3664 find start
3666 let set active first =
3667 let first = bound first 0 (itemcount - fstate.maxrows) in
3668 state.text <- "";
3669 coe {< m_active = active; m_first = first; m_qsearch = "" >}
3671 let navigate incr =
3672 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3673 let active, first =
3674 let incr1 = if incr > 0 then 1 else -1 in
3675 if isvisible m_first m_active
3676 then
3677 let next =
3678 let next = m_active + incr in
3679 let next =
3680 if next < 0 || next >= itemcount
3681 then -1
3682 else find next incr1
3684 if abs (m_active - next) > fstate.maxrows
3685 then -1
3686 else next
3688 if next = -1
3689 then
3690 let first = m_first + incr in
3691 let first = bound first 0 (itemcount - fstate.maxrows) in
3692 let next =
3693 let next = m_active + incr in
3694 let next = bound next 0 (itemcount - 1) in
3695 find next ~-incr1
3697 let active =
3698 if next = -1
3699 then m_active
3700 else (
3701 if isvisible first next
3702 then next
3703 else m_active
3706 active, first
3707 else
3708 let first = min next m_first in
3709 let first =
3710 if abs (next - first) > fstate.maxrows
3711 then first + incr
3712 else first
3714 next, first
3715 else
3716 let first = m_first + incr in
3717 let first = bound first 0 (itemcount - 1) in
3718 let active =
3719 let next = m_active + incr in
3720 let next = bound next 0 (itemcount - 1) in
3721 let next = find next incr1 in
3722 let active =
3723 if next = -1 || abs (m_active - first) > fstate.maxrows
3724 then (
3725 let active = if m_active = -1 then next else m_active in
3726 active
3728 else next
3730 if isvisible first active
3731 then active
3732 else -1
3734 active, first
3736 G.postRedisplay "listview navigate";
3737 set active first;
3739 match key with
3740 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3741 let incr = if key = 0x72 then -1 else 1 in
3742 let active, first =
3743 match search (m_active + incr) m_qsearch incr with
3744 | None ->
3745 state.text <- m_qsearch ^ " [not found]";
3746 m_active, m_first
3747 | Some active ->
3748 state.text <- m_qsearch;
3749 active, firstof m_first active
3751 G.postRedisplay "listview ctrl-r/s";
3752 set1 active first m_qsearch;
3754 | 0xff63 when Wsi.withctrl mask -> (* ctrl-insert *)
3755 if m_active >= 0 && m_active < source#getitemcount
3756 then (
3757 let s, _ = source#getitem m_active in
3758 selstring s;
3760 coe self
3762 | 0xff08 -> (* backspace *)
3763 if emptystr m_qsearch
3764 then coe self
3765 else (
3766 let qsearch = withoutlastutf8 m_qsearch in
3767 if emptystr qsearch
3768 then (
3769 state.text <- "";
3770 G.postRedisplay "listview empty qsearch";
3771 set1 m_active m_first "";
3773 else
3774 let active, first =
3775 match search m_active qsearch ~-1 with
3776 | None ->
3777 state.text <- qsearch ^ " [not found]";
3778 m_active, m_first
3779 | Some active ->
3780 state.text <- qsearch;
3781 active, firstof m_first active
3783 G.postRedisplay "listview backspace qsearch";
3784 set1 active first qsearch
3787 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3788 let pattern = m_qsearch ^ toutf8 key in
3789 let active, first =
3790 match search m_active pattern 1 with
3791 | None ->
3792 state.text <- pattern ^ " [not found]";
3793 m_active, m_first
3794 | Some active ->
3795 state.text <- pattern;
3796 active, firstof m_first active
3798 G.postRedisplay "listview qsearch add";
3799 set1 active first pattern;
3801 | 0xff1b -> (* escape *)
3802 state.text <- "";
3803 if emptystr m_qsearch
3804 then (
3805 G.postRedisplay "list view escape";
3806 begin
3807 match
3808 source#exit (coe self) true m_active m_first m_pan
3809 with
3810 | None -> m_prev_uioh
3811 | Some uioh -> uioh
3814 else (
3815 G.postRedisplay "list view kill qsearch";
3816 coe {< m_qsearch = "" >}
3819 | 0xff0d | 0xff8d -> (* (kp) enter *)
3820 state.text <- "";
3821 let self = {< m_qsearch = "" >} in
3822 let opt =
3823 G.postRedisplay "listview enter";
3824 if m_active >= 0 && m_active < source#getitemcount
3825 then (
3826 source#exit (coe self) false m_active m_first m_pan;
3828 else (
3829 source#exit (coe self) true m_active m_first m_pan;
3832 begin match opt with
3833 | None -> m_prev_uioh
3834 | Some uioh -> uioh
3837 | 0xff9f | 0xffff -> (* (kp) delete *)
3838 coe self
3840 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3841 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3842 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3843 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3845 | 0xff53 | 0xff98 -> (* (kp) right *)
3846 state.text <- "";
3847 G.postRedisplay "listview right";
3848 coe {< m_pan = m_pan - 1 >}
3850 | 0xff51 | 0xff96 -> (* (kp) left *)
3851 state.text <- "";
3852 G.postRedisplay "listview left";
3853 coe {< m_pan = m_pan + 1 >}
3855 | 0xff50 | 0xff95 -> (* (kp) home *)
3856 let active = find 0 1 in
3857 G.postRedisplay "listview home";
3858 set active 0;
3860 | 0xff57 | 0xff9c -> (* (kp) end *)
3861 let first = max 0 (itemcount - fstate.maxrows) in
3862 let active = find (itemcount - 1) ~-1 in
3863 G.postRedisplay "listview end";
3864 set active first;
3866 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3867 coe self
3869 | _ ->
3870 dolog "listview unknown key %#x" key; coe self
3872 method key key mask =
3873 match state.mode with
3874 | Textentry te -> textentrykeyboard key mask te; coe self
3875 | _ -> self#key1 key mask
3877 method button button down x y _ =
3878 let opt =
3879 match button with
3880 | 1 when x > state.winw - conf.scrollbw ->
3881 G.postRedisplay "listview scroll";
3882 if down
3883 then
3884 let _, position, sh = self#scrollph in
3885 if y > truncate position && y < truncate (position +. sh)
3886 then (
3887 state.mstate <- Mscrolly;
3888 Some (coe self)
3890 else
3891 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3892 let first = truncate (s *. float source#getitemcount) in
3893 let first = min source#getitemcount first in
3894 Some (coe {< m_first = first; m_active = first >})
3895 else (
3896 state.mstate <- Mnone;
3897 Some (coe self);
3899 | 1 when not down ->
3900 begin match self#elemunder y with
3901 | Some n ->
3902 G.postRedisplay "listview click";
3903 source#exit (coe {< m_active = n >}) false n m_first m_pan
3904 | _ ->
3905 Some (coe self)
3907 | n when (n == 4 || n == 5) && not down ->
3908 let len = source#getitemcount in
3909 let first =
3910 if n = 5 && m_first + fstate.maxrows >= len
3911 then
3912 m_first
3913 else
3914 let first = m_first + (if n == 4 then -1 else 1) in
3915 bound first 0 (len - 1)
3917 G.postRedisplay "listview wheel";
3918 Some (coe {< m_first = first >})
3919 | n when (n = 6 || n = 7) && not down ->
3920 let inc = if n = 7 then -1 else 1 in
3921 G.postRedisplay "listview hwheel";
3922 Some (coe {< m_pan = m_pan + inc >})
3923 | _ ->
3924 Some (coe self)
3926 match opt with
3927 | None -> m_prev_uioh
3928 | Some uioh -> uioh
3930 method multiclick _ x y = self#button 1 true x y
3932 method motion _ y =
3933 match state.mstate with
3934 | Mscrolly ->
3935 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3936 let first = truncate (s *. float source#getitemcount) in
3937 let first = min source#getitemcount first in
3938 G.postRedisplay "listview motion";
3939 coe {< m_first = first; m_active = first >}
3940 | _ -> coe self
3942 method pmotion x y =
3943 if x < state.winw - conf.scrollbw
3944 then
3945 let n =
3946 match self#elemunder y with
3947 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3948 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3950 let o =
3951 if n != m_active
3952 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3953 else self
3955 coe o
3956 else (
3957 Wsi.setcursor Wsi.CURSOR_INHERIT;
3958 coe self
3961 method infochanged _ = ()
3963 method scrollpw = (0, 0.0, 0.0)
3964 method scrollph =
3965 let nfs = fstate.fontsize + 1 in
3966 let y = m_first * nfs in
3967 let itemcount = source#getitemcount in
3968 let maxi = max 0 (itemcount - fstate.maxrows) in
3969 let maxy = maxi * nfs in
3970 let p, h = scrollph y maxy in
3971 conf.scrollbw, p, h
3973 method modehash = modehash
3974 method eformsgs = false
3975 end;;
3977 class outlinelistview ~source =
3978 let settext autonarrow s =
3979 if autonarrow
3980 then
3981 let ss = source#statestr in
3982 state.text <-
3983 if emptystr ss
3984 then "[" ^ s ^ "]"
3985 else "{" ^ ss ^ "} [" ^ s ^ "]"
3986 else state.text <- s
3988 object (self)
3989 inherit listview
3990 ~source:(source :> lvsource)
3991 ~trusted:false
3992 ~modehash:(findkeyhash conf "outline")
3993 as super
3995 val m_autonarrow = false
3997 method display = super#display
3999 method key key mask =
4000 let maxrows =
4001 if emptystr state.text
4002 then fstate.maxrows
4003 else fstate.maxrows - 2
4005 let calcfirst first active =
4006 if active > first
4007 then
4008 let rows = active - first in
4009 if rows > maxrows then active - maxrows else first
4010 else active
4012 let navigate incr =
4013 let active = m_active + incr in
4014 let active = bound active 0 (source#getitemcount - 1) in
4015 let first = calcfirst m_first active in
4016 G.postRedisplay "outline navigate";
4017 coe {< m_active = active; m_first = first >}
4019 let navscroll first =
4020 let active =
4021 let dist = m_active - first in
4022 if dist < 0
4023 then first
4024 else (
4025 if dist < maxrows
4026 then m_active
4027 else first + maxrows
4030 G.postRedisplay "outline navscroll";
4031 coe {< m_first = first; m_active = active >}
4033 let ctrl = Wsi.withctrl mask in
4034 match key with
4035 | 97 when ctrl -> (* ctrl-a *)
4036 let text =
4037 if m_autonarrow
4038 then (source#denarrow; "")
4039 else (
4040 let pattern = source#renarrow in
4041 if nonemptystr m_qsearch
4042 then (source#narrow m_qsearch; m_qsearch)
4043 else pattern
4046 settext (not m_autonarrow) text;
4047 G.postRedisplay "toggle auto narrowing";
4048 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
4050 | 47 when emptystr m_qsearch && not m_autonarrow -> (* / *)
4051 settext true "";
4052 G.postRedisplay "toggle auto narrowing";
4053 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
4055 | 110 when ctrl -> (* ctrl-n *)
4056 source#narrow m_qsearch;
4057 if not m_autonarrow
4058 then source#add_narrow_pattern m_qsearch;
4059 G.postRedisplay "outline ctrl-n";
4060 coe {< m_first = 0; m_active = 0 >}
4062 | 83 when ctrl -> (* ctrl-S *)
4063 let active = source#calcactive (getanchor ()) in
4064 let first = firstof m_first active in
4065 G.postRedisplay "outline ctrl-s";
4066 coe {< m_first = first; m_active = active >}
4068 | 117 when ctrl -> (* ctrl-u *)
4069 G.postRedisplay "outline ctrl-u";
4070 if m_autonarrow && nonemptystr m_qsearch
4071 then (
4072 ignore (source#renarrow);
4073 settext m_autonarrow "";
4074 coe {< m_first = 0; m_active = 0; m_qsearch = "" >}
4076 else (
4077 source#del_narrow_pattern;
4078 let pattern = source#renarrow in
4079 let text =
4080 if emptystr pattern then "" else "Narrowed to " ^ pattern
4082 settext m_autonarrow text;
4083 coe {< m_first = 0; m_active = 0; m_qsearch = "" >}
4086 | 108 when ctrl -> (* ctrl-l *)
4087 let first = max 0 (m_active - (fstate.maxrows / 2)) in
4088 G.postRedisplay "outline ctrl-l";
4089 coe {< m_first = first >}
4091 | 0xff09 when m_autonarrow -> (* tab *)
4092 if nonemptystr m_qsearch
4093 then (
4094 G.postRedisplay "outline list view tab";
4095 source#add_narrow_pattern m_qsearch;
4096 settext true "";
4097 coe {< m_qsearch = "" >}
4099 else coe self
4101 | 0xff1b when m_autonarrow -> (* escape *)
4102 if nonemptystr m_qsearch
4103 then source#add_narrow_pattern m_qsearch;
4104 super#key key mask
4106 | 0xff0d | 0xff8d when m_autonarrow -> (* (kp) enter *)
4107 if nonemptystr m_qsearch
4108 then source#add_narrow_pattern m_qsearch;
4109 super#key key mask
4111 | key when m_autonarrow && (key != 0 && key land 0xff00 != 0xff00) ->
4112 let pattern = m_qsearch ^ toutf8 key in
4113 G.postRedisplay "outlinelistview autonarrow add";
4114 source#narrow pattern;
4115 settext true pattern;
4116 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
4118 | key when m_autonarrow && key = 0xff08 -> (* backspace *)
4119 if emptystr m_qsearch
4120 then coe self
4121 else
4122 let pattern = withoutlastutf8 m_qsearch in
4123 G.postRedisplay "outlinelistview autonarrow backspace";
4124 ignore (source#renarrow);
4125 source#narrow pattern;
4126 settext true pattern;
4127 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
4129 | 0xff9f | 0xffff -> (* (kp) delete *)
4130 source#remove m_active;
4131 G.postRedisplay "outline delete";
4132 let active = max 0 (m_active-1) in
4133 coe {< m_first = firstof m_first active;
4134 m_active = active >}
4136 | 0xff52 | 0xff97 when ctrl -> (* ctrl-(kp) up *)
4137 navscroll (max 0 (m_first - 1))
4139 | 0xff54 | 0xff99 when ctrl -> (* ctrl-(kp) down *)
4140 navscroll (min (source#getitemcount - 1) (m_first + 1))
4142 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
4143 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
4144 | 0xff55 | 0xff9a -> (* (kp) prior *)
4145 navigate ~-(fstate.maxrows)
4146 | 0xff56 | 0xff9b -> (* (kp) next *)
4147 navigate fstate.maxrows
4149 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
4150 let o =
4151 if ctrl
4152 then (
4153 G.postRedisplay "outline ctrl right";
4154 {< m_pan = m_pan + 1 >}
4156 else self#updownlevel 1
4158 coe o
4160 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
4161 let o =
4162 if ctrl
4163 then (
4164 G.postRedisplay "outline ctrl left";
4165 {< m_pan = m_pan - 1 >}
4167 else self#updownlevel ~-1
4169 coe o
4171 | 0xff50 | 0xff95 -> (* (kp) home *)
4172 G.postRedisplay "outline home";
4173 coe {< m_first = 0; m_active = 0 >}
4175 | 0xff57 | 0xff9c -> (* (kp) end *)
4176 let active = source#getitemcount - 1 in
4177 let first = max 0 (active - fstate.maxrows) in
4178 G.postRedisplay "outline end";
4179 coe {< m_active = active; m_first = first >}
4181 | _ -> super#key key mask
4184 let gotounder under =
4185 let getpath filename =
4186 let path =
4187 if nonemptystr filename
4188 then
4189 if Filename.is_relative filename
4190 then
4191 let dir = Filename.dirname state.path in
4192 let dir =
4193 if Filename.is_implicit dir
4194 then Filename.concat (Sys.getcwd ()) dir
4195 else dir
4197 Filename.concat dir filename
4198 else filename
4199 else ""
4201 if Sys.file_exists path
4202 then path
4203 else ""
4205 match under with
4206 | Ulinkgoto (pageno, top) ->
4207 if pageno >= 0
4208 then (
4209 addnav ();
4210 gotopage1 pageno top;
4213 | Ulinkuri s ->
4214 gotouri s
4216 | Uremote (filename, pageno) ->
4217 let path = getpath filename in
4218 if nonemptystr path
4219 then (
4220 if conf.riani
4221 then
4222 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
4223 try popen command []
4224 with exn ->
4225 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
4226 flush stderr;
4227 else
4228 let anchor = getanchor () in
4229 let ranchor = state.path, state.password, anchor, state.origin in
4230 state.origin <- "";
4231 state.anchor <- (pageno, 0.0, 0.0);
4232 state.ranchors <- ranchor :: state.ranchors;
4233 opendoc path "";
4235 else showtext '!' ("Could not find " ^ filename)
4237 | Uremotedest (filename, destname) ->
4238 let path = getpath filename in
4239 if nonemptystr path
4240 then (
4241 if conf.riani
4242 then
4243 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
4244 try popen command []
4245 with exn ->
4246 Printf.eprintf
4247 "failed to execute `%s': %s\n" command (exntos exn);
4248 flush stderr;
4249 else
4250 let anchor = getanchor () in
4251 let ranchor = state.path, state.password, anchor, state.origin in
4252 state.origin <- "";
4253 state.nameddest <- destname;
4254 state.ranchors <- ranchor :: state.ranchors;
4255 opendoc path "";
4257 else showtext '!' ("Could not find " ^ filename)
4259 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4262 let gotooutline (_, _, kind) =
4263 match kind with
4264 | Onone -> ()
4265 | Oanchor anchor ->
4266 let (pageno, y, _) = anchor in
4267 let y = getanchory
4268 (if conf.presentation then (pageno, y, 1.0) else anchor)
4270 addnav ();
4271 gotoghyll y
4272 | Ouri uri -> gotounder (Ulinkuri uri)
4273 | Olaunch cmd -> gotounder (Ulaunch cmd)
4274 | Oremote remote -> gotounder (Uremote remote)
4275 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
4278 let outlinesource usebookmarks =
4279 let empty = [||] in
4280 (object (self)
4281 inherit lvsourcebase
4282 val mutable m_items = empty
4283 val mutable m_minfo = empty
4284 val mutable m_orig_items = empty
4285 val mutable m_orig_minfo = empty
4286 val mutable m_narrow_patterns = []
4287 val mutable m_hadremovals = false
4289 method getitemcount =
4290 Array.length m_items + (if m_hadremovals then 1 else 0)
4292 method getitem n =
4293 if n == Array.length m_items && m_hadremovals
4294 then
4295 ("[Confirm removal]", 0)
4296 else
4297 let s, n, _ = m_items.(n) in
4298 (s, n)
4300 method exit ~uioh ~cancel ~active ~first ~pan =
4301 ignore (uioh, first);
4302 let confrimremoval = m_hadremovals && active = Array.length m_items in
4303 let items, minfo =
4304 if m_narrow_patterns = []
4305 then m_orig_items, m_orig_minfo
4306 else m_items, m_minfo
4308 if not cancel
4309 then (
4310 if not confrimremoval
4311 then (
4312 gotooutline m_items.(active);
4313 m_items <- items;
4314 m_minfo <- minfo;
4316 else (
4317 state.bookmarks <- Array.to_list m_items;
4318 m_orig_items <- m_items;
4319 m_orig_minfo <- m_minfo;
4322 else (
4323 m_items <- items;
4324 m_minfo <- minfo;
4326 m_pan <- pan;
4327 None
4329 method hasaction _ = true
4331 method greetmsg =
4332 if Array.length m_items != Array.length m_orig_items
4333 then
4334 let s =
4335 match m_narrow_patterns with
4336 | one :: [] -> one
4337 | many -> String.concat "\xe2\x80\xa6" (List.rev many)
4339 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
4340 else ""
4342 method statestr =
4343 match m_narrow_patterns with
4344 | [] -> ""
4345 | one :: [] -> one
4346 | head :: _ -> "\xe2\x80\xa6" ^ head
4348 method narrow pattern =
4349 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
4350 match reopt with
4351 | None -> ()
4352 | Some re ->
4353 let rec loop accu minfo n =
4354 if n = -1
4355 then (
4356 m_items <- Array.of_list accu;
4357 m_minfo <- Array.of_list minfo;
4359 else
4360 let (s, _, _) as o = m_items.(n) in
4361 let accu, minfo =
4362 let first =
4363 try Str.search_forward re s 0
4364 with Not_found -> -1
4366 if first >= 0
4367 then o :: accu, (first, Str.match_end ()) :: minfo
4368 else accu, minfo
4370 loop accu minfo (n-1)
4372 loop [] [] (Array.length m_items - 1)
4374 method getminfo = m_minfo
4376 method denarrow =
4377 m_orig_items <- (
4378 if usebookmarks
4379 then Array.of_list state.bookmarks
4380 else state.outlines
4382 m_minfo <- m_orig_minfo;
4383 m_items <- m_orig_items
4385 method remove m =
4386 if usebookmarks
4387 then
4388 if m >= 0 && m < Array.length m_items
4389 then (
4390 m_hadremovals <- true;
4391 m_items <- Array.init (Array.length m_items - 1) (fun n ->
4392 let n = if n >= m then n+1 else n in
4393 m_items.(n)
4397 method add_narrow_pattern pattern =
4398 m_narrow_patterns <- pattern :: m_narrow_patterns
4400 method del_narrow_pattern =
4401 match m_narrow_patterns with
4402 | _ :: rest -> m_narrow_patterns <- rest
4403 | [] -> ()
4405 method renarrow =
4406 self#denarrow;
4407 match m_narrow_patterns with
4408 | pattern :: [] -> self#narrow pattern; pattern
4409 | list ->
4410 List.fold_left (fun accu pattern ->
4411 self#narrow pattern;
4412 pattern ^ "\xe2\x80\xa6" ^ accu) "" list
4414 method calcactive anchor =
4415 let rely = getanchory anchor in
4416 let rec loop n best bestd =
4417 if n = Array.length m_items
4418 then best
4419 else
4420 let _, _, kind = m_items.(n) in
4421 match kind with
4422 | Oanchor anchor ->
4423 let orely = getanchory anchor in
4424 let d = abs (orely - rely) in
4425 if d < bestd
4426 then loop (n+1) n d
4427 else loop (n+1) best bestd
4428 | Onone | Oremote _ | Olaunch _ | Oremotedest _ | Ouri _ ->
4429 loop (n+1) best bestd
4431 loop 0 ~-1 max_int
4433 method reset anchor items =
4434 m_hadremovals <- false;
4435 if m_orig_items == empty
4436 then (
4437 m_orig_items <- items;
4438 if m_narrow_patterns == []
4439 then m_items <- items;
4441 let active = self#calcactive anchor in
4442 m_active <- active;
4443 m_first <- firstof m_first active
4444 end)
4447 let enterselector usebookmarks =
4448 let source = outlinesource usebookmarks in
4449 fun errmsg ->
4450 let outlines =
4451 if usebookmarks
4452 then Array.of_list state.bookmarks
4453 else state.outlines
4455 if Array.length outlines = 0
4456 then (
4457 showtext ' ' errmsg;
4459 else (
4460 state.text <- source#greetmsg;
4461 Wsi.setcursor Wsi.CURSOR_INHERIT;
4462 let anchor = getanchor () in
4463 source#reset anchor outlines;
4464 state.uioh <- coe (new outlinelistview ~source);
4465 G.postRedisplay "enter selector";
4469 let enteroutlinemode =
4470 let f = enterselector false in
4471 fun ()-> f "Document has no outline";
4474 let enterbookmarkmode =
4475 let f = enterselector true in
4476 fun () -> f "Document has no bookmarks (yet)";
4479 let color_of_string s =
4480 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
4481 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
4485 let color_to_string (r, g, b) =
4486 let r = truncate (r *. 256.0)
4487 and g = truncate (g *. 256.0)
4488 and b = truncate (b *. 256.0) in
4489 Printf.sprintf "%d/%d/%d" r g b
4492 let irect_of_string s =
4493 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
4496 let irect_to_string (x0,y0,x1,y1) =
4497 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
4500 let makecheckers () =
4501 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
4502 following to say:
4503 converted by Issac Trotts. July 25, 2002 *)
4504 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
4505 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
4506 let id = GlTex.gen_texture () in
4507 GlTex.bind_texture `texture_2d id;
4508 GlPix.store (`unpack_alignment 1);
4509 GlTex.image2d image;
4510 List.iter (GlTex.parameter ~target:`texture_2d)
4511 [ `mag_filter `nearest; `min_filter `nearest ];
4515 let setcheckers enabled =
4516 match state.texid with
4517 | None ->
4518 if enabled then state.texid <- Some (makecheckers ())
4520 | Some texid ->
4521 if not enabled
4522 then (
4523 GlTex.delete_texture texid;
4524 state.texid <- None;
4528 let int_of_string_with_suffix s =
4529 let l = String.length s in
4530 let s1, shift =
4531 if l > 1
4532 then
4533 let suffix = Char.lowercase s.[l-1] in
4534 match suffix with
4535 | 'k' -> String.sub s 0 (l-1), 10
4536 | 'm' -> String.sub s 0 (l-1), 20
4537 | 'g' -> String.sub s 0 (l-1), 30
4538 | _ -> s, 0
4539 else s, 0
4541 let n = int_of_string s1 in
4542 let m = n lsl shift in
4543 if m < 0 || m < n
4544 then raise (Failure "value too large")
4545 else m
4548 let string_with_suffix_of_int n =
4549 if n = 0
4550 then "0"
4551 else
4552 let units = [(30, "G"); (20, "M"); (10, "K")] in
4553 let prettyint n =
4554 let rec loop s n =
4555 let h = n mod 1000 in
4556 let n = n / 1000 in
4557 if n = 0
4558 then string_of_int h ^ s
4559 else (
4560 let s = Printf.sprintf "_%03d%s" h s in
4561 loop s n
4564 loop "" n
4566 let rec find = function
4567 | [] -> prettyint n
4568 | (shift, suffix) :: rest ->
4569 if (n land ((1 lsl shift) - 1)) = 0
4570 then prettyint (n lsr shift) ^ suffix
4571 else find rest
4573 find units
4576 let defghyllscroll = (40, 8, 32);;
4577 let fastghyllscroll = (5,1,2);;
4578 let neatghyllscroll = (10,1,9);;
4579 let ghyllscroll_of_string s =
4580 match s with
4581 | "default" -> Some defghyllscroll
4582 | "fast" -> Some (5,1,2)
4583 | "neat" -> Some (10,1,9)
4584 | "" | "none" -> None
4585 | _ ->
4586 let (n,a,b) as nab =
4587 Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b) in
4588 if n <= a || n <= b || a >= b
4589 then error "invalid ghyll N(%d),A(%d),B(%d) (N <= A, A < B, N <= B)"
4590 n a b;
4591 Some nab
4594 let ghyllscroll_to_string ((n, a, b) as nab) =
4595 (**) if nab = defghyllscroll then "default"
4596 else if nab = fastghyllscroll then "fast"
4597 else if nab = neatghyllscroll then "neat"
4598 else Printf.sprintf "%d,%d,%d" n a b;
4601 let describe_location () =
4602 let fn = page_of_y state.y in
4603 let ln = page_of_y (state.y + state.winh - hscrollh () - 1) in
4604 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4605 let percent =
4606 if maxy <= 0
4607 then 100.
4608 else (100. *. (float state.y /. float maxy))
4610 if fn = ln
4611 then
4612 Printf.sprintf "page %d of %d [%.2f%%]"
4613 (fn+1) state.pagecount percent
4614 else
4615 Printf.sprintf
4616 "pages %d-%d of %d [%.2f%%]"
4617 (fn+1) (ln+1) state.pagecount percent
4620 let setpresentationmode v =
4621 let n = page_of_y state.y in
4622 state.anchor <- (n, 0.0, 1.0);
4623 conf.presentation <- v;
4624 if conf.fitmodel = FitPage
4625 then reqlayout conf.angle conf.fitmodel;
4626 represent ();
4629 let enterinfomode =
4630 let btos b = if b then "\xe2\x88\x9a" else "" in
4631 let showextended = ref false in
4632 let leave mode = function
4633 | Confirm -> state.mode <- mode
4634 | Cancel -> state.mode <- mode in
4635 let src =
4636 (object
4637 val mutable m_first_time = true
4638 val mutable m_l = []
4639 val mutable m_a = [||]
4640 val mutable m_prev_uioh = nouioh
4641 val mutable m_prev_mode = View
4643 inherit lvsourcebase
4645 method reset prev_mode prev_uioh =
4646 m_a <- Array.of_list (List.rev m_l);
4647 m_l <- [];
4648 m_prev_mode <- prev_mode;
4649 m_prev_uioh <- prev_uioh;
4650 if m_first_time
4651 then (
4652 let rec loop n =
4653 if n >= Array.length m_a
4654 then ()
4655 else
4656 match m_a.(n) with
4657 | _, _, _, Action _ -> m_active <- n
4658 | _ -> loop (n+1)
4660 loop 0;
4661 m_first_time <- false;
4664 method int name get set =
4665 m_l <-
4666 (name, `int get, 1, Action (
4667 fun u ->
4668 let ondone s =
4669 try set (int_of_string s)
4670 with exn ->
4671 state.text <- Printf.sprintf "bad integer `%s': %s"
4672 s (exntos exn)
4674 state.text <- "";
4675 let te = name ^ ": ", "", None, intentry, ondone, true in
4676 state.mode <- Textentry (te, leave m_prev_mode);
4678 )) :: m_l
4680 method int_with_suffix name get set =
4681 m_l <-
4682 (name, `intws get, 1, Action (
4683 fun u ->
4684 let ondone s =
4685 try set (int_of_string_with_suffix s)
4686 with exn ->
4687 state.text <- Printf.sprintf "bad integer `%s': %s"
4688 s (exntos exn)
4690 state.text <- "";
4691 let te =
4692 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4694 state.mode <- Textentry (te, leave m_prev_mode);
4696 )) :: m_l
4698 method bool ?(offset=1) ?(btos=btos) name get set =
4699 m_l <-
4700 (name, `bool (btos, get), offset, Action (
4701 fun u ->
4702 let v = get () in
4703 set (not v);
4705 )) :: m_l
4707 method color name get set =
4708 m_l <-
4709 (name, `color get, 1, Action (
4710 fun u ->
4711 let invalid = (nan, nan, nan) in
4712 let ondone s =
4713 let c =
4714 try color_of_string s
4715 with exn ->
4716 state.text <- Printf.sprintf "bad color `%s': %s"
4717 s (exntos exn);
4718 invalid
4720 if c <> invalid
4721 then set c;
4723 let te = name ^ ": ", "", None, textentry, ondone, true in
4724 state.text <- color_to_string (get ());
4725 state.mode <- Textentry (te, leave m_prev_mode);
4727 )) :: m_l
4729 method string name get set =
4730 m_l <-
4731 (name, `string get, 1, Action (
4732 fun u ->
4733 let ondone s = set s in
4734 let te = name ^ ": ", "", None, textentry, ondone, true in
4735 state.mode <- Textentry (te, leave m_prev_mode);
4737 )) :: m_l
4739 method colorspace name get set =
4740 m_l <-
4741 (name, `string get, 1, Action (
4742 fun _ ->
4743 let source =
4744 (object
4745 inherit lvsourcebase
4747 initializer
4748 m_active <- CSTE.to_int conf.colorspace;
4749 m_first <- 0;
4751 method getitemcount =
4752 Array.length CSTE.names
4753 method getitem n =
4754 (CSTE.names.(n), 0)
4755 method exit ~uioh ~cancel ~active ~first ~pan =
4756 ignore (uioh, first, pan);
4757 if not cancel then set active;
4758 None
4759 method hasaction _ = true
4760 end)
4762 state.text <- "";
4763 let modehash = findkeyhash conf "info" in
4764 coe (new listview ~source ~trusted:true ~modehash)
4765 )) :: m_l
4767 method paxmark name get set =
4768 m_l <-
4769 (name, `string get, 1, Action (
4770 fun _ ->
4771 let source =
4772 (object
4773 inherit lvsourcebase
4775 initializer
4776 m_active <- MTE.to_int conf.paxmark;
4777 m_first <- 0;
4779 method getitemcount = Array.length MTE.names
4780 method getitem n = (MTE.names.(n), 0)
4781 method exit ~uioh ~cancel ~active ~first ~pan =
4782 ignore (uioh, first, pan);
4783 if not cancel then set active;
4784 None
4785 method hasaction _ = true
4786 end)
4788 state.text <- "";
4789 let modehash = findkeyhash conf "info" in
4790 coe (new listview ~source ~trusted:true ~modehash)
4791 )) :: m_l
4793 method fitmodel name get set =
4794 m_l <-
4795 (name, `string get, 1, Action (
4796 fun _ ->
4797 let source =
4798 (object
4799 inherit lvsourcebase
4801 initializer
4802 m_active <- FMTE.to_int conf.fitmodel;
4803 m_first <- 0;
4805 method getitemcount = Array.length FMTE.names
4806 method getitem n = (FMTE.names.(n), 0)
4807 method exit ~uioh ~cancel ~active ~first ~pan =
4808 ignore (uioh, first, pan);
4809 if not cancel then set active;
4810 None
4811 method hasaction _ = true
4812 end)
4814 state.text <- "";
4815 let modehash = findkeyhash conf "info" in
4816 coe (new listview ~source ~trusted:true ~modehash)
4817 )) :: m_l
4819 method caption s offset =
4820 m_l <- (s, `empty, offset, Noaction) :: m_l
4822 method caption2 s f offset =
4823 m_l <- (s, `string f, offset, Noaction) :: m_l
4825 method getitemcount = Array.length m_a
4827 method getitem n =
4828 let tostr = function
4829 | `int f -> string_of_int (f ())
4830 | `intws f -> string_with_suffix_of_int (f ())
4831 | `string f -> f ()
4832 | `color f -> color_to_string (f ())
4833 | `bool (btos, f) -> btos (f ())
4834 | `empty -> ""
4836 let name, t, offset, _ = m_a.(n) in
4837 ((let s = tostr t in
4838 if nonemptystr s
4839 then Printf.sprintf "%s\t%s" name s
4840 else name),
4841 offset)
4843 method exit ~uioh ~cancel ~active ~first ~pan =
4844 let uiohopt =
4845 if not cancel
4846 then (
4847 let uioh =
4848 match m_a.(active) with
4849 | _, _, _, Action f -> f uioh
4850 | _ -> uioh
4852 Some uioh
4854 else None
4856 m_active <- active;
4857 m_first <- first;
4858 m_pan <- pan;
4859 uiohopt
4861 method hasaction n =
4862 match m_a.(n) with
4863 | _, _, _, Action _ -> true
4864 | _ -> false
4865 end)
4867 let rec fillsrc prevmode prevuioh =
4868 let sep () = src#caption "" 0 in
4869 let colorp name get set =
4870 src#string name
4871 (fun () -> color_to_string (get ()))
4872 (fun v ->
4874 let c = color_of_string v in
4875 set c
4876 with exn ->
4877 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4880 let oldmode = state.mode in
4881 let birdseye = isbirdseye state.mode in
4883 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4885 src#bool "presentation mode"
4886 (fun () -> conf.presentation)
4887 (fun v -> setpresentationmode v);
4889 src#bool "ignore case in searches"
4890 (fun () -> conf.icase)
4891 (fun v -> conf.icase <- v);
4893 src#bool "preload"
4894 (fun () -> conf.preload)
4895 (fun v -> conf.preload <- v);
4897 src#bool "highlight links"
4898 (fun () -> conf.hlinks)
4899 (fun v -> conf.hlinks <- v);
4901 src#bool "under info"
4902 (fun () -> conf.underinfo)
4903 (fun v -> conf.underinfo <- v);
4905 src#bool "persistent bookmarks"
4906 (fun () -> conf.savebmarks)
4907 (fun v -> conf.savebmarks <- v);
4909 src#fitmodel "fit model"
4910 (fun () -> FMTE.to_string conf.fitmodel)
4911 (fun v -> reqlayout conf.angle (FMTE.of_int v));
4913 src#bool "trim margins"
4914 (fun () -> conf.trimmargins)
4915 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4917 src#bool "persistent location"
4918 (fun () -> conf.jumpback)
4919 (fun v -> conf.jumpback <- v);
4921 sep ();
4922 src#int "inter-page space"
4923 (fun () -> conf.interpagespace)
4924 (fun n ->
4925 conf.interpagespace <- n;
4926 docolumns conf.columns;
4927 let pageno, py =
4928 match state.layout with
4929 | [] -> 0, 0
4930 | l :: _ ->
4931 l.pageno, l.pagey
4933 state.maxy <- calcheight ();
4934 let y = getpagey pageno in
4935 gotoy (y + py)
4938 src#int "page bias"
4939 (fun () -> conf.pagebias)
4940 (fun v -> conf.pagebias <- v);
4942 src#int "scroll step"
4943 (fun () -> conf.scrollstep)
4944 (fun n -> conf.scrollstep <- n);
4946 src#int "horizontal scroll step"
4947 (fun () -> conf.hscrollstep)
4948 (fun v -> conf.hscrollstep <- v);
4950 src#int "auto scroll step"
4951 (fun () ->
4952 match state.autoscroll with
4953 | Some step -> step
4954 | _ -> conf.autoscrollstep)
4955 (fun n ->
4956 let n = boundastep state.winh n in
4957 if state.autoscroll <> None
4958 then state.autoscroll <- Some n;
4959 conf.autoscrollstep <- n);
4961 src#int "zoom"
4962 (fun () -> truncate (conf.zoom *. 100.))
4963 (fun v -> setzoom ((float v) /. 100.));
4965 src#int "rotation"
4966 (fun () -> conf.angle)
4967 (fun v -> reqlayout v conf.fitmodel);
4969 src#int "scroll bar width"
4970 (fun () -> conf.scrollbw)
4971 (fun v ->
4972 conf.scrollbw <- v;
4973 reshape state.winw state.winh;
4976 src#int "scroll handle height"
4977 (fun () -> conf.scrollh)
4978 (fun v -> conf.scrollh <- v;);
4980 src#int "thumbnail width"
4981 (fun () -> conf.thumbw)
4982 (fun v ->
4983 conf.thumbw <- min 4096 v;
4984 match oldmode with
4985 | Birdseye beye ->
4986 leavebirdseye beye false;
4987 enterbirdseye ()
4988 | _ -> ()
4991 let mode = state.mode in
4992 src#string "columns"
4993 (fun () ->
4994 match conf.columns with
4995 | Csingle _ -> "1"
4996 | Cmulti (multi, _) -> multicolumns_to_string multi
4997 | Csplit (count, _) -> "-" ^ string_of_int count
4999 (fun v ->
5000 let n, a, b = multicolumns_of_string v in
5001 setcolumns mode n a b);
5003 sep ();
5004 src#caption "Pixmap cache" 0;
5005 src#int_with_suffix "size (advisory)"
5006 (fun () -> conf.memlimit)
5007 (fun v -> conf.memlimit <- v);
5009 src#caption2 "used"
5010 (fun () -> Printf.sprintf "%s bytes, %d tiles"
5011 (string_with_suffix_of_int state.memused)
5012 (Hashtbl.length state.tilemap)) 1;
5014 sep ();
5015 src#caption "Layout" 0;
5016 src#caption2 "Dimension"
5017 (fun () ->
5018 Printf.sprintf "%dx%d (virtual %dx%d)"
5019 state.winw state.winh
5020 state.w state.maxy)
5022 if conf.debug
5023 then
5024 src#caption2 "Position" (fun () ->
5025 Printf.sprintf "%dx%d" state.x state.y
5027 else
5028 src#caption2 "Position" (fun () -> describe_location ()) 1
5031 sep ();
5032 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
5033 "Save these parameters as global defaults at exit"
5034 (fun () -> conf.bedefault)
5035 (fun v -> conf.bedefault <- v)
5038 sep ();
5039 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
5040 src#bool ~offset:0 ~btos "Extended parameters"
5041 (fun () -> !showextended)
5042 (fun v -> showextended := v; fillsrc prevmode prevuioh);
5043 if !showextended
5044 then (
5045 src#bool "checkers"
5046 (fun () -> conf.checkers)
5047 (fun v -> conf.checkers <- v; setcheckers v);
5048 src#bool "update cursor"
5049 (fun () -> conf.updatecurs)
5050 (fun v -> conf.updatecurs <- v);
5051 src#bool "verbose"
5052 (fun () -> conf.verbose)
5053 (fun v -> conf.verbose <- v);
5054 src#bool "invert colors"
5055 (fun () -> conf.invert)
5056 (fun v -> conf.invert <- v);
5057 src#bool "max fit"
5058 (fun () -> conf.maxhfit)
5059 (fun v -> conf.maxhfit <- v);
5060 src#bool "redirect stderr"
5061 (fun () -> conf.redirectstderr)
5062 (fun v -> conf.redirectstderr <- v; redirectstderr ());
5063 src#bool "pax mode"
5064 (fun () -> conf.pax != None)
5065 (fun v ->
5066 if v
5067 then conf.pax <- Some (ref (now (), 0, 0))
5068 else conf.pax <- None);
5069 src#string "uri launcher"
5070 (fun () -> conf.urilauncher)
5071 (fun v -> conf.urilauncher <- v);
5072 src#string "path launcher"
5073 (fun () -> conf.pathlauncher)
5074 (fun v -> conf.pathlauncher <- v);
5075 src#string "tile size"
5076 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
5077 (fun v ->
5079 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
5080 conf.tilew <- max 64 w;
5081 conf.tileh <- max 64 h;
5082 flushtiles ();
5083 with exn ->
5084 state.text <- Printf.sprintf "bad tile size `%s': %s"
5085 v (exntos exn)
5087 src#int "texture count"
5088 (fun () -> conf.texcount)
5089 (fun v ->
5090 if realloctexts v
5091 then conf.texcount <- v
5092 else showtext '!' " Failed to set texture count please retry later"
5094 src#int "slice height"
5095 (fun () -> conf.sliceheight)
5096 (fun v ->
5097 conf.sliceheight <- v;
5098 wcmd "sliceh %d" conf.sliceheight;
5100 src#int "anti-aliasing level"
5101 (fun () -> conf.aalevel)
5102 (fun v ->
5103 conf.aalevel <- bound v 0 8;
5104 state.anchor <- getanchor ();
5105 opendoc state.path state.password;
5107 src#string "page scroll scaling factor"
5108 (fun () -> string_of_float conf.pgscale)
5109 (fun v ->
5111 let s = float_of_string v in
5112 conf.pgscale <- s
5113 with exn ->
5114 state.text <- Printf.sprintf
5115 "bad page scroll scaling factor `%s': %s" v (exntos exn)
5118 src#int "ui font size"
5119 (fun () -> fstate.fontsize)
5120 (fun v -> setfontsize (bound v 5 100));
5121 src#int "hint font size"
5122 (fun () -> conf.hfsize)
5123 (fun v -> conf.hfsize <- bound v 5 100);
5124 colorp "background color"
5125 (fun () -> conf.bgcolor)
5126 (fun v -> conf.bgcolor <- v);
5127 src#bool "crop hack"
5128 (fun () -> conf.crophack)
5129 (fun v -> conf.crophack <- v);
5130 src#string "trim fuzz"
5131 (fun () -> irect_to_string conf.trimfuzz)
5132 (fun v ->
5134 conf.trimfuzz <- irect_of_string v;
5135 if conf.trimmargins
5136 then settrim true conf.trimfuzz;
5137 with exn ->
5138 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
5140 src#string "throttle"
5141 (fun () ->
5142 match conf.maxwait with
5143 | None -> "show place holder if page is not ready"
5144 | Some time ->
5145 if time = infinity
5146 then "wait for page to fully render"
5147 else
5148 "wait " ^ string_of_float time
5149 ^ " seconds before showing placeholder"
5151 (fun v ->
5153 let f = float_of_string v in
5154 if f <= 0.0
5155 then conf.maxwait <- None
5156 else conf.maxwait <- Some f
5157 with exn ->
5158 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
5160 src#string "ghyll scroll"
5161 (fun () ->
5162 match conf.ghyllscroll with
5163 | None -> ""
5164 | Some nab -> ghyllscroll_to_string nab
5166 (fun v ->
5167 try conf.ghyllscroll <- ghyllscroll_of_string v
5168 with exn ->
5169 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
5171 src#string "selection command"
5172 (fun () -> conf.selcmd)
5173 (fun v -> conf.selcmd <- v);
5174 src#string "synctex command"
5175 (fun () -> conf.stcmd)
5176 (fun v -> conf.stcmd <- v);
5177 src#string "pax command"
5178 (fun () -> conf.paxcmd)
5179 (fun v -> conf.paxcmd <- v);
5180 src#colorspace "color space"
5181 (fun () -> CSTE.to_string conf.colorspace)
5182 (fun v ->
5183 conf.colorspace <- CSTE.of_int v;
5184 wcmd "cs %d" v;
5185 load state.layout;
5187 src#paxmark "pax mark method"
5188 (fun () -> MTE.to_string conf.paxmark)
5189 (fun v -> conf.paxmark <- MTE.of_int v);
5190 if pbousable ()
5191 then
5192 src#bool "use PBO"
5193 (fun () -> conf.usepbo)
5194 (fun v -> conf.usepbo <- v);
5195 src#bool "mouse wheel scrolls pages"
5196 (fun () -> conf.wheelbypage)
5197 (fun v -> conf.wheelbypage <- v);
5198 src#bool "open remote links in a new instance"
5199 (fun () -> conf.riani)
5200 (fun v -> conf.riani <- v);
5203 sep ();
5204 src#caption "Document" 0;
5205 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
5206 src#caption2 "Pages"
5207 (fun () -> string_of_int state.pagecount) 1;
5208 src#caption2 "Dimensions"
5209 (fun () -> string_of_int (List.length state.pdims)) 1;
5210 if conf.trimmargins
5211 then (
5212 sep ();
5213 src#caption "Trimmed margins" 0;
5214 src#caption2 "Dimensions"
5215 (fun () -> string_of_int (List.length state.pdims)) 1;
5218 sep ();
5219 src#caption "OpenGL" 0;
5220 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
5221 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
5223 sep ();
5224 src#caption "Location" 0;
5225 if nonemptystr state.origin
5226 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
5227 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
5229 src#reset prevmode prevuioh;
5231 fun () ->
5232 state.text <- "";
5233 let prevmode = state.mode
5234 and prevuioh = state.uioh in
5235 fillsrc prevmode prevuioh;
5236 let source = (src :> lvsource) in
5237 let modehash = findkeyhash conf "info" in
5238 state.uioh <- coe (object (self)
5239 inherit listview ~source ~trusted:true ~modehash as super
5240 val mutable m_prevmemused = 0
5241 method infochanged = function
5242 | Memused ->
5243 if m_prevmemused != state.memused
5244 then (
5245 m_prevmemused <- state.memused;
5246 G.postRedisplay "memusedchanged";
5248 | Pdim -> G.postRedisplay "pdimchanged"
5249 | Docinfo -> fillsrc prevmode prevuioh
5251 method key key mask =
5252 if not (Wsi.withctrl mask)
5253 then
5254 match key with
5255 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
5256 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
5257 | _ -> super#key key mask
5258 else super#key key mask
5259 end);
5260 G.postRedisplay "info";
5263 let enterhelpmode =
5264 let source =
5265 (object
5266 inherit lvsourcebase
5267 method getitemcount = Array.length state.help
5268 method getitem n =
5269 let s, l, _ = state.help.(n) in
5270 (s, l)
5272 method exit ~uioh ~cancel ~active ~first ~pan =
5273 let optuioh =
5274 if not cancel
5275 then (
5276 match state.help.(active) with
5277 | _, _, Action f -> Some (f uioh)
5278 | _ -> Some (uioh)
5280 else None
5282 m_active <- active;
5283 m_first <- first;
5284 m_pan <- pan;
5285 optuioh
5287 method hasaction n =
5288 match state.help.(n) with
5289 | _, _, Action _ -> true
5290 | _ -> false
5292 initializer
5293 m_active <- -1
5294 end)
5295 in fun () ->
5296 let modehash = findkeyhash conf "help" in
5297 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
5298 G.postRedisplay "help";
5301 let entermsgsmode =
5302 let msgsource =
5303 let re = Str.regexp "[\r\n]" in
5304 (object
5305 inherit lvsourcebase
5306 val mutable m_items = [||]
5308 method getitemcount = 1 + Array.length m_items
5310 method getitem n =
5311 if n = 0
5312 then "[Clear]", 0
5313 else m_items.(n-1), 0
5315 method exit ~uioh ~cancel ~active ~first ~pan =
5316 ignore uioh;
5317 if not cancel
5318 then (
5319 if active = 0
5320 then Buffer.clear state.errmsgs;
5322 m_active <- active;
5323 m_first <- first;
5324 m_pan <- pan;
5325 None
5327 method hasaction n =
5328 n = 0
5330 method reset =
5331 state.newerrmsgs <- false;
5332 let l = Str.split re (Buffer.contents state.errmsgs) in
5333 m_items <- Array.of_list l
5335 initializer
5336 m_active <- 0
5337 end)
5338 in fun () ->
5339 state.text <- "";
5340 msgsource#reset;
5341 let source = (msgsource :> lvsource) in
5342 let modehash = findkeyhash conf "listview" in
5343 state.uioh <- coe (object
5344 inherit listview ~source ~trusted:false ~modehash as super
5345 method display =
5346 if state.newerrmsgs
5347 then msgsource#reset;
5348 super#display
5349 end);
5350 G.postRedisplay "msgs";
5353 let quickbookmark ?title () =
5354 match state.layout with
5355 | [] -> ()
5356 | l :: _ ->
5357 let title =
5358 match title with
5359 | None ->
5360 let sec = Unix.gettimeofday () in
5361 let tm = Unix.localtime sec in
5362 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
5363 (l.pageno+1)
5364 tm.Unix.tm_mday
5365 tm.Unix.tm_mon
5366 (tm.Unix.tm_year + 1900)
5367 tm.Unix.tm_hour
5368 tm.Unix.tm_min
5369 | Some title -> title
5371 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
5374 let setautoscrollspeed step goingdown =
5375 let incr = max 1 ((abs step) / 2) in
5376 let incr = if goingdown then incr else -incr in
5377 let astep = boundastep state.winh (step + incr) in
5378 state.autoscroll <- Some astep;
5381 let canpan () =
5382 match conf.columns with
5383 | Csplit _ -> true
5384 | _ -> state.x != 0 || conf.zoom > 1.0
5387 let panbound x = bound x (-state.w) (wadjsb state.winw);;
5389 let existsinrow pageno (columns, coverA, coverB) p =
5390 let last = ((pageno - coverA) mod columns) + columns in
5391 let rec any = function
5392 | [] -> false
5393 | l :: rest ->
5394 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
5395 then p l
5396 else (
5397 if not (p l)
5398 then (if l.pageno = last then false else any rest)
5399 else true
5402 any state.layout
5405 let nextpage () =
5406 match state.layout with
5407 | [] ->
5408 let pageno = page_of_y state.y in
5409 gotoghyll (getpagey (pageno+1))
5410 | l :: rest ->
5411 match conf.columns with
5412 | Csingle _ ->
5413 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
5414 then
5415 let y = clamp (pgscale state.winh) in
5416 gotoghyll y
5417 else
5418 let pageno = min (l.pageno+1) (state.pagecount-1) in
5419 gotoghyll (getpagey pageno)
5420 | Cmulti ((c, _, _) as cl, _) ->
5421 if conf.presentation
5422 && (existsinrow l.pageno cl
5423 (fun l -> l.pageh > l.pagey + l.pagevh))
5424 then
5425 let y = clamp (pgscale state.winh) in
5426 gotoghyll y
5427 else
5428 let pageno = min (l.pageno+c) (state.pagecount-1) in
5429 gotoghyll (getpagey pageno)
5430 | Csplit (n, _) ->
5431 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
5432 then
5433 let pagey, pageh = getpageyh l.pageno in
5434 let pagey = pagey + pageh * l.pagecol in
5435 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
5436 gotoghyll (pagey + pageh + ips)
5439 let prevpage () =
5440 match state.layout with
5441 | [] ->
5442 let pageno = page_of_y state.y in
5443 gotoghyll (getpagey (pageno-1))
5444 | l :: _ ->
5445 match conf.columns with
5446 | Csingle _ ->
5447 if conf.presentation && l.pagey != 0
5448 then
5449 gotoghyll (clamp (pgscale ~-(state.winh)))
5450 else
5451 let pageno = max 0 (l.pageno-1) in
5452 gotoghyll (getpagey pageno)
5453 | Cmulti ((c, _, coverB) as cl, _) ->
5454 if conf.presentation &&
5455 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
5456 then
5457 gotoghyll (clamp (pgscale ~-(state.winh)))
5458 else
5459 let decr =
5460 if l.pageno = state.pagecount - coverB
5461 then 1
5462 else c
5464 let pageno = max 0 (l.pageno-decr) in
5465 gotoghyll (getpagey pageno)
5466 | Csplit (n, _) ->
5467 let y =
5468 if l.pagecol = 0
5469 then
5470 if l.pageno = 0
5471 then l.pagey
5472 else
5473 let pageno = max 0 (l.pageno-1) in
5474 let pagey, pageh = getpageyh pageno in
5475 pagey + (n-1)*pageh
5476 else
5477 let pagey, pageh = getpageyh l.pageno in
5478 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5480 gotoghyll y
5483 let viewkeyboard key mask =
5484 let enttext te =
5485 let mode = state.mode in
5486 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
5487 state.text <- "";
5488 enttext ();
5489 G.postRedisplay "view:enttext"
5491 let ctrl = Wsi.withctrl mask in
5492 let key =
5493 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
5495 match key with
5496 | 81 -> (* Q *)
5497 exit 0
5499 | 0xff63 -> (* insert *)
5500 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
5501 then (
5502 state.mode <- LinkNav (Ltgendir 0);
5503 gotoy state.y;
5505 else showtext '!' "Keyboard link navigation does not work under rotation"
5507 | 0xff1b | 113 -> (* escape / q *)
5508 begin match state.mstate with
5509 | Mzoomrect _ ->
5510 state.mstate <- Mnone;
5511 Wsi.setcursor Wsi.CURSOR_INHERIT;
5512 G.postRedisplay "kill zoom rect";
5513 | _ ->
5514 begin match state.mode with
5515 | LinkNav _ ->
5516 state.mode <- View;
5517 G.postRedisplay "esc leave linknav"
5518 | _ ->
5519 match state.ranchors with
5520 | [] -> raise Quit
5521 | (path, password, anchor, origin) :: rest ->
5522 state.ranchors <- rest;
5523 state.anchor <- anchor;
5524 state.origin <- origin;
5525 state.nameddest <- "";
5526 opendoc path password
5527 end;
5528 end;
5530 | 0xff08 -> (* backspace *)
5531 gotoghyll (getnav ~-1)
5533 | 111 -> (* o *)
5534 enteroutlinemode ()
5536 | 117 -> (* u *)
5537 state.rects <- [];
5538 state.text <- "";
5539 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
5540 G.postRedisplay "dehighlight";
5542 | 47 | 63 -> (* / ? *)
5543 let ondone isforw s =
5544 cbput state.hists.pat s;
5545 state.searchpattern <- s;
5546 search s isforw
5548 let s = String.create 1 in
5549 s.[0] <- Char.chr key;
5550 enttext (s, "", Some (onhist state.hists.pat),
5551 textentry, ondone (key = 47), true)
5553 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5554 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5555 setzoom (conf.zoom +. incr)
5557 | 43 | 0xffab -> (* + *)
5558 let ondone s =
5559 let n =
5560 try int_of_string s with exc ->
5561 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5562 max_int
5564 if n != max_int
5565 then (
5566 conf.pagebias <- n;
5567 state.text <- "page bias is now " ^ string_of_int n;
5570 enttext ("page bias: ", "", None, intentry, ondone, true)
5572 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5573 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5574 setzoom (max 0.01 (conf.zoom -. decr))
5576 | 45 | 0xffad -> (* - *)
5577 let ondone msg = state.text <- msg in
5578 enttext (
5579 "option [acfhilpstvxACFPRSZTISM]: ", "", None,
5580 optentry state.mode, ondone, true
5583 | 48 when ctrl -> (* ctrl-0 *)
5584 if conf.zoom = 1.0
5585 then (
5586 state.x <- 0;
5587 gotoy state.y
5589 else setzoom 1.0
5591 | (49 | 50) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
5592 let cols =
5593 match conf.columns with
5594 | Csingle _ | Cmulti _ -> 1
5595 | Csplit (n, _) -> n
5597 let h = state.winh -
5598 conf.interpagespace lsl (if conf.presentation then 1 else 0)
5600 let zoom = zoomforh state.winw h (vscrollw ()) cols in
5601 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5602 then setzoom zoom
5604 | 51 when ctrl -> (* ctrl-3 *)
5605 let fm =
5606 match conf.fitmodel with
5607 | FitWidth -> FitProportional
5608 | FitProportional -> FitPage
5609 | FitPage -> FitWidth
5611 state.text <- "fit model: " ^ FMTE.to_string fm;
5612 reqlayout conf.angle fm
5614 | 0xffc6 -> (* f9 *)
5615 togglebirdseye ()
5617 | 57 when ctrl -> (* ctrl-9 *)
5618 togglebirdseye ()
5620 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5621 when not ctrl -> (* 0..9 *)
5622 let ondone s =
5623 let n =
5624 try int_of_string s with exc ->
5625 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5628 if n >= 0
5629 then (
5630 addnav ();
5631 cbput state.hists.pag (string_of_int n);
5632 gotopage1 (n + conf.pagebias - 1) 0;
5635 let pageentry text key =
5636 match Char.unsafe_chr key with
5637 | 'g' -> TEdone text
5638 | _ -> intentry text key
5640 let text = "x" in text.[0] <- Char.chr key;
5641 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5643 | 98 -> (* b *)
5644 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
5645 reshape state.winw state.winh;
5647 | 66 -> (* B *)
5648 state.bzoom <- not state.bzoom;
5649 state.rects <- [];
5650 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
5652 | 108 -> (* l *)
5653 conf.hlinks <- not conf.hlinks;
5654 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5655 G.postRedisplay "toggle highlightlinks";
5657 | 70 -> (* F *)
5658 state.glinks <- true;
5659 let mode = state.mode in
5660 state.mode <- Textentry (
5661 (":", "", None, linknentry, linkndone gotounder, false),
5662 (fun _ ->
5663 state.glinks <- false;
5664 state.mode <- mode)
5666 state.text <- "";
5667 G.postRedisplay "view:linkent(F)"
5669 | 121 -> (* y *)
5670 state.glinks <- true;
5671 let mode = state.mode in
5672 state.mode <- Textentry (
5674 ":", "", None, linknentry, linkndone (fun under ->
5675 selstring (undertext under);
5676 ), false
5678 fun _ ->
5679 state.glinks <- false;
5680 state.mode <- mode
5682 state.text <- "";
5683 G.postRedisplay "view:linkent"
5685 | 97 -> (* a *)
5686 begin match state.autoscroll with
5687 | Some step ->
5688 conf.autoscrollstep <- step;
5689 state.autoscroll <- None
5690 | None ->
5691 if conf.autoscrollstep = 0
5692 then state.autoscroll <- Some 1
5693 else state.autoscroll <- Some conf.autoscrollstep
5696 | 112 when ctrl -> (* ctrl-p *)
5697 launchpath ()
5699 | 80 -> (* P *)
5700 setpresentationmode (not conf.presentation);
5701 showtext ' ' ("presentation mode " ^
5702 if conf.presentation then "on" else "off");
5704 | 102 -> (* f *)
5705 if List.mem Wsi.Fullscreen state.winstate
5706 then Wsi.reshape conf.cwinw conf.cwinh
5707 else Wsi.fullscreen ()
5709 | 112 | 78 -> (* p|N *)
5710 search state.searchpattern false
5712 | 110 | 0xffc0 -> (* n|F3 *)
5713 search state.searchpattern true
5715 | 116 -> (* t *)
5716 begin match state.layout with
5717 | [] -> ()
5718 | l :: _ ->
5719 gotoghyll (getpagey l.pageno)
5722 | 32 -> (* space *)
5723 nextpage ()
5725 | 0xff9f | 0xffff -> (* delete *)
5726 prevpage ()
5728 | 61 -> (* = *)
5729 showtext ' ' (describe_location ());
5731 | 119 -> (* w *)
5732 begin match state.layout with
5733 | [] -> ()
5734 | l :: _ ->
5735 Wsi.reshape (l.pagew + vscrollw ()) l.pageh;
5736 G.postRedisplay "w"
5739 | 39 -> (* ' *)
5740 enterbookmarkmode ()
5742 | 104 | 0xffbe -> (* h|F1 *)
5743 enterhelpmode ()
5745 | 105 -> (* i *)
5746 enterinfomode ()
5748 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5749 entermsgsmode ()
5751 | 109 -> (* m *)
5752 let ondone s =
5753 match state.layout with
5754 | l :: _ ->
5755 if nonemptystr s
5756 then
5757 state.bookmarks <-
5758 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
5759 | _ -> ()
5761 enttext ("bookmark: ", "", None, textentry, ondone, true)
5763 | 126 -> (* ~ *)
5764 quickbookmark ();
5765 showtext ' ' "Quick bookmark added";
5767 | 122 -> (* z *)
5768 begin match state.layout with
5769 | l :: _ ->
5770 let rect = getpdimrect l.pagedimno in
5771 let w, h =
5772 if conf.crophack
5773 then
5774 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5775 truncate (1.2 *. (rect.(3) -. rect.(0))))
5776 else
5777 (truncate (rect.(1) -. rect.(0)),
5778 truncate (rect.(3) -. rect.(0)))
5780 let w = truncate ((float w)*.conf.zoom)
5781 and h = truncate ((float h)*.conf.zoom) in
5782 if w != 0 && h != 0
5783 then (
5784 state.anchor <- getanchor ();
5785 Wsi.reshape (w + vscrollw ()) (h + conf.interpagespace)
5787 G.postRedisplay "z";
5789 | [] -> ()
5792 | 120 -> (* x *)
5793 state.roam ()
5794 | 60 | 62 -> (* < > *)
5795 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
5797 | 91 | 93 -> (* [ ] *)
5798 conf.colorscale <-
5799 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5801 G.postRedisplay "brightness";
5803 | 99 when state.mode = View -> (* [alt-]c *)
5804 if Wsi.withalt mask
5805 then (
5806 if conf.zoom > 1.0
5807 then
5808 let m = (wadjsb state.winw - state.w) / 2 in
5809 state.x <- m;
5810 gotoy_and_clear_text state.y
5812 else
5813 let (c, a, b), z =
5814 match state.prevcolumns with
5815 | None -> (1, 0, 0), 1.0
5816 | Some (columns, z) ->
5817 let cab =
5818 match columns with
5819 | Csplit (c, _) -> -c, 0, 0
5820 | Cmulti ((c, a, b), _) -> c, a, b
5821 | Csingle _ -> 1, 0, 0
5823 cab, z
5825 setcolumns View c a b;
5826 setzoom z
5828 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
5829 -> (* ctrl-shift- (kp) [up|down] *)
5830 let zoom, x = state.prevzoom in
5831 setzoom zoom;
5832 state.x <- x;
5834 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5835 begin match state.autoscroll with
5836 | None ->
5837 begin match state.mode with
5838 | Birdseye beye -> upbirdseye 1 beye
5839 | _ ->
5840 if ctrl
5841 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5842 else (
5843 if not (Wsi.withshift mask) && conf.presentation
5844 then prevpage ()
5845 else gotoy_and_clear_text (clamp (-conf.scrollstep))
5848 | Some n ->
5849 setautoscrollspeed n false
5852 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5853 begin match state.autoscroll with
5854 | None ->
5855 begin match state.mode with
5856 | Birdseye beye -> downbirdseye 1 beye
5857 | _ ->
5858 if ctrl
5859 then gotoy_and_clear_text (clamp (state.winh/2))
5860 else (
5861 if not (Wsi.withshift mask) && conf.presentation
5862 then nextpage ()
5863 else gotoy_and_clear_text (clamp conf.scrollstep)
5866 | Some n ->
5867 setautoscrollspeed n true
5870 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5871 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5872 if canpan ()
5873 then
5874 let dx =
5875 if ctrl
5876 then state.winw / 2
5877 else conf.hscrollstep
5879 let dx = if key = 0xff51 || key = 0xff96 then dx else -dx in
5880 state.x <- panbound (state.x + dx);
5881 gotoy_and_clear_text state.y
5882 else (
5883 state.text <- "";
5884 G.postRedisplay "left/right"
5887 | 0xff55 | 0xff9a -> (* (kp) prior *)
5888 let y =
5889 if ctrl
5890 then
5891 match state.layout with
5892 | [] -> state.y
5893 | l :: _ -> state.y - l.pagey
5894 else
5895 clamp (pgscale (-state.winh))
5897 gotoghyll y
5899 | 0xff56 | 0xff9b -> (* (kp) next *)
5900 let y =
5901 if ctrl
5902 then
5903 match List.rev state.layout with
5904 | [] -> state.y
5905 | l :: _ -> getpagey l.pageno
5906 else
5907 clamp (pgscale state.winh)
5909 gotoghyll y
5911 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5912 gotoghyll 0
5913 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5914 gotoghyll (clamp state.maxy)
5916 | 0xff53 | 0xff98
5917 when Wsi.withalt mask -> (* alt-(kp) right *)
5918 gotoghyll (getnav 1)
5919 | 0xff51 | 0xff96
5920 when Wsi.withalt mask -> (* alt-(kp) left *)
5921 gotoghyll (getnav ~-1)
5923 | 114 -> (* r *)
5924 reload ()
5926 | 118 when conf.debug -> (* v *)
5927 state.rects <- [];
5928 List.iter (fun l ->
5929 match getopaque l.pageno with
5930 | None -> ()
5931 | Some opaque ->
5932 let x0, y0, x1, y1 = pagebbox opaque in
5933 let a,b = float x0, float y0 in
5934 let c,d = float x1, float y0 in
5935 let e,f = float x1, float y1 in
5936 let h,j = float x0, float y1 in
5937 let rect = (a,b,c,d,e,f,h,j) in
5938 debugrect rect;
5939 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5940 ) state.layout;
5941 G.postRedisplay "v";
5943 | 124 -> (* | *)
5944 let mode = state.mode in
5945 let cmd = ref "" in
5946 let onleave = function
5947 | Cancel -> state.mode <- mode
5948 | Confirm ->
5949 List.iter (fun l ->
5950 match getopaque l.pageno with
5951 | Some opaque -> pipesel opaque !cmd
5952 | None -> ()) state.layout;
5953 state.mode <- mode
5955 let ondone s =
5956 cbput state.hists.sel s;
5957 cmd := s
5959 let te =
5960 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5962 G.postRedisplay "|";
5963 state.mode <- Textentry (te, onleave);
5965 | _ ->
5966 vlog "huh? %s" (Wsi.keyname key)
5969 let linknavkeyboard key mask linknav =
5970 let getpage pageno =
5971 let rec loop = function
5972 | [] -> None
5973 | l :: _ when l.pageno = pageno -> Some l
5974 | _ :: rest -> loop rest
5975 in loop state.layout
5977 let doexact (pageno, n) =
5978 match getopaque pageno, getpage pageno with
5979 | Some opaque, Some l ->
5980 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5981 then
5982 let under = getlink opaque n in
5983 G.postRedisplay "link gotounder";
5984 gotounder under;
5985 state.mode <- View;
5986 else
5987 let opt, dir =
5988 match key with
5989 | 0xff50 -> (* home *)
5990 Some (findlink opaque LDfirst), -1
5992 | 0xff57 -> (* end *)
5993 Some (findlink opaque LDlast), 1
5995 | 0xff51 -> (* left *)
5996 Some (findlink opaque (LDleft n)), -1
5998 | 0xff53 -> (* right *)
5999 Some (findlink opaque (LDright n)), 1
6001 | 0xff52 -> (* up *)
6002 Some (findlink opaque (LDup n)), -1
6004 | 0xff54 -> (* down *)
6005 Some (findlink opaque (LDdown n)), 1
6007 | _ -> None, 0
6009 let pwl l dir =
6010 begin match findpwl l.pageno dir with
6011 | Pwlnotfound -> ()
6012 | Pwl pageno ->
6013 let notfound dir =
6014 state.mode <- LinkNav (Ltgendir dir);
6015 let y, h = getpageyh pageno in
6016 let y =
6017 if dir < 0
6018 then y + h - state.winh
6019 else y
6021 gotoy y
6023 begin match getopaque pageno, getpage pageno with
6024 | Some opaque, Some _ ->
6025 let link =
6026 let ld = if dir > 0 then LDfirst else LDlast in
6027 findlink opaque ld
6029 begin match link with
6030 | Lfound m ->
6031 showlinktype (getlink opaque m);
6032 state.mode <- LinkNav (Ltexact (pageno, m));
6033 G.postRedisplay "linknav jpage";
6034 | _ -> notfound dir
6035 end;
6036 | _ -> notfound dir
6037 end;
6038 end;
6040 begin match opt with
6041 | Some Lnotfound -> pwl l dir;
6042 | Some (Lfound m) ->
6043 if m = n
6044 then pwl l dir
6045 else (
6046 let _, y0, _, y1 = getlinkrect opaque m in
6047 if y0 < l.pagey
6048 then gotopage1 l.pageno y0
6049 else (
6050 let d = fstate.fontsize + 1 in
6051 if y1 - l.pagey > l.pagevh - d
6052 then gotopage1 l.pageno (y1 - state.winh - hscrollh () + d)
6053 else G.postRedisplay "linknav";
6055 showlinktype (getlink opaque m);
6056 state.mode <- LinkNav (Ltexact (l.pageno, m));
6059 | None -> viewkeyboard key mask
6060 end;
6061 | _ -> viewkeyboard key mask
6063 if key = 0xff63
6064 then (
6065 state.mode <- View;
6066 G.postRedisplay "leave linknav"
6068 else
6069 match linknav with
6070 | Ltgendir _ -> viewkeyboard key mask
6071 | Ltexact exact -> doexact exact
6074 let keyboard key mask =
6075 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
6076 then wcmd "interrupt"
6077 else state.uioh <- state.uioh#key key mask
6080 let birdseyekeyboard key mask
6081 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
6082 let incr =
6083 match conf.columns with
6084 | Csingle _ -> 1
6085 | Cmulti ((c, _, _), _) -> c
6086 | Csplit _ -> failwith "bird's eye split mode"
6088 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
6089 match key with
6090 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
6091 let y, h = getpageyh pageno in
6092 let top = (state.winh - h) / 2 in
6093 gotoy (max 0 (y - top))
6094 | 0xff0d (* enter *)
6095 | 0xff8d -> leavebirdseye beye false (* kp enter *)
6096 | 0xff1b -> leavebirdseye beye true (* escape *)
6097 | 0xff52 -> upbirdseye incr beye (* up *)
6098 | 0xff54 -> downbirdseye incr beye (* down *)
6099 | 0xff51 -> upbirdseye 1 beye (* left *)
6100 | 0xff53 -> downbirdseye 1 beye (* right *)
6102 | 0xff55 -> (* prior *)
6103 begin match state.layout with
6104 | l :: _ ->
6105 if l.pagey != 0
6106 then (
6107 state.mode <- Birdseye (
6108 oconf, leftx, l.pageno, hooverpageno, anchor
6110 gotopage1 l.pageno 0;
6112 else (
6113 let layout = layout (state.y-state.winh) (pgh state.layout) in
6114 match layout with
6115 | [] -> gotoy (clamp (-state.winh))
6116 | l :: _ ->
6117 state.mode <- Birdseye (
6118 oconf, leftx, l.pageno, hooverpageno, anchor
6120 gotopage1 l.pageno 0
6123 | [] -> gotoy (clamp (-state.winh))
6124 end;
6126 | 0xff56 -> (* next *)
6127 begin match List.rev state.layout with
6128 | l :: _ ->
6129 let layout = layout (state.y + (pgh state.layout)) state.winh in
6130 begin match layout with
6131 | [] ->
6132 let incr = l.pageh - l.pagevh in
6133 if incr = 0
6134 then (
6135 state.mode <-
6136 Birdseye (
6137 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
6139 G.postRedisplay "birdseye pagedown";
6141 else gotoy (clamp (incr + conf.interpagespace*2));
6143 | l :: _ ->
6144 state.mode <-
6145 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
6146 gotopage1 l.pageno 0;
6149 | [] -> gotoy (clamp state.winh)
6150 end;
6152 | 0xff50 -> (* home *)
6153 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
6154 gotopage1 0 0
6156 | 0xff57 -> (* end *)
6157 let pageno = state.pagecount - 1 in
6158 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
6159 if not (pagevisible state.layout pageno)
6160 then
6161 let h =
6162 match List.rev state.pdims with
6163 | [] -> state.winh
6164 | (_, _, h, _) :: _ -> h
6166 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
6167 else G.postRedisplay "birdseye end";
6168 | _ -> viewkeyboard key mask
6171 let drawpage l =
6172 let color =
6173 match state.mode with
6174 | Textentry _ -> scalecolor 0.4
6175 | LinkNav _
6176 | View -> scalecolor 1.0
6177 | Birdseye (_, _, pageno, hooverpageno, _) ->
6178 if l.pageno = hooverpageno
6179 then scalecolor 0.9
6180 else (
6181 if l.pageno = pageno
6182 then scalecolor 1.0
6183 else scalecolor 0.8
6186 drawtiles l color;
6189 let postdrawpage l linkindexbase =
6190 match getopaque l.pageno with
6191 | Some opaque ->
6192 if tileready l l.pagex l.pagey
6193 then
6194 let x = l.pagedispx - l.pagex
6195 and y = l.pagedispy - l.pagey in
6196 let hlmask =
6197 match conf.columns with
6198 | Csingle _ | Cmulti _ ->
6199 (if conf.hlinks then 1 else 0)
6200 + (if state.glinks
6201 && not (isbirdseye state.mode) then 2 else 0)
6202 | _ -> 0
6204 let s =
6205 match state.mode with
6206 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
6207 | _ -> ""
6209 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
6210 else 0
6211 | _ -> 0
6214 let scrollindicator () =
6215 let sbw, ph, sh = state.uioh#scrollph in
6216 let sbh, pw, sw = state.uioh#scrollpw in
6218 GlDraw.color (0.64, 0.64, 0.64);
6219 filledrect
6220 (float (state.winw - sbw)) 0.
6221 (float state.winw) (float state.winh)
6223 filledrect
6224 0. (float (state.winh - sbh))
6225 (float (wadjsb state.winw - 1)) (float state.winh)
6227 GlDraw.color (0.0, 0.0, 0.0);
6229 filledrect
6230 (float (state.winw - sbw)) ph
6231 (float state.winw) (ph +. sh)
6233 filledrect
6234 pw (float (state.winh - sbh))
6235 (pw +. sw) (float state.winh)
6239 let showsel () =
6240 match state.mstate with
6241 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
6244 | Msel ((x0, y0), (x1, y1)) ->
6245 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
6246 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< "", -1, 0, 0) in
6247 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< "", -1, 0, 0) in
6248 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
6251 let showrects = function [] -> () | rects ->
6252 Gl.enable `blend;
6253 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
6254 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
6255 List.iter
6256 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
6257 List.iter (fun l ->
6258 if l.pageno = pageno
6259 then (
6260 let dx = float (l.pagedispx - l.pagex) in
6261 let dy = float (l.pagedispy - l.pagey) in
6262 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
6263 Raw.sets_float state.vraw ~pos:0
6264 [| x0+.dx; y0+.dy;
6265 x1+.dx; y1+.dy;
6266 x3+.dx; y3+.dy;
6267 x2+.dx; y2+.dy |];
6268 GlArray.vertex `two state.vraw;
6269 GlArray.draw_arrays `triangle_strip 0 4;
6271 ) state.layout
6272 ) rects
6274 Gl.disable `blend;
6277 let display () =
6278 GlClear.color (scalecolor2 conf.bgcolor);
6279 GlClear.clear [`color];
6280 List.iter drawpage state.layout;
6281 let rects =
6282 match state.mode with
6283 | LinkNav (Ltexact (pageno, linkno)) ->
6284 begin match getopaque pageno with
6285 | Some opaque ->
6286 let x0, y0, x1, y1 = getlinkrect opaque linkno in
6287 (pageno, 5, (
6288 float x0, float y0,
6289 float x1, float y0,
6290 float x1, float y1,
6291 float x0, float y1)
6292 ) :: state.rects
6293 | None -> state.rects
6295 | _ -> state.rects
6297 showrects rects;
6298 let rec postloop linkindexbase = function
6299 | l :: rest ->
6300 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
6301 postloop linkindexbase rest
6302 | [] -> ()
6304 showsel ();
6305 postloop 0 state.layout;
6306 state.uioh#display;
6307 begin match state.mstate with
6308 | Mzoomrect ((x0, y0), (x1, y1)) ->
6309 Gl.enable `blend;
6310 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
6311 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
6312 filledrect (float x0) (float y0) (float x1) (float y1);
6313 Gl.disable `blend;
6314 | _ -> ()
6315 end;
6316 enttext ();
6317 scrollindicator ();
6318 Wsi.swapb ();
6321 let zoomrect x y x1 y1 =
6322 let x0 = min x x1
6323 and x1 = max x x1
6324 and y0 = min y y1 in
6325 gotoy (state.y + y0);
6326 state.anchor <- getanchor ();
6327 let zoom = (float state.w) /. float (x1 - x0) in
6328 let margin =
6329 match conf.fitmodel, conf.columns with
6330 | FitPage, Csplit _ ->
6331 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
6333 | _, _ ->
6334 let adjw = wadjsb state.winw in
6335 if state.w < adjw
6336 then (adjw - state.w) / 2
6337 else 0
6339 state.x <- (state.x + margin) - x0;
6340 setzoom zoom;
6341 Wsi.setcursor Wsi.CURSOR_INHERIT;
6342 state.mstate <- Mnone;
6345 let zoomblock x y =
6346 let g opaque l px py =
6347 match rectofblock opaque px py with
6348 | Some a ->
6349 let x0 = a.(0) -. 20. in
6350 let x1 = a.(1) +. 20. in
6351 let y0 = a.(2) -. 20. in
6352 let zoom = (float state.w) /. (x1 -. x0) in
6353 let pagey = getpagey l.pageno in
6354 gotoy_and_clear_text (pagey + truncate y0);
6355 state.anchor <- getanchor ();
6356 let margin = (state.w - l.pagew)/2 in
6357 state.x <- -truncate x0 - margin;
6358 setzoom zoom;
6359 None
6360 | None -> None
6362 match conf.columns with
6363 | Csplit _ ->
6364 showtext '!' "block zooming does not work properly in split columns mode"
6365 | _ -> onppundermouse g x y ()
6368 let scrollx x =
6369 let winw = wadjsb state.winw - 1 in
6370 let s = float x /. float winw in
6371 let destx = truncate (float (state.w + winw) *. s) in
6372 state.x <- winw - destx;
6373 gotoy_and_clear_text state.y;
6374 state.mstate <- Mscrollx;
6377 let scrolly y =
6378 let s = float y /. float state.winh in
6379 let desty = truncate (float (state.maxy - state.winh) *. s) in
6380 gotoy_and_clear_text desty;
6381 state.mstate <- Mscrolly;
6384 let viewmulticlick clicks x y mask =
6385 let g opaque l px py =
6386 let mark =
6387 match clicks with
6388 | 2 -> Mark_word
6389 | 3 -> Mark_line
6390 | 4 -> Mark_block
6391 | _ -> Mark_page
6393 if markunder opaque px py mark
6394 then (
6395 Some (fun () ->
6396 let dopipe cmd =
6397 match getopaque l.pageno with
6398 | None -> ()
6399 | Some opaque -> pipesel opaque cmd
6401 state.roam <- (fun () -> dopipe conf.paxcmd);
6402 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
6405 else None
6407 G.postRedisplay "viewmulticlick";
6408 onppundermouse g x y (fun () -> showtext '!' "Nothing to select") ();
6411 let canselect () =
6412 match conf.columns with
6413 | Csplit _ -> false
6414 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
6417 let viewmouse button down x y mask =
6418 match button with
6419 | n when (n == 4 || n == 5) && not down ->
6420 if Wsi.withctrl mask
6421 then (
6422 match state.mstate with
6423 | Mzoom (oldn, i) ->
6424 if oldn = n
6425 then (
6426 if i = 2
6427 then
6428 let incr =
6429 match n with
6430 | 5 ->
6431 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
6432 | _ ->
6433 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
6435 let zoom = conf.zoom -. incr in
6436 setzoom zoom;
6437 state.mstate <- Mzoom (n, 0);
6438 else
6439 state.mstate <- Mzoom (n, i+1);
6441 else state.mstate <- Mzoom (n, 0)
6443 | _ -> state.mstate <- Mzoom (n, 0)
6445 else (
6446 match state.autoscroll with
6447 | Some step -> setautoscrollspeed step (n=4)
6448 | None ->
6449 if conf.wheelbypage || conf.presentation
6450 then (
6451 if n = 4
6452 then prevpage ()
6453 else nextpage ()
6455 else
6456 let incr =
6457 if n = 4
6458 then -conf.scrollstep
6459 else conf.scrollstep
6461 let incr = incr * 2 in
6462 let y = clamp incr in
6463 gotoy_and_clear_text y
6466 | n when (n = 6 || n = 7) && not down && canpan () ->
6467 state.x <-
6468 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep);
6469 gotoy_and_clear_text state.y
6471 | 1 when Wsi.withshift mask ->
6472 state.mstate <- Mnone;
6473 if not down
6474 then (
6475 match unproject x y with
6476 | Some (pageno, ux, uy) ->
6477 let cmd = Printf.sprintf
6478 "%s %s %d %d %d"
6479 conf.stcmd state.path pageno ux uy
6481 popen cmd []
6482 | None -> ()
6485 | 1 when Wsi.withctrl mask ->
6486 if down
6487 then (
6488 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
6489 state.mstate <- Mpan (x, y)
6491 else
6492 state.mstate <- Mnone
6494 | 3 ->
6495 if down
6496 then (
6497 Wsi.setcursor Wsi.CURSOR_CYCLE;
6498 let p = (x, y) in
6499 state.mstate <- Mzoomrect (p, p)
6501 else (
6502 match state.mstate with
6503 | Mzoomrect ((x0, y0), _) ->
6504 if abs (x-x0) > 10 && abs (y - y0) > 10
6505 then zoomrect x0 y0 x y
6506 else (
6507 state.mstate <- Mnone;
6508 Wsi.setcursor Wsi.CURSOR_INHERIT;
6509 G.postRedisplay "kill accidental zoom rect";
6511 | _ ->
6512 Wsi.setcursor Wsi.CURSOR_INHERIT;
6513 state.mstate <- Mnone
6516 | 1 when x > state.winw - vscrollw () ->
6517 if down
6518 then
6519 let _, position, sh = state.uioh#scrollph in
6520 if y > truncate position && y < truncate (position +. sh)
6521 then state.mstate <- Mscrolly
6522 else scrolly y
6523 else
6524 state.mstate <- Mnone
6526 | 1 when y > state.winh - hscrollh () ->
6527 if down
6528 then
6529 let _, position, sw = state.uioh#scrollpw in
6530 if x > truncate position && x < truncate (position +. sw)
6531 then state.mstate <- Mscrollx
6532 else scrollx x
6533 else
6534 state.mstate <- Mnone
6536 | 1 when state.bzoom -> if not down then zoomblock x y
6538 | 1 ->
6539 let dest = if down then getunder x y else Unone in
6540 begin match dest with
6541 | Ulinkgoto _
6542 | Ulinkuri _
6543 | Uremote _ | Uremotedest _
6544 | Uunexpected _ | Ulaunch _ | Unamed _ ->
6545 gotounder dest
6547 | Unone when down ->
6548 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
6549 state.mstate <- Mpan (x, y);
6551 | Unone | Utext _ ->
6552 if down
6553 then (
6554 if canselect ()
6555 then (
6556 state.mstate <- Msel ((x, y), (x, y));
6557 G.postRedisplay "mouse select";
6560 else (
6561 match state.mstate with
6562 | Mnone -> ()
6564 | Mzoom _ | Mscrollx | Mscrolly ->
6565 state.mstate <- Mnone
6567 | Mzoomrect ((x0, y0), _) ->
6568 zoomrect x0 y0 x y
6570 | Mpan _ ->
6571 Wsi.setcursor Wsi.CURSOR_INHERIT;
6572 state.mstate <- Mnone
6574 | Msel ((x0, y0), (x1, y1)) ->
6575 let rec loop = function
6576 | [] -> ()
6577 | l :: rest ->
6578 let inside =
6579 let a0 = l.pagedispy in
6580 let a1 = a0 + l.pagevh in
6581 let b0 = l.pagedispx in
6582 let b1 = b0 + l.pagevw in
6583 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6584 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6586 if inside
6587 then
6588 match getopaque l.pageno with
6589 | Some opaque ->
6590 let dosel cmd () =
6591 match Ne.res Unix.pipe with
6592 | Ne.Exn exn ->
6593 showtext '!'
6594 (Printf.sprintf
6595 "can not create sel pipe: %s"
6596 (exntos exn));
6597 | Ne.Res (r, w) ->
6598 let clo what fd =
6599 Ne.clo fd (fun msg ->
6600 dolog "%s close failed: %s" what msg)
6602 let popened =
6603 try popen cmd [r, 0; w, -1]; true
6604 with exn ->
6605 dolog "can not execute %S: %s"
6606 cmd (exntos exn);
6607 false
6609 if popened
6610 then (
6611 copysel w opaque;
6612 G.postRedisplay "copysel";
6614 else clo "Msel pipe/w" w;
6615 clo "Msel pipe/r" r;
6617 dosel conf.selcmd ();
6618 state.roam <- dosel conf.paxcmd;
6619 | None -> ()
6620 else loop rest
6622 loop state.layout;
6623 Wsi.setcursor Wsi.CURSOR_INHERIT;
6624 state.mstate <- Mnone;
6628 | _ -> ()
6631 let birdseyemouse button down x y mask
6632 (conf, leftx, _, hooverpageno, anchor) =
6633 match button with
6634 | 1 when down ->
6635 let rec loop = function
6636 | [] -> ()
6637 | l :: rest ->
6638 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6639 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6640 then (
6641 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
6643 else loop rest
6645 loop state.layout
6646 | 3 -> ()
6647 | _ -> viewmouse button down x y mask
6650 let uioh = object
6651 method display = ()
6653 method key key mask =
6654 begin match state.mode with
6655 | Textentry textentry -> textentrykeyboard key mask textentry
6656 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
6657 | View -> viewkeyboard key mask
6658 | LinkNav linknav -> linknavkeyboard key mask linknav
6659 end;
6660 state.uioh
6662 method button button bstate x y mask =
6663 begin match state.mode with
6664 | LinkNav _
6665 | View -> viewmouse button bstate x y mask
6666 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6667 | Textentry _ -> ()
6668 end;
6669 state.uioh
6671 method multiclick clicks x y mask =
6672 begin match state.mode with
6673 | LinkNav _
6674 | View -> viewmulticlick clicks x y mask
6675 | Birdseye _
6676 | Textentry _ -> ()
6677 end;
6678 state.uioh
6680 method motion x y =
6681 begin match state.mode with
6682 | Textentry _ -> ()
6683 | View | Birdseye _ | LinkNav _ ->
6684 match state.mstate with
6685 | Mzoom _ | Mnone -> ()
6687 | Mpan (x0, y0) ->
6688 let dx = x - x0
6689 and dy = y0 - y in
6690 state.mstate <- Mpan (x, y);
6691 if canpan ()
6692 then state.x <- panbound (state.x + dx);
6693 let y = clamp dy in
6694 gotoy_and_clear_text y
6696 | Msel (a, _) ->
6697 state.mstate <- Msel (a, (x, y));
6698 G.postRedisplay "motion select";
6700 | Mscrolly ->
6701 let y = min state.winh (max 0 y) in
6702 scrolly y
6704 | Mscrollx ->
6705 let x = min state.winw (max 0 x) in
6706 scrollx x
6708 | Mzoomrect (p0, _) ->
6709 state.mstate <- Mzoomrect (p0, (x, y));
6710 G.postRedisplay "motion zoomrect";
6711 end;
6712 state.uioh
6714 method pmotion x y =
6715 begin match state.mode with
6716 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6717 let rec loop = function
6718 | [] ->
6719 if hooverpageno != -1
6720 then (
6721 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6722 G.postRedisplay "pmotion birdseye no hoover";
6724 | l :: rest ->
6725 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6726 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6727 then (
6728 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6729 G.postRedisplay "pmotion birdseye hoover";
6731 else loop rest
6733 loop state.layout
6735 | Textentry _ -> ()
6737 | LinkNav _
6738 | View ->
6739 match state.mstate with
6740 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6742 | Mnone ->
6743 updateunder x y;
6744 if canselect ()
6745 then
6746 match conf.pax with
6747 | None -> ()
6748 | Some r ->
6749 let past, _, _ = !r in
6750 let now = now () in
6751 let delta = now -. past in
6752 if delta > 0.01
6753 then paxunder x y
6754 else r := (now, x, y)
6755 end;
6756 state.uioh
6758 method infochanged _ = ()
6760 method scrollph =
6761 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6762 let p, h =
6763 if maxy = 0
6764 then 0.0, float state.winh
6765 else scrollph state.y maxy
6767 vscrollw (), p, h
6769 method scrollpw =
6770 let winw = wadjsb state.winw in
6771 let fwinw = float winw in
6772 let sw =
6773 let sw = fwinw /. float state.w in
6774 let sw = fwinw *. sw in
6775 max sw (float conf.scrollh)
6777 let position =
6778 let maxx = state.w + winw in
6779 let x = winw - state.x in
6780 let percent = float x /. float maxx in
6781 (fwinw -. sw) *. percent
6783 hscrollh (), position, sw
6785 method modehash =
6786 let modename =
6787 match state.mode with
6788 | LinkNav _ -> "links"
6789 | Textentry _ -> "textentry"
6790 | Birdseye _ -> "birdseye"
6791 | View -> "view"
6793 findkeyhash conf modename
6795 method eformsgs = true
6796 end;;
6798 module Config =
6799 struct
6800 open Parser
6802 let fontpath = ref "";;
6804 module KeyMap =
6805 Map.Make (struct type t = (int * int) let compare = compare end);;
6807 let unent s =
6808 let l = String.length s in
6809 let b = Buffer.create l in
6810 unent b s 0 l;
6811 Buffer.contents b;
6814 let home =
6815 try Sys.getenv "HOME"
6816 with exn ->
6817 prerr_endline
6818 ("Can not determine home directory location: " ^ exntos exn);
6822 let modifier_of_string = function
6823 | "alt" -> Wsi.altmask
6824 | "shift" -> Wsi.shiftmask
6825 | "ctrl" | "control" -> Wsi.ctrlmask
6826 | "meta" -> Wsi.metamask
6827 | _ -> 0
6830 let key_of_string =
6831 let r = Str.regexp "-" in
6832 fun s ->
6833 let elems = Str.full_split r s in
6834 let f n k m =
6835 let g s =
6836 let m1 = modifier_of_string s in
6837 if m1 = 0
6838 then (Wsi.namekey s, m)
6839 else (k, m lor m1)
6840 in function
6841 | Str.Delim s when n land 1 = 0 -> g s
6842 | Str.Text s -> g s
6843 | Str.Delim _ -> (k, m)
6845 let rec loop n k m = function
6846 | [] -> (k, m)
6847 | x :: xs ->
6848 let k, m = f n k m x in
6849 loop (n+1) k m xs
6851 loop 0 0 0 elems
6854 let keys_of_string =
6855 let r = Str.regexp "[ \t]" in
6856 fun s ->
6857 let elems = Str.split r s in
6858 List.map key_of_string elems
6861 let copykeyhashes c =
6862 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6865 let config_of c attrs =
6866 let apply c k v =
6868 match k with
6869 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6870 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6871 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6872 | "preload" -> { c with preload = bool_of_string v }
6873 | "page-bias" -> { c with pagebias = int_of_string v }
6874 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6875 | "horizontal-scroll-step" ->
6876 { c with hscrollstep = max (int_of_string v) 1 }
6877 | "auto-scroll-step" ->
6878 { c with autoscrollstep = max 0 (int_of_string v) }
6879 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6880 | "crop-hack" -> { c with crophack = bool_of_string v }
6881 | "throttle" ->
6882 let mw =
6883 match String.lowercase v with
6884 | "true" -> Some infinity
6885 | "false" -> None
6886 | f -> Some (float_of_string f)
6888 { c with maxwait = mw}
6889 | "highlight-links" -> { c with hlinks = bool_of_string v }
6890 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6891 | "vertical-margin" ->
6892 { c with interpagespace = max 0 (int_of_string v) }
6893 | "zoom" ->
6894 let zoom = float_of_string v /. 100. in
6895 let zoom = max zoom 0.0 in
6896 { c with zoom = zoom }
6897 | "presentation" -> { c with presentation = bool_of_string v }
6898 | "rotation-angle" -> { c with angle = int_of_string v }
6899 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6900 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6901 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6902 | "proportional-display" ->
6903 let fm =
6904 if bool_of_string v
6905 then FitProportional
6906 else FitWidth
6908 { c with fitmodel = fm }
6909 | "fit-model" -> { c with fitmodel = FMTE.of_string v }
6910 | "pixmap-cache-size" ->
6911 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6912 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6913 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6914 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6915 | "persistent-location" -> { c with jumpback = bool_of_string v }
6916 | "background-color" -> { c with bgcolor = color_of_string v }
6917 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6918 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6919 | "mupdf-store-size" ->
6920 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6921 | "checkers" -> { c with checkers = bool_of_string v }
6922 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6923 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6924 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6925 | "uri-launcher" -> { c with urilauncher = unent v }
6926 | "path-launcher" -> { c with pathlauncher = unent v }
6927 | "color-space" -> { c with colorspace = CSTE.of_string v }
6928 | "invert-colors" -> { c with invert = bool_of_string v }
6929 | "brightness" -> { c with colorscale = float_of_string v }
6930 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6931 | "ghyllscroll" -> { c with ghyllscroll = ghyllscroll_of_string v }
6932 | "columns" ->
6933 let (n, _, _) as nab = multicolumns_of_string v in
6934 if n < 0
6935 then { c with columns = Csplit (-n, [||]) }
6936 else { c with columns = Cmulti (nab, [||]) }
6937 | "birds-eye-columns" ->
6938 { c with beyecolumns = Some (max (int_of_string v) 2) }
6939 | "selection-command" -> { c with selcmd = unent v }
6940 | "synctex-command" -> { c with stcmd = unent v }
6941 | "pax-command" -> { c with paxcmd = unent v }
6942 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6943 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6944 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6945 | "use-pbo" -> { c with usepbo = bool_of_string v }
6946 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6947 | "horizontal-scrollbar-visible" ->
6948 let b =
6949 if bool_of_string v
6950 then c.scrollb lor scrollbhv
6951 else c.scrollb land (lnot scrollbhv)
6953 { c with scrollb = b }
6954 | "vertical-scrollbar-visible" ->
6955 let b =
6956 if bool_of_string v
6957 then c.scrollb lor scrollbvv
6958 else c.scrollb land (lnot scrollbvv)
6960 { c with scrollb = b }
6961 | "remote-in-a-new-instance" -> { c with riani = bool_of_string v }
6962 | "point-and-x" ->
6963 { c with pax =
6964 if bool_of_string v
6965 then Some (ref (0.0, 0, 0))
6966 else None }
6967 | "point-and-x-mark" -> { c with paxmark = MTE.of_string v }
6968 | _ -> c
6969 with exn ->
6970 prerr_endline ("Error processing attribute (`" ^
6971 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6974 let rec fold c = function
6975 | [] -> c
6976 | (k, v) :: rest ->
6977 let c = apply c k v in
6978 fold c rest
6980 fold { c with keyhashes = copykeyhashes c } attrs;
6983 let fromstring f pos n v d =
6984 try f v
6985 with exn ->
6986 dolog "Error processing attribute (%S=%S) at %d\n%s"
6987 n v pos (exntos exn)
6992 let bookmark_of attrs =
6993 let rec fold title page rely visy = function
6994 | ("title", v) :: rest -> fold v page rely visy rest
6995 | ("page", v) :: rest -> fold title v rely visy rest
6996 | ("rely", v) :: rest -> fold title page v visy rest
6997 | ("visy", v) :: rest -> fold title page rely v rest
6998 | _ :: rest -> fold title page rely visy rest
6999 | [] -> title, page, rely, visy
7001 fold "invalid" "0" "0" "0" attrs
7004 let doc_of attrs =
7005 let rec fold path page rely pan visy = function
7006 | ("path", v) :: rest -> fold v page rely pan visy rest
7007 | ("page", v) :: rest -> fold path v rely pan visy rest
7008 | ("rely", v) :: rest -> fold path page v pan visy rest
7009 | ("pan", v) :: rest -> fold path page rely v visy rest
7010 | ("visy", v) :: rest -> fold path page rely pan v rest
7011 | _ :: rest -> fold path page rely pan visy rest
7012 | [] -> path, page, rely, pan, visy
7014 fold "" "0" "0" "0" "0" attrs
7017 let map_of attrs =
7018 let rec fold rs ls = function
7019 | ("out", v) :: rest -> fold v ls rest
7020 | ("in", v) :: rest -> fold rs v rest
7021 | _ :: rest -> fold ls rs rest
7022 | [] -> ls, rs
7024 fold "" "" attrs
7027 let setconf dst src =
7028 dst.scrollbw <- src.scrollbw;
7029 dst.scrollh <- src.scrollh;
7030 dst.icase <- src.icase;
7031 dst.preload <- src.preload;
7032 dst.pagebias <- src.pagebias;
7033 dst.verbose <- src.verbose;
7034 dst.scrollstep <- src.scrollstep;
7035 dst.maxhfit <- src.maxhfit;
7036 dst.crophack <- src.crophack;
7037 dst.autoscrollstep <- src.autoscrollstep;
7038 dst.maxwait <- src.maxwait;
7039 dst.hlinks <- src.hlinks;
7040 dst.underinfo <- src.underinfo;
7041 dst.interpagespace <- src.interpagespace;
7042 dst.zoom <- src.zoom;
7043 dst.presentation <- src.presentation;
7044 dst.angle <- src.angle;
7045 dst.cwinw <- src.cwinw;
7046 dst.cwinh <- src.cwinh;
7047 dst.savebmarks <- src.savebmarks;
7048 dst.memlimit <- src.memlimit;
7049 dst.fitmodel <- src.fitmodel;
7050 dst.texcount <- src.texcount;
7051 dst.sliceheight <- src.sliceheight;
7052 dst.thumbw <- src.thumbw;
7053 dst.jumpback <- src.jumpback;
7054 dst.bgcolor <- src.bgcolor;
7055 dst.tilew <- src.tilew;
7056 dst.tileh <- src.tileh;
7057 dst.mustoresize <- src.mustoresize;
7058 dst.checkers <- src.checkers;
7059 dst.aalevel <- src.aalevel;
7060 dst.trimmargins <- src.trimmargins;
7061 dst.trimfuzz <- src.trimfuzz;
7062 dst.urilauncher <- src.urilauncher;
7063 dst.colorspace <- src.colorspace;
7064 dst.invert <- src.invert;
7065 dst.colorscale <- src.colorscale;
7066 dst.redirectstderr <- src.redirectstderr;
7067 dst.ghyllscroll <- src.ghyllscroll;
7068 dst.columns <- src.columns;
7069 dst.beyecolumns <- src.beyecolumns;
7070 dst.selcmd <- src.selcmd;
7071 dst.updatecurs <- src.updatecurs;
7072 dst.pathlauncher <- src.pathlauncher;
7073 dst.keyhashes <- copykeyhashes src;
7074 dst.hfsize <- src.hfsize;
7075 dst.hscrollstep <- src.hscrollstep;
7076 dst.pgscale <- src.pgscale;
7077 dst.usepbo <- src.usepbo;
7078 dst.wheelbypage <- src.wheelbypage;
7079 dst.stcmd <- src.stcmd;
7080 dst.paxcmd <- src.paxcmd;
7081 dst.scrollb <- src.scrollb;
7082 dst.riani <- src.riani;
7083 dst.paxmark <- src.paxmark;
7084 dst.pax <-
7085 if src.pax = None
7086 then None
7087 else Some ((ref (0.0, 0, 0)));
7090 let get s =
7091 let h = Hashtbl.create 10 in
7092 let dc = { defconf with angle = defconf.angle } in
7093 let rec toplevel v t spos _ =
7094 match t with
7095 | Vdata | Vcdata | Vend -> v
7096 | Vopen ("llppconfig", _, closed) ->
7097 if closed
7098 then v
7099 else { v with f = llppconfig }
7100 | Vopen _ ->
7101 error "unexpected subelement at top level" s spos
7102 | Vclose _ -> error "unexpected close at top level" s spos
7104 and llppconfig v t spos _ =
7105 match t with
7106 | Vdata | Vcdata -> v
7107 | Vend -> error "unexpected end of input in llppconfig" s spos
7108 | Vopen ("defaults", attrs, closed) ->
7109 let c = config_of dc attrs in
7110 setconf dc c;
7111 if closed
7112 then v
7113 else { v with f = defaults }
7115 | Vopen ("ui-font", attrs, closed) ->
7116 let rec getsize size = function
7117 | [] -> size
7118 | ("size", v) :: rest ->
7119 let size =
7120 fromstring int_of_string spos "size" v fstate.fontsize in
7121 getsize size rest
7122 | l -> getsize size l
7124 fstate.fontsize <- getsize fstate.fontsize attrs;
7125 if closed
7126 then v
7127 else { v with f = uifont (Buffer.create 10) }
7129 | Vopen ("doc", attrs, closed) ->
7130 let pathent, spage, srely, span, svisy = doc_of attrs in
7131 let path = unent pathent
7132 and pageno = fromstring int_of_string spos "page" spage 0
7133 and rely = fromstring float_of_string spos "rely" srely 0.0
7134 and pan = fromstring int_of_string spos "pan" span 0
7135 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
7136 let c = config_of dc attrs in
7137 let anchor = (pageno, rely, visy) in
7138 if closed
7139 then (Hashtbl.add h path (c, [], pan, anchor); v)
7140 else { v with f = doc path pan anchor c [] }
7142 | Vopen _ ->
7143 error "unexpected subelement in llppconfig" s spos
7145 | Vclose "llppconfig" -> { v with f = toplevel }
7146 | Vclose _ -> error "unexpected close in llppconfig" s spos
7148 and defaults v t spos _ =
7149 match t with
7150 | Vdata | Vcdata -> v
7151 | Vend -> error "unexpected end of input in defaults" s spos
7152 | Vopen ("keymap", attrs, closed) ->
7153 let modename =
7154 try List.assoc "mode" attrs
7155 with Not_found -> "global" in
7156 if closed
7157 then v
7158 else
7159 let ret keymap =
7160 let h = findkeyhash dc modename in
7161 KeyMap.iter (Hashtbl.replace h) keymap;
7162 defaults
7164 { v with f = pkeymap ret KeyMap.empty }
7166 | Vopen (_, _, _) ->
7167 error "unexpected subelement in defaults" s spos
7169 | Vclose "defaults" ->
7170 { v with f = llppconfig }
7172 | Vclose _ -> error "unexpected close in defaults" s spos
7174 and uifont b v t spos epos =
7175 match t with
7176 | Vdata | Vcdata ->
7177 Buffer.add_substring b s spos (epos - spos);
7179 | Vopen (_, _, _) ->
7180 error "unexpected subelement in ui-font" s spos
7181 | Vclose "ui-font" ->
7182 if emptystr !fontpath
7183 then fontpath := Buffer.contents b;
7184 { v with f = llppconfig }
7185 | Vclose _ -> error "unexpected close in ui-font" s spos
7186 | Vend -> error "unexpected end of input in ui-font" s spos
7188 and doc path pan anchor c bookmarks v t spos _ =
7189 match t with
7190 | Vdata | Vcdata -> v
7191 | Vend -> error "unexpected end of input in doc" s spos
7192 | Vopen ("bookmarks", _, closed) ->
7193 if closed
7194 then v
7195 else { v with f = pbookmarks path pan anchor c bookmarks }
7197 | Vopen ("keymap", attrs, closed) ->
7198 let modename =
7199 try List.assoc "mode" attrs
7200 with Not_found -> "global"
7202 if closed
7203 then v
7204 else
7205 let ret keymap =
7206 let h = findkeyhash c modename in
7207 KeyMap.iter (Hashtbl.replace h) keymap;
7208 doc path pan anchor c bookmarks
7210 { v with f = pkeymap ret KeyMap.empty }
7212 | Vopen (_, _, _) ->
7213 error "unexpected subelement in doc" s spos
7215 | Vclose "doc" ->
7216 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
7217 { v with f = llppconfig }
7219 | Vclose _ -> error "unexpected close in doc" s spos
7221 and pkeymap ret keymap v t spos _ =
7222 match t with
7223 | Vdata | Vcdata -> v
7224 | Vend -> error "unexpected end of input in keymap" s spos
7225 | Vopen ("map", attrs, closed) ->
7226 let r, l = map_of attrs in
7227 let kss = fromstring keys_of_string spos "in" r [] in
7228 let lss = fromstring keys_of_string spos "out" l [] in
7229 let keymap =
7230 match kss with
7231 | [] -> keymap
7232 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
7233 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
7235 if closed
7236 then { v with f = pkeymap ret keymap }
7237 else
7238 let f () = v in
7239 { v with f = skip "map" f }
7241 | Vopen _ ->
7242 error "unexpected subelement in keymap" s spos
7244 | Vclose "keymap" ->
7245 { v with f = ret keymap }
7247 | Vclose _ -> error "unexpected close in keymap" s spos
7249 and pbookmarks path pan anchor c bookmarks v t spos _ =
7250 match t with
7251 | Vdata | Vcdata -> v
7252 | Vend -> error "unexpected end of input in bookmarks" s spos
7253 | Vopen ("item", attrs, closed) ->
7254 let titleent, spage, srely, svisy = bookmark_of attrs in
7255 let page = fromstring int_of_string spos "page" spage 0
7256 and rely = fromstring float_of_string spos "rely" srely 0.0
7257 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
7258 let bookmarks =
7259 (unent titleent, 0, Oanchor (page, rely, visy)) :: bookmarks
7261 if closed
7262 then { v with f = pbookmarks path pan anchor c bookmarks }
7263 else
7264 let f () = v in
7265 { v with f = skip "item" f }
7267 | Vopen _ ->
7268 error "unexpected subelement in bookmarks" s spos
7270 | Vclose "bookmarks" ->
7271 { v with f = doc path pan anchor c bookmarks }
7273 | Vclose _ -> error "unexpected close in bookmarks" s spos
7275 and skip tag f v t spos _ =
7276 match t with
7277 | Vdata | Vcdata -> v
7278 | Vend ->
7279 error ("unexpected end of input in skipped " ^ tag) s spos
7280 | Vopen (tag', _, closed) ->
7281 if closed
7282 then v
7283 else
7284 let f' () = { v with f = skip tag f } in
7285 { v with f = skip tag' f' }
7286 | Vclose ctag ->
7287 if tag = ctag
7288 then f ()
7289 else error ("unexpected close in skipped " ^ tag) s spos
7292 parse { f = toplevel; accu = () } s;
7293 h, dc;
7296 let do_load f ic =
7298 let len = in_channel_length ic in
7299 let s = String.create len in
7300 really_input ic s 0 len;
7301 f s;
7302 with
7303 | Parse_error (msg, s, pos) ->
7304 let subs = subs s pos in
7305 Utils.error "parse error: %s: at %d [..%s..]" msg pos subs
7307 | exn ->
7308 failwith ("config load error: " ^ exntos exn)
7311 let defconfpath =
7312 let dir =
7314 let dir = Filename.concat home ".config" in
7315 if Sys.is_directory dir then dir else home
7316 with _ -> home
7318 Filename.concat dir "llpp.conf"
7321 let confpath = ref defconfpath;;
7323 let load1 f =
7324 if Sys.file_exists !confpath
7325 then
7326 match
7327 (try Some (open_in_bin !confpath)
7328 with exn ->
7329 prerr_endline
7330 ("Error opening configuration file `" ^ !confpath ^ "': " ^
7331 exntos exn);
7332 None
7334 with
7335 | Some ic ->
7336 let success =
7338 f (do_load get ic)
7339 with exn ->
7340 prerr_endline
7341 ("Error loading configuration from `" ^ !confpath ^ "': " ^
7342 exntos exn);
7343 false
7345 close_in ic;
7346 success
7348 | None -> false
7349 else
7350 f (Hashtbl.create 0, defconf)
7353 let load () =
7354 let f (h, dc) =
7355 let pc, pb, px, pa =
7357 let key =
7358 if emptystr state.origin
7359 then state.path
7360 else state.origin
7362 Hashtbl.find h (Filename.basename key)
7363 with Not_found -> dc, [], 0, emptyanchor
7365 setconf defconf dc;
7366 setconf conf pc;
7367 state.bookmarks <- pb;
7368 state.x <- px;
7369 if conf.jumpback
7370 then state.anchor <- pa;
7371 cbput state.hists.nav pa;
7372 true
7374 load1 f
7377 let add_attrs bb always dc c =
7378 let ob s a b =
7379 if always || a != b
7380 then Printf.bprintf bb "\n %s='%b'" s a
7381 and op s a b =
7382 if always || a <> b
7383 then Printf.bprintf bb "\n %s='%b'" s (a != None)
7384 and oi s a b =
7385 if always || a != b
7386 then Printf.bprintf bb "\n %s='%d'" s a
7387 and oI s a b =
7388 if always || a != b
7389 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
7390 and oz s a b =
7391 if always || a <> b
7392 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
7393 and oF s a b =
7394 if always || a <> b
7395 then Printf.bprintf bb "\n %s='%f'" s a
7396 and oc s a b =
7397 if always || a <> b
7398 then
7399 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
7400 and oC s a b =
7401 if always || a <> b
7402 then
7403 Printf.bprintf bb "\n %s='%s'" s (CSTE.to_string a)
7404 and oR s a b =
7405 if always || a <> b
7406 then
7407 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
7408 and os s a b =
7409 if always || a <> b
7410 then
7411 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
7412 and og s a b =
7413 if always || a <> b
7414 then
7415 match a with
7416 | Some (_N, _A, _B) ->
7417 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
7418 | None ->
7419 match b with
7420 | None -> ()
7421 | _ ->
7422 Printf.bprintf bb "\n %s='none'" s
7423 and oW s a b =
7424 if always || a <> b
7425 then
7426 let v =
7427 match a with
7428 | None -> "false"
7429 | Some f ->
7430 if f = infinity
7431 then "true"
7432 else string_of_float f
7434 Printf.bprintf bb "\n %s='%s'" s v
7435 and oco s a b =
7436 if always || a <> b
7437 then
7438 match a with
7439 | Cmulti ((n, a, b), _) when n > 1 ->
7440 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
7441 | Csplit (n, _) when n > 1 ->
7442 Printf.bprintf bb "\n %s='%d'" s ~-n
7443 | _ -> ()
7444 and obeco s a b =
7445 if always || a <> b
7446 then
7447 match a with
7448 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
7449 | _ -> ()
7450 and oFm s a b =
7451 if always || a <> b
7452 then
7453 Printf.bprintf bb "\n %s='%s'" s (FMTE.to_string a)
7454 and oSv s a b m =
7455 if always || a <> b
7456 then
7457 Printf.bprintf bb "\n %s='%b'" s (a land m != 0)
7458 and oPm s a b =
7459 if always || a <> b
7460 then
7461 Printf.bprintf bb "\n %s='%s'" s (MTE.to_string a)
7463 oi "width" c.cwinw dc.cwinw;
7464 oi "height" c.cwinh dc.cwinh;
7465 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
7466 oi "scroll-handle-height" c.scrollh dc.scrollh;
7467 oSv "horizontal-scrollbar-visible" c.scrollb dc.scrollb scrollbhv;
7468 oSv "vertical-scrollbar-visible" c.scrollb dc.scrollb scrollbvv;
7469 ob "case-insensitive-search" c.icase dc.icase;
7470 ob "preload" c.preload dc.preload;
7471 oi "page-bias" c.pagebias dc.pagebias;
7472 oi "scroll-step" c.scrollstep dc.scrollstep;
7473 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
7474 ob "max-height-fit" c.maxhfit dc.maxhfit;
7475 ob "crop-hack" c.crophack dc.crophack;
7476 oW "throttle" c.maxwait dc.maxwait;
7477 ob "highlight-links" c.hlinks dc.hlinks;
7478 ob "under-cursor-info" c.underinfo dc.underinfo;
7479 oi "vertical-margin" c.interpagespace dc.interpagespace;
7480 oz "zoom" c.zoom dc.zoom;
7481 ob "presentation" c.presentation dc.presentation;
7482 oi "rotation-angle" c.angle dc.angle;
7483 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
7484 oFm "fit-model" c.fitmodel dc.fitmodel;
7485 oI "pixmap-cache-size" c.memlimit dc.memlimit;
7486 oi "tex-count" c.texcount dc.texcount;
7487 oi "slice-height" c.sliceheight dc.sliceheight;
7488 oi "thumbnail-width" c.thumbw dc.thumbw;
7489 ob "persistent-location" c.jumpback dc.jumpback;
7490 oc "background-color" c.bgcolor dc.bgcolor;
7491 oi "tile-width" c.tilew dc.tilew;
7492 oi "tile-height" c.tileh dc.tileh;
7493 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
7494 ob "checkers" c.checkers dc.checkers;
7495 oi "aalevel" c.aalevel dc.aalevel;
7496 ob "trim-margins" c.trimmargins dc.trimmargins;
7497 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
7498 os "uri-launcher" c.urilauncher dc.urilauncher;
7499 os "path-launcher" c.pathlauncher dc.pathlauncher;
7500 oC "color-space" c.colorspace dc.colorspace;
7501 ob "invert-colors" c.invert dc.invert;
7502 oF "brightness" c.colorscale dc.colorscale;
7503 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
7504 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
7505 oco "columns" c.columns dc.columns;
7506 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
7507 os "selection-command" c.selcmd dc.selcmd;
7508 os "synctex-command" c.stcmd dc.stcmd;
7509 os "pax-command" c.paxcmd dc.paxcmd;
7510 ob "update-cursor" c.updatecurs dc.updatecurs;
7511 oi "hint-font-size" c.hfsize dc.hfsize;
7512 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
7513 oF "page-scroll-scale" c.pgscale dc.pgscale;
7514 ob "use-pbo" c.usepbo dc.usepbo;
7515 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
7516 ob "remote-in-a-new-instance" c.riani dc.riani;
7517 op "point-and-x" c.pax dc.pax;
7518 oPm "point-and-x-mark" c.paxmark dc.paxmark;
7521 let keymapsbuf always dc c =
7522 let bb = Buffer.create 16 in
7523 let rec loop = function
7524 | [] -> ()
7525 | (modename, h) :: rest ->
7526 let dh = findkeyhash dc modename in
7527 if always || h <> dh
7528 then (
7529 if Hashtbl.length h > 0
7530 then (
7531 if Buffer.length bb > 0
7532 then Buffer.add_char bb '\n';
7533 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
7534 Hashtbl.iter (fun i o ->
7535 let isdifferent = always ||
7537 let dO = Hashtbl.find dh i in
7538 dO <> o
7539 with Not_found -> true
7541 if isdifferent
7542 then
7543 let addkm (k, m) =
7544 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
7545 if Wsi.withalt m then Buffer.add_string bb "alt-";
7546 if Wsi.withshift m then Buffer.add_string bb "shift-";
7547 if Wsi.withmeta m then Buffer.add_string bb "meta-";
7548 Buffer.add_string bb (Wsi.keyname k);
7550 let addkms l =
7551 let rec loop = function
7552 | [] -> ()
7553 | km :: [] -> addkm km
7554 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
7556 loop l
7558 Buffer.add_string bb "<map in='";
7559 addkm i;
7560 match o with
7561 | KMinsrt km ->
7562 Buffer.add_string bb "' out='";
7563 addkm km;
7564 Buffer.add_string bb "'/>\n"
7566 | KMinsrl kms ->
7567 Buffer.add_string bb "' out='";
7568 addkms kms;
7569 Buffer.add_string bb "'/>\n"
7571 | KMmulti (ins, kms) ->
7572 Buffer.add_char bb ' ';
7573 addkms ins;
7574 Buffer.add_string bb "' out='";
7575 addkms kms;
7576 Buffer.add_string bb "'/>\n"
7577 ) h;
7578 Buffer.add_string bb "</keymap>";
7581 loop rest
7583 loop c.keyhashes;
7587 let save () =
7588 let uifontsize = fstate.fontsize in
7589 let bb = Buffer.create 32768 in
7590 let relx = float state.x /. float state.winw in
7591 let w, h, x =
7592 let cx w = truncate (relx *. float w) in
7593 List.fold_left
7594 (fun (w, h, x) ws ->
7595 match ws with
7596 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh, cx conf.cwinw)
7597 | Wsi.MaxVert -> (w, conf.cwinh, x)
7598 | Wsi.MaxHorz -> (conf.cwinw, h, cx conf.cwinw)
7600 (state.winw, state.winh, state.x) state.winstate
7602 conf.cwinw <- w;
7603 conf.cwinh <- h;
7604 let f (h, dc) =
7605 let dc = if conf.bedefault then conf else dc in
7606 Buffer.add_string bb "<llppconfig>\n";
7608 if nonemptystr !fontpath
7609 then
7610 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
7611 uifontsize
7612 !fontpath
7613 else (
7614 if uifontsize <> 14
7615 then
7616 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
7619 Buffer.add_string bb "<defaults";
7620 add_attrs bb true dc dc;
7621 let kb = keymapsbuf true dc dc in
7622 if Buffer.length kb > 0
7623 then (
7624 Buffer.add_string bb ">\n";
7625 Buffer.add_buffer bb kb;
7626 Buffer.add_string bb "\n</defaults>\n";
7628 else Buffer.add_string bb "/>\n";
7630 let adddoc path pan anchor c bookmarks =
7631 if bookmarks == [] && c = dc && anchor = emptyanchor
7632 then ()
7633 else (
7634 Printf.bprintf bb "<doc path='%s'"
7635 (enent path 0 (String.length path));
7637 if anchor <> emptyanchor
7638 then (
7639 let n, rely, visy = anchor in
7640 Printf.bprintf bb " page='%d'" n;
7641 if rely > 1e-6
7642 then
7643 Printf.bprintf bb " rely='%f'" rely
7645 if abs_float visy > 1e-6
7646 then
7647 Printf.bprintf bb " visy='%f'" visy
7651 if pan != 0
7652 then Printf.bprintf bb " pan='%d'" pan;
7654 add_attrs bb false dc c;
7655 let kb = keymapsbuf false dc c in
7657 begin match bookmarks with
7658 | [] ->
7659 if Buffer.length kb > 0
7660 then (
7661 Buffer.add_string bb ">\n";
7662 Buffer.add_buffer bb kb;
7663 Buffer.add_string bb "\n</doc>\n";
7665 else Buffer.add_string bb "/>\n"
7666 | _ ->
7667 Buffer.add_string bb ">\n<bookmarks>\n";
7668 List.iter (fun (title, _, kind) ->
7669 begin match kind with
7670 | Oanchor (page, rely, visy) ->
7671 Printf.bprintf bb
7672 "<item title='%s' page='%d'"
7673 (enent title 0 (String.length title))
7674 page
7676 if rely > 1e-6
7677 then
7678 Printf.bprintf bb " rely='%f'" rely
7680 if abs_float visy > 1e-6
7681 then
7682 Printf.bprintf bb " visy='%f'" visy
7684 | Onone | Ouri _ | Oremote _ | Oremotedest _ | Olaunch _ ->
7685 failwith "unexpected link in bookmarks"
7686 end;
7687 Buffer.add_string bb "/>\n";
7688 ) bookmarks;
7689 Buffer.add_string bb "</bookmarks>";
7690 if Buffer.length kb > 0
7691 then (
7692 Buffer.add_string bb "\n";
7693 Buffer.add_buffer bb kb;
7695 Buffer.add_string bb "\n</doc>\n";
7696 end;
7700 let pan, conf =
7701 match state.mode with
7702 | Birdseye (c, pan, _, _, _) ->
7703 let beyecolumns =
7704 match conf.columns with
7705 | Cmulti ((c, _, _), _) -> Some c
7706 | Csingle _ -> None
7707 | Csplit _ -> None
7708 and columns =
7709 match c.columns with
7710 | Cmulti (c, _) -> Cmulti (c, [||])
7711 | Csingle _ -> Csingle [||]
7712 | Csplit _ -> failwith "quit from bird's eye while split"
7714 pan, { c with beyecolumns = beyecolumns; columns = columns }
7715 | _ -> x, conf
7717 let basename = Filename.basename
7718 (if emptystr state.origin then state.path else state.origin)
7720 adddoc basename pan (getanchor ())
7721 (let autoscrollstep =
7722 match state.autoscroll with
7723 | Some step -> step
7724 | None -> conf.autoscrollstep
7725 in begin match state.mode with
7726 | Birdseye beye -> leavebirdseye beye true;
7727 | _ -> ()
7728 end;
7729 { conf with autoscrollstep = autoscrollstep })
7730 (if conf.savebmarks then state.bookmarks else []);
7732 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
7733 if basename <> path
7734 then adddoc path x anchor c bookmarks
7735 ) h;
7736 Buffer.add_string bb "</llppconfig>\n";
7737 true;
7739 if load1 f && Buffer.length bb > 0
7740 then
7742 let tmp = !confpath ^ ".tmp" in
7743 let oc = open_out_bin tmp in
7744 Buffer.output_buffer oc bb;
7745 close_out oc;
7746 Unix.rename tmp !confpath;
7747 with exn ->
7748 prerr_endline
7749 ("error while saving configuration: " ^ exntos exn)
7751 end;;
7753 let adderrmsg src msg =
7754 Buffer.add_string state.errmsgs msg;
7755 state.newerrmsgs <- true;
7756 G.postRedisplay src
7759 let adderrfmt src fmt =
7760 Format.kprintf (fun s -> adderrmsg src s) fmt;
7763 let ract cmds =
7764 let cl = splitatspace cmds in
7765 let scan s fmt f =
7766 try Scanf.sscanf s fmt f
7767 with exn ->
7768 adderrfmt "remote exec"
7769 "error processing '%S': %s\n" cmds (exntos exn)
7771 match cl with
7772 | "reload" :: [] -> reload ()
7773 | "goto" :: args :: [] ->
7774 scan args "%u %f %f"
7775 (fun pageno x y ->
7776 let cmd, _ = state.geomcmds in
7777 if emptystr cmd
7778 then gotopagexy pageno x y
7779 else
7780 let f prevf () =
7781 gotopagexy pageno x y;
7782 prevf ()
7784 state.reprf <- f state.reprf
7786 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7787 | "gotor" :: args :: [] ->
7788 scan args "%S %u"
7789 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
7790 | "gotord" :: args :: [] ->
7791 scan args "%S %S"
7792 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
7793 | "rect" :: args :: [] ->
7794 scan args "%u %u %f %f %f %f"
7795 (fun pageno color x0 y0 x1 y1 ->
7796 onpagerect pageno (fun w h ->
7797 let _,w1,h1,_ = getpagedim pageno in
7798 let sw = float w1 /. float w
7799 and sh = float h1 /. float h in
7800 let x0s = x0 *. sw
7801 and x1s = x1 *. sw
7802 and y0s = y0 *. sh
7803 and y1s = y1 *. sh in
7804 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7805 debugrect rect;
7806 state.rects <- (pageno, color, rect) :: state.rects;
7807 G.postRedisplay "rect";
7810 | "activatewin" :: [] -> Wsi.activatewin ()
7811 | "quit" :: [] -> raise Quit
7812 | _ ->
7813 adderrfmt "remote command"
7814 "error processing remote command: %S\n" cmds;
7817 let remote =
7818 let scratch = String.create 80 in
7819 let buf = Buffer.create 80 in
7820 fun fd ->
7821 let rec tempfr () =
7822 try Some (Unix.read fd scratch 0 80)
7823 with
7824 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7825 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7826 | exn -> raise exn
7828 match tempfr () with
7829 | None -> Some fd
7830 | Some n ->
7831 if n = 0
7832 then (
7833 Unix.close fd;
7834 if Buffer.length buf > 0
7835 then (
7836 let s = Buffer.contents buf in
7837 Buffer.clear buf;
7838 ract s;
7840 None
7842 else
7843 let rec eat ppos =
7844 let nlpos =
7846 let pos = String.index_from scratch ppos '\n' in
7847 if pos >= n then -1 else pos
7848 with Not_found -> -1
7850 if nlpos >= 0
7851 then (
7852 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7853 let s = Buffer.contents buf in
7854 Buffer.clear buf;
7855 ract s;
7856 eat (nlpos+1);
7858 else (
7859 Buffer.add_substring buf scratch ppos (n-ppos);
7860 Some fd
7862 in eat 0
7865 let remoteopen path =
7866 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7867 with exn ->
7868 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7869 None
7872 let () =
7873 let trimcachepath = ref "" in
7874 let rcmdpath = ref "" in
7875 let pageno = ref None in
7876 selfexec := Sys.executable_name;
7877 Arg.parse
7878 (Arg.align
7879 [("-p", Arg.String (fun s -> state.password <- s),
7880 "<password> Set password");
7882 ("-f", Arg.String
7883 (fun s ->
7884 Config.fontpath := s;
7885 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
7887 "<path> Set path to the user interface font");
7889 ("-c", Arg.String
7890 (fun s ->
7891 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
7892 Config.confpath := s),
7893 "<path> Set path to the configuration file");
7895 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
7896 "<page-number> Jump to page");
7898 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7899 "<path> Set path to the trim cache file");
7901 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7902 "<named-destination> Set named destination");
7904 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7905 ("-cxack", Arg.Set cxack, " Cut corners");
7907 ("-remote", Arg.String (fun s -> rcmdpath := s),
7908 "<path> Set path to the remote commands source");
7910 ("-origin", Arg.String (fun s -> state.origin <- s),
7911 "<original-path> Set original path");
7913 ("-v", Arg.Unit (fun () ->
7914 Printf.printf
7915 "%s\nconfiguration path: %s\n"
7916 (version ())
7917 Config.defconfpath
7919 exit 0), " Print version and exit");
7922 (fun s -> state.path <- s)
7923 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7925 if !wtmode
7926 then selfexec := !selfexec ^ " -wtmode";
7928 if emptystr state.path
7929 then (prerr_endline "file name missing"; exit 1);
7931 if not (Config.load ())
7932 then prerr_endline "failed to load configuration";
7933 begin match !pageno with
7934 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
7935 | None -> ()
7936 end;
7938 let wsfd, winw, winh = Wsi.init (object (self)
7939 val mutable m_hack = false
7940 val mutable m_clicks = 0
7941 val mutable m_click_x = 0
7942 val mutable m_click_y = 0
7943 val mutable m_lastclicktime = infinity
7945 method private cleanup =
7946 state.roam <- noroam;
7947 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
7948 method expose = if not m_hack then G.postRedisplay "expose"
7949 method visible = G.postRedisplay "visible"
7950 method display = m_hack <- false; display ()
7951 method reshape w h =
7952 self#cleanup;
7953 m_hack <- w < state.winw && h < state.winh;
7954 reshape w h
7955 method mouse b d x y m =
7956 if d && canselect ()
7957 then (
7958 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
7959 m_click_x <- x;
7960 m_click_y <- y;
7961 if b = 1
7962 then (
7963 let t = now () in
7964 if abs x - m_click_x > 10
7965 || abs y - m_click_y > 10
7966 || abs_float (t -. m_lastclicktime) > 0.3
7967 then m_clicks <- 0;
7968 m_clicks <- m_clicks + 1;
7969 m_lastclicktime <- t;
7970 if m_clicks = 1
7971 then (
7972 self#cleanup;
7973 G.postRedisplay "cleanup";
7974 state.uioh <- state.uioh#button b d x y m;
7976 else state.uioh <- state.uioh#multiclick m_clicks x y m
7978 else (
7979 self#cleanup;
7980 m_clicks <- 0;
7981 m_lastclicktime <- infinity;
7982 state.uioh <- state.uioh#button b d x y m
7985 else (
7986 state.uioh <- state.uioh#button b d x y m
7988 method motion x y =
7989 state.mpos <- (x, y);
7990 state.uioh <- state.uioh#motion x y
7991 method pmotion x y =
7992 state.mpos <- (x, y);
7993 state.uioh <- state.uioh#pmotion x y
7994 method key k m =
7995 let mascm = m land (
7996 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
7997 ) in
7998 let keyboard k m =
7999 let x = state.x and y = state.y in
8000 keyboard k m;
8001 if x != state.x || y != state.y then self#cleanup
8003 match state.keystate with
8004 | KSnone ->
8005 let km = k, mascm in
8006 begin
8007 match
8008 let modehash = state.uioh#modehash in
8009 try Hashtbl.find modehash km
8010 with Not_found ->
8011 try Hashtbl.find (findkeyhash conf "global") km
8012 with Not_found -> KMinsrt (k, m)
8013 with
8014 | KMinsrt (k, m) -> keyboard k m
8015 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
8016 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
8018 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
8019 List.iter (fun (k, m) -> keyboard k m) insrt;
8020 state.keystate <- KSnone
8021 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
8022 state.keystate <- KSinto (keys, insrt)
8023 | _ ->
8024 state.keystate <- KSnone
8026 method enter x y =
8027 state.mpos <- (x, y);
8028 state.uioh <- state.uioh#pmotion x y
8029 method leave = state.mpos <- (-1, -1)
8030 method winstate wsl = state.winstate <- wsl; m_hack <- false
8031 method quit = raise Quit
8032 end) conf.cwinw conf.cwinh (platform = Posx) in
8034 state.wsfd <- wsfd;
8036 if not (
8037 List.exists GlMisc.check_extension
8038 [ "GL_ARB_texture_rectangle"
8039 ; "GL_EXT_texture_recangle"
8040 ; "GL_NV_texture_rectangle" ]
8042 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
8044 if (
8045 let r = GlMisc.get_string `renderer in
8046 let p = "Mesa DRI Intel(" in
8047 let l = String.length p in
8048 String.length r > l && String.sub r 0 l = p
8050 then (
8051 defconf.sliceheight <- 1024;
8052 defconf.texcount <- 32;
8053 defconf.usepbo <- true;
8056 let cr, sw =
8057 match Ne.res Unix.pipe with
8058 | Ne.Exn exn ->
8059 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
8060 exit 1
8061 | Ne.Res rw -> rw
8062 and sr, cw =
8063 match Ne.res Unix.pipe with
8064 | Ne.Exn exn ->
8065 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
8066 exit 1
8067 | Ne.Res rw -> rw
8070 cloexec cr;
8071 cloexec sw;
8072 cloexec sr;
8073 cloexec cw;
8075 setcheckers conf.checkers;
8076 redirectstderr ();
8077 if conf.redirectstderr
8078 then
8079 at_exit (fun () ->
8080 let s = Buffer.contents state.errmsgs ^
8081 (match state.errfd with
8082 | Some fd ->
8083 let s = String.create (80*24) in
8084 let n =
8086 let r, _, _ = Unix.select [fd] [] [] 0.0 in
8087 if List.mem fd r
8088 then Unix.read fd s 0 (String.length s)
8089 else 0
8090 with _ -> 0
8092 if n = 0
8093 then ""
8094 else String.sub s 0 n
8095 | None -> ""
8098 try ignore (Unix.write state.stderr s 0 (String.length s))
8099 with exn -> print_endline (exntos exn)
8103 init (cr, cw) (
8104 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
8105 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
8106 !Config.fontpath, !trimcachepath,
8107 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
8109 List.iter GlArray.enable [`texture_coord; `vertex];
8110 state.sr <- sr;
8111 state.sw <- sw;
8112 state.text <- "Opening " ^ (mbtoutf8 state.path);
8113 reshape winw winh;
8114 opendoc state.path state.password;
8115 state.uioh <- uioh;
8116 display ();
8117 Wsi.mapwin ();
8118 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
8119 let optrfd =
8120 ref (
8121 if nonemptystr !rcmdpath
8122 then remoteopen !rcmdpath
8123 else None
8127 let rec loop deadline =
8128 let r =
8129 match state.errfd with
8130 | None -> [state.sr; state.wsfd]
8131 | Some fd -> [state.sr; state.wsfd; fd]
8133 let r =
8134 match !optrfd with
8135 | None -> r
8136 | Some fd -> fd :: r
8138 if state.redisplay
8139 then (
8140 state.redisplay <- false;
8141 display ();
8143 let timeout =
8144 let now = now () in
8145 if deadline > now
8146 then (
8147 if deadline = infinity
8148 then ~-.1.0
8149 else max 0.0 (deadline -. now)
8151 else 0.0
8153 let r, _, _ =
8154 try Unix.select r [] [] timeout
8155 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
8157 begin match r with
8158 | [] ->
8159 state.ghyll None;
8160 let newdeadline =
8161 if state.ghyll == noghyll
8162 then
8163 match state.autoscroll with
8164 | Some step when step != 0 ->
8165 let y = state.y + step in
8166 let y =
8167 if y < 0
8168 then state.maxy
8169 else if y >= state.maxy then 0 else y
8171 gotoy y;
8172 if state.mode = View
8173 then state.text <- "";
8174 deadline +. 0.01
8175 | _ -> infinity
8176 else deadline +. 0.01
8178 loop newdeadline
8180 | l ->
8181 let rec checkfds = function
8182 | [] -> ()
8183 | fd :: rest when fd = state.sr ->
8184 let cmd = readcmd state.sr in
8185 act cmd;
8186 checkfds rest
8188 | fd :: rest when fd = state.wsfd ->
8189 Wsi.readresp fd;
8190 checkfds rest
8192 | fd :: rest when Some fd = !optrfd ->
8193 begin match remote fd with
8194 | None -> optrfd := remoteopen !rcmdpath;
8195 | opt -> optrfd := opt
8196 end;
8197 checkfds rest
8199 | fd :: rest ->
8200 let s = String.create 80 in
8201 let n = tempfailureretry (Unix.read fd s 0) 80 in
8202 if conf.redirectstderr
8203 then (
8204 Buffer.add_substring state.errmsgs s 0 n;
8205 state.newerrmsgs <- true;
8206 state.redisplay <- true;
8208 else (
8209 prerr_string (String.sub s 0 n);
8210 flush stderr;
8212 checkfds rest
8214 checkfds l;
8215 let newdeadline =
8216 let deadline1 =
8217 if deadline = infinity
8218 then now () +. 0.01
8219 else deadline
8221 match state.autoscroll with
8222 | Some step when step != 0 -> deadline1
8223 | _ -> if state.ghyll == noghyll then infinity else deadline1
8225 loop newdeadline
8226 end;
8229 loop infinity;
8230 with Quit ->
8231 Config.save ();