8 | Ulinkgoto
of (int * int)
10 | Uunexpected
of string
13 | Uremote
of (string * int)
14 and facename
= string;;
16 type params
= (angle
* fitmodel
* trimparams
17 * texcount
* sliceheight
* memsize
18 * colorspace
* fontpath
* trimcachepath
28 and trimmargins
= bool
29 and interpagespace
= int
36 and trimcachepath
= string
39 and irect
= (int * int * int * int)
40 and trimparams
= (trimmargins
* irect
)
41 and colorspace
= | Rgb
| Bgr
| Gray
42 and fitmodel
= | FitWidth
| FitProportional
| FitPage
50 and tileparams
= (x
* y
* width
* height
* tilex
* tiley
)
59 | LDfirstvisible
of (int * int * int)
74 | KMmulti
of key list
* key list
76 and keyhash
= (key
, keymap
) Hashtbl.t
79 | KSinto
of (key list
* key list
)
82 type platform
= | Punknown
| Plinux
| Posx
| Psun
| Pfreebsd
83 | Pdragonflybsd
| Popenbsd
| Pnetbsd
| Pcygwin
;;
85 type pipe
= (Unix.file_descr
* Unix.file_descr
);;
87 external init
: pipe
-> params
-> unit = "ml_init";;
88 external seltext
: string -> (int * int * int * int) -> unit = "ml_seltext";;
89 external copysel
: Unix.file_descr
-> opaque
-> unit = "ml_copysel";;
90 external getpdimrect
: int -> float array
= "ml_getpdimrect";;
91 external whatsunder
: string -> int -> int -> under
= "ml_whatsunder";;
92 external zoomforh
: int -> int -> int -> int -> float = "ml_zoom_for_height";;
93 external drawstr
: int -> int -> int -> string -> float = "ml_draw_string";;
94 external measurestr
: int -> string -> float = "ml_measure_string";;
95 external postprocess
:
96 opaque
-> int -> int -> int -> (int * string * int) -> int
98 external pagebbox
: opaque
-> (int * int * int * int) = "ml_getpagebox";;
99 external platform
: unit -> platform
= "ml_platform";;
100 external setaalevel
: int -> unit = "ml_setaalevel";;
101 external realloctexts
: int -> bool = "ml_realloctexts";;
102 external findlink
: opaque
-> linkdir
-> link
= "ml_findlink";;
103 external getlink
: opaque
-> int -> under
= "ml_getlink";;
104 external getlinkrect
: opaque
-> int -> irect
= "ml_getlinkrect";;
105 external getlinkcount
: opaque
-> int = "ml_getlinkcount";;
106 external findpwl
: int -> int -> pagewithlinks
= "ml_find_page_with_links"
107 external popen
: string -> (Unix.file_descr
* int) list
-> unit = "ml_popen";;
108 external getpbo
: width
-> height
-> colorspace
-> string = "ml_getpbo";;
109 external freepbo
: string -> unit = "ml_freepbo";;
110 external unmappbo
: string -> unit = "ml_unmappbo";;
111 external pbousable
: unit -> bool = "ml_pbo_usable";;
112 external unproject
: opaque
-> int -> int -> (int * int) option
114 external drawtile
: tileparams
-> opaque
-> unit = "ml_drawtile";;
116 let platform_to_string = function
117 | Punknown
-> "unknown"
121 | Pfreebsd
-> "FreeBSD"
122 | Pdragonflybsd
-> "DragonflyBSD"
123 | Popenbsd
-> "OpenBSD"
124 | Pnetbsd
-> "NetBSD"
125 | Pcygwin
-> "Cygwin"
128 let platform = platform ();;
130 let now = Unix.gettimeofday
;;
133 if platform = Pcygwin
135 let sh = "/bin/sh" in
136 let args = [|sh; "-c"; cmd
|] in
137 let rec std si so se
= function
139 | (fd
, 0) :: rest
-> std fd so se rest
140 | (fd
, -1) :: rest
->
141 Unix.set_close_on_exec fd
;
144 failwith
("unexpected fdn in cygwin popen " ^ string_of_int n
)
146 let si, so
, se
= std Unix.stdin
Unix.stdout
Unix.stderr fda
in
147 ignore
(Unix.create_process
sh args si so se
)
152 type mpos
= int * int
154 | Msel
of (mpos
* mpos
)
156 | Mscrolly
| Mscrollx
157 | Mzoom
of (int * int)
158 | Mzoomrect
of (mpos
* mpos
)
162 type textentry
= string * string * onhist
option * onkey
* ondone
* cancelonempty
163 and onkey
= string -> int -> te
164 and ondone
= string -> unit
165 and histcancel
= unit -> unit
166 and onhist
= ((histcmd
-> string) * histcancel
)
167 and histcmd
= HCnext
| HCprev
| HCfirst
| HClast
168 and cancelonempty
= bool
173 | TEswitch
of textentry
184 let bound v minv maxv
=
185 max minv
(min maxv v
);
189 { store
= Array.create n v
196 let cbcap b
= Array.length b
.store
;;
201 b
.wc
<- (b
.wc
+ 1) mod cap;
203 b
.len
<- min
(b
.len
+ 1) cap;
206 let cbempty b
= b
.len
= 0;;
208 let cbgetg b circular dir
=
212 let rc = b
.rc + dir
in
224 else bound rc 0 (b
.len
-1)
230 let cbget b
= cbgetg b
false;;
231 let cbgetc b
= cbgetg b
true;;
233 let drawstring size x y s
=
235 Gl.enable `texture_2d
;
236 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
237 ignore
(drawstr size x y s
);
239 Gl.disable `texture_2d
;
242 let drawstring1 size x y s
=
246 let drawstring2 size x y fmt
=
247 Printf.kprintf
(drawstring size
(x
+1) (y
+size
+1)) fmt
266 dolog
"l %d dim=%d {" l
.pageno l
.pagedimno
;
267 dolog
" WxH %dx%d" l
.pagew l
.pageh
;
268 dolog
" vWxH %dx%d" l
.pagevw l
.pagevh
;
269 dolog
" pagex,y %d,%d" l
.pagex l
.pagey
;
270 dolog
" dispx,y %d,%d" l
.pagedispx l
.pagedispy
;
271 dolog
" column %d" l
.pagecol
;
275 let debugrect (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
) =
277 dolog
" x0,y0=(% f, % f)" x0 y0
;
278 dolog
" x1,y1=(% f, % f)" x1 y1
;
279 dolog
" x2,y2=(% f, % f)" x2 y2
;
280 dolog
" x3,y3=(% f, % f)" x3 y3
;
284 type multicolumns
= multicol
* pagegeom
285 and singlecolumn
= pagegeom
286 and splitcolumns
= columncount
* pagegeom
287 and pagegeom
= ((pdimno
* x
* y
* (pageno
* width
* height
* leftx
)) array
)
288 and multicol
= columncount
* covercount
* covercount
290 and columncount
= int
291 and covercount
= int;;
294 { mutable scrollbw
: int
295 ; mutable scrollh
: int
296 ; mutable icase
: bool
297 ; mutable preload
: bool
298 ; mutable pagebias
: int
299 ; mutable verbose
: bool
300 ; mutable debug
: bool
301 ; mutable scrollstep
: int
302 ; mutable hscrollstep
: int
303 ; mutable maxhfit
: bool
304 ; mutable crophack
: bool
305 ; mutable autoscrollstep
: int
306 ; mutable maxwait
: float option
307 ; mutable hlinks
: bool
308 ; mutable underinfo
: bool
309 ; mutable interpagespace
: interpagespace
310 ; mutable zoom
: float
311 ; mutable presentation
: bool
312 ; mutable angle
: angle
313 ; mutable cwinw
: int
314 ; mutable cwinh
: int
315 ; mutable savebmarks
: bool
316 ; mutable fitmodel
: fitmodel
317 ; mutable trimmargins
: trimmargins
318 ; mutable trimfuzz
: irect
319 ; mutable memlimit
: memsize
320 ; mutable texcount
: texcount
321 ; mutable sliceheight
: sliceheight
322 ; mutable thumbw
: width
323 ; mutable jumpback
: bool
324 ; mutable bgcolor
: (float * float * float)
325 ; mutable bedefault
: bool
326 ; mutable scrollbarinpm
: bool
327 ; mutable tilew
: int
328 ; mutable tileh
: int
329 ; mutable mustoresize
: memsize
330 ; mutable checkers
: bool
331 ; mutable aalevel
: int
332 ; mutable urilauncher
: string
333 ; mutable pathlauncher
: string
334 ; mutable colorspace
: colorspace
335 ; mutable invert
: bool
336 ; mutable colorscale
: float
337 ; mutable redirectstderr
: bool
338 ; mutable ghyllscroll
: (int * int * int) option
339 ; mutable columns
: columns
340 ; mutable beyecolumns
: columncount
option
341 ; mutable selcmd
: string
342 ; mutable updatecurs
: bool
343 ; mutable keyhashes
: (string * keyhash
) list
344 ; mutable hfsize
: int
345 ; mutable pgscale
: float
346 ; mutable usepbo
: bool
347 ; mutable wheelbypage
: bool
348 ; mutable stcmd
: string
351 | Csingle
of singlecolumn
352 | Cmulti
of multicolumns
353 | Csplit
of splitcolumns
356 type anchor
= pageno
* top
* dtop
;;
358 type outline
= string * int * anchor
;;
360 type rect
= float * float * float * float * float * float * float * float;;
362 type tile
= opaque
* pixmapsize
* elapsed
363 and elapsed
= float;;
364 type pagemapkey
= pageno
* gen
;;
365 type tilemapkey
= pageno
* gen
* colorspace
* angle
* width
* height
* col
* row
369 let emptyanchor = (0, 0.0, 0.0);;
371 type infochange
= | Memused
| Docinfo
| Pdim
;;
373 class type uioh
= object
374 method display
: unit
375 method key
: int -> int -> uioh
376 method button
: int -> bool -> int -> int -> int -> uioh
377 method motion
: int -> int -> uioh
378 method pmotion
: int -> int -> uioh
379 method infochanged
: infochange
-> unit
380 method scrollpw
: (int * float * float)
381 method scrollph
: (int * float * float)
382 method modehash
: keyhash
383 method eformsgs
: bool
387 | Birdseye
of (conf
* leftx
* pageno
* pageno
* anchor
)
388 | Textentry
of (textentry
* onleave
)
390 | LinkNav
of linktarget
391 and onleave
= leavetextentrystatus
-> unit
392 and leavetextentrystatus
= | Cancel
| Confirm
393 and helpitem
= string * int * action
396 | Action
of (uioh
-> uioh
)
398 | Ltexact
of (pageno
* int)
402 let isbirdseye = function Birdseye _
-> true | _
-> false;;
403 let istextentry = function Textentry _
-> true | _
-> false;;
407 | Loading
of (page
* gen
)
409 page
* opaque
* colorspace
* angle
* gen
* col
* row
* width
* height
411 | Outlining
of outline list
414 let emptykeyhash = Hashtbl.create
0;;
415 let nouioh : uioh
= object (self
)
417 method key _ _
= self
418 method button _ _ _ _ _
= self
419 method motion _ _
= self
420 method pmotion _ _
= self
421 method infochanged _
= ()
422 method scrollpw
= (0, nan
, nan
)
423 method scrollph
= (0, nan
, nan
)
424 method modehash
= emptykeyhash
425 method eformsgs
= false
429 { mutable sr
: Unix.file_descr
430 ; mutable sw
: Unix.file_descr
431 ; mutable wsfd
: Unix.file_descr
432 ; mutable errfd
: Unix.file_descr
option
433 ; mutable stderr
: Unix.file_descr
434 ; mutable errmsgs
: Buffer.t
435 ; mutable newerrmsgs
: bool
439 ; mutable scrollw
: int
440 ; mutable hscrollh
: int
441 ; mutable anchor
: anchor
442 ; mutable ranchors
: (string * string * anchor
) list
444 ; mutable layout
: page list
445 ; pagemap
: (pagemapkey
, opaque
) Hashtbl.t
446 ; tilemap
: (tilemapkey
, tile
) Hashtbl.t
447 ; tilelru
: (tilemapkey
* opaque
* pixmapsize
) Queue.t
448 ; mutable pdims
: (pageno
* width
* height
* leftx
) list
449 ; mutable pagecount
: int
450 ; mutable currently
: currently
451 ; mutable mstate
: mstate
452 ; mutable searchpattern
: string
453 ; mutable rects
: (pageno
* recttype
* rect
) list
454 ; mutable rects1
: (pageno
* recttype
* rect
) list
455 ; mutable text
: string
456 ; mutable winstate
: Wsi.winstate list
457 ; mutable mode
: mode
458 ; mutable uioh
: uioh
459 ; mutable outlines
: outline array
460 ; mutable bookmarks
: outline list
461 ; mutable path
: string
462 ; mutable password
: string
463 ; mutable nameddest
: string
464 ; mutable geomcmds
: (string * ((string * (unit -> unit)) list
))
465 ; mutable memused
: memsize
467 ; mutable throttle
: (page list
* int * float) option
468 ; mutable autoscroll
: int option
469 ; mutable ghyll
: (int option -> unit)
470 ; mutable help
: helpitem array
471 ; mutable docinfo
: (int * string) list
472 ; mutable texid
: GlTex.texture_id
option
474 ; mutable prevzoom
: float
475 ; mutable progress
: float
476 ; mutable redisplay
: bool
477 ; mutable mpos
: mpos
478 ; mutable keystate
: keystate
479 ; mutable glinks
: bool
480 ; mutable prevcolumns
: (columns
* float) option
483 ; mutable reprf
: (unit -> unit)
486 { pat
: string circbuf
487 ; pag
: string circbuf
488 ; nav
: anchor circbuf
489 ; sel
: string circbuf
511 ; presentation
= false
516 ; fitmodel
= FitProportional
517 ; trimmargins
= false
518 ; trimfuzz
= (0,0,0,0)
519 ; memlimit
= 32 lsl 20
524 ; bgcolor
= (0.5, 0.5, 0.5)
526 ; scrollbarinpm
= true
529 ; mustoresize
= 256 lsl 20
534 | Plinux
| Pfreebsd
| Pdragonflybsd
535 | Popenbsd
| Pnetbsd
| Psun
-> "xdg-open \"%s\""
536 | Posx
-> "open \"%s\""
537 | Pcygwin
-> "cygstart \"%s\""
538 | Punknown
-> "echo %s")
539 ; pathlauncher
= "lp \"%s\""
542 | Plinux
| Pfreebsd
| Pdragonflybsd
543 | Popenbsd
| Pnetbsd
| Psun
-> "xsel -i"
550 ; redirectstderr
= false
552 ; columns
= Csingle
[||]
558 ; wheelbypage
= false
559 ; stcmd
= "echo SyncTex"
561 let mk n
= (n
, Hashtbl.create
1) in
575 let wtmode = ref false;;
577 let findkeyhash c name
=
578 try List.assoc name c
.keyhashes
579 with Not_found
-> failwith
("invalid mode name `" ^ name ^
"'")
582 let conf = { defconf with angle
= defconf.angle
};;
584 let pgscale h
= truncate
(float h
*. conf.pgscale);;
587 { mutable fontsize
: int
588 ; mutable wwidth
: float
589 ; mutable maxrows
: int
601 let colonpos = try String.index s '
:'
with Not_found
-> -1 in
602 let len = String.length s
in
603 if colonpos >= 0 && colonpos + 3 < len
605 if s
.[colonpos+1] = '
/'
&& s
.[colonpos+2] = '
/'
608 try String.rindex_from s
colonpos ' '
612 String.sub s
(schemestartpos+1) (colonpos-1-schemestartpos)
615 | "http" | "ftp" | "mailto" ->
617 try String.index_from s
colonpos ' '
618 with Not_found
-> len
620 String.sub s
(schemestartpos+1) (epos-1-schemestartpos)
628 if String.length
conf.urilauncher
= 0
629 then print_endline uri
631 let url = geturl uri
in
632 if String.length
url = 0
633 then print_endline uri
635 let re = Str.regexp
"%s" in
636 let command = Str.global_replace
re url conf.urilauncher
in
640 "failed to execute `%s': %s\n" command (exntos exn
);
646 Printf.sprintf
"llpp version %s (%s/%dbit, ocaml %s)" Help.version
647 (platform_to_string platform) Sys.word_size
Sys.ocaml_version
651 let strings = version () :: "" :: Help.keys
in
654 let url = geturl s
in
655 if String.length
url > 0
656 then (s
, 0, Action
(fun u
-> gotouri url; u
))
657 else (s
, 0, Noaction
)
662 let firstgeomcmds = "", [];;
663 let noreprf () = ();;
670 ; stderr
= Unix.stderr
671 ; errmsgs
= Buffer.create
0
678 ; anchor
= emptyanchor
682 ; tilelru
= Queue.create
()
683 ; pagemap
= Hashtbl.create
10
684 ; tilemap
= Hashtbl.create
10
700 ; geomcmds
= firstgeomcmds
702 { nav
= cbnew 10 emptyanchor
730 fstate.fontsize
<- n
;
731 fstate.wwidth
<- measurestr
fstate.fontsize
"w";
732 fstate.maxrows
<- (state.winh
- fstate.fontsize
- 1) / (fstate.fontsize
+ 1);
738 Printf.kprintf prerr_endline fmt
740 Printf.kprintf ignore fmt
744 if String.length
conf.pathlauncher
= 0
745 then print_endline
state.path
747 let re = Str.regexp
"%s" in
748 let command = Str.global_replace
re state.path
conf.pathlauncher
in
751 Printf.eprintf
"failed to execute `%s': %s\n" command (exntos exn
);
757 type 'a t
= | Res
of 'a
| Exn
of exn
;;
760 try Res
(Unix.pipe ())
765 try tempfailureretry
Unix.close fd
766 with exn
-> f
(exntos exn
)
770 try Res
(tempfailureretry
Unix.dup fd
)
775 try Res
(tempfailureretry
(Unix.dup2 fd1
) fd2
)
780 let redirectstderr () =
781 let clofail what errmsg
= dolog
"failed to close %s: %s" what errmsg
in
782 if conf.redirectstderr
784 match Ne.pipe () with
786 dolog
"failed to create stderr redirection pipes: %s" (exntos exn
)
789 begin match Ne.dup Unix.stderr
with
791 dolog
"failed to dup stderr: %s" (exntos exn
);
792 Ne.clo r
(clofail "pipe/r");
793 Ne.clo w
(clofail "pipe/w");
795 | Ne.Res dupstderr
->
796 begin match Ne.dup2 w
Unix.stderr
with
798 dolog
"failed to dup2 to stderr: %s" (exntos exn
);
799 Ne.clo dupstderr
(clofail "stderr duplicate");
800 Ne.clo r
(clofail "redir pipe/r");
801 Ne.clo w
(clofail "redir pipe/w");
804 state.stderr
<- dupstderr
;
805 state.errfd
<- Some r
;
809 state.newerrmsgs
<- false;
810 begin match state.errfd
with
812 begin match Ne.dup2 state.stderr
Unix.stderr
with
814 dolog
"failed to dup2 original stderr: %s" (exntos exn
)
816 Ne.clo fd
(clofail "dup of stderr");
821 prerr_string
(Buffer.contents
state.errmsgs
);
823 Buffer.clear
state.errmsgs
;
829 let postRedisplay who
=
831 then prerr_endline
("redisplay for " ^ who
);
832 state.redisplay
<- true;
836 let getopaque pageno
=
837 try Some
(Hashtbl.find
state.pagemap
(pageno
, state.gen
))
838 with Not_found
-> None
841 let putopaque pageno opaque
=
842 Hashtbl.replace
state.pagemap
(pageno
, state.gen
) opaque
845 let pagetranslatepoint l x y
=
846 let dy = y
- l
.pagedispy
in
847 let y = dy + l
.pagey
in
848 let dx = x
- l
.pagedispx
in
849 let x = dx + l
.pagex
in
853 let onppundermouse g
x y d
=
856 begin match getopaque l
.pageno
with
858 let x0 = l
.pagedispx
in
859 let x1 = x0 + l
.pagevw
in
860 let y0 = l
.pagedispy
in
861 let y1 = y0 + l
.pagevh
in
862 if y >= y0 && y <= y1 && x >= x0 && x <= x1
864 let px, py
= pagetranslatepoint l
x y in
865 match g opaque l
px py
with
878 let g opaque _
px py
=
879 match whatsunder opaque
px py
with
881 | under
-> Some under
883 onppundermouse g x y Unone
888 match unproject opaque
x y with
889 | Some
(x, y) -> Some
(Some
(l
.pageno
, x, y))
892 onppundermouse g x y None
;
896 state.text
<- Printf.sprintf
"%c%s" c s
;
897 G.postRedisplay "showtext";
900 let undertext = function
903 | Ulinkgoto
(pageno
, _
) -> Printf.sprintf
"%s: page %d" state.path
(pageno
+1)
904 | Utext s
-> "font: " ^ s
905 | Uunexpected s
-> "unexpected: " ^ s
906 | Ulaunch s
-> "launch: " ^ s
907 | Unamed s
-> "named: " ^ s
908 | Uremote
(filename
, pageno
) ->
909 Printf.sprintf
"%s: page %d" filename
(pageno
+1)
912 let updateunder x y =
913 match getunder x y with
914 | Unone
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
916 if conf.underinfo
then showtext 'u'
("ri: " ^ uri
);
917 Wsi.setcursor
Wsi.CURSOR_INFO
918 | Ulinkgoto
(pageno
, _
) ->
920 then showtext 'p'
("age: " ^ string_of_int
(pageno
+1));
921 Wsi.setcursor
Wsi.CURSOR_INFO
923 if conf.underinfo
then showtext '
f'
("ont: " ^ s
);
924 Wsi.setcursor
Wsi.CURSOR_TEXT
926 if conf.underinfo
then showtext 'u'
("nexpected: " ^ s
);
927 Wsi.setcursor
Wsi.CURSOR_INHERIT
929 if conf.underinfo
then showtext 'l'
("aunch: " ^ s
);
930 Wsi.setcursor
Wsi.CURSOR_INHERIT
932 if conf.underinfo
then showtext 'n'
("amed: " ^ s
);
933 Wsi.setcursor
Wsi.CURSOR_INHERIT
934 | Uremote
(filename
, pageno
) ->
935 if conf.underinfo
then showtext 'r'
936 (Printf.sprintf
"emote: %s (%d)" filename
(pageno
+1));
937 Wsi.setcursor
Wsi.CURSOR_INFO
940 let showlinktype under
=
946 let s = undertext under
in
951 let b = Buffer.create
(String.length
s + 1) in
952 Buffer.add_string
b s;
957 let colorspace_of_string s =
958 match String.lowercase
s with
962 | _
-> failwith
"invalid colorspace"
965 let int_of_colorspace = function
971 let colorspace_of_int = function
975 | n
-> failwith
("invalid colorspace index " ^ string_of_int n
)
978 let colorspace_to_string = function
984 let fitmodel_of_string s =
985 match String.lowercase
s with
986 | "width" -> FitWidth
987 | "proportional" -> FitProportional
989 | _
-> failwith
"invalid fit model"
992 let int_of_fitmodel = function
994 | FitProportional
-> 1
998 let fitmodel_of_int = function
1000 | 1 -> FitProportional
1002 | n
-> failwith
("invalid fit model index " ^ string_of_int n
)
1005 let fitmodel_to_string = function
1006 | FitWidth
-> "width"
1007 | FitProportional
-> "proportional"
1011 let intentry_with_suffix text key
=
1013 if key
>= 32 && key
< 127
1017 match Char.lowercase
c with
1019 let text = addchar text c in
1022 | 'k'
| 'm'
| '
g'
->
1023 let text = addchar text c in
1027 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key
c;
1031 let multicolumns_to_string (n
, a
, b) =
1033 then Printf.sprintf
"%d" n
1034 else Printf.sprintf
"%d,%d,%d" n a
b;
1037 let multicolumns_of_string s =
1039 (int_of_string
s, 0, 0)
1041 Scanf.sscanf
s "%u,%u,%u" (fun n a
b ->
1043 then failwith
"subtly broken"; (n
, a
, b)
1049 let n = tempfailureretry
(Unix.read fd
s 0) 4 in
1050 if n != 4 then failwith
"incomplete read(len)";
1052 lor (Char.code
s.[0] lsl 24)
1053 lor (Char.code
s.[1] lsl 16)
1054 lor (Char.code
s.[2] lsl 8)
1055 lor (Char.code
s.[3] lsl 0)
1057 let s = String.create
len in
1058 let n = tempfailureretry
(Unix.read fd
s 0) len in
1059 if n != len then failwith
"incomplete read(data)";
1063 let btod b = if b then 1 else 0;;
1066 let b = Buffer.create
16 in
1067 Buffer.add_string
b "llll";
1070 let s = Buffer.contents
b in
1071 let n = String.length
s in
1073 (* dolog "wcmd %S" (String.sub s 4 len); *)
1074 s.[0] <- Char.chr
((len lsr 24) land 0xff);
1075 s.[1] <- Char.chr
((len lsr 16) land 0xff);
1076 s.[2] <- Char.chr
((len lsr 8) land 0xff);
1077 s.[3] <- Char.chr
(len land 0xff);
1078 let n'
= tempfailureretry
(Unix.write
state.sw
s 0) n in
1079 if n'
!= n then failwith
"write failed";
1084 let d = state.winh
- h
in
1085 max
conf.interpagespace
((d + 1) / 2)
1088 let rowyh (c, coverA
, coverB
) b n =
1089 if c = 1 || (n < coverA
|| n >= state.pagecount
- coverB
)
1091 let _, _, vy
, (_, _, h
, _) = b.(n) in
1094 let n'
= n - coverA
in
1097 let e = min
state.pagecount
(s + c) in
1098 let rec find m miny maxh
= if m
= e then miny
, maxh
else
1099 let _, _, y, (_, _, h
, _) = b.(m
) in
1100 let miny = min
miny y in
1101 let maxh = max
maxh h
in
1102 find (m
+1) miny maxh
1107 match conf.columns
with
1108 | Cmulti
((_, _, _) as cl
, b) ->
1109 if Array.length
b > 0
1111 let y, h
= rowyh cl
b (Array.length
b - 1) in
1112 y + h
+ (if conf.presentation
then calcips h
else 0)
1115 if Array.length
b > 0
1117 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1118 y + h
+ (if conf.presentation
then calcips h
else 0)
1121 if Array.length
b > 0
1123 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1128 let getpageyh pageno
=
1129 let pageno = bound pageno 0 (state.pagecount
-1) in
1130 match conf.columns
with
1132 if Array.length
b = 0
1135 let (_, _, y, (_, _, h
, _)) = b.(pageno) in
1137 if conf.presentation
1143 if Array.length
b = 0
1146 let y, h
= rowyh cl
b pageno in
1148 if conf.presentation
1154 if Array.length
b = 0
1158 let (_, _, y, (_, _, h
, _)) = b.(n) in
1162 let getpagedim pageno =
1165 | (n, _, _, _) as pdim
:: rest
->
1167 then (if n = pageno then pdim
else ppdim
)
1172 f (-1, -1, -1, -1) state.pdims
1175 let getpagey pageno = fst
(getpageyh pageno);;
1177 let nogeomcmds cmds
=
1179 | s, [] -> String.length
s = 0
1184 let ((c, coverA
, coverB
) as cl
), b =
1185 match conf.columns
with
1186 | Csingle
b -> (1, 0, 0), b
1187 | Cmulti
(c, b) -> c, b
1188 | Csplit
(_, b) -> (1, 0, 0), b
1190 if Array.length
b = 0
1193 let rec bsearch nmin nmax
=
1195 then bound nmin
0 (state.pagecount
-1)
1197 let n = (nmax
+ nmin
) / 2 in
1198 let vy, h
= rowyh cl
b n in
1200 if conf.presentation
1202 let ips = calcips h
in
1203 let y0 = vy - ips in
1204 let y1 = vy + h
+ ips in
1208 then 0, vy + h
+ conf.interpagespace
1210 let y0 = vy - conf.interpagespace
in
1211 y0, y0 + h
+ conf.interpagespace
1214 if y >= y0 && y < y1
1221 if n < state.pagecount
- coverB
1222 then ((n-coverA
)/c)*c + coverA
1229 then bsearch (n+1) nmax
1230 else bsearch nmin
(n-1)
1233 let r = bsearch 0 (state.pagecount
-1) in
1237 let layoutN ((columns
, coverA
, coverB
), b) y sh =
1238 let sh = sh - state.hscrollh
in
1239 let rec fold accu
n =
1240 if n = Array.length
b
1243 let pdimno, dx, vy, (_, w
, h
, xoff
) = b.(n) in
1246 || n = state.pagecount
- coverB
1247 || (n - coverA
) mod columns
= columns
- 1)
1253 let pagey = max
0 (y - vy) in
1254 let pagedispy = if pagey > 0 then 0 else vy - y in
1255 let pagedispx, pagex
=
1257 if n = coverA
- 1 || n = state.pagecount
- coverB
1258 then state.x + (state.winw
- state.scrollw
- w
) / 2
1259 else dx + xoff
+ state.x
1266 let vw = state.winw
- state.scrollw
- pagedispx in
1267 let pw = w
- pagex
in
1270 let pagevh = min
(h
- pagey) (sh - pagedispy) in
1271 if pagevw > 0 && pagevh > 0
1275 ; pagedimno
= pdimno
1282 ; pagedispx = pagedispx
1283 ; pagedispy = pagedispy
1295 List.rev
(fold [] (page_of_y y));
1298 let layoutS (columns
, b) y sh =
1299 let sh = sh - state.hscrollh
in
1300 let rec fold accu n =
1301 if n = Array.length
b
1304 let pdimno, px, vy, (_, pagew
, pageh
, xoff
) = b.(n) in
1311 let x = xoff
+ state.x in
1312 let pagey = max
0 (y - vy) in
1313 let pagedispy = if pagey > 0 then 0 else vy - y in
1314 let pagedispx, pagex
=
1328 let pagecolw = pagew
/columns
in
1330 if pagecolw < state.winw
1331 then pagedispx + ((state.winw
- state.scrollw
- pagecolw) / 2)
1335 let vw = state.winw
- pagedispx - state.scrollw
in
1336 let pw = pagew
- pagex
in
1339 let pagevw = min
pagevw pagecolw in
1340 let pagevh = min
(pageh
- pagey) (sh - pagedispy) in
1341 if pagevw > 0 && pagevh > 0
1344 { pageno = n/columns
1345 ; pagedimno
= pdimno
1352 ; pagedispx = pagedispx
1353 ; pagedispy = pagedispy
1354 ; pagecol
= n mod columns
1365 List.rev
(fold [] 0)
1369 if nogeomcmds state.geomcmds
1371 match conf.columns
with
1372 | Csingle
b -> layoutN ((1, 0, 0), b) y sh
1373 | Cmulti
c -> layoutN c y sh
1374 | Csplit
s -> layoutS s y sh
1379 let y = state.y + incr
in
1381 let y = min
y (state.maxy
- (if conf.maxhfit
then state.winh
else 0)) in
1386 let tilex = l
.pagex
mod conf.tilew
in
1387 let tiley = l
.pagey mod conf.tileh
in
1389 let col = l
.pagex
/ conf.tilew
in
1390 let row = l
.pagey / conf.tileh
in
1392 let rec rowloop row y0 dispy h
=
1396 let dh = conf.tileh
- y0 in
1397 let dh = min h
dh in
1398 let rec colloop col x0 dispx w
=
1402 let dw = conf.tilew
- x0 in
1403 let dw = min w
dw in
1405 f col row dispx dispy
x0 y0 dw dh;
1406 colloop (col+1) 0 (dispx
+dw) (w
-dw)
1409 colloop col tilex l
.pagedispx l
.pagevw;
1410 rowloop (row+1) 0 (dispy
+dh) (h
-dh)
1413 if l
.pagevw > 0 && l
.pagevh > 0
1414 then rowloop row tiley l
.pagedispy l
.pagevh;
1417 let gettileopaque l
col row =
1419 l
.pageno, state.gen
, conf.colorspace
, conf.angle
, l
.pagew
, l
.pageh
, col, row
1421 try Some
(Hashtbl.find state.tilemap
key)
1422 with Not_found
-> None
1425 let puttileopaque l
col row gen colorspace angle opaque size elapsed
=
1426 let key = l
.pageno, gen
, colorspace
, angle
, l
.pagew
, l
.pageh
, col, row in
1427 Hashtbl.add
state.tilemap
key (opaque
, size
, elapsed
)
1430 let drawtiles l color
=
1432 let f col row x y tilex tiley w h
=
1433 match gettileopaque l
col row with
1434 | Some
(opaque
, _, t
) ->
1435 let params = x, y, w
, h
, tilex, tiley in
1439 GlFunc.blend_func `zero `one_minus_src_color
;
1441 drawtile
params opaque
;
1443 then Gl.disable `blend
;
1446 let s = Printf.sprintf
1450 let w = measurestr
fstate.fontsize
s in
1451 GlMisc.push_attrib
[`current
];
1452 GlDraw.color
(0.0, 0.0, 0.0);
1454 (float (x-2), float (y-2))
1455 (float (x+2) +. w, float (y + fstate.fontsize
+ 2));
1456 GlDraw.color
(1.0, 1.0, 1.0);
1457 drawstring fstate.fontsize
x (y + fstate.fontsize
- 1) s;
1458 GlMisc.pop_attrib
();
1463 let lw = state.winw
- state.scrollw
- x in
1466 let lh = state.winh
- y in
1469 begin match state.texid
with
1471 Gl.enable `texture_2d
;
1472 GlTex.bind_texture `texture_2d id
;
1475 and x1 = float (x+w)
1476 and y1 = float (y+h
) in
1478 let tw = float w /. 16.0
1479 and th
= float h
/. 16.0 in
1480 let tx0 = float tilex /. 16.0
1481 and ty0
= float tiley /. 16.0 in
1483 and ty1
= ty0
+. th
in
1484 GlDraw.begins `quads
;
1485 GlTex.coord2
(tx0, ty0
); GlDraw.vertex2
(x0, y0);
1486 GlTex.coord2
(tx0, ty1
); GlDraw.vertex2
(x0, y1);
1487 GlTex.coord2
(tx1, ty1
); GlDraw.vertex2
(x1, y1);
1488 GlTex.coord2
(tx1, ty0
); GlDraw.vertex2
(x1, y0);
1491 Gl.disable `texture_2d
;
1493 GlDraw.color
(1.0, 1.0, 1.0);
1496 (float (x+w), float (y+h
));
1498 if w > 128 && h
> fstate.fontsize
+ 10
1500 GlDraw.color
(0.0, 0.0, 0.0);
1503 then (col*conf.tilew
, row*conf.tileh
)
1506 drawstring2 fstate.fontsize
x y "Loading %d [%d,%d]" l
.pageno c r;
1513 let pagevisible layout n = List.exists
(fun l
-> l
.pageno = n) layout;;
1515 let tilevisible1 l
x y =
1517 and ax1
= l
.pagex
+ l
.pagevw
1519 and ay1
= l
.pagey + l
.pagevh in
1523 let bx1 = min
(bx0 + conf.tilew
) l
.pagew
1524 and by1
= min
(by0
+ conf.tileh
) l
.pageh
in
1526 let rx0 = max
ax0 bx0
1527 and ry0
= max ay0 by0
1528 and rx1
= min ax1
bx1
1529 and ry1
= min ay1 by1
in
1531 let nonemptyintersection = rx1
> rx0 && ry1
> ry0
in
1532 nonemptyintersection
1535 let tilevisible layout n x y =
1536 let rec findpageinlayout m
= function
1537 | l
:: rest
when l
.pageno = n ->
1538 tilevisible1 l
x y || (
1539 match conf.columns
with
1540 | Csplit
(c, _) when c > m
-> findpageinlayout (m
+1) rest
1543 | _ :: rest
-> findpageinlayout 0 rest
1546 findpageinlayout 0 layout;
1549 let tileready l
x y =
1550 tilevisible1 l
x y &&
1551 gettileopaque l
(x/conf.tilew
) (y/conf.tileh
) != None
1554 let tilepage n p
layout =
1555 let rec loop = function
1559 let f col row _ _ _ _ _ _ =
1560 if state.currently
= Idle
1562 match gettileopaque l
col row with
1565 let x = col*conf.tilew
1566 and y = row*conf.tileh
in
1568 let w = l
.pagew
- x in
1572 let h = l
.pageh
- y in
1577 then getpbo
w h conf.colorspace
1580 wcmd "tile %s %d %d %d %d %s" p
x y w h pbo;
1583 l
, p
, conf.colorspace
, conf.angle
, state.gen
, col, row,
1584 conf.tilew
, conf.tileh
1593 if nogeomcmds state.geomcmds
1597 let preloadlayout y =
1598 let y = if y < state.winh
then 0 else y - state.winh
in
1599 let h = state.winh
*3 in
1604 let rec loop pages
=
1605 if state.currently
!= Idle
1610 begin match getopaque l
.pageno with
1612 wcmd "page %d %d" l
.pageno l
.pagedimno
;
1613 state.currently
<- Loading
(l
, state.gen
);
1615 tilepage l
.pageno opaque pages
;
1620 if nogeomcmds state.geomcmds
1626 if conf.preload && state.currently
= Idle
1627 then load (preloadlayout state.y);
1630 let layoutready layout =
1631 let rec fold all ls
=
1632 all
&& match ls
with
1634 let seen = ref false in
1635 let allvisible = ref true in
1636 let foo col row _ _ _ _ _ _ =
1638 allvisible := !allvisible &&
1639 begin match gettileopaque l
col row with
1645 fold (!seen && !allvisible) rest
1648 let alltilesvisible = fold true layout in
1653 let y = bound y 0 state.maxy
in
1654 let y, layout, proceed
=
1655 match conf.maxwait
with
1656 | Some time
when state.ghyll
== noghyll ->
1657 begin match state.throttle
with
1659 let layout = layout y state.winh
in
1660 let ready = layoutready layout in
1664 state.throttle
<- Some
(layout, y, now ());
1666 else G.postRedisplay "gotoy showall (None)";
1668 | Some
(_, _, started
) ->
1669 let dt = now () -. started
in
1672 state.throttle
<- None
;
1673 let layout = layout y state.winh
in
1675 G.postRedisplay "maxwait";
1682 let layout = layout y state.winh
in
1683 if not
!wtmode || layoutready layout
1684 then G.postRedisplay "gotoy ready";
1690 state.layout <- layout;
1691 begin match state.mode
with
1692 | LinkNav
(Ltexact
(pageno, linkno
)) ->
1693 let rec loop = function
1695 state.mode
<- LinkNav
(Ltgendir
0)
1696 | l
:: _ when l
.pageno = pageno ->
1697 begin match getopaque pageno with
1699 state.mode
<- LinkNav
(Ltgendir
0)
1701 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
1702 if not
(x0 >= l
.pagex
&& x1 <= l
.pagex
+ l
.pagevw
1703 && y0 >= l
.pagey && y1 <= l
.pagey + l
.pagevh)
1704 then state.mode
<- LinkNav
(Ltgendir
0)
1706 | _ :: rest
-> loop rest
1711 begin match state.mode
with
1712 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor
) ->
1713 if not
(pagevisible layout pageno)
1715 match state.layout with
1718 state.mode
<- Birdseye
(
1719 conf, leftx
, l
.pageno, hooverpageno
, anchor
1722 | LinkNav
(Ltgendir dir
as lt
) ->
1724 let rec loop = function
1727 match getopaque l
.pageno with
1733 then LDfirstvisible
(l
.pagex
, l
.pagey, dir
)
1735 if dir
> 0 then LDfirst
else LDlast
1741 | Lnotfound
-> loop rest
1743 showlinktype (getlink opaque
n);
1744 Ltexact
(l
.pageno, n)
1748 state.mode
<- LinkNav
linknav
1753 state.ghyll
<- noghyll;
1756 let mx, my
= state.mpos
in
1761 let conttiling pageno opaque
=
1762 tilepage pageno opaque
1763 (if conf.preload then preloadlayout state.y else state.layout)
1766 let gotoy_and_clear_text y =
1767 if not
conf.verbose
then state.text <- "";
1773 let coloff = l
.pagecol
* l
.pageh
in
1774 float (l
.pagey + coloff) /. float l
.pageh
1781 if conf.presentation
1782 then float l
.pagedispy /. float (calcips l
.pageh
)
1783 else float l
.pagedispy /. float conf.interpagespace
1785 (l
.pageno, top, dtop)
1789 match state.layout with
1790 | l
:: _ -> getanchor1 l
1792 let n = page_of_y state.y in
1796 let y, h = getpageyh n in
1797 let dy = y - state.y in
1799 if conf.presentation
1801 let ips = calcips h in
1802 float (dy + ips) /. float ips
1804 float dy /. float conf.interpagespace
1809 let getanchory (n, top, dtop) =
1810 let y, h = getpageyh n in
1811 if conf.presentation
1813 let ips = calcips h in
1814 y + truncate
(top*.float h -. dtop*.float ips) + ips;
1816 y + truncate
(top*.float h -. dtop*.float conf.interpagespace
)
1819 let gotoanchor anchor
=
1820 gotoy (getanchory anchor
);
1824 cbput state.hists
.nav
(getanchor ());
1828 let anchor = cbgetc state.hists
.nav dir
in
1833 let scroll f n a
b =
1834 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1836 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1838 then s (float f /. float a
)
1841 then 1.0 -. s ((float (f-b) /. float (n-b)))
1848 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1849 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1851 let ins = float a
*. iv1
1852 and outs
= float (n-b) *. iv1 in
1854 ins +. outs
+. float ones
1856 let rec set (_N
, _A
, _B
) y sy
=
1857 let sum = summa
1.0 _N _A _B
in
1858 let dy = float (y - sy
) in
1862 then state.ghyll
<- noghyll
1865 let s = scroll n _N _A _B
in
1866 let y1 = y1 +. ((s *. dy) /. sum) in
1867 gotoy_and_clear_text (truncate
y1);
1868 state.ghyll
<- gf (n+1) y1;
1872 | Some
y'
-> set (_N
/2, 1, 1) y'
state.y
1874 gf 0 (float state.y)
1877 match conf.ghyllscroll
with
1879 gotoy_and_clear_text y
1881 if state.ghyll
== noghyll
1882 then set nab
y state.y
1883 else state.ghyll
(Some
y)
1886 let gotopage n top =
1887 let y, h = getpageyh n in
1888 let y = y + (truncate
(top *. float h)) in
1892 let gotopage1 n top =
1893 let y = getpagey n in
1898 let invalidate s f =
1903 match state.geomcmds
with
1904 | ps
, [] when String.length ps
= 0 ->
1906 state.geomcmds
<- s, [];
1909 state.geomcmds
<- ps
, [s, f];
1911 | ps
, (s'
, _) :: rest
when s'
= s ->
1912 state.geomcmds
<- ps
, ((s, f) :: rest
);
1915 state.geomcmds
<- ps
, ((s, f) :: cmds
);
1919 Hashtbl.iter
(fun _ opaque
->
1920 wcmd "freepage %s" opaque
;
1922 Hashtbl.clear
state.pagemap
;
1926 if not
(Queue.is_empty
state.tilelru
)
1928 Queue.iter
(fun (k
, p
, s) ->
1929 wcmd "freetile %s" p
;
1930 state.memused
<- state.memused
- s;
1931 Hashtbl.remove
state.tilemap k
;
1933 state.uioh#infochanged Memused
;
1934 Queue.clear
state.tilelru
;
1939 let opendoc path password
=
1941 state.password
<- password
;
1942 state.gen
<- state.gen
+ 1;
1943 state.docinfo
<- [];
1946 setaalevel
conf.aalevel
;
1947 Wsi.settitle
("llpp " ^
(mbtoutf8
(Filename.basename path
)));
1948 wcmd "open %d %s\000%s\000" (btod !wtmode) path password
;
1949 invalidate "reqlayout"
1951 wcmd "reqlayout %d %d %f %s\000"
1952 conf.angle
(int_of_fitmodel conf.fitmodel
) conf.zoom
state.nameddest
;
1957 state.anchor <- getanchor ();
1958 opendoc state.path
state.password
;
1962 let c = c *. conf.colorscale
in
1966 let scalecolor2 (r, g, b) =
1967 (r *. conf.colorscale
, g *. conf.colorscale
, b *. conf.colorscale
);
1970 let docolumns = function
1972 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1973 let rec loop pageno pdimno pdim
y ph pdims
=
1974 if pageno = state.pagecount
1977 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
1979 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
1980 pdimno+1, pdim
, rest
1984 let x = max
0 (((state.winw
- state.scrollw
- w) / 2) - xoff
) in
1986 (if conf.presentation
1987 then (if pageno = 0 then calcips h else calcips ph
+ calcips h)
1988 else (if pageno = 0 then 0 else conf.interpagespace
)
1991 a.(pageno) <- (pdimno, x, y, pdim
);
1992 loop (pageno+1) pdimno pdim
(y + h) h pdims
1994 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 state.pdims
;
1995 conf.columns
<- Csingle
a;
1997 | Cmulti
((columns
, coverA
, coverB
), _) ->
1998 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1999 let rec loop pageno pdimno pdim
x y rowh pdims
=
2000 let rec fixrow m
= if m
= pageno then () else
2001 let (pdimno, x, y, ((_, _, h, _) as pdim
)) = a.(m
) in
2004 let y = y + (rowh
- h) / 2 in
2005 a.(m
) <- (pdimno, x, y, pdim
);
2009 if pageno = state.pagecount
2010 then fixrow (((pageno - 1) / columns
) * columns
)
2012 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
2014 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
2015 pdimno+1, pdim
, rest
2020 if pageno = coverA
- 1 || pageno = state.pagecount
- coverB
2022 let x = (state.winw
- state.scrollw
- w) / 2 in
2024 if conf.presentation
then calcips h else conf.interpagespace
in
2025 x, y + ips + rowh
, h
2028 if (pageno - coverA
) mod columns
= 0
2030 let x = max
0 (state.winw
- state.scrollw
- state.w) / 2 in
2032 if conf.presentation
2034 let ips = calcips h in
2035 y + (if pageno = 0 then 0 else calcips rowh
+ ips)
2037 y + (if pageno = 0 then 0 else conf.interpagespace
)
2041 else x, y, max rowh
h
2045 if pageno > 1 && (pageno - coverA
) mod columns
= 0
2048 if pageno = columns
&& conf.presentation
2050 let ips = calcips rowh
in
2051 for i
= 0 to pred columns
2053 let (pdimno, x, y, pdim
) = a.(i
) in
2054 a.(i
) <- (pdimno, x, y+ips, pdim
)
2060 fixrow (pageno - columns
);
2065 a.(pageno) <- (pdimno, x, y, pdim
);
2066 let x = x + w + xoff
*2 + conf.interpagespace
in
2067 loop (pageno+1) pdimno pdim
x y rowh' pdims
2069 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 0 state.pdims
;
2070 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), a);
2073 let a = Array.make
(state.pagecount
*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2074 let rec loop pageno pdimno pdim
y pdims
=
2075 if pageno = state.pagecount
2078 let pdimno, ((_, w, h, _) as pdim
), pdims
=
2080 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
2081 pdimno+1, pdim
, rest
2086 let rec loop1 n x y =
2087 if n = c then y else (
2088 a.(pageno*c + n) <- (pdimno, x, y, pdim
);
2089 loop1 (n+1) (x+cw) (y + h + conf.interpagespace
)
2092 let y = loop1 0 0 y in
2093 loop (pageno+1) pdimno pdim
y pdims
2095 loop 0 ~
-1 (-1,-1,-1,-1) 0 state.pdims
;
2096 conf.columns
<- Csplit
(c, a);
2100 docolumns conf.columns
;
2101 state.maxy
<- calcheight ();
2103 if state.x = 0 && state.w <= state.winw
- state.scrollw
2107 if state.reprf
== noreprf
2109 match state.mode
with
2110 | Birdseye
(_, _, pageno, _, _) ->
2111 let y, h = getpageyh pageno in
2112 let top = (state.winh
- h) / 2 in
2113 gotoy (max
0 (y - top))
2114 | _ -> gotoanchor state.anchor
2118 state.reprf
<- noreprf;
2123 GlDraw.viewport
0 0 w h;
2124 let firsttime = state.geomcmds
== firstgeomcmds in
2125 if not
firsttime && nogeomcmds state.geomcmds
2126 then state.anchor <- getanchor ();
2129 let w = truncate
(float w *. conf.zoom
) - state.scrollw
in
2132 setfontsize fstate.fontsize
;
2133 GlMat.mode `modelview
;
2134 GlMat.load_identity
();
2136 GlMat.mode `projection
;
2137 GlMat.load_identity
();
2138 GlMat.rotate ~
x:1.0 ~angle
:180.0 ();
2139 GlMat.translate ~
x:~
-.1.0 ~
y:~
-.1.0 ();
2140 GlMat.scale3
(2.0 /. float state.winw
, 2.0 /. float state.winh
, 1.0);
2145 else float state.x /. float state.w
2147 invalidate "geometry"
2151 then state.x <- truncate
(relx *. float w);
2153 match conf.columns
with
2155 | Cmulti
((c, _, _), _) -> (w - (c-1)*conf.interpagespace
) / c
2156 | Csplit
(c, _) -> w * c
2158 wcmd "geometry %d %d %f" w (h - 2*conf.interpagespace
) conf.zoom
);
2162 let len = String.length
state.text in
2165 match state.mode
with
2168 let h, _, _ = state.uioh#scrollpw
in
2174 (x, float (state.winh
- (fstate.fontsize
+ 4) - hscrollh))
2175 (x+.w, float (state.winh
- hscrollh))
2178 let w = float (state.winw
- state.scrollw
- 1) in
2179 if state.progress
>= 0.0 && state.progress
< 1.0
2181 GlDraw.color
(0.3, 0.3, 0.3);
2182 let w1 = w *. state.progress
in
2184 GlDraw.color
(0.0, 0.0, 0.0);
2188 GlDraw.color
(0.0, 0.0, 0.0);
2192 GlDraw.color
(1.0, 1.0, 1.0);
2193 drawstring fstate.fontsize
2194 (if len > 0 then 8 else 2) (state.winh
- hscrollh - 5) s;
2197 match state.mode
with
2198 | Textentry
((prefix
, text, _, _, _, _), _) ->
2202 Printf.sprintf
"%s%s_ [%s]" prefix
text state.text
2204 Printf.sprintf
"%s%s_" prefix
text
2213 if not
(istextentry state.mode
) && state.uioh#eformsgs
2215 let s1 = "(press 'e' to review error messasges)" in
2216 if String.length
s > 0 then s ^
" " ^
s1 else s1
2221 if String.length
s > 0
2226 let len = Queue.length
state.tilelru
in
2228 match state.throttle
with
2231 then preloadlayout state.y
2233 | Some
(layout, _, _) ->
2237 if state.memused
<= conf.memlimit
2242 let (k
, p
, s) as lruitem
= Queue.pop
state.tilelru
in
2243 let n, gen
, colorspace
, angle
, pagew
, pageh
, col, row = k
in
2244 let (_, pw, ph
, _) = getpagedim n in
2247 && colorspace
= conf.colorspace
2248 && angle
= conf.angle
2252 let x = col*conf.tilew
2253 and y = row*conf.tileh
in
2254 tilevisible (Lazy.force_val
layout) n x y
2256 then Queue.push lruitem
state.tilelru
2259 wcmd "freetile %s" p
;
2260 state.memused
<- state.memused
- s;
2261 state.uioh#infochanged Memused
;
2262 Hashtbl.remove
state.tilemap k
;
2270 let logcurrently = function
2271 | Idle
-> dolog
"Idle"
2272 | Loading
(l
, gen
) ->
2273 dolog
"Loading %d gen=%d curgen=%d" l
.pageno gen
state.gen
2274 | Tiling
(l
, pageopaque
, colorspace
, angle
, gen
, col, row, tilew
, tileh
) ->
2276 "Tiling %d[%d,%d] page=%s cs=%s angle"
2277 l
.pageno col row pageopaque
2278 (colorspace_to_string colorspace
)
2280 dolog
"gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2281 angle gen
conf.angle
state.gen
2283 conf.tilew
conf.tileh
2290 let r = Str.regexp
" " in
2291 fun s -> Str.bounded_split
r s 2;
2294 let onpagerect pageno f =
2296 match conf.columns
with
2297 | Cmulti
(_, b) -> b
2299 | Csplit
(_, b) -> b
2301 if pageno >= 0 && pageno < Array.length
b
2303 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2304 let r = getpdimrect
pdimno in
2305 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2308 let gotopagexy1 pageno x y =
2309 onpagerect pageno (fun w h ->
2311 let _,w1,_,leftx
= getpagedim pageno in
2312 let wh = state.winh
- state.hscrollh in
2313 let sw = float w1 /. w in
2315 let x = leftx
+ state.x + truncate
x in
2317 if x < 0 || x >= state.winw
- state.scrollw
2321 let py, h = getpageyh pageno in
2322 let pdy = truncate
(top *. float h) in
2323 let y'
= py + pdy in
2324 let dy = y'
- state.y in
2326 if x != state.x || not
(dy > 0 && dy < wh)
2328 if conf.presentation
2330 if abs
(py - y'
) > wh
2337 if state.x != sx || state.y != sy
2342 let ww = state.winw
- state.scrollw
in
2344 and qy
= pdy / wh in
2346 and y = py + qy
* wh in
2347 let x = if -x + ww > w1 then -(w1-ww) else x
2348 and y'
= if y + wh > state.maxy
then state.maxy
- wh else y in
2350 if conf.presentation
2352 if abs
(py - y'
) > wh
2363 if x = 0 && state.w <= state.winw
- state.scrollw
2367 gotoy_and_clear_text y;
2369 else gotoy_and_clear_text state.y;
2373 let gotopagexy pageno x y =
2374 match state.mode
with
2375 | Birdseye
_ -> gotopage pageno 0.0
2376 | _ -> gotopagexy1 pageno x y
2380 (* dolog "%S" cmds; *)
2381 let cl = splitatspace cmds
in
2383 try Scanf.sscanf
s fmt
f
2385 dolog
"error processing '%S': %s" cmds
(exntos exn
);
2390 state.uioh#infochanged Pdim
;
2393 | "clearrects" :: [] ->
2394 state.rects
<- state.rects1
;
2395 G.postRedisplay "clearrects";
2397 | "continue" :: args :: [] ->
2398 let n = scan args "%u" (fun n -> n) in
2399 state.pagecount
<- n;
2400 begin match state.currently
with
2402 state.currently
<- Idle
;
2403 state.outlines
<- Array.of_list
(List.rev l
)
2407 let cur, cmds
= state.geomcmds
in
2408 if String.length
cur = 0
2409 then failwith
"umpossible";
2411 begin match List.rev cmds
with
2413 state.geomcmds
<- "", [];
2417 state.geomcmds
<- s, List.rev rest
;
2419 if conf.maxwait
= None
&& not
!wtmode
2420 then G.postRedisplay "continue";
2422 | "title" :: args :: [] ->
2425 | "msg" :: args :: [] ->
2428 | "vmsg" :: args :: [] ->
2430 then showtext ' '
args
2432 | "emsg" :: args :: [] ->
2433 Buffer.add_string
state.errmsgs
args;
2434 state.newerrmsgs
<- true;
2435 G.postRedisplay "error message"
2437 | "progress" :: args :: [] ->
2438 let progress, text =
2441 f, String.sub
args pos
(String.length
args - pos
))
2444 state.progress <- progress;
2445 G.postRedisplay "progress"
2447 | "firstmatch" :: args :: [] ->
2448 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2449 scan args "%u %d %f %f %f %f %f %f %f %f"
2450 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2451 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2453 let y = (getpagey pageno) + truncate
y0 in
2456 state.rects1
<- [pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)]
2458 | "match" :: args :: [] ->
2459 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2460 scan args "%u %d %f %f %f %f %f %f %f %f"
2461 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2462 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2465 (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) :: state.rects1
2467 | "page" :: args :: [] ->
2468 let pageopaque, t
= scan args "%s %f" (fun p t
-> p
, t
) in
2469 begin match state.currently
with
2470 | Loading
(l
, gen
) ->
2471 vlog "page %d took %f sec" l
.pageno t
;
2472 Hashtbl.replace
state.pagemap
(l
.pageno, gen
) pageopaque;
2473 begin match state.throttle
with
2475 let preloadedpages =
2477 then preloadlayout state.y
2482 List.fold_left
(fun s l
-> IntSet.add l
.pageno s)
2483 IntSet.empty
preloadedpages
2486 Hashtbl.fold (fun ((pageno, _) as key) opaque
accu ->
2487 if not
(IntSet.mem
pageno set)
2489 wcmd "freepage %s" opaque
;
2495 List.iter
(Hashtbl.remove
state.pagemap
) evictedpages;
2498 state.currently
<- Idle
;
2501 tilepage l
.pageno pageopaque state.layout;
2503 load preloadedpages;
2504 if pagevisible state.layout l
.pageno
2505 && layoutready state.layout
2506 then G.postRedisplay "page";
2509 | Some
(layout, _, _) ->
2510 state.currently
<- Idle
;
2511 tilepage l
.pageno pageopaque layout;
2516 dolog
"Inconsistent loading state";
2517 logcurrently state.currently
;
2521 | "tile" :: args :: [] ->
2522 let (x, y, opaque
, size
, t
) =
2523 scan args "%u %u %s %u %f"
2524 (fun x y p size t
-> (x, y, p
, size
, t
))
2526 begin match state.currently
with
2527 | Tiling
(l
, pageopaque, cs
, angle
, gen
, col, row, tilew
, tileh
) ->
2528 vlog "tile %d [%d,%d] took %f sec" l
.pageno col row t
;
2531 if tilew
!= conf.tilew
|| tileh
!= conf.tileh
2533 wcmd "freetile %s" opaque
;
2534 state.currently
<- Idle
;
2538 puttileopaque l
col row gen cs angle opaque size t
;
2539 state.memused
<- state.memused
+ size
;
2540 state.uioh#infochanged Memused
;
2542 Queue.push
((l
.pageno, gen
, cs
, angle
, l
.pagew
, l
.pageh
, col, row),
2543 opaque
, size
) state.tilelru
;
2546 match state.throttle
with
2547 | None
-> state.layout
2548 | Some
(layout, _, _) -> layout
2551 state.currently
<- Idle
;
2553 && conf.colorspace
= cs
2554 && conf.angle
= angle
2555 && tilevisible layout l
.pageno x y
2556 then conttiling l
.pageno pageopaque;
2558 begin match state.throttle
with
2560 preload state.layout;
2562 && conf.colorspace
= cs
2563 && conf.angle
= angle
2564 && tilevisible state.layout l
.pageno x y
2565 && (not
!wtmode || layoutready state.layout)
2566 then G.postRedisplay "tile nothrottle";
2568 | Some
(layout, y, _) ->
2569 let ready = layoutready layout in
2573 state.layout <- layout;
2574 state.throttle
<- None
;
2575 G.postRedisplay "throttle";
2582 dolog
"Inconsistent tiling state";
2583 logcurrently state.currently
;
2587 | "pdim" :: args :: [] ->
2589 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2591 state.uioh#infochanged Pdim
;
2592 state.pdims
<- pdim :: state.pdims
2594 | "o" :: args :: [] ->
2595 let (l
, n, t
, h, pos
) =
2596 scan args "%u %u %d %u %n"
2597 (fun l
n t
h pos
-> l
, n, t
, h, pos
)
2599 let s = String.sub
args pos
(String.length
args - pos
) in
2600 let outline = (s, l
, (n, float t
/. float h, 0.0)) in
2601 begin match state.currently
with
2602 | Outlining outlines
->
2603 state.currently
<- Outlining
(outline :: outlines
)
2605 state.currently
<- Outlining
[outline]
2607 dolog
"invalid outlining state";
2608 logcurrently currently
2611 | "a" :: args :: [] ->
2613 scan args "%u %d %d" (fun n l t
-> n, l
, t
)
2615 state.reprf
<- (fun () -> gotopagexy n (float l
) (float t
))
2617 | "info" :: args :: [] ->
2618 state.docinfo
<- (1, args) :: state.docinfo
2620 | "infoend" :: [] ->
2621 state.uioh#infochanged Docinfo
;
2622 state.docinfo
<- List.rev
state.docinfo
2625 failwith
(Printf.sprintf
"unknown cmd `%S'" cmds
)
2630 let action = function
2631 | HCprev
-> cbget cb ~
-1
2632 | HCnext
-> cbget cb
1
2633 | HCfirst
-> cbget cb ~
-(cb
.rc)
2634 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
2635 and cancel
() = cb
.rc <- rc
2639 let search pattern forward
=
2640 if String.length pattern
> 0
2643 match state.layout with
2646 l
.pageno, (l
.pagey + if forward
then 0 else 0*l
.pagevh)
2648 wcmd "search %d %d %d %d,%s\000"
2649 (btod conf.icase
) pn py (btod forward
) pattern
;
2652 let intentry text key =
2654 if key >= 32 && key < 127
2660 let text = addchar text c in
2664 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2668 let linknentry text key =
2670 if key >= 32 && key < 127
2676 let text = addchar text c in
2680 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2685 if String.length
s > 0
2688 let l = String.length
s in
2689 let rec loop pos
n = if pos
= l then n else
2690 let m = Char.code
s.[pos
] - (if pos
= 0 && l > 1 then 96 else 97) in
2691 loop (pos
+1) (n*26 + m)
2694 let rec loop n = function
2697 match getopaque l.pageno with
2698 | None
-> loop n rest
2700 let m = getlinkcount opaque
in
2703 let under = getlink opaque
n in
2706 else loop (n-m) rest
2708 loop n state.layout;
2712 let textentry text key =
2713 if key land 0xff00 = 0xff00
2715 else TEcont
(text ^ toutf8
key)
2718 let reqlayout angle fitmodel
=
2719 match state.throttle
with
2721 if nogeomcmds state.geomcmds
2722 then state.anchor <- getanchor ();
2723 conf.angle
<- angle
mod 360;
2726 match state.mode
with
2727 | LinkNav
_ -> state.mode
<- View
2730 conf.fitmodel
<- fitmodel
;
2731 invalidate "reqlayout"
2733 wcmd "reqlayout %d %d %f"
2734 conf.angle
(int_of_fitmodel fitmodel
) conf.zoom
);
2738 let settrim trimmargins trimfuzz
=
2739 if nogeomcmds state.geomcmds
2740 then state.anchor <- getanchor ();
2741 conf.trimmargins
<- trimmargins
;
2742 conf.trimfuzz
<- trimfuzz
;
2743 let x0, y0, x1, y1 = trimfuzz
in
2744 invalidate "settrim"
2746 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins
) x0 y0 x1 y1);
2751 match state.throttle
with
2753 let zoom = max
0.0001 zoom in
2754 if zoom <> conf.zoom
2756 state.prevzoom
<- conf.zoom;
2758 reshape state.winw
state.winh
;
2759 state.text <- Printf.sprintf
"zoom is now %-5.2f" (zoom *. 100.0);
2762 | Some
(layout, y, started
) ->
2764 match conf.maxwait
with
2768 let dt = now () -. started
in
2776 let setcolumns mode columns coverA coverB
=
2777 state.prevcolumns
<- Some
(conf.columns
, conf.zoom);
2781 then showtext '
!'
"split mode doesn't work in bird's eye"
2783 conf.columns
<- Csplit
(-columns
, [||]);
2791 conf.columns
<- Csingle
[||];
2796 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), [||]);
2800 reshape state.winw
state.winh
;
2803 let enterbirdseye () =
2804 let zoom = float conf.thumbw
/. float state.winw
in
2805 let birdseyepageno =
2806 let cy = state.winh
/ 2 in
2810 let rec fold best
= function
2813 let d = cy - (l.pagedispy + l.pagevh/2)
2814 and dbest
= cy - (best
.pagedispy + best
.pagevh/2) in
2815 if abs
d < abs dbest
2822 state.mode
<- Birdseye
(
2823 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2826 conf.presentation
<- false;
2827 conf.interpagespace
<- 10;
2828 conf.hlinks
<- false;
2830 state.mstate
<- Mnone
;
2831 conf.maxwait
<- None
;
2833 match conf.beyecolumns
with
2836 Cmulti
((c, 0, 0), [||])
2837 | None
-> Csingle
[||]
2839 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
2842 state.text <- Printf.sprintf
"birds eye mode on (zoom %3.1f%%)"
2847 reshape state.winw
state.winh
;
2850 let leavebirdseye (c, leftx
, pageno, _, anchor) goback
=
2852 conf.zoom <- c.zoom;
2853 conf.presentation
<- c.presentation
;
2854 conf.interpagespace
<- c.interpagespace
;
2855 conf.maxwait
<- c.maxwait
;
2856 conf.hlinks
<- c.hlinks
;
2857 conf.beyecolumns
<- (
2858 match conf.columns
with
2859 | Cmulti
((c, _, _), _) -> Some
c
2861 | Csplit
_ -> failwith
"leaving bird's eye split mode"
2864 match c.columns
with
2865 | Cmulti
(c, _) -> Cmulti
(c, [||])
2866 | Csingle
_ -> Csingle
[||]
2867 | Csplit
(c, _) -> Csplit
(c, [||])
2872 state.text <- Printf.sprintf
"birds eye mode off (zoom %3.1f%%)"
2875 reshape state.winw
state.winh
;
2876 state.anchor <- if goback
then anchor else (pageno, 0.0, 1.0);
2879 let togglebirdseye () =
2880 match state.mode
with
2881 | Birdseye vals
-> leavebirdseye vals
true
2882 | View
-> enterbirdseye ()
2886 let upbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2887 let pageno = max
0 (pageno - incr
) in
2888 let rec loop = function
2889 | [] -> gotopage1 pageno 0
2890 | l :: _ when l.pageno = pageno ->
2891 if l.pagedispy >= 0 && l.pagey = 0
2892 then G.postRedisplay "upbirdseye"
2893 else gotopage1 pageno 0
2894 | _ :: rest
-> loop rest
2897 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor)
2900 let downbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2901 let pageno = min
(state.pagecount
- 1) (pageno + incr
) in
2902 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor);
2903 let rec loop = function
2905 let y, h = getpageyh pageno in
2906 let dy = (y - state.y) - (state.winh
- h - conf.interpagespace
) in
2908 | l :: _ when l.pageno = pageno ->
2909 if l.pagevh != l.pageh
2910 then gotoy (clamp (l.pageh
- l.pagevh + conf.interpagespace
))
2911 else G.postRedisplay "downbirdseye"
2912 | _ :: rest
-> loop rest
2917 let optentry mode
_ key =
2918 let btos b = if b then "on" else "off" in
2919 if key >= 32 && key < 127
2921 let c = Char.chr
key in
2925 try conf.scrollstep
<- int_of_string
s with exc
->
2926 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2928 TEswitch
("scroll step: ", "", None
, intentry, ondone, true)
2933 conf.autoscrollstep
<- int_of_string
s;
2934 if state.autoscroll
<> None
2935 then state.autoscroll
<- Some
conf.autoscrollstep
2937 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2939 TEswitch
("auto scroll step: ", "", None
, intentry, ondone, true)
2944 let n, a, b = multicolumns_of_string s in
2945 setcolumns mode
n a b;
2947 state.text <- Printf.sprintf
"bad columns `%s': %s" s (exntos exc
)
2949 TEswitch
("columns: ", "", None
, textentry, ondone, true)
2954 let zoom = float (int_of_string
s) /. 100.0 in
2957 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2959 TEswitch
("zoom: ", "", None
, intentry, ondone, true)
2964 conf.thumbw
<- bound (int_of_string
s) 2 4096;
2966 Printf.sprintf
"thumbnail width is set to %d" conf.thumbw
;
2967 begin match mode
with
2969 leavebirdseye beye
false;
2974 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2976 TEswitch
("thumbnail width: ", "", None
, intentry, ondone, true)
2981 Some
(int_of_string
s)
2983 state.text <- Printf.sprintf
"bad integer `%s': %s"
2987 | Some angle
-> reqlayout angle
conf.fitmodel
2990 TEswitch
("rotation: ", "", None
, intentry, ondone, true)
2993 conf.icase
<- not
conf.icase
;
2994 TEdone
("case insensitive search " ^
(btos conf.icase
))
2997 conf.preload <- not
conf.preload;
2999 TEdone
("preload " ^
(btos conf.preload))
3002 conf.verbose
<- not
conf.verbose
;
3003 TEdone
("verbose " ^
(btos conf.verbose
))
3006 conf.debug
<- not
conf.debug
;
3007 TEdone
("debug " ^
(btos conf.debug
))
3010 conf.maxhfit
<- not
conf.maxhfit
;
3011 state.maxy
<- calcheight ();
3012 TEdone
("maxhfit " ^
(btos conf.maxhfit
))
3015 conf.crophack
<- not
conf.crophack
;
3016 TEdone
("crophack " ^
btos conf.crophack
)
3020 match conf.maxwait
with
3022 conf.maxwait
<- Some infinity
;
3023 "always wait for page to complete"
3025 conf.maxwait
<- None
;
3026 "show placeholder if page is not ready"
3031 conf.underinfo
<- not
conf.underinfo
;
3032 TEdone
("underinfo " ^
btos conf.underinfo
)
3035 conf.savebmarks
<- not
conf.savebmarks
;
3036 TEdone
("persistent bookmarks " ^
btos conf.savebmarks
)
3042 match state.layout with
3047 conf.interpagespace
<- int_of_string
s;
3048 docolumns conf.columns
;
3049 state.maxy
<- calcheight ();
3050 let y = getpagey pageno in
3053 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
3055 TEswitch
("vertical margin: ", "", None
, intentry, ondone, true)
3059 match conf.fitmodel
with
3060 | FitProportional
-> FitWidth
3061 | _ -> FitProportional
3063 reqlayout conf.angle
fm;
3064 TEdone
("proportional display " ^
btos (fm == FitProportional
))
3067 settrim (not
conf.trimmargins
) conf.trimfuzz
;
3068 TEdone
("trim margins " ^
btos conf.trimmargins
)
3071 conf.invert
<- not
conf.invert
;
3072 TEdone
("invert colors " ^
btos conf.invert
)
3076 cbput state.hists
.sel
s;
3079 TEswitch
("selection command: ", "", Some
(onhist state.hists
.sel
),
3080 textentry, ondone, true)
3083 state.text <- Printf.sprintf
"bad option %d `%c'" key c;
3089 class type lvsource
= object
3090 method getitemcount
: int
3091 method getitem
: int -> (string * int)
3092 method hasaction
: int -> bool
3101 method getactive
: int
3102 method getfirst
: int
3103 method getqsearch
: string
3104 method setqsearch
: string -> unit
3108 class virtual lvsourcebase
= object
3109 val mutable m_active
= 0
3110 val mutable m_first
= 0
3111 val mutable m_qsearch
= ""
3112 val mutable m_pan
= 0
3113 method getactive
= m_active
3114 method getfirst
= m_first
3115 method getqsearch
= m_qsearch
3116 method getpan
= m_pan
3117 method setqsearch
s = m_qsearch
<- s
3120 let withoutlastutf8 s =
3121 let len = String.length
s in
3129 let b = Char.code
s.[pos
] in
3130 if b land 0b11000000 = 0b11000000
3135 if Char.code
s.[len-1] land 0x80 = 0
3139 String.sub
s 0 first;
3142 let textentrykeyboard
3143 key _mask
((c, text, opthist
, onkey
, ondone, cancelonempty
), onleave
) =
3145 if key >= 0xffb0 && key <= 0xffb9
3146 then key - 0xffb0 + 48 else key
3149 state.mode
<- Textentry
(te
, onleave
);
3152 G.postRedisplay "textentrykeyboard enttext";
3154 let histaction cmd
=
3157 | Some
(action, _) ->
3158 state.mode
<- Textentry
(
3159 (c, action cmd
, opthist
, onkey
, ondone, cancelonempty
), onleave
3161 G.postRedisplay "textentry histaction"
3164 | 0xff08 -> (* backspace *)
3165 let s = withoutlastutf8 text in
3166 let len = String.length
s in
3167 if cancelonempty
&& len = 0
3170 G.postRedisplay "textentrykeyboard after cancel";
3173 enttext (c, s, opthist
, onkey
, ondone, cancelonempty
)
3176 | 0xff0d | 0xff8d -> (* (kp) enter *)
3179 G.postRedisplay "textentrykeyboard after confirm"
3181 | 0xff52 | 0xff97 -> histaction HCprev
(* (kp) up *)
3182 | 0xff54 | 0xff99 -> histaction HCnext
(* (kp) down *)
3183 | 0xff50 | 0xff95 -> histaction HCfirst
(* (kp) home) *)
3184 | 0xff57 | 0xff9c -> histaction HClast
(* (kp) end *)
3186 | 0xff1b -> (* escape*)
3187 if String.length
text = 0
3189 begin match opthist
with
3191 | Some
(_, onhistcancel
) -> onhistcancel
()
3195 G.postRedisplay "textentrykeyboard after cancel2"
3198 enttext (c, "", opthist
, onkey
, ondone, cancelonempty
)
3201 | 0xff9f | 0xffff -> () (* delete *)
3204 && key land 0xff00 != 0xff00 (* keyboard *)
3205 && key land 0xfe00 != 0xfe00 (* xkb *)
3206 && key land 0xfd00 != 0xfd00 (* 3270 *)
3208 begin match onkey
text key with
3212 G.postRedisplay "textentrykeyboard after confirm2";
3215 enttext (c, text, opthist
, onkey
, ondone, cancelonempty
);
3219 G.postRedisplay "textentrykeyboard after cancel3"
3222 state.mode
<- Textentry
(te
, onleave
);
3223 G.postRedisplay "textentrykeyboard switch";
3227 vlog "unhandled key %s" (Wsi.keyname
key)
3230 let firstof first active
=
3231 if first > active
|| abs
(first - active
) > fstate.maxrows
- 1
3232 then max
0 (active
- (fstate.maxrows
/2))
3236 let calcfirst first active
=
3239 let rows = active
- first in
3240 if rows > fstate.maxrows
then active
- fstate.maxrows
else first
3244 let scrollph y maxy
=
3245 let sh = (float (maxy
+ state.winh
) /. float state.winh
) in
3246 let sh = float state.winh
/. sh in
3247 let sh = max
sh (float conf.scrollh
) in
3252 else float y /. float maxy
3254 let position = (float state.winh
-. sh) *. percent in
3257 if position +. sh > float state.winh
3258 then float state.winh
-. sh
3264 let coe s = (s :> uioh
);;
3266 class listview ~
(source
:lvsource
) ~trusted ~modehash
=
3268 val m_pan
= source#getpan
3269 val m_first
= source#getfirst
3270 val m_active
= source#getactive
3271 val m_qsearch
= source#getqsearch
3272 val m_prev_uioh
= state.uioh
3274 method private elemunder
y =
3275 let n = y / (fstate.fontsize
+1) in
3276 if m_first
+ n < source#getitemcount
3278 if source#hasaction
(m_first
+ n)
3279 then Some
(m_first
+ n)
3286 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
3287 GlDraw.color
(0., 0., 0.) ~alpha
:0.85;
3288 GlDraw.rect (0., 0.) (float state.winw
, float state.winh
);
3289 GlDraw.color
(1., 1., 1.);
3290 Gl.enable `texture_2d
;
3291 let fs = fstate.fontsize
in
3293 let ww = fstate.wwidth
in
3294 let tabw = 30.0*.ww in
3295 let itemcount = source#getitemcount
in
3297 if (row - m_first
) > fstate.maxrows
3300 if row >= 0 && row < itemcount
3302 let (s, level
) = source#getitem
row in
3303 let y = (row - m_first
) * nfs in
3304 let x = 5.0 +. float (level
+ m_pan
) *. ww in
3307 Gl.disable `texture_2d
;
3308 GlDraw.polygon_mode `both `line
;
3309 let alpha = if source#hasaction
row then 0.9 else 0.3 in
3310 GlDraw.color
(1., 1., 1.) ~
alpha;
3311 GlDraw.rect (1., float (y + 1))
3312 (float (state.winw
- conf.scrollbw
- 1), float (y + fs + 3));
3313 GlDraw.polygon_mode `both `fill
;
3314 GlDraw.color
(1., 1., 1.);
3315 Gl.enable `texture_2d
;
3318 let drawtabularstring s =
3319 let drawstr x s = drawstring1 fs (truncate
x) (y+nfs) s in
3322 let tabpos = try String.index
s '
\t'
with Not_found
-> -1 in
3325 let len = String.length
s - tabpos - 1 in
3326 let s1 = String.sub
s 0 tabpos
3327 and s2
= String.sub
s (tabpos + 1) len in
3328 let nx = drawstr x s1 in
3330 let x = x +. (max
tabw sw) in
3337 let _ = drawtabularstring s in
3344 Gl.disable `texture_2d
;
3346 method updownlevel incr
=
3347 let len = source#getitemcount
in
3349 if m_active
>= 0 && m_active
< len
3350 then snd
(source#getitem m_active
)
3354 if i
= len then i
-1 else if i
= -1 then 0 else
3355 let _, l = source#getitem i
in
3356 if l != curlevel then i
else flow (i
+incr
)
3358 let active = flow m_active
in
3359 let first = calcfirst m_first
active in
3360 G.postRedisplay "outline updownlevel";
3361 {< m_active
= active; m_first
= first >}
3363 method private key1
key mask
=
3364 let set1 active first qsearch
=
3365 coe {< m_active
= active; m_first
= first; m_qsearch
= qsearch
>}
3367 let search active pattern incr
=
3368 let active = if active = -1 then m_first
else active in
3371 if n >= 0 && n < source#getitemcount
3373 let s, _ = source#getitem
n in
3375 (try ignore
(Str.search_forward
re s 0); true
3376 with Not_found
-> false)
3378 else loop (n + incr
)
3385 let re = Str.regexp_case_fold pattern
in
3391 let itemcount = source#getitemcount
in
3392 let find start incr
=
3394 if i
= -1 || i
= itemcount
3397 if source#hasaction i
3399 else find (i
+ incr
)
3404 let set active first =
3405 let first = bound first 0 (itemcount - fstate.maxrows
) in
3407 coe {< m_active
= active; m_first
= first; m_qsearch
= "" >}
3410 let isvisible first n = n >= first && n - first <= fstate.maxrows
in
3412 let incr1 = if incr
> 0 then 1 else -1 in
3413 if isvisible m_first m_active
3416 let next = m_active
+ incr
in
3418 if next < 0 || next >= itemcount
3420 else find next incr1
3422 if next = -1 || abs
(m_active
- next) > fstate.maxrows
3428 let first = m_first
+ incr
in
3429 let first = bound first 0 (itemcount - 1) in
3431 let next = m_active
+ incr
in
3432 let next = bound next 0 (itemcount - 1) in
3435 let active = if next = -1 then m_active
else next in
3438 let first = min
next m_first
in
3440 if abs
(next - first) > fstate.maxrows
3446 let first = m_first
+ incr
in
3447 let first = bound first 0 (itemcount - 1) in
3449 let next = m_active
+ incr
in
3450 let next = bound next 0 (itemcount - 1) in
3451 let next = find next incr1 in
3453 if next = -1 || abs
(m_active
- first) > fstate.maxrows
3455 let active = if m_active
= -1 then next else m_active
in
3460 if isvisible first active
3466 G.postRedisplay "listview navigate";
3470 | (0x72|0x73) when Wsi.withctrl mask
-> (* ctrl-r/ctlr-s *)
3471 let incr = if key = 0x72 then -1 else 1 in
3473 match search (m_active
+ incr) m_qsearch
incr with
3475 state.text <- m_qsearch ^
" [not found]";
3478 state.text <- m_qsearch
;
3479 active, firstof m_first
active
3481 G.postRedisplay "listview ctrl-r/s";
3482 set1 active first m_qsearch
;
3484 | 0xff08 -> (* backspace *)
3485 if String.length m_qsearch
= 0
3488 let qsearch = withoutlastutf8 m_qsearch
in
3489 let len = String.length
qsearch in
3493 G.postRedisplay "listview empty qsearch";
3494 set1 m_active m_first
"";
3498 match search m_active
qsearch ~
-1 with
3500 state.text <- qsearch ^
" [not found]";
3503 state.text <- qsearch;
3504 active, firstof m_first
active
3506 G.postRedisplay "listview backspace qsearch";
3507 set1 active first qsearch
3510 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3511 let pattern = m_qsearch ^ toutf8
key in
3513 match search m_active
pattern 1 with
3515 state.text <- pattern ^
" [not found]";
3518 state.text <- pattern;
3519 active, firstof m_first
active
3521 G.postRedisplay "listview qsearch add";
3522 set1 active first pattern;
3524 | 0xff1b -> (* escape *)
3526 if String.length m_qsearch
= 0
3528 G.postRedisplay "list view escape";
3531 source#exit
(coe self
) true m_active m_first m_pan m_qsearch
3533 | None
-> m_prev_uioh
3538 G.postRedisplay "list view kill qsearch";
3539 source#setqsearch
"";
3540 coe {< m_qsearch
= "" >}
3543 | 0xff0d | 0xff8d -> (* (kp) enter *)
3545 let self = {< m_qsearch
= "" >} in
3546 source#setqsearch
"";
3548 G.postRedisplay "listview enter";
3549 if m_active
>= 0 && m_active
< source#getitemcount
3551 source#exit
(coe self) false m_active m_first m_pan
"";
3554 source#exit
(coe self) true m_active m_first m_pan
"";
3557 begin match opt with
3558 | None
-> m_prev_uioh
3562 | 0xff9f | 0xffff -> (* (kp) delete *)
3565 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
3566 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3567 | 0xff55 | 0xff9a -> navigate ~
-(fstate.maxrows
) (* (kp) prior *)
3568 | 0xff56 | 0xff9b -> navigate fstate.maxrows
(* (kp) next *)
3570 | 0xff53 | 0xff98 -> (* (kp) right *)
3572 G.postRedisplay "listview right";
3573 coe {< m_pan
= m_pan
- 1 >}
3575 | 0xff51 | 0xff96 -> (* (kp) left *)
3577 G.postRedisplay "listview left";
3578 coe {< m_pan
= m_pan
+ 1 >}
3580 | 0xff50 | 0xff95 -> (* (kp) home *)
3581 let active = find 0 1 in
3582 G.postRedisplay "listview home";
3585 | 0xff57 | 0xff9c -> (* (kp) end *)
3586 let first = max
0 (itemcount - fstate.maxrows
) in
3587 let active = find (itemcount - 1) ~
-1 in
3588 G.postRedisplay "listview end";
3591 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3595 dolog
"listview unknown key %#x" key; coe self
3597 method key key mask
=
3598 match state.mode
with
3599 | Textentry te
-> textentrykeyboard key mask te
; coe self
3600 | _ -> self#key1
key mask
3602 method button button down
x y _ =
3605 | 1 when x > state.winw
- conf.scrollbw
->
3606 G.postRedisplay "listview scroll";
3609 let _, position, sh = self#
scrollph in
3610 if y > truncate
position && y < truncate
(position +. sh)
3612 state.mstate
<- Mscrolly
;
3616 let s = float (max
0 (y - conf.scrollh
)) /. float state.winh
in
3617 let first = truncate
(s *. float source#getitemcount
) in
3618 let first = min source#getitemcount
first in
3619 Some
(coe {< m_first
= first; m_active
= first >})
3621 state.mstate
<- Mnone
;
3624 | 1 when not down
->
3625 begin match self#elemunder
y with
3627 G.postRedisplay "listview click";
3629 (coe {< m_active
= n >}) false n m_first m_pan m_qsearch
3633 | n when (n == 4 || n == 5) && not down
->
3634 let len = source#getitemcount
in
3636 if n = 5 && m_first
+ fstate.maxrows
>= len
3640 let first = m_first
+ (if n == 4 then -1 else 1) in
3641 bound first 0 (len - 1)
3643 G.postRedisplay "listview wheel";
3644 Some
(coe {< m_first
= first >})
3645 | n when (n = 6 || n = 7) && not down
->
3646 let inc = m_first
+ (if n = 7 then -1 else 1) in
3647 G.postRedisplay "listview hwheel";
3648 Some
(coe {< m_pan
= m_pan
+ inc >})
3653 | None
-> m_prev_uioh
3657 match state.mstate
with
3659 let s = float (max
0 (y - conf.scrollh
)) /. float state.winh
in
3660 let first = truncate
(s *. float source#getitemcount
) in
3661 let first = min source#getitemcount
first in
3662 G.postRedisplay "listview motion";
3663 coe {< m_first
= first; m_active
= first >}
3666 method pmotion
x y =
3667 if x < state.winw
- conf.scrollbw
3670 match self#elemunder
y with
3671 | None
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
; m_active
3672 | Some
n -> Wsi.setcursor
Wsi.CURSOR_INFO
; n
3676 then (G.postRedisplay "listview pmotion"; {< m_active
= n >})
3681 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3685 method infochanged
_ = ()
3687 method scrollpw
= (0, 0.0, 0.0)
3689 let nfs = fstate.fontsize
+ 1 in
3690 let y = m_first
* nfs in
3691 let itemcount = source#getitemcount
in
3692 let maxi = max
0 (itemcount - fstate.maxrows
) in
3693 let maxy = maxi * nfs in
3694 let p, h = scrollph y maxy in
3697 method modehash
= modehash
3698 method eformsgs
= false
3701 class outlinelistview ~source
=
3704 ~source
:(source
:> lvsource
)
3706 ~modehash
:(findkeyhash conf "outline")
3709 method key key mask
=
3710 let calcfirst first active =
3713 let rows = active - first in
3715 if String.length
state.text = 0
3717 else fstate.maxrows - 2
3719 if rows > maxrows then active - maxrows else first
3723 let active = m_active
+ incr in
3724 let active = bound active 0 (source#getitemcount
- 1) in
3725 let first = calcfirst m_first
active in
3726 G.postRedisplay "outline navigate";
3727 coe {< m_active
= active; m_first
= first >}
3729 let ctrl = Wsi.withctrl mask
in
3731 | 110 when ctrl -> (* ctrl-n *)
3732 source#narrow m_qsearch
;
3733 G.postRedisplay "outline ctrl-n";
3734 coe {< m_first
= 0; m_active
= 0 >}
3736 | 117 when ctrl -> (* ctrl-u *)
3738 G.postRedisplay "outline ctrl-u";
3740 coe {< m_first
= 0; m_active
= 0 >}
3742 | 108 when ctrl -> (* ctrl-l *)
3743 let first = max
0 (m_active
- (fstate.maxrows / 2)) in
3744 G.postRedisplay "outline ctrl-l";
3745 coe {< m_first
= first >}
3747 | 0xff9f | 0xffff -> (* (kp) delete *)
3748 source#remove m_active
;
3749 G.postRedisplay "outline delete";
3750 let active = max
0 (m_active
-1) in
3751 coe {< m_first
= firstof m_first
active;
3752 m_active
= active >}
3754 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
3755 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3756 | 0xff55 | 0xff9a -> (* (kp) prior *)
3757 navigate ~
-(fstate.maxrows)
3758 | 0xff56 | 0xff9b -> (* (kp) next *)
3759 navigate fstate.maxrows
3761 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3765 G.postRedisplay "outline ctrl right";
3766 {< m_pan
= m_pan
+ 1 >}
3768 else self#updownlevel
1
3772 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3776 G.postRedisplay "outline ctrl left";
3777 {< m_pan
= m_pan
- 1 >}
3779 else self#updownlevel ~
-1
3783 | 0xff50 | 0xff95 -> (* (kp) home *)
3784 G.postRedisplay "outline home";
3785 coe {< m_first
= 0; m_active
= 0 >}
3787 | 0xff57 | 0xff9c -> (* (kp) end *)
3788 let active = source#getitemcount
- 1 in
3789 let first = max
0 (active - fstate.maxrows) in
3790 G.postRedisplay "outline end";
3791 coe {< m_active
= active; m_first
= first >}
3793 | _ -> super#
key key mask
3796 let outlinesource usebookmarks
=
3799 inherit lvsourcebase
3800 val mutable m_items
= empty
3801 val mutable m_orig_items
= empty
3802 val mutable m_prev_items
= empty
3803 val mutable m_narrow_pattern
= ""
3804 val mutable m_hadremovals
= false
3806 method getitemcount
=
3807 Array.length m_items
+ (if m_hadremovals
then 1 else 0)
3810 if n == Array.length m_items
&& m_hadremovals
3812 ("[Confirm removal]", 0)
3814 let s, n, _ = m_items
.(n) in
3817 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
3818 ignore
(uioh
, first, qsearch);
3819 let confrimremoval = m_hadremovals
&& active = Array.length m_items
in
3821 if String.length m_narrow_pattern
= 0
3827 if not
confrimremoval
3829 let _, _, anchor = m_items
.(active) in
3830 gotoghyll (getanchory anchor);
3834 state.bookmarks
<- Array.to_list m_items
;
3835 m_orig_items
<- m_items
;
3838 else m_items
<- items;
3842 method hasaction
_ = true
3845 if Array.length m_items
!= Array.length m_orig_items
3846 then "Narrowed to " ^ m_narrow_pattern ^
" (ctrl-u to restore)"
3849 method narrow
pattern =
3850 let reopt = try Some
(Str.regexp_case_fold
pattern) with _ -> None
in
3854 let rec loop accu n =
3857 m_narrow_pattern
<- pattern;
3858 m_items
<- Array.of_list
accu
3861 let (s, _, _) as o = m_items
.(n) in
3863 if (try ignore
(Str.search_forward
re s 0); true
3864 with Not_found
-> false)
3870 loop [] (Array.length m_items
- 1)
3875 then Array.of_list
state.bookmarks
3878 m_items
<- m_orig_items
3883 if m >= 0 && m < Array.length m_items
3885 m_hadremovals
<- true;
3886 m_items
<- Array.init
(Array.length m_items
- 1) (fun n ->
3887 let n = if n >= m then n+1 else n in
3892 method reset
anchor items =
3893 m_hadremovals
<- false;
3894 if m_orig_items
== empty || m_prev_items
!= items
3896 m_orig_items
<- items;
3897 if String.length m_narrow_pattern
= 0
3898 then m_items
<- items;
3900 m_prev_items
<- items;
3901 let rely = getanchory anchor in
3903 let rec loop n best bestd
=
3904 if n = Array.length m_items
3907 let (_, _, anchor) = m_items
.(n) in
3908 let orely = getanchory anchor in
3909 let d = abs
(orely - rely) in
3912 else loop (n+1) best bestd
3917 m_first
<- firstof m_first
active
3921 let enterselector usebookmarks
=
3922 let source = outlinesource usebookmarks
in
3926 then Array.of_list
state.bookmarks
3929 if Array.length
outlines = 0
3931 showtext ' ' errmsg
;
3934 state.text <- source#greetmsg
;
3935 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3936 let anchor = getanchor () in
3937 source#reset
anchor outlines;
3938 state.uioh
<- coe (new outlinelistview ~
source);
3939 G.postRedisplay "enter selector";
3943 let enteroutlinemode =
3944 let f = enterselector false in
3945 fun ()-> f "Document has no outline";
3948 let enterbookmarkmode =
3949 let f = enterselector true in
3950 fun () -> f "Document has no bookmarks (yet)";
3953 let color_of_string s =
3954 Scanf.sscanf
s "%d/%d/%d" (fun r g b ->
3955 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3959 let color_to_string (r, g, b) =
3960 let r = truncate
(r *. 256.0)
3961 and g = truncate
(g *. 256.0)
3962 and b = truncate
(b *. 256.0) in
3963 Printf.sprintf
"%d/%d/%d" r g b
3966 let irect_of_string s =
3967 Scanf.sscanf
s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3970 let irect_to_string (x0,y0,x1,y1) =
3971 Printf.sprintf
"%d/%d/%d/%d" x0 y0 x1 y1
3974 let makecheckers () =
3975 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3977 converted by Issac Trotts. July 25, 2002 *)
3978 let image = GlPix.create `ubyte ~format
:`luminance ~width
:2 ~height
:2 in
3979 Raw.sets_string
(GlPix.to_raw
image) ~pos
:0 "\255\200\200\255";
3980 let id = GlTex.gen_texture
() in
3981 GlTex.bind_texture `texture_2d
id;
3982 GlPix.store
(`unpack_alignment
1);
3983 GlTex.image2d
image;
3984 List.iter
(GlTex.parameter ~target
:`texture_2d
)
3985 [ `mag_filter `nearest
; `min_filter `nearest
];
3989 let setcheckers enabled
=
3990 match state.texid
with
3992 if enabled
then state.texid
<- Some
(makecheckers ())
3997 GlTex.delete_texture texid
;
3998 state.texid
<- None
;
4002 let int_of_string_with_suffix s =
4003 let l = String.length
s in
4007 let suffix = Char.lowercase
s.[l-1] in
4009 | 'k'
-> String.sub
s 0 (l-1), 10
4010 | '
m'
-> String.sub
s 0 (l-1), 20
4011 | '
g'
-> String.sub
s 0 (l-1), 30
4015 let n = int_of_string
s1 in
4016 let m = n lsl shift
in
4018 then raise
(Failure
"value too large")
4022 let string_with_suffix_of_int n =
4027 if n land ((1 lsl 30) - 1) = 0
4030 if n land ((1 lsl 20) - 1) = 0
4033 if n land ((1 lsl 10) - 1) = 0
4040 let h = n mod 1000 in
4043 then string_of_int
h ^
s
4045 let s = Printf.sprintf
"_%03d%s" h s in
4052 let defghyllscroll = (40, 8, 32);;
4053 let ghyllscroll_of_string s =
4054 let (n, a, b) as nab
=
4057 else Scanf.sscanf
s "%u,%u,%u" (fun n a b -> n, a, b)
4059 if n <= a || n <= b || a >= b
4060 then failwith
"invalid ghyll N,A,B (N <= A, A < B, N <= B)";
4064 let ghyllscroll_to_string ((n, a, b) as nab
) =
4065 if nab
= defghyllscroll
4067 else Printf.sprintf
"%d,%d,%d" n a b;
4070 let describe_location () =
4071 let fn = page_of_y state.y in
4072 let ln = page_of_y (state.y + state.winh
- state.hscrollh - 1) in
4073 let maxy = state.maxy - (if conf.maxhfit
then state.winh
else 0) in
4077 else (100. *. (float state.y /. float maxy))
4081 Printf.sprintf
"page %d of %d [%.2f%%]"
4082 (fn+1) state.pagecount
percent
4085 "pages %d-%d of %d [%.2f%%]"
4086 (fn+1) (ln+1) state.pagecount
percent
4089 let setpresentationmode v
=
4090 let n = page_of_y state.y in
4091 state.anchor <- (n, 0.0, 1.0);
4092 conf.presentation
<- v
;
4093 if conf.presentation
4095 if not
conf.scrollbarinpm
4096 then state.scrollw
<- 0;
4098 else state.scrollw
<- conf.scrollbw
;
4103 let btos b = if b then "\xe2\x88\x9a" else "" in
4104 let showextended = ref false in
4105 let leave mode
= function
4106 | Confirm
-> state.mode
<- mode
4107 | Cancel
-> state.mode
<- mode
in
4110 val mutable m_first_time
= true
4111 val mutable m_l
= []
4112 val mutable m_a
= [||]
4113 val mutable m_prev_uioh
= nouioh
4114 val mutable m_prev_mode
= View
4116 inherit lvsourcebase
4118 method reset prev_mode prev_uioh
=
4119 m_a
<- Array.of_list
(List.rev m_l
);
4121 m_prev_mode
<- prev_mode
;
4122 m_prev_uioh
<- prev_uioh
;
4126 if n >= Array.length m_a
4130 | _, _, _, Action
_ -> m_active
<- n
4134 m_first_time
<- false;
4137 method int name get
set =
4139 (name
, `
int get
, 1, Action
(
4142 try set (int_of_string
s)
4144 state.text <- Printf.sprintf
"bad integer `%s': %s"
4148 let te = name ^
": ", "", None
, intentry, ondone, true in
4149 state.mode
<- Textentry
(te, leave m_prev_mode
);
4153 method int_with_suffix name get
set =
4155 (name
, `intws get
, 1, Action
(
4158 try set (int_of_string_with_suffix s)
4160 state.text <- Printf.sprintf
"bad integer `%s': %s"
4165 name ^
": ", "", None
, intentry_with_suffix, ondone, true
4167 state.mode
<- Textentry
(te, leave m_prev_mode
);
4171 method bool ?
(offset
=1) ?
(btos=btos) name get
set =
4173 (name
, `
bool (btos, get
), offset
, Action
(
4180 method color name get
set =
4182 (name
, `color get
, 1, Action
(
4184 let invalid = (nan
, nan
, nan
) in
4187 try color_of_string s
4189 state.text <- Printf.sprintf
"bad color `%s': %s"
4196 let te = name ^
": ", "", None
, textentry, ondone, true in
4197 state.text <- color_to_string (get
());
4198 state.mode
<- Textentry
(te, leave m_prev_mode
);
4202 method string name get
set =
4204 (name
, `
string get
, 1, Action
(
4206 let ondone s = set s in
4207 let te = name ^
": ", "", None
, textentry, ondone, true in
4208 state.mode
<- Textentry
(te, leave m_prev_mode
);
4212 method colorspace name get
set =
4214 (name
, `
string get
, 1, Action
(
4217 let vals = [| "rgb"; "bgr"; "gray" |] in
4219 inherit lvsourcebase
4222 m_active
<- int_of_colorspace conf.colorspace
;
4225 method getitemcount
= Array.length
vals
4226 method getitem
n = (vals.(n), 0)
4227 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4228 ignore
(uioh
, first, pan
, qsearch);
4229 if not cancel
then set active;
4231 method hasaction
_ = true
4235 let modehash = findkeyhash conf "info" in
4236 coe (new listview ~
source ~trusted
:true ~
modehash)
4239 method fitmodel name get
set =
4241 (name
, `
string get
, 1, Action
(
4244 let vals = [| "fit width"; "proportional"; "fit page" |] in
4246 inherit lvsourcebase
4249 m_active
<- int_of_fitmodel conf.fitmodel
;
4252 method getitemcount
= Array.length
vals
4253 method getitem
n = (vals.(n), 0)
4254 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4255 ignore
(uioh
, first, pan
, qsearch);
4256 if not cancel
then set active;
4258 method hasaction
_ = true
4262 let modehash = findkeyhash conf "info" in
4263 coe (new listview ~
source ~trusted
:true ~
modehash)
4266 method caption
s offset
=
4267 m_l
<- (s, `
empty, offset
, Noaction
) :: m_l
4269 method caption2
s f offset
=
4270 m_l
<- (s, `
string f, offset
, Noaction
) :: m_l
4272 method getitemcount
= Array.length m_a
4275 let tostr = function
4276 | `
int f -> string_of_int
(f ())
4277 | `intws
f -> string_with_suffix_of_int (f ())
4279 | `color
f -> color_to_string (f ())
4280 | `
bool (btos, f) -> btos (f ())
4283 let name, t
, offset
, _ = m_a
.(n) in
4284 ((let s = tostr t
in
4285 if String.length
s > 0
4286 then Printf.sprintf
"%s\t%s" name s
4290 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4294 m_qsearch
<- qsearch;
4296 match m_a
.(active) with
4297 | _, _, _, Action
f -> f uioh
4309 method hasaction
n =
4311 | _, _, _, Action
_ -> true
4315 let rec fillsrc prevmode prevuioh
=
4316 let sep () = src#caption
"" 0 in
4317 let colorp name get
set =
4319 (fun () -> color_to_string (get
()))
4322 let c = color_of_string v in
4325 state.text <- Printf.sprintf
"bad color `%s': %s" v (exntos exn
)
4328 let oldmode = state.mode
in
4329 let birdseye = isbirdseye state.mode
in
4331 src#caption
(if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4333 src#
bool "presentation mode"
4334 (fun () -> conf.presentation
)
4335 (fun v -> setpresentationmode v);
4337 src#
bool "ignore case in searches"
4338 (fun () -> conf.icase
)
4339 (fun v -> conf.icase
<- v);
4342 (fun () -> conf.preload)
4343 (fun v -> conf.preload <- v);
4345 src#
bool "highlight links"
4346 (fun () -> conf.hlinks
)
4347 (fun v -> conf.hlinks
<- v);
4349 src#
bool "under info"
4350 (fun () -> conf.underinfo
)
4351 (fun v -> conf.underinfo
<- v);
4353 src#
bool "persistent bookmarks"
4354 (fun () -> conf.savebmarks
)
4355 (fun v -> conf.savebmarks
<- v);
4357 src#fitmodel
"fit model"
4358 (fun () -> fitmodel_to_string conf.fitmodel
)
4359 (fun v -> reqlayout conf.angle
(fitmodel_of_int v));
4361 src#
bool "trim margins"
4362 (fun () -> conf.trimmargins
)
4363 (fun v -> settrim v conf.trimfuzz
; fillsrc prevmode prevuioh
);
4365 src#
bool "persistent location"
4366 (fun () -> conf.jumpback
)
4367 (fun v -> conf.jumpback
<- v);
4370 src#
int "inter-page space"
4371 (fun () -> conf.interpagespace
)
4373 conf.interpagespace
<- n;
4374 docolumns conf.columns
;
4376 match state.layout with
4381 state.maxy <- calcheight ();
4382 let y = getpagey pageno in
4387 (fun () -> conf.pagebias
)
4388 (fun v -> conf.pagebias
<- v);
4390 src#
int "scroll step"
4391 (fun () -> conf.scrollstep
)
4392 (fun n -> conf.scrollstep
<- n);
4394 src#
int "horizontal scroll step"
4395 (fun () -> conf.hscrollstep
)
4396 (fun v -> conf.hscrollstep
<- v);
4398 src#
int "auto scroll step"
4400 match state.autoscroll
with
4402 | _ -> conf.autoscrollstep
)
4404 if state.autoscroll
<> None
4405 then state.autoscroll
<- Some
n;
4406 conf.autoscrollstep
<- n);
4409 (fun () -> truncate
(conf.zoom *. 100.))
4410 (fun v -> setzoom ((float v) /. 100.));
4413 (fun () -> conf.angle
)
4414 (fun v -> reqlayout v conf.fitmodel
);
4416 src#
int "scroll bar width"
4417 (fun () -> state.scrollw
)
4421 reshape state.winw
state.winh
;
4424 src#
int "scroll handle height"
4425 (fun () -> conf.scrollh
)
4426 (fun v -> conf.scrollh
<- v;);
4428 src#
int "thumbnail width"
4429 (fun () -> conf.thumbw
)
4431 conf.thumbw
<- min
4096 v;
4434 leavebirdseye beye
false;
4439 let mode = state.mode in
4440 src#
string "columns"
4442 match conf.columns
with
4444 | Cmulti
(multi
, _) -> multicolumns_to_string multi
4445 | Csplit
(count
, _) -> "-" ^ string_of_int count
4448 let n, a, b = multicolumns_of_string v in
4449 setcolumns mode n a b);
4452 src#caption
"Presentation mode" 0;
4453 src#
bool "scrollbar visible"
4454 (fun () -> conf.scrollbarinpm
)
4456 if v != conf.scrollbarinpm
4458 conf.scrollbarinpm
<- v;
4459 if conf.presentation
4461 state.scrollw
<- if v then conf.scrollbw
else 0;
4462 reshape state.winw
state.winh
;
4468 src#caption
"Pixmap cache" 0;
4469 src#int_with_suffix
"size (advisory)"
4470 (fun () -> conf.memlimit
)
4471 (fun v -> conf.memlimit
<- v);
4474 (fun () -> Printf.sprintf
"%s bytes, %d tiles"
4475 (string_with_suffix_of_int state.memused
)
4476 (Hashtbl.length
state.tilemap
)) 1;
4479 src#caption
"Layout" 0;
4480 src#caption2
"Dimension"
4482 Printf.sprintf
"%dx%d (virtual %dx%d)"
4483 state.winw
state.winh
4488 src#caption2
"Position" (fun () ->
4489 Printf.sprintf
"%dx%d" state.x state.y
4492 src#caption2
"Position" (fun () -> describe_location ()) 1
4496 src#
bool ~offset
:0 ~
btos:(fun v -> if v then "(on)" else "(off)")
4497 "Save these parameters as global defaults at exit"
4498 (fun () -> conf.bedefault
)
4499 (fun v -> conf.bedefault
<- v)
4503 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4504 src#
bool ~offset
:0 ~
btos "Extended parameters"
4505 (fun () -> !showextended)
4506 (fun v -> showextended := v; fillsrc prevmode prevuioh
);
4510 (fun () -> conf.checkers
)
4511 (fun v -> conf.checkers
<- v; setcheckers v);
4512 src#
bool "update cursor"
4513 (fun () -> conf.updatecurs
)
4514 (fun v -> conf.updatecurs
<- v);
4516 (fun () -> conf.verbose
)
4517 (fun v -> conf.verbose
<- v);
4518 src#
bool "invert colors"
4519 (fun () -> conf.invert
)
4520 (fun v -> conf.invert
<- v);
4522 (fun () -> conf.maxhfit
)
4523 (fun v -> conf.maxhfit
<- v);
4524 src#
bool "redirect stderr"
4525 (fun () -> conf.redirectstderr)
4526 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4527 src#
string "uri launcher"
4528 (fun () -> conf.urilauncher
)
4529 (fun v -> conf.urilauncher
<- v);
4530 src#
string "path launcher"
4531 (fun () -> conf.pathlauncher
)
4532 (fun v -> conf.pathlauncher
<- v);
4533 src#
string "tile size"
4534 (fun () -> Printf.sprintf
"%dx%d" conf.tilew
conf.tileh
)
4537 let w, h = Scanf.sscanf
v "%dx%d" (fun w h -> w, h) in
4538 conf.tilew
<- max
64 w;
4539 conf.tileh
<- max
64 h;
4542 state.text <- Printf.sprintf
"bad tile size `%s': %s"
4545 src#
int "texture count"
4546 (fun () -> conf.texcount
)
4549 then conf.texcount
<- v
4550 else showtext '
!'
" Failed to set texture count please retry later"
4552 src#
int "slice height"
4553 (fun () -> conf.sliceheight
)
4555 conf.sliceheight
<- v;
4556 wcmd "sliceh %d" conf.sliceheight
;
4558 src#
int "anti-aliasing level"
4559 (fun () -> conf.aalevel
)
4561 conf.aalevel
<- bound v 0 8;
4562 state.anchor <- getanchor ();
4563 opendoc state.path
state.password
;
4565 src#
string "page scroll scaling factor"
4566 (fun () -> string_of_float
conf.pgscale)
4569 let s = float_of_string
v in
4572 state.text <- Printf.sprintf
4573 "bad page scroll scaling factor `%s': %s" v (exntos exn
)
4576 src#
int "ui font size"
4577 (fun () -> fstate.fontsize
)
4578 (fun v -> setfontsize (bound v 5 100));
4579 src#
int "hint font size"
4580 (fun () -> conf.hfsize
)
4581 (fun v -> conf.hfsize
<- bound v 5 100);
4582 colorp "background color"
4583 (fun () -> conf.bgcolor
)
4584 (fun v -> conf.bgcolor
<- v);
4585 src#
bool "crop hack"
4586 (fun () -> conf.crophack
)
4587 (fun v -> conf.crophack
<- v);
4588 src#
string "trim fuzz"
4589 (fun () -> irect_to_string conf.trimfuzz
)
4592 conf.trimfuzz
<- irect_of_string v;
4594 then settrim true conf.trimfuzz
;
4596 state.text <- Printf.sprintf
"bad irect `%s': %s" v (exntos exn
)
4598 src#
string "throttle"
4600 match conf.maxwait
with
4601 | None
-> "show place holder if page is not ready"
4604 then "wait for page to fully render"
4606 "wait " ^ string_of_float
time
4607 ^
" seconds before showing placeholder"
4611 let f = float_of_string
v in
4613 then conf.maxwait
<- None
4614 else conf.maxwait
<- Some
f
4616 state.text <- Printf.sprintf
"bad time `%s': %s" v (exntos exn
)
4618 src#
string "ghyll scroll"
4620 match conf.ghyllscroll
with
4622 | Some nab
-> ghyllscroll_to_string nab
4627 if String.length
v = 0
4629 else Some
(ghyllscroll_of_string v)
4631 conf.ghyllscroll
<- gs
4633 state.text <- Printf.sprintf
"bad ghyll `%s': %s" v (exntos exn
)
4635 src#
string "selection command"
4636 (fun () -> conf.selcmd
)
4637 (fun v -> conf.selcmd
<- v);
4638 src#
string "synctex command"
4639 (fun () -> conf.stcmd
)
4640 (fun v -> conf.stcmd
<- v);
4641 src#colorspace
"color space"
4642 (fun () -> colorspace_to_string conf.colorspace
)
4644 conf.colorspace
<- colorspace_of_int v;
4651 (fun () -> conf.usepbo
)
4652 (fun v -> conf.usepbo
<- v);
4653 src#
bool "mouse wheel scrolls pages"
4654 (fun () -> conf.wheelbypage
)
4655 (fun v -> conf.wheelbypage
<- v);
4659 src#caption
"Document" 0;
4660 List.iter
(fun (_, s) -> src#caption
s 1) state.docinfo
;
4661 src#caption2
"Pages"
4662 (fun () -> string_of_int
state.pagecount
) 1;
4663 src#caption2
"Dimensions"
4664 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4668 src#caption
"Trimmed margins" 0;
4669 src#caption2
"Dimensions"
4670 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4674 src#caption
"OpenGL" 0;
4675 src#caption
(Printf.sprintf
"Vendor\t%s" (GlMisc.get_string `vendor
)) 1;
4676 src#caption
(Printf.sprintf
"Renderer\t%s" (GlMisc.get_string `renderer
)) 1;
4677 src#reset prevmode prevuioh
;
4681 let prevmode = state.mode
4682 and prevuioh
= state.uioh in
4683 fillsrc prevmode prevuioh
;
4684 let source = (src :> lvsource
) in
4685 let modehash = findkeyhash conf "info" in
4686 state.uioh <- coe (object (self)
4687 inherit listview ~
source ~trusted
:true ~
modehash as super
4688 val mutable m_prevmemused
= 0
4689 method infochanged
= function
4691 if m_prevmemused
!= state.memused
4693 m_prevmemused
<- state.memused
;
4694 G.postRedisplay "memusedchanged";
4696 | Pdim
-> G.postRedisplay "pdimchanged"
4697 | Docinfo
-> fillsrc prevmode prevuioh
4699 method key key mask
=
4700 if not
(Wsi.withctrl mask
)
4703 | 0xff51 | 0xff96 -> coe (self#updownlevel ~
-1) (* (kp) left *)
4704 | 0xff53 | 0xff98 -> coe (self#updownlevel
1) (* (kp) right *)
4705 | _ -> super#
key key mask
4706 else super#
key key mask
4708 G.postRedisplay "info";
4714 inherit lvsourcebase
4715 method getitemcount
= Array.length
state.help
4717 let s, l, _ = state.help
.(n) in
4720 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4724 m_qsearch
<- qsearch;
4725 match state.help
.(active) with
4726 | _, _, Action
f -> Some
(f uioh)
4736 method hasaction
n =
4737 match state.help
.(n) with
4738 | _, _, Action
_ -> true
4745 let modehash = findkeyhash conf "help" in
4746 state.uioh <- coe (new listview ~
source ~trusted
:true ~
modehash);
4747 G.postRedisplay "help";
4752 let re = Str.regexp
"[\r\n]" in
4754 inherit lvsourcebase
4755 val mutable m_items
= [||]
4757 method getitemcount
= 1 + Array.length m_items
4762 else m_items
.(n-1), 0
4764 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4769 then Buffer.clear
state.errmsgs
;
4770 m_qsearch
<- qsearch;
4777 method hasaction
n =
4781 state.newerrmsgs
<- false;
4782 let l = Str.split
re (Buffer.contents
state.errmsgs
) in
4783 m_items
<- Array.of_list
l
4791 let source = (msgsource :> lvsource
) in
4792 let modehash = findkeyhash conf "listview" in
4793 state.uioh <- coe (object
4794 inherit listview ~
source ~trusted
:false ~
modehash as super
4797 then msgsource#reset
;
4800 G.postRedisplay "msgs";
4803 let quickbookmark ?title
() =
4804 match state.layout with
4810 let sec = Unix.gettimeofday
() in
4811 let tm = Unix.localtime
sec in
4812 Printf.sprintf
"Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4816 (tm.Unix.tm_year
+ 1900)
4819 | Some
title -> title
4821 state.bookmarks
<- (title, 0, getanchor1 l) :: state.bookmarks
4824 let setautoscrollspeed step goingdown
=
4825 let incr = max
1 ((abs step
) / 2) in
4826 let incr = if goingdown
then incr else -incr in
4827 let astep = step
+ incr in
4828 state.autoscroll
<- Some
astep;
4831 let gotounder = function
4832 | Ulinkgoto
(pageno, top) ->
4836 gotopage1 pageno top;
4842 | Uremote
(filename
, pageno) ->
4844 if Sys.file_exists filename
4847 let dir = Filename.dirname
state.path in
4848 let path = Filename.concat
dir filename
in
4849 if Sys.file_exists
path
4853 if String.length
path > 0
4855 let anchor = getanchor () in
4856 let ranchor = state.path, state.password
, anchor in
4857 state.anchor <- (pageno, 0.0, 0.0);
4858 state.ranchors
<- ranchor :: state.ranchors
;
4861 else showtext '
!'
("Could not find " ^ filename
)
4863 | Uunexpected
_ | Ulaunch
_ | Unamed
_ | Utext
_ | Unone
-> ()
4867 match conf.columns
with
4869 | _ -> state.x != 0 || conf.zoom > 1.0
4872 let existsinrow pageno (columns
, coverA
, coverB
) p =
4873 let last = ((pageno - coverA
) mod columns
) + columns
in
4874 let rec any = function
4877 if l.pageno = coverA
- 1 || l.pageno = state.pagecount
- coverB
4881 then (if l.pageno = last then false else any rest
)
4889 match state.layout with
4891 let pageno = page_of_y state.y in
4892 gotoghyll (getpagey (pageno+1))
4894 match conf.columns
with
4896 if conf.presentation
&& rest
== [] && l.pageh
> l.pagey + l.pagevh
4898 let y = clamp (pgscale state.winh
) in
4901 let pageno = min
(l.pageno+1) (state.pagecount
-1) in
4902 gotoghyll (getpagey pageno)
4903 | Cmulti
((c, _, _) as cl, _) ->
4904 if conf.presentation
4905 && (existsinrow l.pageno cl
4906 (fun l -> l.pageh
> l.pagey + l.pagevh))
4908 let y = clamp (pgscale state.winh
) in
4911 let pageno = min
(l.pageno+c) (state.pagecount
-1) in
4912 gotoghyll (getpagey pageno)
4914 if l.pageno < state.pagecount
- 1 || l.pagecol
< n - 1
4916 let pagey, pageh
= getpageyh l.pageno in
4917 let pagey = pagey + pageh
* l.pagecol
in
4918 let ips = if l.pagecol
= 0 then 0 else conf.interpagespace
in
4919 gotoghyll (pagey + pageh
+ ips)
4923 match state.layout with
4925 let pageno = page_of_y state.y in
4926 gotoghyll (getpagey (pageno-1))
4928 match conf.columns
with
4930 if conf.presentation
&& l.pagey != 0
4932 gotoghyll (clamp (pgscale ~
-(state.winh
)))
4934 let pageno = max
0 (l.pageno-1) in
4935 gotoghyll (getpagey pageno)
4936 | Cmulti
((c, _, coverB
) as cl, _) ->
4937 if conf.presentation
&&
4938 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4940 gotoghyll (clamp (pgscale ~
-(state.winh
)))
4943 if l.pageno = state.pagecount
- coverB
4947 let pageno = max
0 (l.pageno-decr) in
4948 gotoghyll (getpagey pageno)
4956 let pageno = max
0 (l.pageno-1) in
4957 let pagey, pageh
= getpageyh pageno in
4960 let pagey, pageh
= getpageyh l.pageno in
4961 pagey + pageh
* (l.pagecol
-1) - conf.interpagespace
4966 let viewkeyboard key mask
=
4968 let mode = state.mode in
4969 state.mode <- Textentry
(te, fun _ -> state.mode <- mode);
4972 G.postRedisplay "view:enttext"
4974 let ctrl = Wsi.withctrl mask
in
4976 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4982 | 0xff63 -> (* insert *)
4983 if conf.angle
mod 360 = 0 && not
(isbirdseye state.mode)
4985 state.mode <- LinkNav
(Ltgendir
0);
4988 else showtext '
!'
"Keyboard link navigation does not work under rotation"
4990 | 0xff1b | 113 -> (* escape / q *)
4991 begin match state.mstate
with
4993 state.mstate
<- Mnone
;
4994 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
4995 G.postRedisplay "kill zoom rect";
4997 begin match state.mode with
5000 G.postRedisplay "esc leave linknav"
5002 match state.ranchors
with
5004 | (path, password
, anchor) :: rest
->
5005 state.ranchors
<- rest
;
5006 state.anchor <- anchor;
5007 opendoc path password
5011 | 0xff08 -> (* backspace *)
5012 gotoghyll (getnav ~
-1)
5020 G.postRedisplay "dehighlight";
5022 | 47 | 63 -> (* / ? *)
5023 let ondone isforw
s =
5024 cbput state.hists
.pat
s;
5025 state.searchpattern
<- s;
5028 let s = String.create
1 in
5029 s.[0] <- Char.chr
key;
5030 enttext (s, "", Some
(onhist state.hists
.pat
),
5031 textentry, ondone (key = 47), true)
5033 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5034 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5035 setzoom (conf.zoom +. incr)
5037 | 43 | 0xffab -> (* + *)
5040 try int_of_string
s with exc
->
5041 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
5047 state.text <- "page bias is now " ^ string_of_int
n;
5050 enttext ("page bias: ", "", None
, intentry, ondone, true)
5052 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5053 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5054 setzoom (max
0.01 (conf.zoom -. decr))
5056 | 45 | 0xffad -> (* - *)
5057 let ondone msg
= state.text <- msg
in
5059 "option [acfhilpstvxACFPRSZTIS]: ", "", None
,
5060 optentry state.mode, ondone, true
5063 | 48 when ctrl -> (* ctrl-0 *)
5068 if state.w <= state.winw
- state.scrollw
5076 | (49 | 50) when ctrl -> (* ctrl-1/2 *)
5078 match conf.columns
with
5079 | Csingle
_ | Cmulti
_ -> 1
5080 | Csplit
(n, _) -> n
5082 let h = state.winh
-
5083 conf.interpagespace
lsl (if conf.presentation
then 1 else 0)
5085 let zoom = zoomforh
state.winw
h state.scrollw
cols in
5086 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5089 | 51 when ctrl -> (* ctrl-3 *)
5091 match conf.fitmodel
with
5092 | FitWidth
-> FitProportional
5093 | FitProportional
-> FitPage
5094 | FitPage
-> FitWidth
5096 state.text <- "fit model: " ^
fitmodel_to_string fm;
5097 reqlayout conf.angle
fm
5099 | 0xffc6 -> (* f9 *)
5102 | 57 when ctrl -> (* ctrl-9 *)
5105 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5106 when not
ctrl -> (* 0..9 *)
5109 try int_of_string
s with exc
->
5110 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
5116 cbput state.hists
.pag
(string_of_int
n);
5117 gotopage1 (n + conf.pagebias
- 1) 0;
5120 let pageentry text key =
5121 match Char.unsafe_chr
key with
5122 | '
g'
-> TEdone
text
5123 | _ -> intentry text key
5125 let text = "x" in text.[0] <- Char.chr
key;
5126 enttext (":", text, Some
(onhist state.hists
.pag
), pageentry, ondone, true)
5129 state.scrollw
<- if state.scrollw
> 0 then 0 else conf.scrollbw
;
5130 reshape state.winw
state.winh
;
5133 conf.hlinks
<- not
conf.hlinks
;
5134 state.text <- "highlightlinks " ^
if conf.hlinks
then "on" else "off";
5135 G.postRedisplay "toggle highlightlinks";
5138 state.glinks
<- true;
5139 let mode = state.mode in
5140 state.mode <- Textentry
(
5141 (":", "", None
, linknentry, linkndone gotounder, false),
5143 state.glinks
<- false;
5147 G.postRedisplay "view:linkent(F)"
5150 state.glinks
<- true;
5151 let mode = state.mode in
5152 state.mode <- Textentry
(
5153 (":", "", None
, linknentry, linkndone (fun under ->
5154 match Ne.pipe () with
5156 showtext '
!'
(Printf.sprintf
"pipe failed: %s" (exntos exn
))
5159 try popen conf.selcmd
[r, 0; w, -1]; true
5162 (Printf.sprintf
"failed to execute %s: %s"
5163 conf.selcmd
(exntos exn
));
5167 Ne.clo fd
(fun msg
->
5168 showtext '
!'
(Printf.sprintf
"failed to close %s: %s" cap msg
)
5171 let s = undertext under in
5175 let l = String.length
s in
5176 let n = tempfailureretry
(Unix.write
w s 0) l in
5181 "failed to write %d characters to sel pipe, wrote %d"
5186 (Printf.sprintf
"failed to write to sel pipe: %s"
5196 state.glinks
<- false;
5200 G.postRedisplay "view:linkent"
5203 begin match state.autoscroll
with
5205 conf.autoscrollstep
<- step
;
5206 state.autoscroll
<- None
5208 if conf.autoscrollstep
= 0
5209 then state.autoscroll
<- Some
1
5210 else state.autoscroll
<- Some
conf.autoscrollstep
5213 | 112 when ctrl -> (* ctrl-p *)
5217 setpresentationmode (not
conf.presentation
);
5218 showtext ' '
("presentation mode " ^
5219 if conf.presentation
then "on" else "off");
5222 if List.mem
Wsi.Fullscreen
state.winstate
5223 then Wsi.reshape conf.cwinw
conf.cwinh
5224 else Wsi.fullscreen
()
5226 | 112 | 78 -> (* p|N *)
5227 search state.searchpattern
false
5229 | 110 | 0xffc0 -> (* n|F3 *)
5230 search state.searchpattern
true
5233 begin match state.layout with
5236 gotoghyll (getpagey l.pageno)
5242 | 0xff9f | 0xffff -> (* delete *)
5246 showtext ' '
(describe_location ());
5249 begin match state.layout with
5252 Wsi.reshape (l.pagew
+ state.scrollw
) l.pageh
;
5257 enterbookmarkmode ()
5259 | 104 | 0xffbe -> (* h|F1 *)
5265 | 101 when Buffer.length
state.errmsgs
> 0 -> (* e *)
5270 match state.layout with
5272 if String.length
s > 0
5274 state.bookmarks
<- (s, 0, getanchor1 l) :: state.bookmarks
5277 enttext ("bookmark: ", "", None
, textentry, ondone, true)
5281 showtext ' '
"Quick bookmark added";
5284 begin match state.layout with
5286 let rect = getpdimrect
l.pagedimno
in
5290 (truncate
(1.8 *. (rect.(1) -. rect.(0))),
5291 truncate
(1.2 *. (rect.(3) -. rect.(0))))
5293 (truncate
(rect.(1) -. rect.(0)),
5294 truncate
(rect.(3) -. rect.(0)))
5296 let w = truncate
((float w)*.conf.zoom)
5297 and h = truncate
((float h)*.conf.zoom) in
5300 state.anchor <- getanchor ();
5301 Wsi.reshape (w + state.scrollw
) (h + conf.interpagespace
)
5303 G.postRedisplay "z";
5308 | 60 | 62 -> (* < > *)
5309 reqlayout (conf.angle
+ (if key = 62 then 30 else -30)) conf.fitmodel
5311 | 91 | 93 -> (* [ ] *)
5313 bound (conf.colorscale
+. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5315 G.postRedisplay "brightness";
5317 | 99 when state.mode = View
-> (* c *)
5319 match state.prevcolumns
with
5320 | None
-> (1, 0, 0), 1.0
5321 | Some
(columns
, z
) ->
5324 | Csplit
(c, _) -> -c, 0, 0
5325 | Cmulti
((c, a, b), _) -> c, a, b
5326 | Csingle
_ -> 1, 0, 0
5330 setcolumns View
c a b;
5333 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
->
5334 setzoom state.prevzoom
5336 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5337 begin match state.autoscroll
with
5339 begin match state.mode with
5340 | Birdseye beye
-> upbirdseye 1 beye
5343 then gotoy_and_clear_text (clamp ~
-(state.winh
/2))
5345 if not
(Wsi.withshift mask
) && conf.presentation
5347 else gotoy_and_clear_text (clamp (-conf.scrollstep
))
5351 setautoscrollspeed n false
5354 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5355 begin match state.autoscroll
with
5357 begin match state.mode with
5358 | Birdseye beye
-> downbirdseye 1 beye
5361 then gotoy_and_clear_text (clamp (state.winh
/2))
5363 if not
(Wsi.withshift mask
) && conf.presentation
5365 else gotoy_and_clear_text (clamp conf.scrollstep
)
5369 setautoscrollspeed n true
5372 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5373 when not
(Wsi.withalt mask
) -> (* (kp) left / right *)
5379 else conf.hscrollstep
5381 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5382 state.x <- state.x + dx;
5383 gotoy_and_clear_text state.y
5386 G.postRedisplay "lef/right"
5389 | 0xff55 | 0xff9a -> (* (kp) prior *)
5393 match state.layout with
5395 | l :: _ -> state.y - l.pagey
5397 clamp (pgscale (-state.winh
))
5401 | 0xff56 | 0xff9b -> (* (kp) next *)
5405 match List.rev
state.layout with
5407 | l :: _ -> getpagey l.pageno
5409 clamp (pgscale state.winh
)
5413 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5415 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5416 gotoghyll (clamp state.maxy)
5419 when Wsi.withalt mask
-> (* alt-(kp) right *)
5420 gotoghyll (getnav 1)
5422 when Wsi.withalt mask
-> (* alt-(kp) left *)
5423 gotoghyll (getnav ~
-1)
5428 | 118 when conf.debug
-> (* v *)
5431 match getopaque l.pageno with
5434 let x0, y0, x1, y1 = pagebbox opaque
in
5435 let a,b = float x0, float y0 in
5436 let c,d = float x1, float y0 in
5437 let e,f = float x1, float y1 in
5438 let h,j
= float x0, float y1 in
5439 let rect = (a,b,c,d,e,f,h,j
) in
5441 state.rects
<- (l.pageno, l.pageno mod 3, rect) :: state.rects
;
5443 G.postRedisplay "v";
5446 vlog "huh? %s" (Wsi.keyname
key)
5449 let linknavkeyboard key mask
linknav =
5450 let getpage pageno =
5451 let rec loop = function
5453 | l :: _ when l.pageno = pageno -> Some
l
5454 | _ :: rest
-> loop rest
5455 in loop state.layout
5457 let doexact (pageno, n) =
5458 match getopaque pageno, getpage pageno with
5459 | Some opaque
, Some
l ->
5460 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5462 let under = getlink opaque
n in
5463 G.postRedisplay "link gotounder";
5469 | 0xff50 -> (* home *)
5470 Some
(findlink opaque LDfirst
), -1
5472 | 0xff57 -> (* end *)
5473 Some
(findlink opaque LDlast
), 1
5475 | 0xff51 -> (* left *)
5476 Some
(findlink opaque
(LDleft
n)), -1
5478 | 0xff53 -> (* right *)
5479 Some
(findlink opaque
(LDright
n)), 1
5481 | 0xff52 -> (* up *)
5482 Some
(findlink opaque
(LDup
n)), -1
5484 | 0xff54 -> (* down *)
5485 Some
(findlink opaque
(LDdown
n)), 1
5490 begin match findpwl
l.pageno dir with
5494 state.mode <- LinkNav
(Ltgendir
dir);
5495 let y, h = getpageyh pageno in
5498 then y + h - state.winh
5503 begin match getopaque pageno, getpage pageno with
5504 | Some opaque
, Some
_ ->
5506 let ld = if dir > 0 then LDfirst
else LDlast
in
5509 begin match link with
5511 showlinktype (getlink opaque
m);
5512 state.mode <- LinkNav
(Ltexact
(pageno, m));
5513 G.postRedisplay "linknav jpage";
5520 begin match opt with
5521 | Some Lnotfound
-> pwl l dir;
5522 | Some
(Lfound
m) ->
5526 let _, y0, _, y1 = getlinkrect opaque
m in
5528 then gotopage1 l.pageno y0
5530 let d = fstate.fontsize
+ 1 in
5531 if y1 - l.pagey > l.pagevh - d
5532 then gotopage1 l.pageno (y1 - state.winh
- state.hscrollh + d)
5533 else G.postRedisplay "linknav";
5535 showlinktype (getlink opaque
m);
5536 state.mode <- LinkNav
(Ltexact
(l.pageno, m));
5539 | None
-> viewkeyboard key mask
5541 | _ -> viewkeyboard key mask
5546 G.postRedisplay "leave linknav"
5550 | Ltgendir
_ -> viewkeyboard key mask
5551 | Ltexact exact
-> doexact exact
5554 let keyboard key mask
=
5555 if (key = 103 && Wsi.withctrl mask
) && not
(istextentry state.mode)
5556 then wcmd "interrupt"
5557 else state.uioh <- state.uioh#
key key mask
5560 let birdseyekeyboard key mask
5561 ((oconf
, leftx
, pageno, hooverpageno
, anchor) as beye
) =
5563 match conf.columns
with
5565 | Cmulti
((c, _, _), _) -> c
5566 | Csplit
_ -> failwith
"bird's eye split mode"
5568 let pgh layout = List.fold_left
(fun m l -> max
l.pageh
m) state.winh
layout in
5570 | 108 when Wsi.withctrl mask
-> (* ctrl-l *)
5571 let y, h = getpageyh pageno in
5572 let top = (state.winh
- h) / 2 in
5573 gotoy (max
0 (y - top))
5574 | 0xff0d (* enter *)
5575 | 0xff8d -> leavebirdseye beye
false (* kp enter *)
5576 | 0xff1b -> leavebirdseye beye
true (* escape *)
5577 | 0xff52 -> upbirdseye incr beye
(* up *)
5578 | 0xff54 -> downbirdseye incr beye
(* down *)
5579 | 0xff51 -> upbirdseye 1 beye
(* left *)
5580 | 0xff53 -> downbirdseye 1 beye
(* right *)
5582 | 0xff55 -> (* prior *)
5583 begin match state.layout with
5587 state.mode <- Birdseye
(
5588 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5590 gotopage1 l.pageno 0;
5593 let layout = layout (state.y-state.winh
) (pgh state.layout) in
5595 | [] -> gotoy (clamp (-state.winh
))
5597 state.mode <- Birdseye
(
5598 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5600 gotopage1 l.pageno 0
5603 | [] -> gotoy (clamp (-state.winh
))
5606 | 0xff56 -> (* next *)
5607 begin match List.rev
state.layout with
5609 let layout = layout (state.y + (pgh state.layout)) state.winh
in
5610 begin match layout with
5612 let incr = l.pageh
- l.pagevh in
5617 oconf
, leftx
, state.pagecount
- 1, hooverpageno
, anchor
5619 G.postRedisplay "birdseye pagedown";
5621 else gotoy (clamp (incr + conf.interpagespace
*2));
5625 Birdseye
(oconf
, leftx
, l.pageno, hooverpageno
, anchor);
5626 gotopage1 l.pageno 0;
5629 | [] -> gotoy (clamp state.winh
)
5632 | 0xff50 -> (* home *)
5633 state.mode <- Birdseye
(oconf
, leftx
, 0, hooverpageno
, anchor);
5636 | 0xff57 -> (* end *)
5637 let pageno = state.pagecount
- 1 in
5638 state.mode <- Birdseye
(oconf
, leftx
, pageno, hooverpageno
, anchor);
5639 if not
(pagevisible state.layout pageno)
5642 match List.rev
state.pdims
with
5644 | (_, _, h, _) :: _ -> h
5646 gotoy (max
0 (getpagey pageno - (state.winh
- h - conf.interpagespace
)))
5647 else G.postRedisplay "birdseye end";
5648 | _ -> viewkeyboard key mask
5651 let drawpage l linkindexbase
=
5653 match state.mode with
5654 | Textentry
_ -> scalecolor 0.4
5656 | View
-> scalecolor 1.0
5657 | Birdseye
(_, _, pageno, hooverpageno
, _) ->
5658 if l.pageno = hooverpageno
5661 if l.pageno = pageno
5667 begin match getopaque l.pageno with
5669 if tileready l l.pagex
l.pagey
5671 let x = l.pagedispx - l.pagex
5672 and y = l.pagedispy - l.pagey in
5674 match conf.columns
with
5675 | Csingle
_ | Cmulti
_ ->
5676 (if conf.hlinks
then 1 else 0)
5678 && not
(isbirdseye state.mode) then 2 else 0)
5682 match state.mode with
5683 | Textentry
((_, s, _, _, _, _), _) when state.glinks
-> s
5686 postprocess opaque
hlmask x y (linkindexbase
, s, conf.hfsize
);
5693 let scrollindicator () =
5694 let sbw, ph
, sh = state.uioh#
scrollph in
5695 let sbh, pw, sw = state.uioh#scrollpw
in
5697 GlDraw.color (0.64, 0.64, 0.64);
5699 (float (state.winw
- sbw), 0.)
5700 (float state.winw
, float state.winh
)
5703 (0., float (state.winh
- sbh))
5704 (float (state.winw
- state.scrollw
- 1), float state.winh
)
5706 GlDraw.color (0.0, 0.0, 0.0);
5709 (float (state.winw
- sbw), ph
)
5710 (float state.winw
, ph
+. sh)
5713 (pw, float (state.winh
- sbh))
5714 (pw +. sw, float state.winh
)
5719 match state.mstate
with
5720 | Mnone
| Mscrolly
| Mscrollx
| Mpan
_ | Mzoom
_ | Mzoomrect
_ ->
5723 | Msel
((x0, y0), (x1, y1)) ->
5724 let rec loop = function
5726 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5727 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5728 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5729 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5731 match getopaque l.pageno with
5733 let x0, y0 = pagetranslatepoint l x0 y0 in
5734 let x1, y1 = pagetranslatepoint l x1 y1 in
5735 seltext opaque
(x0, y0, x1, y1);
5743 let showrects rects
=
5745 GlDraw.color (0.0, 0.0, 1.0) ~
alpha:0.5;
5746 GlDraw.polygon_mode `both `fill
;
5747 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5749 (fun (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) ->
5751 if l.pageno = pageno
5753 let dx = float (l.pagedispx - l.pagex
) in
5754 let dy = float (l.pagedispy - l.pagey) in
5755 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~
alpha:0.5;
5756 GlDraw.begins `quads
;
5758 GlDraw.vertex2
(x0+.dx, y0+.dy);
5759 GlDraw.vertex2
(x1+.dx, y1+.dy);
5760 GlDraw.vertex2
(x2
+.dx, y2
+.dy);
5761 GlDraw.vertex2
(x3
+.dx, y3
+.dy);
5772 GlClear.color (scalecolor2 conf.bgcolor
);
5773 GlClear.clear
[`
color];
5774 let rec loop linkindexbase
= function
5776 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5777 loop linkindexbase rest
5780 loop 0 state.layout;
5782 match state.mode with
5783 | LinkNav
(Ltexact
(pageno, linkno
)) ->
5784 begin match getopaque pageno with
5786 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
5793 | None
-> state.rects
5800 begin match state.mstate
with
5801 | Mzoomrect
((x0, y0), (x1, y1)) ->
5803 GlDraw.color (0.3, 0.3, 0.3) ~
alpha:0.5;
5804 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5805 GlDraw.rect (float x0, float y0)
5806 (float x1, float y1);
5815 let zoomrect x y x1 y1 =
5818 and y0 = min
y y1 in
5819 gotoy (state.y + y0);
5820 state.anchor <- getanchor ();
5821 let zoom = (float state.winw
*. conf.zoom) /. float (x1 - x0) in
5823 if state.w < state.winw
- state.scrollw
5824 then (state.winw
- state.scrollw
- state.w) / 2
5827 state.x <- (state.x + margin) - x0;
5829 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5830 state.mstate
<- Mnone
;
5834 let winw = state.winw - state.scrollw
- 1 in
5835 let s = float x /. float winw in
5836 let destx = truncate
(float (state.w + winw) *. s) in
5837 state.x <- winw - destx;
5838 gotoy_and_clear_text state.y;
5839 state.mstate
<- Mscrollx
;
5843 let s = float y /. float state.winh
in
5844 let desty = truncate
(float (state.maxy - state.winh
) *. s) in
5845 gotoy_and_clear_text desty;
5846 state.mstate
<- Mscrolly
;
5849 let viewmouse button down
x y mask
=
5851 | n when (n == 4 || n == 5) && not down
->
5852 if Wsi.withctrl mask
5854 match state.mstate
with
5855 | Mzoom
(oldn
, i
) ->
5863 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5865 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5867 let zoom = conf.zoom -. incr in
5869 state.mstate
<- Mzoom
(n, 0);
5871 state.mstate
<- Mzoom
(n, i
+1);
5873 else state.mstate
<- Mzoom
(n, 0)
5875 | _ -> state.mstate
<- Mzoom
(n, 0)
5878 match state.autoscroll
with
5879 | Some step
-> setautoscrollspeed step
(n=4)
5881 if conf.wheelbypage
|| conf.presentation
5890 then -conf.scrollstep
5891 else conf.scrollstep
5893 let incr = incr * 2 in
5894 let y = clamp incr in
5895 gotoy_and_clear_text y
5898 | n when (n = 6 || n = 7) && not down
&& canpan () ->
5899 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep
;
5900 gotoy_and_clear_text state.y
5902 | 1 when Wsi.withshift mask
->
5903 state.mstate
<- Mnone
;
5906 match unproject x y with
5907 | Some
(pageno, ux
, uy
) ->
5908 let cmd = Printf.sprintf
5910 conf.stcmd
state.path pageno ux uy
5916 | 1 when Wsi.withctrl mask
->
5919 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5920 state.mstate
<- Mpan
(x, y)
5923 state.mstate
<- Mnone
5928 Wsi.setcursor
Wsi.CURSOR_CYCLE
;
5930 state.mstate
<- Mzoomrect
(p, p)
5933 match state.mstate
with
5934 | Mzoomrect
((x0, y0), _) ->
5935 if abs
(x-x0) > 10 && abs
(y - y0) > 10
5936 then zoomrect x0 y0 x y
5938 state.mstate
<- Mnone
;
5939 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5940 G.postRedisplay "kill accidental zoom rect";
5943 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5944 state.mstate
<- Mnone
5947 | 1 when x > state.winw - state.scrollw
->
5950 let _, position, sh = state.uioh#
scrollph in
5951 if y > truncate
position && y < truncate
(position +. sh)
5952 then state.mstate
<- Mscrolly
5955 state.mstate
<- Mnone
5957 | 1 when y > state.winh
- state.hscrollh ->
5960 let _, position, sw = state.uioh#scrollpw
in
5961 if x > truncate
position && x < truncate
(position +. sw)
5962 then state.mstate
<- Mscrollx
5965 state.mstate
<- Mnone
5968 let dest = if down
then getunder x y else Unone
in
5969 begin match dest with
5973 | Uunexpected
_ | Ulaunch
_ | Unamed
_ ->
5976 | Unone
when down
->
5977 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5978 state.mstate
<- Mpan
(x, y);
5980 | Unone
| Utext
_ ->
5983 if conf.angle
mod 360 = 0
5985 state.mstate
<- Msel
((x, y), (x, y));
5986 G.postRedisplay "mouse select";
5990 match state.mstate
with
5993 | Mzoom
_ | Mscrollx
| Mscrolly
->
5994 state.mstate
<- Mnone
5996 | Mzoomrect
((x0, y0), _) ->
6000 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
6001 state.mstate
<- Mnone
6003 | Msel
((x0, y0), (x1, y1)) ->
6004 let rec loop = function
6008 let a0 = l.pagedispy in
6009 let a1 = a0 + l.pagevh in
6010 let b0 = l.pagedispx in
6011 let b1 = b0 + l.pagevw in
6012 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6013 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6017 match getopaque l.pageno with
6020 match Ne.pipe () with
6024 "can not create sel pipe: %s"
6027 let doclose what fd
=
6028 Ne.clo fd
(fun msg
->
6029 dolog
"%s close failed: %s" what msg
)
6032 popen conf.selcmd
[r, 0; w, -1];
6035 G.postRedisplay "copysel";
6037 dolog
"can not execute %S: %s"
6038 conf.selcmd
(exntos exn
);
6046 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
6047 state.mstate
<- Mnone
;
6054 let birdseyemouse button down
x y mask
6055 (conf, leftx
, _, hooverpageno
, anchor) =
6058 let rec loop = function
6061 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6062 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6064 leavebirdseye (conf, leftx
, l.pageno, hooverpageno
, anchor) false;
6070 | _ -> viewmouse button down
x y mask
6073 let mouse button down
x y mask
=
6074 state.uioh <- state.uioh#button button down
x y mask
;
6078 state.uioh <- state.uioh#
motion x y
6082 state.uioh <- state.uioh#
pmotion x y;
6088 method key key mask
=
6089 begin match state.mode with
6090 | Textentry
textentry -> textentrykeyboard key mask
textentry
6091 | Birdseye
birdseye -> birdseyekeyboard key mask
birdseye
6092 | View
-> viewkeyboard key mask
6093 | LinkNav
linknav -> linknavkeyboard key mask
linknav
6097 method button button bstate
x y mask
=
6098 begin match state.mode with
6100 | View
-> viewmouse button bstate
x y mask
6101 | Birdseye beye
-> birdseyemouse button bstate
x y mask beye
6107 begin match state.mode with
6109 | View
| Birdseye
_ | LinkNav
_ ->
6110 match state.mstate
with
6111 | Mzoom
_ | Mnone
-> ()
6116 state.mstate
<- Mpan
(x, y);
6118 then state.x <- state.x + dx;
6120 gotoy_and_clear_text y
6123 state.mstate
<- Msel
(a, (x, y));
6124 G.postRedisplay "motion select";
6127 let y = min
state.winh
(max
0 y) in
6131 let x = min
state.winw (max
0 x) in
6134 | Mzoomrect
(p0
, _) ->
6135 state.mstate
<- Mzoomrect
(p0
, (x, y));
6136 G.postRedisplay "motion zoomrect";
6140 method pmotion x y =
6141 begin match state.mode with
6142 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor) ->
6143 let rec loop = function
6145 if hooverpageno
!= -1
6147 state.mode <- Birdseye
(conf, leftx
, pageno, -1, anchor);
6148 G.postRedisplay "pmotion birdseye no hoover";
6151 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6152 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6154 state.mode <- Birdseye
(conf, leftx
, pageno, l.pageno, anchor);
6155 G.postRedisplay "pmotion birdseye hoover";
6165 match state.mstate
with
6166 | Mnone
-> updateunder x y
6167 | Mpan
_ | Msel
_ | Mzoom
_ | Mscrolly
| Mscrollx
| Mzoomrect
_ ->
6172 method infochanged
_ = ()
6175 let maxy = state.maxy - (if conf.maxhfit
then state.winh
else 0) in
6176 let p, h = scrollph state.y maxy in
6180 let winw = state.winw - state.scrollw
- 1 in
6181 let fwinw = float winw in
6183 let sw = fwinw /. float state.w in
6184 let sw = fwinw *. sw in
6185 max
sw (float conf.scrollh
)
6188 let f = state.w+winw in
6189 let r = float (winw-state.x) /. float f in
6190 let p = fwinw *. r in
6194 if position +. sw > fwinw
6195 then fwinw -. position
6198 state.hscrollh, position, sw
6202 match state.mode with
6203 | LinkNav
_ -> "links"
6204 | Textentry
_ -> "textentry"
6205 | Birdseye
_ -> "birdseye"
6208 findkeyhash conf modename
6210 method eformsgs
= true
6217 let fontpath = ref "";;
6220 Map.Make
(struct type t
= (int * int) let compare = compare end);;
6223 let l = String.length
s in
6224 let b = Buffer.create
l in
6230 try Sys.getenv
"HOME"
6233 ("Can not determine home directory location: " ^ exntos exn
);
6237 let modifier_of_string = function
6238 | "alt" -> Wsi.altmask
6239 | "shift" -> Wsi.shiftmask
6240 | "ctrl" | "control" -> Wsi.ctrlmask
6241 | "meta" -> Wsi.metamask
6246 let r = Str.regexp
"-" in
6248 let elems = Str.full_split
r s in
6251 let m1 = modifier_of_string s in
6253 then (Wsi.namekey
s, m)
6256 | Str.Delim
s when n land 1 = 0 -> g s
6258 | Str.Delim
_ -> (k
, m)
6260 let rec loop n k
m = function
6263 let k, m = f n k m x in
6269 let keys_of_string =
6270 let r = Str.regexp
"[ \t]" in
6272 let elems = Str.split
r s in
6273 List.map
key_of_string elems
6276 let copykeyhashes c =
6277 List.map
(fun (k, v) -> k, Hashtbl.copy
v) c.keyhashes
;
6280 let config_of c attrs
=
6284 | "scroll-bar-width" -> { c with scrollbw
= max
0 (int_of_string
v) }
6285 | "scroll-handle-height" -> { c with scrollh
= max
0 (int_of_string
v) }
6286 | "case-insensitive-search" -> { c with icase
= bool_of_string
v }
6287 | "preload" -> { c with preload = bool_of_string
v }
6288 | "page-bias" -> { c with pagebias
= int_of_string
v }
6289 | "scroll-step" -> { c with scrollstep
= max
1 (int_of_string
v) }
6290 | "horizontal-scroll-step" ->
6291 { c with hscrollstep
= max
(int_of_string
v) 1 }
6292 | "auto-scroll-step" ->
6293 { c with autoscrollstep
= max
0 (int_of_string
v) }
6294 | "max-height-fit" -> { c with maxhfit
= bool_of_string
v }
6295 | "crop-hack" -> { c with crophack
= bool_of_string
v }
6298 match String.lowercase
v with
6299 | "true" -> Some infinity
6301 | f -> Some
(float_of_string
f)
6303 { c with maxwait
= mw}
6304 | "highlight-links" -> { c with hlinks
= bool_of_string
v }
6305 | "under-cursor-info" -> { c with underinfo
= bool_of_string
v }
6306 | "vertical-margin" ->
6307 { c with interpagespace
= max
0 (int_of_string
v) }
6309 let zoom = float_of_string
v /. 100. in
6310 let zoom = max
zoom 0.0 in
6311 { c with zoom = zoom }
6312 | "presentation" -> { c with presentation
= bool_of_string
v }
6313 | "rotation-angle" -> { c with angle
= int_of_string
v }
6314 | "width" -> { c with cwinw
= max
20 (int_of_string
v) }
6315 | "height" -> { c with cwinh
= max
20 (int_of_string
v) }
6316 | "persistent-bookmarks" -> { c with savebmarks
= bool_of_string
v }
6317 | "proportional-display" ->
6320 then FitProportional
6323 { c with fitmodel
= fm }
6324 | "fit-model" -> { c with fitmodel
= fitmodel_of_string v }
6325 | "pixmap-cache-size" ->
6326 { c with memlimit
= max
2 (int_of_string_with_suffix v) }
6327 | "tex-count" -> { c with texcount
= max
1 (int_of_string
v) }
6328 | "slice-height" -> { c with sliceheight
= max
2 (int_of_string
v) }
6329 | "thumbnail-width" -> { c with thumbw
= max
2 (int_of_string
v) }
6330 | "persistent-location" -> { c with jumpback
= bool_of_string
v }
6331 | "background-color" -> { c with bgcolor
= color_of_string v }
6332 | "scrollbar-in-presentation" ->
6333 { c with scrollbarinpm
= bool_of_string
v }
6334 | "tile-width" -> { c with tilew
= max
2 (int_of_string
v) }
6335 | "tile-height" -> { c with tileh
= max
2 (int_of_string
v) }
6336 | "mupdf-store-size" ->
6337 { c with mustoresize
= max
1024 (int_of_string_with_suffix v) }
6338 | "checkers" -> { c with checkers
= bool_of_string
v }
6339 | "aalevel" -> { c with aalevel
= max
0 (int_of_string
v) }
6340 | "trim-margins" -> { c with trimmargins
= bool_of_string
v }
6341 | "trim-fuzz" -> { c with trimfuzz
= irect_of_string v }
6342 | "uri-launcher" -> { c with urilauncher
= unent v }
6343 | "path-launcher" -> { c with pathlauncher
= unent v }
6344 | "color-space" -> { c with colorspace
= colorspace_of_string v }
6345 | "invert-colors" -> { c with invert
= bool_of_string
v }
6346 | "brightness" -> { c with colorscale
= float_of_string
v }
6347 | "redirectstderr" -> { c with redirectstderr = bool_of_string
v }
6349 { c with ghyllscroll
= Some
(ghyllscroll_of_string v) }
6351 let (n, _, _) as nab
= multicolumns_of_string v in
6353 then { c with columns
= Csplit
(-n, [||]) }
6354 else { c with columns
= Cmulti
(nab
, [||]) }
6355 | "birds-eye-columns" ->
6356 { c with beyecolumns
= Some
(max
(int_of_string
v) 2) }
6357 | "selection-command" -> { c with selcmd
= unent v }
6358 | "synctex-command" -> { c with stcmd
= unent v }
6359 | "update-cursor" -> { c with updatecurs
= bool_of_string
v }
6360 | "hint-font-size" -> { c with hfsize
= bound (int_of_string
v) 5 100 }
6361 | "page-scroll-scale" -> { c with pgscale = float_of_string
v }
6362 | "use-pbo" -> { c with usepbo
= bool_of_string
v }
6363 | "wheel-scrolls-pages" -> { c with wheelbypage
= bool_of_string
v }
6366 prerr_endline
("Error processing attribute (`" ^
6367 k ^
"'=`" ^
v ^
"'): " ^ exntos exn
);
6370 let rec fold c = function
6373 let c = apply c k v in
6376 fold { c with keyhashes
= copykeyhashes c } attrs
;
6379 let fromstring f pos
n v d =
6382 dolog
"Error processing attribute (%S=%S) at %d\n%s"
6383 n v pos
(exntos exn
)
6388 let bookmark_of attrs
=
6389 let rec fold title page
rely visy
= function
6390 | ("title", v) :: rest
-> fold v page
rely visy rest
6391 | ("page", v) :: rest
-> fold title v rely visy rest
6392 | ("rely", v) :: rest
-> fold title page
v visy rest
6393 | ("visy", v) :: rest
-> fold title page
rely v rest
6394 | _ :: rest
-> fold title page
rely visy rest
6395 | [] -> title, page
, rely, visy
6397 fold "invalid" "0" "0" "0" attrs
6401 let rec fold path page
rely pan visy
= function
6402 | ("path", v) :: rest
-> fold v page
rely pan visy rest
6403 | ("page", v) :: rest
-> fold path v rely pan visy rest
6404 | ("rely", v) :: rest
-> fold path page
v pan visy rest
6405 | ("pan", v) :: rest
-> fold path page
rely v visy rest
6406 | ("visy", v) :: rest
-> fold path page
rely pan
v rest
6407 | _ :: rest
-> fold path page
rely pan visy rest
6408 | [] -> path, page
, rely, pan
, visy
6410 fold "" "0" "0" "0" "0" attrs
6414 let rec fold rs ls
= function
6415 | ("out", v) :: rest
-> fold v ls rest
6416 | ("in", v) :: rest
-> fold rs
v rest
6417 | _ :: rest
-> fold ls rs rest
6423 let setconf dst
src =
6424 dst
.scrollbw
<- src.scrollbw
;
6425 dst
.scrollh
<- src.scrollh
;
6426 dst
.icase
<- src.icase
;
6427 dst
.preload <- src.preload;
6428 dst
.pagebias
<- src.pagebias
;
6429 dst
.verbose
<- src.verbose
;
6430 dst
.scrollstep
<- src.scrollstep
;
6431 dst
.maxhfit
<- src.maxhfit
;
6432 dst
.crophack
<- src.crophack
;
6433 dst
.autoscrollstep
<- src.autoscrollstep
;
6434 dst
.maxwait
<- src.maxwait
;
6435 dst
.hlinks
<- src.hlinks
;
6436 dst
.underinfo
<- src.underinfo
;
6437 dst
.interpagespace
<- src.interpagespace
;
6438 dst
.zoom <- src.zoom;
6439 dst
.presentation
<- src.presentation
;
6440 dst
.angle
<- src.angle
;
6441 dst
.cwinw
<- src.cwinw
;
6442 dst
.cwinh
<- src.cwinh
;
6443 dst
.savebmarks
<- src.savebmarks
;
6444 dst
.memlimit
<- src.memlimit
;
6445 dst
.fitmodel
<- src.fitmodel
;
6446 dst
.texcount
<- src.texcount
;
6447 dst
.sliceheight
<- src.sliceheight
;
6448 dst
.thumbw
<- src.thumbw
;
6449 dst
.jumpback
<- src.jumpback
;
6450 dst
.bgcolor
<- src.bgcolor
;
6451 dst
.scrollbarinpm
<- src.scrollbarinpm
;
6452 dst
.tilew
<- src.tilew
;
6453 dst
.tileh
<- src.tileh
;
6454 dst
.mustoresize
<- src.mustoresize
;
6455 dst
.checkers
<- src.checkers
;
6456 dst
.aalevel
<- src.aalevel
;
6457 dst
.trimmargins
<- src.trimmargins
;
6458 dst
.trimfuzz
<- src.trimfuzz
;
6459 dst
.urilauncher
<- src.urilauncher
;
6460 dst
.colorspace
<- src.colorspace
;
6461 dst
.invert
<- src.invert
;
6462 dst
.colorscale
<- src.colorscale
;
6463 dst
.redirectstderr <- src.redirectstderr;
6464 dst
.ghyllscroll
<- src.ghyllscroll
;
6465 dst
.columns
<- src.columns
;
6466 dst
.beyecolumns
<- src.beyecolumns
;
6467 dst
.selcmd
<- src.selcmd
;
6468 dst
.updatecurs
<- src.updatecurs
;
6469 dst
.pathlauncher
<- src.pathlauncher
;
6470 dst
.keyhashes
<- copykeyhashes src;
6471 dst
.hfsize
<- src.hfsize
;
6472 dst
.hscrollstep
<- src.hscrollstep
;
6473 dst
.pgscale <- src.pgscale;
6474 dst
.usepbo
<- src.usepbo
;
6475 dst
.wheelbypage
<- src.wheelbypage
;
6476 dst
.stcmd
<- src.stcmd
;
6480 let h = Hashtbl.create
10 in
6481 let dc = { defconf with angle
= defconf.angle
} in
6482 let rec toplevel v t spos
_ =
6484 | Vdata
| Vcdata
| Vend
-> v
6485 | Vopen
("llppconfig", _, closed
) ->
6488 else { v with f = llppconfig
}
6490 error
"unexpected subelement at top level" s spos
6491 | Vclose
_ -> error
"unexpected close at top level" s spos
6493 and llppconfig
v t spos
_ =
6495 | Vdata
| Vcdata
-> v
6496 | Vend
-> error
"unexpected end of input in llppconfig" s spos
6497 | Vopen
("defaults", attrs
, closed
) ->
6498 let c = config_of dc attrs
in
6502 else { v with f = defaults
}
6504 | Vopen
("ui-font", attrs
, closed
) ->
6505 let rec getsize size
= function
6507 | ("size", v) :: rest
->
6509 fromstring int_of_string spos
"size" v fstate.fontsize
in
6511 | l -> getsize size l
6513 fstate.fontsize
<- getsize fstate.fontsize attrs
;
6516 else { v with f = uifont
(Buffer.create
10) }
6518 | Vopen
("doc", attrs
, closed
) ->
6519 let pathent, spage
, srely
, span
, svisy
= doc_of attrs
in
6520 let path = unent pathent
6521 and pageno = fromstring int_of_string spos
"page" spage
0
6522 and rely = fromstring float_of_string spos
"rely" srely
0.0
6523 and pan
= fromstring int_of_string spos
"pan" span
0
6524 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6525 let c = config_of dc attrs
in
6526 let anchor = (pageno, rely, visy
) in
6528 then (Hashtbl.add
h path (c, [], pan
, anchor); v)
6529 else { v with f = doc
path pan
anchor c [] }
6532 error
"unexpected subelement in llppconfig" s spos
6534 | Vclose
"llppconfig" -> { v with f = toplevel }
6535 | Vclose
_ -> error
"unexpected close in llppconfig" s spos
6537 and defaults
v t spos
_ =
6539 | Vdata
| Vcdata
-> v
6540 | Vend
-> error
"unexpected end of input in defaults" s spos
6541 | Vopen
("keymap", attrs
, closed
) ->
6543 try List.assoc
"mode" attrs
6544 with Not_found
-> "global" in
6549 let h = findkeyhash dc modename in
6550 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6553 { v with f = pkeymap
ret KeyMap.empty }
6555 | Vopen
(_, _, _) ->
6556 error
"unexpected subelement in defaults" s spos
6558 | Vclose
"defaults" ->
6559 { v with f = llppconfig
}
6561 | Vclose
_ -> error
"unexpected close in defaults" s spos
6563 and uifont
b v t spos
epos =
6566 Buffer.add_substring
b s spos
(epos - spos
);
6568 | Vopen
(_, _, _) ->
6569 error
"unexpected subelement in ui-font" s spos
6570 | Vclose
"ui-font" ->
6571 if String.length
!fontpath = 0
6572 then fontpath := Buffer.contents
b;
6573 { v with f = llppconfig
}
6574 | Vclose
_ -> error
"unexpected close in ui-font" s spos
6575 | Vend
-> error
"unexpected end of input in ui-font" s spos
6577 and doc
path pan
anchor c bookmarks
v t spos
_ =
6579 | Vdata
| Vcdata
-> v
6580 | Vend
-> error
"unexpected end of input in doc" s spos
6581 | Vopen
("bookmarks", _, closed
) ->
6584 else { v with f = pbookmarks
path pan
anchor c bookmarks
}
6586 | Vopen
("keymap", attrs
, closed
) ->
6588 try List.assoc
"mode" attrs
6589 with Not_found
-> "global"
6595 let h = findkeyhash c modename in
6596 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6597 doc
path pan
anchor c bookmarks
6599 { v with f = pkeymap
ret KeyMap.empty }
6601 | Vopen
(_, _, _) ->
6602 error
"unexpected subelement in doc" s spos
6605 Hashtbl.add
h path (c, List.rev bookmarks
, pan
, anchor);
6606 { v with f = llppconfig
}
6608 | Vclose
_ -> error
"unexpected close in doc" s spos
6610 and pkeymap
ret keymap
v t spos
_ =
6612 | Vdata
| Vcdata
-> v
6613 | Vend
-> error
"unexpected end of input in keymap" s spos
6614 | Vopen
("map", attrs
, closed
) ->
6615 let r, l = map_of attrs
in
6616 let kss = fromstring keys_of_string spos
"in" r [] in
6617 let lss = fromstring keys_of_string spos
"out" l [] in
6621 | ks
:: [] -> KeyMap.add ks
(KMinsrl
lss) keymap
6622 | ks
:: rest
-> KeyMap.add ks
(KMmulti
(rest
, lss)) keymap
6625 then { v with f = pkeymap
ret keymap }
6628 { v with f = skip
"map" f }
6631 error
"unexpected subelement in keymap" s spos
6633 | Vclose
"keymap" ->
6634 { v with f = ret keymap }
6636 | Vclose
_ -> error
"unexpected close in keymap" s spos
6638 and pbookmarks
path pan
anchor c bookmarks
v t spos
_ =
6640 | Vdata
| Vcdata
-> v
6641 | Vend
-> error
"unexpected end of input in bookmarks" s spos
6642 | Vopen
("item", attrs
, closed
) ->
6643 let titleent, spage
, srely
, svisy
= bookmark_of attrs
in
6644 let page = fromstring int_of_string spos
"page" spage
0
6645 and rely = fromstring float_of_string spos
"rely" srely
0.0
6646 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6648 (unent titleent, 0, (page, rely, visy
)) :: bookmarks
6651 then { v with f = pbookmarks
path pan
anchor c bookmarks }
6654 { v with f = skip
"item" f }
6657 error
"unexpected subelement in bookmarks" s spos
6659 | Vclose
"bookmarks" ->
6660 { v with f = doc
path pan
anchor c bookmarks }
6662 | Vclose
_ -> error
"unexpected close in bookmarks" s spos
6664 and skip tag
f v t spos
_ =
6666 | Vdata
| Vcdata
-> v
6668 error
("unexpected end of input in skipped " ^ tag
) s spos
6669 | Vopen
(tag'
, _, closed
) ->
6673 let f'
() = { v with f = skip tag
f } in
6674 { v with f = skip tag'
f'
}
6678 else error
("unexpected close in skipped " ^ tag
) s spos
6681 parse
{ f = toplevel; accu = () } s;
6687 let len = in_channel_length ic
in
6688 let s = String.create
len in
6689 really_input ic
s 0 len;
6692 | Parse_error
(msg
, s, pos
) ->
6693 let subs = subs s pos
in
6694 let s = Printf.sprintf
"%s: at %d [..%s..]" msg pos
subs in
6695 failwith
("parse error: " ^
s)
6698 failwith
("config load error: " ^ exntos exn
)
6704 let dir = Filename.concat
home ".config" in
6705 if Sys.is_directory
dir then dir else home
6708 Filename.concat
dir "llpp.conf"
6711 let confpath = ref defconfpath;;
6714 if Sys.file_exists
!confpath
6717 (try Some
(open_in_bin
!confpath)
6720 ("Error opening configuration file `" ^
!confpath ^
"': " ^
6731 ("Error loading configuration from `" ^
!confpath ^
"': " ^
6740 f (Hashtbl.create
0, defconf)
6745 let pc, pb
, px, pa
=
6747 Hashtbl.find h (Filename.basename
state.path)
6748 with Not_found
-> dc, [], 0, emptyanchor
6752 state.bookmarks <- pb
;
6754 state.scrollw
<- conf.scrollbw
;
6756 then state.anchor <- pa
;
6757 cbput state.hists
.nav pa
;
6763 let add_attrs bb always
dc c =
6766 then Printf.bprintf bb
"\n %s='%b'" s a
6769 then Printf.bprintf bb
"\n %s='%d'" s a
6772 then Printf.bprintf bb
"\n %s='%s'" s (string_with_suffix_of_int a)
6775 then Printf.bprintf bb
"\n %s='%g'" s (a*.100.)
6778 then Printf.bprintf bb
"\n %s='%f'" s a
6782 Printf.bprintf bb
"\n %s='%s'" s (color_to_string a)
6786 Printf.bprintf bb
"\n %s='%s'" s (colorspace_to_string a)
6790 Printf.bprintf bb
"\n %s='%s'" s (irect_to_string a)
6794 Printf.bprintf bb
"\n %s='%s'" s (enent
a 0 (String.length
a))
6800 | Some
(_N
, _A
, _B
) ->
6801 Printf.bprintf bb
"\n %s='%u,%u,%u'" s _N _A _B
6811 else string_of_float
f
6813 Printf.bprintf bb
"\n %s='%s'" s v
6818 | Cmulti
((n, a, b), _) when n > 1 ->
6819 Printf.bprintf bb
"\n %s='%d,%d,%d'" s n a b
6820 | Csplit
(n, _) when n > 1 ->
6821 Printf.bprintf bb
"\n %s='%d'" s ~
-n
6827 | Some
c when c > 1 -> Printf.bprintf bb
"\n %s='%d'" s c
6832 Printf.bprintf bb
"\n %s='%s'" s (fitmodel_to_string a)
6834 oi
"width" c.cwinw
dc.cwinw
;
6835 oi
"height" c.cwinh
dc.cwinh
;
6836 oi
"scroll-bar-width" c.scrollbw
dc.scrollbw
;
6837 oi
"scroll-handle-height" c.scrollh
dc.scrollh
;
6838 ob "case-insensitive-search" c.icase
dc.icase
;
6839 ob "preload" c.preload dc.preload;
6840 oi
"page-bias" c.pagebias
dc.pagebias
;
6841 oi
"scroll-step" c.scrollstep
dc.scrollstep
;
6842 oi
"auto-scroll-step" c.autoscrollstep
dc.autoscrollstep
;
6843 ob "max-height-fit" c.maxhfit
dc.maxhfit
;
6844 ob "crop-hack" c.crophack
dc.crophack
;
6845 oW
"throttle" c.maxwait
dc.maxwait
;
6846 ob "highlight-links" c.hlinks
dc.hlinks
;
6847 ob "under-cursor-info" c.underinfo
dc.underinfo
;
6848 oi
"vertical-margin" c.interpagespace
dc.interpagespace
;
6849 oz
"zoom" c.zoom dc.zoom;
6850 ob "presentation" c.presentation
dc.presentation
;
6851 oi
"rotation-angle" c.angle
dc.angle
;
6852 ob "persistent-bookmarks" c.savebmarks
dc.savebmarks
;
6853 oFm
"fit-model" c.fitmodel
dc.fitmodel
;
6854 oI
"pixmap-cache-size" c.memlimit
dc.memlimit
;
6855 oi
"tex-count" c.texcount
dc.texcount
;
6856 oi
"slice-height" c.sliceheight
dc.sliceheight
;
6857 oi
"thumbnail-width" c.thumbw
dc.thumbw
;
6858 ob "persistent-location" c.jumpback
dc.jumpback
;
6859 oc
"background-color" c.bgcolor
dc.bgcolor
;
6860 ob "scrollbar-in-presentation" c.scrollbarinpm
dc.scrollbarinpm
;
6861 oi
"tile-width" c.tilew
dc.tilew
;
6862 oi
"tile-height" c.tileh
dc.tileh
;
6863 oI
"mupdf-store-size" c.mustoresize
dc.mustoresize
;
6864 ob "checkers" c.checkers
dc.checkers
;
6865 oi
"aalevel" c.aalevel
dc.aalevel
;
6866 ob "trim-margins" c.trimmargins
dc.trimmargins
;
6867 oR
"trim-fuzz" c.trimfuzz
dc.trimfuzz
;
6868 os
"uri-launcher" c.urilauncher
dc.urilauncher
;
6869 os
"path-launcher" c.pathlauncher
dc.pathlauncher
;
6870 oC
"color-space" c.colorspace
dc.colorspace
;
6871 ob "invert-colors" c.invert
dc.invert
;
6872 oF
"brightness" c.colorscale
dc.colorscale
;
6873 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6874 og
"ghyllscroll" c.ghyllscroll
dc.ghyllscroll
;
6875 oco
"columns" c.columns
dc.columns
;
6876 obeco
"birds-eye-columns" c.beyecolumns
dc.beyecolumns
;
6877 os
"selection-command" c.selcmd
dc.selcmd
;
6878 os
"synctex-command" c.stcmd
dc.stcmd
;
6879 ob "update-cursor" c.updatecurs
dc.updatecurs
;
6880 oi
"hint-font-size" c.hfsize
dc.hfsize
;
6881 oi
"horizontal-scroll-step" c.hscrollstep
dc.hscrollstep
;
6882 oF
"page-scroll-scale" c.pgscale dc.pgscale;
6883 ob "use-pbo" c.usepbo
dc.usepbo
;
6884 ob "wheel-scrolls-pages" c.wheelbypage
dc.wheelbypage
;
6887 let keymapsbuf always
dc c =
6888 let bb = Buffer.create
16 in
6889 let rec loop = function
6891 | (modename, h) :: rest
->
6892 let dh = findkeyhash dc modename in
6893 if always
|| h <> dh
6895 if Hashtbl.length
h > 0
6897 if Buffer.length
bb > 0
6898 then Buffer.add_char
bb '
\n'
;
6899 Printf.bprintf
bb "<keymap mode='%s'>\n" modename;
6900 Hashtbl.iter
(fun i
o ->
6901 let isdifferent = always
||
6903 let dO = Hashtbl.find dh i
in
6905 with Not_found
-> true
6910 if Wsi.withctrl
m then Buffer.add_string
bb "ctrl-";
6911 if Wsi.withalt
m then Buffer.add_string
bb "alt-";
6912 if Wsi.withshift
m then Buffer.add_string
bb "shift-";
6913 if Wsi.withmeta
m then Buffer.add_string
bb "meta-";
6914 Buffer.add_string
bb (Wsi.keyname
k);
6917 let rec loop = function
6919 | km
:: [] -> addkm km
6920 | km
:: rest
-> addkm km
; Buffer.add_char
bb ' '
; loop rest
6924 Buffer.add_string
bb "<map in='";
6928 Buffer.add_string
bb "' out='";
6930 Buffer.add_string
bb "'/>\n"
6933 Buffer.add_string
bb "' out='";
6935 Buffer.add_string
bb "'/>\n"
6937 | KMmulti
(ins, kms
) ->
6938 Buffer.add_char
bb ' '
;
6940 Buffer.add_string
bb "' out='";
6942 Buffer.add_string
bb "'/>\n"
6944 Buffer.add_string
bb "</keymap>";
6954 let uifontsize = fstate.fontsize
in
6955 let bb = Buffer.create
32768 in
6960 | Wsi.Fullscreen
-> (conf.cwinw
, conf.cwinh
)
6961 | Wsi.MaxVert
-> (w, conf.cwinh
)
6962 | Wsi.MaxHorz
-> (conf.cwinw
, h)
6964 (state.winw, state.winh
) state.winstate
6969 let dc = if conf.bedefault
then conf else dc in
6970 Buffer.add_string
bb "<llppconfig>\n";
6972 if String.length
!fontpath > 0
6974 Printf.bprintf
bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6980 Printf.bprintf
bb "<ui-font size='%d'/>\n" uifontsize
6983 Buffer.add_string
bb "<defaults ";
6984 add_attrs bb true dc dc;
6985 let kb = keymapsbuf true dc dc in
6986 if Buffer.length
kb > 0
6988 Buffer.add_string
bb ">\n";
6989 Buffer.add_buffer
bb kb;
6990 Buffer.add_string
bb "\n</defaults>\n";
6992 else Buffer.add_string
bb "/>\n";
6994 let adddoc path pan
anchor c bookmarks =
6995 if bookmarks == [] && c = dc && anchor = emptyanchor
6998 Printf.bprintf
bb "<doc path='%s'"
6999 (enent
path 0 (String.length
path));
7001 if anchor <> emptyanchor
7003 let n, rely, visy
= anchor in
7004 Printf.bprintf
bb " page='%d'" n;
7007 Printf.bprintf
bb " rely='%f'" rely
7009 if abs_float visy
> 1e-6
7011 Printf.bprintf
bb " visy='%f'" visy
7016 then Printf.bprintf
bb " pan='%d'" pan
;
7018 add_attrs bb false dc c;
7019 let kb = keymapsbuf false dc c in
7021 begin match bookmarks with
7023 if Buffer.length
kb > 0
7025 Buffer.add_string
bb ">\n";
7026 Buffer.add_buffer
bb kb;
7027 Buffer.add_string
bb "\n</doc>\n";
7029 else Buffer.add_string
bb "/>\n"
7031 Buffer.add_string
bb ">\n<bookmarks>\n";
7032 List.iter
(fun (title, _level
, (page, rely, visy
)) ->
7034 "<item title='%s' page='%d'"
7035 (enent
title 0 (String.length
title))
7040 Printf.bprintf
bb " rely='%f'" rely
7042 if abs_float visy
> 1e-6
7044 Printf.bprintf
bb " visy='%f'" visy
7046 Buffer.add_string
bb "/>\n";
7048 Buffer.add_string
bb "</bookmarks>";
7049 if Buffer.length
kb > 0
7051 Buffer.add_string
bb "\n";
7052 Buffer.add_buffer
bb kb;
7054 Buffer.add_string
bb "\n</doc>\n";
7060 match state.mode with
7061 | Birdseye
(c, pan, _, _, _) ->
7063 match conf.columns
with
7064 | Cmulti
((c, _, _), _) -> Some
c
7068 match c.columns
with
7069 | Cmulti
(c, _) -> Cmulti
(c, [||])
7070 | Csingle
_ -> Csingle
[||]
7071 | Csplit
_ -> failwith
"quit from bird's eye while split"
7073 pan, { c with beyecolumns = beyecolumns; columns
= columns
}
7074 | _ -> state.x, conf
7076 let basename = Filename.basename state.path in
7077 adddoc basename pan (getanchor ())
7079 let autoscrollstep =
7080 match state.autoscroll
with
7082 | None
-> conf.autoscrollstep
7084 match state.mode with
7085 | Birdseye
(bc
, _, _, _, _) ->
7088 presentation
= bc
.presentation
;
7089 interpagespace
= bc
.interpagespace
;
7090 maxwait
= bc
.maxwait
;
7091 autoscrollstep = autoscrollstep }
7092 | _ -> { conf with autoscrollstep = autoscrollstep }
7094 (if conf.savebmarks
then state.bookmarks else []);
7096 Hashtbl.iter
(fun path (c, bookmarks, x, anchor) ->
7098 then adddoc path x anchor c bookmarks
7100 Buffer.add_string
bb "</llppconfig>\n";
7103 if load1 f && Buffer.length
bb > 0
7106 let tmp = !confpath ^
".tmp" in
7107 let oc = open_out_bin
tmp in
7108 Buffer.output_buffer
oc bb;
7110 Unix.rename
tmp !confpath;
7113 ("error while saving configuration: " ^ exntos exn
)
7117 let adderrmsg src msg
=
7118 Buffer.add_string
state.errmsgs msg
;
7119 state.newerrmsgs
<- true;
7123 let adderrfmt src fmt
=
7124 Format.kprintf
(fun s -> adderrmsg src s) fmt
;
7128 let cl = splitatspace cmds
in
7130 try Scanf.sscanf
s fmt
f
7132 adderrfmt "remote exec"
7133 "error processing '%S': %s\n" cmds
(exntos exn
)
7136 | "reload" :: [] -> reload ()
7137 | "goto" :: args :: [] ->
7138 scan args "%u %f %f"
7140 let cmd, _ = state.geomcmds
in
7141 if String.length
cmd = 0
7142 then gotopagexy pageno x y
7145 gotopagexy pageno x y;
7148 state.reprf
<- f state.reprf
7150 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7151 | "rect" :: args :: [] ->
7152 scan args "%u %u %f %f %f %f"
7153 (fun pageno color x0 y0 x1 y1 ->
7154 onpagerect pageno (fun w h ->
7155 let _,w1,h1
,_ = getpagedim pageno in
7156 let sw = float w1 /. w
7157 and sh = float h1
/. h in
7161 and y1s
= y1 *. sh in
7162 let rect = (x0s,y0s
,x1s
,y0s
,x1s
,y1s
,x0s,y1s
) in
7164 state.rects <- (pageno, color, rect) :: state.rects;
7165 G.postRedisplay "rect";
7168 | "activatewin" :: [] -> Wsi.activatewin
()
7169 | "quit" :: [] -> raise Quit
7171 adderrfmt "remote command"
7172 "error processing remote command: %S\n" cmds
;
7176 let scratch = String.create
80 in
7177 let buf = Buffer.create
80 in
7180 try Some
(Unix.read fd
scratch 0 80)
7182 | Unix.Unix_error
(Unix.EAGAIN
, _, _) -> None
7183 | Unix.Unix_error
(Unix.EINTR
, _, _) -> tempfr ()
7186 match tempfr () with
7192 if Buffer.length
buf > 0
7194 let s = Buffer.contents
buf in
7204 let pos = String.index_from
scratch ppos '
\n'
in
7205 if pos >= n then -1 else pos
7206 with Not_found
-> -1
7210 Buffer.add_substring
buf scratch ppos
(nlpos-ppos
);
7211 let s = Buffer.contents
buf in
7217 Buffer.add_substring
buf scratch ppos
(n-ppos
);
7223 let remoteopen path =
7224 try Some
(Unix.openfile
path [Unix.O_NONBLOCK
; Unix.O_RDONLY
] 0o0
)
7226 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn
);
7231 let trimcachepath = ref "" in
7232 let rcmdpath = ref "" in
7235 [("-p", Arg.String
(fun s -> state.password
<- s),
7236 "<password> Set password");
7238 ("-f", Arg.String
(fun s -> Config.fontpath := s),
7239 "<path> Set path to the user interface font");
7241 ("-c", Arg.String
(fun s -> Config.confpath := s),
7242 "<path> Set path to the configuration file");
7244 ("-tcf", Arg.String
(fun s -> trimcachepath := s),
7245 "<path> Set path to the trim cache file");
7247 ("-dest", Arg.String
(fun s -> state.nameddest
<- s),
7248 "<named-destination> Set named destination");
7250 ("-wtmode", Arg.Set
wtmode, " Operate in wt mode");
7252 ("-remote", Arg.String
(fun s -> rcmdpath := s),
7253 "<path> Set path to the remote commands source");
7255 ("-v", Arg.Unit
(fun () ->
7257 "%s\nconfiguration path: %s\n"
7261 exit
0), " Print version and exit");
7264 (fun s -> state.path <- s)
7265 ("Usage: " ^
Sys.argv
.(0) ^
" [options] some.pdf\nOptions:")
7267 if String.length
state.path = 0
7268 then (prerr_endline
"file name missing"; exit
1);
7270 if not
(Config.load ())
7271 then prerr_endline
"failed to load configuration";
7273 let globalkeyhash = findkeyhash conf "global" in
7274 let wsfd, winw, winh
= Wsi.init
(object
7276 if nogeomcmds state.geomcmds
|| platform == Posx
7279 GlClear.color (scalecolor2 conf.bgcolor
);
7280 GlClear.clear
[`
color];
7282 method display = display ()
7283 method reshape w h = reshape w h
7284 method mouse b d x y m = mouse b d x y m
7285 method motion x y = state.mpos
<- (x, y); motion x y
7286 method pmotion x y = state.mpos
<- (x, y); pmotion x y
7288 let mascm = m land (
7289 Wsi.altmask
+ Wsi.shiftmask
+ Wsi.ctrlmask
+ Wsi.metamask
7291 match state.keystate
with
7293 let km = k, mascm in
7296 let modehash = state.uioh#
modehash in
7297 try Hashtbl.find modehash km
7299 try Hashtbl.find globalkeyhash km
7300 with Not_found
-> KMinsrt
(k, m)
7302 | KMinsrt
(k, m) -> keyboard k m
7303 | KMinsrl
l -> List.iter
(fun (k, m) -> keyboard k m) l
7304 | KMmulti
(l, r) -> state.keystate
<- KSinto
(l, r)
7306 | KSinto
((k'
, m'
) :: [], insrt
) when k'
=k && m'
land mascm = m'
->
7307 List.iter
(fun (k, m) -> keyboard k m) insrt
;
7308 state.keystate
<- KSnone
7309 | KSinto
((k'
, m'
) :: keys
, insrt
) when k'
=k && m'
land mascm = m'
->
7310 state.keystate
<- KSinto
(keys
, insrt
)
7312 state.keystate
<- KSnone
7314 method enter
x y = state.mpos
<- (x, y); pmotion x y
7315 method leave = state.mpos
<- (-1, -1)
7316 method winstate wsl
= state.winstate
<- wsl
7317 method quit
= raise Quit
7318 end) conf.cwinw
conf.cwinh
(platform = Posx
) in
7323 List.exists
GlMisc.check_extension
7324 [ "GL_ARB_texture_rectangle"
7325 ; "GL_EXT_texture_recangle"
7326 ; "GL_NV_texture_rectangle" ]
7328 then (prerr_endline
"OpenGL does not suppport rectangular textures"; exit
1);
7331 match Ne.pipe () with
7333 Printf.eprintf
"pipe/crsw failed: %s" (exntos exn
);
7337 match Ne.pipe () with
7339 Printf.eprintf
"pipe/srcw failed: %s" (exntos exn
);
7349 setcheckers conf.checkers
;
7353 conf.angle
, conf.fitmodel
, (conf.trimmargins
, conf.trimfuzz
),
7354 conf.texcount
, conf.sliceheight
, conf.mustoresize
, conf.colorspace
,
7355 !Config.fontpath, !trimcachepath,
7356 GlMisc.check_extension
"GL_ARB_pixel_buffer_object"
7360 state.text <- "Opening " ^
(mbtoutf8
state.path);
7362 opendoc state.path state.password
;
7365 Sys.set_signal
Sys.sighup
(Sys.Signal_handle
(fun _ -> reload ()));
7368 if String.length
!rcmdpath > 0
7369 then remoteopen !rcmdpath
7374 let rec loop deadline
=
7376 match state.errfd
with
7377 | None
-> [state.sr
; state.wsfd]
7378 | Some fd
-> [state.sr
; state.wsfd; fd
]
7383 | Some fd
-> fd
:: r
7387 state.redisplay
<- false;
7394 if deadline
= infinity
7396 else max
0.0 (deadline
-. now)
7401 try Unix.select
r [] [] timeout
7402 with Unix.Unix_error
(Unix.EINTR
, _, _) -> [], [], []
7408 if state.ghyll
== noghyll
7410 match state.autoscroll
with
7411 | Some step
when step
!= 0 ->
7412 let y = state.y + step
in
7416 else if y >= state.maxy then 0 else y
7419 if state.mode = View
7420 then state.text <- "";
7423 else deadline
+. 0.01
7428 let rec checkfds = function
7430 | fd
:: rest
when fd
= state.sr
->
7431 let cmd = readcmd state.sr
in
7435 | fd
:: rest
when fd
= state.wsfd ->
7439 | fd
:: rest
when Some fd
= !optrfd ->
7440 begin match remote fd
with
7441 | None
-> optrfd := remoteopen !rcmdpath;
7442 | opt -> optrfd := opt
7447 let s = String.create
80 in
7448 let n = tempfailureretry
(Unix.read fd
s 0) 80 in
7449 if conf.redirectstderr
7451 Buffer.add_substring
state.errmsgs
s 0 n;
7452 state.newerrmsgs
<- true;
7453 state.redisplay
<- true;
7456 prerr_string
(String.sub
s 0 n);
7464 if deadline
= infinity
7468 match state.autoscroll
with
7469 | Some step
when step
!= 0 -> deadline1
7470 | _ -> if state.ghyll
== noghyll then infinity
else deadline1