7 let selfexec = ref E.s
;;
8 let ignoredoctitlte = ref false;;
9 let layouth = ref ~
-1;;
10 let checkerstexid = ref None
;;
12 let debugrect (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
) =
18 }|} x0 y0 x1 y1 x2 y2 x3 y3
;
21 let pgscale h
= truncate
(float h
*. conf
.pgscale);;
24 if ((conf
.scrollb
land scrollbhv
!= 0) && (state
.w
> state
.winw
))
25 || state
.uioh#alwaysscrolly
32 fstate
.wwidth
<- measurestr fstate
.fontsize
"w";
33 fstate
.maxrows
<- (state
.winh
- fstate
.fontsize
- 1) / (fstate
.fontsize
+ 1);
37 if emptystr conf
.pathlauncher
38 then dolog
"%s" state
.path
41 Str.global_replace
Utils.Re.percent state
.path conf
.pathlauncher
in
42 match spawn
command [] with
44 | exception exn
-> dolog
"failed to execute `%s': %s" command @@ exntos exn
48 let getopaque pageno
=
49 try Some
(Hashtbl.find state
.pagemap
(pageno
, state
.gen
))
50 with Not_found
-> None
53 let pagetranslatepoint l x y
=
54 let dy = y
- l
.pagedispy
in
55 let y = dy + l
.pagey
in
56 let dx = x
- l
.pagedispx
in
57 let x = dx + l
.pagex
in
61 let onppundermouse g
x y d
=
64 begin match getopaque l
.pageno
with
66 let x0 = l
.pagedispx
in
67 let x1 = x0 + l
.pagevw
in
68 let y0 = l
.pagedispy
in
69 let y1 = y0 + l
.pagevh
in
70 if y >= y0 && y <= y1 && x >= x0 && x <= x1
72 let px, py
= pagetranslatepoint l
x y in
73 match g opaque l
px py
with
85 let g opaque l
px py
=
88 match rectofblock opaque
px py
with
89 | Some
[|x0;x1;y0;y1|] ->
90 let rect = (x0, y0, x1, y0, x1, y1, x0, y1) in
91 let color = (0.0, 0.0, 1.0 /. (l
.pageno
mod 3 |> float), 0.5) in
92 state
.rects
<- [l
.pageno
, color, rect];
93 postRedisplay
"getunder";
96 let under = whatsunder opaque
px py
in
97 if under = Unone
then None
else Some
under
99 onppundermouse g x y Unone
104 match unproject opaque
x y with
105 | Some
(x, y) -> Some
(Some
(opaque
, l
.pageno
, x, y))
108 onppundermouse g x y None
;
112 state
.text
<- Printf.sprintf
"%c%s" c s
;
113 postRedisplay
"showtext";
116 let impmsg fmt
= Format.ksprintf
(fun s
-> showtext '
!' s
) fmt
;;
118 let pipesel opaque cmd
=
120 then pipef ~closew
:false "pipesel"
123 postRedisplay
"pipesel"
128 let g opaque l
px py
=
129 if markunder opaque
px py conf
.paxmark
132 match getopaque l
.pageno
with
134 | Some opaque
-> pipesel opaque conf
.paxcmd
138 postRedisplay
"paxunder";
139 if conf
.paxmark
= Mark_page
142 match getopaque l
.pageno
with
144 | Some opaque
-> clearmark opaque
) state
.layout
;
145 state
.roam
<- onppundermouse g x y (fun () -> impmsg "whoopsie daisy");
148 let undertext = function
151 | Utext s
-> "font: " ^ s
152 | Uannotation
(opaque
, slinkindex
) ->
153 "annotation: " ^ getannotcontents opaque slinkindex
156 let updateunder x y =
157 match getunder x y with
158 | Unone
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
160 if conf
.underinfo
then showtext 'u'
("ri: " ^ uri
);
161 Wsi.setcursor
Wsi.CURSOR_INFO
163 if conf
.underinfo
then showtext '
f'
("ont: " ^ s
);
164 Wsi.setcursor
Wsi.CURSOR_TEXT
166 if conf
.underinfo
then showtext 'a'
"nnotation";
167 Wsi.setcursor
Wsi.CURSOR_INFO
170 let showlinktype under =
171 if conf
.underinfo
&& under != Unone
172 then showtext ' '
@@ undertext under
175 let intentry_with_suffix text key
=
177 match [@warning
"-4"] key
with
178 | Keys.Ascii
('
0'
..'
9'
as c
) -> addchar
text c
179 | Keys.Ascii
('k'
| 'm'
| '
g'
| 'K'
| 'M'
| 'G'
as c
) ->
180 addchar
text @@ asciilower c
182 state
.text <- "invalid key";
189 let b = Buffer.create
16 in
192 let b = Buffer.to_bytes
b in
193 wcmd state
.ss
b @@ Bytes.length
b
197 let nogeomcmds = function
198 | s
, [] -> emptystr s
202 let layoutN ((columns
, coverA
, coverB
), b) x y sw sh
=
203 let rec fold accu n
=
204 if n
= Array.length
b
207 let pdimno, dx, vy
, (_
, w
, h
, xoff
) = b.(n
) in
210 || n
= state
.pagecount
- coverB
211 || (n
- coverA
) mod columns
= columns
- 1)
217 let pagey = max
0 (y - vy
) in
218 let pagedispy = if pagey > 0 then 0 else vy
- y in
219 let pagedispx, pagex
=
221 if n
= coverA
- 1 || n
= state
.pagecount
- coverB
222 then x + (sw
- w
) / 2
230 let vw = sw
- pagedispx in
231 let pw = w
- pagex
in
234 let pagevh = min
(h
- pagey) (sh
- pagedispy) in
235 if pagevw > 0 && pagevh > 0
245 ; pagedispx = pagedispx
246 ; pagedispy = pagedispy
254 if Array.length
b = 0
256 else List.rev
(fold [] (page_of_y
y))
259 let layoutS (columns
, b) x y sw sh
=
260 let rec fold accu n
=
261 if n
= Array.length
b
264 let pdimno, px, vy
, (_
, pagew
, pageh
, xoff
) = b.(n
) in
272 let pagey = max
0 (y - vy
) in
273 let pagedispy = if pagey > 0 then 0 else vy
- y in
274 let pagedispx, pagex
=
288 let pagecolw = pagew
/columns
in
291 then pagedispx + ((sw
- pagecolw) / 2)
295 let vw = sw
- pagedispx in
296 let pw = pagew
- pagex
in
299 let pagevw = min
pagevw pagecolw in
300 let pagevh = min
(pageh
- pagey) (sh
- pagedispy) in
301 if pagevw > 0 && pagevh > 0
311 ; pagedispx = pagedispx
312 ; pagedispy = pagedispy
313 ; pagecol
= n
mod columns
323 let layout x y sw sh
=
324 if nogeomcmds state
.geomcmds
326 match conf
.columns
with
327 | Csingle
b -> layoutN ((1, 0, 0), b) x y sw sh
328 | Cmulti c
-> layoutN c
x y sw sh
329 | Csplit s
-> layoutS s
x y sw sh
333 let maxy () = state
.maxy - if conf
.maxhfit
then state
.winh
else 0;;
334 let clamp incr
= bound
(state
.y + incr
) 0 @@ maxy ();;
337 let tilex = l
.pagex
mod conf
.tilew
in
338 let tiley = l
.pagey mod conf
.tileh
in
340 let col = l
.pagex
/ conf
.tilew
in
341 let row = l
.pagey / conf
.tileh
in
343 let rec rowloop row y0 dispy h
=
346 let dh = conf
.tileh
- y0 in
348 let rec colloop col x0 dispx w
=
351 let dw = conf
.tilew
- x0 in
353 f col row dispx dispy
x0 y0 dw dh;
354 colloop (col+1) 0 (dispx
+dw) (w
-dw)
356 colloop col tilex l
.pagedispx l
.pagevw;
357 rowloop (row+1) 0 (dispy
+dh) (h
-dh)
359 if l
.pagevw > 0 && l
.pagevh > 0
360 then rowloop row tiley l
.pagedispy l
.pagevh;
363 let gettileopaque l
col row =
364 let key = l
.pageno
, state
.gen
, conf
.colorspace
,
365 conf
.angle
, l
.pagew
, l
.pageh
, col, row in
366 try Some
(Hashtbl.find state
.tilemap
key)
367 with Not_found
-> None
370 let puttileopaque l
col row gen colorspace angle opaque size elapsed
=
371 let key = l
.pageno
, gen
, colorspace
, angle
, l
.pagew
, l
.pageh
, col, row in
372 Hashtbl.add state
.tilemap
key (opaque
, size
, elapsed
)
375 let drawtiles l
color =
378 let f col row x y tilex tiley w h
=
379 match gettileopaque l
col row with
380 | Some
(opaque
, _
, t
) ->
381 let params = x, y, w
, h
, tilex, tiley in
383 then GlTex.env
(`mode `blend
);
384 drawtile
params opaque
;
386 then GlTex.env
(`mode `modulate
);
390 let s = Printf.sprintf
"%d[%d,%d] %f sec" l
.pageno
col row t
in
391 let w = measurestr fstate
.fontsize
s in
392 GlDraw.color (0.0, 0.0, 0.0);
397 (float (y + fstate
.fontsize
+ 2));
399 drawstring fstate
.fontsize
x (y + fstate
.fontsize
- 1) s;
405 let w = let lw = state
.winw
- x in min
lw w
406 and h
= let lh = state
.winh
- y in min
lh h
409 then GlTex.env
(`mode `blend
);
410 begin match !checkerstexid with
412 Gl.enable `texture_2d
;
413 GlTex.bind_texture ~target
:`texture_2d id
;
417 and y1 = float (y+h
) in
419 let tw = float w /. 16.0
420 and th
= float h
/. 16.0 in
421 let tx0 = float tilex /. 16.0
422 and ty0
= float tiley /. 16.0 in
424 and ty1
= ty0
+. th
in
425 Raw.sets_float
Glutils.vraw ~pos
:0
426 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
427 Raw.sets_float
Glutils.traw ~pos
:0
428 [| tx0; ty0
; tx0; ty1
; tx1; ty0
; tx1; ty1
|];
429 GlArray.vertex `two
Glutils.vraw
;
430 GlArray.tex_coord `two
Glutils.traw
;
431 GlArray.draw_arrays `triangle_strip ~first
:0 ~count
:4;
432 Gl.disable `texture_2d
;
435 GlDraw.color (1.0, 1.0, 1.0);
436 filledrect
(float x) (float y) (float (x+w)) (float (y+h
));
439 then GlTex.env
(`mode `modulate
);
440 if w > 128 && h
> fstate
.fontsize
+ 10
442 let c = if conf
.invert
then 1.0 else 0.0 in
443 GlDraw.color (c, c, c);
446 then (col*conf
.tilew
, row*conf
.tileh
)
449 drawstring2 fstate
.fontsize
x y "Loading %d [%d,%d]" l
.pageno
c r
;
458 let pagevisible layout n
= List.exists
(fun l
-> l
.pageno
= n
) layout;;
460 let tilevisible1 l
x y =
462 and ax1
= l
.pagex
+ l
.pagevw
464 and ay1
= l
.pagey + l
.pagevh in
468 let bx1 = min
(bx0 + conf
.tilew
) l
.pagew
469 and by1
= min
(by0
+ conf
.tileh
) l
.pageh
in
471 let rx0 = max
ax0 bx0
472 and ry0
= max ay0 by0
473 and rx1
= min ax1
bx1
474 and ry1
= min ay1 by1
in
476 let nonemptyintersection = rx1
> rx0 && ry1
> ry0
in
480 let tilevisible layout n
x y =
481 let rec findpageinlayout m
= function
482 | l
:: rest
when l
.pageno
= n
->
483 tilevisible1 l
x y || (
484 match conf
.columns
with
485 | Csplit
(c, _
) when c > m
-> findpageinlayout (m
+1) rest
486 | Csplit _
| Csingle _
| Cmulti _
-> false
488 | _
:: rest
-> findpageinlayout 0 rest
491 findpageinlayout 0 layout;
494 let tileready l
x y =
495 tilevisible1 l
x y &&
496 gettileopaque l
(x/conf
.tilew
) (y/conf
.tileh
) != None
499 let tilepage n p
layout =
500 let rec loop = function
504 let f col row _ _ _ _ _ _
=
505 if state
.currently
= Idle
507 match gettileopaque l
col row with
510 let x = col*conf
.tilew
511 and y = row*conf
.tileh
in
513 let w = l
.pagew
- x in
517 let h = l
.pageh
- y in
522 then getpbo
w h conf
.colorspace
525 wcmd "tile %s %d %d %d %d %s" (~
> p
) x y w h (~
> pbo);
528 l
, p
, conf
.colorspace
, conf
.angle
,
529 state
.gen
, col, row, conf
.tilew
, conf
.tileh
538 if nogeomcmds state
.geomcmds
542 let preloadlayout x y sw sh
=
543 let y = if y < sh
then 0 else y - sh
in
544 let x = min
0 (x + sw
) in
552 if state
.currently
= Idle
556 begin match getopaque l
.pageno
with
558 wcmd "page %d %d" l
.pageno l
.pagedimno
;
559 state
.currently
<- Loading
(l
, state
.gen
);
561 tilepage l
.pageno opaque pages
;
566 if nogeomcmds state
.geomcmds
572 if conf
.preload && state
.currently
= Idle
573 then load (preloadlayout state
.x state
.y state
.winw state
.winh
);
576 let layoutready layout =
577 let rec fold all ls
=
580 let seen = ref false in
581 let allvisible = ref true in
582 let foo col row _ _ _ _ _ _
=
584 allvisible := !allvisible &&
585 begin match gettileopaque l
col row with
591 fold (!seen && !allvisible) rest
594 let alltilesvisible = fold true layout in
599 let y = bound
y 0 state
.maxy in
601 let layout = layout x y state
.winw state
.winh
in
602 postRedisplay
"gotoxy ready";
607 state
.layout <- layout;
608 begin match state
.mode
with
611 | Ltexact
(pageno
, linkno
) ->
612 let rec loop = function
614 state
.lnava
<- Some
(pageno
, linkno
);
615 state
.mode
<- LinkNav
(Ltgendir
0)
616 | l
:: _
when l
.pageno
= pageno
->
617 begin match getopaque pageno
with
618 | None
-> state
.mode
<- LinkNav
(Ltnotready
(pageno
, 0))
620 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
621 if not
(x0 >= l
.pagex
&& x1 <= l
.pagex
+ l
.pagevw
622 && y0 >= l
.pagey && y1 <= l
.pagey + l
.pagevh)
623 then state
.mode
<- LinkNav
(Ltgendir
0)
625 | _
:: rest
-> loop rest
628 | Ltnotready _
| Ltgendir _
-> ()
630 | Birdseye _
| Textentry _
| View
-> ()
632 begin match state
.mode
with
633 | Birdseye
(conf
, leftx
, pageno
, hooverpageno
, anchor
) ->
634 if not
(pagevisible layout pageno
)
636 match state
.layout with
639 state
.mode
<- Birdseye
(conf
, leftx
, l
.pageno
, hooverpageno
, anchor
)
643 | Ltnotready
(_
, dir
)
646 let rec loop = function
649 match getopaque l
.pageno
with
650 | None
-> Ltnotready
(l
.pageno
, dir
)
655 then LDfirstvisible
(l
.pagex
, l
.pagey, dir
)
656 else if dir
> 0 then LDfirst
else LDlast
661 | Lnotfound
-> loop rest
663 showlinktype (getlink opaque n
);
664 Ltexact
(l
.pageno
, n
)
668 state
.mode
<- LinkNav
linknav
671 | Textentry _
| View
-> ()
676 let mx, my
= state
.mpos
in
681 let conttiling pageno opaque
=
682 tilepage pageno opaque
684 then preloadlayout state
.x state
.y state
.winw state
.winh
689 if not conf
.verbose
then state
.text <- E.s;
693 let getanchory (n
, top
, dtop
) =
694 let y, h = getpageyh n
in
697 let ips = calcips
h in
698 y + truncate
(top
*.float h -. dtop
*.float ips) + ips;
699 else y + truncate
(top
*.float h -. dtop
*.float conf
.interpagespace
)
702 let addnav () = getanchor
() |> cbput state
.hists
.nav
;;
703 let addnavnorc () = getanchor
() |> cbput_dont_update_rc state
.hists
.nav
;;
706 let anchor = cbgetc state
.hists
.nav dir
in
711 let y, h = getpageyh n
in
712 let y = y + (truncate
(top
*. float h)) in
716 let gotopage1 n top
=
717 let y = getpagey n
in
723 Glutils.redisplay
:= false;
728 match state
.geomcmds
with
729 | ps
, [] when emptystr ps
->
731 state
.geomcmds
<- s, [];
732 | ps
, [] -> state
.geomcmds
<- ps
, [s, f];
733 | ps
, (s'
, _
) :: rest
when s'
= s -> state
.geomcmds
<- ps
, ((s, f) :: rest
);
734 | ps
, cmds
-> state
.geomcmds
<- ps
, ((s, f) :: cmds
);
738 Hashtbl.iter
(fun _ opaque
-> wcmd "freepage %s" (~
> opaque
)) state
.pagemap
;
739 Hashtbl.clear state
.pagemap
;
743 if not
(Queue.is_empty state
.tilelru
)
745 Queue.iter
(fun (k
, p
, s) ->
746 wcmd "freetile %s" (~
> p
);
747 state
.memused
<- state
.memused
- s;
748 Hashtbl.remove state
.tilemap k
;
750 state
.uioh#infochanged Memused
;
751 Queue.clear state
.tilelru
;
757 let h = truncate
(float h*.conf
.zoom
) in
758 let d = conf
.interpagespace
lsl (if conf
.presentation
then 1 else 0) in
764 let sl = keystostrlist conf
in
766 function | [] -> accu
767 | s :: rest
-> loop ((s, 0, Noaction
) :: accu) rest
768 in Help.makehelp conf
.urilauncher
769 @ (("", 0, Noaction
) :: loop [] sl) |> Array.of_list
772 let opendoc path password
=
774 state
.password
<- password
;
775 state
.gen
<- state
.gen
+ 1;
777 state
.outlines
<- [||];
780 setaalevel conf
.aalevel
;
781 setpapercolor conf
.papercolor
;
783 if emptystr state
.origin
787 Wsi.settitle
("llpp " ^ mbtoutf8
(Filename.basename
titlepath));
788 wcmd "open %d %d %s\000%s\000%s\000"
789 (btod conf
.usedoccss
) !layouth
790 path password conf
.css
;
791 invalidate "reqlayout"
793 wcmd "reqlayout %d %d %d %s\000"
794 conf
.angle
(FMTE.to_int conf
.fitmodel
)
795 (stateh state
.winh
) state
.nameddest
801 state
.anchor <- getanchor
();
802 state
.reload <- Some
(state
.x, state
.y, now
());
803 opendoc state
.path state
.password
;
806 let scalecolor c = let c = c *. conf
.colorscale
in (c, c, c);;
807 let scalecolor2 (r
, g, b) =
808 (r
*. conf
.colorscale
, g *. conf
.colorscale
, b *. conf
.colorscale
);
811 let docolumns columns
=
814 let a = Array.make state
.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
815 let rec loop pageno
pdimno pdim
y ph pdims
=
816 if pageno
!= state
.pagecount
818 let pdimno, ((_
, w, h, xoff
) as pdim
), pdims
=
820 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
825 let x = max
0 (((state
.winw
- w) / 2) - xoff
) in
827 y + (if conf
.presentation
828 then (if pageno
= 0 then calcips
h else calcips ph
+ calcips
h)
829 else (if pageno
= 0 then 0 else conf
.interpagespace
))
831 a.(pageno
) <- (pdimno, x, y, pdim
);
832 loop (pageno
+1) pdimno pdim
(y + h) h pdims
834 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 state
.pdims
;
835 conf
.columns
<- Csingle
a;
837 | Cmulti
((columns
, coverA
, coverB
), _
) ->
838 let a = Array.make state
.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
839 let rec loop pageno
pdimno pdim
x y rowh pdims
=
841 if m
= pageno
then () else
842 let (pdimno, x, y, ((_
, _
, h, _
) as pdim
)) = a.(m
) in
845 let y = y + (rowh
- h) / 2 in
846 a.(m
) <- (pdimno, x, y, pdim
);
850 if pageno
= state
.pagecount
851 then fixrow (((pageno
- 1) / columns
) * columns
)
853 let pdimno, ((_
, w, h, xoff
) as pdim
), pdims
=
855 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
857 | _
-> pdimno, pdim
, pdims
860 if pageno
= coverA
- 1 || pageno
= state
.pagecount
- coverB
862 let x = (state
.winw
- w) / 2 in
864 if conf
.presentation
then calcips
h else conf
.interpagespace
in
868 if (pageno
- coverA
) mod columns
= 0
870 let x = max
0 (state
.winw
- state
.w) / 2 in
874 let ips = calcips
h in
875 y + (if pageno
= 0 then 0 else calcips rowh
+ ips)
877 y + (if pageno
= 0 then 0 else conf
.interpagespace
)
881 else x, y, max rowh
h
885 if pageno
> 1 && (pageno
- coverA
) mod columns
= 0
888 if pageno
= columns
&& conf
.presentation
890 let ips = calcips rowh
in
891 for i
= 0 to pred columns
893 let (pdimno, x, y, pdim
) = a.(i
) in
894 a.(i
) <- (pdimno, x, y+ips, pdim
)
900 fixrow (pageno
- columns
);
905 a.(pageno
) <- (pdimno, x, y, pdim
);
906 let x = x + w + xoff
*2 + conf
.interpagespace
in
907 loop (pageno
+1) pdimno pdim
x y rowh' pdims
909 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 0 state
.pdims
;
910 conf
.columns
<- Cmulti
((columns
, coverA
, coverB
), a);
913 let a = Array.make
(state
.pagecount
*c) (-1, -1, -1, (-1, -1, -1, -1)) in
914 let rec loop pageno
pdimno pdim
y pdims
=
915 if pageno
!= state
.pagecount
917 let pdimno, ((_
, w, h, _
) as pdim
), pdims
=
919 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
921 | _
-> pdimno, pdim
, pdims
924 let rec loop1 n
x y =
925 if n
= c then y else (
926 a.(pageno
*c + n
) <- (pdimno, x, y, pdim
);
927 loop1 (n
+1) (x+cw) (y + h + conf
.interpagespace
)
930 let y = loop1 0 0 y in
931 loop (pageno
+1) pdimno pdim
y pdims
933 loop 0 ~
-1 (-1,-1,-1,-1) 0 state
.pdims
;
934 conf
.columns
<- Csplit
(c, a);
938 docolumns conf
.columns
;
939 state
.maxy <- calcheight
();
940 if state
.reprf
== noreprf
942 match state
.mode
with
943 | Birdseye
(_
, _
, pageno
, _
, _
) ->
944 let y, h = getpageyh pageno
in
945 let top = (state
.winh
- h) / 2 in
946 gotoxy state
.x (max
0 (y - top))
947 | Textentry _
| View
| LinkNav _
->
948 let y = getanchory state
.anchor in
949 let y = min
y (state
.maxy - state
.winh
) in
954 state
.reprf
<- noreprf
;
958 let reshape ?
(firsttime
=false) w h =
959 GlDraw.viewport ~
x:0 ~
y:0 ~
w ~
h;
960 if not firsttime
&& nogeomcmds state
.geomcmds
961 then state
.anchor <- getanchor
();
964 let w = truncate
(float w *. conf
.zoom
) in
967 setfontsize fstate
.fontsize
;
968 GlMat.mode `modelview
;
969 GlMat.load_identity
();
971 GlMat.mode `projection
;
972 GlMat.load_identity
();
973 GlMat.rotate ~
x:1.0 ~angle
:180.0 ();
974 GlMat.translate ~
x:~
-.1.0 ~
y:~
-.1.0 ();
975 GlMat.scale3
(2.0 /. float state
.winw
, 2.0 /. float state
.winh
, 1.0);
980 else float state
.x /. float state
.w
982 invalidate "geometry"
986 then state
.x <- truncate
(relx *. float w);
988 match conf
.columns
with
990 | Cmulti
((c, _
, _
), _
) -> (w - (c-1)*conf
.interpagespace
) / c
991 | Csplit
(c, _
) -> w * c
993 wcmd "geometry %d %d %d" w (stateh h) (FMTE.to_int conf
.fitmodel
)
998 let len = Queue.length state
.tilelru
in
999 let layout = lazy (if conf
.preload
1000 then preloadlayout state
.x state
.y state
.winw state
.winh
1001 else state
.layout) in
1003 if state
.memused
> conf
.memlimit
1007 let (k
, p
, s) as lruitem
= Queue.pop state
.tilelru
in
1008 let n, gen
, colorspace
, angle
, pagew
, pageh
, col, row = k
in
1009 let (_
, pw, ph
, _
) = getpagedim
n in
1011 && colorspace
= conf
.colorspace
1012 && angle
= conf
.angle
1016 let x = col*conf
.tilew
and y = row*conf
.tileh
in
1017 tilevisible (Lazy.force_val
layout) n x y
1019 then Queue.push lruitem state
.tilelru
1022 wcmd "freetile %s" (~
> p
);
1023 state
.memused
<- state
.memused
- s;
1024 state
.uioh#infochanged Memused
;
1025 Hashtbl.remove state
.tilemap k
;
1033 let onpagerect pageno
f =
1035 match conf
.columns
with
1036 | Cmulti
(_
, b) -> b
1038 | Csplit
(_
, b) -> b
1040 if pageno
>= 0 && pageno
< Array.length
b
1042 let (_
, _
, _
, (_
, w, h, _
)) = b.(pageno
) in
1046 let gotopagexy1 pageno
x y =
1047 let _,w1
,h1
,leftx
= getpagedim pageno
in
1048 let top = y /. (float h1
) in
1049 let left = x /. (float w1
) in
1050 let py, w, h = getpageywh pageno
in
1051 let wh = state
.winh
in
1052 let x = left *. (float w) in
1053 let x = leftx
+ state
.x + truncate
x in
1055 if x < 0 || x >= state
.winw
1059 let pdy = truncate
(top *. float h) in
1060 let y'
= py + pdy in
1061 let dy = y'
- state
.y in
1063 if x != state
.x || not
(dy > 0 && dy < wh)
1065 if conf
.presentation
1067 if abs
(py - y'
) > wh
1074 if state
.x != sx || state
.y != sy
1076 else gotoxy state
.x state
.y;
1079 let gotopagexy pageno
x y =
1080 match state
.mode
with
1081 | Birdseye
_ -> gotopage pageno
0.0
1082 | Textentry
_ | View
| LinkNav
_ -> gotopagexy1 pageno
x y
1085 let getpassword () =
1086 let passcmd = getenvdef
"LLPP_ASKPASS" conf
.passcmd in
1089 else getcmdoutput
(fun s ->
1090 impmsg "error getting password: %s" s;
1091 dolog
"%s" s) passcmd;
1094 let pgoto opaque pageno
x y =
1095 let pdimno = getpdimno pageno
in
1096 let x, y = project opaque pageno
pdimno x y in
1097 gotopagexy pageno
x y;
1101 (* dolog "%S" cmds; *)
1102 let spl = splitatchar cmds ' '
in
1104 try Scanf.sscanf
s fmt
f
1106 dolog
"error processing '%S': %s" cmds
@@ exntos exn
;
1109 let addoutline outline
=
1110 match state
.currently
with
1111 | Outlining outlines
-> state
.currently
<- Outlining
(outline
:: outlines
)
1112 | Idle
-> state
.currently
<- Outlining
[outline
]
1113 | Loading
_ | Tiling
_ ->
1114 dolog
"invalid outlining state";
1115 logcurrently state
.currently
1120 state
.uioh#infochanged Pdim
;
1122 | "clearrects", "" ->
1123 state
.rects
<- state
.rects1
;
1124 postRedisplay
"clearrects";
1126 | "continue", args
->
1127 let n = scan args
"%u" (fun n -> n) in
1128 state
.pagecount
<- n;
1129 begin match state
.currently
with
1131 state
.currently
<- Idle
;
1132 state
.outlines
<- Array.of_list
(List.rev l
)
1133 | Idle
| Loading
_ | Tiling
_ -> ()
1136 let cur, cmds
= state
.geomcmds
in
1137 if emptystr
cur then error
"empty geomcmd";
1139 begin match List.rev cmds
with
1141 state
.geomcmds
<- E.s, [];
1145 state
.geomcmds
<- s, List.rev rest
;
1147 postRedisplay
"continue";
1153 if conf
.verbose
then showtext ' ' args
1156 Buffer.add_string state
.errmsgs args
;
1157 state
.newerrmsgs
<- true;
1158 postRedisplay
"error message"
1160 | "progress", args
->
1161 let progress, text =
1163 (fun f pos
-> f, String.sub args pos
(String.length args
- pos
))
1166 state
.progress <- progress;
1167 postRedisplay
"progress"
1169 | "firstmatch", args
->
1170 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
1171 scan args
"%u %d %f %f %f %f %f %f %f %f"
1172 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
1173 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
1175 let y = (getpagey
pageno) + truncate
y0 in
1177 if (state
.x < - truncate
x0) || (state
.x > state
.winw
- truncate
x1)
1178 then state
.winw
/2 - truncate
(x0 /. 2. +. x1 /. 2.)
1183 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1184 state
.rects1
<- [pageno, color, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)]
1187 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
1188 scan args
"%u %d %f %f %f %f %f %f %f %f"
1189 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
1190 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
1192 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
1194 (pageno, color, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) :: state
.rects1
1197 let pageopaques, t
= scan args
"%s %f" (fun p t
-> p
, t
) in
1198 let pageopaque = ~
< pageopaques in
1199 begin match state
.currently
with
1200 | Loading
(l
, gen
) ->
1201 vlog
"page %d took %f sec" l
.pageno t
;
1202 Hashtbl.replace state
.pagemap
(l
.pageno, gen
) pageopaque;
1203 let preloadedpages =
1205 then preloadlayout state
.x state
.y state
.winw state
.winh
1209 let set = List.fold_left
(fun s l
-> IntSet.add l
.pageno s)
1210 IntSet.empty
preloadedpages
1213 Hashtbl.fold (fun ((pageno, _) as key) opaque
accu ->
1214 if not
(IntSet.mem
pageno set)
1216 wcmd "freepage %s" (~
> opaque
);
1222 List.iter
(Hashtbl.remove state
.pagemap
) evictedpages;
1225 state
.currently
<- Idle
;
1228 tilepage l
.pageno pageopaque state
.layout;
1230 load preloadedpages;
1231 let visible = pagevisible state
.layout l
.pageno in
1234 match state
.mode
with
1235 | LinkNav
(Ltnotready
(pageno, dir
)) ->
1236 if pageno = l
.pageno
1241 then LDfirstvisible
(l
.pagex
, l
.pagey, dir
)
1242 else if dir
> 0 then LDfirst
else LDlast
1244 findlink
pageopaque ld
1249 showlinktype (getlink
pageopaque n);
1250 state
.mode
<- LinkNav
(Ltexact
(l
.pageno, n))
1252 | LinkNav
(Ltgendir
_)
1253 | LinkNav
(Ltexact
_)
1259 if visible && layoutready state
.layout
1260 then postRedisplay
"page";
1263 | Idle
| Tiling
_ | Outlining
_ ->
1264 dolog
"Inconsistent loading state";
1265 logcurrently state
.currently
;
1270 let (x, y, opaques
, size
, t
) =
1271 scan args
"%u %u %s %u %f" (fun x y p size t
-> (x, y, p
, size
, t
))
1273 let opaque = ~
< opaques
in
1274 begin match state
.currently
with
1275 | Tiling
(l
, pageopaque, cs
, angle
, gen
, col, row, tilew
, tileh
) ->
1276 vlog
"tile %d [%d,%d] took %f sec" l
.pageno col row t
;
1279 if tilew
!= conf
.tilew
|| tileh
!= conf
.tileh
1281 wcmd "freetile %s" (~
> opaque);
1282 state
.currently
<- Idle
;
1286 puttileopaque l
col row gen cs angle
opaque size t
;
1287 state
.memused
<- state
.memused
+ size
;
1288 state
.uioh#infochanged Memused
;
1290 Queue.push
((l
.pageno, gen
, cs
, angle
, l
.pagew
, l
.pageh
, col, row),
1291 opaque, size
) state
.tilelru
;
1293 state
.currently
<- Idle
;
1295 && conf
.colorspace
= cs
1296 && conf
.angle
= angle
1297 && tilevisible state
.layout l
.pageno x y
1298 then conttiling l
.pageno pageopaque;
1300 preload state
.layout;
1302 && conf
.colorspace
= cs
1303 && conf
.angle
= angle
1304 && tilevisible state
.layout l
.pageno x y
1305 && layoutready state
.layout
1306 then postRedisplay
"tile nothrottle";
1309 | Idle
| Loading
_ | Outlining
_ ->
1310 dolog
"Inconsistent tiling state";
1311 logcurrently state
.currently
;
1316 let (n, w, h, _) as pdim
=
1317 scan args
"%u %u %u %u" (fun n w h x -> n, w, h, x)
1320 match conf
.fitmodel
with
1322 | FitPage
| FitProportional
->
1323 match conf
.columns
with
1324 | Csplit
_ -> (n, w, h, 0)
1325 | Csingle
_ | Cmulti
_ -> pdim
1327 state
.pdims
<- pdim :: state
.pdims
;
1328 state
.uioh#infochanged Pdim
1331 let (l
, n, t
, h, pos
) =
1332 scan args
"%u %u %d %u %n" (fun l
n t
h pos
-> l
, n, t
, h, pos
)
1334 let s = String.sub args pos
(String.length args
- pos
) in
1335 addoutline (s, l
, Oanchor
(n, float t
/. float h, 0.0))
1338 let (l
, len, pos
) = scan args
"%u %u %n" (fun l
len pos
-> l
, len, pos
) in
1339 let s = String.sub args pos
len in
1340 let pos2 = pos
+ len + 1 in
1341 let uri = String.sub args
pos2 (String.length args
- pos2) in
1342 addoutline (s, l
, Ouri
uri)
1345 let (l
, pos
) = scan args
"%u %n" (fun l pos
-> l
, pos
) in
1346 let s = String.sub args pos
(String.length args
- pos
) in
1347 addoutline (s, l
, Onone
)
1350 let (n, l
, t
) = scan args
"%u %d %d" (fun n l t
-> n, l
, t
) in
1351 state
.reprf
<- (fun () -> gotopagexy n (float l
) (float t
))
1354 let c, v
= splitatchar args '
\t'
in
1361 if not
!ignoredoctitlte then Wsi.settitle v
;
1365 if let len = String.length
c in
1366 len > 6 && ((String.sub
c (len-4) 4) = "date")
1368 if String.length v
>= 7 && v
.[0] = 'D'
&& v
.[1] = '
:'
1370 let b = Buffer.create
10 in
1371 Printf.bprintf
b "%s\t" c;
1374 Buffer.add_substring
b v p l
;
1375 Buffer.add_char
b c;
1376 with exn
-> Buffer.add_string
b @@ exntos exn
1384 Printf.bprintf
b "[%s]" v
;
1391 state
.docinfo
<- (1, s) :: state
.docinfo
1394 state
.docinfo
<- List.rev state
.docinfo
;
1395 state
.uioh#infochanged Docinfo
1399 then Wsi.settitle
"Wrong password";
1400 let password = getpassword () in
1401 if emptystr
password
1402 then error
"document is password protected"
1403 else opendoc state
.path
password
1405 | _ -> error
"unknown cmd `%S'" cmds
1410 let action = function
1411 | HCprev
-> cbget cb ~
-1
1412 | HCnext
-> cbget cb
1
1413 | HCfirst
-> cbget cb ~
-(cb
.rc)
1414 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
1415 and cancel
() = cb
.rc <- rc
1419 let search pattern forward
=
1420 match conf
.columns
with
1421 | Csplit
_ -> impmsg "searching does not work properly in split columns mode"
1422 | Csingle
_ | Cmulti
_ ->
1423 if nonemptystr pattern
1426 match state
.layout with
1428 | l
:: _ -> l
.pageno, (l
.pagey + if forward
then 0 else 0*l
.pagevh)
1430 wcmd "search %d %d %d %d,%s\000"
1431 (btod conf
.icase
) pn py (btod forward
) pattern
;
1434 let intentry text key =
1436 if emptystr
text && key = Keys.Ascii '
-'
1437 then addchar
text '
-'
1439 match [@warning
"-4"] key with
1440 | Keys.Ascii
('
0'
..'
9'
as c) -> addchar
text c
1442 state
.text <- "invalid key";
1452 let l = String.length
s in
1453 let rec loop pos
n =
1457 let m = Char.code
s.[pos
] - (if pos
= 0 && l > 1 then 96 else 97) in
1458 loop (pos
+1) (n*26 + m)
1461 let rec loop n = function
1464 match getopaque l.pageno with
1465 | None
-> loop n rest
1467 let m = getlinkcount
opaque in
1470 let under = getlink
opaque n in
1472 else loop (n-m) rest
1474 loop n state
.layout;
1477 let linknentry text key = match [@warning
"-4"] key with
1478 | Keys.Ascii
('
a'
.. 'z'
as c) ->
1479 let text = addchar
text c in
1480 linknact (fun under -> state
.text <- undertext under) text;
1483 state
.text <- Printf.sprintf
"invalid key %s" @@ Keys.to_string
key;
1487 let textentry text key = match [@warning
"-4"] key with
1488 | Keys.Ascii
c -> TEcont
(addchar
text c)
1489 | Keys.Code
c -> TEcont
(text ^ toutf8
c)
1493 let reqlayout angle fitmodel
=
1494 if nogeomcmds state
.geomcmds
1495 then state
.anchor <- getanchor
();
1496 conf
.angle
<- angle
mod 360;
1499 match state
.mode
with
1500 | LinkNav
_ -> state
.mode
<- View
1501 | Birdseye
_ | Textentry
_ | View
-> ()
1503 conf
.fitmodel
<- fitmodel
;
1504 invalidate "reqlayout"
1505 (fun () -> wcmd "reqlayout %d %d %d"
1506 conf
.angle
(FMTE.to_int conf
.fitmodel
) (stateh state
.winh
));
1509 let settrim trimmargins trimfuzz
=
1510 if nogeomcmds state
.geomcmds
1511 then state
.anchor <- getanchor
();
1512 conf
.trimmargins
<- trimmargins
;
1513 conf
.trimfuzz
<- trimfuzz
;
1514 let x0, y0, x1, y1 = trimfuzz
in
1515 invalidate "settrim"
1516 (fun () -> wcmd "settrim %d %d %d %d %d"
1517 (btod conf
.trimmargins
) x0 y0 x1 y1);
1522 let zoom = max
0.0001 zoom in
1523 if zoom <> conf
.zoom
1525 state
.prevzoom
<- (conf
.zoom, state
.x);
1527 reshape state
.winw state
.winh
;
1528 state
.text <- Printf.sprintf
"zoom is now %-5.2f" (zoom *. 100.0);
1532 let pivotzoom ?
(vw=min state
.w state
.winw
)
1533 ?
(vh
=min
(state
.maxy-state
.y) state
.winh
)
1534 ?
(x=vw/2) ?
(y=vh
/2) zoom =
1535 let w = float state
.w /. zoom in
1536 let hw = w /. 2.0 in
1537 let ratio = float vh
/. float vw in
1538 let hh = hw *. ratio in
1539 let x0 = float x -. hw
1540 and y0 = float y -. hh in
1541 gotoxy (state
.x - truncate
x0) (state
.y + truncate
y0);
1545 let pivotzoom ?
vw ?vh ?
x ?
y zoom =
1546 if nogeomcmds state
.geomcmds
1549 then pivotzoom ?
vw ?vh ?
x ?
y zoom
1553 let setcolumns mode columns coverA coverB
=
1554 state
.prevcolumns
<- Some
(conf
.columns
, conf
.zoom);
1558 then impmsg "split mode doesn't work in bird's eye"
1560 conf
.columns
<- Csplit
(-columns
, E.a);
1568 conf
.columns
<- Csingle
E.a;
1573 conf
.columns
<- Cmulti
((columns
, coverA
, coverB
), E.a);
1577 reshape state
.winw state
.winh
;
1580 let resetmstate () =
1581 state
.mstate
<- Mnone
;
1582 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
1585 let enterbirdseye () =
1586 let zoom = float conf
.thumbw
/. float state
.winw
in
1587 let birdseyepageno =
1588 let cy = state
.winh
/ 2 in
1592 let rec fold best
= function
1595 let d = cy - (l.pagedispy + l.pagevh/2)
1596 and dbest
= cy - (best
.pagedispy + best
.pagevh/2) in
1597 if abs
d < abs dbest
1606 { conf
with zoom = conf
.zoom },
1607 state
.x, birdseyepageno, -1, getanchor
()
1611 conf
.presentation
<- false;
1612 conf
.interpagespace
<- 10;
1613 conf
.hlinks
<- false;
1614 conf
.fitmodel
<- FitPage
;
1617 match conf
.beyecolumns
with
1620 Cmulti
((c, 0, 0), E.a)
1621 | None
-> Csingle
E.a
1624 then state
.text <- Printf.sprintf
"birds eye mode on (zoom %3.1f%%)"
1626 else state
.text <- E.s;
1627 reshape state
.winw state
.winh
;
1630 let leavebirdseye (c, leftx
, pageno, _, anchor) goback
=
1632 conf
.zoom <- c.zoom;
1633 conf
.presentation
<- c.presentation
;
1634 conf
.interpagespace
<- c.interpagespace
;
1635 conf
.hlinks
<- c.hlinks
;
1636 conf
.fitmodel
<- c.fitmodel
;
1637 conf
.beyecolumns
<- (
1638 match conf
.columns
with
1639 | Cmulti
((c, _, _), _) -> Some
c
1641 | Csplit
_ -> error
"leaving bird's eye split mode"
1644 match c.columns
with
1645 | Cmulti
(c, _) -> Cmulti
(c, E.a)
1646 | Csingle
_ -> Csingle
E.a
1647 | Csplit
(c, _) -> Csplit
(c, E.a)
1650 then state
.text <- Printf.sprintf
"birds eye mode off (zoom %3.1f%%)"
1652 reshape state
.winw state
.winh
;
1653 state
.anchor <- if goback
then anchor else (pageno, 0.0, 1.0);
1657 let togglebirdseye () =
1658 match state
.mode
with
1659 | Birdseye vals
-> leavebirdseye vals
true
1660 | View
-> enterbirdseye ()
1661 | Textentry
_ | LinkNav
_ -> ()
1664 let upbirdseye incr
(conf
, leftx
, pageno, hooverpageno
, anchor) =
1665 let pageno = max
0 (pageno - incr
) in
1666 let rec loop = function
1667 | [] -> gotopage1 pageno 0
1668 | l :: _ when l.pageno = pageno ->
1669 if l.pagedispy >= 0 && l.pagey = 0
1670 then postRedisplay
"upbirdseye"
1671 else gotopage1 pageno 0
1672 | _ :: rest
-> loop rest
1676 state
.mode
<- Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor)
1679 let downbirdseye incr
(conf
, leftx
, pageno, hooverpageno
, anchor) =
1680 let pageno = min
(state
.pagecount
- 1) (pageno + incr
) in
1681 state
.mode
<- Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor);
1682 let rec loop = function
1684 let y, h = getpageyh
pageno in
1685 let dy = (y - state
.y) - (state
.winh
- h - conf
.interpagespace
) in
1686 gotoxy state
.x (clamp dy)
1687 | l :: _ when l.pageno = pageno ->
1688 if l.pagevh != l.pageh
1689 then gotoxy state
.x (clamp (l.pageh
- l.pagevh + conf
.interpagespace
))
1690 else postRedisplay
"downbirdseye"
1691 | _ :: rest
-> loop rest
1697 let optentry mode
_ key =
1698 let btos b = if b then "on" else "off" in
1699 match [@warning
"-4"] key with
1703 let n, a, b = multicolumns_of_string
s in
1704 setcolumns mode
n a b;
1706 state
.text <- Printf.sprintf
"bad columns `%s': %s" s @@ exntos exn
1708 TEswitch
("columns: ", E.s, None
, textentry, ondone, true)
1713 let zoom = float (int_of_string
s) /. 100.0 in
1716 state
.text <- Printf.sprintf
"bad integer `%s': %s" s @@ exntos exn
1718 TEswitch
("zoom: ", E.s, None
, intentry, ondone, true)
1721 conf
.icase
<- not conf
.icase
;
1722 TEdone
("case insensitive search " ^
(btos conf
.icase
))
1725 conf
.verbose
<- not conf
.verbose
;
1726 TEdone
("verbose " ^
(btos conf
.verbose
))
1729 conf
.debug
<- not conf
.debug
;
1730 TEdone
("debug " ^
(btos conf
.debug
))
1733 conf
.underinfo
<- not conf
.underinfo
;
1734 TEdone
("underinfo " ^
btos conf
.underinfo
)
1737 settrim (not conf
.trimmargins
) conf
.trimfuzz
;
1738 TEdone
("trim margins " ^
btos conf
.trimmargins
)
1741 conf
.invert
<- not conf
.invert
;
1742 TEdone
("invert colors " ^
btos conf
.invert
)
1746 cbput state
.hists
.sel
s;
1749 TEswitch
("selection command: ", E.s, Some
(onhist state
.hists
.sel
),
1750 textentry, ondone, true)
1754 then conf
.pax
<- Some
0.0
1755 else conf
.pax
<- None
;
1756 TEdone
("PAX " ^
btos (conf
.pax
!= None
))
1759 state
.text <- Printf.sprintf
"bad option %d `%c'" (Char.code
c) c;
1762 | _ -> TEcont state
.text
1765 let adderrmsg src msg
=
1766 Buffer.add_string state
.errmsgs msg
;
1767 state
.newerrmsgs
<- true;
1771 let adderrfmt src fmt
= Format.ksprintf
(fun s -> adderrmsg src
s) fmt
;;
1773 class outlinelistview ~zebra ~source
=
1774 let settext autonarrow
s =
1777 let ss = source#statestr
in
1778 state
.text <- if emptystr
ss
1780 else "{" ^
ss ^
"} [" ^
s ^
"]"
1781 else state
.text <- s
1787 ~source
:(source
:> lvsource
)
1789 ~modehash
:(findkeyhash conf
"outline")
1792 val m_autonarrow
= false
1794 method! key key mask
=
1796 if emptystr state
.text
1798 else fstate
.maxrows - 2
1800 let calcfirst first active
=
1803 let rows = active
- first
in
1804 if rows > maxrows then active
- maxrows else first
1808 let active = m_active
+ incr
in
1809 let active = bound
active 0 (source#getitemcount
- 1) in
1810 let first = calcfirst m_first
active in
1811 postRedisplay
"outline navigate";
1812 coe
{< m_active
= active; m_first
= first >}
1814 let navscroll first =
1816 let dist = m_active
- first in
1822 else first + maxrows
1825 postRedisplay
"outline navscroll";
1826 coe
{< m_first
= first; m_active
= active >}
1828 let ctrl = Wsi.withctrl mask
in
1830 match Wsi.kc2kt
key with
1831 | Ascii '
a'
when ctrl ->
1839 let pattern = source#renarrow
in
1840 if nonemptystr m_qsearch
1841 then (source#narrow m_qsearch
; m_qsearch
)
1845 settext (not m_autonarrow
) text;
1846 postRedisplay
"toggle auto narrowing";
1847 coe
{< m_first
= 0; m_active
= 0; m_autonarrow
= not m_autonarrow
>}
1849 | Ascii '
/'
when emptystr m_qsearch
&& not m_autonarrow
->
1851 postRedisplay
"toggle auto narrowing";
1852 coe
{< m_first
= 0; m_active
= 0; m_autonarrow
= true >}
1854 | Ascii '
n'
when ctrl ->
1855 source#narrow m_qsearch
;
1857 then source#add_narrow_pattern m_qsearch
;
1858 postRedisplay
"outline ctrl-n";
1859 coe
{< m_first
= 0; m_active
= 0 >}
1861 | Ascii 'S'
when ctrl ->
1862 let active = source#calcactive
(getanchor
()) in
1863 let first = firstof m_first
active in
1864 postRedisplay
"outline ctrl-s";
1865 coe
{< m_first
= first; m_active
= active >}
1867 | Ascii 'u'
when ctrl ->
1868 postRedisplay
"outline ctrl-u";
1869 if m_autonarrow
&& nonemptystr m_qsearch
1871 ignore
(source#renarrow
);
1872 settext m_autonarrow
E.s;
1873 coe
{< m_first
= 0; m_active
= 0; m_qsearch
= E.s >}
1876 source#del_narrow_pattern
;
1877 let pattern = source#renarrow
in
1879 if emptystr
pattern then E.s else "Narrowed to " ^
pattern
1881 settext m_autonarrow
text;
1882 coe
{< m_first
= 0; m_active
= 0; m_qsearch
= E.s >}
1885 | Ascii '
l'
when ctrl ->
1886 let first = max
0 (m_active
- (fstate
.maxrows / 2)) in
1887 postRedisplay
"outline ctrl-l";
1888 coe
{< m_first
= first >}
1890 | Ascii '
\t'
when m_autonarrow
->
1891 if nonemptystr m_qsearch
1893 postRedisplay
"outline list view tab";
1894 source#add_narrow_pattern m_qsearch
;
1896 coe
{< m_qsearch
= E.s >}
1900 | Escape
when m_autonarrow
->
1901 if nonemptystr m_qsearch
1902 then source#add_narrow_pattern m_qsearch
;
1905 | Enter
when m_autonarrow
->
1906 if nonemptystr m_qsearch
1907 then source#add_narrow_pattern m_qsearch
;
1910 | (Ascii
_ | Code
_) when m_autonarrow
->
1911 let pattern = m_qsearch ^ toutf8
key in
1912 postRedisplay
"outlinelistview autonarrow add";
1913 source#narrow
pattern;
1914 settext true pattern;
1915 coe
{< m_first
= 0; m_active
= 0; m_qsearch
= pattern >}
1917 | Backspace
when m_autonarrow
->
1918 if emptystr m_qsearch
1921 let pattern = withoutlastutf8 m_qsearch
in
1922 postRedisplay
"outlinelistview autonarrow backspace";
1923 ignore
(source#renarrow
);
1924 source#narrow
pattern;
1925 settext true pattern;
1926 coe
{< m_first
= 0; m_active
= 0; m_qsearch
= pattern >}
1928 | Up
when ctrl -> navscroll (max
0 (m_first
- 1))
1931 navscroll (min
(source#getitemcount
- 1) (m_first
+ 1))
1933 | Up
-> navigate ~
-1
1934 | Down
-> navigate 1
1935 | Prior
-> navigate ~
-(fstate
.maxrows)
1936 | Next
-> navigate fstate
.maxrows
1942 postRedisplay
"outline ctrl right";
1943 {< m_pan
= m_pan
+ 1 >}
1946 if Wsi.withshift mask
1947 then self#nextcurlevel
1
1948 else self#updownlevel
1
1957 postRedisplay
"outline ctrl left";
1958 {< m_pan
= m_pan
- 1 >}
1961 if Wsi.withshift mask
1962 then self#nextcurlevel ~
-1
1963 else self#updownlevel ~
-1
1969 postRedisplay
"outline home";
1970 coe
{< m_first
= 0; m_active
= 0 >}
1973 let active = source#getitemcount
- 1 in
1974 let first = max
0 (active - fstate
.maxrows) in
1975 postRedisplay
"outline end";
1976 coe
{< m_active
= active; m_first
= first >}
1978 | Delete
|Escape
|Insert
|Enter
|Ascii
_|Code
_|Ctrl
_|Backspace
|Fn
_ ->
1982 let genhistoutlines () =
1984 |> List.sort
(fun (_, c1
, _, _, _, _) (_, c2
, _, _, _, _) ->
1985 compare c2
.lastvisit c1
.lastvisit
)
1986 |> List.map
(fun ((path
, c, _, _, _, origin
) as hist
) ->
1987 let path = if nonemptystr origin
then origin
else path in
1988 let base = mbtoutf8
@@ Filename.basename
path in
1989 (base ^
"\000" ^
c.title
, 1, Ohistory hist
)
1993 let gotohist (path, c, bookmarks
, x, anchor, origin
) =
1994 Config.save
leavebirdseye;
1995 state
.anchor <- anchor;
1996 state
.bookmarks
<- bookmarks
;
1997 state
.origin
<- origin
;
2000 let x0, y0, x1, y1 = conf
.trimfuzz
in
2001 wcmd "trimset %d %d %d %d %d" (btod conf
.trimmargins
) x0 y0 x1 y1;
2002 reshape ~firsttime
:true state
.winw state
.winh
;
2003 opendoc path origin
;
2007 let setcheckers enabled
=
2008 match !checkerstexid with
2009 | None
-> if enabled
then checkerstexid := Some
(makecheckers
())
2013 GlTex.delete_texture id
;
2014 checkerstexid := None
;
2018 let describe_layout layout =
2022 | l :: [] -> Printf.sprintf
"Page %d" (l.pageno+1)
2025 if a.pageno = b.pageno then Printf.sprintf
"%d" (a.pageno+1)
2026 else Printf.sprintf
"%d%s%d" (a.pageno+1)
2027 (if a.pageno+1 = b.pageno then ", " else Utf8syms.ellipsis
)
2030 let rec fold s la lb
= function
2031 | [] -> Printf.sprintf
"%s %s" s (rangestr la lb
)
2032 | l :: rest
when l.pageno = succ lb
.pageno -> fold s la
l rest
2033 | l :: rest
-> fold (s ^
" " ^
rangestr la lb ^
",") l l rest
2035 fold "Pages" l l rest
2038 let maxy = maxy () in
2041 else 100. *. (float state
.y /. float maxy)
2043 Printf.sprintf
"%s of %d [%.2f%%]" d state
.pagecount
percent
2046 let setpresentationmode v
=
2047 let n = page_of_y state
.y in
2048 state
.anchor <- (n, 0.0, 1.0);
2049 conf
.presentation
<- v
;
2050 if conf
.fitmodel
= FitPage
2051 then reqlayout conf
.angle conf
.fitmodel
;
2056 let btos b = if b then Utf8syms.radical
else E.s in
2057 let showextended = ref false in
2058 let showcolors = ref false in
2059 let leave mode
_ = state
.mode
<- mode
in
2062 val mutable m_l
= []
2063 val mutable m_a
= E.a
2064 val mutable m_prev_uioh
= nouioh
2065 val mutable m_prev_mode
= View
2067 inherit lvsourcebase
2069 method reset prev_mode prev_uioh
=
2070 m_a
<- Array.of_list
(List.rev m_l
);
2072 m_prev_mode
<- prev_mode
;
2073 m_prev_uioh
<- prev_uioh
;
2075 method int name get
set =
2081 try set (int_of_string
s)
2083 state
.text <- Printf.sprintf
"bad integer `%s': %s"
2087 let te = name ^
": ", E.s, None
, intentry, ondone, true in
2088 state
.mode
<- Textentry
(te, leave m_prev_mode
);
2092 method int_with_suffix name get
set =
2094 (name
, `intws get
, 1,
2098 try set (int_of_string_with_suffix
s)
2100 state
.text <- Printf.sprintf
"bad integer `%s': %s"
2105 name ^
": ", E.s, None
, intentry_with_suffix, ondone, true
2107 state
.mode
<- Textentry
(te, leave m_prev_mode
);
2111 method bool ?
(offset
=1) ?
(btos=btos) name get
set =
2113 (name
, `
bool (btos, get
), offset
, Action
(
2120 method color name get
set =
2122 (name
, `
color get
, 1,
2125 let invalid = (nan
, nan
, nan
) in
2128 try color_of_string
s
2130 state
.text <- Printf.sprintf
"bad color `%s': %s"
2137 let te = name ^
": ", E.s, None
, textentry, ondone, true in
2138 state
.text <- color_to_string
(get
());
2139 state
.mode
<- Textentry
(te, leave m_prev_mode
);
2143 method string name get
set =
2145 (name
, `
string get
, 1,
2148 let ondone s = set s in
2149 let te = name ^
": ", E.s, None
, textentry, ondone, true in
2150 state
.mode
<- Textentry
(te, leave m_prev_mode
);
2154 method colorspace name get
set =
2156 (name
, `
string get
, 1,
2161 inherit lvsourcebase
2164 m_active
<- CSTE.to_int conf
.colorspace
;
2167 method getitemcount
=
2168 Array.length
CSTE.names
2171 method exit ~uioh ~cancel ~
active ~
first ~pan
=
2172 ignore
(uioh
, first, pan
);
2173 if not cancel
then set active;
2175 method hasaction
_ = true
2179 let modehash = findkeyhash conf
"info" in
2180 coe
(new listview ~zebra
:false ~helpmode
:false
2181 ~
source ~trusted
:true ~
modehash)
2184 method paxmark name get
set =
2186 (name
, `
string get
, 1,
2191 inherit lvsourcebase
2194 m_active
<- MTE.to_int conf
.paxmark
;
2197 method getitemcount
= Array.length
MTE.names
2198 method getitem
n = (MTE.names
.(n), 0)
2199 method exit ~uioh ~cancel ~
active ~
first ~pan
=
2200 ignore
(uioh
, first, pan
);
2201 if not cancel
then set active;
2203 method hasaction
_ = true
2207 let modehash = findkeyhash conf
"info" in
2208 coe
(new listview ~zebra
:false ~helpmode
:false
2209 ~
source ~trusted
:true ~
modehash)
2212 method fitmodel name get
set =
2214 (name
, `
string get
, 1,
2219 inherit lvsourcebase
2222 m_active
<- FMTE.to_int conf
.fitmodel
;
2225 method getitemcount
= Array.length
FMTE.names
2226 method getitem
n = (FMTE.names
.(n), 0)
2227 method exit ~uioh ~cancel ~
active ~
first ~pan
=
2228 ignore
(uioh
, first, pan
);
2229 if not cancel
then set active;
2231 method hasaction
_ = true
2235 let modehash = findkeyhash conf
"info" in
2236 coe
(new listview ~zebra
:false ~helpmode
:false
2237 ~
source ~trusted
:true ~
modehash)
2240 method caption
s offset
=
2241 m_l
<- (s, `empty
, offset
, Noaction
) :: m_l
2243 method caption2
s f offset
=
2244 m_l
<- (s, `
string f, offset
, Noaction
) :: m_l
2246 method getitemcount
= Array.length m_a
2249 let tostr = function
2250 | `
int f -> string_of_int
(f ())
2251 | `intws
f -> string_with_suffix_of_int
(f ())
2253 | `
color f -> color_to_string
(f ())
2254 | `
bool (btos, f) -> btos (f ())
2257 let name, t
, offset
, _ = m_a
.(n) in
2258 ((let s = tostr t
in
2260 then Printf.sprintf
"%s\t%s" name s
2264 method exit ~uioh ~cancel ~
active ~
first ~pan
=
2269 match m_a
.(active) with
2270 | _, _, _, Action
f -> f uioh
2271 | _, _, _, Noaction
-> uioh
2282 method hasaction
n =
2284 | _, _, _, Action
_ -> true
2285 | _, _, _, Noaction
-> false
2287 initializer m_active
<- 1
2290 let rec fillsrc prevmode prevuioh
=
2291 let sep () = src#caption
E.s 0 in
2292 let colorp name get
set =
2294 (fun () -> color_to_string
(get
()))
2296 try set @@ color_of_string
v
2299 Printf.sprintf
"bad color `%s': %s" v @@ exntos exn
2302 let rgba name get
set =
2304 (fun () -> get
() |> rgba_to_string
)
2306 try set @@ rgba_of_string
v
2309 Printf.sprintf
"bad color `%s': %s" v @@ exntos exn
2312 let oldmode = state
.mode
in
2313 let birdseye = isbirdseye state
.mode
in
2315 src#caption
(if birdseye then "Setup (Bird's eye)" else "Setup") 0;
2317 src#
bool "presentation mode"
2318 (fun () -> conf
.presentation
)
2319 (fun v -> setpresentationmode v);
2321 src#
bool "ignore case in searches"
2322 (fun () -> conf
.icase
)
2323 (fun v -> conf
.icase
<- v);
2326 (fun () -> conf
.preload)
2327 (fun v -> conf
.preload <- v);
2329 src#
bool "highlight links"
2330 (fun () -> conf
.hlinks
)
2331 (fun v -> conf
.hlinks
<- v);
2333 src#
bool "under info"
2334 (fun () -> conf
.underinfo
)
2335 (fun v -> conf
.underinfo
<- v);
2337 src#fitmodel
"fit model"
2338 (fun () -> FMTE.to_string conf
.fitmodel
)
2339 (fun v -> reqlayout conf
.angle
(FMTE.of_int
v));
2341 src#
bool "trim margins"
2342 (fun () -> conf
.trimmargins
)
2343 (fun v -> settrim v conf
.trimfuzz
; fillsrc prevmode prevuioh
);
2346 src#
int "inter-page space"
2347 (fun () -> conf
.interpagespace
)
2349 conf
.interpagespace
<- n;
2350 docolumns conf
.columns
;
2352 match state
.layout with
2354 | l :: _ -> l.pageno, l.pagey
2356 state
.maxy <- calcheight
();
2357 let y = getpagey
pageno in
2358 gotoxy state
.x (y + py)
2362 (fun () -> conf
.pagebias
)
2363 (fun v -> conf
.pagebias
<- v);
2365 src#
int "scroll step"
2366 (fun () -> conf
.scrollstep
)
2367 (fun n -> conf
.scrollstep
<- n);
2369 src#
int "horizontal scroll step"
2370 (fun () -> conf
.hscrollstep
)
2371 (fun v -> conf
.hscrollstep
<- v);
2373 src#
int "auto scroll step"
2375 match state
.autoscroll
with
2377 | _ -> conf
.autoscrollstep
)
2379 let n = boundastep state
.winh
n in
2380 if state
.autoscroll
<> None
2381 then state
.autoscroll
<- Some
n;
2382 conf
.autoscrollstep
<- n);
2385 (fun () -> truncate
(conf
.zoom *. 100.))
2386 (fun v -> pivotzoom ((float v) /. 100.));
2389 (fun () -> conf
.angle
)
2390 (fun v -> reqlayout v conf
.fitmodel
);
2392 src#
int "scroll bar width"
2393 (fun () -> conf
.scrollbw
)
2396 reshape state
.winw state
.winh
;
2399 src#
int "scroll handle height"
2400 (fun () -> conf
.scrollh
)
2401 (fun v -> conf
.scrollh
<- v;);
2403 src#
int "thumbnail width"
2404 (fun () -> conf
.thumbw
)
2406 conf
.thumbw
<- min
4096 v;
2409 leavebirdseye beye
false;
2416 let mode = state
.mode in
2417 src#
string "columns"
2419 match conf
.columns
with
2421 | Cmulti
(multi
, _) -> multicolumns_to_string multi
2422 | Csplit
(count
, _) -> "-" ^ string_of_int count
2425 let n, a, b = multicolumns_of_string
v in
2426 setcolumns mode n a b);
2429 src#caption
"Pixmap cache" 0;
2430 src#int_with_suffix
"size (advisory)"
2431 (fun () -> conf
.memlimit
)
2432 (fun v -> conf
.memlimit
<- v);
2436 Printf.sprintf
"%s bytes, %d tiles"
2437 (string_with_suffix_of_int state
.memused
)
2438 (Hashtbl.length state
.tilemap
)) 1;
2441 src#caption
"Layout" 0;
2442 src#caption2
"Dimension"
2443 (fun () -> Printf.sprintf
"%dx%d (virtual %dx%d)"
2444 state
.winw state
.winh
2448 then src#caption2
"Position" (fun () ->
2449 Printf.sprintf
"%dx%d" state
.x state
.y
2451 else src#caption2
"Position" (fun () -> describe_layout state
.layout) 1;
2454 src#
bool ~offset
:0 ~
btos:(fun v -> if v then "(on)" else "(off)")
2455 "Save these parameters as global defaults at exit"
2456 (fun () -> conf
.bedefault
)
2457 (fun v -> conf
.bedefault
<- v);
2460 let btos b = Utf8syms.(if b then lguillemet
else rguillemet
) in
2461 src#
bool ~offset
:0 ~
btos "Extended parameters"
2462 (fun () -> !showextended)
2463 (fun v -> showextended := v; fillsrc prevmode prevuioh
);
2467 (fun () -> conf
.checkers
)
2468 (fun v -> conf
.checkers
<- v; setcheckers v);
2469 src#
bool "update cursor"
2470 (fun () -> conf
.updatecurs
)
2471 (fun v -> conf
.updatecurs
<- v);
2472 src#
bool "scroll-bar on the left"
2473 (fun () -> conf
.leftscroll
)
2474 (fun v -> conf
.leftscroll
<- v);
2476 (fun () -> conf
.verbose
)
2477 (fun v -> conf
.verbose
<- v);
2478 src#
bool "invert colors"
2479 (fun () -> conf
.invert
)
2480 (fun v -> conf
.invert
<- v);
2482 (fun () -> conf
.maxhfit
)
2483 (fun v -> conf
.maxhfit
<- v);
2485 (fun () -> conf
.pax
!= None
)
2488 then conf
.pax
<- Some
(now
())
2489 else conf
.pax
<- None
);
2490 src#
string "uri launcher"
2491 (fun () -> conf
.urilauncher
)
2492 (fun v -> conf
.urilauncher
<- v);
2493 src#
string "path launcher"
2494 (fun () -> conf
.pathlauncher
)
2495 (fun v -> conf
.pathlauncher
<- v);
2496 src#
string "tile size"
2497 (fun () -> Printf.sprintf
"%dx%d" conf
.tilew conf
.tileh
)
2500 let w, h = Scanf.sscanf
v "%dx%d" (fun w h -> w, h) in
2501 conf
.tilew
<- max
64 w;
2502 conf
.tileh
<- max
64 h;
2505 state
.text <- Printf.sprintf
"bad tile size `%s': %s"
2508 src#
int "texture count"
2509 (fun () -> conf
.texcount
)
2512 then conf
.texcount
<- v
2513 else impmsg "failed to set texture count please retry later"
2515 src#
int "slice height"
2516 (fun () -> conf
.sliceheight
)
2518 conf
.sliceheight
<- v;
2519 wcmd "sliceh %d" conf
.sliceheight
;
2521 src#
int "anti-aliasing level"
2522 (fun () -> conf
.aalevel
)
2524 conf
.aalevel
<- bound
v 0 8;
2525 state
.anchor <- getanchor
();
2526 opendoc state
.path state
.password;
2528 src#
string "page scroll scaling factor"
2529 (fun () -> string_of_float conf
.pgscale)
2531 try conf
.pgscale <- float_of_string
v
2534 Printf.sprintf
"bad page scroll scaling factor `%s': %s" v
2537 src#
int "ui font size"
2538 (fun () -> fstate
.fontsize
)
2539 (fun v -> setfontsize (bound
v 5 100));
2540 src#
int "hint font size"
2541 (fun () -> conf
.hfsize
)
2542 (fun v -> conf
.hfsize
<- bound
v 5 100);
2543 src#
string "trim fuzz"
2544 (fun () -> irect_to_string conf
.trimfuzz
)
2547 conf
.trimfuzz
<- irect_of_string
v;
2549 then settrim true conf
.trimfuzz
;
2551 state
.text <- Printf.sprintf
"bad irect `%s': %s" v
2554 src#
string "selection command"
2555 (fun () -> conf
.selcmd
)
2556 (fun v -> conf
.selcmd
<- v);
2557 src#
string "synctex command"
2558 (fun () -> conf
.stcmd
)
2559 (fun v -> conf
.stcmd
<- v);
2560 src#
string "pax command"
2561 (fun () -> conf
.paxcmd
)
2562 (fun v -> conf
.paxcmd
<- v);
2563 src#
string "ask password command"
2564 (fun () -> conf
.passcmd)
2565 (fun v -> conf
.passcmd <- v);
2566 src#
string "save path command"
2567 (fun () -> conf
.savecmd
)
2568 (fun v -> conf
.savecmd
<- v);
2569 src#colorspace
"color space"
2570 (fun () -> CSTE.to_string conf
.colorspace
)
2572 conf
.colorspace
<- CSTE.of_int
v;
2576 src#paxmark
"pax mark method"
2577 (fun () -> MTE.to_string conf
.paxmark
)
2578 (fun v -> conf
.paxmark
<- MTE.of_int
v);
2582 (fun () -> conf
.usepbo
)
2583 (fun v -> conf
.usepbo
<- v);
2584 src#
bool "mouse wheel scrolls pages"
2585 (fun () -> conf
.wheelbypage
)
2586 (fun v -> conf
.wheelbypage
<- v);
2587 src#
bool "open remote links in a new instance"
2588 (fun () -> conf
.riani
)
2589 (fun v -> conf
.riani
<- v);
2590 src#
bool "edit annotations inline"
2591 (fun () -> conf
.annotinline
)
2592 (fun v -> conf
.annotinline
<- v);
2593 src#
bool "coarse positioning in presentation mode"
2594 (fun () -> conf
.coarseprespos
)
2595 (fun v -> conf
.coarseprespos
<- v);
2596 src#
bool "use document CSS"
2597 (fun () -> conf
.usedoccss
)
2599 conf
.usedoccss
<- v;
2600 state
.anchor <- getanchor
();
2601 opendoc state
.path state
.password;
2603 src#
bool ~
btos "colors"
2604 (fun () -> !showcolors)
2605 (fun v -> showcolors := v; fillsrc prevmode prevuioh
);
2608 colorp " background"
2609 (fun () -> conf
.bgcolor
)
2610 (fun v -> conf
.bgcolor
<- v);
2613 (fun () -> conf
.papercolor
)
2615 conf
.papercolor
<- v;
2616 setpapercolor conf
.papercolor
;
2620 (fun () -> conf
.sbarcolor
)
2621 (fun v -> conf
.sbarcolor
<- v);
2622 rgba " scrollbar handle"
2623 (fun () -> conf
.sbarhndlcolor
)
2624 (fun v -> conf
.sbarhndlcolor
<- v);
2625 rgba " texture color"
2626 (fun () -> conf
.texturecolor
)
2628 GlTex.env
(`
color v);
2629 conf
.texturecolor
<- v;
2635 src#caption
"Document" 0;
2636 List.iter
(fun (_, s) -> src#caption
s 1) state
.docinfo
;
2637 src#caption2
"Pages" (fun () -> string_of_int state
.pagecount
) 1;
2638 src#caption2
"Dimensions"
2639 (fun () -> string_of_int
(List.length state
.pdims
)) 1;
2640 if nonemptystr conf
.css
2641 then src#caption2
"CSS" (fun () -> conf
.css
) 1;
2645 src#caption
"Trimmed margins" 0;
2646 src#caption2
"Dimensions"
2647 (fun () -> string_of_int
(List.length state
.pdims
)) 1;
2651 src#caption
"OpenGL" 0;
2652 src#caption
(Printf.sprintf
"Vendor\t%s" (GlMisc.get_string `vendor
)) 1;
2653 src#caption
(Printf.sprintf
"Renderer\t%s" (GlMisc.get_string `renderer
)) 1;
2656 src#caption
"Location" 0;
2657 if nonemptystr state
.origin
2658 then src#caption
("Orign\t" ^ mbtoutf8 state
.origin
) 1;
2659 src#caption
("Path\t" ^ mbtoutf8 state
.path) 1;
2661 src#reset prevmode prevuioh
;
2666 let prevmode = state
.mode
2667 and prevuioh
= state
.uioh in
2668 fillsrc prevmode prevuioh
;
2669 let source = (src :> lvsource
) in
2670 let modehash = findkeyhash conf
"info" in
2673 inherit listview ~zebra
:false ~helpmode
:false
2674 ~
source ~trusted
:true ~
modehash as super
2675 val mutable m_prevmemused
= 0
2676 method! infochanged
= function
2678 if m_prevmemused
!= state
.memused
2680 m_prevmemused
<- state
.memused
;
2681 postRedisplay
"memusedchanged";
2683 | Pdim
-> postRedisplay
"pdimchanged"
2684 | Docinfo
-> fillsrc prevmode prevuioh
2686 method! key key mask
=
2687 if not
(Wsi.withctrl mask
)
2689 match [@warning
"-4"] Wsi.kc2kt
key with
2690 | Keys.Left
-> coe
(self#updownlevel ~
-1)
2691 | Keys.Right
-> coe
(self#updownlevel
1)
2692 | _ -> super#
key key mask
2693 else super#
key key mask
2695 postRedisplay
"info";
2702 inherit lvsourcebase
2703 method getitemcount
= Array.length state
.help
2705 let s, l, _ = state
.help
.(n) in
2708 method exit ~
uioh ~cancel ~
active ~
first ~pan
=
2712 match state
.help
.(active) with
2713 | _, _, Action
f -> Some
(f uioh)
2714 | _, _, Noaction
-> Some
uioh
2723 method hasaction
n =
2724 match state
.help
.(n) with
2725 | _, _, Action
_ -> true
2726 | _, _, Noaction
-> false
2733 let modehash = findkeyhash conf
"help" in
2735 state
.uioh <- coe
(new listview
2736 ~zebra
:false ~helpmode
:true
2737 ~
source ~trusted
:true ~
modehash);
2738 postRedisplay
"help";
2744 inherit lvsourcebase
2745 val mutable m_items
= E.a
2747 method getitemcount
= 1 + Array.length m_items
2752 else m_items
.(n-1), 0
2754 method exit ~
uioh ~cancel ~
active ~
first ~pan
=
2759 then Buffer.clear state
.errmsgs
;
2766 method hasaction
n =
2770 state
.newerrmsgs
<- false;
2771 let l = Str.split
Utils.Re.crlf
(Buffer.contents state
.errmsgs
) in
2772 m_items
<- Array.of_list
l
2781 let source = (msgsource :> lvsource
) in
2782 let modehash = findkeyhash conf
"listview" in
2785 inherit listview ~zebra
:false ~helpmode
:false
2786 ~
source ~trusted
:false ~
modehash as super
2789 then msgsource#reset
;
2792 postRedisplay
"msgs";
2796 let editor = getenvdef
"EDITOR" E.s in
2800 let tmppath = Filename.temp_file
"llpp" "note" in
2803 let oc = open_out
tmppath in
2807 let execstr = editor ^
" " ^
tmppath in
2809 match spawn
execstr [] with
2811 impmsg "spawn(%S) failed: %s" execstr @@ exntos exn
;
2814 match Unix.waitpid
[] pid
with
2816 impmsg "waitpid(%d) failed: %s" pid
@@ exntos exn
;
2820 | Unix.WEXITED
0 -> filecontents
tmppath
2822 impmsg "editor process(%s) exited abnormally: %d" execstr n;
2824 | Unix.WSIGNALED
n ->
2825 impmsg "editor process(%s) was killed by signal %d" execstr n;
2827 | Unix.WSTOPPED
n ->
2828 impmsg "editor(%s) process was stopped by signal %d" execstr n;
2831 match Unix.unlink
tmppath with
2833 impmsg "failed to ulink %S: %s" tmppath @@ exntos exn
;
2838 let enterannotmode opaque slinkindex
=
2841 inherit lvsourcebase
2842 val mutable m_text
= E.s
2843 val mutable m_items
= E.a
2845 method getitemcount
= Array.length m_items
2848 let label, _func
= m_items
.(n) in
2851 method exit ~
uioh ~cancel ~
active ~
first ~pan
=
2852 ignore
(uioh, first, pan
);
2855 let _label, func
= m_items
.(active) in
2860 method hasaction
n = nonemptystr
@@ fst m_items
.(n)
2863 let rec split accu b i
=
2865 if p = String.length
s
2866 then (String.sub s b (p-b), fun () -> ()) :: accu
2868 if (i
> 70 && s.[p] = ' '
) || s.[p] = '
\r'
|| s.[p] = '
\n'
2870 let ss = if i
= 0 then E.s else String.sub s b i
in
2871 split ((ss, fun () -> ())::accu) (p+1) 0
2872 else split accu b (i
+1)
2875 wcmd "freepage %s" (~
> opaque);
2877 Hashtbl.fold (fun key opaque'
accu ->
2878 if opaque'
= opaque'
2879 then key :: accu else accu) state
.pagemap
[]
2881 List.iter
(Hashtbl.remove state
.pagemap
) keys;
2883 gotoxy state
.x state
.y
2886 delannot
opaque slinkindex
;
2889 let edit inline
() =
2894 modannot
opaque slinkindex
s;
2900 let mode = state
.mode in
2903 ("annotation: ", m_text
, None
, textentry, update, true),
2904 fun _ -> state
.mode <- mode
2909 let s = getusertext m_text
in
2914 ( "[Copy]", fun () -> selstring conf
.selcmd m_text
)
2915 :: ("[Delete]", dele)
2916 :: ("[Edit]", edit conf
.annotinline
)
2917 :: (E.s, fun () -> ())
2918 :: split [] 0 0 |> List.rev
|> Array.of_list
2925 let s = getannotcontents
opaque slinkindex
in
2928 let source = (msgsource :> lvsource
) in
2929 let modehash = findkeyhash conf
"listview" in
2930 state
.uioh <- coe
(object
2931 inherit listview ~zebra
:false ~helpmode
:false
2932 ~
source ~trusted
:false ~
modehash
2934 postRedisplay
"enterannotmode";
2937 let gotoremote spec
=
2938 let filename, dest
= splitatchar spec '#'
in
2939 let getpath filename =
2941 if nonemptystr
filename
2943 if Filename.is_relative
filename
2945 let dir = Filename.dirname state
.path in
2947 if Filename.is_implicit
dir
2948 then Filename.concat
(Sys.getcwd
()) dir
2951 Filename.concat
dir filename
2955 if Sys.file_exists
path
2959 let path = getpath filename in
2963 let cmd = Lazy.force_val lcmd
in
2964 match spawn
cmd with
2966 | exception exn
-> dolog
"failed to execute `%s': %s" cmd @@ exntos exn
2968 let anchor = getanchor
() in
2969 let ranchor = state
.path, state
.password, anchor, state
.origin
in
2970 state
.origin
<- E.s;
2971 state
.ranchors
<- ranchor :: state
.ranchors
;
2974 if substratis spec
0 "page="
2976 match Scanf.sscanf spec
"page=%d" (fun n -> n) with
2978 state
.anchor <- (pageno, 0.0, 0.0);
2979 dospawn @@ lazy (Printf.sprintf
"%s -page %d %S" !selfexec pageno path);
2981 adderrfmt "error parsing remote destination" "page: %s" @@ exntos exn
2983 state
.nameddest
<- dest
;
2984 dospawn @@ lazy (!selfexec ^
" " ^
path ^
" -dest " ^ dest
)
2988 let gotounder = function
2989 | Ulinkuri
s when isexternallink
s ->
2990 if substratis
s 0 "file://"
2991 then gotoremote @@ String.sub s 7 (String.length
s - 7)
2992 else Help.gotouri conf
.urilauncher
s
2994 let pageno, x, y = uritolocation
s in
2996 gotopagexy pageno x y
2997 | Utext
_ | Unone
-> ()
2998 | Uannotation
(opaque, slinkindex
) -> enterannotmode opaque slinkindex
3001 let gotooutline (_, _, kind
) =
3004 | Oanchor
((pageno, y, _) as anchor) ->
3007 getanchory (if conf
.presentation
then (pageno, y, 1.0) else anchor)
3008 | Ouri
uri -> gotounder (Ulinkuri
uri)
3009 | Olaunch
cmd -> error
"gotounder (Ulaunch %S)" cmd
3010 | Oremote
(remote
, pageno) ->
3011 error
"gotounder (Uremote (%S,%d) )" remote
pageno
3012 | Ohistory hist
-> gotohist hist
3013 | Oremotedest
(path, dest
) ->
3014 error
"gotounder (Uremotedest (%S, %S))" path dest
3017 class outlinesoucebase fetchoutlines
= object (self
)
3018 inherit lvsourcebase
3019 val mutable m_items
= E.a
3020 val mutable m_minfo
= E.a
3021 val mutable m_orig_items
= E.a
3022 val mutable m_orig_minfo
= E.a
3023 val mutable m_narrow_patterns
= []
3024 val mutable m_gen
= -1
3026 method getitemcount
= Array.length m_items
3029 let s, n, _ = m_items
.(n) in
3032 method exit ~
(uioh:uioh) ~cancel ~
active ~
(first:int) ~pan
: uioh option =
3033 ignore
(uioh, first);
3035 if m_narrow_patterns
= []
3036 then m_orig_items
, m_orig_minfo
3037 else m_items
, m_minfo
3044 gotooutline m_items
.(active);
3052 method hasaction
(_:int) = true
3055 if Array.length m_items
!= Array.length m_orig_items
3058 match m_narrow_patterns
with
3060 | many
-> String.concat
Utf8syms.ellipsis
(List.rev many
)
3062 "Narrowed to " ^
s ^
" (ctrl-u to restore)"
3066 match m_narrow_patterns
with
3069 | head
:: _ -> Utf8syms.ellipsis ^ head
3071 method narrow
pattern =
3072 match Str.regexp_case_fold
pattern with
3075 let rec loop accu minfo
n =
3078 m_items
<- Array.of_list
accu;
3079 m_minfo
<- Array.of_list minfo
;
3082 let (s, _, _) as o = m_items
.(n) in
3084 match Str.search_forward re
s 0 with
3085 | exception Not_found
-> accu, minfo
3086 | first -> o :: accu, (first, Str.match_end
()) :: minfo
3088 loop accu minfo
(n-1)
3090 loop [] [] (Array.length m_items
- 1)
3092 method! getminfo
= m_minfo
3095 m_orig_items
<- fetchoutlines
();
3096 m_minfo
<- m_orig_minfo
;
3097 m_items
<- m_orig_items
3099 method add_narrow_pattern
pattern =
3100 m_narrow_patterns
<- pattern :: m_narrow_patterns
3102 method del_narrow_pattern
=
3103 match m_narrow_patterns
with
3104 | _ :: rest
-> m_narrow_patterns
<- rest
3109 match m_narrow_patterns
with
3110 | pattern :: [] -> self#narrow
pattern; pattern
3112 List.fold_left
(fun accu pattern ->
3113 self#narrow
pattern;
3114 pattern ^
Utf8syms.ellipsis ^
accu) E.s list
3116 method calcactive
(_:anchor) = 0
3118 method reset
anchor items =
3119 if state
.gen
!= m_gen
3121 m_orig_items
<- items;
3123 m_narrow_patterns
<- [];
3125 m_orig_minfo
<- E.a;
3129 if items != m_orig_items
3131 m_orig_items
<- items;
3132 if m_narrow_patterns
== []
3133 then m_items
<- items;
3136 let active = self#calcactive
anchor in
3138 m_first
<- firstof m_first
active
3142 let outlinesource fetchoutlines
=
3144 inherit outlinesoucebase fetchoutlines
3145 method! calcactive
anchor =
3146 let rely = getanchory anchor in
3147 let rec loop n best bestd
=
3148 if n = Array.length m_items
3151 let _, _, kind
= m_items
.(n) in
3154 let orely = getanchory anchor in
3155 let d = abs
(orely - rely) in
3158 else loop (n+1) best bestd
3159 | Onone
| Oremote
_ | Olaunch
_
3160 | Oremotedest
_ | Ouri
_ | Ohistory
_ ->
3161 loop (n+1) best bestd
3167 let enteroutlinemode, enterbookmarkmode
, enterhistmode
=
3168 let fetchoutlines sourcetype
() =
3169 match sourcetype
with
3170 | `bookmarks
-> Array.of_list state
.bookmarks
3171 | `outlines
-> state
.outlines
3172 | `history
-> genhistoutlines () |> Array.of_list
3174 let so = outlinesource (fetchoutlines `outlines
) in
3175 let sb = outlinesource (fetchoutlines `bookmarks
) in
3176 let sh = outlinesource (fetchoutlines `history
) in
3177 let mkselector sourcetype
source =
3179 let outlines = fetchoutlines sourcetype
() in
3180 if Array.length
outlines = 0
3181 then showtext ' ' errmsg
3184 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3185 let anchor = getanchor
() in
3186 source#reset
anchor outlines;
3187 state
.text <- source#greetmsg
;
3189 coe
(new outlinelistview ~zebra
:(sourcetype
=`history
) ~
source);
3190 postRedisplay
"enter selector";
3194 let mkenter sourcetype errmsg
s = fun () -> mkselector sourcetype
s errmsg
in
3195 ( mkenter `
outlines "document has no outline" so
3196 , mkenter `bookmarks
"document has no bookmarks (yet)" sb
3197 , mkenter `history
"history is empty" sh )
3200 let quickbookmark ?title
() =
3201 match state
.layout with
3208 let tm = localtime
(now
()) in
3210 "Quick (page %d) (bookmarked on %02d/%02d/%d at %02d:%02d)"
3212 tm.tm_mday
(tm.tm_mon
+1) (tm.tm_year
+1900) tm.tm_hour
tm.tm_min
3214 | Some
title -> title
3216 state
.bookmarks
<- (title, 0, Oanchor
(getanchor1
l)) :: state
.bookmarks
3219 let setautoscrollspeed step goingdown
=
3220 let incr = max
1 ((abs step
) / 2) in
3221 let incr = if goingdown
then incr else -incr in
3222 let astep = boundastep state
.winh
(step
+ incr) in
3223 state
.autoscroll
<- Some
astep;
3227 match conf
.columns
with
3229 | Csingle
_ | Cmulti
_ -> state
.x != 0 || conf
.zoom > 1.0
3232 let panbound x = bound
x (-state
.w) state
.winw
;;
3234 let existsinrow pageno (columns
, coverA
, coverB
) p =
3235 let last = ((pageno - coverA
) mod columns
) + columns
in
3236 let rec any = function
3239 if l.pageno = coverA
- 1 || l.pageno = state
.pagecount
- coverB
3243 then (if l.pageno = last then false else any rest
)
3251 match state
.layout with
3253 let pageno = page_of_y state
.y in
3254 gotoxy state
.x (getpagey
(pageno+1))
3256 match conf
.columns
with
3258 if conf
.presentation
&& rest
== [] && l.pageh
> l.pagey + l.pagevh
3260 let y = clamp (pgscale state
.winh
) in
3263 let pageno = min
(l.pageno+1) (state
.pagecount
-1) in
3264 gotoxy state
.x (getpagey
pageno)
3265 | Cmulti
((c, _, _) as cl
, _) ->
3266 if conf
.presentation
3267 && (existsinrow l.pageno cl
3268 (fun l -> l.pageh
> l.pagey + l.pagevh))
3270 let y = clamp (pgscale state
.winh
) in
3273 let pageno = min
(l.pageno+c) (state
.pagecount
-1) in
3274 gotoxy state
.x (getpagey
pageno)
3276 if l.pageno < state
.pagecount
- 1 || l.pagecol
< n - 1
3278 let pagey, pageh
= getpageyh
l.pageno in
3279 let pagey = pagey + pageh
* l.pagecol
in
3280 let ips = if l.pagecol
= 0 then 0 else conf
.interpagespace
in
3281 gotoxy state
.x (pagey + pageh
+ ips)
3285 match state
.layout with
3287 let pageno = page_of_y state
.y in
3288 gotoxy state
.x (getpagey
(pageno-1))
3290 match conf
.columns
with
3292 if conf
.presentation
&& l.pagey != 0
3293 then gotoxy state
.x (clamp (pgscale ~
-(state
.winh
)))
3295 let pageno = max
0 (l.pageno-1) in
3296 gotoxy state
.x (getpagey
pageno)
3297 | Cmulti
((c, _, coverB
) as cl
, _) ->
3298 if conf
.presentation
&&
3299 (existsinrow l.pageno cl
(fun l -> l.pagey != 0))
3300 then gotoxy state
.x (clamp (pgscale ~
-(state
.winh
)))
3303 if l.pageno = state
.pagecount
- coverB
3307 let pageno = max
0 (l.pageno-decr) in
3308 gotoxy state
.x (getpagey
pageno)
3316 let pageno = max
0 (l.pageno-1) in
3317 let pagey, pageh
= getpageyh
pageno in
3320 let pagey, pageh
= getpageyh
l.pageno in
3321 pagey + pageh
* (l.pagecol
-1) - conf
.interpagespace
3327 if emptystr conf
.savecmd
3328 then adderrmsg "savepath-command is empty"
3329 "don't know where to save modified document"
3331 let savecmd = Str.global_replace
Utils.Re.percent state
.path conf
.savecmd in
3335 adderrfmt savecmd "failed to produce path to the saved copy: %s" exn
)
3340 let tmp = path ^
".tmp" in
3342 Unix.rename
tmp path;
3345 let viewkeyboard key mask
=
3347 let mode = state
.mode in
3348 state
.mode <- Textentry
(te, fun _ -> state
.mode <- mode);
3351 postRedisplay
"view:enttext"
3353 let ctrl = Wsi.withctrl mask
in
3355 match Wsi.kc2kt
key with
3356 | Ascii 'S'
-> state
.slideshow
<- state
.slideshow
lxor 1
3358 | Ascii 'Q'
-> exit
0
3362 match List.rev state
.rects
with
3364 | (pageno, _, (_, y0, _, y1, _, y2
, _, y3
)) :: _ ->
3365 f pageno (y0, y1, y2
, y3
)
3366 and yminmax
(y0, y1, y2
, y3
) =
3367 let ym = min
y0 y1 |> min y2
|> min y3
|> truncate
in
3368 let yM = max
y0 y1 |> max y2
|> max y3
|> truncate
in
3371 let ondone msg
= state
.text <- msg
3373 match [@warning
"-4"] k
with
3376 let ym, yM = yminmax ys
in
3377 let hh = (yM - ym)/2 in
3378 gotopage1 pageno (ym + hh - state
.winh
/2)
3384 let ym, _ = yminmax ys
in
3391 let _, yM = yminmax ys
in
3392 gotopage1 pageno (yM - state
.winh
)
3398 enttext (": ", E.s, None
, zmod state
.mode, ondone, true)
3401 if hasunsavedchanges
()
3405 if conf
.angle
mod 360 = 0 && not
(isbirdseye state
.mode)
3408 match state
.lnava
with
3409 | None
-> LinkNav
(Ltgendir
0)
3410 | Some
pn -> LinkNav
(Ltexact
pn)
3412 gotoxy state
.x state
.y;
3414 else impmsg "keyboard link navigation does not work under rotation"
3416 | Escape
| Ascii 'q'
->
3417 begin match state
.mstate
with
3420 postRedisplay
"kill rect";
3423 | Mscrolly
| Mscrollx
3426 begin match state
.mode with
3429 | Ltexact pl
-> state
.lnava
<- Some pl
3430 | Ltgendir
_ | Ltnotready
_ -> state
.lnava
<- None
3433 postRedisplay
"esc leave linknav"
3434 | Birdseye
_ | Textentry
_ | View
->
3435 match state
.ranchors
with
3437 | (path, password, anchor, origin
) :: rest
->
3438 state
.ranchors
<- rest
;
3439 state
.anchor <- anchor;
3440 state
.origin
<- origin
;
3441 state
.nameddest
<- E.s;
3442 opendoc path password
3448 gotoxy state
.x (getnav ~
-1)
3450 | Ascii '
o'
-> enteroutlinemode ()
3451 | Ascii 'H'
-> enterhistmode
()
3456 Hashtbl.iter
(fun _ opaque ->
3458 Hashtbl.clear state
.prects
) state
.pagemap
;
3459 postRedisplay
"dehighlight";
3461 | Ascii
(('
/'
| '?'
) as c) ->
3462 let ondone isforw
s =
3463 cbput state
.hists
.pat
s;
3464 state
.searchpattern
<- s;
3467 let s = String.make
1 c in
3468 enttext (s, E.s, Some
(onhist state
.hists
.pat
),
3469 textentry, ondone (c = '
/'
), true)
3471 | Ascii '
+'
| Ascii '
='
when ctrl ->
3472 let incr = if conf
.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
3473 pivotzoom (conf
.zoom +. incr)
3478 try int_of_string
s with exn
->
3480 Printf.sprintf
"bad integer `%s': %s" s @@ exntos exn
;
3486 state
.text <- "page bias is now " ^ string_of_int
n;
3489 enttext ("page bias: ", E.s, None
, intentry, ondone, true)
3491 | Ascii '
-'
when ctrl ->
3492 let decr = if conf
.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
3493 pivotzoom (max
0.01 (conf
.zoom -. decr))
3496 let ondone msg
= state
.text <- msg
in
3497 enttext ("option: ", E.s, None
,
3498 optentry state
.mode, ondone, true)
3500 | Ascii '
0'
when ctrl ->
3502 then gotoxy 0 state
.y
3505 | Ascii
('
1'
|'
2'
as c) when ctrl && conf
.fitmodel
!= FitPage
->
3507 match conf
.columns
with
3508 | Csingle
_ | Cmulti
_ -> 1
3509 | Csplit
(n, _) -> n
3511 let h = state
.winh
-
3512 conf
.interpagespace
lsl (if conf
.presentation
then 1 else 0)
3514 let zoom = zoomforh state
.winw
h 0 cols in
3515 if zoom > 0.0 && (c = '
2'
|| zoom < 1.0)
3518 | Ascii '
3'
when ctrl ->
3520 match conf
.fitmodel
with
3521 | FitWidth
-> FitProportional
3522 | FitProportional
-> FitPage
3523 | FitPage
-> FitWidth
3525 state
.text <- "fit model: " ^
FMTE.to_string
fm;
3526 reqlayout conf
.angle
fm
3528 | Ascii '
4'
when ctrl ->
3529 let zoom = getmaxw
() /. float state
.winw
in
3530 if zoom > 0.0 then setzoom zoom
3532 | Fn
9 | Ascii '
9'
when ctrl -> togglebirdseye ()
3534 | Ascii
('
0'
..'
9'
as c) when not
ctrl ->
3537 try int_of_string
s with exn
->
3538 state
.text <- Printf.sprintf
"bad integer `%s': %s" s @@ exntos exn
;
3544 cbput state
.hists
.pag
(string_of_int
n);
3545 gotopage1 (n + conf
.pagebias
- 1) 0;
3548 let pageentry text = function [@warning
"-4"]
3549 | Keys.Ascii '
g'
-> TEdone
text
3550 | key -> intentry text key
3552 let text = String.make
1 c in
3553 enttext (":", text, Some
(onhist state
.hists
.pag
),
3554 pageentry, ondone, true)
3557 conf
.scrollb
<- if conf
.scrollb
= 0 then (scrollbvv
lor scrollbhv
) else 0;
3558 postRedisplay
"toggle scrollbar";
3561 state
.bzoom
<- not state
.bzoom
;
3563 showtext ' '
("block zoom " ^
if state
.bzoom
then "on" else "off")
3566 conf
.hlinks
<- not conf
.hlinks
;
3567 state
.text <- "highlightlinks " ^
if conf
.hlinks
then "on" else "off";
3568 postRedisplay
"toggle highlightlinks";
3571 if conf
.angle
mod 360 = 0
3573 state
.glinks
<- true;
3574 let mode = state
.mode in
3577 ("goto: ", E.s, None
, linknentry, linknact gotounder, false),
3579 state
.glinks
<- false;
3583 postRedisplay
"view:linkent(F)"
3585 else impmsg "hint mode does not work under rotation"
3588 state
.glinks
<- true;
3589 let mode = state
.mode in
3592 ("copy: ", E.s, None
, linknentry,
3593 linknact (fun under ->
3594 selstring conf
.selcmd
(undertext under)), false),
3596 state
.glinks
<- false;
3600 postRedisplay
"view:linkent"
3603 begin match state
.autoscroll
with
3605 conf
.autoscrollstep
<- step
;
3606 state
.autoscroll
<- None
3608 state
.autoscroll
<- Some conf
.autoscrollstep
;
3609 state
.slideshow
<- state
.slideshow
land lnot
2
3612 | Ascii '
p'
when ctrl ->
3613 launchpath () (* XXX where do error messages go? *)
3616 setpresentationmode (not conf
.presentation
);
3617 showtext ' '
("presentation mode " ^
3618 if conf
.presentation
then "on" else "off");
3621 if List.mem
Wsi.Fullscreen state
.winstate
3622 then Wsi.reshape conf
.cwinw conf
.cwinh
3623 else Wsi.fullscreen
()
3625 | Ascii
('
p'
|'N'
) -> search state
.searchpattern
false
3626 | Ascii '
n'
| Fn
3 -> search state
.searchpattern
true
3629 begin match state
.layout with
3631 | l :: _ -> gotoxy state
.x (getpagey
l.pageno)
3634 | Ascii ' '
-> nextpage ()
3635 | Delete
-> prevpage ()
3636 | Ascii '
='
-> showtext ' '
(describe_layout state
.layout);
3639 begin match state
.layout with
3642 Wsi.reshape l.pagew
l.pageh
;
3646 | Ascii '
\''
-> enterbookmarkmode
()
3647 | Ascii '
h'
| Fn
1 -> enterhelpmode ()
3648 | Ascii 'i'
-> enterinfomode ()
3649 | Ascii 'e'
when Buffer.length state
.errmsgs
> 0 -> entermsgsmode ()
3653 match state
.layout with
3654 | l :: _ when nonemptystr
s ->
3655 state
.bookmarks
<- (s, 0, Oanchor
(getanchor1
l)) :: state
.bookmarks
3658 enttext ("bookmark: ", E.s, None
, textentry, ondone, true)
3662 showtext ' '
"Quick bookmark added";
3664 | Ascii '
x'
-> state
.roam
()
3666 | Ascii
('
<'
|'
>'
as c) ->
3667 reqlayout (conf
.angle
+ (if c = '
>'
then 30 else -30)) conf
.fitmodel
3669 | Ascii
('
['
|'
]'
as c) ->
3671 bound
(conf
.colorscale
+. (if c = '
]'
then 0.1 else -0.1)) 0.0 1.0;
3672 postRedisplay
"brightness";
3674 | Ascii '
c'
when state
.mode = View
->
3679 let m = (state
.winw
- state
.w) / 2 in
3684 match state
.prevcolumns
with
3685 | None
-> (1, 0, 0), 1.0
3686 | Some
(columns
, z
) ->
3689 | Csplit
(c, _) -> -c, 0, 0
3690 | Cmulti
((c, a, b), _) -> c, a, b
3691 | Csingle
_ -> 1, 0, 0
3695 setcolumns View
c a b;
3698 | Down
| Up
when ctrl && Wsi.withshift mask
->
3699 let zoom, x = state
.prevzoom
in
3704 begin match state
.autoscroll
with
3706 begin match state
.mode with
3707 | Birdseye beye
-> upbirdseye 1 beye
3708 | Textentry
_ | View
| LinkNav
_ ->
3710 then gotoxy state
.x (clamp ~
-(state
.winh
/2))
3712 if not
(Wsi.withshift mask
) && conf
.presentation
3714 else gotoxy state
.x (clamp (-conf
.scrollstep
))
3717 | Some
n -> setautoscrollspeed n false
3721 begin match state
.autoscroll
with
3723 begin match state
.mode with
3724 | Birdseye beye
-> downbirdseye 1 beye
3725 | Textentry
_ | View
| LinkNav
_ ->
3727 then gotoxy state
.x (clamp (state
.winh
/2))
3729 if not
(Wsi.withshift mask
) && conf
.presentation
3731 else gotoxy state
.x (clamp (conf
.scrollstep
))
3734 | Some
n -> setautoscrollspeed n true
3737 | Left
| Right
when not
(Wsi.withalt mask
) ->
3743 else conf
.hscrollstep
3746 let pv = Wsi.kc2kt
key in
3747 if pv = Keys.Left
then dx else -dx
3749 gotoxy (panbound (state
.x + dx)) state
.y
3752 postRedisplay
"left/right"
3759 match state
.layout with
3761 | l :: _ -> state
.y - l.pagey
3762 else clamp (pgscale (-state
.winh
))
3770 match List.rev state
.layout with
3772 | l :: _ -> getpagey
l.pageno
3773 else clamp (pgscale state
.winh
)
3777 | Ascii '
g'
| Home
->
3780 | Ascii 'G'
| End
->
3782 gotoxy 0 (clamp state
.maxy)
3784 | Right
when Wsi.withalt mask
->
3786 gotoxy state
.x (getnav 1)
3787 | Left
when Wsi.withalt mask
->
3789 gotoxy state
.x (getnav ~
-1)
3794 | Ascii '
v'
when conf
.debug
->
3797 match getopaque l.pageno with
3800 let x0, y0, x1, y1 = pagebbox
opaque in
3801 let rect = (float x0, float y0,
3804 float x0, float y1) in
3806 let color = (0.0, 0.0, 1.0 /. (l.pageno mod 3 |> float), 0.5) in
3807 state
.rects
<- (l.pageno, color, rect) :: state
.rects
;
3812 let mode = state
.mode in
3813 let cmd = ref E.s in
3814 let onleave = function
3815 | Cancel
-> state
.mode <- mode
3818 match getopaque l.pageno with
3819 | Some
opaque -> pipesel opaque !cmd
3820 | None
-> ()) state
.layout;
3824 cbput state
.hists
.sel
s;
3828 "| ", !cmd, Some
(onhist state
.hists
.sel
), textentry, ondone, true
3831 state
.mode <- Textentry
(te, onleave);
3833 | (Ascii
_|Fn
_|Enter
|Left
|Right
|Code
_|Ctrl
_) ->
3834 vlog
"huh? %s" (Wsi.keyname
key)
3837 let linknavkeyboard key mask
linknav =
3838 let pv = Wsi.kc2kt
key in
3839 let getpage pageno =
3840 let rec loop = function
3842 | l :: _ when l.pageno = pageno -> Some
l
3843 | _ :: rest
-> loop rest
3844 in loop state
.layout
3846 let doexact (pageno, n) =
3847 match getopaque pageno, getpage pageno with
3848 | Some
opaque, Some
l ->
3851 let under = getlink
opaque n in
3852 postRedisplay
"link gotounder";
3859 | Home
-> Some
(findlink
opaque LDfirst
), -1
3860 | End
-> Some
(findlink
opaque LDlast
), 1
3861 | Left
-> Some
(findlink
opaque (LDleft
n)), -1
3862 | Right
-> Some
(findlink
opaque (LDright
n)), 1
3863 | Up
-> Some
(findlink
opaque (LDup
n)), -1
3864 | Down
-> Some
(findlink
opaque (LDdown
n)), 1
3865 | Delete
|Escape
|Insert
|Enter
|Next
|Prior
|Ascii
_
3866 | Code
_|Fn
_|Ctrl
_|Backspace
-> None
, 0
3869 begin match findpwl
l.pageno dir with
3873 state
.mode <- LinkNav
(Ltgendir
dir);
3874 let y, h = getpageyh
pageno in
3877 then y + h - state
.winh
3882 begin match getopaque pageno, getpage pageno with
3883 | Some
opaque, Some
_ ->
3885 let ld = if dir > 0 then LDfirst
else LDlast
in
3888 begin match link with
3890 showlinktype (getlink
opaque m);
3891 state
.mode <- LinkNav
(Ltexact
(pageno, m));
3892 postRedisplay
"linknav jpage";
3893 | Lnotfound
-> notfound dir
3899 begin match opt with
3900 | Some Lnotfound
-> pwl l dir;
3901 | Some
(Lfound
m) ->
3905 let _, y0, _, y1 = getlinkrect
opaque m in
3907 then gotopage1 l.pageno y0
3909 let d = fstate
.fontsize
+ 1 in
3910 if y1 - l.pagey > l.pagevh - d
3911 then gotopage1 l.pageno (y1 - state
.winh
+ d)
3912 else postRedisplay
"linknav";
3914 showlinktype (getlink
opaque m);
3915 state
.mode <- LinkNav
(Ltexact
(l.pageno, m));
3918 | None
-> viewkeyboard key mask
3920 | _ -> viewkeyboard key mask
3924 begin match linknav with
3925 | Ltexact pa
-> state
.lnava
<- Some pa
3926 | Ltgendir
_ | Ltnotready
_ -> ()
3929 postRedisplay
"leave linknav"
3933 | Ltgendir
_ | Ltnotready
_ -> viewkeyboard key mask
3934 | Ltexact exact
-> doexact exact
3937 let keyboard key mask
=
3938 if (key = Char.code '
g'
&& Wsi.withctrl mask
) && not
(istextentry state
.mode)
3939 then wcmd "interrupt"
3940 else state
.uioh <- state
.uioh#
key key mask
3943 let birdseyekeyboard key mask
3944 ((oconf
, leftx
, pageno, hooverpageno
, anchor) as beye
) =
3946 match conf
.columns
with
3948 | Cmulti
((c, _, _), _) -> c
3949 | Csplit
_ -> error
"bird's eye split mode"
3951 let pgh layout = List.fold_left
3952 (fun m l -> max
l.pageh
m) state
.winh
layout in
3954 match Wsi.kc2kt
key with
3955 | Ascii '
l'
when Wsi.withctrl mask
->
3956 let y, h = getpageyh
pageno in
3957 let top = (state
.winh
- h) / 2 in
3958 gotoxy state
.x (max
0 (y - top))
3959 | Enter
-> leavebirdseye beye
false
3960 | Escape
-> leavebirdseye beye
true
3961 | Up
-> upbirdseye incr beye
3962 | Down
-> downbirdseye incr beye
3963 | Left
-> upbirdseye 1 beye
3964 | Right
-> downbirdseye 1 beye
3967 begin match state
.layout with
3971 state
.mode <- Birdseye
(
3972 oconf
, leftx
, l.pageno, hooverpageno
, anchor
3974 gotopage1 l.pageno 0;
3977 let layout = layout state
.x (state
.y-state
.winh
)
3979 (pgh state
.layout) in
3981 | [] -> gotoxy state
.x (clamp (-state
.winh
))
3983 state
.mode <- Birdseye
(
3984 oconf
, leftx
, l.pageno, hooverpageno
, anchor
3986 gotopage1 l.pageno 0
3989 | [] -> gotoxy state
.x (clamp (-state
.winh
))
3993 begin match List.rev state
.layout with
3995 let layout = layout state
.x
3996 (state
.y + (pgh state
.layout))
3997 state
.winw state
.winh
in
3998 begin match layout with
4000 let incr = l.pageh
- l.pagevh in
4005 oconf
, leftx
, state
.pagecount
- 1, hooverpageno
, anchor
4007 postRedisplay
"birdseye pagedown";
4009 else gotoxy state
.x (clamp (incr + conf
.interpagespace
*2));
4013 Birdseye
(oconf
, leftx
, l.pageno, hooverpageno
, anchor);
4014 gotopage1 l.pageno 0;
4017 | [] -> gotoxy state
.x (clamp state
.winh
)
4021 state
.mode <- Birdseye
(oconf
, leftx
, 0, hooverpageno
, anchor);
4025 let pageno = state
.pagecount
- 1 in
4026 state
.mode <- Birdseye
(oconf
, leftx
, pageno, hooverpageno
, anchor);
4027 if not
(pagevisible state
.layout pageno)
4030 match List.rev state
.pdims
with
4032 | (_, _, h, _) :: _ -> h
4036 (max
0 (getpagey
pageno - (state
.winh
- h - conf
.interpagespace
)))
4037 else postRedisplay
"birdseye end";
4039 | Delete
|Insert
|Ascii
_|Code
_|Ctrl
_|Fn
_|Backspace
-> viewkeyboard key mask
4044 match state
.mode with
4045 | Textentry
_ -> scalecolor 0.4
4046 | LinkNav
_ | View
-> scalecolor 1.0
4047 | Birdseye
(_, _, pageno, hooverpageno
, _) ->
4048 if l.pageno = hooverpageno
4051 if l.pageno = pageno
4053 let c = scalecolor 1.0 in
4055 GlDraw.line_width
3.0;
4056 let dispx = l.pagedispx in
4058 (float (dispx-1)) (float (l.pagedispy-1))
4059 (float (dispx+l.pagevw+1))
4060 (float (l.pagedispy+l.pagevh+1));
4061 GlDraw.line_width
1.0;
4070 let postdrawpage l linkindexbase
=
4071 match getopaque l.pageno with
4073 if tileready l l.pagex
l.pagey
4075 let x = l.pagedispx - l.pagex
4076 and y = l.pagedispy - l.pagey in
4078 match conf
.columns
with
4079 | Csingle
_ | Cmulti
_ ->
4080 (if conf
.hlinks
then 1 else 0)
4082 && not
(isbirdseye state
.mode) then 2 else 0)
4086 match state
.mode with
4087 | Textentry
((_, s, _, _, _, _), _) when state
.glinks
-> s
4093 Hashtbl.find_all state
.prects
l.pageno |>
4094 List.iter
(fun vals
-> drawprect
opaque x y vals
);
4095 let n = postprocess
opaque hlmask x y (linkindexbase
, s, conf
.hfsize
) in
4097 then (Glutils.redisplay
:= true; 0)
4103 let scrollindicator () =
4104 let sbw, ph
, sh = state
.uioh#scrollph
in
4105 let sbh, pw, sw
= state
.uioh#scrollpw
in
4110 else ((state
.winw
- sbw), state
.winw
, 0)
4114 GlFunc.blend_func ~
src:`src_alpha ~dst
:`one_minus_src_alpha
;
4115 let (r
, g, b, alpha
) = conf
.sbarcolor
in
4116 GlDraw.color (r
, g, b) ~alpha
;
4117 filledrect
(float x0) 0. (float x1) (float state
.winh
);
4119 (float hx0
) (float (state
.winh
- sbh))
4120 (float (hx0
+ state
.winw
)) (float state
.winh
);
4121 let (r
, g, b, alpha
) = conf
.sbarhndlcolor
in
4122 GlDraw.color (r
, g, b) ~alpha
;
4124 filledrect
(float x0) ph
(float x1) (ph
+. sh);
4125 let pw = pw +. float hx0
in
4126 filledrect
pw (float (state
.winh
- sbh)) (pw +. sw
) (float state
.winh
);
4131 match state
.mstate
with
4132 | Mnone
| Mscrolly
| Mscrollx
| Mpan
_ | Mzoom
_ | Mzoomrect
_ -> ()
4133 | Msel
((x0, y0), (x1, y1)) ->
4134 let identify opaque l px py = Some
(opaque, l.pageno, px, py) in
4135 let o0,n0
,px0
,py0
= onppundermouse identify x0 y0 (~
< E.s, -1, 0, 0) in
4136 let _o1,n1
,px1
,py1
= onppundermouse identify x1 y1 (~
< E.s, -1, 0, 0) in
4137 if n0
!= -1 && n0
= n1
then seltext
o0 (px0
, py0
, px1
, py1
);
4140 let showrects = function
4144 GlDraw.color (0.0, 0.0, 1.0) ~alpha
:0.5;
4145 GlFunc.blend_func ~
src:`src_alpha ~dst
:`one_minus_src_alpha
;
4147 (fun (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) ->
4149 if l.pageno = pageno
4151 let dx = float (l.pagedispx - l.pagex
) in
4152 let dy = float (l.pagedispy - l.pagey) in
4153 let r, g, b, alpha
= c in
4154 GlDraw.color (r, g, b) ~alpha
;
4166 GlDraw.color (scalecolor2 conf
.bgcolor
);
4167 GlClear.color (scalecolor2 conf
.bgcolor
);
4168 GlClear.clear
[`
color];
4169 List.iter
drawpage state
.layout;
4171 match state
.mode with
4172 | LinkNav
(Ltexact
(pageno, linkno
)) ->
4173 begin match getopaque pageno with
4175 let x0, y0, x1, y1 = getlinkrect
opaque linkno
in
4176 let color = (0.0, 0.0, 0.5, 0.5) in
4178 (float x0, float y0,
4183 | None
-> state
.rects
4185 | LinkNav
(Ltgendir
_) | LinkNav
(Ltnotready
_)
4188 | View
-> state
.rects
4191 let rec postloop linkindexbase
= function
4193 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
4194 postloop linkindexbase rest
4198 postloop 0 state
.layout;
4200 begin match state
.mstate
with
4201 | Mzoomrect
((x0, y0), (x1, y1)) ->
4203 GlDraw.color (0.3, 0.3, 0.3) ~alpha
:0.5;
4204 GlFunc.blend_func ~
src:`src_alpha ~dst
:`one_minus_src_alpha
;
4205 filledrect
(float x0) (float y0) (float x1) (float y1);
4209 | Mscrolly
| Mscrollx
4219 match state
.reload with
4221 if x != state
.x || y != state
.y || abs_float
@@ now
() -. t
> 0.5
4222 || (state
.layout != [] && layoutready state
.layout)
4224 state
.reload <- None
;
4227 | None
-> display ()
4230 let zoomrect x y x1 y1 =
4233 and y0 = min
y y1 in
4234 let zoom = (float state
.w) /. float (x1 - x0) in
4237 if state
.w < state
.winw
4238 then (state
.winw
- state
.w) / 2
4241 match conf
.fitmodel
with
4242 | FitWidth
| FitProportional
-> simple ()
4244 match conf
.columns
with
4246 onppundermouse (fun _ l _ _ -> Some
l.pagedispx) x0 y0 x0
4247 | Cmulti
_ | Csingle
_ -> simple ()
4249 gotoxy ((state
.x + margin) - x0) (state
.y + y0);
4250 state
.anchor <- getanchor
();
4255 let annot inline
x y =
4256 match unproject x y with
4257 | Some
(opaque, n, ux
, uy
) ->
4259 addannot
opaque ux uy
text;
4260 wcmd "freepage %s" (~
> opaque);
4261 Hashtbl.remove state
.pagemap
(n, state
.gen
);
4263 gotoxy state
.x state
.y
4267 let ondone s = add s in
4268 let mode = state
.mode in
4269 state
.mode <- Textentry
(
4270 ("annotation: ", E.s, None
, textentry, ondone, true),
4271 fun _ -> state
.mode <- mode);
4274 postRedisplay
"annot"
4275 else add @@ getusertext E.s
4280 let g opaque l px py =
4281 match rectofblock
opaque px py with
4283 let x0 = a.(0) -. 20. in
4284 let x1 = a.(1) +. 20. in
4285 let y0 = a.(2) -. 20. in
4286 let zoom = (float state
.w) /. (x1 -. x0) in
4287 let pagey = getpagey
l.pageno in
4288 let margin = (state
.w - l.pagew
)/2 in
4289 let nx = -truncate
x0 - margin in
4290 gotoxy nx (pagey + truncate
y0);
4291 state
.anchor <- getanchor
();
4296 match conf
.columns
with
4298 impmsg "block zooming does not work properly in split columns mode"
4299 | Cmulti
_ | Csingle
_ -> onppundermouse g x y ()
4303 let winw = state
.winw - 1 in
4304 let s = float x /. float winw in
4305 let destx = truncate
(float (state
.w + winw) *. s) in
4306 gotoxy (winw - destx) state
.y;
4307 state
.mstate
<- Mscrollx
;
4311 let s = float y /. float state
.winh
in
4312 let desty = truncate
(s *. float (maxy ())) in
4313 gotoxy state
.x desty;
4314 state
.mstate
<- Mscrolly
;
4317 let viewmulticlick clicks
x y mask
=
4318 let g opaque l px py =
4326 if markunder
opaque px py mark
4330 match getopaque l.pageno with
4332 | Some
opaque -> pipesel opaque cmd
4334 state
.roam
<- (fun () -> dopipe conf
.paxcmd
);
4335 if not
(Wsi.withctrl mask
) then dopipe conf
.selcmd
;
4340 postRedisplay
"viewmulticlick";
4341 onppundermouse g x y (fun () -> impmsg "nothing to select") ();
4345 match conf
.columns
with
4347 | Csingle
_ | Cmulti
_ -> conf
.angle
mod 360 = 0
4350 let viewmouse button down
x y mask
=
4352 | n when (n == 4 || n == 5) && not down
->
4353 if Wsi.withctrl mask
4357 then if conf
.zoom +. 0.01 > 0.1 then 0.1 else 0.01
4358 else if conf
.zoom -. 0.1 < 0.1 then -0.01 else -0.1
4361 match state
.mstate
with
4362 | Mzoom
(oldn
, _, pos
) when n = oldn
-> pos
4363 | Mzoomrect
_ | Mnone
| Mpan
_
4364 | Msel
_ | Mscrollx
| Mscrolly
| Mzoom
_ -> (x, y)
4366 let zoom = conf
.zoom -. incr in
4367 state
.mstate
<- Mzoom
(n, 0, (x, y));
4368 if false && abs
(fx - x) > 5 || abs
(fy
- y) > 5
4369 then pivotzoom ~
x ~
y zoom
4373 match state
.autoscroll
with
4374 | Some step
-> setautoscrollspeed step
(n=4)
4376 if conf
.wheelbypage
|| conf
.presentation
4383 let incr = if n = 4 then -conf
.scrollstep
else conf
.scrollstep
in
4384 let incr = incr * 2 in
4385 let y = clamp incr in
4389 | n when (n = 6 || n = 7) && not down
&& canpan () ->
4391 panbound (state
.x + (if n = 7 then -2 else 2) * conf
.hscrollstep
) in
4394 | 1 when Wsi.withshift mask
->
4395 state
.mstate
<- Mnone
;
4398 match unproject x y with
4400 | Some
(_, pageno, ux
, uy
) ->
4401 let cmd = Printf.sprintf
4403 conf
.stcmd state
.path pageno ux uy
4405 match spawn
cmd [] with
4407 impmsg "execution of synctex command(%S) failed: %S"
4408 conf
.stcmd
@@ exntos exn
4412 | 1 when Wsi.withctrl mask
->
4415 Wsi.setcursor
Wsi.CURSOR_FLEUR
;
4416 state
.mstate
<- Mpan
(x, y)
4418 else state
.mstate
<- Mnone
4423 if Wsi.withshift mask
4425 annot conf
.annotinline
x y;
4426 postRedisplay
"addannot"
4430 Wsi.setcursor
Wsi.CURSOR_CYCLE
;
4431 state
.mstate
<- Mzoomrect
(p, p)
4434 match state
.mstate
with
4435 | Mzoomrect
((x0, y0), _) ->
4436 if abs
(x-x0) > 10 && abs
(y - y0) > 10
4437 then zoomrect x0 y0 x y
4440 postRedisplay
"kill accidental zoom rect";
4444 | Mscrolly
| Mscrollx
4446 | Mnone
-> resetmstate ()
4449 | 1 when vscrollhit
x ->
4452 let _, position
, sh = state
.uioh#scrollph
in
4453 if y > truncate position
&& y < truncate
(position
+. sh)
4454 then state
.mstate
<- Mscrolly
4456 else state
.mstate
<- Mnone
4458 | 1 when y > state
.winh
- hscrollh () ->
4461 let _, position
, sw
= state
.uioh#scrollpw
in
4462 if x > truncate position
&& x < truncate
(position
+. sw
)
4463 then state
.mstate
<- Mscrollx
4465 else state
.mstate
<- Mnone
4467 | 1 when state
.bzoom
-> if not down
then zoomblock x y
4470 let dest = if down
then getunder x y else Unone
in
4471 begin match dest with
4472 | Ulinkuri
_ -> gotounder dest
4473 | Unone
when down
->
4474 Wsi.setcursor
Wsi.CURSOR_FLEUR
;
4475 state
.mstate
<- Mpan
(x, y);
4476 | Uannotation
(opaque, slinkindex
) -> enterannotmode opaque slinkindex
4477 | Unone
| Utext
_ ->
4482 state
.mstate
<- Msel
((x, y), (x, y));
4483 postRedisplay
"mouse select";
4487 match state
.mstate
with
4489 | Mzoom
_ | Mscrollx
| Mscrolly
-> state
.mstate
<- Mnone
4490 | Mzoomrect
((x0, y0), _) -> zoomrect x0 y0 x y
4492 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
4493 state
.mstate
<- Mnone
4494 | Msel
((x0, y0), (x1, y1)) ->
4495 let rec loop = function
4499 let a0 = l.pagedispy in
4500 let a1 = a0 + l.pagevh in
4501 let b0 = l.pagedispx in
4502 let b1 = b0 + l.pagevw in
4503 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
4504 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
4508 match getopaque l.pageno with
4511 pipef ~closew
:false "Msel"
4514 postRedisplay
"Msel") cmd
4516 dosel conf
.selcmd
();
4517 state
.roam
<- dosel conf
.paxcmd
;
4528 let birdseyemouse button down
x y mask
4529 (conf
, leftx
, _, hooverpageno
, anchor) =
4532 let rec loop = function
4535 if y > l.pagedispy && y < l.pagedispy + l.pagevh
4536 && x > l.pagedispx && x < l.pagedispx + l.pagevw
4538 leavebirdseye (conf
, leftx
, l.pageno, hooverpageno
, anchor) false
4543 | _ -> viewmouse button down
x y mask
4549 method key key mask
=
4550 begin match state
.mode with
4551 | Textentry
textentry -> textentrykeyboard
key mask
textentry
4552 | Birdseye
birdseye -> birdseyekeyboard key mask
birdseye
4553 | View
-> viewkeyboard key mask
4554 | LinkNav
linknav -> linknavkeyboard key mask
linknav
4558 method button button bstate
x y mask
=
4559 begin match state
.mode with
4560 | LinkNav
_ | View
-> viewmouse button bstate
x y mask
4561 | Birdseye beye
-> birdseyemouse button bstate
x y mask beye
4566 method multiclick clicks
x y mask
=
4567 begin match state
.mode with
4568 | LinkNav
_ | View
-> viewmulticlick clicks
x y mask
4569 | Birdseye
_ | Textentry
_ -> ()
4574 begin match state
.mode with
4576 | View
| Birdseye
_ | LinkNav
_ ->
4577 match state
.mstate
with
4578 | Mzoom
_ | Mnone
-> ()
4582 state
.mstate
<- Mpan
(x, y);
4583 let x = if canpan () then panbound (state
.x + dx) else state
.x in
4588 state
.mstate
<- Msel
(a, (x, y));
4589 postRedisplay
"motion select";
4592 let y = min state
.winh
(max
0 y) in
4596 let x = min state
.winw (max
0 x) in
4599 | Mzoomrect
(p0
, _) ->
4600 state
.mstate
<- Mzoomrect
(p0
, (x, y));
4601 postRedisplay
"motion zoomrect";
4605 method pmotion
x y =
4606 begin match state
.mode with
4607 | Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor) ->
4608 let rec loop = function
4610 if hooverpageno
!= -1
4612 state
.mode <- Birdseye
(conf
, leftx
, pageno, -1, anchor);
4613 postRedisplay
"pmotion birdseye no hoover";
4616 if y > l.pagedispy && y < l.pagedispy + l.pagevh
4617 && x > l.pagedispx && x < l.pagedispx + l.pagevw
4619 state
.mode <- Birdseye
(conf
, leftx
, pageno, l.pageno, anchor);
4620 postRedisplay
"pmotion birdseye hoover";
4628 | LinkNav
_ | View
->
4629 match state
.mstate
with
4630 | Mpan
_ | Msel
_ | Mzoom
_ | Mscrolly
| Mscrollx
| Mzoomrect
_ -> ()
4639 let delta = now -. past
in
4642 else conf
.pax
<- Some
now
4646 method infochanged
_ = ()
4649 let maxy = maxy () in
4652 then 0.0, float state
.winh
4653 else scrollph state
.y maxy
4658 let fwinw = float (state
.winw - vscrollw
()) in
4660 let sw = fwinw /. float state
.w in
4661 let sw = fwinw *. sw in
4662 max
sw (float conf
.scrollh
)
4665 let maxx = state
.w + state
.winw in
4666 let x = state
.winw - state
.x in
4667 let percent = float x /. float maxx in
4668 (fwinw -. sw) *. percent
4670 hscrollh (), position, sw
4674 match state
.mode with
4675 | LinkNav
_ -> "links"
4676 | Textentry
_ -> "textentry"
4677 | Birdseye
_ -> "birdseye"
4680 findkeyhash conf
modename
4682 method eformsgs
= true
4683 method alwaysscrolly
= false
4684 method scroll
dx dy =
4685 let x = if canpan () then panbound (state
.x + dx) else state
.x in
4686 gotoxy x (clamp (2 * dy));
4689 pivotzoom ~
x ~
y (conf
.zoom *. exp z
);
4692 let addrect pageno r g b a x0 y0 x1 y1 =
4693 Hashtbl.add state
.prects
pageno [|r; g; b; a; x0; y0; x1; y1|];
4697 let cl = splitatchar cmds ' '
in
4699 try Scanf.sscanf
s fmt
f
4700 with exn
-> adderrfmt "remote exec" "error processing '%S': %s\n"
4703 let rectx s pageno (r, g, b, a) x0 y0 x1 y1 =
4704 vlog
"%s page %d color (%f %f %f %f) x0,y0,x1,y1 = %f %f %f %f"
4705 s pageno r g b a x0 y0 x1 y1;
4709 let _,w1
,h1
,_ = getpagedim
pageno in
4710 let sw = float w1
/. float w
4711 and sh = float h1
/. float h in
4715 and y1s
= y1 *. sh in
4716 let rect = (x0s,y0s
,x1s
,y0s
,x1s
,y1s
,x0s,y1s
) in
4717 let color = (r, g, b, a) in
4718 if conf
.verbose
then debugrect rect;
4719 state
.rects <- (pageno, color, rect) :: state
.rects;
4724 | "reload", "" -> reload ()
4726 scan args
"%u %f %f"
4728 let cmd, _ = state
.geomcmds
in
4730 then gotopagexy pageno x y
4733 gotopagexy pageno x y;
4736 state
.reprf
<- f state
.reprf
4738 | "goto1", args
-> scan args
"%u %f" gotopage
4739 | "gotor", args
-> scan args
"%S" gotoremote
4741 scan args
"%u %u %f %f %f %f"
4742 (fun pageno c x0 y0 x1 y1 ->
4743 let color = (0.0, 0.0, 1.0 /. float c, 0.5) in
4744 rectx "rect" pageno color x0 y0 x1 y1;
4747 scan args
"%u %f %f %f %f %f %f %f %f"
4748 (fun pageno r g b alpha
x0 y0 x1 y1 ->
4749 addrect pageno r g b alpha
x0 y0 x1 y1;
4750 postRedisplay
"prect"
4753 scan args
"%u %f %f"
4756 match getopaque pageno with
4757 | Some
opaque -> opaque
4760 pgoto optopaque pageno x y;
4761 let rec fixx = function
4764 if l.pageno = pageno
4765 then gotoxy (state
.x - l.pagedispx) state
.y
4770 match conf
.columns
with
4771 | Csingle
_ | Csplit
_ -> 1
4772 | Cmulti
((n, _, _), _) -> n
4774 layout 0 state
.y (state
.winw * mult) state
.winh
4778 | "activatewin", "" -> Wsi.activatewin
()
4779 | "quit", "" -> raise Quit
4782 let l = Config.keys_of_string
keys in
4783 List.iter
(fun (k
, m) -> keyboard k
m) l
4784 with exn
-> adderrfmt "error processing keys" "`%S': %s\n"
4787 | "clearrects", "" ->
4788 Hashtbl.clear state
.prects
;
4789 postRedisplay
"clearrects"
4791 adderrfmt "remote command"
4792 "error processing remote command: %S\n" cmds
;
4796 let scratch = Bytes.create
80 in
4797 let buf = Buffer.create
80 in
4799 match tempfailureretry
(Unix.read fd
scratch 0) 80 with
4800 | exception Unix.Unix_error
(Unix.EAGAIN
, _, _) -> None
4803 if Buffer.length
buf > 0
4805 let s = Buffer.contents
buf in
4813 match Bytes.index_from
scratch ppos '
\n'
with
4814 | pos
-> if pos
>= n then -1 else pos
4815 | exception Not_found
-> -1
4819 Buffer.add_subbytes
buf scratch ppos
(nlpos-ppos
);
4820 let s = Buffer.contents
buf in
4826 Buffer.add_subbytes
buf scratch ppos
(n-ppos
);
4832 let remoteopen path =
4833 try Some
(Unix.openfile
path [Unix.O_NONBLOCK
; Unix.O_RDONLY
] 0o0)
4835 adderrfmt "remoteopen" "error opening %S: %s" path @@ exntos exn
;
4840 Utils.vlogf
:= (fun s -> if conf
.verbose
then prerr_endline
s else ignore
s);
4841 let gcconfig = ref false in
4842 let trimcachepath = ref E.s in
4843 let rcmdpath = ref E.s in
4844 let pageno = ref None
in
4845 let openlast = ref false in
4846 let doreap = ref false in
4847 let csspath = ref None
in
4848 selfexec := Sys.executable_name
;
4851 [("-p", Arg.String
(fun s -> state
.password <- s),
4852 "<password> Set password");
4856 Config.fontpath
:= s;
4857 selfexec := !selfexec ^
" -f " ^
Filename.quote
s;
4859 "<path> Set path to the user interface font");
4863 selfexec := !selfexec ^
" -c " ^
Filename.quote
s;
4864 Config.confpath
:= s),
4865 "<path> Set path to the configuration file");
4867 ("-last", Arg.Set
openlast, " Open last document");
4869 ("-page", Arg.Int
(fun pageno1
-> pageno := Some
(pageno1
-1)),
4870 "<page-number> Jump to page");
4872 ("-tcf", Arg.String
(fun s -> trimcachepath := s),
4873 "<path> Set path to the trim cache file");
4875 ("-dest", Arg.String
(fun s -> state
.nameddest
<- s),
4876 "<named-destination> Set named destination");
4878 ("-remote", Arg.String
(fun s -> rcmdpath := s),
4879 "<path> Set path to the source of remote commands");
4881 ("-gc", Arg.Set
gcconfig, " Collect config garbage");
4883 ("-v", Arg.Unit
(fun () ->
4885 "%s\nconfiguration file: %s\n"
4888 exit
0), " Print version and exit");
4890 ("-css", Arg.String
(fun s -> csspath := Some
s),
4891 "<path> Set path to the style sheet to use with EPUB/HTML");
4893 ("-origin", Arg.String
(fun s -> state
.origin
<- s),
4894 "<origin> <undocumented>");
4896 ("-no-title", Arg.Set
ignoredoctitlte, " ignore document title");
4897 ("-layout-height", Arg.Set_int
layouth,
4898 "<height> layout height html/epub/etc (-1, 0, N)");
4901 (fun s -> state
.path <- s)
4902 ("Usage: " ^
Sys.argv
.(0) ^
" [options] some.pdf\nOptions:");
4904 let histmode = emptystr state
.path && not
!openlast in
4906 if not
(Config.load !openlast)
4907 then dolog
"failed to load configuration";
4909 begin match !pageno with
4910 | Some
pageno -> state
.anchor <- (pageno, 0.0, 0.0)
4923 val mutable m_clicks
= 0
4924 val mutable m_click_x
= 0
4925 val mutable m_click_y
= 0
4926 val mutable m_lastclicktime
= infinity
4928 method private cleanup =
4929 state
.roam
<- noroam
;
4930 Hashtbl.iter
(fun _ opaque -> clearmark
opaque) state
.pagemap
4931 method expose
= postRedisplay
"expose"
4935 | Wsi.Unobscured
-> "unobscured"
4936 | Wsi.PartiallyObscured
-> "partiallyobscured"
4937 | Wsi.FullyObscured
-> "fullyobscured"
4939 vlog
"visibility change %s" name
4940 method display = display ()
4941 method map mapped
= vlog
"mapped %b" mapped
4942 method reshape w h =
4945 method mouse
b d x y m =
4946 if d && canselect ()
4949 * http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx
4956 if abs
x - m_click_x
> 10
4957 || abs
y - m_click_y
> 10
4958 || abs_float
(t -. m_lastclicktime
) > 0.3
4960 m_clicks
<- m_clicks
+ 1;
4961 m_lastclicktime
<- t;
4965 postRedisplay
"cleanup";
4966 state
.uioh <- state
.uioh#button
b d x y m;
4968 else state
.uioh <- state
.uioh#multiclick m_clicks
x y m
4973 m_lastclicktime
<- infinity
;
4974 state
.uioh <- state
.uioh#button
b d x y m
4977 else state
.uioh <- state
.uioh#button
b d x y m
4979 state
.mpos
<- (x, y);
4980 state
.uioh <- state
.uioh#motion
x y
4981 method pmotion
x y =
4982 state
.mpos
<- (x, y);
4983 state
.uioh <- state
.uioh#pmotion
x y
4985 vlog
"k=%#x m=%#x" k
m;
4986 let mascm = m land (
4987 Wsi.altmask
+ Wsi.shiftmask
+ Wsi.ctrlmask
+ Wsi.metamask
4990 let x = state
.x and y = state
.y in
4992 if x != state
.x || y != state
.y then self#
cleanup
4994 match state
.keystate
with
4996 let km = k
, mascm in
4999 let modehash = state
.uioh#
modehash in
5000 try Hashtbl.find
modehash km
5002 try Hashtbl.find
(findkeyhash conf
"global") km
5003 with Not_found
-> KMinsrt
(k
, m)
5005 | KMinsrt
(k
, m) -> keyboard k
m
5006 | KMinsrl
l -> List.iter
(fun (k
, m) -> keyboard k
m) l
5007 | KMmulti
(l, r) -> state
.keystate
<- KSinto
(l, r)
5009 | KSinto
((k'
, m'
) :: [], insrt
) when k'
=k
&& m'
land mascm = m'
->
5010 List.iter
(fun (k
, m) -> keyboard k
m) insrt
;
5011 state
.keystate
<- KSnone
5012 | KSinto
((k'
, m'
) :: keys, insrt
) when k'
=k
&& m'
land mascm = m'
->
5013 state
.keystate
<- KSinto
(keys, insrt
)
5014 | KSinto
_ -> state
.keystate
<- KSnone
5017 state
.mpos
<- (x, y);
5018 state
.uioh <- state
.uioh#pmotion
x y
5019 method leave = state
.mpos
<- (-1, -1)
5020 method winstate wsl
= state
.winstate
<- wsl
5021 method quit
: '
a. '
a = raise Quit
5022 method scroll
dx dy = state
.uioh <- state
.uioh#scroll
dx dy
5023 method zoom z
x y = state
.uioh#
zoom z
x y
5024 method opendoc path =
5027 postRedisplay
"opendoc";
5028 opendoc path state
.password
5031 let wsfd, winw, winh
= Wsi.init
mu conf
.cwinw conf
.cwinh platform
in
5034 if not
@@ List.exists
GlMisc.check_extension
5035 [ "GL_ARB_texture_rectangle"
5036 ; "GL_EXT_texture_recangle"
5037 ; "GL_NV_texture_rectangle" ]
5038 then (dolog
"OpenGL does not suppport rectangular textures"; exit
1);
5041 match Unix.socketpair
Unix.PF_UNIX
Unix.SOCK_STREAM
0 with
5043 dolog
"socketpair failed: %s" @@ exntos exn
;
5051 setcheckers conf
.checkers
;
5052 begin match !csspath with
5054 | Some
"" -> conf
.css
<- E.s
5056 let css = filecontents
path in
5057 let l = String.length
css in
5059 if substratis
css (l-2) "\r\n"
5060 then String.sub css 0 (l-2)
5061 else (if css.[l-1] = '
\n'
then String.sub css 0 (l-1) else css)
5064 conf
.angle
, conf
.fitmodel
, (conf
.trimmargins
, conf
.trimfuzz
),
5065 conf
.texcount
, conf
.sliceheight
, conf
.mustoresize
, conf
.colorspace
,
5066 !Config.fontpath
, !trimcachepath
5068 List.iter
GlArray.enable
[`texture_coord
; `vertex
];
5069 GlTex.env
(`
color conf
.texturecolor
);
5071 reshape ~firsttime
:true winw winh
;
5075 Wsi.settitle
"llpp (history)";
5079 state
.text <- "Opening " ^
(mbtoutf8 state
.path);
5080 opendoc state
.path state
.password;
5084 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5085 Sys.set_signal
Sys.sighup
(Sys.Signal_handle
(fun _ -> reload ()));
5088 match Unix.waitpid
[Unix.WNOHANG
] ~
-1 with
5089 | exception (Unix.Unix_error
(Unix.ECHILD
, _, _)) -> ()
5090 | exception exn
-> dolog
"Unix.waitpid: %s" @@ exntos exn
5092 | _pid
, _status
-> reap ()
5094 Sys.set_signal
Sys.sigchld
(Sys.Signal_handle
(fun _ -> doreap := true));
5097 ref (if nonemptystr
!rcmdpath then remoteopen !rcmdpath else None
)
5100 let rec loop deadline
=
5106 let r = [state
.ss; state
.wsfd] in
5110 | Some fd
-> fd
:: r
5114 Glutils.redisplay
:= false;
5121 if deadline
= infinity
5123 else max
0.0 (deadline
-. now)
5128 try Unix.select
r [] [] timeout
5129 with Unix.Unix_error
(Unix.EINTR
, _, _) -> [], [], []
5134 match state
.autoscroll
with
5135 | Some step
when step
!= 0 ->
5136 if state
.slideshow
land 1 = 1
5138 if state
.slideshow
land 2 = 0
5139 then state
.slideshow
<- state
.slideshow
lor 2
5140 else if step
< 0 then prevpage () else nextpage ();
5141 deadline
+. (float (abs step
))
5144 let y = state
.y + step
in
5145 let fy = if conf
.maxhfit
then state
.winh
else 0 in
5148 then state
.maxy - fy
5149 else if y >= state
.maxy - fy then 0 else y
5158 let rec checkfds = function
5160 | fd
:: rest
when fd
= state
.ss ->
5161 let cmd = rcmd state
.ss in
5165 | fd
:: rest
when fd
= state
.wsfd ->
5169 | fd
:: rest
when Some fd
= !optrfd ->
5170 begin match remote fd
with
5171 | None
-> optrfd := remoteopen !rcmdpath;
5172 | opt -> optrfd := opt
5177 dolog
"select returned unknown descriptor";
5183 if deadline
= infinity
5187 match state
.autoscroll
with
5188 | Some step
when step
!= 0 -> deadline1
5194 match loop infinity
with
5196 Config.save leavebirdseye;
5197 if hasunsavedchanges
()
5199 | _ -> error
"umpossible - infinity reached"