Remove default ghyll scroll
[llpp.git] / main.ml
blob5f9739ed80f1aa5a31266f79e06e743e0814e557
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\n" 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 GlTex.env (`mode `blend);
1643 drawtile params opaque;
1644 if conf.invert
1645 then GlTex.env (`mode `modulate);
1646 if conf.debug
1647 then (
1648 endtiles ();
1649 let s = Printf.sprintf
1650 "%d[%d,%d] %f sec"
1651 l.pageno col row t
1653 let w = measurestr fstate.fontsize s in
1654 GlDraw.color (0.0, 0.0, 0.0);
1655 filledrect (float (x-2))
1656 (float (y-2))
1657 (float (x+2) +. w)
1658 (float (y + fstate.fontsize + 2));
1659 GlDraw.color (1.0, 1.0, 1.0);
1660 drawstring fstate.fontsize x (y + fstate.fontsize - 1) s;
1661 begintiles ();
1664 | None ->
1665 endtiles ();
1666 let w =
1667 let lw = wadjsb state.winw - x in
1668 min lw w
1669 and h =
1670 let lh = state.winh - y in
1671 min lh h
1673 if conf.invert
1674 then GlTex.env (`mode `blend);
1675 begin match state.texid with
1676 | Some id ->
1677 Gl.enable `texture_2d;
1678 GlTex.bind_texture `texture_2d id;
1679 let x0 = float x
1680 and y0 = float y
1681 and x1 = float (x+w)
1682 and y1 = float (y+h) in
1684 let tw = float w /. 16.0
1685 and th = float h /. 16.0 in
1686 let tx0 = float tilex /. 16.0
1687 and ty0 = float tiley /. 16.0 in
1688 let tx1 = tx0 +. tw
1689 and ty1 = ty0 +. th in
1690 Raw.sets_float state.vraw ~pos:0
1691 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
1692 Raw.sets_float state.traw ~pos:0
1693 [| tx0; ty0; tx0; ty1; tx1; ty0; tx1; ty1 |];
1694 GlArray.vertex `two state.vraw;
1695 GlArray.tex_coord `two state.traw;
1696 GlArray.draw_arrays `triangle_strip 0 4;
1697 Gl.disable `texture_2d;
1699 | None ->
1700 GlDraw.color (1.0, 1.0, 1.0);
1701 filledrect (float x) (float y) (float (x+w)) (float (y+h));
1702 end;
1703 if conf.invert
1704 then GlTex.env (`mode `modulate);
1705 if w > 128 && h > fstate.fontsize + 10
1706 then (
1707 let c = if conf.invert then 1.0 else 0.0 in
1708 GlDraw.color (c, c, c);
1709 let c, r =
1710 if conf.verbose
1711 then (col*conf.tilew, row*conf.tileh)
1712 else col, row
1714 drawstring2 fstate.fontsize x y "Loading %d [%d,%d]" l.pageno c r;
1716 GlDraw.color color;
1717 begintiles ();
1719 itertiles l f;
1720 endtiles ();
1723 let pagevisible layout n = List.exists (fun l -> l.pageno = n) layout;;
1725 let tilevisible1 l x y =
1726 let ax0 = l.pagex
1727 and ax1 = l.pagex + l.pagevw
1728 and ay0 = l.pagey
1729 and ay1 = l.pagey + l.pagevh in
1731 let bx0 = x
1732 and by0 = y in
1733 let bx1 = min (bx0 + conf.tilew) l.pagew
1734 and by1 = min (by0 + conf.tileh) l.pageh in
1736 let rx0 = max ax0 bx0
1737 and ry0 = max ay0 by0
1738 and rx1 = min ax1 bx1
1739 and ry1 = min ay1 by1 in
1741 let nonemptyintersection = rx1 > rx0 && ry1 > ry0 in
1742 nonemptyintersection
1745 let tilevisible layout n x y =
1746 let rec findpageinlayout m = function
1747 | l :: rest when l.pageno = n ->
1748 tilevisible1 l x y || (
1749 match conf.columns with
1750 | Csplit (c, _) when c > m -> findpageinlayout (m+1) rest
1751 | _ -> false
1753 | _ :: rest -> findpageinlayout 0 rest
1754 | [] -> false
1756 findpageinlayout 0 layout;
1759 let tileready l x y =
1760 tilevisible1 l x y &&
1761 gettileopaque l (x/conf.tilew) (y/conf.tileh) != None
1764 let tilepage n p layout =
1765 let rec loop = function
1766 | l :: rest ->
1767 if l.pageno = n
1768 then
1769 let f col row _ _ _ _ _ _ =
1770 if state.currently = Idle
1771 then
1772 match gettileopaque l col row with
1773 | Some _ -> ()
1774 | None ->
1775 let x = col*conf.tilew
1776 and y = row*conf.tileh in
1777 let w =
1778 let w = l.pagew - x in
1779 min w conf.tilew
1781 let h =
1782 let h = l.pageh - y in
1783 min h conf.tileh
1785 let pbo =
1786 if conf.usepbo
1787 then getpbo w h conf.colorspace
1788 else ~< "0"
1790 wcmd "tile %s %d %d %d %d %s"
1791 (~> p) x y w h (~> pbo);
1792 state.currently <-
1793 Tiling (
1794 l, p, conf.colorspace, conf.angle,
1795 state.gen, col, row, conf.tilew, conf.tileh
1798 itertiles l f;
1799 else
1800 loop rest
1802 | [] -> ()
1804 if nogeomcmds state.geomcmds
1805 then loop layout;
1808 let preloadlayout y =
1809 let y = if y < state.winh then 0 else y - state.winh in
1810 let h = state.winh*3 in
1811 layout y h;
1814 let load pages =
1815 let rec loop pages =
1816 if state.currently != Idle
1817 then ()
1818 else
1819 match pages with
1820 | l :: rest ->
1821 begin match getopaque l.pageno with
1822 | None ->
1823 wcmd "page %d %d" l.pageno l.pagedimno;
1824 state.currently <- Loading (l, state.gen);
1825 | Some opaque ->
1826 tilepage l.pageno opaque pages;
1827 loop rest
1828 end;
1829 | _ -> ()
1831 if nogeomcmds state.geomcmds
1832 then loop pages
1835 let preload pages =
1836 load pages;
1837 if conf.preload && state.currently = Idle
1838 then load (preloadlayout state.y);
1841 let layoutready layout =
1842 let rec fold all ls =
1843 all && match ls with
1844 | l :: rest ->
1845 let seen = ref false in
1846 let allvisible = ref true in
1847 let foo col row _ _ _ _ _ _ =
1848 seen := true;
1849 allvisible := !allvisible &&
1850 begin match gettileopaque l col row with
1851 | Some _ -> true
1852 | None -> false
1855 itertiles l foo;
1856 fold (!seen && !allvisible) rest
1857 | [] -> true
1859 let alltilesvisible = fold true layout in
1860 alltilesvisible;
1863 let gotoy y =
1864 let y = bound y 0 state.maxy in
1865 let y, layout, proceed =
1866 match conf.maxwait with
1867 | Some time when state.ghyll == noghyll ->
1868 begin match state.throttle with
1869 | None ->
1870 let layout = layout y state.winh in
1871 let ready = layoutready layout in
1872 if not ready
1873 then (
1874 load layout;
1875 state.throttle <- Some (layout, y, now ());
1877 else G.postRedisplay "gotoy showall (None)";
1878 y, layout, ready
1879 | Some (_, _, started) ->
1880 let dt = now () -. started in
1881 if dt > time
1882 then (
1883 state.throttle <- None;
1884 let layout = layout y state.winh in
1885 load layout;
1886 G.postRedisplay "maxwait";
1887 y, layout, true
1889 else -1, [], false
1892 | _ ->
1893 let layout = layout y state.winh in
1894 if not !wtmode || layoutready layout
1895 then G.postRedisplay "gotoy ready";
1896 y, layout, true
1898 if proceed
1899 then (
1900 state.y <- y;
1901 state.layout <- layout;
1902 begin match state.mode with
1903 | LinkNav (Ltexact (pageno, linkno)) ->
1904 let rec loop = function
1905 | [] ->
1906 state.mode <- LinkNav (Ltgendir 0)
1907 | l :: _ when l.pageno = pageno ->
1908 begin match getopaque pageno with
1909 | None ->
1910 state.mode <- LinkNav (Ltgendir 0)
1911 | Some opaque ->
1912 let x0, y0, x1, y1 = getlinkrect opaque linkno in
1913 if not (x0 >= l.pagex && x1 <= l.pagex + l.pagevw
1914 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
1915 then state.mode <- LinkNav (Ltgendir 0)
1917 | _ :: rest -> loop rest
1919 loop layout
1920 | _ -> ()
1921 end;
1922 begin match state.mode with
1923 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
1924 if not (pagevisible layout pageno)
1925 then (
1926 match state.layout with
1927 | [] -> ()
1928 | l :: _ ->
1929 state.mode <- Birdseye (
1930 conf, leftx, l.pageno, hooverpageno, anchor
1933 | LinkNav (Ltgendir dir as lt) ->
1934 let linknav =
1935 let rec loop = function
1936 | [] -> lt
1937 | l :: rest ->
1938 match getopaque l.pageno with
1939 | None -> loop rest
1940 | Some opaque ->
1941 let link =
1942 let ld =
1943 if dir = 0
1944 then LDfirstvisible (l.pagex, l.pagey, dir)
1945 else (
1946 if dir > 0 then LDfirst else LDlast
1949 findlink opaque ld
1951 match link with
1952 | Lnotfound -> loop rest
1953 | Lfound n ->
1954 showlinktype (getlink opaque n);
1955 Ltexact (l.pageno, n)
1957 loop state.layout
1959 state.mode <- LinkNav linknav
1960 | _ -> ()
1961 end;
1962 preload layout;
1964 state.ghyll <- noghyll;
1965 if conf.updatecurs
1966 then (
1967 let mx, my = state.mpos in
1968 updateunder mx my;
1972 let conttiling pageno opaque =
1973 tilepage pageno opaque
1974 (if conf.preload then preloadlayout state.y else state.layout)
1977 let gotoy_and_clear_text y =
1978 if not conf.verbose then state.text <- "";
1979 gotoy y;
1982 let getanchor1 l =
1983 let top =
1984 let coloff = l.pagecol * l.pageh in
1985 float (l.pagey + coloff) /. float l.pageh
1987 let dtop =
1988 if l.pagedispy = 0
1989 then
1991 else (
1992 if conf.presentation
1993 then float l.pagedispy /. float (calcips l.pageh)
1994 else float l.pagedispy /. float conf.interpagespace
1997 (l.pageno, top, dtop)
2000 let getanchor () =
2001 match state.layout with
2002 | l :: _ -> getanchor1 l
2003 | [] ->
2004 let n = page_of_y state.y in
2005 if n = -1
2006 then state.anchor
2007 else
2008 let y, h = getpageyh n in
2009 let dy = y - state.y in
2010 let dtop =
2011 if conf.presentation
2012 then
2013 let ips = calcips h in
2014 float (dy + ips) /. float ips
2015 else
2016 float dy /. float conf.interpagespace
2018 (n, 0.0, dtop)
2021 let getanchory (n, top, dtop) =
2022 let y, h = getpageyh n in
2023 if conf.presentation
2024 then
2025 let ips = calcips h in
2026 y + truncate (top*.float h -. dtop*.float ips) + ips;
2027 else
2028 y + truncate (top*.float h -. dtop*.float conf.interpagespace)
2031 let gotoanchor anchor =
2032 gotoy (getanchory anchor);
2035 let addnav () =
2036 cbput state.hists.nav (getanchor ());
2039 let getnav dir =
2040 let anchor = cbgetc state.hists.nav dir in
2041 getanchory anchor;
2044 let gotoghyll1 single y =
2045 let scroll f n a b =
2046 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
2047 let snake f a b =
2048 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
2049 if f < a
2050 then s (float f /. float a)
2051 else (
2052 if f > b
2053 then 1.0 -. s ((float (f-b) /. float (n-b)))
2054 else 1.0
2057 snake f a b
2058 and summa n a b =
2059 let ins = float a *. 0.5
2060 and outs = float (n-b) *. 0.5 in
2061 let ones = b - a in
2062 ins +. outs +. float ones
2064 let rec set nab y sy =
2065 let (_N, _A, _B), y =
2066 if single
2067 then
2068 let scl = if y > sy then 2 else -2 in
2069 let _N, _, _ = nab in
2070 (_N,0,_N), y+conf.scrollstep*scl
2071 else nab,y in
2072 let sum = summa _N _A _B in
2073 let dy = float (y - sy) in
2074 state.ghyll <- (
2075 let rec gf n y1 o =
2076 if n >= _N
2077 then state.ghyll <- noghyll
2078 else
2079 let go n =
2080 let s = scroll n _N _A _B in
2081 let y1 = y1 +. ((s *. dy) /. sum) in
2082 gotoy_and_clear_text (truncate y1);
2083 state.ghyll <- gf (n+1) y1;
2085 match o with
2086 | None -> go n
2087 | Some y' when single -> set nab y' state.y
2088 | Some y' -> set (_N/2, 1, 1) y' state.y
2090 gf 0 (float state.y)
2093 match conf.ghyllscroll with
2094 | Some nab when not conf.presentation ->
2095 if state.ghyll == noghyll
2096 then set nab y state.y
2097 else state.ghyll (Some y)
2098 | _ ->
2099 gotoy_and_clear_text y
2102 let gotoghyll = gotoghyll1 false;;
2104 let gotopage n top =
2105 let y, h = getpageyh n in
2106 let y = y + (truncate (top *. float h)) in
2107 gotoghyll y
2110 let gotopage1 n top =
2111 let y = getpagey n in
2112 let y = y + top in
2113 gotoghyll y
2116 let invalidate s f =
2117 state.layout <- [];
2118 state.pdims <- [];
2119 state.rects <- [];
2120 state.rects1 <- [];
2121 match state.geomcmds with
2122 | ps, [] when emptystr ps ->
2123 f ();
2124 state.geomcmds <- s, [];
2126 | ps, [] ->
2127 state.geomcmds <- ps, [s, f];
2129 | ps, (s', _) :: rest when s' = s ->
2130 state.geomcmds <- ps, ((s, f) :: rest);
2132 | ps, cmds ->
2133 state.geomcmds <- ps, ((s, f) :: cmds);
2136 let flushpages () =
2137 Hashtbl.iter (fun _ opaque ->
2138 wcmd "freepage %s" (~> opaque);
2139 ) state.pagemap;
2140 Hashtbl.clear state.pagemap;
2143 let flushtiles () =
2144 if not (Queue.is_empty state.tilelru)
2145 then (
2146 Queue.iter (fun (k, p, s) ->
2147 wcmd "freetile %s" (~> p);
2148 state.memused <- state.memused - s;
2149 Hashtbl.remove state.tilemap k;
2150 ) state.tilelru;
2151 state.uioh#infochanged Memused;
2152 Queue.clear state.tilelru;
2154 load state.layout;
2157 let stateh h =
2158 let h = truncate (float h*.conf.zoom) in
2159 let d = conf.interpagespace lsl (if conf.presentation then 1 else 0) in
2160 h - d
2163 let opendoc path password =
2164 state.path <- path;
2165 state.password <- password;
2166 state.gen <- state.gen + 1;
2167 state.docinfo <- [];
2169 flushpages ();
2170 setaalevel conf.aalevel;
2171 let titlepath =
2172 if emptystr state.origin
2173 then path
2174 else state.origin
2176 Wsi.settitle ("llpp " ^ (mbtoutf8 (Filename.basename titlepath)));
2177 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password;
2178 invalidate "reqlayout"
2179 (fun () ->
2180 wcmd "reqlayout %d %d %d %s\000"
2181 conf.angle (FMTE.to_int conf.fitmodel)
2182 (stateh state.winh) state.nameddest
2186 let reload () =
2187 state.anchor <- getanchor ();
2188 opendoc state.path state.password;
2191 let scalecolor c =
2192 let c = c *. conf.colorscale in
2193 (c, c, c);
2196 let scalecolor2 (r, g, b) =
2197 (r *. conf.colorscale, g *. conf.colorscale, b *. conf.colorscale);
2200 let docolumns = function
2201 | Csingle _ ->
2202 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
2203 let rec loop pageno pdimno pdim y ph pdims =
2204 if pageno = state.pagecount
2205 then ()
2206 else
2207 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2208 match pdims with
2209 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2210 pdimno+1, pdim, rest
2211 | _ ->
2212 pdimno, pdim, pdims
2214 let x = max 0 (((wadjsb state.winw - w) / 2) - xoff) in
2215 let y = y +
2216 (if conf.presentation
2217 then (if pageno = 0 then calcips h else calcips ph + calcips h)
2218 else (if pageno = 0 then 0 else conf.interpagespace)
2221 a.(pageno) <- (pdimno, x, y, pdim);
2222 loop (pageno+1) pdimno pdim (y + h) h pdims
2224 loop 0 ~-1 (-1,-1,-1,-1) 0 0 state.pdims;
2225 conf.columns <- Csingle a;
2227 | Cmulti ((columns, coverA, coverB), _) ->
2228 let a = Array.make state.pagecount (-1, -1, -1, (-1, -1, -1, -1)) in
2229 let rec loop pageno pdimno pdim x y rowh pdims =
2230 let rec fixrow m = if m = pageno then () else
2231 let (pdimno, x, y, ((_, _, h, _) as pdim)) = a.(m) in
2232 if h < rowh
2233 then (
2234 let y = y + (rowh - h) / 2 in
2235 a.(m) <- (pdimno, x, y, pdim);
2237 fixrow (m+1)
2239 if pageno = state.pagecount
2240 then fixrow (((pageno - 1) / columns) * columns)
2241 else
2242 let pdimno, ((_, w, h, xoff) as pdim), pdims =
2243 match pdims with
2244 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2245 pdimno+1, pdim, rest
2246 | _ ->
2247 pdimno, pdim, pdims
2249 let x, y, rowh' =
2250 if pageno = coverA - 1 || pageno = state.pagecount - coverB
2251 then (
2252 let x = (wadjsb state.winw - w) / 2 in
2253 let ips =
2254 if conf.presentation then calcips h else conf.interpagespace in
2255 x, y + ips + rowh, h
2257 else (
2258 if (pageno - coverA) mod columns = 0
2259 then (
2260 let x = max 0 (wadjsb state.winw - state.w) / 2 in
2261 let y =
2262 if conf.presentation
2263 then
2264 let ips = calcips h in
2265 y + (if pageno = 0 then 0 else calcips rowh + ips)
2266 else
2267 y + (if pageno = 0 then 0 else conf.interpagespace)
2269 x, y + rowh, h
2271 else x, y, max rowh h
2274 let y =
2275 if pageno > 1 && (pageno - coverA) mod columns = 0
2276 then (
2277 let y =
2278 if pageno = columns && conf.presentation
2279 then (
2280 let ips = calcips rowh in
2281 for i = 0 to pred columns
2283 let (pdimno, x, y, pdim) = a.(i) in
2284 a.(i) <- (pdimno, x, y+ips, pdim)
2285 done;
2286 y+ips;
2288 else y
2290 fixrow (pageno - columns);
2293 else y
2295 a.(pageno) <- (pdimno, x, y, pdim);
2296 let x = x + w + xoff*2 + conf.interpagespace in
2297 loop (pageno+1) pdimno pdim x y rowh' pdims
2299 loop 0 ~-1 (-1,-1,-1,-1) 0 0 0 state.pdims;
2300 conf.columns <- Cmulti ((columns, coverA, coverB), a);
2302 | Csplit (c, _) ->
2303 let a = Array.make (state.pagecount*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2304 let rec loop pageno pdimno pdim y pdims =
2305 if pageno = state.pagecount
2306 then ()
2307 else
2308 let pdimno, ((_, w, h, _) as pdim), pdims =
2309 match pdims with
2310 | ((pageno', _, _, _) as pdim) :: rest when pageno' = pageno ->
2311 pdimno+1, pdim, rest
2312 | _ ->
2313 pdimno, pdim, pdims
2315 let cw = w / c in
2316 let rec loop1 n x y =
2317 if n = c then y else (
2318 a.(pageno*c + n) <- (pdimno, x, y, pdim);
2319 loop1 (n+1) (x+cw) (y + h + conf.interpagespace)
2322 let y = loop1 0 0 y in
2323 loop (pageno+1) pdimno pdim y pdims
2325 loop 0 ~-1 (-1,-1,-1,-1) 0 state.pdims;
2326 conf.columns <- Csplit (c, a);
2329 let represent () =
2330 docolumns conf.columns;
2331 state.maxy <- calcheight ();
2332 if state.reprf == noreprf
2333 then (
2334 match state.mode with
2335 | Birdseye (_, _, pageno, _, _) ->
2336 let y, h = getpageyh pageno in
2337 let top = (state.winh - h) / 2 in
2338 gotoy (max 0 (y - top))
2339 | _ -> gotoanchor state.anchor
2341 else (
2342 state.reprf ();
2343 state.reprf <- noreprf;
2347 let reshape w h =
2348 GlDraw.viewport 0 0 w h;
2349 let firsttime = state.geomcmds == firstgeomcmds in
2350 if not firsttime && nogeomcmds state.geomcmds
2351 then state.anchor <- getanchor ();
2353 state.winw <- w;
2354 let w = wadjsb (truncate (float w *. conf.zoom)) in
2355 let w = max w 2 in
2356 state.winh <- h;
2357 setfontsize fstate.fontsize;
2358 GlMat.mode `modelview;
2359 GlMat.load_identity ();
2361 GlMat.mode `projection;
2362 GlMat.load_identity ();
2363 GlMat.rotate ~x:1.0 ~angle:180.0 ();
2364 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
2365 GlMat.scale3 (2.0 /. float state.winw, 2.0 /. float state.winh, 1.0);
2367 let relx =
2368 if conf.zoom <= 1.0
2369 then 0.0
2370 else float state.x /. float state.w
2372 invalidate "geometry"
2373 (fun () ->
2374 state.w <- w;
2375 if not firsttime
2376 then state.x <- truncate (relx *. float w);
2377 let w =
2378 match conf.columns with
2379 | Csingle _ -> w
2380 | Cmulti ((c, _, _), _) -> (w - (c-1)*conf.interpagespace) / c
2381 | Csplit (c, _) -> w * c
2383 wcmd "geometry %d %d %d"
2384 w (stateh h) (FMTE.to_int conf.fitmodel)
2388 let enttext () =
2389 let len = String.length state.text in
2390 let drawstring s =
2391 let hscrollh =
2392 match state.mode with
2393 | Textentry _ | View | LinkNav _ ->
2394 let h, _, _ = state.uioh#scrollpw in
2396 | _ -> 0
2398 let rect x w =
2399 filledrect x (float (state.winh - (fstate.fontsize + 4) - hscrollh))
2400 (x+.w) (float (state.winh - hscrollh))
2403 let w = float (wadjsb state.winw - 1) in
2404 if state.progress >= 0.0 && state.progress < 1.0
2405 then (
2406 GlDraw.color (0.3, 0.3, 0.3);
2407 let w1 = w *. state.progress in
2408 rect 0.0 w1;
2409 GlDraw.color (0.0, 0.0, 0.0);
2410 rect w1 (w-.w1)
2412 else (
2413 GlDraw.color (0.0, 0.0, 0.0);
2414 rect 0.0 w;
2417 GlDraw.color (1.0, 1.0, 1.0);
2418 drawstring fstate.fontsize
2419 (if len > 0 then 8 else 2) (state.winh - hscrollh - 5) s;
2421 let s =
2422 match state.mode with
2423 | Textentry ((prefix, text, _, _, _, _), _) ->
2424 let s =
2425 if len > 0
2426 then
2427 Printf.sprintf "%s%s_ [%s]" prefix text state.text
2428 else
2429 Printf.sprintf "%s%s_" prefix text
2433 | _ -> state.text
2435 let s =
2436 if state.newerrmsgs
2437 then (
2438 if not (istextentry state.mode) && state.uioh#eformsgs
2439 then
2440 let s1 = "(press 'e' to review error messasges)" in
2441 if nonemptystr s then s ^ " " ^ s1 else s1
2442 else s
2444 else s
2446 if nonemptystr s
2447 then drawstring s
2450 let gctiles () =
2451 let len = Queue.length state.tilelru in
2452 let layout = lazy (
2453 match state.throttle with
2454 | None ->
2455 if conf.preload
2456 then preloadlayout state.y
2457 else state.layout
2458 | Some (layout, _, _) ->
2459 layout
2460 ) in
2461 let rec loop qpos =
2462 if state.memused <= conf.memlimit
2463 then ()
2464 else (
2465 if qpos < len
2466 then
2467 let (k, p, s) as lruitem = Queue.pop state.tilelru in
2468 let n, gen, colorspace, angle, pagew, pageh, col, row = k in
2469 let (_, pw, ph, _) = getpagedim n in
2471 gen = state.gen
2472 && colorspace = conf.colorspace
2473 && angle = conf.angle
2474 && pagew = pw
2475 && pageh = ph
2476 && (
2477 let x = col*conf.tilew
2478 and y = row*conf.tileh in
2479 tilevisible (Lazy.force_val layout) n x y
2481 then Queue.push lruitem state.tilelru
2482 else (
2483 freepbo p;
2484 wcmd "freetile %s" (~> p);
2485 state.memused <- state.memused - s;
2486 state.uioh#infochanged Memused;
2487 Hashtbl.remove state.tilemap k;
2489 loop (qpos+1)
2492 loop 0
2495 let logcurrently = function
2496 | Idle -> dolog "Idle"
2497 | Loading (l, gen) ->
2498 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
2499 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
2500 dolog
2501 "Tiling %d[%d,%d] page=%s cs=%s angle"
2502 l.pageno col row (~> pageopaque)
2503 (CSTE.to_string colorspace)
2505 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2506 angle gen conf.angle state.gen
2507 tilew tileh
2508 conf.tilew conf.tileh
2510 | Outlining _ ->
2511 dolog "outlining"
2514 let splitatspace =
2515 let r = Str.regexp " " in
2516 fun s -> Str.bounded_split r s 2;
2519 let onpagerect pageno f =
2520 let b =
2521 match conf.columns with
2522 | Cmulti (_, b) -> b
2523 | Csingle b -> b
2524 | Csplit (_, b) -> b
2526 if pageno >= 0 && pageno < Array.length b
2527 then
2528 let (_, _, _, (w, h, _, _)) = b.(pageno) in
2529 f w h
2532 let gotopagexy1 pageno x y =
2533 let _,w1,h1,leftx = getpagedim pageno in
2534 let top = y /. (float h1) in
2535 let left = x /. (float w1) in
2536 let py, w, h = getpageywh pageno in
2537 let wh = state.winh - hscrollh () in
2538 let x = left *. (float w) in
2539 let x = leftx + state.x + truncate x in
2540 let sx =
2541 if x < 0 || x >= wadjsb state.winw
2542 then state.x - x
2543 else state.x
2545 let pdy = truncate (top *. float h) in
2546 let y' = py + pdy in
2547 let dy = y' - state.y in
2548 let sy =
2549 if x != state.x || not (dy > 0 && dy < wh)
2550 then (
2551 if conf.presentation
2552 then
2553 if abs (py - y') > wh
2554 then y'
2555 else py
2556 else y';
2558 else state.y
2560 if state.x != sx || state.y != sy
2561 then (
2562 let x, y =
2563 if !wtmode
2564 then (
2565 let ww = wadjsb state.winw in
2566 let qx = sx / ww
2567 and qy = pdy / wh in
2568 let x = qx * ww
2569 and y = py + qy * wh in
2570 let x = if -x + ww > w1 then -(w1-ww) else x
2571 and y' = if y + wh > state.maxy then state.maxy - wh else y in
2572 let y =
2573 if conf.presentation
2574 then
2575 if abs (py - y') > wh
2576 then y'
2577 else py
2578 else y';
2580 (x, y)
2582 else (sx, sy)
2584 state.x <- x;
2585 gotoy_and_clear_text y;
2587 else gotoy_and_clear_text state.y;
2590 let gotopagexy pageno x y =
2591 match state.mode with
2592 | Birdseye _ -> gotopage pageno 0.0
2593 | _ -> gotopagexy1 pageno x y
2596 let act cmds =
2597 (* dolog "%S" cmds; *)
2598 let cl = splitatspace cmds in
2599 let scan s fmt f =
2600 try Scanf.sscanf s fmt f
2601 with exn ->
2602 dolog "error processing '%S': %s" cmds (exntos exn);
2603 exit 1
2605 let addoutline outline =
2606 match state.currently with
2607 | Outlining outlines ->
2608 state.currently <- Outlining (outline :: outlines)
2609 | Idle -> state.currently <- Outlining [outline]
2610 | currently ->
2611 dolog "invalid outlining state";
2612 logcurrently currently
2614 match cl with
2615 | "clear" :: [] ->
2616 state.uioh#infochanged Pdim;
2617 state.pdims <- [];
2619 | "clearrects" :: [] ->
2620 state.rects <- state.rects1;
2621 G.postRedisplay "clearrects";
2623 | "continue" :: args :: [] ->
2624 let n = scan args "%u" (fun n -> n) in
2625 state.pagecount <- n;
2626 begin match state.currently with
2627 | Outlining l ->
2628 state.currently <- Idle;
2629 state.outlines <- Array.of_list (List.rev l)
2630 | _ -> ()
2631 end;
2633 let cur, cmds = state.geomcmds in
2634 if emptystr cur
2635 then failwith "umpossible";
2637 begin match List.rev cmds with
2638 | [] ->
2639 state.geomcmds <- "", [];
2640 state.throttle <- None;
2641 represent ();
2642 | (s, f) :: rest ->
2643 f ();
2644 state.geomcmds <- s, List.rev rest;
2645 end;
2646 if conf.maxwait = None && not !wtmode
2647 then G.postRedisplay "continue";
2649 | "title" :: args :: [] ->
2650 Wsi.settitle args
2652 | "msg" :: args :: [] ->
2653 showtext ' ' args
2655 | "vmsg" :: args :: [] ->
2656 if conf.verbose
2657 then showtext ' ' args
2659 | "emsg" :: args :: [] ->
2660 Buffer.add_string state.errmsgs args;
2661 state.newerrmsgs <- true;
2662 G.postRedisplay "error message"
2664 | "progress" :: args :: [] ->
2665 let progress, text =
2666 scan args "%f %n"
2667 (fun f pos ->
2668 f, String.sub args pos (String.length args - pos))
2670 state.text <- text;
2671 state.progress <- progress;
2672 G.postRedisplay "progress"
2674 | "firstmatch" :: args :: [] ->
2675 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2676 scan args "%u %d %f %f %f %f %f %f %f %f"
2677 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2678 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2680 let y = (getpagey pageno) + truncate y0 in
2681 addnav ();
2682 gotoy y;
2683 state.rects1 <- [pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)]
2685 | "match" :: args :: [] ->
2686 let pageno, c, x0, y0, x1, y1, x2, y2, x3, y3 =
2687 scan args "%u %d %f %f %f %f %f %f %f %f"
2688 (fun p c x0 y0 x1 y1 x2 y2 x3 y3 ->
2689 (p, c, x0, y0, x1, y1, x2, y2, x3, y3))
2691 state.rects1 <-
2692 (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) :: state.rects1
2694 | "page" :: args :: [] ->
2695 let pageopaques, t = scan args "%s %f" (fun p t -> p, t) in
2696 let pageopaque = ~< pageopaques in
2697 begin match state.currently with
2698 | Loading (l, gen) ->
2699 vlog "page %d took %f sec" l.pageno t;
2700 Hashtbl.replace state.pagemap (l.pageno, gen) pageopaque;
2701 begin match state.throttle with
2702 | None ->
2703 let preloadedpages =
2704 if conf.preload
2705 then preloadlayout state.y
2706 else state.layout
2708 let evict () =
2709 let set =
2710 List.fold_left (fun s l -> IntSet.add l.pageno s)
2711 IntSet.empty preloadedpages
2713 let evictedpages =
2714 Hashtbl.fold (fun ((pageno, _) as key) opaque accu ->
2715 if not (IntSet.mem pageno set)
2716 then (
2717 wcmd "freepage %s" (~> opaque);
2718 key :: accu
2720 else accu
2721 ) state.pagemap []
2723 List.iter (Hashtbl.remove state.pagemap) evictedpages;
2725 evict ();
2726 state.currently <- Idle;
2727 if gen = state.gen
2728 then (
2729 tilepage l.pageno pageopaque state.layout;
2730 load state.layout;
2731 load preloadedpages;
2732 if pagevisible state.layout l.pageno
2733 && layoutready state.layout
2734 then G.postRedisplay "page";
2737 | Some (layout, _, _) ->
2738 state.currently <- Idle;
2739 tilepage l.pageno pageopaque layout;
2740 load state.layout
2741 end;
2743 | _ ->
2744 dolog "Inconsistent loading state";
2745 logcurrently state.currently;
2746 exit 1
2749 | "tile" :: args :: [] ->
2750 let (x, y, opaques, size, t) =
2751 scan args "%u %u %s %u %f"
2752 (fun x y p size t -> (x, y, p, size, t))
2754 let opaque = ~< opaques in
2755 begin match state.currently with
2756 | Tiling (l, pageopaque, cs, angle, gen, col, row, tilew, tileh) ->
2757 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t;
2759 unmappbo opaque;
2760 if tilew != conf.tilew || tileh != conf.tileh
2761 then (
2762 wcmd "freetile %s" (~> opaque);
2763 state.currently <- Idle;
2764 load state.layout;
2766 else (
2767 puttileopaque l col row gen cs angle opaque size t;
2768 state.memused <- state.memused + size;
2769 state.uioh#infochanged Memused;
2770 gctiles ();
2771 Queue.push ((l.pageno, gen, cs, angle, l.pagew, l.pageh, col, row),
2772 opaque, size) state.tilelru;
2774 let layout =
2775 match state.throttle with
2776 | None -> state.layout
2777 | Some (layout, _, _) -> layout
2780 state.currently <- Idle;
2781 if gen = state.gen
2782 && conf.colorspace = cs
2783 && conf.angle = angle
2784 && tilevisible layout l.pageno x y
2785 then conttiling l.pageno pageopaque;
2787 begin match state.throttle with
2788 | None ->
2789 preload state.layout;
2790 if gen = state.gen
2791 && conf.colorspace = cs
2792 && conf.angle = angle
2793 && tilevisible state.layout l.pageno x y
2794 && (not !wtmode || layoutready state.layout)
2795 then G.postRedisplay "tile nothrottle";
2797 | Some (layout, y, _) ->
2798 let ready = layoutready layout in
2799 if ready
2800 then (
2801 state.y <- y;
2802 state.layout <- layout;
2803 state.throttle <- None;
2804 G.postRedisplay "throttle";
2806 else load layout;
2807 end;
2810 | _ ->
2811 dolog "Inconsistent tiling state";
2812 logcurrently state.currently;
2813 exit 1
2816 | "pdim" :: args :: [] ->
2817 let (n, w, h, _) as pdim =
2818 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2820 let pdim =
2821 match conf.fitmodel, conf.columns with
2822 | (FitPage | FitProportional), Csplit _ -> (n, w, h, 0)
2823 | _ -> pdim
2825 state.uioh#infochanged Pdim;
2826 state.pdims <- pdim :: state.pdims
2828 | "o" :: args :: [] ->
2829 let (l, n, t, h, pos) =
2830 scan args "%u %u %d %u %n"
2831 (fun l n t h pos -> l, n, t, h, pos)
2833 let s = String.sub args pos (String.length args - pos) in
2834 addoutline (s, l, Oanchor (n, float t /. float h, 0.0))
2836 | "ou" :: args :: [] ->
2837 let (l, len, pos) = scan args "%u %u %n" (fun l len pos -> l, len, pos) in
2838 let s = String.sub args pos len in
2839 let pos2 = pos + len + 1 in
2840 let uri = String.sub args pos2 (String.length args - pos2) in
2841 addoutline (s, l, Ouri uri)
2843 | "on" :: args :: [] ->
2844 let (l, pos) = scan args "%u %n" (fun l pos -> l, pos) in
2845 let s = String.sub args pos (String.length args - pos) in
2846 addoutline (s, l, Onone)
2848 | "a" :: args :: [] ->
2849 let (n, l, t) =
2850 scan args "%u %d %d" (fun n l t -> n, l, t)
2852 state.reprf <- (fun () -> gotopagexy n (float l) (float t))
2854 | "info" :: args :: [] ->
2855 state.docinfo <- (1, args) :: state.docinfo
2857 | "infoend" :: [] ->
2858 state.uioh#infochanged Docinfo;
2859 state.docinfo <- List.rev state.docinfo
2861 | _ ->
2862 error "unknown cmd `%S'" cmds
2865 let onhist cb =
2866 let rc = cb.rc in
2867 let action = function
2868 | HCprev -> cbget cb ~-1
2869 | HCnext -> cbget cb 1
2870 | HCfirst -> cbget cb ~-(cb.rc)
2871 | HClast -> cbget cb (cb.len - 1 - cb.rc)
2872 and cancel () = cb.rc <- rc
2873 in (action, cancel)
2876 let search pattern forward =
2877 match conf.columns with
2878 | Csplit _ ->
2879 showtext '!' "searching does not work properly in split columns mode"
2880 | _ ->
2881 if nonemptystr pattern
2882 then
2883 let pn, py =
2884 match state.layout with
2885 | [] -> 0, 0
2886 | l :: _ ->
2887 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
2889 wcmd "search %d %d %d %d,%s\000"
2890 (btod conf.icase) pn py (btod forward) pattern;
2893 let intentry text key =
2894 let c =
2895 if key >= 32 && key < 127
2896 then Char.chr key
2897 else '\000'
2899 match c with
2900 | '0' .. '9' ->
2901 let text = addchar text c in
2902 TEcont text
2904 | _ ->
2905 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2906 TEcont text
2909 let linknentry text key =
2910 let c =
2911 if key >= 32 && key < 127
2912 then Char.chr key
2913 else '\000'
2915 match c with
2916 | 'a' .. 'z' ->
2917 let text = addchar text c in
2918 TEcont text
2920 | _ ->
2921 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
2922 TEcont text
2925 let linkndone f s =
2926 if nonemptystr s
2927 then (
2928 let n =
2929 let l = String.length s in
2930 let rec loop pos n = if pos = l then n else
2931 let m = Char.code s.[pos] - (if pos = 0 && l > 1 then 96 else 97) in
2932 loop (pos+1) (n*26 + m)
2933 in loop 0 0
2935 let rec loop n = function
2936 | [] -> ()
2937 | l :: rest ->
2938 match getopaque l.pageno with
2939 | None -> loop n rest
2940 | Some opaque ->
2941 let m = getlinkcount opaque in
2942 if n < m
2943 then (
2944 let under = getlink opaque n in
2945 f under
2947 else loop (n-m) rest
2949 loop n state.layout;
2953 let textentry text key =
2954 if key land 0xff00 = 0xff00
2955 then TEcont text
2956 else TEcont (text ^ toutf8 key)
2959 let reqlayout angle fitmodel =
2960 match state.throttle with
2961 | None ->
2962 if nogeomcmds state.geomcmds
2963 then state.anchor <- getanchor ();
2964 conf.angle <- angle mod 360;
2965 if conf.angle != 0
2966 then (
2967 match state.mode with
2968 | LinkNav _ -> state.mode <- View
2969 | _ -> ()
2971 conf.fitmodel <- fitmodel;
2972 invalidate "reqlayout"
2973 (fun () ->
2974 wcmd "reqlayout %d %d %d"
2975 conf.angle (FMTE.to_int conf.fitmodel) (stateh state.winh)
2977 | _ -> ()
2980 let settrim trimmargins trimfuzz =
2981 if nogeomcmds state.geomcmds
2982 then state.anchor <- getanchor ();
2983 conf.trimmargins <- trimmargins;
2984 conf.trimfuzz <- trimfuzz;
2985 let x0, y0, x1, y1 = trimfuzz in
2986 invalidate "settrim"
2987 (fun () ->
2988 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins) x0 y0 x1 y1);
2989 flushpages ();
2992 let setzoom zoom =
2993 match state.throttle with
2994 | None ->
2995 let zoom = max 0.0001 zoom in
2996 if zoom <> conf.zoom
2997 then (
2998 state.prevzoom <- (conf.zoom, state.x);
2999 conf.zoom <- zoom;
3000 reshape state.winw state.winh;
3001 state.text <- Printf.sprintf "zoom is now %-5.2f" (zoom *. 100.0);
3004 | Some (layout, y, started) ->
3005 let time =
3006 match conf.maxwait with
3007 | None -> 0.0
3008 | Some t -> t
3010 let dt = now () -. started in
3011 if dt > time
3012 then (
3013 state.y <- y;
3014 load layout;
3018 let setcolumns mode columns coverA coverB =
3019 state.prevcolumns <- Some (conf.columns, conf.zoom);
3020 if columns < 0
3021 then (
3022 if isbirdseye mode
3023 then showtext '!' "split mode doesn't work in bird's eye"
3024 else (
3025 conf.columns <- Csplit (-columns, [||]);
3026 state.x <- 0;
3027 conf.zoom <- 1.0;
3030 else (
3031 if columns < 2
3032 then (
3033 conf.columns <- Csingle [||];
3034 state.x <- 0;
3035 setzoom 1.0;
3037 else (
3038 conf.columns <- Cmulti ((columns, coverA, coverB), [||]);
3039 conf.zoom <- 1.0;
3042 reshape state.winw state.winh;
3045 let resetmstate () =
3046 state.mstate <- Mnone;
3047 Wsi.setcursor Wsi.CURSOR_INHERIT;
3050 let enterbirdseye () =
3051 let zoom = float conf.thumbw /. float state.winw in
3052 let birdseyepageno =
3053 let cy = state.winh / 2 in
3054 let fold = function
3055 | [] -> 0
3056 | l :: rest ->
3057 let rec fold best = function
3058 | [] -> best.pageno
3059 | l :: rest ->
3060 let d = cy - (l.pagedispy + l.pagevh/2)
3061 and dbest = cy - (best.pagedispy + best.pagevh/2) in
3062 if abs d < abs dbest
3063 then fold l rest
3064 else best.pageno
3065 in fold l rest
3067 fold state.layout
3069 state.mode <- Birdseye (
3070 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
3072 resetmstate ();
3073 conf.zoom <- zoom;
3074 conf.presentation <- false;
3075 conf.interpagespace <- 10;
3076 conf.hlinks <- false;
3077 conf.fitmodel <- FitProportional;
3078 state.x <- 0;
3079 conf.maxwait <- None;
3080 conf.columns <- (
3081 match conf.beyecolumns with
3082 | Some c ->
3083 conf.zoom <- 1.0;
3084 Cmulti ((c, 0, 0), [||])
3085 | None -> Csingle [||]
3087 if conf.verbose
3088 then
3089 state.text <- Printf.sprintf "birds eye mode on (zoom %3.1f%%)"
3090 (100.0*.zoom)
3091 else
3092 state.text <- ""
3094 reshape state.winw state.winh;
3097 let leavebirdseye (c, leftx, pageno, _, anchor) goback =
3098 state.mode <- View;
3099 conf.zoom <- c.zoom;
3100 conf.presentation <- c.presentation;
3101 conf.interpagespace <- c.interpagespace;
3102 conf.maxwait <- c.maxwait;
3103 conf.hlinks <- c.hlinks;
3104 conf.fitmodel <- c.fitmodel;
3105 conf.beyecolumns <- (
3106 match conf.columns with
3107 | Cmulti ((c, _, _), _) -> Some c
3108 | Csingle _ -> None
3109 | Csplit _ -> failwith "leaving bird's eye split mode"
3111 conf.columns <- (
3112 match c.columns with
3113 | Cmulti (c, _) -> Cmulti (c, [||])
3114 | Csingle _ -> Csingle [||]
3115 | Csplit (c, _) -> Csplit (c, [||])
3117 if conf.verbose
3118 then
3119 state.text <- Printf.sprintf "birds eye mode off (zoom %3.1f%%)"
3120 (100.0*.conf.zoom)
3122 reshape state.winw state.winh;
3123 state.anchor <- if goback then anchor else (pageno, 0.0, 1.0);
3124 state.x <- leftx;
3127 let togglebirdseye () =
3128 match state.mode with
3129 | Birdseye vals -> leavebirdseye vals true
3130 | View -> enterbirdseye ()
3131 | _ -> ()
3134 let upbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
3135 let pageno = max 0 (pageno - incr) in
3136 let rec loop = function
3137 | [] -> gotopage1 pageno 0
3138 | l :: _ when l.pageno = pageno ->
3139 if l.pagedispy >= 0 && l.pagey = 0
3140 then G.postRedisplay "upbirdseye"
3141 else gotopage1 pageno 0
3142 | _ :: rest -> loop rest
3144 loop state.layout;
3145 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor)
3148 let downbirdseye incr (conf, leftx, pageno, hooverpageno, anchor) =
3149 let pageno = min (state.pagecount - 1) (pageno + incr) in
3150 state.mode <- Birdseye (conf, leftx, pageno, hooverpageno, anchor);
3151 let rec loop = function
3152 | [] ->
3153 let y, h = getpageyh pageno in
3154 let dy = (y - state.y) - (state.winh - h - conf.interpagespace) in
3155 gotoy (clamp dy)
3156 | l :: _ when l.pageno = pageno ->
3157 if l.pagevh != l.pageh
3158 then gotoy (clamp (l.pageh - l.pagevh + conf.interpagespace))
3159 else G.postRedisplay "downbirdseye"
3160 | _ :: rest -> loop rest
3162 loop state.layout
3165 let boundastep h step =
3166 if step < 0
3167 then bound step ~-h 0
3168 else bound step 0 h
3171 let optentry mode _ key =
3172 let btos b = if b then "on" else "off" in
3173 if key >= 32 && key < 127
3174 then
3175 let c = Char.chr key in
3176 match c with
3177 | 's' ->
3178 let ondone s =
3179 try conf.scrollstep <- int_of_string s with exc ->
3180 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3182 TEswitch ("scroll step: ", "", None, intentry, ondone, true)
3184 | 'A' ->
3185 let ondone s =
3187 conf.autoscrollstep <- boundastep state.winh (int_of_string s);
3188 if state.autoscroll <> None
3189 then state.autoscroll <- Some conf.autoscrollstep
3190 with exc ->
3191 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3193 TEswitch ("auto scroll step: ", "", None, intentry, ondone, true)
3195 | 'C' ->
3196 let ondone s =
3198 let n, a, b = multicolumns_of_string s in
3199 setcolumns mode n a b;
3200 with exc ->
3201 state.text <- Printf.sprintf "bad columns `%s': %s" s (exntos exc)
3203 TEswitch ("columns: ", "", None, textentry, ondone, true)
3205 | 'Z' ->
3206 let ondone s =
3208 let zoom = float (int_of_string s) /. 100.0 in
3209 setzoom zoom
3210 with exc ->
3211 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3213 TEswitch ("zoom: ", "", None, intentry, ondone, true)
3215 | 't' ->
3216 let ondone s =
3218 conf.thumbw <- bound (int_of_string s) 2 4096;
3219 state.text <-
3220 Printf.sprintf "thumbnail width is set to %d" conf.thumbw;
3221 begin match mode with
3222 | Birdseye beye ->
3223 leavebirdseye beye false;
3224 enterbirdseye ();
3225 | _ -> ();
3227 with exc ->
3228 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3230 TEswitch ("thumbnail width: ", "", None, intentry, ondone, true)
3232 | 'R' ->
3233 let ondone s =
3234 match try
3235 Some (int_of_string s)
3236 with exc ->
3237 state.text <- Printf.sprintf "bad integer `%s': %s"
3238 s (exntos exc);
3239 None
3240 with
3241 | Some angle -> reqlayout angle conf.fitmodel
3242 | None -> ()
3244 TEswitch ("rotation: ", "", None, intentry, ondone, true)
3246 | 'i' ->
3247 conf.icase <- not conf.icase;
3248 TEdone ("case insensitive search " ^ (btos conf.icase))
3250 | 'p' ->
3251 conf.preload <- not conf.preload;
3252 gotoy state.y;
3253 TEdone ("preload " ^ (btos conf.preload))
3255 | 'v' ->
3256 conf.verbose <- not conf.verbose;
3257 TEdone ("verbose " ^ (btos conf.verbose))
3259 | 'd' ->
3260 conf.debug <- not conf.debug;
3261 TEdone ("debug " ^ (btos conf.debug))
3263 | 'h' ->
3264 conf.maxhfit <- not conf.maxhfit;
3265 state.maxy <- calcheight ();
3266 TEdone ("maxhfit " ^ (btos conf.maxhfit))
3268 | 'c' ->
3269 conf.crophack <- not conf.crophack;
3270 TEdone ("crophack " ^ btos conf.crophack)
3272 | 'a' ->
3273 let s =
3274 match conf.maxwait with
3275 | None ->
3276 conf.maxwait <- Some infinity;
3277 "always wait for page to complete"
3278 | Some _ ->
3279 conf.maxwait <- None;
3280 "show placeholder if page is not ready"
3282 TEdone s
3284 | 'f' ->
3285 conf.underinfo <- not conf.underinfo;
3286 TEdone ("underinfo " ^ btos conf.underinfo)
3288 | 'P' ->
3289 conf.savebmarks <- not conf.savebmarks;
3290 TEdone ("persistent bookmarks " ^ btos conf.savebmarks)
3292 | 'S' ->
3293 let ondone s =
3295 let pageno, py =
3296 match state.layout with
3297 | [] -> 0, 0
3298 | l :: _ ->
3299 l.pageno, l.pagey
3301 conf.interpagespace <- int_of_string s;
3302 docolumns conf.columns;
3303 state.maxy <- calcheight ();
3304 let y = getpagey pageno in
3305 gotoy (y + py)
3306 with exc ->
3307 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc)
3309 TEswitch ("vertical margin: ", "", None, intentry, ondone, true)
3311 | 'l' ->
3312 let fm =
3313 match conf.fitmodel with
3314 | FitProportional -> FitWidth
3315 | _ -> FitProportional
3317 reqlayout conf.angle fm;
3318 TEdone ("proportional display " ^ btos (fm == FitProportional))
3320 | 'T' ->
3321 settrim (not conf.trimmargins) conf.trimfuzz;
3322 TEdone ("trim margins " ^ btos conf.trimmargins)
3324 | 'I' ->
3325 conf.invert <- not conf.invert;
3326 TEdone ("invert colors " ^ btos conf.invert)
3328 | 'x' ->
3329 let ondone s =
3330 cbput state.hists.sel s;
3331 conf.selcmd <- s;
3333 TEswitch ("selection command: ", "", Some (onhist state.hists.sel),
3334 textentry, ondone, true)
3336 | 'M' ->
3337 if conf.pax == None
3338 then conf.pax <- Some (ref (0.0, 0, 0))
3339 else conf.pax <- None;
3340 TEdone ("PAX " ^ btos (conf.pax != None))
3342 | _ ->
3343 state.text <- Printf.sprintf "bad option %d `%c'" key c;
3344 TEstop
3345 else
3346 TEcont state.text
3349 class type lvsource = object
3350 method getitemcount : int
3351 method getitem : int -> (string * int)
3352 method hasaction : int -> bool
3353 method exit :
3354 uioh:uioh ->
3355 cancel:bool ->
3356 active:int ->
3357 first:int ->
3358 pan:int ->
3359 uioh option
3360 method getactive : int
3361 method getfirst : int
3362 method getpan : int
3363 method getminfo : (int * int) array
3364 end;;
3366 class virtual lvsourcebase = object
3367 val mutable m_active = 0
3368 val mutable m_first = 0
3369 val mutable m_pan = 0
3370 method getactive = m_active
3371 method getfirst = m_first
3372 method getpan = m_pan
3373 method getminfo : (int * int) array = [||]
3374 end;;
3376 let withoutlastutf8 s =
3377 let len = String.length s in
3378 if len = 0
3379 then s
3380 else
3381 let rec find pos =
3382 if pos = 0
3383 then pos
3384 else
3385 let b = Char.code s.[pos] in
3386 if b land 0b11000000 = 0b11000000
3387 then pos
3388 else find (pos-1)
3390 let first =
3391 if Char.code s.[len-1] land 0x80 = 0
3392 then len-1
3393 else find (len-1)
3395 String.sub s 0 first;
3398 let textentrykeyboard
3399 key _mask ((c, text, opthist, onkey, ondone, cancelonempty), onleave) =
3400 let key =
3401 if key >= 0xffb0 && key <= 0xffb9
3402 then key - 0xffb0 + 48 else key
3404 let enttext te =
3405 state.mode <- Textentry (te, onleave);
3406 state.text <- "";
3407 enttext ();
3408 G.postRedisplay "textentrykeyboard enttext";
3410 let histaction cmd =
3411 match opthist with
3412 | None -> ()
3413 | Some (action, _) ->
3414 state.mode <- Textentry (
3415 (c, action cmd, opthist, onkey, ondone, cancelonempty), onleave
3417 G.postRedisplay "textentry histaction"
3419 match key with
3420 | 0xff08 -> (* backspace *)
3421 if emptystr text && cancelonempty
3422 then (
3423 onleave Cancel;
3424 G.postRedisplay "textentrykeyboard after cancel";
3426 else
3427 let s = withoutlastutf8 text in
3428 enttext (c, s, opthist, onkey, ondone, cancelonempty)
3430 | 0xff0d | 0xff8d -> (* (kp) enter *)
3431 ondone text;
3432 onleave Confirm;
3433 G.postRedisplay "textentrykeyboard after confirm"
3435 | 0xff52 | 0xff97 -> histaction HCprev (* (kp) up *)
3436 | 0xff54 | 0xff99 -> histaction HCnext (* (kp) down *)
3437 | 0xff50 | 0xff95 -> histaction HCfirst (* (kp) home) *)
3438 | 0xff57 | 0xff9c -> histaction HClast (* (kp) end *)
3440 | 0xff1b -> (* escape*)
3441 if emptystr text
3442 then (
3443 begin match opthist with
3444 | None -> ()
3445 | Some (_, onhistcancel) -> onhistcancel ()
3446 end;
3447 onleave Cancel;
3448 state.text <- "";
3449 G.postRedisplay "textentrykeyboard after cancel2"
3451 else (
3452 enttext (c, "", opthist, onkey, ondone, cancelonempty)
3455 | 0xff9f | 0xffff -> () (* delete *)
3457 | _ when key != 0
3458 && key land 0xff00 != 0xff00 (* keyboard *)
3459 && key land 0xfe00 != 0xfe00 (* xkb *)
3460 && key land 0xfd00 != 0xfd00 (* 3270 *)
3462 begin match onkey text key with
3463 | TEdone text ->
3464 ondone text;
3465 onleave Confirm;
3466 G.postRedisplay "textentrykeyboard after confirm2";
3468 | TEcont text ->
3469 enttext (c, text, opthist, onkey, ondone, cancelonempty);
3471 | TEstop ->
3472 onleave Cancel;
3473 G.postRedisplay "textentrykeyboard after cancel3"
3475 | TEswitch te ->
3476 state.mode <- Textentry (te, onleave);
3477 G.postRedisplay "textentrykeyboard switch";
3478 end;
3480 | _ ->
3481 vlog "unhandled key %s" (Wsi.keyname key)
3484 let firstof first active =
3485 if first > active || abs (first - active) > fstate.maxrows - 1
3486 then max 0 (active - (fstate.maxrows/2))
3487 else first
3490 let calcfirst first active =
3491 if active > first
3492 then
3493 let rows = active - first in
3494 if rows > fstate.maxrows then active - fstate.maxrows else first
3495 else active
3498 let scrollph y maxy =
3499 let sh = float (maxy + state.winh) /. float state.winh in
3500 let sh = float state.winh /. sh in
3501 let sh = max sh (float conf.scrollh) in
3503 let percent = float y /. float maxy in
3504 let position = (float state.winh -. sh) *. percent in
3506 let position =
3507 if position +. sh > float state.winh
3508 then float state.winh -. sh
3509 else position
3511 position, sh;
3514 let coe s = (s :> uioh);;
3516 class listview ~(source:lvsource) ~trusted ~modehash =
3517 object (self)
3518 val m_pan = source#getpan
3519 val m_first = source#getfirst
3520 val m_active = source#getactive
3521 val m_qsearch = ""
3522 val m_prev_uioh = state.uioh
3524 method private elemunder y =
3525 if y < 0
3526 then None
3527 else
3528 let n = y / (fstate.fontsize+1) in
3529 if m_first + n < source#getitemcount
3530 then (
3531 if source#hasaction (m_first + n)
3532 then Some (m_first + n)
3533 else None
3535 else None
3537 method display =
3538 Gl.enable `blend;
3539 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
3540 GlDraw.color (0., 0., 0.) ~alpha:0.85;
3541 filledrect 0. 0. (float state.winw) (float state.winh);
3542 GlDraw.color (1., 1., 1.);
3543 Gl.enable `texture_2d;
3544 let fs = fstate.fontsize in
3545 let nfs = fs + 1 in
3546 let ww = fstate.wwidth in
3547 let tabw = 30.0*.ww in
3548 let itemcount = source#getitemcount in
3549 let minfo = source#getminfo in
3550 let rec loop row =
3551 if (row - m_first) > fstate.maxrows
3552 then ()
3553 else (
3554 if row >= 0 && row < itemcount
3555 then (
3556 let (s, level) = source#getitem row in
3557 let y = (row - m_first) * nfs in
3558 let x = 5.0 +. float (level + m_pan) *. ww in
3559 if row = m_active
3560 then (
3561 Gl.disable `texture_2d;
3562 let alpha = if source#hasaction row then 0.9 else 0.3 in
3563 GlDraw.color (1., 1., 1.) ~alpha;
3564 linerect 1. (float (y + 1))
3565 (float (state.winw - conf.scrollbw - 1)) (float (y + fs + 3));
3566 Gl.enable `texture_2d;
3567 GlDraw.color (1., 1., 1.);
3569 let drawtabularstring s =
3570 let drawstr x s = drawstring1 fs (truncate x) (y+nfs) s in
3571 if trusted
3572 then
3573 let tabpos = try String.index s '\t' with Not_found -> -1 in
3574 if tabpos > 0
3575 then
3576 let len = String.length s - tabpos - 1 in
3577 let s1 = String.sub s 0 tabpos
3578 and s2 = String.sub s (tabpos + 1) len in
3579 let nx = drawstr x s1 in
3580 let sw = nx -. x in
3581 let x = x +. (max tabw sw) in
3582 drawstr x s2
3583 else
3584 drawstr x s
3585 else
3586 drawstr x s
3588 let _ = drawtabularstring s in
3589 loop (row+1)
3593 loop m_first;
3594 GlDraw.color (1.0, 1.0, 1.0) ~alpha:0.5;
3595 let rec loop row =
3596 if (row - m_first) > fstate.maxrows
3597 then ()
3598 else (
3599 if row >= 0 && row < itemcount
3600 then (
3601 let (s, level) = source#getitem row in
3602 let y = (row - m_first) * nfs in
3603 let x = 5.0 +. float (level + m_pan) *. ww in
3604 let (first, last) = minfo.(row) in
3605 let prefix = String.sub s 0 first in
3606 let suffix = String.sub s first (last - first) in
3607 let w1 = measurestr fstate.fontsize prefix in
3608 let w2 = measurestr fstate.fontsize suffix in
3609 let x0 = x +. w1
3610 and y0 = (float (y+2)) in
3611 let x1 = x0 +. w2
3612 and y1 = (float (y+fs+3)) in
3613 filledrect x0 y0 x1 y1;
3614 loop (row+1)
3618 Gl.disable `texture_2d;
3619 if Array.length minfo > 0 then loop m_first;
3620 Gl.disable `blend;
3622 method updownlevel incr =
3623 let len = source#getitemcount in
3624 let curlevel =
3625 if m_active >= 0 && m_active < len
3626 then snd (source#getitem m_active)
3627 else -1
3629 let rec flow i =
3630 if i = len then i-1 else if i = -1 then 0 else
3631 let _, l = source#getitem i in
3632 if l != curlevel then i else flow (i+incr)
3634 let active = flow m_active in
3635 let first = calcfirst m_first active in
3636 G.postRedisplay "outline updownlevel";
3637 {< m_active = active; m_first = first >}
3639 method private key1 key mask =
3640 let set1 active first qsearch =
3641 coe {< m_active = active; m_first = first; m_qsearch = qsearch >}
3643 let search active pattern incr =
3644 let active = if active = -1 then m_first else active in
3645 let dosearch re =
3646 let rec loop n =
3647 if n >= 0 && n < source#getitemcount
3648 then (
3649 let s, _ = source#getitem n in
3651 (try ignore (Str.search_forward re s 0); true
3652 with Not_found -> false)
3653 then Some n
3654 else loop (n + incr)
3656 else None
3658 loop active
3661 let re = Str.regexp_case_fold pattern in
3662 dosearch re
3663 with Failure s ->
3664 state.text <- s;
3665 None
3667 let itemcount = source#getitemcount in
3668 let find start incr =
3669 let rec find i =
3670 if i = -1 || i = itemcount
3671 then -1
3672 else (
3673 if source#hasaction i
3674 then i
3675 else find (i + incr)
3678 find start
3680 let set active first =
3681 let first = bound first 0 (itemcount - fstate.maxrows) in
3682 state.text <- "";
3683 coe {< m_active = active; m_first = first; m_qsearch = "" >}
3685 let navigate incr =
3686 let isvisible first n = n >= first && n - first <= fstate.maxrows in
3687 let active, first =
3688 let incr1 = if incr > 0 then 1 else -1 in
3689 if isvisible m_first m_active
3690 then
3691 let next =
3692 let next = m_active + incr in
3693 let next =
3694 if next < 0 || next >= itemcount
3695 then -1
3696 else find next incr1
3698 if abs (m_active - next) > fstate.maxrows
3699 then -1
3700 else next
3702 if next = -1
3703 then
3704 let first = m_first + incr in
3705 let first = bound first 0 (itemcount - fstate.maxrows) in
3706 let next =
3707 let next = m_active + incr in
3708 let next = bound next 0 (itemcount - 1) in
3709 find next ~-incr1
3711 let active =
3712 if next = -1
3713 then m_active
3714 else (
3715 if isvisible first next
3716 then next
3717 else m_active
3720 active, first
3721 else
3722 let first = min next m_first in
3723 let first =
3724 if abs (next - first) > fstate.maxrows
3725 then first + incr
3726 else first
3728 next, first
3729 else
3730 let first = m_first + incr in
3731 let first = bound first 0 (itemcount - 1) in
3732 let active =
3733 let next = m_active + incr in
3734 let next = bound next 0 (itemcount - 1) in
3735 let next = find next incr1 in
3736 let active =
3737 if next = -1 || abs (m_active - first) > fstate.maxrows
3738 then (
3739 let active = if m_active = -1 then next else m_active in
3740 active
3742 else next
3744 if isvisible first active
3745 then active
3746 else -1
3748 active, first
3750 G.postRedisplay "listview navigate";
3751 set active first;
3753 match key with
3754 | (0x72|0x73) when Wsi.withctrl mask -> (* ctrl-r/ctlr-s *)
3755 let incr = if key = 0x72 then -1 else 1 in
3756 let active, first =
3757 match search (m_active + incr) m_qsearch incr with
3758 | None ->
3759 state.text <- m_qsearch ^ " [not found]";
3760 m_active, m_first
3761 | Some active ->
3762 state.text <- m_qsearch;
3763 active, firstof m_first active
3765 G.postRedisplay "listview ctrl-r/s";
3766 set1 active first m_qsearch;
3768 | 0xff63 when Wsi.withctrl mask -> (* ctrl-insert *)
3769 if m_active >= 0 && m_active < source#getitemcount
3770 then (
3771 let s, _ = source#getitem m_active in
3772 selstring s;
3774 coe self
3776 | 0xff08 -> (* backspace *)
3777 if emptystr m_qsearch
3778 then coe self
3779 else (
3780 let qsearch = withoutlastutf8 m_qsearch in
3781 if emptystr qsearch
3782 then (
3783 state.text <- "";
3784 G.postRedisplay "listview empty qsearch";
3785 set1 m_active m_first "";
3787 else
3788 let active, first =
3789 match search m_active qsearch ~-1 with
3790 | None ->
3791 state.text <- qsearch ^ " [not found]";
3792 m_active, m_first
3793 | Some active ->
3794 state.text <- qsearch;
3795 active, firstof m_first active
3797 G.postRedisplay "listview backspace qsearch";
3798 set1 active first qsearch
3801 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3802 let pattern = m_qsearch ^ toutf8 key in
3803 let active, first =
3804 match search m_active pattern 1 with
3805 | None ->
3806 state.text <- pattern ^ " [not found]";
3807 m_active, m_first
3808 | Some active ->
3809 state.text <- pattern;
3810 active, firstof m_first active
3812 G.postRedisplay "listview qsearch add";
3813 set1 active first pattern;
3815 | 0xff1b -> (* escape *)
3816 state.text <- "";
3817 if emptystr m_qsearch
3818 then (
3819 G.postRedisplay "list view escape";
3820 begin
3821 match
3822 source#exit (coe self) true m_active m_first m_pan
3823 with
3824 | None -> m_prev_uioh
3825 | Some uioh -> uioh
3828 else (
3829 G.postRedisplay "list view kill qsearch";
3830 coe {< m_qsearch = "" >}
3833 | 0xff0d | 0xff8d -> (* (kp) enter *)
3834 state.text <- "";
3835 let self = {< m_qsearch = "" >} in
3836 let opt =
3837 G.postRedisplay "listview enter";
3838 if m_active >= 0 && m_active < source#getitemcount
3839 then (
3840 source#exit (coe self) false m_active m_first m_pan;
3842 else (
3843 source#exit (coe self) true m_active m_first m_pan;
3846 begin match opt with
3847 | None -> m_prev_uioh
3848 | Some uioh -> uioh
3851 | 0xff9f | 0xffff -> (* (kp) delete *)
3852 coe self
3854 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
3855 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3856 | 0xff55 | 0xff9a -> navigate ~-(fstate.maxrows) (* (kp) prior *)
3857 | 0xff56 | 0xff9b -> navigate fstate.maxrows (* (kp) next *)
3859 | 0xff53 | 0xff98 -> (* (kp) right *)
3860 state.text <- "";
3861 G.postRedisplay "listview right";
3862 coe {< m_pan = m_pan - 1 >}
3864 | 0xff51 | 0xff96 -> (* (kp) left *)
3865 state.text <- "";
3866 G.postRedisplay "listview left";
3867 coe {< m_pan = m_pan + 1 >}
3869 | 0xff50 | 0xff95 -> (* (kp) home *)
3870 let active = find 0 1 in
3871 G.postRedisplay "listview home";
3872 set active 0;
3874 | 0xff57 | 0xff9c -> (* (kp) end *)
3875 let first = max 0 (itemcount - fstate.maxrows) in
3876 let active = find (itemcount - 1) ~-1 in
3877 G.postRedisplay "listview end";
3878 set active first;
3880 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3881 coe self
3883 | _ ->
3884 dolog "listview unknown key %#x" key; coe self
3886 method key key mask =
3887 match state.mode with
3888 | Textentry te -> textentrykeyboard key mask te; coe self
3889 | _ -> self#key1 key mask
3891 method button button down x y _ =
3892 let opt =
3893 match button with
3894 | 1 when x > state.winw - conf.scrollbw ->
3895 G.postRedisplay "listview scroll";
3896 if down
3897 then
3898 let _, position, sh = self#scrollph in
3899 if y > truncate position && y < truncate (position +. sh)
3900 then (
3901 state.mstate <- Mscrolly;
3902 Some (coe self)
3904 else
3905 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3906 let first = truncate (s *. float source#getitemcount) in
3907 let first = min source#getitemcount first in
3908 Some (coe {< m_first = first; m_active = first >})
3909 else (
3910 state.mstate <- Mnone;
3911 Some (coe self);
3913 | 1 when not down ->
3914 begin match self#elemunder y with
3915 | Some n ->
3916 G.postRedisplay "listview click";
3917 source#exit (coe {< m_active = n >}) false n m_first m_pan
3918 | _ ->
3919 Some (coe self)
3921 | n when (n == 4 || n == 5) && not down ->
3922 let len = source#getitemcount in
3923 let first =
3924 if n = 5 && m_first + fstate.maxrows >= len
3925 then
3926 m_first
3927 else
3928 let first = m_first + (if n == 4 then -1 else 1) in
3929 bound first 0 (len - 1)
3931 G.postRedisplay "listview wheel";
3932 Some (coe {< m_first = first >})
3933 | n when (n = 6 || n = 7) && not down ->
3934 let inc = if n = 7 then -1 else 1 in
3935 G.postRedisplay "listview hwheel";
3936 Some (coe {< m_pan = m_pan + inc >})
3937 | _ ->
3938 Some (coe self)
3940 match opt with
3941 | None -> m_prev_uioh
3942 | Some uioh -> uioh
3944 method multiclick _ x y = self#button 1 true x y
3946 method motion _ y =
3947 match state.mstate with
3948 | Mscrolly ->
3949 let s = float (max 0 (y - conf.scrollh)) /. float state.winh in
3950 let first = truncate (s *. float source#getitemcount) in
3951 let first = min source#getitemcount first in
3952 G.postRedisplay "listview motion";
3953 coe {< m_first = first; m_active = first >}
3954 | _ -> coe self
3956 method pmotion x y =
3957 if x < state.winw - conf.scrollbw
3958 then
3959 let n =
3960 match self#elemunder y with
3961 | None -> Wsi.setcursor Wsi.CURSOR_INHERIT; m_active
3962 | Some n -> Wsi.setcursor Wsi.CURSOR_INFO; n
3964 let o =
3965 if n != m_active
3966 then (G.postRedisplay "listview pmotion"; {< m_active = n >})
3967 else self
3969 coe o
3970 else (
3971 Wsi.setcursor Wsi.CURSOR_INHERIT;
3972 coe self
3975 method infochanged _ = ()
3977 method scrollpw = (0, 0.0, 0.0)
3978 method scrollph =
3979 let nfs = fstate.fontsize + 1 in
3980 let y = m_first * nfs in
3981 let itemcount = source#getitemcount in
3982 let maxi = max 0 (itemcount - fstate.maxrows) in
3983 let maxy = maxi * nfs in
3984 let p, h = scrollph y maxy in
3985 conf.scrollbw, p, h
3987 method modehash = modehash
3988 method eformsgs = false
3989 end;;
3991 class outlinelistview ~source =
3992 let settext autonarrow s =
3993 if autonarrow
3994 then
3995 let ss = source#statestr in
3996 state.text <-
3997 if emptystr ss
3998 then "[" ^ s ^ "]"
3999 else "{" ^ ss ^ "} [" ^ s ^ "]"
4000 else state.text <- s
4002 object (self)
4003 inherit listview
4004 ~source:(source :> lvsource)
4005 ~trusted:false
4006 ~modehash:(findkeyhash conf "outline")
4007 as super
4009 val m_autonarrow = false
4011 method display = super#display
4013 method key key mask =
4014 let maxrows =
4015 if emptystr state.text
4016 then fstate.maxrows
4017 else fstate.maxrows - 2
4019 let calcfirst first active =
4020 if active > first
4021 then
4022 let rows = active - first in
4023 if rows > maxrows then active - maxrows else first
4024 else active
4026 let navigate incr =
4027 let active = m_active + incr in
4028 let active = bound active 0 (source#getitemcount - 1) in
4029 let first = calcfirst m_first active in
4030 G.postRedisplay "outline navigate";
4031 coe {< m_active = active; m_first = first >}
4033 let navscroll first =
4034 let active =
4035 let dist = m_active - first in
4036 if dist < 0
4037 then first
4038 else (
4039 if dist < maxrows
4040 then m_active
4041 else first + maxrows
4044 G.postRedisplay "outline navscroll";
4045 coe {< m_first = first; m_active = active >}
4047 let ctrl = Wsi.withctrl mask in
4048 match key with
4049 | 97 when ctrl -> (* ctrl-a *)
4050 let text =
4051 if m_autonarrow
4052 then (source#denarrow; "")
4053 else (
4054 let pattern = source#renarrow in
4055 if nonemptystr m_qsearch
4056 then (source#narrow m_qsearch; m_qsearch)
4057 else pattern
4060 settext (not m_autonarrow) text;
4061 G.postRedisplay "toggle auto narrowing";
4062 coe {< m_first = 0; m_active = 0; m_autonarrow = not m_autonarrow >}
4064 | 47 when emptystr m_qsearch && not m_autonarrow -> (* / *)
4065 settext true "";
4066 G.postRedisplay "toggle auto narrowing";
4067 coe {< m_first = 0; m_active = 0; m_autonarrow = true >}
4069 | 110 when ctrl -> (* ctrl-n *)
4070 source#narrow m_qsearch;
4071 if not m_autonarrow
4072 then source#add_narrow_pattern m_qsearch;
4073 G.postRedisplay "outline ctrl-n";
4074 coe {< m_first = 0; m_active = 0 >}
4076 | 83 when ctrl -> (* ctrl-S *)
4077 let active = source#calcactive (getanchor ()) in
4078 let first = firstof m_first active in
4079 G.postRedisplay "outline ctrl-s";
4080 coe {< m_first = first; m_active = active >}
4082 | 117 when ctrl -> (* ctrl-u *)
4083 G.postRedisplay "outline ctrl-u";
4084 if m_autonarrow && nonemptystr m_qsearch
4085 then (
4086 ignore (source#renarrow);
4087 settext m_autonarrow "";
4088 coe {< m_first = 0; m_active = 0; m_qsearch = "" >}
4090 else (
4091 source#del_narrow_pattern;
4092 let pattern = source#renarrow in
4093 let text =
4094 if emptystr pattern then "" else "Narrowed to " ^ pattern
4096 settext m_autonarrow text;
4097 coe {< m_first = 0; m_active = 0; m_qsearch = "" >}
4100 | 108 when ctrl -> (* ctrl-l *)
4101 let first = max 0 (m_active - (fstate.maxrows / 2)) in
4102 G.postRedisplay "outline ctrl-l";
4103 coe {< m_first = first >}
4105 | 0xff09 when m_autonarrow -> (* tab *)
4106 if nonemptystr m_qsearch
4107 then (
4108 G.postRedisplay "outline list view tab";
4109 source#add_narrow_pattern m_qsearch;
4110 settext true "";
4111 coe {< m_qsearch = "" >}
4113 else coe self
4115 | 0xff1b when m_autonarrow -> (* escape *)
4116 if nonemptystr m_qsearch
4117 then source#add_narrow_pattern m_qsearch;
4118 super#key key mask
4120 | 0xff0d | 0xff8d when m_autonarrow -> (* (kp) enter *)
4121 if nonemptystr m_qsearch
4122 then source#add_narrow_pattern m_qsearch;
4123 super#key key mask
4125 | key when m_autonarrow && (key != 0 && key land 0xff00 != 0xff00) ->
4126 let pattern = m_qsearch ^ toutf8 key in
4127 G.postRedisplay "outlinelistview autonarrow add";
4128 source#narrow pattern;
4129 settext true pattern;
4130 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
4132 | key when m_autonarrow && key = 0xff08 -> (* backspace *)
4133 if emptystr m_qsearch
4134 then coe self
4135 else
4136 let pattern = withoutlastutf8 m_qsearch in
4137 G.postRedisplay "outlinelistview autonarrow backspace";
4138 ignore (source#renarrow);
4139 source#narrow pattern;
4140 settext true pattern;
4141 coe {< m_first = 0; m_active = 0; m_qsearch = pattern >}
4143 | 0xff9f | 0xffff -> (* (kp) delete *)
4144 source#remove m_active;
4145 G.postRedisplay "outline delete";
4146 let active = max 0 (m_active-1) in
4147 coe {< m_first = firstof m_first active;
4148 m_active = active >}
4150 | 0xff52 | 0xff97 when ctrl -> (* ctrl-(kp) up *)
4151 navscroll (max 0 (m_first - 1))
4153 | 0xff54 | 0xff99 when ctrl -> (* ctrl-(kp) down *)
4154 navscroll (min (source#getitemcount - 1) (m_first + 1))
4156 | 0xff52 | 0xff97 -> navigate ~-1 (* (kp) up *)
4157 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
4158 | 0xff55 | 0xff9a -> (* (kp) prior *)
4159 navigate ~-(fstate.maxrows)
4160 | 0xff56 | 0xff9b -> (* (kp) next *)
4161 navigate fstate.maxrows
4163 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
4164 let o =
4165 if ctrl
4166 then (
4167 G.postRedisplay "outline ctrl right";
4168 {< m_pan = m_pan + 1 >}
4170 else self#updownlevel 1
4172 coe o
4174 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
4175 let o =
4176 if ctrl
4177 then (
4178 G.postRedisplay "outline ctrl left";
4179 {< m_pan = m_pan - 1 >}
4181 else self#updownlevel ~-1
4183 coe o
4185 | 0xff50 | 0xff95 -> (* (kp) home *)
4186 G.postRedisplay "outline home";
4187 coe {< m_first = 0; m_active = 0 >}
4189 | 0xff57 | 0xff9c -> (* (kp) end *)
4190 let active = source#getitemcount - 1 in
4191 let first = max 0 (active - fstate.maxrows) in
4192 G.postRedisplay "outline end";
4193 coe {< m_active = active; m_first = first >}
4195 | _ -> super#key key mask
4198 let gotounder under =
4199 let getpath filename =
4200 let path =
4201 if nonemptystr filename
4202 then
4203 if Filename.is_relative filename
4204 then
4205 let dir = Filename.dirname state.path in
4206 let dir =
4207 if Filename.is_implicit dir
4208 then Filename.concat (Sys.getcwd ()) dir
4209 else dir
4211 Filename.concat dir filename
4212 else filename
4213 else ""
4215 if Sys.file_exists path
4216 then path
4217 else ""
4219 match under with
4220 | Ulinkgoto (pageno, top) ->
4221 if pageno >= 0
4222 then (
4223 addnav ();
4224 gotopage1 pageno top;
4227 | Ulinkuri s ->
4228 gotouri s
4230 | Uremote (filename, pageno) ->
4231 let path = getpath filename in
4232 if nonemptystr path
4233 then (
4234 if conf.riani
4235 then
4236 let command = Printf.sprintf "%s -page %d %S" !selfexec pageno path in
4237 try popen command []
4238 with exn ->
4239 Printf.eprintf "failed to execute `%s': %s\n" command (exntos exn);
4240 flush stderr;
4241 else
4242 let anchor = getanchor () in
4243 let ranchor = state.path, state.password, anchor, state.origin in
4244 state.origin <- "";
4245 state.anchor <- (pageno, 0.0, 0.0);
4246 state.ranchors <- ranchor :: state.ranchors;
4247 opendoc path "";
4249 else showtext '!' ("Could not find " ^ filename)
4251 | Uremotedest (filename, destname) ->
4252 let path = getpath filename in
4253 if nonemptystr path
4254 then (
4255 if conf.riani
4256 then
4257 let command = !selfexec ^ " " ^ path ^ " -dest " ^ destname in
4258 try popen command []
4259 with exn ->
4260 Printf.eprintf
4261 "failed to execute `%s': %s\n" command (exntos exn);
4262 flush stderr;
4263 else
4264 let anchor = getanchor () in
4265 let ranchor = state.path, state.password, anchor, state.origin in
4266 state.origin <- "";
4267 state.nameddest <- destname;
4268 state.ranchors <- ranchor :: state.ranchors;
4269 opendoc path "";
4271 else showtext '!' ("Could not find " ^ filename)
4273 | Uunexpected _ | Ulaunch _ | Unamed _ | Utext _ | Unone -> ()
4276 let gotooutline (_, _, kind) =
4277 match kind with
4278 | Onone -> ()
4279 | Oanchor anchor ->
4280 let (pageno, y, _) = anchor in
4281 let y = getanchory
4282 (if conf.presentation then (pageno, y, 1.0) else anchor)
4284 addnav ();
4285 gotoghyll y
4286 | Ouri uri -> gotounder (Ulinkuri uri)
4287 | Olaunch cmd -> gotounder (Ulaunch cmd)
4288 | Oremote remote -> gotounder (Uremote remote)
4289 | Oremotedest remotedest -> gotounder (Uremotedest remotedest)
4292 let outlinesource usebookmarks =
4293 let empty = [||] in
4294 (object (self)
4295 inherit lvsourcebase
4296 val mutable m_items = empty
4297 val mutable m_minfo = empty
4298 val mutable m_orig_items = empty
4299 val mutable m_orig_minfo = empty
4300 val mutable m_narrow_patterns = []
4301 val mutable m_hadremovals = false
4302 val mutable m_gen = -1
4304 method getitemcount =
4305 Array.length m_items + (if m_hadremovals then 1 else 0)
4307 method getitem n =
4308 if n == Array.length m_items && m_hadremovals
4309 then
4310 ("[Confirm removal]", 0)
4311 else
4312 let s, n, _ = m_items.(n) in
4313 (s, n)
4315 method exit ~uioh ~cancel ~active ~first ~pan =
4316 ignore (uioh, first);
4317 let confrimremoval = m_hadremovals && active = Array.length m_items in
4318 let items, minfo =
4319 if m_narrow_patterns = []
4320 then m_orig_items, m_orig_minfo
4321 else m_items, m_minfo
4323 if not cancel
4324 then (
4325 if not confrimremoval
4326 then (
4327 gotooutline m_items.(active);
4328 m_items <- items;
4329 m_minfo <- minfo;
4331 else (
4332 state.bookmarks <- Array.to_list m_items;
4333 m_orig_items <- m_items;
4334 m_orig_minfo <- m_minfo;
4337 else (
4338 m_items <- items;
4339 m_minfo <- minfo;
4341 m_pan <- pan;
4342 None
4344 method hasaction _ = true
4346 method greetmsg =
4347 if Array.length m_items != Array.length m_orig_items
4348 then
4349 let s =
4350 match m_narrow_patterns with
4351 | one :: [] -> one
4352 | many -> String.concat "\xe2\x80\xa6" (List.rev many)
4354 "Narrowed to " ^ s ^ " (ctrl-u to restore)"
4355 else ""
4357 method statestr =
4358 match m_narrow_patterns with
4359 | [] -> ""
4360 | one :: [] -> one
4361 | head :: _ -> "\xe2\x80\xa6" ^ head
4363 method narrow pattern =
4364 let reopt = try Some (Str.regexp_case_fold pattern) with _ -> None in
4365 match reopt with
4366 | None -> ()
4367 | Some re ->
4368 let rec loop accu minfo n =
4369 if n = -1
4370 then (
4371 m_items <- Array.of_list accu;
4372 m_minfo <- Array.of_list minfo;
4374 else
4375 let (s, _, _) as o = m_items.(n) in
4376 let accu, minfo =
4377 let first =
4378 try Str.search_forward re s 0
4379 with Not_found -> -1
4381 if first >= 0
4382 then o :: accu, (first, Str.match_end ()) :: minfo
4383 else accu, minfo
4385 loop accu minfo (n-1)
4387 loop [] [] (Array.length m_items - 1)
4389 method getminfo = m_minfo
4391 method denarrow =
4392 m_orig_items <- (
4393 if usebookmarks
4394 then Array.of_list state.bookmarks
4395 else state.outlines
4397 m_minfo <- m_orig_minfo;
4398 m_items <- m_orig_items
4400 method remove m =
4401 if usebookmarks
4402 then
4403 if m >= 0 && m < Array.length m_items
4404 then (
4405 m_hadremovals <- true;
4406 m_items <- Array.init (Array.length m_items - 1) (fun n ->
4407 let n = if n >= m then n+1 else n in
4408 m_items.(n)
4412 method add_narrow_pattern pattern =
4413 m_narrow_patterns <- pattern :: m_narrow_patterns
4415 method del_narrow_pattern =
4416 match m_narrow_patterns with
4417 | _ :: rest -> m_narrow_patterns <- rest
4418 | [] -> ()
4420 method renarrow =
4421 self#denarrow;
4422 match m_narrow_patterns with
4423 | pattern :: [] -> self#narrow pattern; pattern
4424 | list ->
4425 List.fold_left (fun accu pattern ->
4426 self#narrow pattern;
4427 pattern ^ "\xe2\x80\xa6" ^ accu) "" list
4429 method calcactive anchor =
4430 let rely = getanchory anchor in
4431 let rec loop n best bestd =
4432 if n = Array.length m_items
4433 then best
4434 else
4435 let _, _, kind = m_items.(n) in
4436 match kind with
4437 | Oanchor anchor ->
4438 let orely = getanchory anchor in
4439 let d = abs (orely - rely) in
4440 if d < bestd
4441 then loop (n+1) n d
4442 else loop (n+1) best bestd
4443 | Onone | Oremote _ | Olaunch _ | Oremotedest _ | Ouri _ ->
4444 loop (n+1) best bestd
4446 loop 0 ~-1 max_int
4448 method reset anchor items =
4449 m_hadremovals <- false;
4450 if state.gen != m_gen
4451 then (
4452 m_orig_items <- items;
4453 m_items <- items;
4454 m_narrow_patterns <- [];
4455 m_minfo <- empty;
4456 m_orig_minfo <- empty;
4457 m_gen <- state.gen;
4459 else (
4460 if items != m_orig_items
4461 then (
4462 m_orig_items <- items;
4463 if m_narrow_patterns == []
4464 then m_items <- items;
4467 let active = self#calcactive anchor in
4468 m_active <- active;
4469 m_first <- firstof m_first active
4470 end)
4473 let enterselector usebookmarks =
4474 resetmstate ();
4475 let source = outlinesource usebookmarks in
4476 fun errmsg ->
4477 let outlines =
4478 if usebookmarks
4479 then Array.of_list state.bookmarks
4480 else state.outlines
4482 if Array.length outlines = 0
4483 then (
4484 showtext ' ' errmsg;
4486 else (
4487 state.text <- source#greetmsg;
4488 Wsi.setcursor Wsi.CURSOR_INHERIT;
4489 let anchor = getanchor () in
4490 source#reset anchor outlines;
4491 state.uioh <- coe (new outlinelistview ~source);
4492 G.postRedisplay "enter selector";
4496 let enteroutlinemode =
4497 let f = enterselector false in
4498 fun ()-> f "Document has no outline";
4501 let enterbookmarkmode =
4502 let f = enterselector true in
4503 fun () -> f "Document has no bookmarks (yet)";
4506 let color_of_string s =
4507 Scanf.sscanf s "%d/%d/%d" (fun r g b ->
4508 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
4512 let color_to_string (r, g, b) =
4513 let r = truncate (r *. 256.0)
4514 and g = truncate (g *. 256.0)
4515 and b = truncate (b *. 256.0) in
4516 Printf.sprintf "%d/%d/%d" r g b
4519 let irect_of_string s =
4520 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
4523 let irect_to_string (x0,y0,x1,y1) =
4524 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
4527 let makecheckers () =
4528 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
4529 following to say:
4530 converted by Issac Trotts. July 25, 2002 *)
4531 let image = GlPix.create `ubyte ~format:`luminance ~width:2 ~height:2 in
4532 Raw.sets_string (GlPix.to_raw image) ~pos:0 "\255\200\200\255";
4533 let id = GlTex.gen_texture () in
4534 GlTex.bind_texture `texture_2d id;
4535 GlPix.store (`unpack_alignment 1);
4536 GlTex.image2d image;
4537 List.iter (GlTex.parameter ~target:`texture_2d)
4538 [ `mag_filter `nearest; `min_filter `nearest ];
4542 let setcheckers enabled =
4543 match state.texid with
4544 | None ->
4545 if enabled then state.texid <- Some (makecheckers ())
4547 | Some texid ->
4548 if not enabled
4549 then (
4550 GlTex.delete_texture texid;
4551 state.texid <- None;
4555 let int_of_string_with_suffix s =
4556 let l = String.length s in
4557 let s1, shift =
4558 if l > 1
4559 then
4560 let suffix = Char.lowercase s.[l-1] in
4561 match suffix with
4562 | 'k' -> String.sub s 0 (l-1), 10
4563 | 'm' -> String.sub s 0 (l-1), 20
4564 | 'g' -> String.sub s 0 (l-1), 30
4565 | _ -> s, 0
4566 else s, 0
4568 let n = int_of_string s1 in
4569 let m = n lsl shift in
4570 if m < 0 || m < n
4571 then raise (Failure "value too large")
4572 else m
4575 let string_with_suffix_of_int n =
4576 if n = 0
4577 then "0"
4578 else
4579 let units = [(30, "G"); (20, "M"); (10, "K")] in
4580 let prettyint n =
4581 let rec loop s n =
4582 let h = n mod 1000 in
4583 let n = n / 1000 in
4584 if n = 0
4585 then string_of_int h ^ s
4586 else (
4587 let s = Printf.sprintf "_%03d%s" h s in
4588 loop s n
4591 loop "" n
4593 let rec find = function
4594 | [] -> prettyint n
4595 | (shift, suffix) :: rest ->
4596 if (n land ((1 lsl shift) - 1)) = 0
4597 then prettyint (n lsr shift) ^ suffix
4598 else find rest
4600 find units
4603 let fastghyllscroll = (5,1,2);;
4604 let neatghyllscroll = (10,1,9);;
4605 let ghyllscroll_of_string s =
4606 match s with
4607 | "fast" -> Some fastghyllscroll
4608 | "neat" -> Some (10,1,9)
4609 | "" | "none" -> None
4610 | _ ->
4611 let (n,a,b) as nab =
4612 Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b) in
4613 if n <= a || n <= b || a >= b
4614 then error "invalid ghyll N(%d),A(%d),B(%d) (N <= A, A < B, N <= B)"
4615 n a b;
4616 Some nab
4619 let ghyllscroll_to_string ((n, a, b) as nab) =
4620 (**) if nab = fastghyllscroll then "fast"
4621 else if nab = neatghyllscroll then "neat"
4622 else Printf.sprintf "%d,%d,%d" n a b;
4625 let describe_location () =
4626 let fn = page_of_y state.y in
4627 let ln = page_of_y (state.y + state.winh - hscrollh () - 1) in
4628 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
4629 let percent =
4630 if maxy <= 0
4631 then 100.
4632 else (100. *. (float state.y /. float maxy))
4634 if fn = ln
4635 then
4636 Printf.sprintf "page %d of %d [%.2f%%]"
4637 (fn+1) state.pagecount percent
4638 else
4639 Printf.sprintf
4640 "pages %d-%d of %d [%.2f%%]"
4641 (fn+1) (ln+1) state.pagecount percent
4644 let setpresentationmode v =
4645 let n = page_of_y state.y in
4646 state.anchor <- (n, 0.0, 1.0);
4647 conf.presentation <- v;
4648 if conf.fitmodel = FitPage
4649 then reqlayout conf.angle conf.fitmodel;
4650 represent ();
4653 let enterinfomode =
4654 let btos b = if b then "\xe2\x88\x9a" else "" in
4655 let showextended = ref false in
4656 let leave mode = function
4657 | Confirm -> state.mode <- mode
4658 | Cancel -> state.mode <- mode in
4659 let src =
4660 (object
4661 val mutable m_first_time = true
4662 val mutable m_l = []
4663 val mutable m_a = [||]
4664 val mutable m_prev_uioh = nouioh
4665 val mutable m_prev_mode = View
4667 inherit lvsourcebase
4669 method reset prev_mode prev_uioh =
4670 m_a <- Array.of_list (List.rev m_l);
4671 m_l <- [];
4672 m_prev_mode <- prev_mode;
4673 m_prev_uioh <- prev_uioh;
4674 if m_first_time
4675 then (
4676 let rec loop n =
4677 if n >= Array.length m_a
4678 then ()
4679 else
4680 match m_a.(n) with
4681 | _, _, _, Action _ -> m_active <- n
4682 | _ -> loop (n+1)
4684 loop 0;
4685 m_first_time <- false;
4688 method int name get set =
4689 m_l <-
4690 (name, `int get, 1, Action (
4691 fun u ->
4692 let ondone s =
4693 try set (int_of_string s)
4694 with exn ->
4695 state.text <- Printf.sprintf "bad integer `%s': %s"
4696 s (exntos exn)
4698 state.text <- "";
4699 let te = name ^ ": ", "", None, intentry, ondone, true in
4700 state.mode <- Textentry (te, leave m_prev_mode);
4702 )) :: m_l
4704 method int_with_suffix name get set =
4705 m_l <-
4706 (name, `intws get, 1, Action (
4707 fun u ->
4708 let ondone s =
4709 try set (int_of_string_with_suffix s)
4710 with exn ->
4711 state.text <- Printf.sprintf "bad integer `%s': %s"
4712 s (exntos exn)
4714 state.text <- "";
4715 let te =
4716 name ^ ": ", "", None, intentry_with_suffix, ondone, true
4718 state.mode <- Textentry (te, leave m_prev_mode);
4720 )) :: m_l
4722 method bool ?(offset=1) ?(btos=btos) name get set =
4723 m_l <-
4724 (name, `bool (btos, get), offset, Action (
4725 fun u ->
4726 let v = get () in
4727 set (not v);
4729 )) :: m_l
4731 method color name get set =
4732 m_l <-
4733 (name, `color get, 1, Action (
4734 fun u ->
4735 let invalid = (nan, nan, nan) in
4736 let ondone s =
4737 let c =
4738 try color_of_string s
4739 with exn ->
4740 state.text <- Printf.sprintf "bad color `%s': %s"
4741 s (exntos exn);
4742 invalid
4744 if c <> invalid
4745 then set c;
4747 let te = name ^ ": ", "", None, textentry, ondone, true in
4748 state.text <- color_to_string (get ());
4749 state.mode <- Textentry (te, leave m_prev_mode);
4751 )) :: m_l
4753 method string name get set =
4754 m_l <-
4755 (name, `string get, 1, Action (
4756 fun u ->
4757 let ondone s = set s in
4758 let te = name ^ ": ", "", None, textentry, ondone, true in
4759 state.mode <- Textentry (te, leave m_prev_mode);
4761 )) :: m_l
4763 method colorspace name get set =
4764 m_l <-
4765 (name, `string get, 1, Action (
4766 fun _ ->
4767 let source =
4768 (object
4769 inherit lvsourcebase
4771 initializer
4772 m_active <- CSTE.to_int conf.colorspace;
4773 m_first <- 0;
4775 method getitemcount =
4776 Array.length CSTE.names
4777 method getitem n =
4778 (CSTE.names.(n), 0)
4779 method exit ~uioh ~cancel ~active ~first ~pan =
4780 ignore (uioh, first, pan);
4781 if not cancel then set active;
4782 None
4783 method hasaction _ = true
4784 end)
4786 state.text <- "";
4787 let modehash = findkeyhash conf "info" in
4788 coe (new listview ~source ~trusted:true ~modehash)
4789 )) :: m_l
4791 method paxmark name get set =
4792 m_l <-
4793 (name, `string get, 1, Action (
4794 fun _ ->
4795 let source =
4796 (object
4797 inherit lvsourcebase
4799 initializer
4800 m_active <- MTE.to_int conf.paxmark;
4801 m_first <- 0;
4803 method getitemcount = Array.length MTE.names
4804 method getitem n = (MTE.names.(n), 0)
4805 method exit ~uioh ~cancel ~active ~first ~pan =
4806 ignore (uioh, first, pan);
4807 if not cancel then set active;
4808 None
4809 method hasaction _ = true
4810 end)
4812 state.text <- "";
4813 let modehash = findkeyhash conf "info" in
4814 coe (new listview ~source ~trusted:true ~modehash)
4815 )) :: m_l
4817 method fitmodel name get set =
4818 m_l <-
4819 (name, `string get, 1, Action (
4820 fun _ ->
4821 let source =
4822 (object
4823 inherit lvsourcebase
4825 initializer
4826 m_active <- FMTE.to_int conf.fitmodel;
4827 m_first <- 0;
4829 method getitemcount = Array.length FMTE.names
4830 method getitem n = (FMTE.names.(n), 0)
4831 method exit ~uioh ~cancel ~active ~first ~pan =
4832 ignore (uioh, first, pan);
4833 if not cancel then set active;
4834 None
4835 method hasaction _ = true
4836 end)
4838 state.text <- "";
4839 let modehash = findkeyhash conf "info" in
4840 coe (new listview ~source ~trusted:true ~modehash)
4841 )) :: m_l
4843 method caption s offset =
4844 m_l <- (s, `empty, offset, Noaction) :: m_l
4846 method caption2 s f offset =
4847 m_l <- (s, `string f, offset, Noaction) :: m_l
4849 method getitemcount = Array.length m_a
4851 method getitem n =
4852 let tostr = function
4853 | `int f -> string_of_int (f ())
4854 | `intws f -> string_with_suffix_of_int (f ())
4855 | `string f -> f ()
4856 | `color f -> color_to_string (f ())
4857 | `bool (btos, f) -> btos (f ())
4858 | `empty -> ""
4860 let name, t, offset, _ = m_a.(n) in
4861 ((let s = tostr t in
4862 if nonemptystr s
4863 then Printf.sprintf "%s\t%s" name s
4864 else name),
4865 offset)
4867 method exit ~uioh ~cancel ~active ~first ~pan =
4868 let uiohopt =
4869 if not cancel
4870 then (
4871 let uioh =
4872 match m_a.(active) with
4873 | _, _, _, Action f -> f uioh
4874 | _ -> uioh
4876 Some uioh
4878 else None
4880 m_active <- active;
4881 m_first <- first;
4882 m_pan <- pan;
4883 uiohopt
4885 method hasaction n =
4886 match m_a.(n) with
4887 | _, _, _, Action _ -> true
4888 | _ -> false
4889 end)
4891 let rec fillsrc prevmode prevuioh =
4892 let sep () = src#caption "" 0 in
4893 let colorp name get set =
4894 src#string name
4895 (fun () -> color_to_string (get ()))
4896 (fun v ->
4898 let c = color_of_string v in
4899 set c
4900 with exn ->
4901 state.text <- Printf.sprintf "bad color `%s': %s" v (exntos exn)
4904 let oldmode = state.mode in
4905 let birdseye = isbirdseye state.mode in
4907 src#caption (if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4909 src#bool "presentation mode"
4910 (fun () -> conf.presentation)
4911 (fun v -> setpresentationmode v);
4913 src#bool "ignore case in searches"
4914 (fun () -> conf.icase)
4915 (fun v -> conf.icase <- v);
4917 src#bool "preload"
4918 (fun () -> conf.preload)
4919 (fun v -> conf.preload <- v);
4921 src#bool "highlight links"
4922 (fun () -> conf.hlinks)
4923 (fun v -> conf.hlinks <- v);
4925 src#bool "under info"
4926 (fun () -> conf.underinfo)
4927 (fun v -> conf.underinfo <- v);
4929 src#bool "persistent bookmarks"
4930 (fun () -> conf.savebmarks)
4931 (fun v -> conf.savebmarks <- v);
4933 src#fitmodel "fit model"
4934 (fun () -> FMTE.to_string conf.fitmodel)
4935 (fun v -> reqlayout conf.angle (FMTE.of_int v));
4937 src#bool "trim margins"
4938 (fun () -> conf.trimmargins)
4939 (fun v -> settrim v conf.trimfuzz; fillsrc prevmode prevuioh);
4941 src#bool "persistent location"
4942 (fun () -> conf.jumpback)
4943 (fun v -> conf.jumpback <- v);
4945 sep ();
4946 src#int "inter-page space"
4947 (fun () -> conf.interpagespace)
4948 (fun n ->
4949 conf.interpagespace <- n;
4950 docolumns conf.columns;
4951 let pageno, py =
4952 match state.layout with
4953 | [] -> 0, 0
4954 | l :: _ ->
4955 l.pageno, l.pagey
4957 state.maxy <- calcheight ();
4958 let y = getpagey pageno in
4959 gotoy (y + py)
4962 src#int "page bias"
4963 (fun () -> conf.pagebias)
4964 (fun v -> conf.pagebias <- v);
4966 src#int "scroll step"
4967 (fun () -> conf.scrollstep)
4968 (fun n -> conf.scrollstep <- n);
4970 src#int "horizontal scroll step"
4971 (fun () -> conf.hscrollstep)
4972 (fun v -> conf.hscrollstep <- v);
4974 src#int "auto scroll step"
4975 (fun () ->
4976 match state.autoscroll with
4977 | Some step -> step
4978 | _ -> conf.autoscrollstep)
4979 (fun n ->
4980 let n = boundastep state.winh n in
4981 if state.autoscroll <> None
4982 then state.autoscroll <- Some n;
4983 conf.autoscrollstep <- n);
4985 src#int "zoom"
4986 (fun () -> truncate (conf.zoom *. 100.))
4987 (fun v -> setzoom ((float v) /. 100.));
4989 src#int "rotation"
4990 (fun () -> conf.angle)
4991 (fun v -> reqlayout v conf.fitmodel);
4993 src#int "scroll bar width"
4994 (fun () -> conf.scrollbw)
4995 (fun v ->
4996 conf.scrollbw <- v;
4997 reshape state.winw state.winh;
5000 src#int "scroll handle height"
5001 (fun () -> conf.scrollh)
5002 (fun v -> conf.scrollh <- v;);
5004 src#int "thumbnail width"
5005 (fun () -> conf.thumbw)
5006 (fun v ->
5007 conf.thumbw <- min 4096 v;
5008 match oldmode with
5009 | Birdseye beye ->
5010 leavebirdseye beye false;
5011 enterbirdseye ()
5012 | _ -> ()
5015 let mode = state.mode in
5016 src#string "columns"
5017 (fun () ->
5018 match conf.columns with
5019 | Csingle _ -> "1"
5020 | Cmulti (multi, _) -> multicolumns_to_string multi
5021 | Csplit (count, _) -> "-" ^ string_of_int count
5023 (fun v ->
5024 let n, a, b = multicolumns_of_string v in
5025 setcolumns mode n a b);
5027 sep ();
5028 src#caption "Pixmap cache" 0;
5029 src#int_with_suffix "size (advisory)"
5030 (fun () -> conf.memlimit)
5031 (fun v -> conf.memlimit <- v);
5033 src#caption2 "used"
5034 (fun () -> Printf.sprintf "%s bytes, %d tiles"
5035 (string_with_suffix_of_int state.memused)
5036 (Hashtbl.length state.tilemap)) 1;
5038 sep ();
5039 src#caption "Layout" 0;
5040 src#caption2 "Dimension"
5041 (fun () ->
5042 Printf.sprintf "%dx%d (virtual %dx%d)"
5043 state.winw state.winh
5044 state.w state.maxy)
5046 if conf.debug
5047 then
5048 src#caption2 "Position" (fun () ->
5049 Printf.sprintf "%dx%d" state.x state.y
5051 else
5052 src#caption2 "Position" (fun () -> describe_location ()) 1
5055 sep ();
5056 src#bool ~offset:0 ~btos:(fun v -> if v then "(on)" else "(off)")
5057 "Save these parameters as global defaults at exit"
5058 (fun () -> conf.bedefault)
5059 (fun v -> conf.bedefault <- v)
5062 sep ();
5063 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
5064 src#bool ~offset:0 ~btos "Extended parameters"
5065 (fun () -> !showextended)
5066 (fun v -> showextended := v; fillsrc prevmode prevuioh);
5067 if !showextended
5068 then (
5069 src#bool "checkers"
5070 (fun () -> conf.checkers)
5071 (fun v -> conf.checkers <- v; setcheckers v);
5072 src#bool "update cursor"
5073 (fun () -> conf.updatecurs)
5074 (fun v -> conf.updatecurs <- v);
5075 src#bool "verbose"
5076 (fun () -> conf.verbose)
5077 (fun v -> conf.verbose <- v);
5078 src#bool "invert colors"
5079 (fun () -> conf.invert)
5080 (fun v -> conf.invert <- v);
5081 src#bool "max fit"
5082 (fun () -> conf.maxhfit)
5083 (fun v -> conf.maxhfit <- v);
5084 src#bool "redirect stderr"
5085 (fun () -> conf.redirectstderr)
5086 (fun v -> conf.redirectstderr <- v; redirectstderr ());
5087 src#bool "pax mode"
5088 (fun () -> conf.pax != None)
5089 (fun v ->
5090 if v
5091 then conf.pax <- Some (ref (now (), 0, 0))
5092 else conf.pax <- None);
5093 src#string "uri launcher"
5094 (fun () -> conf.urilauncher)
5095 (fun v -> conf.urilauncher <- v);
5096 src#string "path launcher"
5097 (fun () -> conf.pathlauncher)
5098 (fun v -> conf.pathlauncher <- v);
5099 src#string "tile size"
5100 (fun () -> Printf.sprintf "%dx%d" conf.tilew conf.tileh)
5101 (fun v ->
5103 let w, h = Scanf.sscanf v "%dx%d" (fun w h -> w, h) in
5104 conf.tilew <- max 64 w;
5105 conf.tileh <- max 64 h;
5106 flushtiles ();
5107 with exn ->
5108 state.text <- Printf.sprintf "bad tile size `%s': %s"
5109 v (exntos exn)
5111 src#int "texture count"
5112 (fun () -> conf.texcount)
5113 (fun v ->
5114 if realloctexts v
5115 then conf.texcount <- v
5116 else showtext '!' " Failed to set texture count please retry later"
5118 src#int "slice height"
5119 (fun () -> conf.sliceheight)
5120 (fun v ->
5121 conf.sliceheight <- v;
5122 wcmd "sliceh %d" conf.sliceheight;
5124 src#int "anti-aliasing level"
5125 (fun () -> conf.aalevel)
5126 (fun v ->
5127 conf.aalevel <- bound v 0 8;
5128 state.anchor <- getanchor ();
5129 opendoc state.path state.password;
5131 src#string "page scroll scaling factor"
5132 (fun () -> string_of_float conf.pgscale)
5133 (fun v ->
5135 let s = float_of_string v in
5136 conf.pgscale <- s
5137 with exn ->
5138 state.text <- Printf.sprintf
5139 "bad page scroll scaling factor `%s': %s" v (exntos exn)
5142 src#int "ui font size"
5143 (fun () -> fstate.fontsize)
5144 (fun v -> setfontsize (bound v 5 100));
5145 src#int "hint font size"
5146 (fun () -> conf.hfsize)
5147 (fun v -> conf.hfsize <- bound v 5 100);
5148 colorp "background color"
5149 (fun () -> conf.bgcolor)
5150 (fun v -> conf.bgcolor <- v);
5151 src#bool "crop hack"
5152 (fun () -> conf.crophack)
5153 (fun v -> conf.crophack <- v);
5154 src#string "trim fuzz"
5155 (fun () -> irect_to_string conf.trimfuzz)
5156 (fun v ->
5158 conf.trimfuzz <- irect_of_string v;
5159 if conf.trimmargins
5160 then settrim true conf.trimfuzz;
5161 with exn ->
5162 state.text <- Printf.sprintf "bad irect `%s': %s" v (exntos exn)
5164 src#string "throttle"
5165 (fun () ->
5166 match conf.maxwait with
5167 | None -> "show place holder if page is not ready"
5168 | Some time ->
5169 if time = infinity
5170 then "wait for page to fully render"
5171 else
5172 "wait " ^ string_of_float time
5173 ^ " seconds before showing placeholder"
5175 (fun v ->
5177 let f = float_of_string v in
5178 if f <= 0.0
5179 then conf.maxwait <- None
5180 else conf.maxwait <- Some f
5181 with exn ->
5182 state.text <- Printf.sprintf "bad time `%s': %s" v (exntos exn)
5184 src#string "ghyll scroll"
5185 (fun () ->
5186 match conf.ghyllscroll with
5187 | None -> ""
5188 | Some nab -> ghyllscroll_to_string nab
5190 (fun v ->
5191 try conf.ghyllscroll <- ghyllscroll_of_string v
5192 with exn ->
5193 state.text <- Printf.sprintf "bad ghyll `%s': %s" v (exntos exn)
5195 src#string "selection command"
5196 (fun () -> conf.selcmd)
5197 (fun v -> conf.selcmd <- v);
5198 src#string "synctex command"
5199 (fun () -> conf.stcmd)
5200 (fun v -> conf.stcmd <- v);
5201 src#string "pax command"
5202 (fun () -> conf.paxcmd)
5203 (fun v -> conf.paxcmd <- v);
5204 src#colorspace "color space"
5205 (fun () -> CSTE.to_string conf.colorspace)
5206 (fun v ->
5207 conf.colorspace <- CSTE.of_int v;
5208 wcmd "cs %d" v;
5209 load state.layout;
5211 src#paxmark "pax mark method"
5212 (fun () -> MTE.to_string conf.paxmark)
5213 (fun v -> conf.paxmark <- MTE.of_int v);
5214 if pbousable ()
5215 then
5216 src#bool "use PBO"
5217 (fun () -> conf.usepbo)
5218 (fun v -> conf.usepbo <- v);
5219 src#bool "mouse wheel scrolls pages"
5220 (fun () -> conf.wheelbypage)
5221 (fun v -> conf.wheelbypage <- v);
5222 src#bool "open remote links in a new instance"
5223 (fun () -> conf.riani)
5224 (fun v -> conf.riani <- v);
5227 sep ();
5228 src#caption "Document" 0;
5229 List.iter (fun (_, s) -> src#caption s 1) state.docinfo;
5230 src#caption2 "Pages"
5231 (fun () -> string_of_int state.pagecount) 1;
5232 src#caption2 "Dimensions"
5233 (fun () -> string_of_int (List.length state.pdims)) 1;
5234 if conf.trimmargins
5235 then (
5236 sep ();
5237 src#caption "Trimmed margins" 0;
5238 src#caption2 "Dimensions"
5239 (fun () -> string_of_int (List.length state.pdims)) 1;
5242 sep ();
5243 src#caption "OpenGL" 0;
5244 src#caption (Printf.sprintf "Vendor\t%s" (GlMisc.get_string `vendor)) 1;
5245 src#caption (Printf.sprintf "Renderer\t%s" (GlMisc.get_string `renderer)) 1;
5247 sep ();
5248 src#caption "Location" 0;
5249 if nonemptystr state.origin
5250 then src#caption ("Orign\t" ^ mbtoutf8 state.origin) 1;
5251 src#caption ("Path\t" ^ mbtoutf8 state.path) 1;
5253 src#reset prevmode prevuioh;
5255 fun () ->
5256 state.text <- "";
5257 resetmstate ();
5258 let prevmode = state.mode
5259 and prevuioh = state.uioh in
5260 fillsrc prevmode prevuioh;
5261 let source = (src :> lvsource) in
5262 let modehash = findkeyhash conf "info" in
5263 state.uioh <- coe (object (self)
5264 inherit listview ~source ~trusted:true ~modehash as super
5265 val mutable m_prevmemused = 0
5266 method infochanged = function
5267 | Memused ->
5268 if m_prevmemused != state.memused
5269 then (
5270 m_prevmemused <- state.memused;
5271 G.postRedisplay "memusedchanged";
5273 | Pdim -> G.postRedisplay "pdimchanged"
5274 | Docinfo -> fillsrc prevmode prevuioh
5276 method key key mask =
5277 if not (Wsi.withctrl mask)
5278 then
5279 match key with
5280 | 0xff51 | 0xff96 -> coe (self#updownlevel ~-1) (* (kp) left *)
5281 | 0xff53 | 0xff98 -> coe (self#updownlevel 1) (* (kp) right *)
5282 | _ -> super#key key mask
5283 else super#key key mask
5284 end);
5285 G.postRedisplay "info";
5288 let enterhelpmode =
5289 let source =
5290 (object
5291 inherit lvsourcebase
5292 method getitemcount = Array.length state.help
5293 method getitem n =
5294 let s, l, _ = state.help.(n) in
5295 (s, l)
5297 method exit ~uioh ~cancel ~active ~first ~pan =
5298 let optuioh =
5299 if not cancel
5300 then (
5301 match state.help.(active) with
5302 | _, _, Action f -> Some (f uioh)
5303 | _ -> Some (uioh)
5305 else None
5307 m_active <- active;
5308 m_first <- first;
5309 m_pan <- pan;
5310 optuioh
5312 method hasaction n =
5313 match state.help.(n) with
5314 | _, _, Action _ -> true
5315 | _ -> false
5317 initializer
5318 m_active <- -1
5319 end)
5320 in fun () ->
5321 let modehash = findkeyhash conf "help" in
5322 resetmstate ();
5323 state.uioh <- coe (new listview ~source ~trusted:true ~modehash);
5324 G.postRedisplay "help";
5327 let entermsgsmode =
5328 let msgsource =
5329 let re = Str.regexp "[\r\n]" in
5330 (object
5331 inherit lvsourcebase
5332 val mutable m_items = [||]
5334 method getitemcount = 1 + Array.length m_items
5336 method getitem n =
5337 if n = 0
5338 then "[Clear]", 0
5339 else m_items.(n-1), 0
5341 method exit ~uioh ~cancel ~active ~first ~pan =
5342 ignore uioh;
5343 if not cancel
5344 then (
5345 if active = 0
5346 then Buffer.clear state.errmsgs;
5348 m_active <- active;
5349 m_first <- first;
5350 m_pan <- pan;
5351 None
5353 method hasaction n =
5354 n = 0
5356 method reset =
5357 state.newerrmsgs <- false;
5358 let l = Str.split re (Buffer.contents state.errmsgs) in
5359 m_items <- Array.of_list l
5361 initializer
5362 m_active <- 0
5363 end)
5364 in fun () ->
5365 state.text <- "";
5366 resetmstate ();
5367 msgsource#reset;
5368 let source = (msgsource :> lvsource) in
5369 let modehash = findkeyhash conf "listview" in
5370 state.uioh <- coe (object
5371 inherit listview ~source ~trusted:false ~modehash as super
5372 method display =
5373 if state.newerrmsgs
5374 then msgsource#reset;
5375 super#display
5376 end);
5377 G.postRedisplay "msgs";
5380 let quickbookmark ?title () =
5381 match state.layout with
5382 | [] -> ()
5383 | l :: _ ->
5384 let title =
5385 match title with
5386 | None ->
5387 let sec = Unix.gettimeofday () in
5388 let tm = Unix.localtime sec in
5389 Printf.sprintf "Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
5390 (l.pageno+1)
5391 tm.Unix.tm_mday
5392 tm.Unix.tm_mon
5393 (tm.Unix.tm_year + 1900)
5394 tm.Unix.tm_hour
5395 tm.Unix.tm_min
5396 | Some title -> title
5398 state.bookmarks <- (title, 0, Oanchor (getanchor1 l)) :: state.bookmarks
5401 let setautoscrollspeed step goingdown =
5402 let incr = max 1 ((abs step) / 2) in
5403 let incr = if goingdown then incr else -incr in
5404 let astep = boundastep state.winh (step + incr) in
5405 state.autoscroll <- Some astep;
5408 let canpan () =
5409 match conf.columns with
5410 | Csplit _ -> true
5411 | _ -> state.x != 0 || conf.zoom > 1.0
5414 let panbound x = bound x (-state.w) (wadjsb state.winw);;
5416 let existsinrow pageno (columns, coverA, coverB) p =
5417 let last = ((pageno - coverA) mod columns) + columns in
5418 let rec any = function
5419 | [] -> false
5420 | l :: rest ->
5421 if l.pageno = coverA - 1 || l.pageno = state.pagecount - coverB
5422 then p l
5423 else (
5424 if not (p l)
5425 then (if l.pageno = last then false else any rest)
5426 else true
5429 any state.layout
5432 let nextpage () =
5433 match state.layout with
5434 | [] ->
5435 let pageno = page_of_y state.y in
5436 gotoghyll (getpagey (pageno+1))
5437 | l :: rest ->
5438 match conf.columns with
5439 | Csingle _ ->
5440 if conf.presentation && rest == [] && l.pageh > l.pagey + l.pagevh
5441 then
5442 let y = clamp (pgscale state.winh) in
5443 gotoghyll y
5444 else
5445 let pageno = min (l.pageno+1) (state.pagecount-1) in
5446 gotoghyll (getpagey pageno)
5447 | Cmulti ((c, _, _) as cl, _) ->
5448 if conf.presentation
5449 && (existsinrow l.pageno cl
5450 (fun l -> l.pageh > l.pagey + l.pagevh))
5451 then
5452 let y = clamp (pgscale state.winh) in
5453 gotoghyll y
5454 else
5455 let pageno = min (l.pageno+c) (state.pagecount-1) in
5456 gotoghyll (getpagey pageno)
5457 | Csplit (n, _) ->
5458 if l.pageno < state.pagecount - 1 || l.pagecol < n - 1
5459 then
5460 let pagey, pageh = getpageyh l.pageno in
5461 let pagey = pagey + pageh * l.pagecol in
5462 let ips = if l.pagecol = 0 then 0 else conf.interpagespace in
5463 gotoghyll (pagey + pageh + ips)
5466 let prevpage () =
5467 match state.layout with
5468 | [] ->
5469 let pageno = page_of_y state.y in
5470 gotoghyll (getpagey (pageno-1))
5471 | l :: _ ->
5472 match conf.columns with
5473 | Csingle _ ->
5474 if conf.presentation && l.pagey != 0
5475 then
5476 gotoghyll (clamp (pgscale ~-(state.winh)))
5477 else
5478 let pageno = max 0 (l.pageno-1) in
5479 gotoghyll (getpagey pageno)
5480 | Cmulti ((c, _, coverB) as cl, _) ->
5481 if conf.presentation &&
5482 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
5483 then
5484 gotoghyll (clamp (pgscale ~-(state.winh)))
5485 else
5486 let decr =
5487 if l.pageno = state.pagecount - coverB
5488 then 1
5489 else c
5491 let pageno = max 0 (l.pageno-decr) in
5492 gotoghyll (getpagey pageno)
5493 | Csplit (n, _) ->
5494 let y =
5495 if l.pagecol = 0
5496 then
5497 if l.pageno = 0
5498 then l.pagey
5499 else
5500 let pageno = max 0 (l.pageno-1) in
5501 let pagey, pageh = getpageyh pageno in
5502 pagey + (n-1)*pageh
5503 else
5504 let pagey, pageh = getpageyh l.pageno in
5505 pagey + pageh * (l.pagecol-1) - conf.interpagespace
5507 gotoghyll y
5510 let viewkeyboard key mask =
5511 let enttext te =
5512 let mode = state.mode in
5513 state.mode <- Textentry (te, fun _ -> state.mode <- mode);
5514 state.text <- "";
5515 enttext ();
5516 G.postRedisplay "view:enttext"
5518 let ctrl = Wsi.withctrl mask in
5519 let key =
5520 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
5522 match key with
5523 | 81 -> (* Q *)
5524 exit 0
5526 | 0xff63 -> (* insert *)
5527 if conf.angle mod 360 = 0 && not (isbirdseye state.mode)
5528 then (
5529 state.mode <- LinkNav (Ltgendir 0);
5530 gotoy state.y;
5532 else showtext '!' "Keyboard link navigation does not work under rotation"
5534 | 0xff1b | 113 -> (* escape / q *)
5535 begin match state.mstate with
5536 | Mzoomrect _ ->
5537 resetmstate ();
5538 G.postRedisplay "kill zoom rect";
5539 | _ ->
5540 begin match state.mode with
5541 | LinkNav _ ->
5542 state.mode <- View;
5543 G.postRedisplay "esc leave linknav"
5544 | _ ->
5545 match state.ranchors with
5546 | [] -> raise Quit
5547 | (path, password, anchor, origin) :: rest ->
5548 state.ranchors <- rest;
5549 state.anchor <- anchor;
5550 state.origin <- origin;
5551 state.nameddest <- "";
5552 opendoc path password
5553 end;
5554 end;
5556 | 0xff08 -> (* backspace *)
5557 gotoghyll (getnav ~-1)
5559 | 111 -> (* o *)
5560 enteroutlinemode ()
5562 | 117 -> (* u *)
5563 state.rects <- [];
5564 state.text <- "";
5565 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
5566 G.postRedisplay "dehighlight";
5568 | 47 | 63 -> (* / ? *)
5569 let ondone isforw s =
5570 cbput state.hists.pat s;
5571 state.searchpattern <- s;
5572 search s isforw
5574 let s = String.create 1 in
5575 s.[0] <- Char.chr key;
5576 enttext (s, "", Some (onhist state.hists.pat),
5577 textentry, ondone (key = 47), true)
5579 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5580 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5581 setzoom (conf.zoom +. incr)
5583 | 43 | 0xffab -> (* + *)
5584 let ondone s =
5585 let n =
5586 try int_of_string s with exc ->
5587 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5588 max_int
5590 if n != max_int
5591 then (
5592 conf.pagebias <- n;
5593 state.text <- "page bias is now " ^ string_of_int n;
5596 enttext ("page bias: ", "", None, intentry, ondone, true)
5598 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5599 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5600 setzoom (max 0.01 (conf.zoom -. decr))
5602 | 45 | 0xffad -> (* - *)
5603 let ondone msg = state.text <- msg in
5604 enttext (
5605 "option [acfhilpstvxACFPRSZTISM]: ", "", None,
5606 optentry state.mode, ondone, true
5609 | 48 when ctrl -> (* ctrl-0 *)
5610 if conf.zoom = 1.0
5611 then (
5612 state.x <- 0;
5613 gotoy state.y
5615 else setzoom 1.0
5617 | (49 | 50) when ctrl && conf.fitmodel != FitPage -> (* ctrl-1/2 *)
5618 let cols =
5619 match conf.columns with
5620 | Csingle _ | Cmulti _ -> 1
5621 | Csplit (n, _) -> n
5623 let h = state.winh -
5624 conf.interpagespace lsl (if conf.presentation then 1 else 0)
5626 let zoom = zoomforh state.winw h (vscrollw ()) cols in
5627 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5628 then setzoom zoom
5630 | 51 when ctrl -> (* ctrl-3 *)
5631 let fm =
5632 match conf.fitmodel with
5633 | FitWidth -> FitProportional
5634 | FitProportional -> FitPage
5635 | FitPage -> FitWidth
5637 state.text <- "fit model: " ^ FMTE.to_string fm;
5638 reqlayout conf.angle fm
5640 | 0xffc6 -> (* f9 *)
5641 togglebirdseye ()
5643 | 57 when ctrl -> (* ctrl-9 *)
5644 togglebirdseye ()
5646 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5647 when not ctrl -> (* 0..9 *)
5648 let ondone s =
5649 let n =
5650 try int_of_string s with exc ->
5651 state.text <- Printf.sprintf "bad integer `%s': %s" s (exntos exc);
5654 if n >= 0
5655 then (
5656 addnav ();
5657 cbput state.hists.pag (string_of_int n);
5658 gotopage1 (n + conf.pagebias - 1) 0;
5661 let pageentry text key =
5662 match Char.unsafe_chr key with
5663 | 'g' -> TEdone text
5664 | _ -> intentry text key
5666 let text = "x" in text.[0] <- Char.chr key;
5667 enttext (":", text, Some (onhist state.hists.pag), pageentry, ondone, true)
5669 | 98 -> (* b *)
5670 conf.scrollb <- if conf.scrollb = 0 then (scrollbvv lor scrollbhv) else 0;
5671 reshape state.winw state.winh;
5673 | 66 -> (* B *)
5674 state.bzoom <- not state.bzoom;
5675 state.rects <- [];
5676 showtext ' ' ("block zoom " ^ if state.bzoom then "on" else "off")
5678 | 108 -> (* l *)
5679 conf.hlinks <- not conf.hlinks;
5680 state.text <- "highlightlinks " ^ if conf.hlinks then "on" else "off";
5681 G.postRedisplay "toggle highlightlinks";
5683 | 70 -> (* F *)
5684 state.glinks <- true;
5685 let mode = state.mode in
5686 state.mode <- Textentry (
5687 (":", "", None, linknentry, linkndone gotounder, false),
5688 (fun _ ->
5689 state.glinks <- false;
5690 state.mode <- mode)
5692 state.text <- "";
5693 G.postRedisplay "view:linkent(F)"
5695 | 121 -> (* y *)
5696 state.glinks <- true;
5697 let mode = state.mode in
5698 state.mode <- Textentry (
5700 ":", "", None, linknentry, linkndone (fun under ->
5701 selstring (undertext under);
5702 ), false
5704 fun _ ->
5705 state.glinks <- false;
5706 state.mode <- mode
5708 state.text <- "";
5709 G.postRedisplay "view:linkent"
5711 | 97 -> (* a *)
5712 begin match state.autoscroll with
5713 | Some step ->
5714 conf.autoscrollstep <- step;
5715 state.autoscroll <- None
5716 | None ->
5717 if conf.autoscrollstep = 0
5718 then state.autoscroll <- Some 1
5719 else state.autoscroll <- Some conf.autoscrollstep
5722 | 112 when ctrl -> (* ctrl-p *)
5723 launchpath ()
5725 | 80 -> (* P *)
5726 setpresentationmode (not conf.presentation);
5727 showtext ' ' ("presentation mode " ^
5728 if conf.presentation then "on" else "off");
5730 | 102 -> (* f *)
5731 if List.mem Wsi.Fullscreen state.winstate
5732 then Wsi.reshape conf.cwinw conf.cwinh
5733 else Wsi.fullscreen ()
5735 | 112 | 78 -> (* p|N *)
5736 search state.searchpattern false
5738 | 110 | 0xffc0 -> (* n|F3 *)
5739 search state.searchpattern true
5741 | 116 -> (* t *)
5742 begin match state.layout with
5743 | [] -> ()
5744 | l :: _ ->
5745 gotoghyll (getpagey l.pageno)
5748 | 32 -> (* space *)
5749 nextpage ()
5751 | 0xff9f | 0xffff -> (* delete *)
5752 prevpage ()
5754 | 61 -> (* = *)
5755 showtext ' ' (describe_location ());
5757 | 119 -> (* w *)
5758 begin match state.layout with
5759 | [] -> ()
5760 | l :: _ ->
5761 Wsi.reshape (l.pagew + vscrollw ()) l.pageh;
5762 G.postRedisplay "w"
5765 | 39 -> (* ' *)
5766 enterbookmarkmode ()
5768 | 104 | 0xffbe -> (* h|F1 *)
5769 enterhelpmode ()
5771 | 105 -> (* i *)
5772 enterinfomode ()
5774 | 101 when Buffer.length state.errmsgs > 0 -> (* e *)
5775 entermsgsmode ()
5777 | 109 -> (* m *)
5778 let ondone s =
5779 match state.layout with
5780 | l :: _ ->
5781 if nonemptystr s
5782 then
5783 state.bookmarks <-
5784 (s, 0, Oanchor (getanchor1 l)) :: state.bookmarks
5785 | _ -> ()
5787 enttext ("bookmark: ", "", None, textentry, ondone, true)
5789 | 126 -> (* ~ *)
5790 quickbookmark ();
5791 showtext ' ' "Quick bookmark added";
5793 | 122 -> (* z *)
5794 begin match state.layout with
5795 | l :: _ ->
5796 let rect = getpdimrect l.pagedimno in
5797 let w, h =
5798 if conf.crophack
5799 then
5800 (truncate (1.8 *. (rect.(1) -. rect.(0))),
5801 truncate (1.2 *. (rect.(3) -. rect.(0))))
5802 else
5803 (truncate (rect.(1) -. rect.(0)),
5804 truncate (rect.(3) -. rect.(0)))
5806 let w = truncate ((float w)*.conf.zoom)
5807 and h = truncate ((float h)*.conf.zoom) in
5808 if w != 0 && h != 0
5809 then (
5810 state.anchor <- getanchor ();
5811 Wsi.reshape (w + vscrollw ()) (h + conf.interpagespace)
5813 G.postRedisplay "z";
5815 | [] -> ()
5818 | 120 -> (* x *)
5819 state.roam ()
5820 | 60 | 62 -> (* < > *)
5821 reqlayout (conf.angle + (if key = 62 then 30 else -30)) conf.fitmodel
5823 | 91 | 93 -> (* [ ] *)
5824 conf.colorscale <-
5825 bound (conf.colorscale +. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5827 G.postRedisplay "brightness";
5829 | 99 when state.mode = View -> (* [alt-]c *)
5830 if Wsi.withalt mask
5831 then (
5832 if conf.zoom > 1.0
5833 then
5834 let m = (wadjsb state.winw - state.w) / 2 in
5835 state.x <- m;
5836 gotoy_and_clear_text state.y
5838 else
5839 let (c, a, b), z =
5840 match state.prevcolumns with
5841 | None -> (1, 0, 0), 1.0
5842 | Some (columns, z) ->
5843 let cab =
5844 match columns with
5845 | Csplit (c, _) -> -c, 0, 0
5846 | Cmulti ((c, a, b), _) -> c, a, b
5847 | Csingle _ -> 1, 0, 0
5849 cab, z
5851 setcolumns View c a b;
5852 setzoom z
5854 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
5855 -> (* ctrl-shift- (kp) [up|down] *)
5856 let zoom, x = state.prevzoom in
5857 setzoom zoom;
5858 state.x <- x;
5860 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5861 begin match state.autoscroll with
5862 | None ->
5863 begin match state.mode with
5864 | Birdseye beye -> upbirdseye 1 beye
5865 | _ ->
5866 if ctrl
5867 then gotoy_and_clear_text (clamp ~-(state.winh/2))
5868 else (
5869 if not (Wsi.withshift mask) && conf.presentation
5870 then prevpage ()
5871 else gotoghyll1 true (clamp (-conf.scrollstep))
5874 | Some n ->
5875 setautoscrollspeed n false
5878 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5879 begin match state.autoscroll with
5880 | None ->
5881 begin match state.mode with
5882 | Birdseye beye -> downbirdseye 1 beye
5883 | _ ->
5884 if ctrl
5885 then gotoy_and_clear_text (clamp (state.winh/2))
5886 else (
5887 if not (Wsi.withshift mask) && conf.presentation
5888 then nextpage ()
5889 else gotoghyll1 true (clamp (conf.scrollstep))
5892 | Some n ->
5893 setautoscrollspeed n true
5896 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5897 when not (Wsi.withalt mask) -> (* (kp) left / right *)
5898 if canpan ()
5899 then
5900 let dx =
5901 if ctrl
5902 then state.winw / 2
5903 else conf.hscrollstep
5905 let dx = if key = 0xff51 || key = 0xff96 then dx else -dx in
5906 state.x <- panbound (state.x + dx);
5907 gotoy_and_clear_text state.y
5908 else (
5909 state.text <- "";
5910 G.postRedisplay "left/right"
5913 | 0xff55 | 0xff9a -> (* (kp) prior *)
5914 let y =
5915 if ctrl
5916 then
5917 match state.layout with
5918 | [] -> state.y
5919 | l :: _ -> state.y - l.pagey
5920 else
5921 clamp (pgscale (-state.winh))
5923 gotoghyll y
5925 | 0xff56 | 0xff9b -> (* (kp) next *)
5926 let y =
5927 if ctrl
5928 then
5929 match List.rev state.layout with
5930 | [] -> state.y
5931 | l :: _ -> getpagey l.pageno
5932 else
5933 clamp (pgscale state.winh)
5935 gotoghyll y
5937 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5938 gotoghyll 0
5939 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5940 gotoghyll (clamp state.maxy)
5942 | 0xff53 | 0xff98
5943 when Wsi.withalt mask -> (* alt-(kp) right *)
5944 gotoghyll (getnav 1)
5945 | 0xff51 | 0xff96
5946 when Wsi.withalt mask -> (* alt-(kp) left *)
5947 gotoghyll (getnav ~-1)
5949 | 114 -> (* r *)
5950 reload ()
5952 | 118 when conf.debug -> (* v *)
5953 state.rects <- [];
5954 List.iter (fun l ->
5955 match getopaque l.pageno with
5956 | None -> ()
5957 | Some opaque ->
5958 let x0, y0, x1, y1 = pagebbox opaque in
5959 let a,b = float x0, float y0 in
5960 let c,d = float x1, float y0 in
5961 let e,f = float x1, float y1 in
5962 let h,j = float x0, float y1 in
5963 let rect = (a,b,c,d,e,f,h,j) in
5964 debugrect rect;
5965 state.rects <- (l.pageno, l.pageno mod 3, rect) :: state.rects;
5966 ) state.layout;
5967 G.postRedisplay "v";
5969 | 124 -> (* | *)
5970 let mode = state.mode in
5971 let cmd = ref "" in
5972 let onleave = function
5973 | Cancel -> state.mode <- mode
5974 | Confirm ->
5975 List.iter (fun l ->
5976 match getopaque l.pageno with
5977 | Some opaque -> pipesel opaque !cmd
5978 | None -> ()) state.layout;
5979 state.mode <- mode
5981 let ondone s =
5982 cbput state.hists.sel s;
5983 cmd := s
5985 let te =
5986 "| ", !cmd, Some (onhist state.hists.sel), textentry, ondone, true
5988 G.postRedisplay "|";
5989 state.mode <- Textentry (te, onleave);
5991 | _ ->
5992 vlog "huh? %s" (Wsi.keyname key)
5995 let linknavkeyboard key mask linknav =
5996 let getpage pageno =
5997 let rec loop = function
5998 | [] -> None
5999 | l :: _ when l.pageno = pageno -> Some l
6000 | _ :: rest -> loop rest
6001 in loop state.layout
6003 let doexact (pageno, n) =
6004 match getopaque pageno, getpage pageno with
6005 | Some opaque, Some l ->
6006 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
6007 then
6008 let under = getlink opaque n in
6009 G.postRedisplay "link gotounder";
6010 gotounder under;
6011 state.mode <- View;
6012 else
6013 let opt, dir =
6014 match key with
6015 | 0xff50 -> (* home *)
6016 Some (findlink opaque LDfirst), -1
6018 | 0xff57 -> (* end *)
6019 Some (findlink opaque LDlast), 1
6021 | 0xff51 -> (* left *)
6022 Some (findlink opaque (LDleft n)), -1
6024 | 0xff53 -> (* right *)
6025 Some (findlink opaque (LDright n)), 1
6027 | 0xff52 -> (* up *)
6028 Some (findlink opaque (LDup n)), -1
6030 | 0xff54 -> (* down *)
6031 Some (findlink opaque (LDdown n)), 1
6033 | _ -> None, 0
6035 let pwl l dir =
6036 begin match findpwl l.pageno dir with
6037 | Pwlnotfound -> ()
6038 | Pwl pageno ->
6039 let notfound dir =
6040 state.mode <- LinkNav (Ltgendir dir);
6041 let y, h = getpageyh pageno in
6042 let y =
6043 if dir < 0
6044 then y + h - state.winh
6045 else y
6047 gotoy y
6049 begin match getopaque pageno, getpage pageno with
6050 | Some opaque, Some _ ->
6051 let link =
6052 let ld = if dir > 0 then LDfirst else LDlast in
6053 findlink opaque ld
6055 begin match link with
6056 | Lfound m ->
6057 showlinktype (getlink opaque m);
6058 state.mode <- LinkNav (Ltexact (pageno, m));
6059 G.postRedisplay "linknav jpage";
6060 | _ -> notfound dir
6061 end;
6062 | _ -> notfound dir
6063 end;
6064 end;
6066 begin match opt with
6067 | Some Lnotfound -> pwl l dir;
6068 | Some (Lfound m) ->
6069 if m = n
6070 then pwl l dir
6071 else (
6072 let _, y0, _, y1 = getlinkrect opaque m in
6073 if y0 < l.pagey
6074 then gotopage1 l.pageno y0
6075 else (
6076 let d = fstate.fontsize + 1 in
6077 if y1 - l.pagey > l.pagevh - d
6078 then gotopage1 l.pageno (y1 - state.winh - hscrollh () + d)
6079 else G.postRedisplay "linknav";
6081 showlinktype (getlink opaque m);
6082 state.mode <- LinkNav (Ltexact (l.pageno, m));
6085 | None -> viewkeyboard key mask
6086 end;
6087 | _ -> viewkeyboard key mask
6089 if key = 0xff63
6090 then (
6091 state.mode <- View;
6092 G.postRedisplay "leave linknav"
6094 else
6095 match linknav with
6096 | Ltgendir _ -> viewkeyboard key mask
6097 | Ltexact exact -> doexact exact
6100 let keyboard key mask =
6101 if (key = 103 && Wsi.withctrl mask) && not (istextentry state.mode)
6102 then wcmd "interrupt"
6103 else state.uioh <- state.uioh#key key mask
6106 let birdseyekeyboard key mask
6107 ((oconf, leftx, pageno, hooverpageno, anchor) as beye) =
6108 let incr =
6109 match conf.columns with
6110 | Csingle _ -> 1
6111 | Cmulti ((c, _, _), _) -> c
6112 | Csplit _ -> failwith "bird's eye split mode"
6114 let pgh layout = List.fold_left (fun m l -> max l.pageh m) state.winh layout in
6115 match key with
6116 | 108 when Wsi.withctrl mask -> (* ctrl-l *)
6117 let y, h = getpageyh pageno in
6118 let top = (state.winh - h) / 2 in
6119 gotoy (max 0 (y - top))
6120 | 0xff0d (* enter *)
6121 | 0xff8d -> leavebirdseye beye false (* kp enter *)
6122 | 0xff1b -> leavebirdseye beye true (* escape *)
6123 | 0xff52 -> upbirdseye incr beye (* up *)
6124 | 0xff54 -> downbirdseye incr beye (* down *)
6125 | 0xff51 -> upbirdseye 1 beye (* left *)
6126 | 0xff53 -> downbirdseye 1 beye (* right *)
6128 | 0xff55 -> (* prior *)
6129 begin match state.layout with
6130 | l :: _ ->
6131 if l.pagey != 0
6132 then (
6133 state.mode <- Birdseye (
6134 oconf, leftx, l.pageno, hooverpageno, anchor
6136 gotopage1 l.pageno 0;
6138 else (
6139 let layout = layout (state.y-state.winh) (pgh state.layout) in
6140 match layout with
6141 | [] -> gotoy (clamp (-state.winh))
6142 | l :: _ ->
6143 state.mode <- Birdseye (
6144 oconf, leftx, l.pageno, hooverpageno, anchor
6146 gotopage1 l.pageno 0
6149 | [] -> gotoy (clamp (-state.winh))
6150 end;
6152 | 0xff56 -> (* next *)
6153 begin match List.rev state.layout with
6154 | l :: _ ->
6155 let layout = layout (state.y + (pgh state.layout)) state.winh in
6156 begin match layout with
6157 | [] ->
6158 let incr = l.pageh - l.pagevh in
6159 if incr = 0
6160 then (
6161 state.mode <-
6162 Birdseye (
6163 oconf, leftx, state.pagecount - 1, hooverpageno, anchor
6165 G.postRedisplay "birdseye pagedown";
6167 else gotoy (clamp (incr + conf.interpagespace*2));
6169 | l :: _ ->
6170 state.mode <-
6171 Birdseye (oconf, leftx, l.pageno, hooverpageno, anchor);
6172 gotopage1 l.pageno 0;
6175 | [] -> gotoy (clamp state.winh)
6176 end;
6178 | 0xff50 -> (* home *)
6179 state.mode <- Birdseye (oconf, leftx, 0, hooverpageno, anchor);
6180 gotopage1 0 0
6182 | 0xff57 -> (* end *)
6183 let pageno = state.pagecount - 1 in
6184 state.mode <- Birdseye (oconf, leftx, pageno, hooverpageno, anchor);
6185 if not (pagevisible state.layout pageno)
6186 then
6187 let h =
6188 match List.rev state.pdims with
6189 | [] -> state.winh
6190 | (_, _, h, _) :: _ -> h
6192 gotoy (max 0 (getpagey pageno - (state.winh - h - conf.interpagespace)))
6193 else G.postRedisplay "birdseye end";
6194 | _ -> viewkeyboard key mask
6197 let drawpage l =
6198 let color =
6199 match state.mode with
6200 | Textentry _ -> scalecolor 0.4
6201 | LinkNav _
6202 | View -> scalecolor 1.0
6203 | Birdseye (_, _, pageno, hooverpageno, _) ->
6204 if l.pageno = hooverpageno
6205 then scalecolor 0.9
6206 else (
6207 if l.pageno = pageno
6208 then scalecolor 1.0
6209 else scalecolor 0.8
6212 drawtiles l color;
6215 let postdrawpage l linkindexbase =
6216 match getopaque l.pageno with
6217 | Some opaque ->
6218 if tileready l l.pagex l.pagey
6219 then
6220 let x = l.pagedispx - l.pagex
6221 and y = l.pagedispy - l.pagey in
6222 let hlmask =
6223 match conf.columns with
6224 | Csingle _ | Cmulti _ ->
6225 (if conf.hlinks then 1 else 0)
6226 + (if state.glinks
6227 && not (isbirdseye state.mode) then 2 else 0)
6228 | _ -> 0
6230 let s =
6231 match state.mode with
6232 | Textentry ((_, s, _, _, _, _), _) when state.glinks -> s
6233 | _ -> ""
6235 postprocess opaque hlmask x y (linkindexbase, s, conf.hfsize);
6236 else 0
6237 | _ -> 0
6240 let scrollindicator () =
6241 let sbw, ph, sh = state.uioh#scrollph in
6242 let sbh, pw, sw = state.uioh#scrollpw in
6244 GlDraw.color (0.64, 0.64, 0.64);
6245 filledrect
6246 (float (state.winw - sbw)) 0.
6247 (float state.winw) (float state.winh)
6249 filledrect
6250 0. (float (state.winh - sbh))
6251 (float (wadjsb state.winw - 1)) (float state.winh)
6253 GlDraw.color (0.0, 0.0, 0.0);
6255 filledrect
6256 (float (state.winw - sbw)) ph
6257 (float state.winw) (ph +. sh)
6259 filledrect
6260 pw (float (state.winh - sbh))
6261 (pw +. sw) (float state.winh)
6265 let showsel () =
6266 match state.mstate with
6267 | Mnone | Mscrolly | Mscrollx | Mpan _ | Mzoom _ | Mzoomrect _ ->
6270 | Msel ((x0, y0), (x1, y1)) ->
6271 let identify opaque l px py = Some (opaque, l.pageno, px, py) in
6272 let o0,n0,px0,py0 = onppundermouse identify x0 y0 (~< "", -1, 0, 0) in
6273 let _o1,n1,px1,py1 = onppundermouse identify x1 y1 (~< "", -1, 0, 0) in
6274 if n0 != -1 && n0 = n1 then seltext o0 (px0, py0, px1, py1);
6277 let showrects = function [] -> () | rects ->
6278 Gl.enable `blend;
6279 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
6280 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
6281 List.iter
6282 (fun (pageno, c, (x0, y0, x1, y1, x2, y2, x3, y3)) ->
6283 List.iter (fun l ->
6284 if l.pageno = pageno
6285 then (
6286 let dx = float (l.pagedispx - l.pagex) in
6287 let dy = float (l.pagedispy - l.pagey) in
6288 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
6289 Raw.sets_float state.vraw ~pos:0
6290 [| x0+.dx; y0+.dy;
6291 x1+.dx; y1+.dy;
6292 x3+.dx; y3+.dy;
6293 x2+.dx; y2+.dy |];
6294 GlArray.vertex `two state.vraw;
6295 GlArray.draw_arrays `triangle_strip 0 4;
6297 ) state.layout
6298 ) rects
6300 Gl.disable `blend;
6303 let display () =
6304 GlClear.color (scalecolor2 conf.bgcolor);
6305 GlClear.clear [`color];
6306 List.iter drawpage state.layout;
6307 let rects =
6308 match state.mode with
6309 | LinkNav (Ltexact (pageno, linkno)) ->
6310 begin match getopaque pageno with
6311 | Some opaque ->
6312 let x0, y0, x1, y1 = getlinkrect opaque linkno in
6313 (pageno, 5, (
6314 float x0, float y0,
6315 float x1, float y0,
6316 float x1, float y1,
6317 float x0, float y1)
6318 ) :: state.rects
6319 | None -> state.rects
6321 | _ -> state.rects
6323 showrects rects;
6324 let rec postloop linkindexbase = function
6325 | l :: rest ->
6326 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
6327 postloop linkindexbase rest
6328 | [] -> ()
6330 showsel ();
6331 postloop 0 state.layout;
6332 state.uioh#display;
6333 begin match state.mstate with
6334 | Mzoomrect ((x0, y0), (x1, y1)) ->
6335 Gl.enable `blend;
6336 GlDraw.color (0.3, 0.3, 0.3) ~alpha:0.5;
6337 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
6338 filledrect (float x0) (float y0) (float x1) (float y1);
6339 Gl.disable `blend;
6340 | _ -> ()
6341 end;
6342 enttext ();
6343 scrollindicator ();
6344 Wsi.swapb ();
6347 let zoomrect x y x1 y1 =
6348 let x0 = min x x1
6349 and x1 = max x x1
6350 and y0 = min y y1 in
6351 gotoy (state.y + y0);
6352 state.anchor <- getanchor ();
6353 let zoom = (float state.w) /. float (x1 - x0) in
6354 let margin =
6355 match conf.fitmodel, conf.columns with
6356 | FitPage, Csplit _ ->
6357 onppundermouse (fun _ l _ _ -> Some l.pagedispx) x0 y0 x0
6359 | _, _ ->
6360 let adjw = wadjsb state.winw in
6361 if state.w < adjw
6362 then (adjw - state.w) / 2
6363 else 0
6365 state.x <- (state.x + margin) - x0;
6366 setzoom zoom;
6367 resetmstate ();
6370 let zoomblock x y =
6371 let g opaque l px py =
6372 match rectofblock opaque px py with
6373 | Some a ->
6374 let x0 = a.(0) -. 20. in
6375 let x1 = a.(1) +. 20. in
6376 let y0 = a.(2) -. 20. in
6377 let zoom = (float state.w) /. (x1 -. x0) in
6378 let pagey = getpagey l.pageno in
6379 gotoy_and_clear_text (pagey + truncate y0);
6380 state.anchor <- getanchor ();
6381 let margin = (state.w - l.pagew)/2 in
6382 state.x <- -truncate x0 - margin;
6383 setzoom zoom;
6384 None
6385 | None -> None
6387 match conf.columns with
6388 | Csplit _ ->
6389 showtext '!' "block zooming does not work properly in split columns mode"
6390 | _ -> onppundermouse g x y ()
6393 let scrollx x =
6394 let winw = wadjsb state.winw - 1 in
6395 let s = float x /. float winw in
6396 let destx = truncate (float (state.w + winw) *. s) in
6397 state.x <- winw - destx;
6398 gotoy_and_clear_text state.y;
6399 state.mstate <- Mscrollx;
6402 let scrolly y =
6403 let s = float y /. float state.winh in
6404 let desty = truncate (float (state.maxy - state.winh) *. s) in
6405 gotoy_and_clear_text desty;
6406 state.mstate <- Mscrolly;
6409 let viewmulticlick clicks x y mask =
6410 let g opaque l px py =
6411 let mark =
6412 match clicks with
6413 | 2 -> Mark_word
6414 | 3 -> Mark_line
6415 | 4 -> Mark_block
6416 | _ -> Mark_page
6418 if markunder opaque px py mark
6419 then (
6420 Some (fun () ->
6421 let dopipe cmd =
6422 match getopaque l.pageno with
6423 | None -> ()
6424 | Some opaque -> pipesel opaque cmd
6426 state.roam <- (fun () -> dopipe conf.paxcmd);
6427 if not (Wsi.withctrl mask) then dopipe conf.selcmd;
6430 else None
6432 G.postRedisplay "viewmulticlick";
6433 onppundermouse g x y (fun () -> showtext '!' "Nothing to select") ();
6436 let canselect () =
6437 match conf.columns with
6438 | Csplit _ -> false
6439 | Csingle _ | Cmulti _ -> conf.angle mod 360 = 0
6442 let viewmouse button down x y mask =
6443 match button with
6444 | n when (n == 4 || n == 5) && not down ->
6445 if Wsi.withctrl mask
6446 then (
6447 match state.mstate with
6448 | Mzoom (oldn, i) ->
6449 if oldn = n
6450 then (
6451 if i = 2
6452 then
6453 let incr =
6454 match n with
6455 | 5 ->
6456 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
6457 | _ ->
6458 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
6460 let zoom = conf.zoom -. incr in
6461 setzoom zoom;
6462 state.mstate <- Mzoom (n, 0);
6463 else
6464 state.mstate <- Mzoom (n, i+1);
6466 else state.mstate <- Mzoom (n, 0)
6468 | _ -> state.mstate <- Mzoom (n, 0)
6470 else (
6471 match state.autoscroll with
6472 | Some step -> setautoscrollspeed step (n=4)
6473 | None ->
6474 if conf.wheelbypage || conf.presentation
6475 then (
6476 if n = 4
6477 then prevpage ()
6478 else nextpage ()
6480 else
6481 let incr =
6482 if n = 4
6483 then -conf.scrollstep
6484 else conf.scrollstep
6486 let incr = incr * 2 in
6487 let y = clamp incr in
6488 gotoy_and_clear_text y
6491 | n when (n = 6 || n = 7) && not down && canpan () ->
6492 state.x <-
6493 panbound (state.x + (if n = 7 then -2 else 2) * conf.hscrollstep);
6494 gotoy_and_clear_text state.y
6496 | 1 when Wsi.withshift mask ->
6497 state.mstate <- Mnone;
6498 if not down
6499 then (
6500 match unproject x y with
6501 | Some (pageno, ux, uy) ->
6502 let cmd = Printf.sprintf
6503 "%s %s %d %d %d"
6504 conf.stcmd state.path pageno ux uy
6506 popen cmd []
6507 | None -> ()
6510 | 1 when Wsi.withctrl mask ->
6511 if down
6512 then (
6513 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
6514 state.mstate <- Mpan (x, y)
6516 else
6517 state.mstate <- Mnone
6519 | 3 ->
6520 if down
6521 then (
6522 Wsi.setcursor Wsi.CURSOR_CYCLE;
6523 let p = (x, y) in
6524 state.mstate <- Mzoomrect (p, p)
6526 else (
6527 match state.mstate with
6528 | Mzoomrect ((x0, y0), _) ->
6529 if abs (x-x0) > 10 && abs (y - y0) > 10
6530 then zoomrect x0 y0 x y
6531 else (
6532 resetmstate ();
6533 G.postRedisplay "kill accidental zoom rect";
6535 | _ ->
6536 resetmstate ()
6539 | 1 when x > state.winw - vscrollw () ->
6540 if down
6541 then
6542 let _, position, sh = state.uioh#scrollph in
6543 if y > truncate position && y < truncate (position +. sh)
6544 then state.mstate <- Mscrolly
6545 else scrolly y
6546 else
6547 state.mstate <- Mnone
6549 | 1 when y > state.winh - hscrollh () ->
6550 if down
6551 then
6552 let _, position, sw = state.uioh#scrollpw in
6553 if x > truncate position && x < truncate (position +. sw)
6554 then state.mstate <- Mscrollx
6555 else scrollx x
6556 else
6557 state.mstate <- Mnone
6559 | 1 when state.bzoom -> if not down then zoomblock x y
6561 | 1 ->
6562 let dest = if down then getunder x y else Unone in
6563 begin match dest with
6564 | Ulinkgoto _
6565 | Ulinkuri _
6566 | Uremote _ | Uremotedest _
6567 | Uunexpected _ | Ulaunch _ | Unamed _ ->
6568 gotounder dest
6570 | Unone when down ->
6571 Wsi.setcursor Wsi.CURSOR_CROSSHAIR;
6572 state.mstate <- Mpan (x, y);
6574 | Unone | Utext _ ->
6575 if down
6576 then (
6577 if canselect ()
6578 then (
6579 state.mstate <- Msel ((x, y), (x, y));
6580 G.postRedisplay "mouse select";
6583 else (
6584 match state.mstate with
6585 | Mnone -> ()
6587 | Mzoom _ | Mscrollx | Mscrolly ->
6588 state.mstate <- Mnone
6590 | Mzoomrect ((x0, y0), _) ->
6591 zoomrect x0 y0 x y
6593 | Mpan _ ->
6594 Wsi.setcursor Wsi.CURSOR_INHERIT;
6595 state.mstate <- Mnone
6597 | Msel ((x0, y0), (x1, y1)) ->
6598 let rec loop = function
6599 | [] -> ()
6600 | l :: rest ->
6601 let inside =
6602 let a0 = l.pagedispy in
6603 let a1 = a0 + l.pagevh in
6604 let b0 = l.pagedispx in
6605 let b1 = b0 + l.pagevw in
6606 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6607 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6609 if inside
6610 then
6611 match getopaque l.pageno with
6612 | Some opaque ->
6613 let dosel cmd () =
6614 match Ne.res Unix.pipe with
6615 | Ne.Exn exn ->
6616 showtext '!'
6617 (Printf.sprintf
6618 "can not create sel pipe: %s"
6619 (exntos exn));
6620 | Ne.Res (r, w) ->
6621 let clo what fd =
6622 Ne.clo fd (fun msg ->
6623 dolog "%s close failed: %s" what msg)
6625 let popened =
6626 try popen cmd [r, 0; w, -1]; true
6627 with exn ->
6628 dolog "can not execute %S: %s"
6629 cmd (exntos exn);
6630 false
6632 if popened
6633 then (
6634 copysel w opaque;
6635 G.postRedisplay "copysel";
6637 else clo "Msel pipe/w" w;
6638 clo "Msel pipe/r" r;
6640 dosel conf.selcmd ();
6641 state.roam <- dosel conf.paxcmd;
6642 | None -> ()
6643 else loop rest
6645 loop state.layout;
6646 resetmstate ();
6650 | _ -> ()
6653 let birdseyemouse button down x y mask
6654 (conf, leftx, _, hooverpageno, anchor) =
6655 match button with
6656 | 1 when down ->
6657 let rec loop = function
6658 | [] -> ()
6659 | l :: rest ->
6660 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6661 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6662 then (
6663 leavebirdseye (conf, leftx, l.pageno, hooverpageno, anchor) false;
6665 else loop rest
6667 loop state.layout
6668 | 3 -> ()
6669 | _ -> viewmouse button down x y mask
6672 let uioh = object
6673 method display = ()
6675 method key key mask =
6676 begin match state.mode with
6677 | Textentry textentry -> textentrykeyboard key mask textentry
6678 | Birdseye birdseye -> birdseyekeyboard key mask birdseye
6679 | View -> viewkeyboard key mask
6680 | LinkNav linknav -> linknavkeyboard key mask linknav
6681 end;
6682 state.uioh
6684 method button button bstate x y mask =
6685 begin match state.mode with
6686 | LinkNav _
6687 | View -> viewmouse button bstate x y mask
6688 | Birdseye beye -> birdseyemouse button bstate x y mask beye
6689 | Textentry _ -> ()
6690 end;
6691 state.uioh
6693 method multiclick clicks x y mask =
6694 begin match state.mode with
6695 | LinkNav _
6696 | View -> viewmulticlick clicks x y mask
6697 | Birdseye _
6698 | Textentry _ -> ()
6699 end;
6700 state.uioh
6702 method motion x y =
6703 begin match state.mode with
6704 | Textentry _ -> ()
6705 | View | Birdseye _ | LinkNav _ ->
6706 match state.mstate with
6707 | Mzoom _ | Mnone -> ()
6709 | Mpan (x0, y0) ->
6710 let dx = x - x0
6711 and dy = y0 - y in
6712 state.mstate <- Mpan (x, y);
6713 if canpan ()
6714 then state.x <- panbound (state.x + dx);
6715 let y = clamp dy in
6716 gotoy_and_clear_text y
6718 | Msel (a, _) ->
6719 state.mstate <- Msel (a, (x, y));
6720 G.postRedisplay "motion select";
6722 | Mscrolly ->
6723 let y = min state.winh (max 0 y) in
6724 scrolly y
6726 | Mscrollx ->
6727 let x = min state.winw (max 0 x) in
6728 scrollx x
6730 | Mzoomrect (p0, _) ->
6731 state.mstate <- Mzoomrect (p0, (x, y));
6732 G.postRedisplay "motion zoomrect";
6733 end;
6734 state.uioh
6736 method pmotion x y =
6737 begin match state.mode with
6738 | Birdseye (conf, leftx, pageno, hooverpageno, anchor) ->
6739 let rec loop = function
6740 | [] ->
6741 if hooverpageno != -1
6742 then (
6743 state.mode <- Birdseye (conf, leftx, pageno, -1, anchor);
6744 G.postRedisplay "pmotion birdseye no hoover";
6746 | l :: rest ->
6747 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6748 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6749 then (
6750 state.mode <- Birdseye (conf, leftx, pageno, l.pageno, anchor);
6751 G.postRedisplay "pmotion birdseye hoover";
6753 else loop rest
6755 loop state.layout
6757 | Textentry _ -> ()
6759 | LinkNav _
6760 | View ->
6761 match state.mstate with
6762 | Mpan _ | Msel _ | Mzoom _ | Mscrolly | Mscrollx | Mzoomrect _ ->
6764 | Mnone ->
6765 updateunder x y;
6766 if canselect ()
6767 then
6768 match conf.pax with
6769 | None -> ()
6770 | Some r ->
6771 let past, _, _ = !r in
6772 let now = now () in
6773 let delta = now -. past in
6774 if delta > 0.01
6775 then paxunder x y
6776 else r := (now, x, y)
6777 end;
6778 state.uioh
6780 method infochanged _ = ()
6782 method scrollph =
6783 let maxy = state.maxy - (if conf.maxhfit then state.winh else 0) in
6784 let p, h =
6785 if maxy = 0
6786 then 0.0, float state.winh
6787 else scrollph state.y maxy
6789 vscrollw (), p, h
6791 method scrollpw =
6792 let winw = wadjsb state.winw in
6793 let fwinw = float winw in
6794 let sw =
6795 let sw = fwinw /. float state.w in
6796 let sw = fwinw *. sw in
6797 max sw (float conf.scrollh)
6799 let position =
6800 let maxx = state.w + winw in
6801 let x = winw - state.x in
6802 let percent = float x /. float maxx in
6803 (fwinw -. sw) *. percent
6805 hscrollh (), position, sw
6807 method modehash =
6808 let modename =
6809 match state.mode with
6810 | LinkNav _ -> "links"
6811 | Textentry _ -> "textentry"
6812 | Birdseye _ -> "birdseye"
6813 | View -> "view"
6815 findkeyhash conf modename
6817 method eformsgs = true
6818 end;;
6820 module Config =
6821 struct
6822 open Parser
6824 let fontpath = ref "";;
6826 module KeyMap =
6827 Map.Make (struct type t = (int * int) let compare = compare end);;
6829 let unent s =
6830 let l = String.length s in
6831 let b = Buffer.create l in
6832 unent b s 0 l;
6833 Buffer.contents b;
6836 let home =
6837 try Sys.getenv "HOME"
6838 with exn ->
6839 prerr_endline
6840 ("Can not determine home directory location: " ^ exntos exn);
6844 let modifier_of_string = function
6845 | "alt" -> Wsi.altmask
6846 | "shift" -> Wsi.shiftmask
6847 | "ctrl" | "control" -> Wsi.ctrlmask
6848 | "meta" -> Wsi.metamask
6849 | _ -> 0
6852 let key_of_string =
6853 let r = Str.regexp "-" in
6854 fun s ->
6855 let elems = Str.full_split r s in
6856 let f n k m =
6857 let g s =
6858 let m1 = modifier_of_string s in
6859 if m1 = 0
6860 then (Wsi.namekey s, m)
6861 else (k, m lor m1)
6862 in function
6863 | Str.Delim s when n land 1 = 0 -> g s
6864 | Str.Text s -> g s
6865 | Str.Delim _ -> (k, m)
6867 let rec loop n k m = function
6868 | [] -> (k, m)
6869 | x :: xs ->
6870 let k, m = f n k m x in
6871 loop (n+1) k m xs
6873 loop 0 0 0 elems
6876 let keys_of_string =
6877 let r = Str.regexp "[ \t]" in
6878 fun s ->
6879 let elems = Str.split r s in
6880 List.map key_of_string elems
6883 let copykeyhashes c =
6884 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
6887 let config_of c attrs =
6888 let apply c k v =
6890 match k with
6891 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
6892 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
6893 | "case-insensitive-search" -> { c with icase = bool_of_string v }
6894 | "preload" -> { c with preload = bool_of_string v }
6895 | "page-bias" -> { c with pagebias = int_of_string v }
6896 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
6897 | "horizontal-scroll-step" ->
6898 { c with hscrollstep = max (int_of_string v) 1 }
6899 | "auto-scroll-step" ->
6900 { c with autoscrollstep = max 0 (int_of_string v) }
6901 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
6902 | "crop-hack" -> { c with crophack = bool_of_string v }
6903 | "throttle" ->
6904 let mw =
6905 match String.lowercase v with
6906 | "true" -> Some infinity
6907 | "false" -> None
6908 | f -> Some (float_of_string f)
6910 { c with maxwait = mw}
6911 | "highlight-links" -> { c with hlinks = bool_of_string v }
6912 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
6913 | "vertical-margin" ->
6914 { c with interpagespace = max 0 (int_of_string v) }
6915 | "zoom" ->
6916 let zoom = float_of_string v /. 100. in
6917 let zoom = max zoom 0.0 in
6918 { c with zoom = zoom }
6919 | "presentation" -> { c with presentation = bool_of_string v }
6920 | "rotation-angle" -> { c with angle = int_of_string v }
6921 | "width" -> { c with cwinw = max 20 (int_of_string v) }
6922 | "height" -> { c with cwinh = max 20 (int_of_string v) }
6923 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
6924 | "proportional-display" ->
6925 let fm =
6926 if bool_of_string v
6927 then FitProportional
6928 else FitWidth
6930 { c with fitmodel = fm }
6931 | "fit-model" -> { c with fitmodel = FMTE.of_string v }
6932 | "pixmap-cache-size" ->
6933 { c with memlimit = max 2 (int_of_string_with_suffix v) }
6934 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
6935 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
6936 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
6937 | "persistent-location" -> { c with jumpback = bool_of_string v }
6938 | "background-color" -> { c with bgcolor = color_of_string v }
6939 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
6940 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
6941 | "mupdf-store-size" ->
6942 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
6943 | "checkers" -> { c with checkers = bool_of_string v }
6944 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
6945 | "trim-margins" -> { c with trimmargins = bool_of_string v }
6946 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
6947 | "uri-launcher" -> { c with urilauncher = unent v }
6948 | "path-launcher" -> { c with pathlauncher = unent v }
6949 | "color-space" -> { c with colorspace = CSTE.of_string v }
6950 | "invert-colors" -> { c with invert = bool_of_string v }
6951 | "brightness" -> { c with colorscale = float_of_string v }
6952 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
6953 | "ghyllscroll" -> { c with ghyllscroll = ghyllscroll_of_string v }
6954 | "columns" ->
6955 let (n, _, _) as nab = multicolumns_of_string v in
6956 if n < 0
6957 then { c with columns = Csplit (-n, [||]) }
6958 else { c with columns = Cmulti (nab, [||]) }
6959 | "birds-eye-columns" ->
6960 { c with beyecolumns = Some (max (int_of_string v) 2) }
6961 | "selection-command" -> { c with selcmd = unent v }
6962 | "synctex-command" -> { c with stcmd = unent v }
6963 | "pax-command" -> { c with paxcmd = unent v }
6964 | "update-cursor" -> { c with updatecurs = bool_of_string v }
6965 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
6966 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
6967 | "use-pbo" -> { c with usepbo = bool_of_string v }
6968 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
6969 | "horizontal-scrollbar-visible" ->
6970 let b =
6971 if bool_of_string v
6972 then c.scrollb lor scrollbhv
6973 else c.scrollb land (lnot scrollbhv)
6975 { c with scrollb = b }
6976 | "vertical-scrollbar-visible" ->
6977 let b =
6978 if bool_of_string v
6979 then c.scrollb lor scrollbvv
6980 else c.scrollb land (lnot scrollbvv)
6982 { c with scrollb = b }
6983 | "remote-in-a-new-instance" -> { c with riani = bool_of_string v }
6984 | "point-and-x" ->
6985 { c with pax =
6986 if bool_of_string v
6987 then Some (ref (0.0, 0, 0))
6988 else None }
6989 | "point-and-x-mark" -> { c with paxmark = MTE.of_string v }
6990 | _ -> c
6991 with exn ->
6992 prerr_endline ("Error processing attribute (`" ^
6993 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
6996 let rec fold c = function
6997 | [] -> c
6998 | (k, v) :: rest ->
6999 let c = apply c k v in
7000 fold c rest
7002 fold { c with keyhashes = copykeyhashes c } attrs;
7005 let fromstring f pos n v d =
7006 try f v
7007 with exn ->
7008 dolog "Error processing attribute (%S=%S) at %d\n%s"
7009 n v pos (exntos exn)
7014 let bookmark_of attrs =
7015 let rec fold title page rely visy = function
7016 | ("title", v) :: rest -> fold v page rely visy rest
7017 | ("page", v) :: rest -> fold title v rely visy rest
7018 | ("rely", v) :: rest -> fold title page v visy rest
7019 | ("visy", v) :: rest -> fold title page rely v rest
7020 | _ :: rest -> fold title page rely visy rest
7021 | [] -> title, page, rely, visy
7023 fold "invalid" "0" "0" "0" attrs
7026 let doc_of attrs =
7027 let rec fold path page rely pan visy = function
7028 | ("path", v) :: rest -> fold v page rely pan visy rest
7029 | ("page", v) :: rest -> fold path v rely pan visy rest
7030 | ("rely", v) :: rest -> fold path page v pan visy rest
7031 | ("pan", v) :: rest -> fold path page rely v visy rest
7032 | ("visy", v) :: rest -> fold path page rely pan v rest
7033 | _ :: rest -> fold path page rely pan visy rest
7034 | [] -> path, page, rely, pan, visy
7036 fold "" "0" "0" "0" "0" attrs
7039 let map_of attrs =
7040 let rec fold rs ls = function
7041 | ("out", v) :: rest -> fold v ls rest
7042 | ("in", v) :: rest -> fold rs v rest
7043 | _ :: rest -> fold ls rs rest
7044 | [] -> ls, rs
7046 fold "" "" attrs
7049 let setconf dst src =
7050 dst.scrollbw <- src.scrollbw;
7051 dst.scrollh <- src.scrollh;
7052 dst.icase <- src.icase;
7053 dst.preload <- src.preload;
7054 dst.pagebias <- src.pagebias;
7055 dst.verbose <- src.verbose;
7056 dst.scrollstep <- src.scrollstep;
7057 dst.maxhfit <- src.maxhfit;
7058 dst.crophack <- src.crophack;
7059 dst.autoscrollstep <- src.autoscrollstep;
7060 dst.maxwait <- src.maxwait;
7061 dst.hlinks <- src.hlinks;
7062 dst.underinfo <- src.underinfo;
7063 dst.interpagespace <- src.interpagespace;
7064 dst.zoom <- src.zoom;
7065 dst.presentation <- src.presentation;
7066 dst.angle <- src.angle;
7067 dst.cwinw <- src.cwinw;
7068 dst.cwinh <- src.cwinh;
7069 dst.savebmarks <- src.savebmarks;
7070 dst.memlimit <- src.memlimit;
7071 dst.fitmodel <- src.fitmodel;
7072 dst.texcount <- src.texcount;
7073 dst.sliceheight <- src.sliceheight;
7074 dst.thumbw <- src.thumbw;
7075 dst.jumpback <- src.jumpback;
7076 dst.bgcolor <- src.bgcolor;
7077 dst.tilew <- src.tilew;
7078 dst.tileh <- src.tileh;
7079 dst.mustoresize <- src.mustoresize;
7080 dst.checkers <- src.checkers;
7081 dst.aalevel <- src.aalevel;
7082 dst.trimmargins <- src.trimmargins;
7083 dst.trimfuzz <- src.trimfuzz;
7084 dst.urilauncher <- src.urilauncher;
7085 dst.colorspace <- src.colorspace;
7086 dst.invert <- src.invert;
7087 dst.colorscale <- src.colorscale;
7088 dst.redirectstderr <- src.redirectstderr;
7089 dst.ghyllscroll <- src.ghyllscroll;
7090 dst.columns <- src.columns;
7091 dst.beyecolumns <- src.beyecolumns;
7092 dst.selcmd <- src.selcmd;
7093 dst.updatecurs <- src.updatecurs;
7094 dst.pathlauncher <- src.pathlauncher;
7095 dst.keyhashes <- copykeyhashes src;
7096 dst.hfsize <- src.hfsize;
7097 dst.hscrollstep <- src.hscrollstep;
7098 dst.pgscale <- src.pgscale;
7099 dst.usepbo <- src.usepbo;
7100 dst.wheelbypage <- src.wheelbypage;
7101 dst.stcmd <- src.stcmd;
7102 dst.paxcmd <- src.paxcmd;
7103 dst.scrollb <- src.scrollb;
7104 dst.riani <- src.riani;
7105 dst.paxmark <- src.paxmark;
7106 dst.pax <-
7107 if src.pax = None
7108 then None
7109 else Some ((ref (0.0, 0, 0)));
7112 let get s =
7113 let h = Hashtbl.create 10 in
7114 let dc = { defconf with angle = defconf.angle } in
7115 let rec toplevel v t spos _ =
7116 match t with
7117 | Vdata | Vcdata | Vend -> v
7118 | Vopen ("llppconfig", _, closed) ->
7119 if closed
7120 then v
7121 else { v with f = llppconfig }
7122 | Vopen _ ->
7123 error "unexpected subelement at top level" s spos
7124 | Vclose _ -> error "unexpected close at top level" s spos
7126 and llppconfig v t spos _ =
7127 match t with
7128 | Vdata | Vcdata -> v
7129 | Vend -> error "unexpected end of input in llppconfig" s spos
7130 | Vopen ("defaults", attrs, closed) ->
7131 let c = config_of dc attrs in
7132 setconf dc c;
7133 if closed
7134 then v
7135 else { v with f = defaults }
7137 | Vopen ("ui-font", attrs, closed) ->
7138 let rec getsize size = function
7139 | [] -> size
7140 | ("size", v) :: rest ->
7141 let size =
7142 fromstring int_of_string spos "size" v fstate.fontsize in
7143 getsize size rest
7144 | l -> getsize size l
7146 fstate.fontsize <- getsize fstate.fontsize attrs;
7147 if closed
7148 then v
7149 else { v with f = uifont (Buffer.create 10) }
7151 | Vopen ("doc", attrs, closed) ->
7152 let pathent, spage, srely, span, svisy = doc_of attrs in
7153 let path = unent pathent
7154 and pageno = fromstring int_of_string spos "page" spage 0
7155 and rely = fromstring float_of_string spos "rely" srely 0.0
7156 and pan = fromstring int_of_string spos "pan" span 0
7157 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
7158 let c = config_of dc attrs in
7159 let anchor = (pageno, rely, visy) in
7160 if closed
7161 then (Hashtbl.add h path (c, [], pan, anchor); v)
7162 else { v with f = doc path pan anchor c [] }
7164 | Vopen _ ->
7165 error "unexpected subelement in llppconfig" s spos
7167 | Vclose "llppconfig" -> { v with f = toplevel }
7168 | Vclose _ -> error "unexpected close in llppconfig" s spos
7170 and defaults v t spos _ =
7171 match t with
7172 | Vdata | Vcdata -> v
7173 | Vend -> error "unexpected end of input in defaults" s spos
7174 | Vopen ("keymap", attrs, closed) ->
7175 let modename =
7176 try List.assoc "mode" attrs
7177 with Not_found -> "global" in
7178 if closed
7179 then v
7180 else
7181 let ret keymap =
7182 let h = findkeyhash dc modename in
7183 KeyMap.iter (Hashtbl.replace h) keymap;
7184 defaults
7186 { v with f = pkeymap ret KeyMap.empty }
7188 | Vopen (_, _, _) ->
7189 error "unexpected subelement in defaults" s spos
7191 | Vclose "defaults" ->
7192 { v with f = llppconfig }
7194 | Vclose _ -> error "unexpected close in defaults" s spos
7196 and uifont b v t spos epos =
7197 match t with
7198 | Vdata | Vcdata ->
7199 Buffer.add_substring b s spos (epos - spos);
7201 | Vopen (_, _, _) ->
7202 error "unexpected subelement in ui-font" s spos
7203 | Vclose "ui-font" ->
7204 if emptystr !fontpath
7205 then fontpath := Buffer.contents b;
7206 { v with f = llppconfig }
7207 | Vclose _ -> error "unexpected close in ui-font" s spos
7208 | Vend -> error "unexpected end of input in ui-font" s spos
7210 and doc path pan anchor c bookmarks v t spos _ =
7211 match t with
7212 | Vdata | Vcdata -> v
7213 | Vend -> error "unexpected end of input in doc" s spos
7214 | Vopen ("bookmarks", _, closed) ->
7215 if closed
7216 then v
7217 else { v with f = pbookmarks path pan anchor c bookmarks }
7219 | Vopen ("keymap", attrs, closed) ->
7220 let modename =
7221 try List.assoc "mode" attrs
7222 with Not_found -> "global"
7224 if closed
7225 then v
7226 else
7227 let ret keymap =
7228 let h = findkeyhash c modename in
7229 KeyMap.iter (Hashtbl.replace h) keymap;
7230 doc path pan anchor c bookmarks
7232 { v with f = pkeymap ret KeyMap.empty }
7234 | Vopen (_, _, _) ->
7235 error "unexpected subelement in doc" s spos
7237 | Vclose "doc" ->
7238 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
7239 { v with f = llppconfig }
7241 | Vclose _ -> error "unexpected close in doc" s spos
7243 and pkeymap ret keymap v t spos _ =
7244 match t with
7245 | Vdata | Vcdata -> v
7246 | Vend -> error "unexpected end of input in keymap" s spos
7247 | Vopen ("map", attrs, closed) ->
7248 let r, l = map_of attrs in
7249 let kss = fromstring keys_of_string spos "in" r [] in
7250 let lss = fromstring keys_of_string spos "out" l [] in
7251 let keymap =
7252 match kss with
7253 | [] -> keymap
7254 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
7255 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
7257 if closed
7258 then { v with f = pkeymap ret keymap }
7259 else
7260 let f () = v in
7261 { v with f = skip "map" f }
7263 | Vopen _ ->
7264 error "unexpected subelement in keymap" s spos
7266 | Vclose "keymap" ->
7267 { v with f = ret keymap }
7269 | Vclose _ -> error "unexpected close in keymap" s spos
7271 and pbookmarks path pan anchor c bookmarks v t spos _ =
7272 match t with
7273 | Vdata | Vcdata -> v
7274 | Vend -> error "unexpected end of input in bookmarks" s spos
7275 | Vopen ("item", attrs, closed) ->
7276 let titleent, spage, srely, svisy = bookmark_of attrs in
7277 let page = fromstring int_of_string spos "page" spage 0
7278 and rely = fromstring float_of_string spos "rely" srely 0.0
7279 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
7280 let bookmarks =
7281 (unent titleent, 0, Oanchor (page, rely, visy)) :: bookmarks
7283 if closed
7284 then { v with f = pbookmarks path pan anchor c bookmarks }
7285 else
7286 let f () = v in
7287 { v with f = skip "item" f }
7289 | Vopen _ ->
7290 error "unexpected subelement in bookmarks" s spos
7292 | Vclose "bookmarks" ->
7293 { v with f = doc path pan anchor c bookmarks }
7295 | Vclose _ -> error "unexpected close in bookmarks" s spos
7297 and skip tag f v t spos _ =
7298 match t with
7299 | Vdata | Vcdata -> v
7300 | Vend ->
7301 error ("unexpected end of input in skipped " ^ tag) s spos
7302 | Vopen (tag', _, closed) ->
7303 if closed
7304 then v
7305 else
7306 let f' () = { v with f = skip tag f } in
7307 { v with f = skip tag' f' }
7308 | Vclose ctag ->
7309 if tag = ctag
7310 then f ()
7311 else error ("unexpected close in skipped " ^ tag) s spos
7314 parse { f = toplevel; accu = () } s;
7315 h, dc;
7318 let do_load f ic =
7320 let len = in_channel_length ic in
7321 let s = String.create len in
7322 really_input ic s 0 len;
7323 f s;
7324 with
7325 | Parse_error (msg, s, pos) ->
7326 let subs = subs s pos in
7327 Utils.error "parse error: %s: at %d [..%s..]" msg pos subs
7329 | exn ->
7330 failwith ("config load error: " ^ exntos exn)
7333 let defconfpath =
7334 let dir =
7336 let dir = Filename.concat home ".config" in
7337 if Sys.is_directory dir then dir else home
7338 with _ -> home
7340 Filename.concat dir "llpp.conf"
7343 let confpath = ref defconfpath;;
7345 let load1 f =
7346 if Sys.file_exists !confpath
7347 then
7348 match
7349 (try Some (open_in_bin !confpath)
7350 with exn ->
7351 prerr_endline
7352 ("Error opening configuration file `" ^ !confpath ^ "': " ^
7353 exntos exn);
7354 None
7356 with
7357 | Some ic ->
7358 let success =
7360 f (do_load get ic)
7361 with exn ->
7362 prerr_endline
7363 ("Error loading configuration from `" ^ !confpath ^ "': " ^
7364 exntos exn);
7365 false
7367 close_in ic;
7368 success
7370 | None -> false
7371 else
7372 f (Hashtbl.create 0, defconf)
7375 let load () =
7376 let f (h, dc) =
7377 let pc, pb, px, pa =
7379 let key =
7380 if emptystr state.origin
7381 then state.path
7382 else state.origin
7384 Hashtbl.find h (Filename.basename key)
7385 with Not_found -> dc, [], 0, emptyanchor
7387 setconf defconf dc;
7388 setconf conf pc;
7389 state.bookmarks <- pb;
7390 state.x <- px;
7391 if conf.jumpback
7392 then state.anchor <- pa;
7393 cbput state.hists.nav pa;
7394 true
7396 load1 f
7399 let add_attrs bb always dc c =
7400 let ob s a b =
7401 if always || a != b
7402 then Printf.bprintf bb "\n %s='%b'" s a
7403 and op s a b =
7404 if always || a <> b
7405 then Printf.bprintf bb "\n %s='%b'" s (a != None)
7406 and oi s a b =
7407 if always || a != b
7408 then Printf.bprintf bb "\n %s='%d'" s a
7409 and oI s a b =
7410 if always || a != b
7411 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
7412 and oz s a b =
7413 if always || a <> b
7414 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
7415 and oF s a b =
7416 if always || a <> b
7417 then Printf.bprintf bb "\n %s='%f'" s a
7418 and oc s a b =
7419 if always || a <> b
7420 then
7421 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
7422 and oC s a b =
7423 if always || a <> b
7424 then
7425 Printf.bprintf bb "\n %s='%s'" s (CSTE.to_string a)
7426 and oR s a b =
7427 if always || a <> b
7428 then
7429 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
7430 and os s a b =
7431 if always || a <> b
7432 then
7433 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
7434 and og s a b =
7435 if always || a <> b
7436 then
7437 match a with
7438 | Some (_N, _A, _B) ->
7439 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
7440 | None ->
7441 match b with
7442 | None -> ()
7443 | _ ->
7444 Printf.bprintf bb "\n %s='none'" s
7445 and oW s a b =
7446 if always || a <> b
7447 then
7448 let v =
7449 match a with
7450 | None -> "false"
7451 | Some f ->
7452 if f = infinity
7453 then "true"
7454 else string_of_float f
7456 Printf.bprintf bb "\n %s='%s'" s v
7457 and oco s a b =
7458 if always || a <> b
7459 then
7460 match a with
7461 | Cmulti ((n, a, b), _) when n > 1 ->
7462 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
7463 | Csplit (n, _) when n > 1 ->
7464 Printf.bprintf bb "\n %s='%d'" s ~-n
7465 | _ -> ()
7466 and obeco s a b =
7467 if always || a <> b
7468 then
7469 match a with
7470 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
7471 | _ -> ()
7472 and oFm s a b =
7473 if always || a <> b
7474 then
7475 Printf.bprintf bb "\n %s='%s'" s (FMTE.to_string a)
7476 and oSv s a b m =
7477 if always || a <> b
7478 then
7479 Printf.bprintf bb "\n %s='%b'" s (a land m != 0)
7480 and oPm s a b =
7481 if always || a <> b
7482 then
7483 Printf.bprintf bb "\n %s='%s'" s (MTE.to_string a)
7485 oi "width" c.cwinw dc.cwinw;
7486 oi "height" c.cwinh dc.cwinh;
7487 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
7488 oi "scroll-handle-height" c.scrollh dc.scrollh;
7489 oSv "horizontal-scrollbar-visible" c.scrollb dc.scrollb scrollbhv;
7490 oSv "vertical-scrollbar-visible" c.scrollb dc.scrollb scrollbvv;
7491 ob "case-insensitive-search" c.icase dc.icase;
7492 ob "preload" c.preload dc.preload;
7493 oi "page-bias" c.pagebias dc.pagebias;
7494 oi "scroll-step" c.scrollstep dc.scrollstep;
7495 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
7496 ob "max-height-fit" c.maxhfit dc.maxhfit;
7497 ob "crop-hack" c.crophack dc.crophack;
7498 oW "throttle" c.maxwait dc.maxwait;
7499 ob "highlight-links" c.hlinks dc.hlinks;
7500 ob "under-cursor-info" c.underinfo dc.underinfo;
7501 oi "vertical-margin" c.interpagespace dc.interpagespace;
7502 oz "zoom" c.zoom dc.zoom;
7503 ob "presentation" c.presentation dc.presentation;
7504 oi "rotation-angle" c.angle dc.angle;
7505 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
7506 oFm "fit-model" c.fitmodel dc.fitmodel;
7507 oI "pixmap-cache-size" c.memlimit dc.memlimit;
7508 oi "tex-count" c.texcount dc.texcount;
7509 oi "slice-height" c.sliceheight dc.sliceheight;
7510 oi "thumbnail-width" c.thumbw dc.thumbw;
7511 ob "persistent-location" c.jumpback dc.jumpback;
7512 oc "background-color" c.bgcolor dc.bgcolor;
7513 oi "tile-width" c.tilew dc.tilew;
7514 oi "tile-height" c.tileh dc.tileh;
7515 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
7516 ob "checkers" c.checkers dc.checkers;
7517 oi "aalevel" c.aalevel dc.aalevel;
7518 ob "trim-margins" c.trimmargins dc.trimmargins;
7519 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
7520 os "uri-launcher" c.urilauncher dc.urilauncher;
7521 os "path-launcher" c.pathlauncher dc.pathlauncher;
7522 oC "color-space" c.colorspace dc.colorspace;
7523 ob "invert-colors" c.invert dc.invert;
7524 oF "brightness" c.colorscale dc.colorscale;
7525 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
7526 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
7527 oco "columns" c.columns dc.columns;
7528 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
7529 os "selection-command" c.selcmd dc.selcmd;
7530 os "synctex-command" c.stcmd dc.stcmd;
7531 os "pax-command" c.paxcmd dc.paxcmd;
7532 ob "update-cursor" c.updatecurs dc.updatecurs;
7533 oi "hint-font-size" c.hfsize dc.hfsize;
7534 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
7535 oF "page-scroll-scale" c.pgscale dc.pgscale;
7536 ob "use-pbo" c.usepbo dc.usepbo;
7537 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
7538 ob "remote-in-a-new-instance" c.riani dc.riani;
7539 op "point-and-x" c.pax dc.pax;
7540 oPm "point-and-x-mark" c.paxmark dc.paxmark;
7543 let keymapsbuf always dc c =
7544 let bb = Buffer.create 16 in
7545 let rec loop = function
7546 | [] -> ()
7547 | (modename, h) :: rest ->
7548 let dh = findkeyhash dc modename in
7549 if always || h <> dh
7550 then (
7551 if Hashtbl.length h > 0
7552 then (
7553 if Buffer.length bb > 0
7554 then Buffer.add_char bb '\n';
7555 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
7556 Hashtbl.iter (fun i o ->
7557 let isdifferent = always ||
7559 let dO = Hashtbl.find dh i in
7560 dO <> o
7561 with Not_found -> true
7563 if isdifferent
7564 then
7565 let addkm (k, m) =
7566 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
7567 if Wsi.withalt m then Buffer.add_string bb "alt-";
7568 if Wsi.withshift m then Buffer.add_string bb "shift-";
7569 if Wsi.withmeta m then Buffer.add_string bb "meta-";
7570 Buffer.add_string bb (Wsi.keyname k);
7572 let addkms l =
7573 let rec loop = function
7574 | [] -> ()
7575 | km :: [] -> addkm km
7576 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
7578 loop l
7580 Buffer.add_string bb "<map in='";
7581 addkm i;
7582 match o with
7583 | KMinsrt km ->
7584 Buffer.add_string bb "' out='";
7585 addkm km;
7586 Buffer.add_string bb "'/>\n"
7588 | KMinsrl kms ->
7589 Buffer.add_string bb "' out='";
7590 addkms kms;
7591 Buffer.add_string bb "'/>\n"
7593 | KMmulti (ins, kms) ->
7594 Buffer.add_char bb ' ';
7595 addkms ins;
7596 Buffer.add_string bb "' out='";
7597 addkms kms;
7598 Buffer.add_string bb "'/>\n"
7599 ) h;
7600 Buffer.add_string bb "</keymap>";
7603 loop rest
7605 loop c.keyhashes;
7609 let save () =
7610 let uifontsize = fstate.fontsize in
7611 let bb = Buffer.create 32768 in
7612 let relx = float state.x /. float state.winw in
7613 let w, h, x =
7614 let cx w = truncate (relx *. float w) in
7615 List.fold_left
7616 (fun (w, h, x) ws ->
7617 match ws with
7618 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh, cx conf.cwinw)
7619 | Wsi.MaxVert -> (w, conf.cwinh, x)
7620 | Wsi.MaxHorz -> (conf.cwinw, h, cx conf.cwinw)
7622 (state.winw, state.winh, state.x) state.winstate
7624 conf.cwinw <- w;
7625 conf.cwinh <- h;
7626 let f (h, dc) =
7627 let dc = if conf.bedefault then conf else dc in
7628 Buffer.add_string bb "<llppconfig>\n";
7630 if nonemptystr !fontpath
7631 then
7632 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
7633 uifontsize
7634 !fontpath
7635 else (
7636 if uifontsize <> 14
7637 then
7638 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
7641 Buffer.add_string bb "<defaults";
7642 add_attrs bb true dc dc;
7643 let kb = keymapsbuf true dc dc in
7644 if Buffer.length kb > 0
7645 then (
7646 Buffer.add_string bb ">\n";
7647 Buffer.add_buffer bb kb;
7648 Buffer.add_string bb "\n</defaults>\n";
7650 else Buffer.add_string bb "/>\n";
7652 let adddoc path pan anchor c bookmarks =
7653 if bookmarks == [] && c = dc && anchor = emptyanchor
7654 then ()
7655 else (
7656 Printf.bprintf bb "<doc path='%s'"
7657 (enent path 0 (String.length path));
7659 if anchor <> emptyanchor
7660 then (
7661 let n, rely, visy = anchor in
7662 Printf.bprintf bb " page='%d'" n;
7663 if rely > 1e-6
7664 then
7665 Printf.bprintf bb " rely='%f'" rely
7667 if abs_float visy > 1e-6
7668 then
7669 Printf.bprintf bb " visy='%f'" visy
7673 if pan != 0
7674 then Printf.bprintf bb " pan='%d'" pan;
7676 add_attrs bb false dc c;
7677 let kb = keymapsbuf false dc c in
7679 begin match bookmarks with
7680 | [] ->
7681 if Buffer.length kb > 0
7682 then (
7683 Buffer.add_string bb ">\n";
7684 Buffer.add_buffer bb kb;
7685 Buffer.add_string bb "\n</doc>\n";
7687 else Buffer.add_string bb "/>\n"
7688 | _ ->
7689 Buffer.add_string bb ">\n<bookmarks>\n";
7690 List.iter (fun (title, _, kind) ->
7691 begin match kind with
7692 | Oanchor (page, rely, visy) ->
7693 Printf.bprintf bb
7694 "<item title='%s' page='%d'"
7695 (enent title 0 (String.length title))
7696 page
7698 if rely > 1e-6
7699 then
7700 Printf.bprintf bb " rely='%f'" rely
7702 if abs_float visy > 1e-6
7703 then
7704 Printf.bprintf bb " visy='%f'" visy
7706 | Onone | Ouri _ | Oremote _ | Oremotedest _ | Olaunch _ ->
7707 failwith "unexpected link in bookmarks"
7708 end;
7709 Buffer.add_string bb "/>\n";
7710 ) bookmarks;
7711 Buffer.add_string bb "</bookmarks>";
7712 if Buffer.length kb > 0
7713 then (
7714 Buffer.add_string bb "\n";
7715 Buffer.add_buffer bb kb;
7717 Buffer.add_string bb "\n</doc>\n";
7718 end;
7722 let pan, conf =
7723 match state.mode with
7724 | Birdseye (c, pan, _, _, _) ->
7725 let beyecolumns =
7726 match conf.columns with
7727 | Cmulti ((c, _, _), _) -> Some c
7728 | Csingle _ -> None
7729 | Csplit _ -> None
7730 and columns =
7731 match c.columns with
7732 | Cmulti (c, _) -> Cmulti (c, [||])
7733 | Csingle _ -> Csingle [||]
7734 | Csplit _ -> failwith "quit from bird's eye while split"
7736 pan, { c with beyecolumns = beyecolumns; columns = columns }
7737 | _ -> x, conf
7739 let basename = Filename.basename
7740 (if emptystr state.origin then state.path else state.origin)
7742 adddoc basename pan (getanchor ())
7743 (let autoscrollstep =
7744 match state.autoscroll with
7745 | Some step -> step
7746 | None -> conf.autoscrollstep
7747 in begin match state.mode with
7748 | Birdseye beye -> leavebirdseye beye true;
7749 | _ -> ()
7750 end;
7751 { conf with autoscrollstep = autoscrollstep })
7752 (if conf.savebmarks then state.bookmarks else []);
7754 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
7755 if basename <> path
7756 then adddoc path x anchor c bookmarks
7757 ) h;
7758 Buffer.add_string bb "</llppconfig>\n";
7759 true;
7761 if load1 f && Buffer.length bb > 0
7762 then
7764 let tmp = !confpath ^ ".tmp" in
7765 let oc = open_out_bin tmp in
7766 Buffer.output_buffer oc bb;
7767 close_out oc;
7768 Unix.rename tmp !confpath;
7769 with exn ->
7770 prerr_endline
7771 ("error while saving configuration: " ^ exntos exn)
7773 end;;
7775 let adderrmsg src msg =
7776 Buffer.add_string state.errmsgs msg;
7777 state.newerrmsgs <- true;
7778 G.postRedisplay src
7781 let adderrfmt src fmt =
7782 Format.kprintf (fun s -> adderrmsg src s) fmt;
7785 let ract cmds =
7786 let cl = splitatspace cmds in
7787 let scan s fmt f =
7788 try Scanf.sscanf s fmt f
7789 with exn ->
7790 adderrfmt "remote exec"
7791 "error processing '%S': %s\n" cmds (exntos exn)
7793 match cl with
7794 | "reload" :: [] -> reload ()
7795 | "goto" :: args :: [] ->
7796 scan args "%u %f %f"
7797 (fun pageno x y ->
7798 let cmd, _ = state.geomcmds in
7799 if emptystr cmd
7800 then gotopagexy pageno x y
7801 else
7802 let f prevf () =
7803 gotopagexy pageno x y;
7804 prevf ()
7806 state.reprf <- f state.reprf
7808 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7809 | "gotor" :: args :: [] ->
7810 scan args "%S %u"
7811 (fun filename pageno -> gotounder (Uremote (filename, pageno)))
7812 | "gotord" :: args :: [] ->
7813 scan args "%S %S"
7814 (fun filename dest -> gotounder (Uremotedest (filename, dest)))
7815 | "rect" :: args :: [] ->
7816 scan args "%u %u %f %f %f %f"
7817 (fun pageno color x0 y0 x1 y1 ->
7818 onpagerect pageno (fun w h ->
7819 let _,w1,h1,_ = getpagedim pageno in
7820 let sw = float w1 /. float w
7821 and sh = float h1 /. float h in
7822 let x0s = x0 *. sw
7823 and x1s = x1 *. sw
7824 and y0s = y0 *. sh
7825 and y1s = y1 *. sh in
7826 let rect = (x0s,y0s,x1s,y0s,x1s,y1s,x0s,y1s) in
7827 debugrect rect;
7828 state.rects <- (pageno, color, rect) :: state.rects;
7829 G.postRedisplay "rect";
7832 | "activatewin" :: [] -> Wsi.activatewin ()
7833 | "quit" :: [] -> raise Quit
7834 | _ ->
7835 adderrfmt "remote command"
7836 "error processing remote command: %S\n" cmds;
7839 let remote =
7840 let scratch = String.create 80 in
7841 let buf = Buffer.create 80 in
7842 fun fd ->
7843 let rec tempfr () =
7844 try Some (Unix.read fd scratch 0 80)
7845 with
7846 | Unix.Unix_error (Unix.EAGAIN, _, _) -> None
7847 | Unix.Unix_error (Unix.EINTR, _, _) -> tempfr ()
7848 | exn -> raise exn
7850 match tempfr () with
7851 | None -> Some fd
7852 | Some n ->
7853 if n = 0
7854 then (
7855 Unix.close fd;
7856 if Buffer.length buf > 0
7857 then (
7858 let s = Buffer.contents buf in
7859 Buffer.clear buf;
7860 ract s;
7862 None
7864 else
7865 let rec eat ppos =
7866 let nlpos =
7868 let pos = String.index_from scratch ppos '\n' in
7869 if pos >= n then -1 else pos
7870 with Not_found -> -1
7872 if nlpos >= 0
7873 then (
7874 Buffer.add_substring buf scratch ppos (nlpos-ppos);
7875 let s = Buffer.contents buf in
7876 Buffer.clear buf;
7877 ract s;
7878 eat (nlpos+1);
7880 else (
7881 Buffer.add_substring buf scratch ppos (n-ppos);
7882 Some fd
7884 in eat 0
7887 let remoteopen path =
7888 try Some (Unix.openfile path [Unix.O_NONBLOCK; Unix.O_RDONLY] 0o0)
7889 with exn ->
7890 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn);
7891 None
7894 let () =
7895 let trimcachepath = ref "" in
7896 let rcmdpath = ref "" in
7897 let pageno = ref None in
7898 selfexec := Sys.executable_name;
7899 Arg.parse
7900 (Arg.align
7901 [("-p", Arg.String (fun s -> state.password <- s),
7902 "<password> Set password");
7904 ("-f", Arg.String
7905 (fun s ->
7906 Config.fontpath := s;
7907 selfexec := !selfexec ^ " -f " ^ Filename.quote s;
7909 "<path> Set path to the user interface font");
7911 ("-c", Arg.String
7912 (fun s ->
7913 selfexec := !selfexec ^ " -c " ^ Filename.quote s;
7914 Config.confpath := s),
7915 "<path> Set path to the configuration file");
7917 ("-page", Arg.Int (fun pageno1 -> pageno := Some (pageno1-1)),
7918 "<page-number> Jump to page");
7920 ("-tcf", Arg.String (fun s -> trimcachepath := s),
7921 "<path> Set path to the trim cache file");
7923 ("-dest", Arg.String (fun s -> state.nameddest <- s),
7924 "<named-destination> Set named destination");
7926 ("-wtmode", Arg.Set wtmode, " Operate in wt mode");
7927 ("-cxack", Arg.Set cxack, " Cut corners");
7929 ("-remote", Arg.String (fun s -> rcmdpath := s),
7930 "<path> Set path to the remote commands source");
7932 ("-origin", Arg.String (fun s -> state.origin <- s),
7933 "<original-path> Set original path");
7935 ("-v", Arg.Unit (fun () ->
7936 Printf.printf
7937 "%s\nconfiguration path: %s\n"
7938 (version ())
7939 Config.defconfpath
7941 exit 0), " Print version and exit");
7944 (fun s -> state.path <- s)
7945 ("Usage: " ^ Sys.argv.(0) ^ " [options] some.pdf\nOptions:")
7947 if !wtmode
7948 then selfexec := !selfexec ^ " -wtmode";
7950 if emptystr state.path
7951 then (prerr_endline "file name missing"; exit 1);
7953 if not (Config.load ())
7954 then prerr_endline "failed to load configuration";
7955 begin match !pageno with
7956 | Some pageno -> state.anchor <- (pageno, 0.0, 0.0)
7957 | None -> ()
7958 end;
7960 let wsfd, winw, winh = Wsi.init (object (self)
7961 val mutable m_hack = false
7962 val mutable m_clicks = 0
7963 val mutable m_click_x = 0
7964 val mutable m_click_y = 0
7965 val mutable m_lastclicktime = infinity
7967 method private cleanup =
7968 state.roam <- noroam;
7969 Hashtbl.iter (fun _ opaque -> clearmark opaque) state.pagemap;
7970 method expose = if not m_hack then G.postRedisplay "expose"
7971 method visible = G.postRedisplay "visible"
7972 method display = m_hack <- false; display ()
7973 method reshape w h =
7974 self#cleanup;
7975 m_hack <- w < state.winw && h < state.winh;
7976 reshape w h
7977 method mouse b d x y m =
7978 if d && canselect ()
7979 then (
7980 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
7981 m_click_x <- x;
7982 m_click_y <- y;
7983 if b = 1
7984 then (
7985 let t = now () in
7986 if abs x - m_click_x > 10
7987 || abs y - m_click_y > 10
7988 || abs_float (t -. m_lastclicktime) > 0.3
7989 then m_clicks <- 0;
7990 m_clicks <- m_clicks + 1;
7991 m_lastclicktime <- t;
7992 if m_clicks = 1
7993 then (
7994 self#cleanup;
7995 G.postRedisplay "cleanup";
7996 state.uioh <- state.uioh#button b d x y m;
7998 else state.uioh <- state.uioh#multiclick m_clicks x y m
8000 else (
8001 self#cleanup;
8002 m_clicks <- 0;
8003 m_lastclicktime <- infinity;
8004 state.uioh <- state.uioh#button b d x y m
8007 else (
8008 state.uioh <- state.uioh#button b d x y m
8010 method motion x y =
8011 state.mpos <- (x, y);
8012 state.uioh <- state.uioh#motion x y
8013 method pmotion x y =
8014 state.mpos <- (x, y);
8015 state.uioh <- state.uioh#pmotion x y
8016 method key k m =
8017 let mascm = m land (
8018 Wsi.altmask + Wsi.shiftmask + Wsi.ctrlmask + Wsi.metamask
8019 ) in
8020 let keyboard k m =
8021 let x = state.x and y = state.y in
8022 keyboard k m;
8023 if x != state.x || y != state.y then self#cleanup
8025 match state.keystate with
8026 | KSnone ->
8027 let km = k, mascm in
8028 begin
8029 match
8030 let modehash = state.uioh#modehash in
8031 try Hashtbl.find modehash km
8032 with Not_found ->
8033 try Hashtbl.find (findkeyhash conf "global") km
8034 with Not_found -> KMinsrt (k, m)
8035 with
8036 | KMinsrt (k, m) -> keyboard k m
8037 | KMinsrl l -> List.iter (fun (k, m) -> keyboard k m) l
8038 | KMmulti (l, r) -> state.keystate <- KSinto (l, r)
8040 | KSinto ((k', m') :: [], insrt) when k'=k && m' land mascm = m' ->
8041 List.iter (fun (k, m) -> keyboard k m) insrt;
8042 state.keystate <- KSnone
8043 | KSinto ((k', m') :: keys, insrt) when k'=k && m' land mascm = m' ->
8044 state.keystate <- KSinto (keys, insrt)
8045 | _ ->
8046 state.keystate <- KSnone
8048 method enter x y =
8049 state.mpos <- (x, y);
8050 state.uioh <- state.uioh#pmotion x y
8051 method leave = state.mpos <- (-1, -1)
8052 method winstate wsl = state.winstate <- wsl; m_hack <- false
8053 method quit = raise Quit
8054 end) conf.cwinw conf.cwinh (platform = Posx) in
8056 state.wsfd <- wsfd;
8058 if not (
8059 List.exists GlMisc.check_extension
8060 [ "GL_ARB_texture_rectangle"
8061 ; "GL_EXT_texture_recangle"
8062 ; "GL_NV_texture_rectangle" ]
8064 then (prerr_endline "OpenGL does not suppport rectangular textures"; exit 1);
8066 if (
8067 let r = GlMisc.get_string `renderer in
8068 let p = "Mesa DRI Intel(" in
8069 let l = String.length p in
8070 String.length r > l && String.sub r 0 l = p
8072 then (
8073 defconf.sliceheight <- 1024;
8074 defconf.texcount <- 32;
8075 defconf.usepbo <- true;
8078 let cr, sw =
8079 match Ne.res Unix.pipe with
8080 | Ne.Exn exn ->
8081 Printf.eprintf "pipe/crsw failed: %s" (exntos exn);
8082 exit 1
8083 | Ne.Res rw -> rw
8084 and sr, cw =
8085 match Ne.res Unix.pipe with
8086 | Ne.Exn exn ->
8087 Printf.eprintf "pipe/srcw failed: %s" (exntos exn);
8088 exit 1
8089 | Ne.Res rw -> rw
8092 cloexec cr;
8093 cloexec sw;
8094 cloexec sr;
8095 cloexec cw;
8097 setcheckers conf.checkers;
8098 redirectstderr ();
8099 if conf.redirectstderr
8100 then
8101 at_exit (fun () ->
8102 let s = Buffer.contents state.errmsgs ^
8103 (match state.errfd with
8104 | Some fd ->
8105 let s = String.create (80*24) in
8106 let n =
8108 let r, _, _ = Unix.select [fd] [] [] 0.0 in
8109 if List.mem fd r
8110 then Unix.read fd s 0 (String.length s)
8111 else 0
8112 with _ -> 0
8114 if n = 0
8115 then ""
8116 else String.sub s 0 n
8117 | None -> ""
8120 try ignore (Unix.write state.stderr s 0 (String.length s))
8121 with exn -> print_endline (exntos exn)
8125 init (cr, cw) (
8126 conf.angle, conf.fitmodel, (conf.trimmargins, conf.trimfuzz),
8127 conf.texcount, conf.sliceheight, conf.mustoresize, conf.colorspace,
8128 !Config.fontpath, !trimcachepath,
8129 GlMisc.check_extension "GL_ARB_pixel_buffer_object"
8131 List.iter GlArray.enable [`texture_coord; `vertex];
8132 state.sr <- sr;
8133 state.sw <- sw;
8134 state.text <- "Opening " ^ (mbtoutf8 state.path);
8135 reshape winw winh;
8136 opendoc state.path state.password;
8137 state.uioh <- uioh;
8138 display ();
8139 Wsi.mapwin ();
8140 Sys.set_signal Sys.sighup (Sys.Signal_handle (fun _ -> reload ()));
8141 let optrfd =
8142 ref (
8143 if nonemptystr !rcmdpath
8144 then remoteopen !rcmdpath
8145 else None
8149 let rec loop deadline =
8150 let r =
8151 match state.errfd with
8152 | None -> [state.sr; state.wsfd]
8153 | Some fd -> [state.sr; state.wsfd; fd]
8155 let r =
8156 match !optrfd with
8157 | None -> r
8158 | Some fd -> fd :: r
8160 if state.redisplay
8161 then (
8162 state.redisplay <- false;
8163 display ();
8165 let timeout =
8166 let now = now () in
8167 if deadline > now
8168 then (
8169 if deadline = infinity
8170 then ~-.1.0
8171 else max 0.0 (deadline -. now)
8173 else 0.0
8175 let r, _, _ =
8176 try Unix.select r [] [] timeout
8177 with Unix.Unix_error (Unix.EINTR, _, _) -> [], [], []
8179 begin match r with
8180 | [] ->
8181 state.ghyll None;
8182 let newdeadline =
8183 if state.ghyll == noghyll
8184 then
8185 match state.autoscroll with
8186 | Some step when step != 0 ->
8187 let y = state.y + step in
8188 let y =
8189 if y < 0
8190 then state.maxy
8191 else if y >= state.maxy then 0 else y
8193 gotoy y;
8194 if state.mode = View
8195 then state.text <- "";
8196 deadline +. 0.01
8197 | _ -> infinity
8198 else deadline +. 0.01
8200 loop newdeadline
8202 | l ->
8203 let rec checkfds = function
8204 | [] -> ()
8205 | fd :: rest when fd = state.sr ->
8206 let cmd = readcmd state.sr in
8207 act cmd;
8208 checkfds rest
8210 | fd :: rest when fd = state.wsfd ->
8211 Wsi.readresp fd;
8212 checkfds rest
8214 | fd :: rest when Some fd = !optrfd ->
8215 begin match remote fd with
8216 | None -> optrfd := remoteopen !rcmdpath;
8217 | opt -> optrfd := opt
8218 end;
8219 checkfds rest
8221 | fd :: rest ->
8222 let s = String.create 80 in
8223 let n = tempfailureretry (Unix.read fd s 0) 80 in
8224 if conf.redirectstderr
8225 then (
8226 Buffer.add_substring state.errmsgs s 0 n;
8227 state.newerrmsgs <- true;
8228 state.redisplay <- true;
8230 else (
8231 prerr_string (String.sub s 0 n);
8232 flush stderr;
8234 checkfds rest
8236 checkfds l;
8237 let newdeadline =
8238 let deadline1 =
8239 if deadline = infinity
8240 then now () +. 0.01
8241 else deadline
8243 match state.autoscroll with
8244 | Some step when step != 0 -> deadline1
8245 | _ -> if state.ghyll == noghyll then infinity else deadline1
8247 loop newdeadline
8248 end;
8251 loop infinity;
8252 with Quit ->
8253 Config.save ();