6 type pipe
= (Unix.file_descr
* Unix.file_descr
);;
8 external init
: pipe
-> params
-> unit = "ml_init";;
9 external seltext
: opaque
-> (int * int * int * int) -> unit = "ml_seltext";;
10 external hassel
: opaque
-> bool = "ml_hassel";;
11 external copysel
: Unix.file_descr
-> opaque
-> unit = "ml_copysel";;
12 external getpdimrect
: int -> float array
= "ml_getpdimrect";;
13 external whatsunder
: opaque
-> int -> int -> under
= "ml_whatsunder";;
14 external markunder
: opaque
-> int -> int -> mark
-> bool = "ml_markunder";;
15 external clearmark
: opaque
-> unit = "ml_clearmark";;
16 external zoomforh
: int -> int -> int -> int -> float = "ml_zoom_for_height";;
17 external drawstr
: int -> int -> int -> string -> float = "ml_draw_string";;
18 external measurestr
: int -> string -> float = "ml_measure_string";;
19 external postprocess
:
20 opaque
-> int -> int -> int -> (int * string * int) -> int
22 external pagebbox
: opaque
-> (int * int * int * int) = "ml_getpagebox";;
23 external setaalevel
: int -> unit = "ml_setaalevel";;
24 external realloctexts
: int -> bool = "ml_realloctexts";;
25 external findlink
: opaque
-> linkdir
-> link
= "ml_findlink";;
26 external getlink
: opaque
-> int -> under
= "ml_getlink";;
27 external getlinkrect
: opaque
-> int -> irect
= "ml_getlinkrect";;
28 external getlinkcount
: opaque
-> int = "ml_getlinkcount";;
29 external findpwl
: int -> int -> pagewithlinks
= "ml_find_page_with_links"
30 external getpbo
: width
-> height
-> colorspace
-> opaque
= "ml_getpbo";;
31 external freepbo
: opaque
-> unit = "ml_freepbo";;
32 external unmappbo
: opaque
-> unit = "ml_unmappbo";;
33 external pbousable
: unit -> bool = "ml_pbo_usable";;
34 external unproject
: opaque
-> int -> int -> (int * int) option
36 external drawtile
: tileparams
-> opaque
-> unit = "ml_drawtile";;
37 external rectofblock
: opaque
-> int -> int -> float array
option
39 external begintiles
: unit -> unit = "ml_begintiles";;
40 external endtiles
: unit -> unit = "ml_endtiles";;
42 let selfexec = ref E.s
;;
44 let drawstring size x y s
=
46 Gl.enable `texture_2d
;
47 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
48 ignore
(drawstr size x y s
);
50 Gl.disable `texture_2d
;
53 let drawstring1 size x y s
=
57 let drawstring2 size x y fmt
=
58 Printf.kprintf
(drawstring size
(x
+1) (y
+size
+1)) fmt
62 dolog
"l %d dim=%d {" l
.pageno l
.pagedimno
;
63 dolog
" WxH %dx%d" l
.pagew l
.pageh
;
64 dolog
" vWxH %dx%d" l
.pagevw l
.pagevh
;
65 dolog
" pagex,y %d,%d" l
.pagex l
.pagey
;
66 dolog
" dispx,y %d,%d" l
.pagedispx l
.pagedispy
;
67 dolog
" column %d" l
.pagecol
;
71 let debugrect (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
) =
73 dolog
" x0,y0=(% f, % f)" x0 y0
;
74 dolog
" x1,y1=(% f, % f)" x1 y1
;
75 dolog
" x2,y2=(% f, % f)" x2 y2
;
76 dolog
" x3,y3=(% f, % f)" x3 y3
;
80 let isbirdseye = function Birdseye _
-> true | _
-> false;;
81 let istextentry = function Textentry _
-> true | _
-> false;;
83 let wtmode = ref false;;
84 let cxack = ref false;;
86 let pgscale h
= truncate
(float h
*. conf
.pgscale);;
89 if (conf
.scrollb
land scrollbhv
= 0)
90 || (state
.x
= 0 && state
.w
<= state
.winw
- conf
.scrollbw
)
96 if (conf
.scrollb
land scrollbvv
= 0)
101 let wadjsb w
= w
- vscrollw ();;
102 let xadjsb x
= if conf
.leftscroll
then x
+ vscrollw () else x
;;
105 fstate
.fontsize
<- n
;
106 fstate
.wwidth
<- measurestr fstate
.fontsize
"w";
107 fstate
.maxrows
<- (state
.winh
- fstate
.fontsize
- 1) / (fstate
.fontsize
+ 1);
113 Printf.kprintf prerr_endline fmt
115 Printf.kprintf ignore fmt
119 if emptystr conf
.pathlauncher
120 then print_endline state
.path
122 let re = Str.regexp
"%s" in
123 let command = Str.global_replace
re state
.path conf
.pathlauncher
in
126 Printf.eprintf
"failed to execute `%s': %s\n" command (exntos exn
);
132 type 'a t
= | Res
of 'a
| Exn
of exn
;;
140 try tempfailureretry
Unix.close fd
141 with exn
-> f
(exntos exn
)
145 try Res
(tempfailureretry
Unix.dup fd
)
150 try Res
(tempfailureretry
(Unix.dup2 fd1
) fd2
)
155 let redirectstderr () =
156 let clofail what errmsg
= dolog
"failed to close %s: %s" what errmsg
in
157 if conf
.redirectstderr
159 match Ne.res Unix.pipe
with
161 dolog
"failed to create stderr redirection pipes: %s" (exntos exn
)
164 begin match Ne.dup Unix.stderr
with
166 dolog
"failed to dup stderr: %s" (exntos exn
);
167 Ne.clo r
(clofail "pipe/r");
168 Ne.clo w
(clofail "pipe/w");
170 | Ne.Res dupstderr
->
171 begin match Ne.dup2 w
Unix.stderr
with
173 dolog
"failed to dup2 to stderr: %s" (exntos exn
);
174 Ne.clo dupstderr
(clofail "stderr duplicate");
175 Ne.clo r
(clofail "redir pipe/r");
176 Ne.clo w
(clofail "redir pipe/w");
179 state
.stderr
<- dupstderr
;
180 state
.errfd
<- Some r
;
184 state
.newerrmsgs
<- false;
185 begin match state
.errfd
with
187 begin match Ne.dup2 state
.stderr
Unix.stderr
with
189 dolog
"failed to dup2 original stderr: %s" (exntos exn
)
191 Ne.clo fd
(clofail "dup of stderr");
196 prerr_string
(Buffer.contents state
.errmsgs
);
198 Buffer.clear state
.errmsgs
;
204 let postRedisplay who
=
206 then prerr_endline
("redisplay for " ^ who
);
207 state
.redisplay
<- true;
211 let getopaque pageno
=
212 try Some
(Hashtbl.find state
.pagemap
(pageno
, state
.gen
))
213 with Not_found
-> None
216 let putopaque pageno opaque
=
217 Hashtbl.replace state
.pagemap
(pageno
, state
.gen
) opaque
220 let pagetranslatepoint l x y
=
221 let dy = y
- l
.pagedispy
in
222 let y = dy + l
.pagey
in
223 let dx = x
- l
.pagedispx
in
224 let x = dx + l
.pagex
in
228 let onppundermouse g
x y d
=
231 begin match getopaque l
.pageno
with
233 let x0 = l
.pagedispx
in
234 let x1 = x0 + l
.pagevw
in
235 let y0 = l
.pagedispy
in
236 let y1 = y0 + l
.pagevh
in
237 if y >= y0 && y <= y1 && x >= x0 && x <= x1
239 let px, py
= pagetranslatepoint l
x y in
240 match g opaque l
px py
with
253 let g opaque l
px py
=
256 match rectofblock opaque
px py
with
258 let rect = (a
.(0),a
.(2),a
.(1),a
.(2),a
.(1),a
.(3),a
.(0),a
.(3)) in
259 state
.rects
<- [l
.pageno
, l
.pageno
mod 3, rect];
260 G.postRedisplay "getunder";
263 match whatsunder opaque
px py
with
265 | under
-> Some under
267 onppundermouse g x y Unone
272 match unproject opaque
x y with
273 | Some
(x, y) -> Some
(Some
(l
.pageno
, x, y))
276 onppundermouse g x y None
;
280 state
.text
<- Printf.sprintf
"%c%s" c s
;
281 G.postRedisplay "showtext";
284 let pipesel opaque cmd
=
287 match Ne.res Unix.pipe
with
290 (Printf.sprintf
"pipesel can not create pipe: %s" (exntos exn
));
292 let doclose what fd
=
293 Ne.clo fd
(fun msg
-> dolog
"%s close failed: %s" what msg
)
296 try popen cmd
[r
, 0; w
, -1]; true
298 dolog
"can not execute %S: %s" cmd
(exntos exn
);
304 G.postRedisplay "pipesel";
306 else doclose "pipesel pipe/w" w
;
307 doclose "pipesel pipe/r" r
;
311 let g opaque l
px py
=
312 if markunder opaque
px py conf
.paxmark
315 match getopaque l
.pageno
with
317 | Some opaque
-> pipesel opaque conf
.paxcmd
322 G.postRedisplay "paxunder";
323 if conf
.paxmark
= Mark_page
326 match getopaque l
.pageno
with
328 | Some opaque
-> clearmark opaque
) state
.layout
;
330 onppundermouse g x y (fun () -> showtext '
!'
"Whoopsie daisy");
334 match Ne.res Unix.pipe
with
336 showtext '
!'
(Printf.sprintf
"pipe failed: %s" (exntos exn
))
339 Ne.clo fd
(fun msg
->
340 showtext '
!'
(Printf.sprintf
"failed to close %s: %s" cap msg
)
344 try popen conf
.selcmd
[r
, 0; w
, -1]; true
347 (Printf.sprintf
"failed to execute %s: %s"
348 conf
.selcmd
(exntos exn
));
354 let l = String.length s
in
355 let n = tempfailureretry
(Unix.write w s
0) l in
360 "failed to write %d characters to sel pipe, wrote %d"
365 (Printf.sprintf
"failed to write to sel pipe: %s"
370 clo "selstring pipe/r" r
;
371 clo "selstring pipe/w" w
;
374 let undertext = function
377 | Ulinkgoto
(pageno
, _
) -> Printf.sprintf
"%s: page %d" state
.path
(pageno
+1)
378 | Utext s
-> "font: " ^ s
379 | Uunexpected s
-> "unexpected: " ^ s
380 | Ulaunch s
-> "launch: " ^ s
381 | Unamed s
-> "named: " ^ s
382 | Uremote
(filename
, pageno
) ->
383 Printf.sprintf
"%s: page %d" filename
(pageno
+1)
384 | Uremotedest
(filename
, destname
) ->
385 Printf.sprintf
"%s: destination %S" filename destname
388 let updateunder x y =
389 match getunder x y with
390 | Unone
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
392 if conf
.underinfo
then showtext 'u'
("ri: " ^ uri
);
393 Wsi.setcursor
Wsi.CURSOR_INFO
394 | Ulinkgoto
(pageno
, _
) ->
396 then showtext 'p'
("age: " ^ string_of_int
(pageno
+1));
397 Wsi.setcursor
Wsi.CURSOR_INFO
399 if conf
.underinfo
then showtext '
f'
("ont: " ^ s
);
400 Wsi.setcursor
Wsi.CURSOR_TEXT
402 if conf
.underinfo
then showtext 'u'
("nexpected: " ^ s
);
403 Wsi.setcursor
Wsi.CURSOR_INHERIT
405 if conf
.underinfo
then showtext '
l'
("aunch: " ^ s
);
406 Wsi.setcursor
Wsi.CURSOR_INHERIT
408 if conf
.underinfo
then showtext '
n'
("amed: " ^ s
);
409 Wsi.setcursor
Wsi.CURSOR_INHERIT
410 | Uremote
(filename
, pageno
) ->
411 if conf
.underinfo
then showtext 'r'
412 (Printf.sprintf
"emote: %s (%d)" filename
(pageno
+1));
413 Wsi.setcursor
Wsi.CURSOR_INFO
414 | Uremotedest
(filename
, destname
) ->
415 if conf
.underinfo
then showtext 'r'
416 (Printf.sprintf
"emote destination: %s (%S)" filename destname
);
417 Wsi.setcursor
Wsi.CURSOR_INFO
420 let showlinktype under
=
426 let s = undertext under
in
431 let b = Buffer.create
(String.length
s + 1) in
432 Buffer.add_string
b s;
437 let intentry_with_suffix text key
=
439 if key
>= 32 && key
< 127
443 match Char.lowercase
c with
445 let text = addchar text c in
449 let text = addchar text c in
453 state
.text <- Printf.sprintf
"invalid char (%d, `%c')" key
c;
459 let n = tempfailureretry
(Unix.read fd
s 0) 4 in
460 if n != 4 then error
"incomplete read(len) = %d" n;
462 lor (Char.code
s.[0] lsl 24)
463 lor (Char.code
s.[1] lsl 16)
464 lor (Char.code
s.[2] lsl 8)
465 lor (Char.code
s.[3] lsl 0)
467 let s = String.create
len in
468 let n = tempfailureretry
(Unix.read fd
s 0) len in
469 if n != len then error
"incomplete read(data) %d vs %d" n len;
473 let btod b = if b then 1 else 0;;
476 let b = Buffer.create
16 in
477 Buffer.add_string
b "llll";
480 let s = Buffer.contents
b in
481 let n = String.length
s in
483 (* dolog "wcmd %S" (String.sub s 4 len); *)
484 s.[0] <- Char.chr
((len lsr 24) land 0xff);
485 s.[1] <- Char.chr
((len lsr 16) land 0xff);
486 s.[2] <- Char.chr
((len lsr 8) land 0xff);
487 s.[3] <- Char.chr
(len land 0xff);
488 let n'
= tempfailureretry
(Unix.write state
.sw
s 0) n in
489 if n'
!= n then error
"write failed %d vs %d" n'
n;
493 let nogeomcmds cmds
=
495 | s, [] -> emptystr
s
499 let layoutN ((columns
, coverA
, coverB
), b) y sh
=
500 let sh = sh - (hscrollh ()) in
501 let rec fold accu
n =
502 if n = Array.length
b
505 let pdimno, dx, vy
, (_
, w
, h
, xoff
) = b.(n) in
508 || n = state
.pagecount
- coverB
509 || (n - coverA
) mod columns
= columns
- 1)
515 let pagey = max
0 (y - vy
) in
516 let pagedispy = if pagey > 0 then 0 else vy
- y in
517 let pagedispx, pagex
=
519 if n = coverA
- 1 || n = state
.pagecount
- coverB
520 then state
.x + (wadjsb state
.winw
- w
) / 2
521 else dx + xoff
+ state
.x
528 let vw = wadjsb state
.winw
- pagedispx in
529 let pw = w
- pagex
in
532 let pagevh = min
(h
- pagey) (sh - pagedispy) in
533 if pagevw > 0 && pagevh > 0
544 ; pagedispx = pagedispx
545 ; pagedispy = pagedispy
557 if Array.length
b = 0
559 else List.rev
(fold [] (page_of_y
y))
562 let layoutS (columns
, b) y sh =
563 let sh = sh - hscrollh () in
564 let rec fold accu n =
565 if n = Array.length
b
568 let pdimno, px, vy
, (_
, pagew
, pageh
, xoff
) = b.(n) in
575 let x = xoff
+ state
.x in
576 let pagey = max
0 (y - vy
) in
577 let pagedispy = if pagey > 0 then 0 else vy
- y in
578 let pagedispx, pagex
=
592 let pagecolw = pagew
/columns
in
594 if pagecolw < state
.winw
595 then pagedispx + ((wadjsb state
.winw
- pagecolw) / 2)
599 let vw = wadjsb state
.winw
- pagedispx in
600 let pw = pagew
- pagex
in
603 let pagevw = min
pagevw pagecolw in
604 let pagevh = min
(pageh
- pagey) (sh - pagedispy) in
605 if pagevw > 0 && pagevh > 0
616 ; pagedispx = pagedispx
617 ; pagedispy = pagedispy
618 ; pagecol
= n mod columns
633 if nogeomcmds state
.geomcmds
635 match conf
.columns
with
636 | Csingle
b -> layoutN ((1, 0, 0), b) y sh
637 | Cmulti
c -> layoutN c y sh
638 | Csplit
s -> layoutS s y sh
643 let y = state
.y + incr
in
645 let y = min
y (state
.maxy
- (if conf
.maxhfit
then state
.winh
else 0)) in
650 let tilex = l.pagex
mod conf
.tilew
in
651 let tiley = l.pagey mod conf
.tileh
in
653 let col = l.pagex
/ conf
.tilew
in
654 let row = l.pagey / conf
.tileh
in
656 let rec rowloop row y0 dispy h
=
660 let dh = conf
.tileh
- y0 in
662 let rec colloop col x0 dispx w
=
666 let dw = conf
.tilew
- x0 in
668 let dispx'
= xadjsb dispx in
669 f col row dispx' dispy
x0 y0 dw dh;
670 colloop (col+1) 0 (dispx+dw) (w
-dw)
673 colloop col tilex l.pagedispx l.pagevw;
674 rowloop (row+1) 0 (dispy
+dh) (h
-dh)
677 if l.pagevw > 0 && l.pagevh > 0
678 then rowloop row tiley l.pagedispy l.pagevh;
681 let gettileopaque l col row =
683 l.pageno
, state
.gen
, conf
.colorspace
, conf
.angle
, l.pagew
, l.pageh
, col, row
685 try Some
(Hashtbl.find state
.tilemap
key)
686 with Not_found
-> None
689 let puttileopaque l col row gen colorspace angle opaque size elapsed
=
690 let key = l.pageno
, gen
, colorspace
, angle
, l.pagew
, l.pageh
, col, row in
691 Hashtbl.add state
.tilemap
key (opaque
, size
, elapsed
)
694 let filledrect x0 y0 x1 y1 =
695 GlArray.disable `texture_coord
;
696 Raw.sets_float state
.vraw ~pos
:0 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
697 GlArray.vertex `two state
.vraw
;
698 GlArray.draw_arrays `triangle_strip
0 4;
699 GlArray.enable `texture_coord
;
702 let linerect x0 y0 x1 y1 =
703 GlArray.disable `texture_coord
;
704 Raw.sets_float state
.vraw ~pos
:0 [| x0; y0; x0; y1; x1; y1; x1; y0 |];
705 GlArray.vertex `two state
.vraw
;
706 GlArray.draw_arrays `line_loop
0 4;
707 GlArray.enable `texture_coord
;
710 let drawtiles l color
=
713 let f col row x y tilex tiley w h
=
714 match gettileopaque l col row with
715 | Some
(opaque
, _
, t
) ->
716 let params = x, y, w
, h
, tilex, tiley in
718 then GlTex.env
(`mode `blend
);
719 drawtile
params opaque
;
721 then GlTex.env
(`mode `modulate
);
725 let s = Printf.sprintf
729 let w = measurestr fstate
.fontsize
s in
730 GlDraw.color
(0.0, 0.0, 0.0);
731 filledrect (float (x-2))
734 (float (y + fstate
.fontsize
+ 2));
735 GlDraw.color
(1.0, 1.0, 1.0);
736 drawstring fstate
.fontsize
x (y + fstate
.fontsize
- 1) s;
746 let lw = wadjsb state
.winw
- x in
749 let lh = state
.winh
- y in
753 then GlTex.env
(`mode `blend
);
754 begin match state
.checkerstexid
with
756 Gl.enable `texture_2d
;
757 GlTex.bind_texture `texture_2d id
;
761 and y1 = float (y+h
) in
763 let tw = float w /. 16.0
764 and th
= float h
/. 16.0 in
765 let tx0 = float tilex /. 16.0
766 and ty0
= float tiley /. 16.0 in
768 and ty1
= ty0
+. th
in
769 Raw.sets_float state
.vraw ~pos
:0
770 [| x0; y0; x0; y1; x1; y0; x1; y1 |];
771 Raw.sets_float state
.traw ~pos
:0
772 [| tx0; ty0
; tx0; ty1
; tx1; ty0
; tx1; ty1
|];
773 GlArray.vertex `two state
.vraw
;
774 GlArray.tex_coord `two state
.traw
;
775 GlArray.draw_arrays `triangle_strip
0 4;
776 Gl.disable `texture_2d
;
779 GlDraw.color
(1.0, 1.0, 1.0);
780 filledrect (float x) (float y) (float (x+w)) (float (y+h
));
783 then GlTex.env
(`mode `modulate
);
784 if w > 128 && h
> fstate
.fontsize
+ 10
786 let c = if conf
.invert
then 1.0 else 0.0 in
787 GlDraw.color
(c, c, c);
790 then (col*conf
.tilew
, row*conf
.tileh
)
793 drawstring2 fstate
.fontsize
x y "Loading %d [%d,%d]" l.pageno
c r
;
802 let pagevisible layout n = List.exists
(fun l -> l.pageno
= n) layout;;
804 let tilevisible1 l x y =
806 and ax1
= l.pagex
+ l.pagevw
808 and ay1
= l.pagey + l.pagevh in
812 let bx1 = min
(bx0 + conf
.tilew
) l.pagew
813 and by1
= min
(by0
+ conf
.tileh
) l.pageh
in
815 let rx0 = max
ax0 bx0
816 and ry0
= max ay0 by0
817 and rx1
= min ax1
bx1
818 and ry1
= min ay1 by1
in
820 let nonemptyintersection = rx1
> rx0 && ry1
> ry0
in
824 let tilevisible layout n x y =
825 let rec findpageinlayout m
= function
826 | l :: rest
when l.pageno
= n ->
827 tilevisible1 l x y || (
828 match conf
.columns
with
829 | Csplit
(c, _
) when c > m
-> findpageinlayout (m
+1) rest
832 | _
:: rest
-> findpageinlayout 0 rest
835 findpageinlayout 0 layout;
838 let tileready l x y =
839 tilevisible1 l x y &&
840 gettileopaque l (x/conf
.tilew
) (y/conf
.tileh
) != None
843 let tilepage n p
layout =
844 let rec loop = function
848 let f col row _ _ _ _ _ _
=
849 if state
.currently
= Idle
851 match gettileopaque l col row with
854 let x = col*conf
.tilew
855 and y = row*conf
.tileh
in
857 let w = l.pagew
- x in
861 let h = l.pageh
- y in
866 then getpbo
w h conf
.colorspace
869 wcmd "tile %s %d %d %d %d %s"
870 (~
> p
) x y w h (~
> pbo);
873 l, p
, conf
.colorspace
, conf
.angle
,
874 state
.gen
, col, row, conf
.tilew
, conf
.tileh
883 if nogeomcmds state
.geomcmds
887 let preloadlayout y =
888 let y = if y < state
.winh
then 0 else y - state
.winh
in
889 let h = state
.winh
*3 in
895 if state
.currently
!= Idle
900 begin match getopaque l.pageno
with
902 wcmd "page %d %d" l.pageno
l.pagedimno
;
903 state
.currently
<- Loading
(l, state
.gen
);
905 tilepage l.pageno opaque pages
;
910 if nogeomcmds state
.geomcmds
916 if conf
.preload && state
.currently
= Idle
917 then load (preloadlayout state
.y);
920 let layoutready layout =
921 let rec fold all ls
=
924 let seen = ref false in
925 let allvisible = ref true in
926 let foo col row _ _ _ _ _ _
=
928 allvisible := !allvisible &&
929 begin match gettileopaque l col row with
935 fold (!seen && !allvisible) rest
938 let alltilesvisible = fold true layout in
943 let y = bound
y 0 state
.maxy
in
944 let y, layout, proceed
=
945 match conf
.maxwait
with
946 | Some time
when state
.ghyll
== noghyll
->
947 begin match state
.throttle
with
949 let layout = layout y state
.winh
in
950 let ready = layoutready layout in
954 state
.throttle
<- Some
(layout, y, now
());
956 else G.postRedisplay "gotoy showall (None)";
958 | Some
(_
, _
, started
) ->
959 let dt = now
() -. started
in
962 state
.throttle
<- None
;
963 let layout = layout y state
.winh
in
965 G.postRedisplay "maxwait";
972 let layout = layout y state
.winh
in
973 if not
!wtmode || layoutready layout
974 then G.postRedisplay "gotoy ready";
980 state
.layout <- layout;
981 begin match state
.mode
with
982 | LinkNav
(Ltexact
(pageno
, linkno
)) ->
983 let rec loop = function
985 state
.mode
<- LinkNav
(Ltgendir
0)
986 | l :: _
when l.pageno
= pageno
->
987 begin match getopaque pageno
with
989 state
.mode
<- LinkNav
(Ltgendir
0)
991 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
992 if not
(x0 >= l.pagex
&& x1 <= l.pagex
+ l.pagevw
993 && y0 >= l.pagey && y1 <= l.pagey + l.pagevh)
994 then state
.mode
<- LinkNav
(Ltgendir
0)
996 | _
:: rest
-> loop rest
1001 begin match state
.mode
with
1002 | Birdseye
(conf
, leftx
, pageno
, hooverpageno
, anchor
) ->
1003 if not
(pagevisible layout pageno
)
1005 match state
.layout with
1008 state
.mode
<- Birdseye
(
1009 conf
, leftx
, l.pageno
, hooverpageno
, anchor
1012 | LinkNav
(Ltgendir dir
as lt
) ->
1014 let rec loop = function
1017 match getopaque l.pageno
with
1023 then LDfirstvisible
(l.pagex
, l.pagey, dir
)
1025 if dir
> 0 then LDfirst
else LDlast
1031 | Lnotfound
-> loop rest
1033 showlinktype (getlink opaque
n);
1034 Ltexact
(l.pageno
, n)
1038 state
.mode
<- LinkNav
linknav
1043 state
.ghyll
<- noghyll
;
1046 let mx, my
= state
.mpos
in
1051 let conttiling pageno opaque
=
1052 tilepage pageno opaque
1053 (if conf
.preload then preloadlayout state
.y else state
.layout)
1056 let gotoy_and_clear_text y =
1057 if not conf
.verbose
then state
.text <- E.s;
1061 let getanchory (n, top
, dtop
) =
1062 let y, h = getpageyh
n in
1063 if conf
.presentation
1065 let ips = calcips
h in
1066 y + truncate
(top
*.float h -. dtop
*.float ips) + ips;
1068 y + truncate
(top
*.float h -. dtop
*.float conf
.interpagespace
)
1071 let gotoanchor anchor
=
1072 gotoy (getanchory anchor
);
1076 cbput state
.hists
.nav
(getanchor
());
1080 let anchor = cbgetc state
.hists
.nav dir
in
1084 let gotoghyll1 single
y =
1085 let scroll f n a
b =
1086 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1088 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1090 then s (float f /. float a
)
1093 then 1.0 -. s ((float (f-b) /. float (n-b)))
1099 let ins = float a
*. 0.5
1100 and outs
= float (n-b) *. 0.5 in
1102 ins +. outs
+. float ones
1104 let rec set nab
y sy
=
1105 let (_N
, _A
, _B
), y =
1108 let scl = if y > sy
then 2 else -2 in
1109 let _N, _
, _
= nab
in
1110 (_N,0,_N), y+conf
.scrollstep
*scl
1112 let sum = summa
_N _A _B
in
1113 let dy = float (y - sy
) in
1117 then state
.ghyll
<- noghyll
1120 let s = scroll n _N _A _B
in
1121 let y1 = y1 +. ((s *. dy) /. sum) in
1122 gotoy_and_clear_text (truncate
y1);
1123 state
.ghyll
<- gf (n+1) y1;
1127 | Some
y'
when single
-> set nab
y' state
.y
1128 | Some
y'
-> set (_N/2, 1, 1) y' state
.y
1130 gf 0 (float state
.y)
1133 match conf
.ghyllscroll
with
1134 | Some nab
when not conf
.presentation
->
1135 if state
.ghyll
== noghyll
1136 then set nab
y state
.y
1137 else state
.ghyll
(Some
y)
1139 gotoy_and_clear_text y
1142 let gotoghyll = gotoghyll1 false;;
1144 let gotopage n top
=
1145 let y, h = getpageyh
n in
1146 let y = y + (truncate
(top
*. float h)) in
1150 let gotopage1 n top
=
1151 let y = getpagey
n in
1156 let invalidate s f =
1161 match state
.geomcmds
with
1162 | ps
, [] when emptystr ps
->
1164 state
.geomcmds
<- s, [];
1167 state
.geomcmds
<- ps
, [s, f];
1169 | ps
, (s'
, _
) :: rest
when s'
= s ->
1170 state
.geomcmds
<- ps
, ((s, f) :: rest
);
1173 state
.geomcmds
<- ps
, ((s, f) :: cmds
);
1177 Hashtbl.iter
(fun _ opaque
->
1178 wcmd "freepage %s" (~
> opaque
);
1180 Hashtbl.clear state
.pagemap
;
1184 if not
(Queue.is_empty state
.tilelru
)
1186 Queue.iter
(fun (k
, p
, s) ->
1187 wcmd "freetile %s" (~
> p
);
1188 state
.memused
<- state
.memused
- s;
1189 Hashtbl.remove state
.tilemap k
;
1191 state
.uioh#infochanged Memused
;
1192 Queue.clear state
.tilelru
;
1198 let h = truncate
(float h*.conf
.zoom
) in
1199 let d = conf
.interpagespace
lsl (if conf
.presentation
then 1 else 0) in
1203 let opendoc path password
=
1205 state
.password
<- password
;
1206 state
.gen
<- state
.gen
+ 1;
1207 state
.docinfo
<- [];
1210 setaalevel conf
.aalevel
;
1212 if emptystr state
.origin
1216 Wsi.settitle
("llpp " ^
(mbtoutf8
(Filename.basename
titlepath)));
1217 wcmd "open %d %d %s\000%s\000" (btod !wtmode) (btod !cxack) path password
;
1218 invalidate "reqlayout"
1220 wcmd "reqlayout %d %d %d %s\000"
1221 conf
.angle
(FMTE.to_int conf
.fitmodel
)
1222 (stateh state
.winh
) state
.nameddest
1227 state
.anchor <- getanchor
();
1228 opendoc state
.path state
.password
;
1232 let c = c *. conf
.colorscale
in
1236 let scalecolor2 (r
, g, b) =
1237 (r
*. conf
.colorscale
, g *. conf
.colorscale
, b *. conf
.colorscale
);
1240 let docolumns = function
1242 let a = Array.make state
.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1243 let rec loop pageno
pdimno pdim
y ph pdims
=
1244 if pageno
= state
.pagecount
1247 let pdimno, ((_
, w, h, xoff
) as pdim
), pdims
=
1249 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
1250 pdimno+1, pdim
, rest
1254 let x = max
0 (((wadjsb state
.winw
- w) / 2) - xoff
) in
1256 (if conf
.presentation
1257 then (if pageno
= 0 then calcips
h else calcips ph
+ calcips
h)
1258 else (if pageno
= 0 then 0 else conf
.interpagespace
)
1261 a.(pageno
) <- (pdimno, x, y, pdim
);
1262 loop (pageno
+1) pdimno pdim
(y + h) h pdims
1264 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 state
.pdims
;
1265 conf
.columns
<- Csingle
a;
1267 | Cmulti
((columns
, coverA
, coverB
), _
) ->
1268 let a = Array.make state
.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1269 let rec loop pageno
pdimno pdim
x y rowh pdims
=
1270 let rec fixrow m
= if m
= pageno
then () else
1271 let (pdimno, x, y, ((_
, _
, h, _
) as pdim
)) = a.(m
) in
1274 let y = y + (rowh
- h) / 2 in
1275 a.(m
) <- (pdimno, x, y, pdim
);
1279 if pageno
= state
.pagecount
1280 then fixrow (((pageno
- 1) / columns
) * columns
)
1282 let pdimno, ((_
, w, h, xoff
) as pdim
), pdims
=
1284 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
1285 pdimno+1, pdim
, rest
1290 if pageno
= coverA
- 1 || pageno
= state
.pagecount
- coverB
1292 let x = (wadjsb state
.winw
- w) / 2 in
1294 if conf
.presentation
then calcips
h else conf
.interpagespace
in
1295 x, y + ips + rowh
, h
1298 if (pageno
- coverA
) mod columns
= 0
1300 let x = max
0 (wadjsb state
.winw
- state
.w) / 2 in
1302 if conf
.presentation
1304 let ips = calcips
h in
1305 y + (if pageno
= 0 then 0 else calcips rowh
+ ips)
1307 y + (if pageno
= 0 then 0 else conf
.interpagespace
)
1311 else x, y, max rowh
h
1315 if pageno
> 1 && (pageno
- coverA
) mod columns
= 0
1318 if pageno
= columns
&& conf
.presentation
1320 let ips = calcips rowh
in
1321 for i
= 0 to pred columns
1323 let (pdimno, x, y, pdim
) = a.(i
) in
1324 a.(i
) <- (pdimno, x, y+ips, pdim
)
1330 fixrow (pageno
- columns
);
1335 a.(pageno
) <- (pdimno, x, y, pdim
);
1336 let x = x + w + xoff
*2 + conf
.interpagespace
in
1337 loop (pageno
+1) pdimno pdim
x y rowh' pdims
1339 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 0 state
.pdims
;
1340 conf
.columns
<- Cmulti
((columns
, coverA
, coverB
), a);
1343 let a = Array.make
(state
.pagecount
*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1344 let rec loop pageno
pdimno pdim
y pdims
=
1345 if pageno
= state
.pagecount
1348 let pdimno, ((_
, w, h, _
) as pdim
), pdims
=
1350 | ((pageno'
, _
, _
, _
) as pdim
) :: rest
when pageno'
= pageno
->
1351 pdimno+1, pdim
, rest
1356 let rec loop1 n x y =
1357 if n = c then y else (
1358 a.(pageno
*c + n) <- (pdimno, x, y, pdim
);
1359 loop1 (n+1) (x+cw) (y + h + conf
.interpagespace
)
1362 let y = loop1 0 0 y in
1363 loop (pageno
+1) pdimno pdim
y pdims
1365 loop 0 ~
-1 (-1,-1,-1,-1) 0 state
.pdims
;
1366 conf
.columns
<- Csplit
(c, a);
1370 docolumns conf
.columns
;
1371 state
.maxy
<- calcheight
();
1372 if state
.reprf
== noreprf
1374 match state
.mode
with
1375 | Birdseye
(_
, _
, pageno
, _
, _
) ->
1376 let y, h = getpageyh pageno
in
1377 let top = (state
.winh
- h) / 2 in
1378 gotoy (max
0 (y - top))
1379 | _
-> gotoanchor state
.anchor
1383 state
.reprf
<- noreprf
;
1388 GlDraw.viewport
0 0 w h;
1389 let firsttime = state
.geomcmds
== firstgeomcmds
in
1390 if not
firsttime && nogeomcmds state
.geomcmds
1391 then state
.anchor <- getanchor
();
1394 let w = wadjsb (truncate
(float w *. conf
.zoom
)) in
1397 setfontsize fstate
.fontsize
;
1398 GlMat.mode `modelview
;
1399 GlMat.load_identity
();
1401 GlMat.mode `projection
;
1402 GlMat.load_identity
();
1403 GlMat.rotate ~
x:1.0 ~angle
:180.0 ();
1404 GlMat.translate ~
x:~
-.1.0 ~
y:~
-.1.0 ();
1405 GlMat.scale3
(2.0 /. float state
.winw
, 2.0 /. float state
.winh
, 1.0);
1410 else float state
.x /. float state
.w
1412 invalidate "geometry"
1416 then state
.x <- truncate
(relx *. float w);
1418 match conf
.columns
with
1420 | Cmulti
((c, _
, _
), _
) -> (w - (c-1)*conf
.interpagespace
) / c
1421 | Csplit
(c, _
) -> w * c
1423 wcmd "geometry %d %d %d"
1424 w (stateh h) (FMTE.to_int conf
.fitmodel
)
1429 let len = String.length state
.text in
1430 let x0 = xadjsb 0 in
1433 match state
.mode
with
1434 | Textentry _
| View
| LinkNav _
->
1435 let h, _
, _
= state
.uioh#scrollpw
in
1440 filledrect x (float (state
.winh
- (fstate
.fontsize
+ 4) - hscrollh))
1441 (x+.w) (float (state
.winh
- hscrollh))
1444 let w = float (wadjsb state
.winw
- 1) in
1445 if state
.progress
>= 0.0 && state
.progress
< 1.0
1447 GlDraw.color
(0.3, 0.3, 0.3);
1448 let w1 = w *. state
.progress
in
1450 GlDraw.color
(0.0, 0.0, 0.0);
1451 rect (float x0+.w1) (float x0+.w-.w1)
1454 GlDraw.color
(0.0, 0.0, 0.0);
1458 GlDraw.color
(1.0, 1.0, 1.0);
1459 drawstring fstate
.fontsize
1460 (if conf
.leftscroll
then x0 else x0 + if len > 0 then 8 else 2)
1461 (state
.winh
- hscrollh - 5) s;
1464 match state
.mode
with
1465 | Textentry
((prefix
, text, _
, _
, _
, _
), _
) ->
1469 Printf.sprintf
"%s%s_ [%s]" prefix
text state
.text
1471 Printf.sprintf
"%s%s_" prefix
text
1480 if not
(istextentry state
.mode
) && state
.uioh#eformsgs
1482 let s1 = "(press 'e' to review error messasges)" in
1483 if nonemptystr
s then s ^
" " ^
s1 else s1
1493 let len = Queue.length state
.tilelru
in
1495 match state
.throttle
with
1498 then preloadlayout state
.y
1500 | Some
(layout, _
, _
) ->
1504 if state
.memused
<= conf
.memlimit
1509 let (k
, p
, s) as lruitem
= Queue.pop state
.tilelru
in
1510 let n, gen
, colorspace
, angle
, pagew
, pageh
, col, row = k
in
1511 let (_
, pw, ph
, _
) = getpagedim
n in
1514 && colorspace
= conf
.colorspace
1515 && angle
= conf
.angle
1519 let x = col*conf
.tilew
1520 and y = row*conf
.tileh
in
1521 tilevisible (Lazy.force_val
layout) n x y
1523 then Queue.push lruitem state
.tilelru
1526 wcmd "freetile %s" (~
> p
);
1527 state
.memused
<- state
.memused
- s;
1528 state
.uioh#infochanged Memused
;
1529 Hashtbl.remove state
.tilemap k
;
1537 let logcurrently = function
1538 | Idle
-> dolog
"Idle"
1539 | Loading
(l, gen
) ->
1540 dolog
"Loading %d gen=%d curgen=%d" l.pageno gen state
.gen
1541 | Tiling
(l, pageopaque
, colorspace
, angle
, gen
, col, row, tilew
, tileh
) ->
1543 "Tiling %d[%d,%d] page=%s cs=%s angle"
1544 l.pageno
col row (~
> pageopaque
)
1545 (CSTE.to_string colorspace
)
1547 dolog
"gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
1548 angle gen conf
.angle state
.gen
1550 conf
.tilew conf
.tileh
1557 let r = Str.regexp
" " in
1558 fun s -> Str.bounded_split
r s 2;
1561 let onpagerect pageno
f =
1563 match conf
.columns
with
1564 | Cmulti
(_
, b) -> b
1566 | Csplit
(_
, b) -> b
1568 if pageno
>= 0 && pageno
< Array.length
b
1570 let (_
, _
, _
, (w, h, _
, _
)) = b.(pageno
) in
1574 let gotopagexy1 pageno
x y =
1575 let _,w1,h1
,leftx
= getpagedim pageno
in
1576 let top = y /. (float h1
) in
1577 let left = x /. (float w1) in
1578 let py, w, h = getpageywh pageno
in
1579 let wh = state
.winh
- hscrollh () in
1580 let x = left *. (float w) in
1581 let x = leftx
+ state
.x + truncate
x in
1583 if x < 0 || x >= wadjsb state
.winw
1587 let pdy = truncate
(top *. float h) in
1588 let y'
= py + pdy in
1589 let dy = y'
- state
.y in
1591 if x != state
.x || not
(dy > 0 && dy < wh)
1593 if conf
.presentation
1595 if abs
(py - y'
) > wh
1602 if state
.x != sx || state
.y != sy
1607 let ww = wadjsb state
.winw
in
1609 and qy
= pdy / wh in
1611 and y = py + qy
* wh in
1612 let x = if -x + ww > w1 then -(w1-ww) else x
1613 and y'
= if y + wh > state
.maxy
then state
.maxy
- wh else y in
1615 if conf
.presentation
1617 if abs
(py - y'
) > wh
1627 gotoy_and_clear_text y;
1629 else gotoy_and_clear_text state
.y;
1632 let gotopagexy pageno
x y =
1633 match state
.mode
with
1634 | Birdseye
_ -> gotopage pageno
0.0
1635 | _ -> gotopagexy1 pageno
x y
1639 (* dolog "%S" cmds; *)
1640 let cl = splitatspace cmds
in
1642 try Scanf.sscanf
s fmt
f
1644 dolog
"error processing '%S': %s" cmds
(exntos exn
);
1647 let addoutline outline
=
1648 match state
.currently
with
1649 | Outlining outlines
->
1650 state
.currently
<- Outlining
(outline
:: outlines
)
1651 | Idle
-> state
.currently
<- Outlining
[outline
]
1653 dolog
"invalid outlining state";
1654 logcurrently currently
1658 state
.uioh#infochanged Pdim
;
1661 | "clearrects" :: [] ->
1662 state
.rects
<- state
.rects1
;
1663 G.postRedisplay "clearrects";
1665 | "continue" :: args
:: [] ->
1666 let n = scan args
"%u" (fun n -> n) in
1667 state
.pagecount
<- n;
1668 begin match state
.currently
with
1670 state
.currently
<- Idle
;
1671 state
.outlines
<- Array.of_list
(List.rev
l)
1675 let cur, cmds
= state
.geomcmds
in
1677 then failwith
"umpossible";
1679 begin match List.rev cmds
with
1681 state
.geomcmds
<- E.s, [];
1682 state
.throttle
<- None
;
1686 state
.geomcmds
<- s, List.rev rest
;
1688 if conf
.maxwait
= None
&& not
!wtmode
1689 then G.postRedisplay "continue";
1691 | "title" :: args
:: [] ->
1695 | "msg" :: args
:: [] ->
1698 | "vmsg" :: args
:: [] ->
1700 then showtext ' ' args
1702 | "emsg" :: args
:: [] ->
1703 Buffer.add_string state
.errmsgs args
;
1704 state
.newerrmsgs
<- true;
1705 G.postRedisplay "error message"
1707 | "progress" :: args
:: [] ->
1708 let progress, text =
1711 f, String.sub args pos
(String.length args
- pos
))
1714 state
.progress <- progress;
1715 G.postRedisplay "progress"
1717 | "firstmatch" :: args
:: [] ->
1718 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
1719 scan args
"%u %d %f %f %f %f %f %f %f %f"
1720 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
1721 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
1723 let xoff = float (xadjsb 0) in
1727 and x3
= x3
+. xoff in
1728 let y = (getpagey
pageno) + truncate
y0 in
1731 state
.rects1
<- [pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)]
1733 | "match" :: args
:: [] ->
1734 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
1735 scan args
"%u %d %f %f %f %f %f %f %f %f"
1736 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
1737 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
1739 let xoff = float (xadjsb 0) in
1743 and x3
= x3
+. xoff in
1745 (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) :: state
.rects1
1747 | "page" :: args
:: [] ->
1748 let pageopaques, t
= scan args
"%s %f" (fun p t
-> p
, t
) in
1749 let pageopaque = ~
< pageopaques in
1750 begin match state
.currently
with
1751 | Loading
(l, gen
) ->
1752 vlog "page %d took %f sec" l.pageno t
;
1753 Hashtbl.replace state
.pagemap
(l.pageno, gen
) pageopaque;
1754 begin match state
.throttle
with
1756 let preloadedpages =
1758 then preloadlayout state
.y
1763 List.fold_left
(fun s l -> IntSet.add
l.pageno s)
1764 IntSet.empty
preloadedpages
1767 Hashtbl.fold (fun ((pageno, _) as key) opaque
accu ->
1768 if not
(IntSet.mem
pageno set)
1770 wcmd "freepage %s" (~
> opaque
);
1776 List.iter
(Hashtbl.remove state
.pagemap
) evictedpages;
1779 state
.currently
<- Idle
;
1782 tilepage l.pageno pageopaque state
.layout;
1784 load preloadedpages;
1785 if pagevisible state
.layout l.pageno
1786 && layoutready state
.layout
1787 then G.postRedisplay "page";
1790 | Some
(layout, _, _) ->
1791 state
.currently
<- Idle
;
1792 tilepage l.pageno pageopaque layout;
1797 dolog
"Inconsistent loading state";
1798 logcurrently state
.currently
;
1802 | "tile" :: args
:: [] ->
1803 let (x, y, opaques
, size
, t
) =
1804 scan args
"%u %u %s %u %f"
1805 (fun x y p size t
-> (x, y, p
, size
, t
))
1807 let opaque = ~
< opaques
in
1808 begin match state
.currently
with
1809 | Tiling
(l, pageopaque, cs
, angle
, gen
, col, row, tilew
, tileh
) ->
1810 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t
;
1813 if tilew
!= conf
.tilew
|| tileh
!= conf
.tileh
1815 wcmd "freetile %s" (~
> opaque);
1816 state
.currently
<- Idle
;
1820 puttileopaque l col row gen cs angle
opaque size t
;
1821 state
.memused
<- state
.memused
+ size
;
1822 state
.uioh#infochanged Memused
;
1824 Queue.push
((l.pageno, gen
, cs
, angle
, l.pagew
, l.pageh
, col, row),
1825 opaque, size
) state
.tilelru
;
1828 match state
.throttle
with
1829 | None
-> state
.layout
1830 | Some
(layout, _, _) -> layout
1833 state
.currently
<- Idle
;
1835 && conf
.colorspace
= cs
1836 && conf
.angle
= angle
1837 && tilevisible layout l.pageno x y
1838 then conttiling l.pageno pageopaque;
1840 begin match state
.throttle
with
1842 preload state
.layout;
1844 && conf
.colorspace
= cs
1845 && conf
.angle
= angle
1846 && tilevisible state
.layout l.pageno x y
1847 && (not
!wtmode || layoutready state
.layout)
1848 then G.postRedisplay "tile nothrottle";
1850 | Some
(layout, y, _) ->
1851 let ready = layoutready layout in
1855 state
.layout <- layout;
1856 state
.throttle
<- None
;
1857 G.postRedisplay "throttle";
1864 dolog
"Inconsistent tiling state";
1865 logcurrently state
.currently
;
1869 | "pdim" :: args
:: [] ->
1870 let (n, w, h, _) as pdim
=
1871 scan args
"%u %u %u %u" (fun n w h x -> n, w, h, x)
1874 match conf
.fitmodel
, conf
.columns
with
1875 | (FitPage
| FitProportional
), Csplit
_ -> (n, w, h, 0)
1878 state
.uioh#infochanged Pdim
;
1879 state
.pdims
<- pdim :: state
.pdims
1881 | "o" :: args
:: [] ->
1882 let (l, n, t
, h, pos
) =
1883 scan args
"%u %u %d %u %n"
1884 (fun l n t
h pos
-> l, n, t
, h, pos
)
1886 let s = String.sub args pos
(String.length args
- pos
) in
1887 addoutline (s, l, Oanchor
(n, float t
/. float h, 0.0))
1889 | "ou" :: args
:: [] ->
1890 let (l, len, pos
) = scan args
"%u %u %n" (fun l len pos
-> l, len, pos
) in
1891 let s = String.sub args pos
len in
1892 let pos2 = pos
+ len + 1 in
1893 let uri = String.sub args
pos2 (String.length args
- pos2) in
1894 addoutline (s, l, Ouri
uri)
1896 | "on" :: args
:: [] ->
1897 let (l, pos
) = scan args
"%u %n" (fun l pos
-> l, pos
) in
1898 let s = String.sub args pos
(String.length args
- pos
) in
1899 addoutline (s, l, Onone
)
1901 | "a" :: args
:: [] ->
1903 scan args
"%u %d %d" (fun n l t
-> n, l, t
)
1905 state
.reprf
<- (fun () -> gotopagexy n (float l) (float t
))
1907 | "info" :: args
:: [] ->
1908 state
.docinfo
<- (1, args
) :: state
.docinfo
1910 | "infoend" :: [] ->
1911 state
.uioh#infochanged Docinfo
;
1912 state
.docinfo
<- List.rev state
.docinfo
1915 error
"unknown cmd `%S'" cmds
1920 let action = function
1921 | HCprev
-> cbget cb ~
-1
1922 | HCnext
-> cbget cb
1
1923 | HCfirst
-> cbget cb ~
-(cb
.rc)
1924 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
1925 and cancel
() = cb
.rc <- rc
1929 let search pattern forward
=
1930 match conf
.columns
with
1932 showtext '
!'
"searching does not work properly in split columns mode"
1934 if nonemptystr pattern
1937 match state
.layout with
1940 l.pageno, (l.pagey + if forward
then 0 else 0*l.pagevh)
1942 wcmd "search %d %d %d %d,%s\000"
1943 (btod conf
.icase
) pn py (btod forward
) pattern
;
1946 let intentry text key =
1948 if key >= 32 && key < 127
1954 let text = addchar text c in
1958 state
.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
1962 let linknentry text key =
1964 if key >= 32 && key < 127
1970 let text = addchar text c in
1974 state
.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
1982 let l = String.length
s in
1983 let rec loop pos
n = if pos
= l then n else
1984 let m = Char.code
s.[pos
] - (if pos
= 0 && l > 1 then 96 else 97) in
1985 loop (pos
+1) (n*26 + m)
1988 let rec loop n = function
1991 match getopaque l.pageno with
1992 | None
-> loop n rest
1994 let m = getlinkcount
opaque in
1997 let under = getlink
opaque n in
2000 else loop (n-m) rest
2002 loop n state
.layout;
2006 let textentry text key =
2007 if key land 0xff00 = 0xff00
2009 else TEcont
(text ^ toutf8
key)
2012 let reqlayout angle fitmodel
=
2013 match state
.throttle
with
2015 if nogeomcmds state
.geomcmds
2016 then state
.anchor <- getanchor
();
2017 conf
.angle
<- angle
mod 360;
2020 match state
.mode
with
2021 | LinkNav
_ -> state
.mode
<- View
2024 conf
.fitmodel
<- fitmodel
;
2025 invalidate "reqlayout"
2027 wcmd "reqlayout %d %d %d"
2028 conf
.angle
(FMTE.to_int conf
.fitmodel
) (stateh state
.winh
)
2033 let settrim trimmargins trimfuzz
=
2034 if nogeomcmds state
.geomcmds
2035 then state
.anchor <- getanchor
();
2036 conf
.trimmargins
<- trimmargins
;
2037 conf
.trimfuzz
<- trimfuzz
;
2038 let x0, y0, x1, y1 = trimfuzz
in
2039 invalidate "settrim"
2041 wcmd "settrim %d %d %d %d %d" (btod conf
.trimmargins
) x0 y0 x1 y1);
2046 match state
.throttle
with
2048 let zoom = max
0.0001 zoom in
2049 if zoom <> conf
.zoom
2051 state
.prevzoom
<- (conf
.zoom, state
.x);
2053 reshape state
.winw state
.winh
;
2054 state
.text <- Printf.sprintf
"zoom is now %-5.2f" (zoom *. 100.0);
2057 | Some
(layout, y, started
) ->
2059 match conf
.maxwait
with
2063 let dt = now
() -. started
in
2071 let setcolumns mode columns coverA coverB
=
2072 state
.prevcolumns
<- Some
(conf
.columns
, conf
.zoom);
2076 then showtext '
!'
"split mode doesn't work in bird's eye"
2078 conf
.columns
<- Csplit
(-columns
, E.a);
2086 conf
.columns
<- Csingle
E.a;
2091 conf
.columns
<- Cmulti
((columns
, coverA
, coverB
), E.a);
2095 reshape state
.winw state
.winh
;
2098 let resetmstate () =
2099 state
.mstate
<- Mnone
;
2100 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
2103 let enterbirdseye () =
2104 let zoom = float conf
.thumbw
/. float state
.winw
in
2105 let birdseyepageno =
2106 let cy = state
.winh
/ 2 in
2110 let rec fold best
= function
2113 let d = cy - (l.pagedispy + l.pagevh/2)
2114 and dbest
= cy - (best
.pagedispy + best
.pagevh/2) in
2115 if abs
d < abs dbest
2122 state
.mode
<- Birdseye
(
2123 { conf
with zoom = conf
.zoom }, state
.x, birdseyepageno, -1, getanchor
()
2127 conf
.presentation
<- false;
2128 conf
.interpagespace
<- 10;
2129 conf
.hlinks
<- false;
2130 conf
.fitmodel
<- FitProportional
;
2132 conf
.maxwait
<- None
;
2134 match conf
.beyecolumns
with
2137 Cmulti
((c, 0, 0), E.a)
2138 | None
-> Csingle
E.a
2142 state
.text <- Printf.sprintf
"birds eye mode on (zoom %3.1f%%)"
2147 reshape state
.winw state
.winh
;
2150 let leavebirdseye (c, leftx
, pageno, _, anchor) goback
=
2152 conf
.zoom <- c.zoom;
2153 conf
.presentation
<- c.presentation
;
2154 conf
.interpagespace
<- c.interpagespace
;
2155 conf
.maxwait
<- c.maxwait
;
2156 conf
.hlinks
<- c.hlinks
;
2157 conf
.fitmodel
<- c.fitmodel
;
2158 conf
.beyecolumns
<- (
2159 match conf
.columns
with
2160 | Cmulti
((c, _, _), _) -> Some
c
2162 | Csplit
_ -> failwith
"leaving bird's eye split mode"
2165 match c.columns
with
2166 | Cmulti
(c, _) -> Cmulti
(c, E.a)
2167 | Csingle
_ -> Csingle
E.a
2168 | Csplit
(c, _) -> Csplit
(c, E.a)
2172 state
.text <- Printf.sprintf
"birds eye mode off (zoom %3.1f%%)"
2175 reshape state
.winw state
.winh
;
2176 state
.anchor <- if goback
then anchor else (pageno, 0.0, 1.0);
2180 let togglebirdseye () =
2181 match state
.mode
with
2182 | Birdseye vals
-> leavebirdseye vals
true
2183 | View
-> enterbirdseye ()
2187 let upbirdseye incr
(conf
, leftx
, pageno, hooverpageno
, anchor) =
2188 let pageno = max
0 (pageno - incr
) in
2189 let rec loop = function
2190 | [] -> gotopage1 pageno 0
2191 | l :: _ when l.pageno = pageno ->
2192 if l.pagedispy >= 0 && l.pagey = 0
2193 then G.postRedisplay "upbirdseye"
2194 else gotopage1 pageno 0
2195 | _ :: rest
-> loop rest
2198 state
.mode
<- Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor)
2201 let downbirdseye incr
(conf
, leftx
, pageno, hooverpageno
, anchor) =
2202 let pageno = min
(state
.pagecount
- 1) (pageno + incr
) in
2203 state
.mode
<- Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor);
2204 let rec loop = function
2206 let y, h = getpageyh
pageno in
2207 let dy = (y - state
.y) - (state
.winh
- h - conf
.interpagespace
) in
2209 | l :: _ when l.pageno = pageno ->
2210 if l.pagevh != l.pageh
2211 then gotoy (clamp (l.pageh
- l.pagevh + conf
.interpagespace
))
2212 else G.postRedisplay "downbirdseye"
2213 | _ :: rest
-> loop rest
2218 let boundastep h step
=
2220 then bound step ~
-h 0
2224 let optentry mode
_ key =
2225 let btos b = if b then "on" else "off" in
2226 if key >= 32 && key < 127
2228 let c = Char.chr
key in
2232 try conf
.scrollstep
<- int_of_string
s with exc
->
2233 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2235 TEswitch
("scroll step: ", E.s, None
, intentry, ondone, true)
2240 conf
.autoscrollstep
<- boundastep state
.winh
(int_of_string
s);
2241 if state
.autoscroll
<> None
2242 then state
.autoscroll
<- Some conf
.autoscrollstep
2244 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2246 TEswitch
("auto scroll step: ", E.s, None
, intentry, ondone, true)
2251 let n, a, b = multicolumns_of_string
s in
2252 setcolumns mode
n a b;
2254 state
.text <- Printf.sprintf
"bad columns `%s': %s" s (exntos exc
)
2256 TEswitch
("columns: ", E.s, None
, textentry, ondone, true)
2261 let zoom = float (int_of_string
s) /. 100.0 in
2264 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2266 TEswitch
("zoom: ", E.s, None
, intentry, ondone, true)
2271 conf
.thumbw
<- bound
(int_of_string
s) 2 4096;
2273 Printf.sprintf
"thumbnail width is set to %d" conf
.thumbw
;
2274 begin match mode
with
2276 leavebirdseye beye
false;
2281 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2283 TEswitch
("thumbnail width: ", E.s, None
, intentry, ondone, true)
2288 Some
(int_of_string
s)
2290 state
.text <- Printf.sprintf
"bad integer `%s': %s"
2294 | Some angle
-> reqlayout angle conf
.fitmodel
2297 TEswitch
("rotation: ", E.s, None
, intentry, ondone, true)
2300 conf
.icase
<- not conf
.icase
;
2301 TEdone
("case insensitive search " ^
(btos conf
.icase
))
2304 conf
.preload <- not conf
.preload;
2306 TEdone
("preload " ^
(btos conf
.preload))
2309 conf
.verbose
<- not conf
.verbose
;
2310 TEdone
("verbose " ^
(btos conf
.verbose
))
2313 conf
.debug
<- not conf
.debug
;
2314 TEdone
("debug " ^
(btos conf
.debug
))
2317 conf
.maxhfit
<- not conf
.maxhfit
;
2318 state
.maxy
<- calcheight
();
2319 TEdone
("maxhfit " ^
(btos conf
.maxhfit
))
2322 conf
.crophack
<- not conf
.crophack
;
2323 TEdone
("crophack " ^
btos conf
.crophack
)
2327 match conf
.maxwait
with
2329 conf
.maxwait
<- Some infinity
;
2330 "always wait for page to complete"
2332 conf
.maxwait
<- None
;
2333 "show placeholder if page is not ready"
2338 conf
.underinfo
<- not conf
.underinfo
;
2339 TEdone
("underinfo " ^
btos conf
.underinfo
)
2342 conf
.savebmarks
<- not conf
.savebmarks
;
2343 TEdone
("persistent bookmarks " ^
btos conf
.savebmarks
)
2349 match state
.layout with
2354 conf
.interpagespace
<- int_of_string
s;
2355 docolumns conf
.columns
;
2356 state
.maxy
<- calcheight
();
2357 let y = getpagey
pageno in
2360 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2362 TEswitch
("vertical margin: ", E.s, None
, intentry, ondone, true)
2366 match conf
.fitmodel
with
2367 | FitProportional
-> FitWidth
2368 | _ -> FitProportional
2370 reqlayout conf
.angle
fm;
2371 TEdone
("proportional display " ^
btos (fm == FitProportional
))
2374 settrim (not conf
.trimmargins
) conf
.trimfuzz
;
2375 TEdone
("trim margins " ^
btos conf
.trimmargins
)
2378 conf
.invert
<- not conf
.invert
;
2379 TEdone
("invert colors " ^
btos conf
.invert
)
2383 cbput state
.hists
.sel
s;
2386 TEswitch
("selection command: ", E.s, Some
(onhist state
.hists
.sel
),
2387 textentry, ondone, true)
2391 then conf
.pax
<- Some
(ref (0.0, 0, 0))
2392 else conf
.pax
<- None
;
2393 TEdone
("PAX " ^
btos (conf
.pax
!= None
))
2396 state
.text <- Printf.sprintf
"bad option %d `%c'" key c;
2402 class type lvsource
= object
2403 method getitemcount
: int
2404 method getitem
: int -> (string * int)
2405 method hasaction
: int -> bool
2413 method getactive
: int
2414 method getfirst
: int
2416 method getminfo
: (int * int) array
2419 class virtual lvsourcebase
= object
2420 val mutable m_active
= 0
2421 val mutable m_first
= 0
2422 val mutable m_pan
= 0
2423 method getactive
= m_active
2424 method getfirst
= m_first
2425 method getpan
= m_pan
2426 method getminfo
: (int * int) array
= E.a
2429 let withoutlastutf8 s =
2430 let len = String.length
s in
2438 let b = Char.code
s.[pos
] in
2439 if b land 0b11000000 = 0b11000000
2444 if Char.code
s.[len-1] land 0x80 = 0
2448 String.sub
s 0 first;
2451 let textentrykeyboard
2452 key _mask
((c, text, opthist
, onkey
, ondone, cancelonempty
), onleave
) =
2454 if key >= 0xffb0 && key <= 0xffb9
2455 then key - 0xffb0 + 48 else key
2458 state
.mode
<- Textentry
(te
, onleave
);
2461 G.postRedisplay "textentrykeyboard enttext";
2463 let histaction cmd
=
2466 | Some
(action, _) ->
2467 state
.mode
<- Textentry
(
2468 (c, action cmd
, opthist
, onkey
, ondone, cancelonempty
), onleave
2470 G.postRedisplay "textentry histaction"
2473 | 0xff08 -> (* backspace *)
2474 if emptystr
text && cancelonempty
2477 G.postRedisplay "textentrykeyboard after cancel";
2480 let s = withoutlastutf8 text in
2481 enttext (c, s, opthist
, onkey
, ondone, cancelonempty
)
2483 | 0xff0d | 0xff8d -> (* (kp) enter *)
2486 G.postRedisplay "textentrykeyboard after confirm"
2488 | 0xff52 | 0xff97 -> histaction HCprev
(* (kp) up *)
2489 | 0xff54 | 0xff99 -> histaction HCnext
(* (kp) down *)
2490 | 0xff50 | 0xff95 -> histaction HCfirst
(* (kp) home) *)
2491 | 0xff57 | 0xff9c -> histaction HClast
(* (kp) end *)
2493 | 0xff1b -> (* escape*)
2496 begin match opthist
with
2498 | Some
(_, onhistcancel
) -> onhistcancel
()
2502 G.postRedisplay "textentrykeyboard after cancel2"
2505 enttext (c, E.s, opthist
, onkey
, ondone, cancelonempty
)
2508 | 0xff9f | 0xffff -> () (* delete *)
2511 && key land 0xff00 != 0xff00 (* keyboard *)
2512 && key land 0xfe00 != 0xfe00 (* xkb *)
2513 && key land 0xfd00 != 0xfd00 (* 3270 *)
2515 begin match onkey
text key with
2519 G.postRedisplay "textentrykeyboard after confirm2";
2522 enttext (c, text, opthist
, onkey
, ondone, cancelonempty
);
2526 G.postRedisplay "textentrykeyboard after cancel3"
2529 state
.mode
<- Textentry
(te
, onleave
);
2530 G.postRedisplay "textentrykeyboard switch";
2534 vlog "unhandled key %s" (Wsi.keyname
key)
2537 let firstof first active
=
2538 if first > active
|| abs
(first - active
) > fstate
.maxrows
- 1
2539 then max
0 (active
- (fstate
.maxrows
/2))
2543 let calcfirst first active
=
2546 let rows = active
- first in
2547 if rows > fstate
.maxrows
then active
- fstate
.maxrows
else first
2551 let scrollph y maxy
=
2552 let sh = float (maxy
+ state
.winh
) /. float state
.winh
in
2553 let sh = float state
.winh
/. sh in
2554 let sh = max
sh (float conf
.scrollh
) in
2556 let percent = float y /. float maxy
in
2557 let position = (float state
.winh
-. sh) *. percent in
2560 if position +. sh > float state
.winh
2561 then float state
.winh
-. sh
2567 let coe s = (s :> uioh
);;
2569 class listview ~zebra ~helpmode ~
(source
:lvsource
) ~trusted ~modehash
=
2571 val m_pan
= source#getpan
2572 val m_first
= source#getfirst
2573 val m_active
= source#getactive
2575 val m_prev_uioh
= state
.uioh
2577 method private elemunder
y =
2581 let n = y / (fstate
.fontsize
+1) in
2582 if m_first
+ n < source#getitemcount
2584 if source#hasaction
(m_first
+ n)
2585 then Some
(m_first
+ n)
2592 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
2593 GlDraw.color
(0., 0., 0.) ~alpha
:0.85;
2594 filledrect 0. 0. (float state
.winw
) (float state
.winh
);
2595 GlDraw.color
(1., 1., 1.);
2596 Gl.enable `texture_2d
;
2597 let fs = fstate
.fontsize
in
2599 let hw = (wadjsb (xadjsb state
.winw
))/3 in
2600 let ww = fstate
.wwidth
in
2601 let tabw = 17.0*.ww in
2602 let itemcount = source#getitemcount
in
2603 let minfo = source#getminfo
in
2606 then float (xadjsb 0), float (state
.winw
- 1)
2607 else 0.0, float (state
.winw
- conf
.scrollbw
- 1)
2610 if (row - m_first
) > fstate
.maxrows
2613 if row >= 0 && row < itemcount
2615 let (s, level
) = source#getitem
row in
2616 let y = (row - m_first
) * nfs in
2618 (if conf
.leftscroll
then float (xadjsb 0) else 5.0)
2619 +. (float (level
+ m_pan
)) *. ww in
2622 (let c = if row land 1 = 0 then 1.0 else 0.92 in (c,c,c));
2626 Gl.disable `texture_2d
;
2627 let alpha = if source#hasaction
row then 0.9 else 0.3 in
2628 GlDraw.color
(1., 1., 1.) ~
alpha;
2629 linerect (x0 +. 1.) (float (y + 1)) (x1) (float (y + fs + 3));
2630 Gl.enable `texture_2d
;
2633 if zebra
&& row land 1 = 1
2637 GlDraw.color
(c,c,c);
2638 let drawtabularstring s =
2640 let x'
= truncate
(x0 +. x) in
2641 let pos = nindex
s '
\000'
in
2643 then drawstring1 fs x'
(y+nfs) s
2645 let s1 = String.sub
s 0 pos
2646 and s2
= String.sub
s (pos+1) (String.length
s - pos - 1) in
2651 let s'
= withoutlastutf8 s in
2652 let s = s' ^
"\xe2\x80\xa6" in
2653 let w = measurestr
fs s in
2654 if float x'
+. w +. ww < float (hw + x'
)
2659 if float x'
+. ww +. measurestr
fs s1 > float (hw + x'
)
2663 ignore
(drawstring1 fs x'
(y+nfs) s1);
2664 drawstring1 fs (hw + x'
) (y+nfs) s2
2668 let x = if helpmode
&& row > 0 then x +. ww else x in
2669 let tabpos = nindex
s '
\t'
in
2672 let len = String.length
s - tabpos - 1 in
2673 let s1 = String.sub
s 0 tabpos
2674 and s2
= String.sub
s (tabpos + 1) len in
2675 let nx = drawstr x s1 in
2677 let x = x +. (max
tabw sw) in
2680 let len = String.length
s - 2 in
2681 if len > 0 && s.[0] = '
\xc2'
&& s.[1] = '
\xb7'
2683 let s = String.sub
s 2 len in
2684 let x = if not helpmode
then x +. ww else x in
2685 GlDraw.color
(1.2, 1.2, 1.2);
2686 let vinc = drawstring1 (fs+fs/4)
2687 (truncate
(x -. ww)) (y+nfs) s in
2688 GlDraw.color
(1., 1., 1.);
2689 vinc +. (float fs *. 0.8)
2695 ignore
(drawtabularstring s);
2701 GlDraw.color
(1.0, 1.0, 1.0) ~
alpha:0.5;
2703 if (row - m_first
) > fstate
.maxrows
2706 if row >= 0 && row < itemcount
2708 let (s, level
) = source#getitem
row in
2709 let pos0 = nindex
s '
\000'
in
2710 let y = (row - m_first
) * nfs in
2711 let x = float (level
+ m_pan
) *. ww in
2712 let (first, last
) = minfo.(row) in
2714 if pos0 > 0 && first > pos0
2715 then String.sub
s (pos0+1) (first-pos0-1)
2716 else String.sub
s 0 first
2718 let suffix = String.sub
s first (last
- first) in
2719 let w1 = measurestr fstate
.fontsize
prefix in
2720 let w2 = measurestr fstate
.fontsize
suffix in
2721 let x = x +. if conf
.leftscroll
then float (xadjsb 5) else 5.0 in
2722 let x = if pos0 > 0 && first > pos0 then x +. float hw else x in
2724 and y0 = float (y+2) in
2726 and y1 = float (y+fs+3) in
2727 filledrect x0 y0 x1 y1;
2732 Gl.disable `texture_2d
;
2733 if Array.length
minfo > 0 then loop m_first
;
2736 method updownlevel incr
=
2737 let len = source#getitemcount
in
2739 if m_active
>= 0 && m_active
< len
2740 then snd
(source#getitem m_active
)
2744 if i
= len then i
-1 else if i
= -1 then 0 else
2745 let _, l = source#getitem i
in
2746 if l != curlevel then i
else flow (i
+incr
)
2748 let active = flow m_active
in
2749 let first = calcfirst m_first
active in
2750 G.postRedisplay "outline updownlevel";
2751 {< m_active
= active; m_first
= first >}
2753 method private key1
key mask
=
2754 let set1 active first qsearch
=
2755 coe {< m_active
= active; m_first
= first; m_qsearch
= qsearch
>}
2757 let search active pattern incr
=
2758 let active = if active = -1 then m_first
else active in
2761 if n >= 0 && n < source#getitemcount
2763 let s, _ = source#getitem
n in
2765 (try ignore
(Str.search_forward
re s 0); true
2766 with Not_found
-> false)
2768 else loop (n + incr
)
2775 let re = Str.regexp_case_fold pattern
in
2781 let itemcount = source#getitemcount
in
2782 let find start incr
=
2784 if i
= -1 || i
= itemcount
2787 if source#hasaction i
2789 else find (i
+ incr
)
2794 let set active first =
2795 let first = bound
first 0 (itemcount - fstate
.maxrows
) in
2797 coe {< m_active
= active; m_first
= first; m_qsearch
= E.s >}
2800 let isvisible first n = n >= first && n - first <= fstate
.maxrows
in
2802 let incr1 = if incr
> 0 then 1 else -1 in
2803 if isvisible m_first m_active
2806 let next = m_active
+ incr
in
2808 if next < 0 || next >= itemcount
2810 else find next incr1
2812 if abs
(m_active
- next) > fstate
.maxrows
2818 let first = m_first
+ incr
in
2819 let first = bound
first 0 (itemcount - fstate
.maxrows
) in
2821 let next = m_active
+ incr
in
2822 let next = bound
next 0 (itemcount - 1) in
2829 if isvisible first next
2836 let first = min
next m_first
in
2838 if abs
(next - first) > fstate
.maxrows
2844 let first = m_first
+ incr
in
2845 let first = bound
first 0 (itemcount - 1) in
2847 let next = m_active
+ incr
in
2848 let next = bound
next 0 (itemcount - 1) in
2849 let next = find next incr1 in
2851 if next = -1 || abs
(m_active
- first) > fstate
.maxrows
2853 let active = if m_active
= -1 then next else m_active
in
2858 if isvisible first active
2864 G.postRedisplay "listview navigate";
2868 | (0x72|0x73) when Wsi.withctrl mask
-> (* ctrl-r/ctlr-s *)
2869 let incr = if key = 0x72 then -1 else 1 in
2871 match search (m_active
+ incr) m_qsearch
incr with
2873 state
.text <- m_qsearch ^
" [not found]";
2876 state
.text <- m_qsearch
;
2877 active, firstof m_first
active
2879 G.postRedisplay "listview ctrl-r/s";
2880 set1 active first m_qsearch
;
2882 | 0xff63 when Wsi.withctrl mask
-> (* ctrl-insert *)
2883 if m_active
>= 0 && m_active
< source#getitemcount
2885 let s, _ = source#getitem m_active
in
2890 | 0xff08 -> (* backspace *)
2891 if emptystr m_qsearch
2894 let qsearch = withoutlastutf8 m_qsearch
in
2898 G.postRedisplay "listview empty qsearch";
2899 set1 m_active m_first
E.s;
2903 match search m_active
qsearch ~
-1 with
2905 state
.text <- qsearch ^
" [not found]";
2908 state
.text <- qsearch;
2909 active, firstof m_first
active
2911 G.postRedisplay "listview backspace qsearch";
2912 set1 active first qsearch
2915 | key when (key != 0 && key land 0xff00 != 0xff00) ->
2916 let pattern = m_qsearch ^ toutf8
key in
2918 match search m_active
pattern 1 with
2920 state
.text <- pattern ^
" [not found]";
2923 state
.text <- pattern;
2924 active, firstof m_first
active
2926 G.postRedisplay "listview qsearch add";
2927 set1 active first pattern;
2929 | 0xff1b -> (* escape *)
2931 if emptystr m_qsearch
2933 G.postRedisplay "list view escape";
2936 source#exit
(coe self
) true m_active m_first m_pan
2938 | None
-> m_prev_uioh
2943 G.postRedisplay "list view kill qsearch";
2944 coe {< m_qsearch
= E.s >}
2947 | 0xff0d | 0xff8d -> (* (kp) enter *)
2949 let self = {< m_qsearch
= E.s >} in
2951 G.postRedisplay "listview enter";
2952 if m_active
>= 0 && m_active
< source#getitemcount
2954 source#exit
(coe self) false m_active m_first m_pan
;
2957 source#exit
(coe self) true m_active m_first m_pan
;
2960 begin match opt with
2961 | None
-> m_prev_uioh
2965 | 0xff9f | 0xffff -> (* (kp) delete *)
2968 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
2969 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
2970 | 0xff55 | 0xff9a -> navigate ~
-(fstate
.maxrows
) (* (kp) prior *)
2971 | 0xff56 | 0xff9b -> navigate fstate
.maxrows
(* (kp) next *)
2973 | 0xff53 | 0xff98 -> (* (kp) right *)
2975 G.postRedisplay "listview right";
2976 coe {< m_pan
= m_pan
- 1 >}
2978 | 0xff51 | 0xff96 -> (* (kp) left *)
2980 G.postRedisplay "listview left";
2981 coe {< m_pan
= m_pan
+ 1 >}
2983 | 0xff50 | 0xff95 -> (* (kp) home *)
2984 let active = find 0 1 in
2985 G.postRedisplay "listview home";
2988 | 0xff57 | 0xff9c -> (* (kp) end *)
2989 let first = max
0 (itemcount - fstate
.maxrows
) in
2990 let active = find (itemcount - 1) ~
-1 in
2991 G.postRedisplay "listview end";
2994 | key when (key = 0 || key land 0xff00 = 0xff00) ->
2998 dolog
"listview unknown key %#x" key; coe self
3000 method key key mask
=
3001 match state
.mode
with
3002 | Textentry te
-> textentrykeyboard key mask te
; coe self
3003 | _ -> self#key1
key mask
3005 method button button down
x y _ =
3008 | 1 when x > state
.winw
- conf
.scrollbw
->
3009 G.postRedisplay "listview scroll";
3012 let _, position, sh = self#
scrollph in
3013 if y > truncate
position && y < truncate
(position +. sh)
3015 state
.mstate
<- Mscrolly
;
3019 let s = float (max
0 (y - conf
.scrollh
)) /. float state
.winh
in
3020 let first = truncate
(s *. float source#getitemcount
) in
3021 let first = min source#getitemcount
first in
3022 Some
(coe {< m_first
= first; m_active
= first >})
3024 state
.mstate
<- Mnone
;
3027 | 1 when not down
->
3028 begin match self#elemunder
y with
3030 G.postRedisplay "listview click";
3031 source#exit
(coe {< m_active
= n >}) false n m_first m_pan
3035 | n when (n == 4 || n == 5) && not down
->
3036 let len = source#getitemcount
in
3038 if n = 5 && m_first
+ fstate
.maxrows
>= len
3042 let first = m_first
+ (if n == 4 then -1 else 1) in
3043 bound
first 0 (len - 1)
3045 G.postRedisplay "listview wheel";
3046 Some
(coe {< m_first
= first >})
3047 | n when (n = 6 || n = 7) && not down
->
3048 let inc = if n = 7 then -1 else 1 in
3049 G.postRedisplay "listview hwheel";
3050 Some
(coe {< m_pan
= m_pan
+ inc >})
3055 | None
-> m_prev_uioh
3058 method multiclick
_ x y = self#button
1 true x y
3061 match state
.mstate
with
3063 let s = float (max
0 (y - conf
.scrollh
)) /. float state
.winh
in
3064 let first = truncate
(s *. float source#getitemcount
) in
3065 let first = min source#getitemcount
first in
3066 G.postRedisplay "listview motion";
3067 coe {< m_first
= first; m_active
= first >}
3070 method pmotion
x y =
3071 if x < state
.winw
- conf
.scrollbw
3074 match self#elemunder
y with
3075 | None
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
; m_active
3076 | Some
n -> Wsi.setcursor
Wsi.CURSOR_INFO
; n
3080 then (G.postRedisplay "listview pmotion"; {< m_active
= n >})
3085 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3089 method infochanged
_ = ()
3091 method scrollpw
= (0, 0.0, 0.0)
3093 let nfs = fstate
.fontsize
+ 1 in
3094 let y = m_first
* nfs in
3095 let itemcount = source#getitemcount
in
3096 let maxi = max
0 (itemcount - fstate
.maxrows
) in
3097 let maxy = maxi * nfs in
3098 let p, h = scrollph y maxy in
3101 method modehash
= modehash
3102 method eformsgs
= false
3105 class outlinelistview ~zebra ~source
=
3106 let settext autonarrow
s =
3109 let ss = source#statestr
in
3113 else "{" ^
ss ^
"} [" ^
s ^
"]"
3114 else state
.text <- s
3120 ~source
:(source
:> lvsource
)
3122 ~modehash
:(findkeyhash conf
"outline")
3125 val m_autonarrow
= false
3127 method key key mask
=
3129 if emptystr state
.text
3131 else fstate
.maxrows - 2
3133 let calcfirst first active =
3136 let rows = active - first in
3137 if rows > maxrows then active - maxrows else first
3141 let active = m_active
+ incr in
3142 let active = bound
active 0 (source#getitemcount
- 1) in
3143 let first = calcfirst m_first
active in
3144 G.postRedisplay "outline navigate";
3145 coe {< m_active
= active; m_first
= first >}
3147 let navscroll first =
3149 let dist = m_active
- first in
3155 else first + maxrows
3158 G.postRedisplay "outline navscroll";
3159 coe {< m_first
= first; m_active
= active >}
3161 let ctrl = Wsi.withctrl mask
in
3163 | 97 when ctrl -> (* ctrl-a *)
3166 then (source#denarrow
; E.s)
3168 let pattern = source#renarrow
in
3169 if nonemptystr m_qsearch
3170 then (source#narrow m_qsearch
; m_qsearch
)
3174 settext (not m_autonarrow
) text;
3175 G.postRedisplay "toggle auto narrowing";
3176 coe {< m_first
= 0; m_active
= 0; m_autonarrow
= not m_autonarrow
>}
3178 | 47 when emptystr m_qsearch
&& not m_autonarrow
-> (* / *)
3180 G.postRedisplay "toggle auto narrowing";
3181 coe {< m_first
= 0; m_active
= 0; m_autonarrow
= true >}
3183 | 110 when ctrl -> (* ctrl-n *)
3184 source#narrow m_qsearch
;
3186 then source#add_narrow_pattern m_qsearch
;
3187 G.postRedisplay "outline ctrl-n";
3188 coe {< m_first
= 0; m_active
= 0 >}
3190 | 83 when ctrl -> (* ctrl-S *)
3191 let active = source#calcactive
(getanchor
()) in
3192 let first = firstof m_first
active in
3193 G.postRedisplay "outline ctrl-s";
3194 coe {< m_first
= first; m_active
= active >}
3196 | 117 when ctrl -> (* ctrl-u *)
3197 G.postRedisplay "outline ctrl-u";
3198 if m_autonarrow
&& nonemptystr m_qsearch
3200 ignore
(source#renarrow
);
3201 settext m_autonarrow
E.s;
3202 coe {< m_first
= 0; m_active
= 0; m_qsearch
= E.s >}
3205 source#del_narrow_pattern
;
3206 let pattern = source#renarrow
in
3208 if emptystr
pattern then E.s else "Narrowed to " ^
pattern
3210 settext m_autonarrow
text;
3211 coe {< m_first
= 0; m_active
= 0; m_qsearch
= E.s >}
3214 | 108 when ctrl -> (* ctrl-l *)
3215 let first = max
0 (m_active
- (fstate
.maxrows / 2)) in
3216 G.postRedisplay "outline ctrl-l";
3217 coe {< m_first
= first >}
3219 | 0xff09 when m_autonarrow
-> (* tab *)
3220 if nonemptystr m_qsearch
3222 G.postRedisplay "outline list view tab";
3223 source#add_narrow_pattern m_qsearch
;
3225 coe {< m_qsearch
= E.s >}
3229 | 0xff1b when m_autonarrow
-> (* escape *)
3230 if nonemptystr m_qsearch
3231 then source#add_narrow_pattern m_qsearch
;
3234 | 0xff0d | 0xff8d when m_autonarrow
-> (* (kp) enter *)
3235 if nonemptystr m_qsearch
3236 then source#add_narrow_pattern m_qsearch
;
3239 | key when m_autonarrow
&& (key != 0 && key land 0xff00 != 0xff00) ->
3240 let pattern = m_qsearch ^ toutf8
key in
3241 G.postRedisplay "outlinelistview autonarrow add";
3242 source#narrow
pattern;
3243 settext true pattern;
3244 coe {< m_first
= 0; m_active
= 0; m_qsearch
= pattern >}
3246 | key when m_autonarrow
&& key = 0xff08 -> (* backspace *)
3247 if emptystr m_qsearch
3250 let pattern = withoutlastutf8 m_qsearch
in
3251 G.postRedisplay "outlinelistview autonarrow backspace";
3252 ignore
(source#renarrow
);
3253 source#narrow
pattern;
3254 settext true pattern;
3255 coe {< m_first
= 0; m_active
= 0; m_qsearch
= pattern >}
3257 | 0xff9f | 0xffff -> (* (kp) delete *)
3258 source#remove m_active
;
3259 G.postRedisplay "outline delete";
3260 let active = max
0 (m_active
-1) in
3261 coe {< m_first
= firstof m_first
active;
3262 m_active
= active >}
3264 | 0xff52 | 0xff97 when ctrl -> (* ctrl-(kp) up *)
3265 navscroll (max
0 (m_first
- 1))
3267 | 0xff54 | 0xff99 when ctrl -> (* ctrl-(kp) down *)
3268 navscroll (min
(source#getitemcount
- 1) (m_first
+ 1))
3270 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
3271 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3272 | 0xff55 | 0xff9a -> (* (kp) prior *)
3273 navigate ~
-(fstate
.maxrows)
3274 | 0xff56 | 0xff9b -> (* (kp) next *)
3275 navigate fstate
.maxrows
3277 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3281 G.postRedisplay "outline ctrl right";
3282 {< m_pan
= m_pan
+ 1 >}
3284 else self#updownlevel
1
3288 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3292 G.postRedisplay "outline ctrl left";
3293 {< m_pan
= m_pan
- 1 >}
3295 else self#updownlevel ~
-1
3299 | 0xff50 | 0xff95 -> (* (kp) home *)
3300 G.postRedisplay "outline home";
3301 coe {< m_first
= 0; m_active
= 0 >}
3303 | 0xff57 | 0xff9c -> (* (kp) end *)
3304 let active = source#getitemcount
- 1 in
3305 let first = max
0 (active - fstate
.maxrows) in
3306 G.postRedisplay "outline end";
3307 coe {< m_active
= active; m_first
= first >}
3309 | _ -> super#
key key mask
3312 let gotounder under =
3313 let getpath filename
=
3315 if nonemptystr filename
3317 if Filename.is_relative filename
3319 let dir = Filename.dirname state
.path in
3321 if Filename.is_implicit
dir
3322 then Filename.concat
(Sys.getcwd
()) dir
3325 Filename.concat
dir filename
3329 if Sys.file_exists
path
3334 | Ulinkgoto
(pageno, top) ->
3338 gotopage1 pageno top;
3344 | Uremote
(filename
, pageno) ->
3345 let path = getpath filename
in
3350 let command = Printf.sprintf
"%s -page %d %S" !selfexec pageno path in
3351 try popen
command []
3353 Printf.eprintf
"failed to execute `%s': %s\n" command (exntos exn
);
3356 let anchor = getanchor
() in
3357 let ranchor = state
.path, state
.password
, anchor, state
.origin
in
3358 state
.origin
<- E.s;
3359 state
.anchor <- (pageno, 0.0, 0.0);
3360 state
.ranchors
<- ranchor :: state
.ranchors
;
3363 else showtext '
!'
("Could not find " ^ filename
)
3365 | Uremotedest
(filename
, destname
) ->
3366 let path = getpath filename
in
3371 let command = !selfexec ^
" " ^
path ^
" -dest " ^ destname
in
3372 try popen
command []
3375 "failed to execute `%s': %s\n" command (exntos exn
);
3378 let anchor = getanchor
() in
3379 let ranchor = state
.path, state
.password
, anchor, state
.origin
in
3380 state
.origin
<- E.s;
3381 state
.nameddest
<- destname
;
3382 state
.ranchors
<- ranchor :: state
.ranchors
;
3385 else showtext '
!'
("Could not find " ^ filename
)
3387 | Uunexpected
_ | Ulaunch
_ | Unamed
_ | Utext
_ | Unone
-> ()
3390 let gotohist (path, (c, bookmarks
, x, anchor)) =
3391 Config.save
leavebirdseye;
3392 state
.anchor <- anchor;
3394 state
.bookmarks
<- bookmarks
;
3395 state
.origin
<- E.s;
3397 conf
.presentation
<- c.presentation
;
3400 let gotooutline (_, _, kind
) =
3404 let (pageno, y, _) = anchor in
3406 (if conf
.presentation
then (pageno, y, 1.0) else anchor)
3410 | Ouri
uri -> gotounder (Ulinkuri
uri)
3411 | Olaunch cmd
-> gotounder (Ulaunch cmd
)
3412 | Oremote remote
-> gotounder (Uremote remote
)
3413 | Ohistory hist
-> gotohist hist
3414 | Oremotedest remotedest
-> gotounder (Uremotedest remotedest
)
3418 let genhistoutlines =
3419 let order ty
(p1
, c1
, _, _, _) (p2
, c2
, _, _, _) =
3421 | `lastvisit
-> compare c1
.lastvisit c2
.lastvisit
3422 | `
path -> compare p1 p2
3423 | `file
-> compare
(Filename.basename p1
) (Filename.basename p2
)
3424 | `title
-> compare c1
.title c2
.title
3429 if orderty
= t
then "{ " ^
s ^
" }" else " " ^
s
3431 Oaction
(fun () -> Config.historder
:= t
)
3433 let list = ref [] in
3434 if Config.gethist
list
3438 (fun accu (path, c, b, x, a) ->
3439 let hist = (path, (c, b, x, a)) in
3440 let base = mbtoutf8
(Filename.basename
path) in
3441 (base ^
"\000" ^
c.title
, 1, Ohistory
hist) :: accu
3443 [ setorty "Sort by time of last visit" `lastvisit
;
3444 setorty "Sort by file name" `file
;
3445 setorty "Sort by path" `
path;
3446 setorty "Sort by title" `title
3447 ] (List.sort
(order orderty
) !list)
3453 let outlinesource sourcetype
=
3456 inherit lvsourcebase
3457 val mutable m_items
= empty
3458 val mutable m_minfo
= empty
3459 val mutable m_orig_items
= empty
3460 val mutable m_orig_minfo
= empty
3461 val mutable m_narrow_patterns
= []
3462 val mutable m_hadremovals
= false
3463 val mutable m_gen
= -1
3465 method getitemcount
=
3466 Array.length m_items
+ (if m_hadremovals
then 1 else 0)
3469 if n == Array.length m_items
&& m_hadremovals
3471 ("[Confirm removal]", 0)
3473 let s, n, _ = m_items
.(n) in
3476 method exit ~uioh ~cancel ~
active ~
first ~pan
=
3477 ignore
(uioh
, first);
3478 let confrimremoval = m_hadremovals
&& active = Array.length m_items
in
3480 if m_narrow_patterns
= []
3481 then m_orig_items
, m_orig_minfo
3482 else m_items
, m_minfo
3486 if not
confrimremoval
3488 gotooutline m_items
.(active);
3493 state
.bookmarks
<- Array.to_list m_items
;
3494 m_orig_items
<- m_items
;
3495 m_orig_minfo
<- m_minfo
;
3505 method hasaction
_ = true
3508 if Array.length m_items
!= Array.length m_orig_items
3511 match m_narrow_patterns
with
3513 | many
-> String.concat
"\xe2\x80\xa6" (List.rev many
)
3515 "Narrowed to " ^
s ^
" (ctrl-u to restore)"
3519 match m_narrow_patterns
with
3522 | head
:: _ -> "\xe2\x80\xa6" ^ head
3524 method narrow
pattern =
3525 let reopt = try Some
(Str.regexp_case_fold
pattern) with _ -> None
in
3529 let rec loop accu minfo n =
3532 m_items
<- Array.of_list
accu;
3533 m_minfo
<- Array.of_list
minfo;
3536 let (s, _, t
) as o = m_items
.(n) in
3539 | Oaction
_ -> o :: accu, (0, 0) :: minfo
3540 | Onone
| Oanchor
_ | Ouri
_ | Olaunch
_
3541 | Oremote
_ | Oremotedest
_ | Ohistory
_ ->
3543 try Str.search_forward
re s 0
3544 with Not_found
-> -1
3547 then o :: accu, (first, Str.match_end
()) :: minfo
3550 loop accu minfo (n-1)
3552 loop [] [] (Array.length m_items
- 1)
3554 method getminfo
= m_minfo
3558 match sourcetype
with
3559 | `bookmarks
-> Array.of_list state
.bookmarks
3560 | `outlines
-> state
.outlines
3561 | `history
-> genhistoutlines !Config.historder
3563 m_minfo
<- m_orig_minfo
;
3564 m_items
<- m_orig_items
3567 if sourcetype
= `bookmarks
3569 if m >= 0 && m < Array.length m_items
3571 m_hadremovals
<- true;
3572 m_items
<- Array.init
(Array.length m_items
- 1) (fun n ->
3573 let n = if n >= m then n+1 else n in
3578 method add_narrow_pattern
pattern =
3579 m_narrow_patterns
<- pattern :: m_narrow_patterns
3581 method del_narrow_pattern
=
3582 match m_narrow_patterns
with
3583 | _ :: rest
-> m_narrow_patterns
<- rest
3588 match m_narrow_patterns
with
3589 | pattern :: [] -> self#narrow
pattern; pattern
3591 List.fold_left
(fun accu pattern ->
3592 self#narrow
pattern;
3593 pattern ^
"\xe2\x80\xa6" ^
accu) E.s list
3595 method calcactive
anchor =
3596 let rely = getanchory anchor in
3597 let rec loop n best bestd
=
3598 if n = Array.length m_items
3601 let _, _, kind
= m_items
.(n) in
3604 let orely = getanchory anchor in
3605 let d = abs
(orely - rely) in
3608 else loop (n+1) best bestd
3609 | Onone
| Oremote
_ | Olaunch
_
3610 | Oremotedest
_ | Ouri
_ | Ohistory
_ | Oaction
_ ->
3611 loop (n+1) best bestd
3615 method reset
anchor items =
3616 m_hadremovals
<- false;
3617 if state
.gen
!= m_gen
3619 m_orig_items
<- items;
3621 m_narrow_patterns
<- [];
3623 m_orig_minfo
<- empty;
3627 if items != m_orig_items
3629 m_orig_items
<- items;
3630 if m_narrow_patterns
== []
3631 then m_items
<- items;
3634 let active = self#calcactive
anchor in
3636 m_first
<- firstof m_first
active
3640 let enterselector sourcetype
=
3642 let source = outlinesource sourcetype
in
3645 match sourcetype
with
3646 | `bookmarks
-> Array.of_list state
.bookmarks
3647 | `
outlines -> state
.outlines
3648 | `history
-> genhistoutlines !Config.historder
3650 if Array.length
outlines = 0
3652 showtext ' ' errmsg
;
3655 state
.text <- source#greetmsg
;
3656 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3657 let anchor = getanchor
() in
3658 source#reset
anchor outlines;
3660 coe (new outlinelistview ~zebra
:(sourcetype
=`history
) ~
source);
3661 G.postRedisplay "enter selector";
3665 let enteroutlinemode =
3666 let f = enterselector `
outlines in
3667 fun () -> f "Document has no outline";
3670 let enterbookmarkmode =
3671 let f = enterselector `bookmarks
in
3672 fun () -> f "Document has no bookmarks (yet)";
3675 let enterhistmode () = enterselector `history
"No history (yet)";;
3677 let makecheckers () =
3678 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3680 converted by Issac Trotts. July 25, 2002 *)
3681 let image = GlPix.create `ubyte ~format
:`luminance ~width
:2 ~height
:2 in
3682 Raw.sets_string
(GlPix.to_raw
image) ~
pos:0 "\255\200\200\255";
3683 let id = GlTex.gen_texture
() in
3684 GlTex.bind_texture `texture_2d
id;
3685 GlPix.store
(`unpack_alignment
1);
3686 GlTex.image2d
image;
3687 List.iter
(GlTex.parameter ~target
:`texture_2d
)
3688 [ `mag_filter `nearest
; `min_filter `nearest
];
3692 let setcheckers enabled
=
3693 match state
.checkerstexid
with
3695 if enabled
then state
.checkerstexid
<- Some
(makecheckers ())
3697 | Some checkerstexid
->
3700 GlTex.delete_texture checkerstexid
;
3701 state
.checkerstexid
<- None
;
3705 let describe_location () =
3706 let fn = page_of_y state
.y in
3707 let ln = page_of_y
(state
.y + state
.winh
- hscrollh () - 1) in
3708 let maxy = state
.maxy - (if conf
.maxhfit
then state
.winh
else 0) in
3712 else (100. *. (float state
.y /. float maxy))
3716 Printf.sprintf
"page %d of %d [%.2f%%]"
3717 (fn+1) state
.pagecount
percent
3720 "pages %d-%d of %d [%.2f%%]"
3721 (fn+1) (ln+1) state
.pagecount
percent
3724 let setpresentationmode v
=
3725 let n = page_of_y state
.y in
3726 state
.anchor <- (n, 0.0, 1.0);
3727 conf
.presentation
<- v
;
3728 if conf
.fitmodel
= FitPage
3729 then reqlayout conf
.angle conf
.fitmodel
;
3734 let btos b = if b then "\xe2\x88\x9a" else E.s in
3735 let showextended = ref false in
3736 let leave mode
= function
3737 | Confirm
-> state
.mode
<- mode
3738 | Cancel
-> state
.mode
<- mode
in
3741 val mutable m_first_time
= true
3742 val mutable m_l
= []
3743 val mutable m_a
= E.a
3744 val mutable m_prev_uioh
= nouioh
3745 val mutable m_prev_mode
= View
3747 inherit lvsourcebase
3749 method reset prev_mode prev_uioh
=
3750 m_a
<- Array.of_list
(List.rev m_l
);
3752 m_prev_mode
<- prev_mode
;
3753 m_prev_uioh
<- prev_uioh
;
3757 if n >= Array.length m_a
3761 | _, _, _, Action
_ -> m_active
<- n
3765 m_first_time
<- false;
3768 method int name get
set =
3770 (name
, `
int get
, 1, Action
(
3773 try set (int_of_string
s)
3775 state
.text <- Printf.sprintf
"bad integer `%s': %s"
3779 let te = name ^
": ", E.s, None
, intentry, ondone, true in
3780 state
.mode
<- Textentry
(te, leave m_prev_mode
);
3784 method int_with_suffix name get
set =
3786 (name
, `intws get
, 1, Action
(
3789 try set (int_of_string_with_suffix
s)
3791 state
.text <- Printf.sprintf
"bad integer `%s': %s"
3796 name ^
": ", E.s, None
, intentry_with_suffix, ondone, true
3798 state
.mode
<- Textentry
(te, leave m_prev_mode
);
3802 method bool ?
(offset
=1) ?
(btos=btos) name get
set =
3804 (name
, `
bool (btos, get
), offset
, Action
(
3811 method color name get
set =
3813 (name
, `color get
, 1, Action
(
3815 let invalid = (nan
, nan
, nan
) in
3818 try color_of_string
s
3820 state
.text <- Printf.sprintf
"bad color `%s': %s"
3827 let te = name ^
": ", E.s, None
, textentry, ondone, true in
3828 state
.text <- color_to_string
(get
());
3829 state
.mode
<- Textentry
(te, leave m_prev_mode
);
3833 method string name get
set =
3835 (name
, `
string get
, 1, Action
(
3837 let ondone s = set s in
3838 let te = name ^
": ", E.s, None
, textentry, ondone, true in
3839 state
.mode
<- Textentry
(te, leave m_prev_mode
);
3843 method colorspace name get
set =
3845 (name
, `
string get
, 1, Action
(
3849 inherit lvsourcebase
3852 m_active
<- CSTE.to_int conf
.colorspace
;
3855 method getitemcount
=
3856 Array.length
CSTE.names
3859 method exit ~uioh ~cancel ~
active ~
first ~pan
=
3860 ignore
(uioh
, first, pan
);
3861 if not cancel
then set active;
3863 method hasaction
_ = true
3867 let modehash = findkeyhash conf
"info" in
3868 coe (new listview ~zebra
:false ~helpmode
:false
3869 ~
source ~trusted
:true ~
modehash)
3872 method paxmark name get
set =
3874 (name
, `
string get
, 1, Action
(
3878 inherit lvsourcebase
3881 m_active
<- MTE.to_int conf
.paxmark
;
3884 method getitemcount
= Array.length
MTE.names
3885 method getitem
n = (MTE.names
.(n), 0)
3886 method exit ~uioh ~cancel ~
active ~
first ~pan
=
3887 ignore
(uioh
, first, pan
);
3888 if not cancel
then set active;
3890 method hasaction
_ = true
3894 let modehash = findkeyhash conf
"info" in
3895 coe (new listview ~zebra
:false ~helpmode
:false
3896 ~
source ~trusted
:true ~
modehash)
3899 method fitmodel name get
set =
3901 (name
, `
string get
, 1, Action
(
3905 inherit lvsourcebase
3908 m_active
<- FMTE.to_int conf
.fitmodel
;
3911 method getitemcount
= Array.length
FMTE.names
3912 method getitem
n = (FMTE.names
.(n), 0)
3913 method exit ~uioh ~cancel ~
active ~
first ~pan
=
3914 ignore
(uioh
, first, pan
);
3915 if not cancel
then set active;
3917 method hasaction
_ = true
3921 let modehash = findkeyhash conf
"info" in
3922 coe (new listview ~zebra
:false ~helpmode
:false
3923 ~
source ~trusted
:true ~
modehash)
3926 method caption
s offset
=
3927 m_l
<- (s, `
empty, offset
, Noaction
) :: m_l
3929 method caption2
s f offset
=
3930 m_l
<- (s, `
string f, offset
, Noaction
) :: m_l
3932 method getitemcount
= Array.length m_a
3935 let tostr = function
3936 | `
int f -> string_of_int
(f ())
3937 | `intws
f -> string_with_suffix_of_int
(f ())
3939 | `color
f -> color_to_string
(f ())
3940 | `
bool (btos, f) -> btos (f ())
3943 let name, t
, offset
, _ = m_a
.(n) in
3944 ((let s = tostr t
in
3946 then Printf.sprintf
"%s\t%s" name s
3950 method exit ~uioh ~cancel ~
active ~
first ~pan
=
3955 match m_a
.(active) with
3956 | _, _, _, Action
f -> f uioh
3968 method hasaction
n =
3970 | _, _, _, Action
_ -> true
3974 let rec fillsrc prevmode prevuioh
=
3975 let sep () = src#caption
E.s 0 in
3976 let colorp name get
set =
3978 (fun () -> color_to_string
(get
()))
3981 let c = color_of_string
v in
3984 state
.text <- Printf.sprintf
"bad color `%s': %s" v (exntos exn
)
3987 let oldmode = state
.mode
in
3988 let birdseye = isbirdseye state
.mode
in
3990 src#caption
(if birdseye then "Setup (Bird's eye)" else "Setup") 0;
3992 src#
bool "presentation mode"
3993 (fun () -> conf
.presentation
)
3994 (fun v -> setpresentationmode v);
3996 src#
bool "ignore case in searches"
3997 (fun () -> conf
.icase
)
3998 (fun v -> conf
.icase
<- v);
4001 (fun () -> conf
.preload)
4002 (fun v -> conf
.preload <- v);
4004 src#
bool "highlight links"
4005 (fun () -> conf
.hlinks
)
4006 (fun v -> conf
.hlinks
<- v);
4008 src#
bool "under info"
4009 (fun () -> conf
.underinfo
)
4010 (fun v -> conf
.underinfo
<- v);
4012 src#
bool "persistent bookmarks"
4013 (fun () -> conf
.savebmarks
)
4014 (fun v -> conf
.savebmarks
<- v);
4016 src#fitmodel
"fit model"
4017 (fun () -> FMTE.to_string conf
.fitmodel
)
4018 (fun v -> reqlayout conf
.angle
(FMTE.of_int
v));
4020 src#
bool "trim margins"
4021 (fun () -> conf
.trimmargins
)
4022 (fun v -> settrim v conf
.trimfuzz
; fillsrc prevmode prevuioh
);
4024 src#
bool "persistent location"
4025 (fun () -> conf
.jumpback
)
4026 (fun v -> conf
.jumpback
<- v);
4029 src#
int "inter-page space"
4030 (fun () -> conf
.interpagespace
)
4032 conf
.interpagespace
<- n;
4033 docolumns conf
.columns
;
4035 match state
.layout with
4040 state
.maxy <- calcheight
();
4041 let y = getpagey
pageno in
4046 (fun () -> conf
.pagebias
)
4047 (fun v -> conf
.pagebias
<- v);
4049 src#
int "scroll step"
4050 (fun () -> conf
.scrollstep
)
4051 (fun n -> conf
.scrollstep
<- n);
4053 src#
int "horizontal scroll step"
4054 (fun () -> conf
.hscrollstep
)
4055 (fun v -> conf
.hscrollstep
<- v);
4057 src#
int "auto scroll step"
4059 match state
.autoscroll
with
4061 | _ -> conf
.autoscrollstep
)
4063 let n = boundastep state
.winh
n in
4064 if state
.autoscroll
<> None
4065 then state
.autoscroll
<- Some
n;
4066 conf
.autoscrollstep
<- n);
4069 (fun () -> truncate
(conf
.zoom *. 100.))
4070 (fun v -> setzoom ((float v) /. 100.));
4073 (fun () -> conf
.angle
)
4074 (fun v -> reqlayout v conf
.fitmodel
);
4076 src#
int "scroll bar width"
4077 (fun () -> conf
.scrollbw
)
4080 reshape state
.winw state
.winh
;
4083 src#
int "scroll handle height"
4084 (fun () -> conf
.scrollh
)
4085 (fun v -> conf
.scrollh
<- v;);
4087 src#
int "thumbnail width"
4088 (fun () -> conf
.thumbw
)
4090 conf
.thumbw
<- min
4096 v;
4093 leavebirdseye beye
false;
4098 let mode = state
.mode in
4099 src#
string "columns"
4101 match conf
.columns
with
4103 | Cmulti
(multi
, _) -> multicolumns_to_string multi
4104 | Csplit
(count
, _) -> "-" ^ string_of_int count
4107 let n, a, b = multicolumns_of_string
v in
4108 setcolumns mode n a b);
4111 src#caption
"Pixmap cache" 0;
4112 src#int_with_suffix
"size (advisory)"
4113 (fun () -> conf
.memlimit
)
4114 (fun v -> conf
.memlimit
<- v);
4117 (fun () -> Printf.sprintf
"%s bytes, %d tiles"
4118 (string_with_suffix_of_int state
.memused
)
4119 (Hashtbl.length state
.tilemap
)) 1;
4122 src#caption
"Layout" 0;
4123 src#caption2
"Dimension"
4125 Printf.sprintf
"%dx%d (virtual %dx%d)"
4126 state
.winw state
.winh
4131 src#caption2
"Position" (fun () ->
4132 Printf.sprintf
"%dx%d" state
.x state
.y
4135 src#caption2
"Position" (fun () -> describe_location ()) 1
4139 src#
bool ~offset
:0 ~
btos:(fun v -> if v then "(on)" else "(off)")
4140 "Save these parameters as global defaults at exit"
4141 (fun () -> conf
.bedefault
)
4142 (fun v -> conf
.bedefault
<- v)
4146 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4147 src#
bool ~offset
:0 ~
btos "Extended parameters"
4148 (fun () -> !showextended)
4149 (fun v -> showextended := v; fillsrc prevmode prevuioh
);
4153 (fun () -> conf
.checkers
)
4154 (fun v -> conf
.checkers
<- v; setcheckers v);
4155 src#
bool "update cursor"
4156 (fun () -> conf
.updatecurs
)
4157 (fun v -> conf
.updatecurs
<- v);
4158 src#
bool "scroll-bar on the left"
4159 (fun () -> conf
.leftscroll
)
4160 (fun v -> conf
.leftscroll
<- v);
4162 (fun () -> conf
.verbose
)
4163 (fun v -> conf
.verbose
<- v);
4164 src#
bool "invert colors"
4165 (fun () -> conf
.invert
)
4166 (fun v -> conf
.invert
<- v);
4168 (fun () -> conf
.maxhfit
)
4169 (fun v -> conf
.maxhfit
<- v);
4170 src#
bool "redirect stderr"
4171 (fun () -> conf
.redirectstderr)
4172 (fun v -> conf
.redirectstderr <- v; redirectstderr ());
4174 (fun () -> conf
.pax
!= None
)
4177 then conf
.pax
<- Some
(ref (now
(), 0, 0))
4178 else conf
.pax
<- None
);
4179 src#
string "uri launcher"
4180 (fun () -> conf
.urilauncher
)
4181 (fun v -> conf
.urilauncher
<- v);
4182 src#
string "path launcher"
4183 (fun () -> conf
.pathlauncher
)
4184 (fun v -> conf
.pathlauncher
<- v);
4185 src#
string "tile size"
4186 (fun () -> Printf.sprintf
"%dx%d" conf
.tilew conf
.tileh
)
4189 let w, h = Scanf.sscanf
v "%dx%d" (fun w h -> w, h) in
4190 conf
.tilew
<- max
64 w;
4191 conf
.tileh
<- max
64 h;
4194 state
.text <- Printf.sprintf
"bad tile size `%s': %s"
4197 src#
int "texture count"
4198 (fun () -> conf
.texcount
)
4201 then conf
.texcount
<- v
4202 else showtext '
!'
" Failed to set texture count please retry later"
4204 src#
int "slice height"
4205 (fun () -> conf
.sliceheight
)
4207 conf
.sliceheight
<- v;
4208 wcmd "sliceh %d" conf
.sliceheight
;
4210 src#
int "anti-aliasing level"
4211 (fun () -> conf
.aalevel
)
4213 conf
.aalevel
<- bound
v 0 8;
4214 state
.anchor <- getanchor
();
4215 opendoc state
.path state
.password
;
4217 src#
string "page scroll scaling factor"
4218 (fun () -> string_of_float conf
.pgscale)
4221 let s = float_of_string
v in
4224 state
.text <- Printf.sprintf
4225 "bad page scroll scaling factor `%s': %s" v (exntos exn
)
4228 src#
int "ui font size"
4229 (fun () -> fstate
.fontsize
)
4230 (fun v -> setfontsize (bound
v 5 100));
4231 src#
int "hint font size"
4232 (fun () -> conf
.hfsize
)
4233 (fun v -> conf
.hfsize
<- bound
v 5 100);
4234 colorp "background color"
4235 (fun () -> conf
.bgcolor
)
4236 (fun v -> conf
.bgcolor
<- v);
4237 src#
bool "crop hack"
4238 (fun () -> conf
.crophack
)
4239 (fun v -> conf
.crophack
<- v);
4240 src#
string "trim fuzz"
4241 (fun () -> irect_to_string conf
.trimfuzz
)
4244 conf
.trimfuzz
<- irect_of_string
v;
4246 then settrim true conf
.trimfuzz
;
4248 state
.text <- Printf.sprintf
"bad irect `%s': %s" v (exntos exn
)
4250 src#
string "throttle"
4252 match conf
.maxwait
with
4253 | None
-> "show place holder if page is not ready"
4256 then "wait for page to fully render"
4258 "wait " ^ string_of_float
time
4259 ^
" seconds before showing placeholder"
4263 let f = float_of_string
v in
4265 then conf
.maxwait
<- None
4266 else conf
.maxwait
<- Some
f
4268 state
.text <- Printf.sprintf
"bad time `%s': %s" v (exntos exn
)
4270 src#
string "ghyll scroll"
4272 match conf
.ghyllscroll
with
4274 | Some nab
-> ghyllscroll_to_string nab
4277 try conf
.ghyllscroll
<- ghyllscroll_of_string
v
4279 state
.text <- Printf.sprintf
"bad ghyll `%s': %s" v (exntos exn
)
4281 src#
string "selection command"
4282 (fun () -> conf
.selcmd
)
4283 (fun v -> conf
.selcmd
<- v);
4284 src#
string "synctex command"
4285 (fun () -> conf
.stcmd
)
4286 (fun v -> conf
.stcmd
<- v);
4287 src#
string "pax command"
4288 (fun () -> conf
.paxcmd
)
4289 (fun v -> conf
.paxcmd
<- v);
4290 src#colorspace
"color space"
4291 (fun () -> CSTE.to_string conf
.colorspace
)
4293 conf
.colorspace
<- CSTE.of_int
v;
4297 src#paxmark
"pax mark method"
4298 (fun () -> MTE.to_string conf
.paxmark
)
4299 (fun v -> conf
.paxmark
<- MTE.of_int
v);
4303 (fun () -> conf
.usepbo
)
4304 (fun v -> conf
.usepbo
<- v);
4305 src#
bool "mouse wheel scrolls pages"
4306 (fun () -> conf
.wheelbypage
)
4307 (fun v -> conf
.wheelbypage
<- v);
4308 src#
bool "open remote links in a new instance"
4309 (fun () -> conf
.riani
)
4310 (fun v -> conf
.riani
<- v);
4314 src#caption
"Document" 0;
4315 List.iter
(fun (_, s) -> src#caption
s 1) state
.docinfo
;
4316 src#caption2
"Pages"
4317 (fun () -> string_of_int state
.pagecount
) 1;
4318 src#caption2
"Dimensions"
4319 (fun () -> string_of_int
(List.length state
.pdims
)) 1;
4323 src#caption
"Trimmed margins" 0;
4324 src#caption2
"Dimensions"
4325 (fun () -> string_of_int
(List.length state
.pdims
)) 1;
4329 src#caption
"OpenGL" 0;
4330 src#caption
(Printf.sprintf
"Vendor\t%s" (GlMisc.get_string `vendor
)) 1;
4331 src#caption
(Printf.sprintf
"Renderer\t%s" (GlMisc.get_string `renderer
)) 1;
4334 src#caption
"Location" 0;
4335 if nonemptystr state
.origin
4336 then src#caption
("Orign\t" ^ mbtoutf8 state
.origin
) 1;
4337 src#caption
("Path\t" ^ mbtoutf8 state
.path) 1;
4339 src#reset prevmode prevuioh
;
4344 let prevmode = state
.mode
4345 and prevuioh
= state
.uioh in
4346 fillsrc prevmode prevuioh
;
4347 let source = (src :> lvsource
) in
4348 let modehash = findkeyhash conf
"info" in
4349 state
.uioh <- coe (object (self)
4350 inherit listview ~zebra
:false ~helpmode
:false
4351 ~
source ~trusted
:true ~
modehash as super
4352 val mutable m_prevmemused
= 0
4353 method infochanged
= function
4355 if m_prevmemused
!= state
.memused
4357 m_prevmemused
<- state
.memused
;
4358 G.postRedisplay "memusedchanged";
4360 | Pdim
-> G.postRedisplay "pdimchanged"
4361 | Docinfo
-> fillsrc prevmode prevuioh
4363 method key key mask
=
4364 if not
(Wsi.withctrl mask
)
4367 | 0xff51 | 0xff96 -> coe (self#updownlevel ~
-1) (* (kp) left *)
4368 | 0xff53 | 0xff98 -> coe (self#updownlevel
1) (* (kp) right *)
4369 | _ -> super#
key key mask
4370 else super#
key key mask
4372 G.postRedisplay "info";
4378 inherit lvsourcebase
4379 method getitemcount
= Array.length state
.help
4381 let s, l, _ = state
.help
.(n) in
4384 method exit ~
uioh ~cancel ~
active ~
first ~pan
=
4388 match state
.help
.(active) with
4389 | _, _, Action
f -> Some
(f uioh)
4399 method hasaction
n =
4400 match state
.help
.(n) with
4401 | _, _, Action
_ -> true
4408 let modehash = findkeyhash conf
"help" in
4410 state
.uioh <- coe (new listview
4411 ~zebra
:false ~helpmode
:true
4412 ~
source ~trusted
:true ~
modehash);
4413 G.postRedisplay "help";
4418 let re = Str.regexp
"[\r\n]" in
4420 inherit lvsourcebase
4421 val mutable m_items
= E.a
4423 method getitemcount
= 1 + Array.length m_items
4428 else m_items
.(n-1), 0
4430 method exit ~
uioh ~cancel ~
active ~
first ~pan
=
4435 then Buffer.clear state
.errmsgs
;
4442 method hasaction
n =
4446 state
.newerrmsgs
<- false;
4447 let l = Str.split
re (Buffer.contents state
.errmsgs
) in
4448 m_items
<- Array.of_list
l
4457 let source = (msgsource :> lvsource
) in
4458 let modehash = findkeyhash conf
"listview" in
4459 state
.uioh <- coe (object
4460 inherit listview ~zebra
:false ~helpmode
:false
4461 ~
source ~trusted
:false ~
modehash as super
4464 then msgsource#reset
;
4467 G.postRedisplay "msgs";
4470 let quickbookmark ?title
() =
4471 match state
.layout with
4477 let tm = Unix.localtime
(now
()) in
4478 Printf.sprintf
"Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4482 (tm.Unix.tm_year
+ 1900)
4485 | Some
title -> title
4487 state
.bookmarks
<- (title, 0, Oanchor
(getanchor1
l)) :: state
.bookmarks
4490 let setautoscrollspeed step goingdown
=
4491 let incr = max
1 ((abs step
) / 2) in
4492 let incr = if goingdown
then incr else -incr in
4493 let astep = boundastep state
.winh
(step
+ incr) in
4494 state
.autoscroll
<- Some
astep;
4498 match conf
.columns
with
4500 | _ -> state
.x != 0 || conf
.zoom > 1.0
4503 let panbound x = bound
x (-state
.w) (wadjsb state
.winw
);;
4505 let existsinrow pageno (columns
, coverA
, coverB
) p =
4506 let last = ((pageno - coverA
) mod columns
) + columns
in
4507 let rec any = function
4510 if l.pageno = coverA
- 1 || l.pageno = state
.pagecount
- coverB
4514 then (if l.pageno = last then false else any rest
)
4522 match state
.layout with
4524 let pageno = page_of_y state
.y in
4525 gotoghyll (getpagey
(pageno+1))
4527 match conf
.columns
with
4529 if conf
.presentation
&& rest
== [] && l.pageh
> l.pagey + l.pagevh
4531 let y = clamp (pgscale state
.winh
) in
4534 let pageno = min
(l.pageno+1) (state
.pagecount
-1) in
4535 gotoghyll (getpagey
pageno)
4536 | Cmulti
((c, _, _) as cl, _) ->
4537 if conf
.presentation
4538 && (existsinrow l.pageno cl
4539 (fun l -> l.pageh
> l.pagey + l.pagevh))
4541 let y = clamp (pgscale state
.winh
) in
4544 let pageno = min
(l.pageno+c) (state
.pagecount
-1) in
4545 gotoghyll (getpagey
pageno)
4547 if l.pageno < state
.pagecount
- 1 || l.pagecol
< n - 1
4549 let pagey, pageh
= getpageyh
l.pageno in
4550 let pagey = pagey + pageh
* l.pagecol
in
4551 let ips = if l.pagecol
= 0 then 0 else conf
.interpagespace
in
4552 gotoghyll (pagey + pageh
+ ips)
4556 match state
.layout with
4558 let pageno = page_of_y state
.y in
4559 gotoghyll (getpagey
(pageno-1))
4561 match conf
.columns
with
4563 if conf
.presentation
&& l.pagey != 0
4565 gotoghyll (clamp (pgscale ~
-(state
.winh
)))
4567 let pageno = max
0 (l.pageno-1) in
4568 gotoghyll (getpagey
pageno)
4569 | Cmulti
((c, _, coverB
) as cl, _) ->
4570 if conf
.presentation
&&
4571 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4573 gotoghyll (clamp (pgscale ~
-(state
.winh
)))
4576 if l.pageno = state
.pagecount
- coverB
4580 let pageno = max
0 (l.pageno-decr) in
4581 gotoghyll (getpagey
pageno)
4589 let pageno = max
0 (l.pageno-1) in
4590 let pagey, pageh
= getpageyh
pageno in
4593 let pagey, pageh
= getpageyh
l.pageno in
4594 pagey + pageh
* (l.pagecol
-1) - conf
.interpagespace
4599 let viewkeyboard key mask
=
4601 let mode = state
.mode in
4602 state
.mode <- Textentry
(te, fun _ -> state
.mode <- mode);
4605 G.postRedisplay "view:enttext"
4607 let ctrl = Wsi.withctrl mask
in
4609 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4615 | 0xff63 -> (* insert *)
4616 if conf
.angle
mod 360 = 0 && not
(isbirdseye state
.mode)
4618 state
.mode <- LinkNav
(Ltgendir
0);
4621 else showtext '
!'
"Keyboard link navigation does not work under rotation"
4623 | 0xff1b | 113 -> (* escape / q *)
4624 begin match state
.mstate
with
4627 G.postRedisplay "kill zoom rect";
4629 begin match state
.mode with
4632 G.postRedisplay "esc leave linknav"
4634 match state
.ranchors
with
4636 | (path, password
, anchor, origin
) :: rest
->
4637 state
.ranchors
<- rest
;
4638 state
.anchor <- anchor;
4639 state
.origin
<- origin
;
4640 state
.nameddest
<- E.s;
4641 opendoc path password
4645 | 0xff08 -> (* backspace *)
4646 gotoghyll (getnav ~
-1)
4657 Hashtbl.iter
(fun _ opaque -> clearmark
opaque) state
.pagemap
;
4658 G.postRedisplay "dehighlight";
4660 | 47 | 63 -> (* / ? *)
4661 let ondone isforw
s =
4662 cbput state
.hists
.pat
s;
4663 state
.searchpattern
<- s;
4666 let s = String.create
1 in
4667 s.[0] <- Char.chr
key;
4668 enttext (s, E.s, Some
(onhist state
.hists
.pat
),
4669 textentry, ondone (key = 47), true)
4671 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4672 let incr = if conf
.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4673 setzoom (conf
.zoom +. incr)
4675 | 43 | 0xffab -> (* + *)
4678 try int_of_string
s with exc
->
4679 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
4685 state
.text <- "page bias is now " ^ string_of_int
n;
4688 enttext ("page bias: ", E.s, None
, intentry, ondone, true)
4690 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4691 let decr = if conf
.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4692 setzoom (max
0.01 (conf
.zoom -. decr))
4694 | 45 | 0xffad -> (* - *)
4695 let ondone msg
= state
.text <- msg
in
4697 "option [acfhilpstvxACFPRSZTISM]: ", E.s, None
,
4698 optentry state
.mode, ondone, true
4701 | 48 when ctrl -> (* ctrl-0 *)
4709 | (49 | 50) when ctrl && conf
.fitmodel
!= FitPage
-> (* ctrl-1/2 *)
4711 match conf
.columns
with
4712 | Csingle
_ | Cmulti
_ -> 1
4713 | Csplit
(n, _) -> n
4715 let h = state
.winh
-
4716 conf
.interpagespace
lsl (if conf
.presentation
then 1 else 0)
4718 let zoom = zoomforh state
.winw
h (vscrollw ()) cols in
4719 if zoom > 0.0 && (key = 50 || zoom < 1.0)
4722 | 51 when ctrl -> (* ctrl-3 *)
4724 match conf
.fitmodel
with
4725 | FitWidth
-> FitProportional
4726 | FitProportional
-> FitPage
4727 | FitPage
-> FitWidth
4729 state
.text <- "fit model: " ^
FMTE.to_string
fm;
4730 reqlayout conf
.angle
fm
4732 | 0xffc6 -> (* f9 *)
4735 | 57 when ctrl -> (* ctrl-9 *)
4738 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4739 when not
ctrl -> (* 0..9 *)
4742 try int_of_string
s with exc
->
4743 state
.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
4749 cbput state
.hists
.pag
(string_of_int
n);
4750 gotopage1 (n + conf
.pagebias
- 1) 0;
4753 let pageentry text key =
4754 match Char.unsafe_chr
key with
4755 | '
g'
-> TEdone
text
4756 | _ -> intentry text key
4758 let text = "x" in text.[0] <- Char.chr
key;
4759 enttext (":", text, Some
(onhist state
.hists
.pag
), pageentry, ondone, true)
4762 conf
.scrollb
<- if conf
.scrollb
= 0 then (scrollbvv
lor scrollbhv
) else 0;
4763 reshape state
.winw state
.winh
;
4766 state
.bzoom
<- not state
.bzoom
;
4768 showtext ' '
("block zoom " ^
if state
.bzoom
then "on" else "off")
4771 conf
.hlinks
<- not conf
.hlinks
;
4772 state
.text <- "highlightlinks " ^
if conf
.hlinks
then "on" else "off";
4773 G.postRedisplay "toggle highlightlinks";
4776 state
.glinks
<- true;
4777 let mode = state
.mode in
4778 state
.mode <- Textentry
(
4779 (":", E.s, None
, linknentry, linkndone gotounder, false),
4781 state
.glinks
<- false;
4785 G.postRedisplay "view:linkent(F)"
4788 state
.glinks
<- true;
4789 let mode = state
.mode in
4790 state
.mode <- Textentry
(
4792 ":", E.s, None
, linknentry, linkndone (fun under ->
4793 selstring (undertext under);
4797 state
.glinks
<- false;
4801 G.postRedisplay "view:linkent"
4804 begin match state
.autoscroll
with
4806 conf
.autoscrollstep
<- step
;
4807 state
.autoscroll
<- None
4809 if conf
.autoscrollstep
= 0
4810 then state
.autoscroll
<- Some
1
4811 else state
.autoscroll
<- Some conf
.autoscrollstep
4814 | 112 when ctrl -> (* ctrl-p *)
4818 setpresentationmode (not conf
.presentation
);
4819 showtext ' '
("presentation mode " ^
4820 if conf
.presentation
then "on" else "off");
4823 if List.mem
Wsi.Fullscreen state
.winstate
4824 then Wsi.reshape conf
.cwinw conf
.cwinh
4825 else Wsi.fullscreen
()
4827 | 112 | 78 -> (* p|N *)
4828 search state
.searchpattern
false
4830 | 110 | 0xffc0 -> (* n|F3 *)
4831 search state
.searchpattern
true
4834 begin match state
.layout with
4837 gotoghyll (getpagey
l.pageno)
4843 | 0xff9f | 0xffff -> (* delete *)
4847 showtext ' '
(describe_location ());
4850 begin match state
.layout with
4853 Wsi.reshape (l.pagew
+ vscrollw ()) l.pageh
;
4858 enterbookmarkmode ()
4860 | 104 | 0xffbe -> (* h|F1 *)
4866 | 101 when Buffer.length state
.errmsgs
> 0 -> (* e *)
4871 match state
.layout with
4876 (s, 0, Oanchor
(getanchor1
l)) :: state
.bookmarks
4879 enttext ("bookmark: ", E.s, None
, textentry, ondone, true)
4883 showtext ' '
"Quick bookmark added";
4886 begin match state
.layout with
4888 let rect = getpdimrect
l.pagedimno
in
4892 (truncate
(1.8 *. (rect.(1) -. rect.(0))),
4893 truncate
(1.2 *. (rect.(3) -. rect.(0))))
4895 (truncate
(rect.(1) -. rect.(0)),
4896 truncate
(rect.(3) -. rect.(0)))
4898 let w = truncate
((float w)*.conf
.zoom)
4899 and h = truncate
((float h)*.conf
.zoom) in
4902 state
.anchor <- getanchor
();
4903 Wsi.reshape (w + vscrollw ()) (h + conf
.interpagespace
)
4905 G.postRedisplay "z";
4912 | 60 | 62 -> (* < > *)
4913 reqlayout (conf
.angle
+ (if key = 62 then 30 else -30)) conf
.fitmodel
4915 | 91 | 93 -> (* [ ] *)
4917 bound
(conf
.colorscale
+. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
4919 G.postRedisplay "brightness";
4921 | 99 when state
.mode = View
-> (* [alt-]c *)
4926 let m = (wadjsb state
.winw
- state
.w) / 2 in
4928 gotoy_and_clear_text state
.y
4932 match state
.prevcolumns
with
4933 | None
-> (1, 0, 0), 1.0
4934 | Some
(columns
, z
) ->
4937 | Csplit
(c, _) -> -c, 0, 0
4938 | Cmulti
((c, a, b), _) -> c, a, b
4939 | Csingle
_ -> 1, 0, 0
4943 setcolumns View
c a b;
4946 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
4947 -> (* ctrl-shift- (kp) [up|down] *)
4948 let zoom, x = state
.prevzoom
in
4952 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
4953 begin match state
.autoscroll
with
4955 begin match state
.mode with
4956 | Birdseye beye
-> upbirdseye 1 beye
4959 then gotoy_and_clear_text (clamp ~
-(state
.winh
/2))
4961 if not
(Wsi.withshift mask
) && conf
.presentation
4963 else gotoghyll1 true (clamp (-conf
.scrollstep
))
4967 setautoscrollspeed n false
4970 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
4971 begin match state
.autoscroll
with
4973 begin match state
.mode with
4974 | Birdseye beye
-> downbirdseye 1 beye
4977 then gotoy_and_clear_text (clamp (state
.winh
/2))
4979 if not
(Wsi.withshift mask
) && conf
.presentation
4981 else gotoghyll1 true (clamp (conf
.scrollstep
))
4985 setautoscrollspeed n true
4988 | 0xff51 | 0xff53 | 0xff96 | 0xff98
4989 when not
(Wsi.withalt mask
) -> (* (kp) left / right *)
4995 else conf
.hscrollstep
4997 let dx = if key = 0xff51 || key = 0xff96 then dx else -dx in
4998 state
.x <- panbound (state
.x + dx);
4999 gotoy_and_clear_text state
.y
5002 G.postRedisplay "left/right"
5005 | 0xff55 | 0xff9a -> (* (kp) prior *)
5009 match state
.layout with
5011 | l :: _ -> state
.y - l.pagey
5013 clamp (pgscale (-state
.winh
))
5017 | 0xff56 | 0xff9b -> (* (kp) next *)
5021 match List.rev state
.layout with
5023 | l :: _ -> getpagey
l.pageno
5025 clamp (pgscale state
.winh
)
5029 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5031 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5032 gotoghyll (clamp state
.maxy)
5035 when Wsi.withalt mask
-> (* alt-(kp) right *)
5036 gotoghyll (getnav 1)
5038 when Wsi.withalt mask
-> (* alt-(kp) left *)
5039 gotoghyll (getnav ~
-1)
5044 | 118 when conf
.debug
-> (* v *)
5047 match getopaque l.pageno with
5050 let x0, y0, x1, y1 = pagebbox
opaque in
5051 let a,b = float x0, float y0 in
5052 let c,d = float x1, float y0 in
5053 let e,f = float x1, float y1 in
5054 let h,j
= float x0, float y1 in
5055 let rect = (a,b,c,d,e,f,h,j
) in
5057 state
.rects
<- (l.pageno, l.pageno mod 3, rect) :: state
.rects
;
5059 G.postRedisplay "v";
5062 let mode = state
.mode in
5063 let cmd = ref E.s in
5064 let onleave = function
5065 | Cancel
-> state
.mode <- mode
5068 match getopaque l.pageno with
5069 | Some
opaque -> pipesel opaque !cmd
5070 | None
-> ()) state
.layout;
5074 cbput state
.hists
.sel
s;
5078 "| ", !cmd, Some
(onhist state
.hists
.sel
), textentry, ondone, true
5080 G.postRedisplay "|";
5081 state
.mode <- Textentry
(te, onleave);
5084 vlog "huh? %s" (Wsi.keyname
key)
5087 let linknavkeyboard key mask
linknav =
5088 let getpage pageno =
5089 let rec loop = function
5091 | l :: _ when l.pageno = pageno -> Some
l
5092 | _ :: rest
-> loop rest
5093 in loop state
.layout
5095 let doexact (pageno, n) =
5096 match getopaque pageno, getpage pageno with
5097 | Some
opaque, Some
l ->
5098 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5100 let under = getlink
opaque n in
5101 G.postRedisplay "link gotounder";
5107 | 0xff50 -> (* home *)
5108 Some
(findlink
opaque LDfirst
), -1
5110 | 0xff57 -> (* end *)
5111 Some
(findlink
opaque LDlast
), 1
5113 | 0xff51 -> (* left *)
5114 Some
(findlink
opaque (LDleft
n)), -1
5116 | 0xff53 -> (* right *)
5117 Some
(findlink
opaque (LDright
n)), 1
5119 | 0xff52 -> (* up *)
5120 Some
(findlink
opaque (LDup
n)), -1
5122 | 0xff54 -> (* down *)
5123 Some
(findlink
opaque (LDdown
n)), 1
5128 begin match findpwl
l.pageno dir with
5132 state
.mode <- LinkNav
(Ltgendir
dir);
5133 let y, h = getpageyh
pageno in
5136 then y + h - state
.winh
5141 begin match getopaque pageno, getpage pageno with
5142 | Some
opaque, Some
_ ->
5144 let ld = if dir > 0 then LDfirst
else LDlast
in
5147 begin match link with
5149 showlinktype (getlink
opaque m);
5150 state
.mode <- LinkNav
(Ltexact
(pageno, m));
5151 G.postRedisplay "linknav jpage";
5158 begin match opt with
5159 | Some Lnotfound
-> pwl l dir;
5160 | Some
(Lfound
m) ->
5164 let _, y0, _, y1 = getlinkrect
opaque m in
5166 then gotopage1 l.pageno y0
5168 let d = fstate
.fontsize
+ 1 in
5169 if y1 - l.pagey > l.pagevh - d
5170 then gotopage1 l.pageno (y1 - state
.winh
- hscrollh () + d)
5171 else G.postRedisplay "linknav";
5173 showlinktype (getlink
opaque m);
5174 state
.mode <- LinkNav
(Ltexact
(l.pageno, m));
5177 | None
-> viewkeyboard key mask
5179 | _ -> viewkeyboard key mask
5184 G.postRedisplay "leave linknav"
5188 | Ltgendir
_ -> viewkeyboard key mask
5189 | Ltexact exact
-> doexact exact
5192 let keyboard key mask
=
5193 if (key = 103 && Wsi.withctrl mask
) && not
(istextentry state
.mode)
5194 then wcmd "interrupt"
5195 else state
.uioh <- state
.uioh#
key key mask
5198 let birdseyekeyboard key mask
5199 ((oconf
, leftx
, pageno, hooverpageno
, anchor) as beye
) =
5201 match conf
.columns
with
5203 | Cmulti
((c, _, _), _) -> c
5204 | Csplit
_ -> failwith
"bird's eye split mode"
5206 let pgh layout = List.fold_left
(fun m l -> max
l.pageh
m) state
.winh
layout in
5208 | 108 when Wsi.withctrl mask
-> (* ctrl-l *)
5209 let y, h = getpageyh
pageno in
5210 let top = (state
.winh
- h) / 2 in
5211 gotoy (max
0 (y - top))
5212 | 0xff0d (* enter *)
5213 | 0xff8d -> leavebirdseye beye
false (* kp enter *)
5214 | 0xff1b -> leavebirdseye beye
true (* escape *)
5215 | 0xff52 -> upbirdseye incr beye
(* up *)
5216 | 0xff54 -> downbirdseye incr beye
(* down *)
5217 | 0xff51 -> upbirdseye 1 beye
(* left *)
5218 | 0xff53 -> downbirdseye 1 beye
(* right *)
5220 | 0xff55 -> (* prior *)
5221 begin match state
.layout with
5225 state
.mode <- Birdseye
(
5226 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5228 gotopage1 l.pageno 0;
5231 let layout = layout (state
.y-state
.winh
) (pgh state
.layout) in
5233 | [] -> gotoy (clamp (-state
.winh
))
5235 state
.mode <- Birdseye
(
5236 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5238 gotopage1 l.pageno 0
5241 | [] -> gotoy (clamp (-state
.winh
))
5244 | 0xff56 -> (* next *)
5245 begin match List.rev state
.layout with
5247 let layout = layout (state
.y + (pgh state
.layout)) state
.winh
in
5248 begin match layout with
5250 let incr = l.pageh
- l.pagevh in
5255 oconf
, leftx
, state
.pagecount
- 1, hooverpageno
, anchor
5257 G.postRedisplay "birdseye pagedown";
5259 else gotoy (clamp (incr + conf
.interpagespace
*2));
5263 Birdseye
(oconf
, leftx
, l.pageno, hooverpageno
, anchor);
5264 gotopage1 l.pageno 0;
5267 | [] -> gotoy (clamp state
.winh
)
5270 | 0xff50 -> (* home *)
5271 state
.mode <- Birdseye
(oconf
, leftx
, 0, hooverpageno
, anchor);
5274 | 0xff57 -> (* end *)
5275 let pageno = state
.pagecount
- 1 in
5276 state
.mode <- Birdseye
(oconf
, leftx
, pageno, hooverpageno
, anchor);
5277 if not
(pagevisible state
.layout pageno)
5280 match List.rev state
.pdims
with
5282 | (_, _, h, _) :: _ -> h
5284 gotoy (max
0 (getpagey
pageno - (state
.winh
- h - conf
.interpagespace
)))
5285 else G.postRedisplay "birdseye end";
5286 | _ -> viewkeyboard key mask
5291 match state
.mode with
5292 | Textentry
_ -> scalecolor 0.4
5294 | View
-> scalecolor 1.0
5295 | Birdseye
(_, _, pageno, hooverpageno
, _) ->
5296 if l.pageno = hooverpageno
5299 if l.pageno = pageno
5307 let postdrawpage l linkindexbase
=
5308 match getopaque l.pageno with
5310 if tileready l l.pagex
l.pagey
5312 let x = l.pagedispx - l.pagex
+ xadjsb 0
5313 and y = l.pagedispy - l.pagey in
5315 match conf
.columns
with
5316 | Csingle
_ | Cmulti
_ ->
5317 (if conf
.hlinks
then 1 else 0)
5319 && not
(isbirdseye state
.mode) then 2 else 0)
5323 match state
.mode with
5324 | Textentry
((_, s, _, _, _, _), _) when state
.glinks
-> s
5327 postprocess
opaque hlmask x y (linkindexbase
, s, conf
.hfsize
);
5332 let scrollindicator () =
5333 let sbw, ph
, sh = state
.uioh#
scrollph in
5334 let sbh, pw, sw = state
.uioh#scrollpw
in
5339 else (state
.winw
- sbw), state
.winw
5342 GlDraw.color (0.64, 0.64, 0.64);
5343 filledrect (float x0) 0. (float x1) (float state
.winh
);
5345 0. (float (state
.winh
- sbh))
5346 (float (wadjsb state
.winw
- 1)) (float state
.winh
)
5348 GlDraw.color (0.0, 0.0, 0.0);
5350 filledrect (float x0) ph
(float x1) (ph
+. sh);
5351 filledrect pw (float (state
.winh
- sbh)) (pw +. sw) (float state
.winh
);
5355 match state
.mstate
with
5356 | Mnone
| Mscrolly
| Mscrollx
| Mpan
_ | Mzoom
_ | Mzoomrect
_ ->
5359 | Msel
((x0, y0), (x1, y1)) ->
5360 let identify opaque l px py = Some
(opaque, l.pageno, px, py) in
5361 let o0,n0
,px0
,py0
= onppundermouse identify x0 y0 (~
< E.s, -1, 0, 0) in
5362 let _o1,n1
,px1
,py1
= onppundermouse identify x1 y1 (~
< E.s, -1, 0, 0) in
5363 if n0
!= -1 && n0
= n1
then seltext
o0 (px0
, py0
, px1
, py1
);
5366 let showrects = function [] -> () | rects
->
5368 GlDraw.color (0.0, 0.0, 1.0) ~
alpha:0.5;
5369 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5371 (fun (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) ->
5373 if l.pageno = pageno
5375 let dx = float (l.pagedispx - l.pagex
) in
5376 let dy = float (l.pagedispy - l.pagey) in
5377 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~
alpha:0.5;
5378 Raw.sets_float state
.vraw ~
pos:0
5383 GlArray.vertex `two state
.vraw
;
5384 GlArray.draw_arrays `triangle_strip
0 4;
5393 GlClear.color (scalecolor2 conf
.bgcolor
);
5394 GlClear.clear
[`
color];
5395 List.iter
drawpage state
.layout;
5397 match state
.mode with
5398 | LinkNav
(Ltexact
(pageno, linkno
)) ->
5399 begin match getopaque pageno with
5401 let dx = xadjsb 0 in
5402 let x0, y0, x1, y1 = getlinkrect
opaque linkno
in
5403 let x0 = x0 + dx and x1 = x1 + dx in
5410 | None
-> state
.rects
5415 let rec postloop linkindexbase
= function
5417 let linkindexbase = linkindexbase + postdrawpage l linkindexbase in
5418 postloop linkindexbase rest
5422 postloop 0 state
.layout;
5424 begin match state
.mstate
with
5425 | Mzoomrect
((x0, y0), (x1, y1)) ->
5427 GlDraw.color (0.3, 0.3, 0.3) ~
alpha:0.5;
5428 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5429 filledrect (float x0) (float y0) (float x1) (float y1);
5438 let zoomrect x y x1 y1 =
5441 and y0 = min
y y1 in
5442 gotoy (state
.y + y0);
5443 state
.anchor <- getanchor
();
5444 let zoom = (float state
.w) /. float (x1 - x0) in
5446 match conf
.fitmodel
, conf
.columns
with
5447 | FitPage
, Csplit
_ ->
5448 onppundermouse (fun _ l _ _ -> Some
l.pagedispx) x0 y0 x0
5451 let adjw = wadjsb state
.winw
in
5453 then (adjw - state
.w) / 2
5456 state
.x <- (state
.x + margin) - x0;
5462 let g opaque l px py =
5463 match rectofblock
opaque px py with
5465 let x0 = a.(0) -. 20. in
5466 let x1 = a.(1) +. 20. in
5467 let y0 = a.(2) -. 20. in
5468 let zoom = (float state
.w) /. (x1 -. x0) in
5469 let pagey = getpagey
l.pageno in
5470 gotoy_and_clear_text (pagey + truncate
y0);
5471 state
.anchor <- getanchor
();
5472 let margin = (state
.w - l.pagew
)/2 in
5473 state
.x <- -truncate
x0 - margin;
5478 match conf
.columns
with
5480 showtext '
!'
"block zooming does not work properly in split columns mode"
5481 | _ -> onppundermouse g x y ()
5485 let winw = wadjsb state
.winw - 1 in
5486 let s = float x /. float winw in
5487 let destx = truncate
(float (state
.w + winw) *. s) in
5488 state
.x <- winw - destx;
5489 gotoy_and_clear_text state
.y;
5490 state
.mstate
<- Mscrollx
;
5494 let s = float y /. float state
.winh
in
5495 let desty = truncate
(float (state
.maxy - state
.winh
) *. s) in
5496 gotoy_and_clear_text desty;
5497 state
.mstate
<- Mscrolly
;
5500 let viewmulticlick clicks
x y mask
=
5501 let g opaque l px py =
5509 if markunder
opaque px py mark
5513 match getopaque l.pageno with
5515 | Some
opaque -> pipesel opaque cmd
5517 state
.roam
<- (fun () -> dopipe conf
.paxcmd
);
5518 if not
(Wsi.withctrl mask
) then dopipe conf
.selcmd
;
5523 G.postRedisplay "viewmulticlick";
5524 onppundermouse g x y (fun () -> showtext '
!'
"Nothing to select") ();
5528 match conf
.columns
with
5530 | Csingle
_ | Cmulti
_ -> conf
.angle
mod 360 = 0
5533 let viewmouse button down
x y mask
=
5535 | n when (n == 4 || n == 5) && not down
->
5536 if Wsi.withctrl mask
5538 match state
.mstate
with
5539 | Mzoom
(oldn
, i
) ->
5547 if conf
.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5549 if conf
.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5551 let zoom = conf
.zoom -. incr in
5553 state
.mstate
<- Mzoom
(n, 0);
5555 state
.mstate
<- Mzoom
(n, i
+1);
5557 else state
.mstate
<- Mzoom
(n, 0)
5559 | _ -> state
.mstate
<- Mzoom
(n, 0)
5562 match state
.autoscroll
with
5563 | Some step
-> setautoscrollspeed step
(n=4)
5565 if conf
.wheelbypage
|| conf
.presentation
5574 then -conf
.scrollstep
5575 else conf
.scrollstep
5577 let incr = incr * 2 in
5578 let y = clamp incr in
5579 gotoy_and_clear_text y
5582 | n when (n = 6 || n = 7) && not down
&& canpan () ->
5584 panbound (state
.x + (if n = 7 then -2 else 2) * conf
.hscrollstep
);
5585 gotoy_and_clear_text state
.y
5587 | 1 when Wsi.withshift mask
->
5588 state
.mstate
<- Mnone
;
5591 match unproject x y with
5592 | Some
(pageno, ux
, uy
) ->
5593 let cmd = Printf.sprintf
5595 conf
.stcmd state
.path pageno ux uy
5601 | 1 when Wsi.withctrl mask
->
5604 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5605 state
.mstate
<- Mpan
(x, y)
5608 state
.mstate
<- Mnone
5613 Wsi.setcursor
Wsi.CURSOR_CYCLE
;
5615 state
.mstate
<- Mzoomrect
(p, p)
5618 match state
.mstate
with
5619 | Mzoomrect
((x0, y0), _) ->
5620 if abs
(x-x0) > 10 && abs
(y - y0) > 10
5621 then zoomrect x0 y0 x y
5624 G.postRedisplay "kill accidental zoom rect";
5630 | 1 when x > state
.winw - vscrollw () ->
5633 let _, position, sh = state
.uioh#
scrollph in
5634 if y > truncate
position && y < truncate
(position +. sh)
5635 then state
.mstate
<- Mscrolly
5638 state
.mstate
<- Mnone
5640 | 1 when y > state
.winh
- hscrollh () ->
5643 let _, position, sw = state
.uioh#scrollpw
in
5644 if x > truncate
position && x < truncate
(position +. sw)
5645 then state
.mstate
<- Mscrollx
5648 state
.mstate
<- Mnone
5650 | 1 when state
.bzoom
-> if not down
then zoomblock x y
5653 let dest = if down
then getunder x y else Unone
in
5654 begin match dest with
5657 | Uremote
_ | Uremotedest
_
5658 | Uunexpected
_ | Ulaunch
_ | Unamed
_ ->
5661 | Unone
when down
->
5662 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5663 state
.mstate
<- Mpan
(x, y);
5665 | Unone
| Utext
_ ->
5670 state
.mstate
<- Msel
((x, y), (x, y));
5671 G.postRedisplay "mouse select";
5675 match state
.mstate
with
5678 | Mzoom
_ | Mscrollx
| Mscrolly
->
5679 state
.mstate
<- Mnone
5681 | Mzoomrect
((x0, y0), _) ->
5685 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5686 state
.mstate
<- Mnone
5688 | Msel
((x0, y0), (x1, y1)) ->
5689 let rec loop = function
5693 let a0 = l.pagedispy in
5694 let a1 = a0 + l.pagevh in
5695 let b0 = l.pagedispx in
5696 let b1 = b0 + l.pagevw in
5697 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5698 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5702 match getopaque l.pageno with
5705 match Ne.res Unix.pipe
with
5709 "can not create sel pipe: %s"
5713 Ne.clo fd
(fun msg
->
5714 dolog
"%s close failed: %s" what msg
)
5717 try popen
cmd [r, 0; w, -1]; true
5719 dolog
"can not execute %S: %s"
5726 G.postRedisplay "copysel";
5728 else clo "Msel pipe/w" w;
5729 clo "Msel pipe/r" r;
5731 dosel conf
.selcmd
();
5732 state
.roam
<- dosel conf
.paxcmd
;
5744 let birdseyemouse button down
x y mask
5745 (conf
, leftx
, _, hooverpageno
, anchor) =
5748 let rec loop = function
5751 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5752 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5754 leavebirdseye (conf
, leftx
, l.pageno, hooverpageno
, anchor) false;
5760 | _ -> viewmouse button down
x y mask
5766 method key key mask
=
5767 begin match state
.mode with
5768 | Textentry
textentry -> textentrykeyboard key mask
textentry
5769 | Birdseye
birdseye -> birdseyekeyboard key mask
birdseye
5770 | View
-> viewkeyboard key mask
5771 | LinkNav
linknav -> linknavkeyboard key mask
linknav
5775 method button button bstate
x y mask
=
5776 begin match state
.mode with
5778 | View
-> viewmouse button bstate
x y mask
5779 | Birdseye beye
-> birdseyemouse button bstate
x y mask beye
5784 method multiclick clicks
x y mask
=
5785 begin match state
.mode with
5787 | View
-> viewmulticlick clicks
x y mask
5794 begin match state
.mode with
5796 | View
| Birdseye
_ | LinkNav
_ ->
5797 match state
.mstate
with
5798 | Mzoom
_ | Mnone
-> ()
5803 state
.mstate
<- Mpan
(x, y);
5805 then state
.x <- panbound (state
.x + dx);
5807 gotoy_and_clear_text y
5810 state
.mstate
<- Msel
(a, (x, y));
5811 G.postRedisplay "motion select";
5814 let y = min state
.winh
(max
0 y) in
5818 let x = min state
.winw (max
0 x) in
5821 | Mzoomrect
(p0
, _) ->
5822 state
.mstate
<- Mzoomrect
(p0
, (x, y));
5823 G.postRedisplay "motion zoomrect";
5827 method pmotion
x y =
5828 begin match state
.mode with
5829 | Birdseye
(conf
, leftx
, pageno, hooverpageno
, anchor) ->
5830 let rec loop = function
5832 if hooverpageno
!= -1
5834 state
.mode <- Birdseye
(conf
, leftx
, pageno, -1, anchor);
5835 G.postRedisplay "pmotion birdseye no hoover";
5838 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5839 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5841 state
.mode <- Birdseye
(conf
, leftx
, pageno, l.pageno, anchor);
5842 G.postRedisplay "pmotion birdseye hoover";
5852 match state
.mstate
with
5853 | Mpan
_ | Msel
_ | Mzoom
_ | Mscrolly
| Mscrollx
| Mzoomrect
_ ->
5862 let past, _, _ = !r in
5864 let delta = now -. past in
5867 else r := (now, x, y)
5871 method infochanged
_ = ()
5874 let maxy = state
.maxy - (if conf
.maxhfit
then state
.winh
else 0) in
5877 then 0.0, float state
.winh
5878 else scrollph state
.y maxy
5883 let winw = wadjsb state
.winw in
5884 let fwinw = float winw in
5886 let sw = fwinw /. float state
.w in
5887 let sw = fwinw *. sw in
5888 max
sw (float conf
.scrollh
)
5891 let maxx = state
.w + winw in
5892 let x = winw - state
.x in
5893 let percent = float x /. float maxx in
5894 (fwinw -. sw) *. percent
5896 hscrollh (), position, sw
5900 match state
.mode with
5901 | LinkNav
_ -> "links"
5902 | Textentry
_ -> "textentry"
5903 | Birdseye
_ -> "birdseye"
5906 findkeyhash conf
modename
5908 method eformsgs
= true
5911 let adderrmsg src msg
=
5912 Buffer.add_string state
.errmsgs msg
;
5913 state
.newerrmsgs
<- true;
5917 let adderrfmt src fmt
=
5918 Format.kprintf
(fun s -> adderrmsg src s) fmt
;
5922 let cl = splitatspace cmds
in
5924 try Scanf.sscanf
s fmt
f
5926 adderrfmt "remote exec"
5927 "error processing '%S': %s\n" cmds
(exntos exn
)
5930 | "reload" :: [] -> reload ()
5931 | "goto" :: args
:: [] ->
5932 scan args
"%u %f %f"
5934 let cmd, _ = state
.geomcmds
in
5936 then gotopagexy pageno x y
5939 gotopagexy pageno x y;
5942 state
.reprf
<- f state
.reprf
5944 | "goto1" :: args
:: [] -> scan args
"%u %f" gotopage
5945 | "gotor" :: args
:: [] ->
5947 (fun filename
pageno -> gotounder (Uremote
(filename
, pageno)))
5948 | "gotord" :: args
:: [] ->
5950 (fun filename
dest -> gotounder (Uremotedest
(filename
, dest)))
5951 | "rect" :: args
:: [] ->
5952 scan args
"%u %u %f %f %f %f"
5953 (fun pageno color x0 y0 x1 y1 ->
5954 onpagerect pageno (fun w h ->
5955 let _,w1,h1
,_ = getpagedim
pageno in
5956 let sw = float w1 /. float w
5957 and sh = float h1
/. float h in
5961 and y1s
= y1 *. sh in
5962 let rect = (x0s,y0s
,x1s
,y0s
,x1s
,y1s
,x0s,y1s
) in
5964 state
.rects <- (pageno, color, rect) :: state
.rects;
5965 G.postRedisplay "rect";
5968 | "activatewin" :: [] -> Wsi.activatewin
()
5969 | "quit" :: [] -> raise Quit
5971 adderrfmt "remote command"
5972 "error processing remote command: %S\n" cmds
;
5976 let scratch = String.create
80 in
5977 let buf = Buffer.create
80 in
5980 try Some
(Unix.read fd
scratch 0 80)
5982 | Unix.Unix_error
(Unix.EAGAIN
, _, _) -> None
5983 | Unix.Unix_error
(Unix.EINTR
, _, _) -> tempfr ()
5986 match tempfr () with
5992 if Buffer.length
buf > 0
5994 let s = Buffer.contents
buf in
6004 let pos = String.index_from
scratch ppos '
\n'
in
6005 if pos >= n then -1 else pos
6006 with Not_found
-> -1
6010 Buffer.add_substring
buf scratch ppos
(nlpos-ppos
);
6011 let s = Buffer.contents
buf in
6017 Buffer.add_substring
buf scratch ppos
(n-ppos
);
6023 let remoteopen path =
6024 try Some
(Unix.openfile
path [Unix.O_NONBLOCK
; Unix.O_RDONLY
] 0o0)
6026 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn
);
6031 let trimcachepath = ref E.s in
6032 let rcmdpath = ref E.s in
6033 let pageno = ref None
in
6034 selfexec := Sys.executable_name
;
6037 [("-p", Arg.String
(fun s -> state
.password
<- s),
6038 "<password> Set password");
6042 Config.fontpath
:= s;
6043 selfexec := !selfexec ^
" -f " ^
Filename.quote
s;
6045 "<path> Set path to the user interface font");
6049 selfexec := !selfexec ^
" -c " ^
Filename.quote
s;
6050 Config.confpath
:= s),
6051 "<path> Set path to the configuration file");
6053 ("-page", Arg.Int
(fun pageno1
-> pageno := Some
(pageno1
-1)),
6054 "<page-number> Jump to page");
6056 ("-tcf", Arg.String
(fun s -> trimcachepath := s),
6057 "<path> Set path to the trim cache file");
6059 ("-dest", Arg.String
(fun s -> state
.nameddest
<- s),
6060 "<named-destination> Set named destination");
6062 ("-wtmode", Arg.Set
wtmode, " Operate in wt mode");
6063 ("-cxack", Arg.Set
cxack, " Cut corners");
6065 ("-remote", Arg.String
(fun s -> rcmdpath := s),
6066 "<path> Set path to the remote commands source");
6068 ("-origin", Arg.String
(fun s -> state
.origin
<- s),
6069 "<original-path> Set original path");
6071 ("-v", Arg.Unit
(fun () ->
6073 "%s\nconfiguration path: %s\n"
6077 exit
0), " Print version and exit");
6080 (fun s -> state
.path <- s)
6081 ("Usage: " ^
Sys.argv
.(0) ^
" [options] some.pdf\nOptions:")
6084 then selfexec := !selfexec ^
" -wtmode";
6086 let histmode = emptystr state
.path in
6088 if not
(Config.load ())
6089 then prerr_endline
"failed to load configuration";
6090 begin match !pageno with
6091 | Some
pageno -> state
.anchor <- (pageno, 0.0, 0.0)
6095 let wsfd, winw, winh
= Wsi.init
(object (self)
6096 val mutable m_hack
= false
6097 val mutable m_clicks
= 0
6098 val mutable m_click_x
= 0
6099 val mutable m_click_y
= 0
6100 val mutable m_lastclicktime
= infinity
6102 method private cleanup
=
6103 state
.roam
<- noroam
;
6104 Hashtbl.iter
(fun _ opaque -> clearmark
opaque) state
.pagemap
;
6105 method expose
= if not m_hack
then G.postRedisplay "expose"
6106 method visible
= G.postRedisplay "visible"
6107 method display = m_hack
<- false; display ()
6108 method reshape w h =
6110 m_hack
<- w < state
.winw && h < state
.winh
;
6112 method mouse
b d x y m =
6113 if d && canselect ()
6115 (* http://blogs.msdn.com/b/oldnewthing/archive/2004/10/18/243925.aspx *)
6121 if abs
x - m_click_x
> 10
6122 || abs
y - m_click_y
> 10
6123 || abs_float
(t -. m_lastclicktime
) > 0.3
6125 m_clicks
<- m_clicks
+ 1;
6126 m_lastclicktime
<- t;
6130 G.postRedisplay "cleanup";
6131 state
.uioh <- state
.uioh#button
b d x y m;
6133 else state
.uioh <- state
.uioh#multiclick m_clicks
x y m
6138 m_lastclicktime
<- infinity
;
6139 state
.uioh <- state
.uioh#button
b d x y m
6143 state
.uioh <- state
.uioh#button
b d x y m
6146 state
.mpos
<- (x, y);
6147 state
.uioh <- state
.uioh#motion
x y
6148 method pmotion
x y =
6149 state
.mpos
<- (x, y);
6150 state
.uioh <- state
.uioh#pmotion
x y
6152 let mascm = m land (
6153 Wsi.altmask
+ Wsi.shiftmask
+ Wsi.ctrlmask
+ Wsi.metamask
6156 let x = state
.x and y = state
.y in
6158 if x != state
.x || y != state
.y then self#cleanup
6160 match state
.keystate
with
6162 let km = k
, mascm in
6165 let modehash = state
.uioh#
modehash in
6166 try Hashtbl.find modehash km
6168 try Hashtbl.find (findkeyhash conf
"global") km
6169 with Not_found
-> KMinsrt
(k
, m)
6171 | KMinsrt
(k
, m) -> keyboard k
m
6172 | KMinsrl
l -> List.iter
(fun (k
, m) -> keyboard k
m) l
6173 | KMmulti
(l, r) -> state
.keystate
<- KSinto
(l, r)
6175 | KSinto
((k'
, m'
) :: [], insrt
) when k'
=k
&& m'
land mascm = m'
->
6176 List.iter
(fun (k
, m) -> keyboard k
m) insrt
;
6177 state
.keystate
<- KSnone
6178 | KSinto
((k'
, m'
) :: keys
, insrt
) when k'
=k
&& m'
land mascm = m'
->
6179 state
.keystate
<- KSinto
(keys
, insrt
)
6181 state
.keystate
<- KSnone
6184 state
.mpos
<- (x, y);
6185 state
.uioh <- state
.uioh#pmotion
x y
6186 method leave = state
.mpos
<- (-1, -1)
6187 method winstate wsl
= state
.winstate
<- wsl
; m_hack
<- false
6188 method quit
= raise Quit
6189 end) conf
.cwinw conf
.cwinh
(platform
= Posx
) in
6194 List.exists
GlMisc.check_extension
6195 [ "GL_ARB_texture_rectangle"
6196 ; "GL_EXT_texture_recangle"
6197 ; "GL_NV_texture_rectangle" ]
6199 then (prerr_endline
"OpenGL does not suppport rectangular textures"; exit
1);
6202 let r = GlMisc.get_string `renderer
in
6203 let p = "Mesa DRI Intel(" in
6204 let l = String.length
p in
6205 String.length
r > l && String.sub
r 0 l = p
6208 defconf
.sliceheight
<- 1024;
6209 defconf
.texcount
<- 32;
6210 defconf
.usepbo
<- true;
6214 match Ne.res Unix.pipe
with
6216 Printf.eprintf
"pipe/crsw failed: %s" (exntos exn
);
6220 match Ne.res Unix.pipe
with
6222 Printf.eprintf
"pipe/srcw failed: %s" (exntos exn
);
6232 setcheckers conf
.checkers
;
6234 if conf
.redirectstderr
6237 let s = Buffer.contents state
.errmsgs ^
6238 (match state
.errfd
with
6240 let s = String.create
(80*24) in
6243 let r, _, _ = Unix.select
[fd
] [] [] 0.0 in
6245 then Unix.read fd
s 0 (String.length
s)
6251 else String.sub
s 0 n
6255 try ignore
(Unix.write state
.stderr
s 0 (String.length
s))
6256 with exn
-> print_endline
(exntos exn
)
6261 conf
.angle
, conf
.fitmodel
, (conf
.trimmargins
, conf
.trimfuzz
),
6262 conf
.texcount
, conf
.sliceheight
, conf
.mustoresize
, conf
.colorspace
,
6263 !Config.fontpath
, !trimcachepath,
6264 GlMisc.check_extension
"GL_ARB_pixel_buffer_object"
6266 List.iter
GlArray.enable
[`texture_coord
; `vertex
];
6276 state
.text <- "Opening " ^
(mbtoutf8 state
.path);
6277 opendoc state
.path state
.password
;
6282 Sys.set_signal
Sys.sighup
(Sys.Signal_handle
(fun _ -> reload ()));
6285 if nonemptystr
!rcmdpath
6286 then remoteopen !rcmdpath
6291 let rec loop deadline
=
6293 match state
.errfd
with
6294 | None
-> [state
.sr
; state
.wsfd]
6295 | Some fd
-> [state
.sr
; state
.wsfd; fd
]
6300 | Some fd
-> fd
:: r
6304 state
.redisplay
<- false;
6311 if deadline
= infinity
6313 else max
0.0 (deadline
-. now)
6318 try Unix.select
r [] [] timeout
6319 with Unix.Unix_error
(Unix.EINTR
, _, _) -> [], [], []
6325 if state
.ghyll
== noghyll
6327 match state
.autoscroll
with
6328 | Some step
when step
!= 0 ->
6329 let y = state
.y + step
in
6333 else if y >= state
.maxy then 0 else y
6336 if state
.mode = View
6337 then state
.text <- E.s;
6340 else deadline
+. 0.01
6345 let rec checkfds = function
6347 | fd
:: rest
when fd
= state
.sr
->
6348 let cmd = readcmd state
.sr
in
6352 | fd
:: rest
when fd
= state
.wsfd ->
6356 | fd
:: rest
when Some fd
= !optrfd ->
6357 begin match remote fd
with
6358 | None
-> optrfd := remoteopen !rcmdpath;
6359 | opt -> optrfd := opt
6364 let s = String.create
80 in
6365 let n = tempfailureretry
(Unix.read fd
s 0) 80 in
6366 if conf
.redirectstderr
6368 Buffer.add_substring state
.errmsgs
s 0 n;
6369 state
.newerrmsgs
<- true;
6370 state
.redisplay
<- true;
6373 prerr_string
(String.sub
s 0 n);
6378 let hoty = !Config.historder
in
6380 if hoty <> !Config.historder
6381 then enterhistmode ();
6384 if deadline
= infinity
6388 match state
.autoscroll
with
6389 | Some step
when step
!= 0 -> deadline1
6390 | _ -> if state
.ghyll
== noghyll
then infinity
else deadline1
6398 Config.save
leavebirdseye;