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
* string) 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)
484 ; mutable origin
: string
487 { pat
: string circbuf
488 ; pag
: string circbuf
489 ; nav
: anchor circbuf
490 ; sel
: string circbuf
512 ; presentation
= false
517 ; fitmodel
= FitProportional
518 ; trimmargins
= false
519 ; trimfuzz
= (0,0,0,0)
520 ; memlimit
= 32 lsl 20
525 ; bgcolor
= (0.5, 0.5, 0.5)
527 ; scrollbarinpm
= true
530 ; mustoresize
= 256 lsl 20
535 | Plinux
| Pfreebsd
| Pdragonflybsd
536 | Popenbsd
| Pnetbsd
| Psun
-> "xdg-open \"%s\""
537 | Posx
-> "open \"%s\""
538 | Pcygwin
-> "cygstart \"%s\""
539 | Punknown
-> "echo %s")
540 ; pathlauncher
= "lp \"%s\""
543 | Plinux
| Pfreebsd
| Pdragonflybsd
544 | Popenbsd
| Pnetbsd
| Psun
-> "xsel -i"
551 ; redirectstderr
= false
553 ; columns
= Csingle
[||]
559 ; wheelbypage
= false
560 ; stcmd
= "echo SyncTex"
562 let mk n
= (n
, Hashtbl.create
1) in
576 let wtmode = ref false;;
578 let findkeyhash c name
=
579 try List.assoc name c
.keyhashes
580 with Not_found
-> failwith
("invalid mode name `" ^ name ^
"'")
583 let conf = { defconf with angle
= defconf.angle
};;
585 let pgscale h
= truncate
(float h
*. conf.pgscale);;
588 { mutable fontsize
: int
589 ; mutable wwidth
: float
590 ; mutable maxrows
: int
602 let colonpos = try String.index s '
:'
with Not_found
-> -1 in
603 let len = String.length s
in
604 if colonpos >= 0 && colonpos + 3 < len
606 if s
.[colonpos+1] = '
/'
&& s
.[colonpos+2] = '
/'
609 try String.rindex_from s
colonpos ' '
613 String.sub s
(schemestartpos+1) (colonpos-1-schemestartpos)
616 | "http" | "ftp" | "mailto" ->
618 try String.index_from s
colonpos ' '
619 with Not_found
-> len
621 String.sub s
(schemestartpos+1) (epos-1-schemestartpos)
629 if String.length
conf.urilauncher
= 0
630 then print_endline uri
632 let url = geturl uri
in
633 if String.length
url = 0
634 then print_endline uri
636 let re = Str.regexp
"%s" in
637 let command = Str.global_replace
re url conf.urilauncher
in
641 "failed to execute `%s': %s\n" command (exntos exn
);
647 Printf.sprintf
"llpp version %s (%s/%dbit, ocaml %s)" Help.version
648 (platform_to_string platform) Sys.word_size
Sys.ocaml_version
652 let strings = version () :: "" :: Help.keys
in
655 let url = geturl s
in
656 if String.length
url > 0
657 then (s
, 0, Action
(fun u
-> gotouri url; u
))
658 else (s
, 0, Noaction
)
663 let firstgeomcmds = "", [];;
664 let noreprf () = ();;
671 ; stderr
= Unix.stderr
672 ; errmsgs
= Buffer.create
0
679 ; anchor
= emptyanchor
683 ; tilelru
= Queue.create
()
684 ; pagemap
= Hashtbl.create
10
685 ; tilemap
= Hashtbl.create
10
701 ; geomcmds
= firstgeomcmds
703 { nav
= cbnew 10 emptyanchor
732 fstate.fontsize
<- n
;
733 fstate.wwidth
<- measurestr
fstate.fontsize
"w";
734 fstate.maxrows
<- (state.winh
- fstate.fontsize
- 1) / (fstate.fontsize
+ 1);
740 Printf.kprintf prerr_endline fmt
742 Printf.kprintf ignore fmt
746 if String.length
conf.pathlauncher
= 0
747 then print_endline
state.path
749 let re = Str.regexp
"%s" in
750 let command = Str.global_replace
re state.path
conf.pathlauncher
in
753 Printf.eprintf
"failed to execute `%s': %s\n" command (exntos exn
);
759 type 'a t
= | Res
of 'a
| Exn
of exn
;;
762 try Res
(Unix.pipe ())
767 try tempfailureretry
Unix.close fd
768 with exn
-> f
(exntos exn
)
772 try Res
(tempfailureretry
Unix.dup fd
)
777 try Res
(tempfailureretry
(Unix.dup2 fd1
) fd2
)
782 let redirectstderr () =
783 let clofail what errmsg
= dolog
"failed to close %s: %s" what errmsg
in
784 if conf.redirectstderr
786 match Ne.pipe () with
788 dolog
"failed to create stderr redirection pipes: %s" (exntos exn
)
791 begin match Ne.dup Unix.stderr
with
793 dolog
"failed to dup stderr: %s" (exntos exn
);
794 Ne.clo r
(clofail "pipe/r");
795 Ne.clo w
(clofail "pipe/w");
797 | Ne.Res dupstderr
->
798 begin match Ne.dup2 w
Unix.stderr
with
800 dolog
"failed to dup2 to stderr: %s" (exntos exn
);
801 Ne.clo dupstderr
(clofail "stderr duplicate");
802 Ne.clo r
(clofail "redir pipe/r");
803 Ne.clo w
(clofail "redir pipe/w");
806 state.stderr
<- dupstderr
;
807 state.errfd
<- Some r
;
811 state.newerrmsgs
<- false;
812 begin match state.errfd
with
814 begin match Ne.dup2 state.stderr
Unix.stderr
with
816 dolog
"failed to dup2 original stderr: %s" (exntos exn
)
818 Ne.clo fd
(clofail "dup of stderr");
823 prerr_string
(Buffer.contents
state.errmsgs
);
825 Buffer.clear
state.errmsgs
;
831 let postRedisplay who
=
833 then prerr_endline
("redisplay for " ^ who
);
834 state.redisplay
<- true;
838 let getopaque pageno
=
839 try Some
(Hashtbl.find
state.pagemap
(pageno
, state.gen
))
840 with Not_found
-> None
843 let putopaque pageno opaque
=
844 Hashtbl.replace
state.pagemap
(pageno
, state.gen
) opaque
847 let pagetranslatepoint l x y
=
848 let dy = y
- l
.pagedispy
in
849 let y = dy + l
.pagey
in
850 let dx = x
- l
.pagedispx
in
851 let x = dx + l
.pagex
in
855 let onppundermouse g
x y d
=
858 begin match getopaque l
.pageno
with
860 let x0 = l
.pagedispx
in
861 let x1 = x0 + l
.pagevw
in
862 let y0 = l
.pagedispy
in
863 let y1 = y0 + l
.pagevh
in
864 if y >= y0 && y <= y1 && x >= x0 && x <= x1
866 let px, py
= pagetranslatepoint l
x y in
867 match g opaque l
px py
with
880 let g opaque _
px py
=
881 match whatsunder opaque
px py
with
883 | under
-> Some under
885 onppundermouse g x y Unone
890 match unproject opaque
x y with
891 | Some
(x, y) -> Some
(Some
(l
.pageno
, x, y))
894 onppundermouse g x y None
;
898 state.text
<- Printf.sprintf
"%c%s" c s
;
899 G.postRedisplay "showtext";
902 let undertext = function
905 | Ulinkgoto
(pageno
, _
) -> Printf.sprintf
"%s: page %d" state.path
(pageno
+1)
906 | Utext s
-> "font: " ^ s
907 | Uunexpected s
-> "unexpected: " ^ s
908 | Ulaunch s
-> "launch: " ^ s
909 | Unamed s
-> "named: " ^ s
910 | Uremote
(filename
, pageno
) ->
911 Printf.sprintf
"%s: page %d" filename
(pageno
+1)
914 let updateunder x y =
915 match getunder x y with
916 | Unone
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
918 if conf.underinfo
then showtext 'u'
("ri: " ^ uri
);
919 Wsi.setcursor
Wsi.CURSOR_INFO
920 | Ulinkgoto
(pageno
, _
) ->
922 then showtext 'p'
("age: " ^ string_of_int
(pageno
+1));
923 Wsi.setcursor
Wsi.CURSOR_INFO
925 if conf.underinfo
then showtext '
f'
("ont: " ^ s
);
926 Wsi.setcursor
Wsi.CURSOR_TEXT
928 if conf.underinfo
then showtext 'u'
("nexpected: " ^ s
);
929 Wsi.setcursor
Wsi.CURSOR_INHERIT
931 if conf.underinfo
then showtext 'l'
("aunch: " ^ s
);
932 Wsi.setcursor
Wsi.CURSOR_INHERIT
934 if conf.underinfo
then showtext 'n'
("amed: " ^ s
);
935 Wsi.setcursor
Wsi.CURSOR_INHERIT
936 | Uremote
(filename
, pageno
) ->
937 if conf.underinfo
then showtext 'r'
938 (Printf.sprintf
"emote: %s (%d)" filename
(pageno
+1));
939 Wsi.setcursor
Wsi.CURSOR_INFO
942 let showlinktype under
=
948 let s = undertext under
in
953 let b = Buffer.create
(String.length
s + 1) in
954 Buffer.add_string
b s;
959 let colorspace_of_string s =
960 match String.lowercase
s with
964 | _
-> failwith
"invalid colorspace"
967 let int_of_colorspace = function
973 let colorspace_of_int = function
977 | n
-> failwith
("invalid colorspace index " ^ string_of_int n
)
980 let colorspace_to_string = function
986 let fitmodel_of_string s =
987 match String.lowercase
s with
988 | "width" -> FitWidth
989 | "proportional" -> FitProportional
991 | _
-> failwith
"invalid fit model"
994 let int_of_fitmodel = function
996 | FitProportional
-> 1
1000 let fitmodel_of_int = function
1002 | 1 -> FitProportional
1004 | n
-> failwith
("invalid fit model index " ^ string_of_int n
)
1007 let fitmodel_to_string = function
1008 | FitWidth
-> "width"
1009 | FitProportional
-> "proportional"
1013 let intentry_with_suffix text key
=
1015 if key
>= 32 && key
< 127
1019 match Char.lowercase
c with
1021 let text = addchar text c in
1024 | 'k'
| 'm'
| '
g'
->
1025 let text = addchar text c in
1029 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key
c;
1033 let multicolumns_to_string (n
, a
, b) =
1035 then Printf.sprintf
"%d" n
1036 else Printf.sprintf
"%d,%d,%d" n a
b;
1039 let multicolumns_of_string s =
1041 (int_of_string
s, 0, 0)
1043 Scanf.sscanf
s "%u,%u,%u" (fun n a
b ->
1045 then failwith
"subtly broken"; (n
, a
, b)
1051 let n = tempfailureretry
(Unix.read fd
s 0) 4 in
1052 if n != 4 then failwith
"incomplete read(len)";
1054 lor (Char.code
s.[0] lsl 24)
1055 lor (Char.code
s.[1] lsl 16)
1056 lor (Char.code
s.[2] lsl 8)
1057 lor (Char.code
s.[3] lsl 0)
1059 let s = String.create
len in
1060 let n = tempfailureretry
(Unix.read fd
s 0) len in
1061 if n != len then failwith
"incomplete read(data)";
1065 let btod b = if b then 1 else 0;;
1068 let b = Buffer.create
16 in
1069 Buffer.add_string
b "llll";
1072 let s = Buffer.contents
b in
1073 let n = String.length
s in
1075 (* dolog "wcmd %S" (String.sub s 4 len); *)
1076 s.[0] <- Char.chr
((len lsr 24) land 0xff);
1077 s.[1] <- Char.chr
((len lsr 16) land 0xff);
1078 s.[2] <- Char.chr
((len lsr 8) land 0xff);
1079 s.[3] <- Char.chr
(len land 0xff);
1080 let n'
= tempfailureretry
(Unix.write
state.sw
s 0) n in
1081 if n'
!= n then failwith
"write failed";
1086 let d = state.winh
- h
in
1087 max
conf.interpagespace
((d + 1) / 2)
1090 let rowyh (c, coverA
, coverB
) b n =
1091 if c = 1 || (n < coverA
|| n >= state.pagecount
- coverB
)
1093 let _, _, vy
, (_, _, h
, _) = b.(n) in
1096 let n'
= n - coverA
in
1099 let e = min
state.pagecount
(s + c) in
1100 let rec find m miny maxh
= if m
= e then miny
, maxh
else
1101 let _, _, y, (_, _, h
, _) = b.(m
) in
1102 let miny = min
miny y in
1103 let maxh = max
maxh h
in
1104 find (m
+1) miny maxh
1109 match conf.columns
with
1110 | Cmulti
((_, _, _) as cl
, b) ->
1111 if Array.length
b > 0
1113 let y, h
= rowyh cl
b (Array.length
b - 1) in
1114 y + h
+ (if conf.presentation
then calcips h
else 0)
1117 if Array.length
b > 0
1119 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1120 y + h
+ (if conf.presentation
then calcips h
else 0)
1123 if Array.length
b > 0
1125 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1130 let getpageyh pageno
=
1131 let pageno = bound pageno 0 (state.pagecount
-1) in
1132 match conf.columns
with
1134 if Array.length
b = 0
1137 let (_, _, y, (_, _, h
, _)) = b.(pageno) in
1139 if conf.presentation
1145 if Array.length
b = 0
1148 let y, h
= rowyh cl
b pageno in
1150 if conf.presentation
1156 if Array.length
b = 0
1160 let (_, _, y, (_, _, h
, _)) = b.(n) in
1164 let getpagedim pageno =
1167 | (n, _, _, _) as pdim
:: rest
->
1169 then (if n = pageno then pdim
else ppdim
)
1174 f (-1, -1, -1, -1) state.pdims
1177 let getpagey pageno = fst
(getpageyh pageno);;
1179 let nogeomcmds cmds
=
1181 | s, [] -> String.length
s = 0
1186 let ((c, coverA
, coverB
) as cl
), b =
1187 match conf.columns
with
1188 | Csingle
b -> (1, 0, 0), b
1189 | Cmulti
(c, b) -> c, b
1190 | Csplit
(_, b) -> (1, 0, 0), b
1192 if Array.length
b = 0
1195 let rec bsearch nmin nmax
=
1197 then bound nmin
0 (state.pagecount
-1)
1199 let n = (nmax
+ nmin
) / 2 in
1200 let vy, h
= rowyh cl
b n in
1202 if conf.presentation
1204 let ips = calcips h
in
1205 let y0 = vy - ips in
1206 let y1 = vy + h
+ ips in
1210 then 0, vy + h
+ conf.interpagespace
1212 let y0 = vy - conf.interpagespace
in
1213 y0, y0 + h
+ conf.interpagespace
1216 if y >= y0 && y < y1
1223 if n < state.pagecount
- coverB
1224 then ((n-coverA
)/c)*c + coverA
1231 then bsearch (n+1) nmax
1232 else bsearch nmin
(n-1)
1235 let r = bsearch 0 (state.pagecount
-1) in
1239 let layoutN ((columns
, coverA
, coverB
), b) y sh =
1240 let sh = sh - state.hscrollh
in
1241 let rec fold accu
n =
1242 if n = Array.length
b
1245 let pdimno, dx, vy, (_, w
, h
, xoff
) = b.(n) in
1248 || n = state.pagecount
- coverB
1249 || (n - coverA
) mod columns
= columns
- 1)
1255 let pagey = max
0 (y - vy) in
1256 let pagedispy = if pagey > 0 then 0 else vy - y in
1257 let pagedispx, pagex
=
1259 if n = coverA
- 1 || n = state.pagecount
- coverB
1260 then state.x + (state.winw
- state.scrollw
- w
) / 2
1261 else dx + xoff
+ state.x
1268 let vw = state.winw
- state.scrollw
- pagedispx in
1269 let pw = w
- pagex
in
1272 let pagevh = min
(h
- pagey) (sh - pagedispy) in
1273 if pagevw > 0 && pagevh > 0
1277 ; pagedimno
= pdimno
1284 ; pagedispx = pagedispx
1285 ; pagedispy = pagedispy
1297 List.rev
(fold [] (page_of_y y));
1300 let layoutS (columns
, b) y sh =
1301 let sh = sh - state.hscrollh
in
1302 let rec fold accu n =
1303 if n = Array.length
b
1306 let pdimno, px, vy, (_, pagew
, pageh
, xoff
) = b.(n) in
1313 let x = xoff
+ state.x in
1314 let pagey = max
0 (y - vy) in
1315 let pagedispy = if pagey > 0 then 0 else vy - y in
1316 let pagedispx, pagex
=
1330 let pagecolw = pagew
/columns
in
1332 if pagecolw < state.winw
1333 then pagedispx + ((state.winw
- state.scrollw
- pagecolw) / 2)
1337 let vw = state.winw
- pagedispx - state.scrollw
in
1338 let pw = pagew
- pagex
in
1341 let pagevw = min
pagevw pagecolw in
1342 let pagevh = min
(pageh
- pagey) (sh - pagedispy) in
1343 if pagevw > 0 && pagevh > 0
1346 { pageno = n/columns
1347 ; pagedimno
= pdimno
1354 ; pagedispx = pagedispx
1355 ; pagedispy = pagedispy
1356 ; pagecol
= n mod columns
1367 List.rev
(fold [] 0)
1371 if nogeomcmds state.geomcmds
1373 match conf.columns
with
1374 | Csingle
b -> layoutN ((1, 0, 0), b) y sh
1375 | Cmulti
c -> layoutN c y sh
1376 | Csplit
s -> layoutS s y sh
1381 let y = state.y + incr
in
1383 let y = min
y (state.maxy
- (if conf.maxhfit
then state.winh
else 0)) in
1388 let tilex = l
.pagex
mod conf.tilew
in
1389 let tiley = l
.pagey mod conf.tileh
in
1391 let col = l
.pagex
/ conf.tilew
in
1392 let row = l
.pagey / conf.tileh
in
1394 let rec rowloop row y0 dispy h
=
1398 let dh = conf.tileh
- y0 in
1399 let dh = min h
dh in
1400 let rec colloop col x0 dispx w
=
1404 let dw = conf.tilew
- x0 in
1405 let dw = min w
dw in
1407 f col row dispx dispy
x0 y0 dw dh;
1408 colloop (col+1) 0 (dispx
+dw) (w
-dw)
1411 colloop col tilex l
.pagedispx l
.pagevw;
1412 rowloop (row+1) 0 (dispy
+dh) (h
-dh)
1415 if l
.pagevw > 0 && l
.pagevh > 0
1416 then rowloop row tiley l
.pagedispy l
.pagevh;
1419 let gettileopaque l
col row =
1421 l
.pageno, state.gen
, conf.colorspace
, conf.angle
, l
.pagew
, l
.pageh
, col, row
1423 try Some
(Hashtbl.find state.tilemap
key)
1424 with Not_found
-> None
1427 let puttileopaque l
col row gen colorspace angle opaque size elapsed
=
1428 let key = l
.pageno, gen
, colorspace
, angle
, l
.pagew
, l
.pageh
, col, row in
1429 Hashtbl.add
state.tilemap
key (opaque
, size
, elapsed
)
1432 let drawtiles l color
=
1434 let f col row x y tilex tiley w h
=
1435 match gettileopaque l
col row with
1436 | Some
(opaque
, _, t
) ->
1437 let params = x, y, w
, h
, tilex, tiley in
1441 GlFunc.blend_func `zero `one_minus_src_color
;
1443 drawtile
params opaque
;
1445 then Gl.disable `blend
;
1448 let s = Printf.sprintf
1452 let w = measurestr
fstate.fontsize
s in
1453 GlMisc.push_attrib
[`current
];
1454 GlDraw.color
(0.0, 0.0, 0.0);
1456 (float (x-2), float (y-2))
1457 (float (x+2) +. w, float (y + fstate.fontsize
+ 2));
1458 GlDraw.color
(1.0, 1.0, 1.0);
1459 drawstring fstate.fontsize
x (y + fstate.fontsize
- 1) s;
1460 GlMisc.pop_attrib
();
1465 let lw = state.winw
- state.scrollw
- x in
1468 let lh = state.winh
- y in
1471 begin match state.texid
with
1473 Gl.enable `texture_2d
;
1474 GlTex.bind_texture `texture_2d id
;
1477 and x1 = float (x+w)
1478 and y1 = float (y+h
) in
1480 let tw = float w /. 16.0
1481 and th
= float h
/. 16.0 in
1482 let tx0 = float tilex /. 16.0
1483 and ty0
= float tiley /. 16.0 in
1485 and ty1
= ty0
+. th
in
1486 GlDraw.begins `quads
;
1487 GlTex.coord2
(tx0, ty0
); GlDraw.vertex2
(x0, y0);
1488 GlTex.coord2
(tx0, ty1
); GlDraw.vertex2
(x0, y1);
1489 GlTex.coord2
(tx1, ty1
); GlDraw.vertex2
(x1, y1);
1490 GlTex.coord2
(tx1, ty0
); GlDraw.vertex2
(x1, y0);
1493 Gl.disable `texture_2d
;
1495 GlDraw.color
(1.0, 1.0, 1.0);
1498 (float (x+w), float (y+h
));
1500 if w > 128 && h
> fstate.fontsize
+ 10
1502 GlDraw.color
(0.0, 0.0, 0.0);
1505 then (col*conf.tilew
, row*conf.tileh
)
1508 drawstring2 fstate.fontsize
x y "Loading %d [%d,%d]" l
.pageno c r;
1515 let pagevisible layout n = List.exists
(fun l
-> l
.pageno = n) layout;;
1517 let tilevisible1 l
x y =
1519 and ax1
= l
.pagex
+ l
.pagevw
1521 and ay1
= l
.pagey + l
.pagevh in
1525 let bx1 = min
(bx0 + conf.tilew
) l
.pagew
1526 and by1
= min
(by0
+ conf.tileh
) l
.pageh
in
1528 let rx0 = max
ax0 bx0
1529 and ry0
= max ay0 by0
1530 and rx1
= min ax1
bx1
1531 and ry1
= min ay1 by1
in
1533 let nonemptyintersection = rx1
> rx0 && ry1
> ry0
in
1534 nonemptyintersection
1537 let tilevisible layout n x y =
1538 let rec findpageinlayout m
= function
1539 | l
:: rest
when l
.pageno = n ->
1540 tilevisible1 l
x y || (
1541 match conf.columns
with
1542 | Csplit
(c, _) when c > m
-> findpageinlayout (m
+1) rest
1545 | _ :: rest
-> findpageinlayout 0 rest
1548 findpageinlayout 0 layout;
1551 let tileready l
x y =
1552 tilevisible1 l
x y &&
1553 gettileopaque l
(x/conf.tilew
) (y/conf.tileh
) != None
1556 let tilepage n p
layout =
1557 let rec loop = function
1561 let f col row _ _ _ _ _ _ =
1562 if state.currently
= Idle
1564 match gettileopaque l
col row with
1567 let x = col*conf.tilew
1568 and y = row*conf.tileh
in
1570 let w = l
.pagew
- x in
1574 let h = l
.pageh
- y in
1579 then getpbo
w h conf.colorspace
1582 wcmd "tile %s %d %d %d %d %s" p
x y w h pbo;
1585 l
, p
, conf.colorspace
, conf.angle
, state.gen
, col, row,
1586 conf.tilew
, conf.tileh
1595 if nogeomcmds state.geomcmds
1599 let preloadlayout y =
1600 let y = if y < state.winh
then 0 else y - state.winh
in
1601 let h = state.winh
*3 in
1606 let rec loop pages
=
1607 if state.currently
!= Idle
1612 begin match getopaque l
.pageno with
1614 wcmd "page %d %d" l
.pageno l
.pagedimno
;
1615 state.currently
<- Loading
(l
, state.gen
);
1617 tilepage l
.pageno opaque pages
;
1622 if nogeomcmds state.geomcmds
1628 if conf.preload && state.currently
= Idle
1629 then load (preloadlayout state.y);
1632 let layoutready layout =
1633 let rec fold all ls
=
1634 all
&& match ls
with
1636 let seen = ref false in
1637 let allvisible = ref true in
1638 let foo col row _ _ _ _ _ _ =
1640 allvisible := !allvisible &&
1641 begin match gettileopaque l
col row with
1647 fold (!seen && !allvisible) rest
1650 let alltilesvisible = fold true layout in
1655 let y = bound y 0 state.maxy
in
1656 let y, layout, proceed
=
1657 match conf.maxwait
with
1658 | Some time
when state.ghyll
== noghyll ->
1659 begin match state.throttle
with
1661 let layout = layout y state.winh
in
1662 let ready = layoutready layout in
1666 state.throttle
<- Some
(layout, y, now ());
1668 else G.postRedisplay "gotoy showall (None)";
1670 | Some
(_, _, started
) ->
1671 let dt = now () -. started
in
1674 state.throttle
<- None
;
1675 let layout = layout y state.winh
in
1677 G.postRedisplay "maxwait";
1684 let layout = layout y state.winh
in
1685 if not
!wtmode || layoutready layout
1686 then G.postRedisplay "gotoy ready";
1692 state.layout <- layout;
1693 begin match state.mode
with
1694 | LinkNav
(Ltexact
(pageno, linkno
)) ->
1695 let rec loop = function
1697 state.mode
<- LinkNav
(Ltgendir
0)
1698 | l
:: _ when l
.pageno = pageno ->
1699 begin match getopaque pageno with
1701 state.mode
<- LinkNav
(Ltgendir
0)
1703 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
1704 if not
(x0 >= l
.pagex
&& x1 <= l
.pagex
+ l
.pagevw
1705 && y0 >= l
.pagey && y1 <= l
.pagey + l
.pagevh)
1706 then state.mode
<- LinkNav
(Ltgendir
0)
1708 | _ :: rest
-> loop rest
1713 begin match state.mode
with
1714 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor
) ->
1715 if not
(pagevisible layout pageno)
1717 match state.layout with
1720 state.mode
<- Birdseye
(
1721 conf, leftx
, l
.pageno, hooverpageno
, anchor
1724 | LinkNav
(Ltgendir dir
as lt
) ->
1726 let rec loop = function
1729 match getopaque l
.pageno with
1735 then LDfirstvisible
(l
.pagex
, l
.pagey, dir
)
1737 if dir
> 0 then LDfirst
else LDlast
1743 | Lnotfound
-> loop rest
1745 showlinktype (getlink opaque
n);
1746 Ltexact
(l
.pageno, n)
1750 state.mode
<- LinkNav
linknav
1755 state.ghyll
<- noghyll;
1758 let mx, my
= state.mpos
in
1763 let conttiling pageno opaque
=
1764 tilepage pageno opaque
1765 (if conf.preload then preloadlayout state.y else state.layout)
1768 let gotoy_and_clear_text y =
1769 if not
conf.verbose
then state.text <- "";
1775 let coloff = l
.pagecol
* l
.pageh
in
1776 float (l
.pagey + coloff) /. float l
.pageh
1783 if conf.presentation
1784 then float l
.pagedispy /. float (calcips l
.pageh
)
1785 else float l
.pagedispy /. float conf.interpagespace
1787 (l
.pageno, top, dtop)
1791 match state.layout with
1792 | l
:: _ -> getanchor1 l
1794 let n = page_of_y state.y in
1798 let y, h = getpageyh n in
1799 let dy = y - state.y in
1801 if conf.presentation
1803 let ips = calcips h in
1804 float (dy + ips) /. float ips
1806 float dy /. float conf.interpagespace
1811 let getanchory (n, top, dtop) =
1812 let y, h = getpageyh n in
1813 if conf.presentation
1815 let ips = calcips h in
1816 y + truncate
(top*.float h -. dtop*.float ips) + ips;
1818 y + truncate
(top*.float h -. dtop*.float conf.interpagespace
)
1821 let gotoanchor anchor
=
1822 gotoy (getanchory anchor
);
1826 cbput state.hists
.nav
(getanchor ());
1830 let anchor = cbgetc state.hists
.nav dir
in
1835 let scroll f n a
b =
1836 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1838 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1840 then s (float f /. float a
)
1843 then 1.0 -. s ((float (f-b) /. float (n-b)))
1850 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1851 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1853 let ins = float a
*. iv1
1854 and outs
= float (n-b) *. iv1 in
1856 ins +. outs
+. float ones
1858 let rec set (_N
, _A
, _B
) y sy
=
1859 let sum = summa
1.0 _N _A _B
in
1860 let dy = float (y - sy
) in
1864 then state.ghyll
<- noghyll
1867 let s = scroll n _N _A _B
in
1868 let y1 = y1 +. ((s *. dy) /. sum) in
1869 gotoy_and_clear_text (truncate
y1);
1870 state.ghyll
<- gf (n+1) y1;
1874 | Some
y'
-> set (_N
/2, 1, 1) y'
state.y
1876 gf 0 (float state.y)
1879 match conf.ghyllscroll
with
1881 gotoy_and_clear_text y
1883 if state.ghyll
== noghyll
1884 then set nab
y state.y
1885 else state.ghyll
(Some
y)
1888 let gotopage n top =
1889 let y, h = getpageyh n in
1890 let y = y + (truncate
(top *. float h)) in
1894 let gotopage1 n top =
1895 let y = getpagey n in
1900 let invalidate s f =
1905 match state.geomcmds
with
1906 | ps
, [] when String.length ps
= 0 ->
1908 state.geomcmds
<- s, [];
1911 state.geomcmds
<- ps
, [s, f];
1913 | ps
, (s'
, _) :: rest
when s'
= s ->
1914 state.geomcmds
<- ps
, ((s, f) :: rest
);
1917 state.geomcmds
<- ps
, ((s, f) :: cmds
);
1921 Hashtbl.iter
(fun _ opaque
->
1922 wcmd "freepage %s" opaque
;
1924 Hashtbl.clear
state.pagemap
;
1928 if not
(Queue.is_empty
state.tilelru
)
1930 Queue.iter
(fun (k
, p
, s) ->
1931 wcmd "freetile %s" p
;
1932 state.memused
<- state.memused
- s;
1933 Hashtbl.remove
state.tilemap k
;
1935 state.uioh#infochanged Memused
;
1936 Queue.clear
state.tilelru
;
1941 let opendoc path password
=
1943 state.password
<- password
;
1944 state.gen
<- state.gen
+ 1;
1945 state.docinfo
<- [];
1948 setaalevel
conf.aalevel
;
1950 if String.length
state.origin
= 0
1954 Wsi.settitle
("llpp " ^
(mbtoutf8
(Filename.basename
titlepath)));
1955 wcmd "open %d %s\000%s\000" (btod !wtmode) path password
;
1956 invalidate "reqlayout"
1958 wcmd "reqlayout %d %d %f %s\000"
1959 conf.angle
(int_of_fitmodel conf.fitmodel
) conf.zoom
state.nameddest
;
1964 state.anchor <- getanchor ();
1965 opendoc state.path
state.password
;
1969 let c = c *. conf.colorscale
in
1973 let scalecolor2 (r, g, b) =
1974 (r *. conf.colorscale
, g *. conf.colorscale
, b *. conf.colorscale
);
1977 let docolumns = function
1979 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1980 let rec loop pageno pdimno pdim
y ph pdims
=
1981 if pageno = state.pagecount
1984 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
1986 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
1987 pdimno+1, pdim
, rest
1991 let x = max
0 (((state.winw
- state.scrollw
- w) / 2) - xoff
) in
1993 (if conf.presentation
1994 then (if pageno = 0 then calcips h else calcips ph
+ calcips h)
1995 else (if pageno = 0 then 0 else conf.interpagespace
)
1998 a.(pageno) <- (pdimno, x, y, pdim
);
1999 loop (pageno+1) pdimno pdim
(y + h) h pdims
2001 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 state.pdims
;
2002 conf.columns
<- Csingle
a;
2004 | Cmulti
((columns
, coverA
, coverB
), _) ->
2005 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
2006 let rec loop pageno pdimno pdim
x y rowh pdims
=
2007 let rec fixrow m
= if m
= pageno then () else
2008 let (pdimno, x, y, ((_, _, h, _) as pdim
)) = a.(m
) in
2011 let y = y + (rowh
- h) / 2 in
2012 a.(m
) <- (pdimno, x, y, pdim
);
2016 if pageno = state.pagecount
2017 then fixrow (((pageno - 1) / columns
) * columns
)
2019 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
2021 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
2022 pdimno+1, pdim
, rest
2027 if pageno = coverA
- 1 || pageno = state.pagecount
- coverB
2029 let x = (state.winw
- state.scrollw
- w) / 2 in
2031 if conf.presentation
then calcips h else conf.interpagespace
in
2032 x, y + ips + rowh
, h
2035 if (pageno - coverA
) mod columns
= 0
2037 let x = max
0 (state.winw
- state.scrollw
- state.w) / 2 in
2039 if conf.presentation
2041 let ips = calcips h in
2042 y + (if pageno = 0 then 0 else calcips rowh
+ ips)
2044 y + (if pageno = 0 then 0 else conf.interpagespace
)
2048 else x, y, max rowh
h
2052 if pageno > 1 && (pageno - coverA
) mod columns
= 0
2055 if pageno = columns
&& conf.presentation
2057 let ips = calcips rowh
in
2058 for i
= 0 to pred columns
2060 let (pdimno, x, y, pdim
) = a.(i
) in
2061 a.(i
) <- (pdimno, x, y+ips, pdim
)
2067 fixrow (pageno - columns
);
2072 a.(pageno) <- (pdimno, x, y, pdim
);
2073 let x = x + w + xoff
*2 + conf.interpagespace
in
2074 loop (pageno+1) pdimno pdim
x y rowh' pdims
2076 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 0 state.pdims
;
2077 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), a);
2080 let a = Array.make
(state.pagecount
*c) (-1, -1, -1, (-1, -1, -1, -1)) in
2081 let rec loop pageno pdimno pdim
y pdims
=
2082 if pageno = state.pagecount
2085 let pdimno, ((_, w, h, _) as pdim
), pdims
=
2087 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
2088 pdimno+1, pdim
, rest
2093 let rec loop1 n x y =
2094 if n = c then y else (
2095 a.(pageno*c + n) <- (pdimno, x, y, pdim
);
2096 loop1 (n+1) (x+cw) (y + h + conf.interpagespace
)
2099 let y = loop1 0 0 y in
2100 loop (pageno+1) pdimno pdim
y pdims
2102 loop 0 ~
-1 (-1,-1,-1,-1) 0 state.pdims
;
2103 conf.columns
<- Csplit
(c, a);
2107 docolumns conf.columns
;
2108 state.maxy
<- calcheight ();
2110 if state.x = 0 && state.w <= state.winw
- state.scrollw
2114 if state.reprf
== noreprf
2116 match state.mode
with
2117 | Birdseye
(_, _, pageno, _, _) ->
2118 let y, h = getpageyh pageno in
2119 let top = (state.winh
- h) / 2 in
2120 gotoy (max
0 (y - top))
2121 | _ -> gotoanchor state.anchor
2125 state.reprf
<- noreprf;
2130 GlDraw.viewport
0 0 w h;
2131 let firsttime = state.geomcmds
== firstgeomcmds in
2132 if not
firsttime && nogeomcmds state.geomcmds
2133 then state.anchor <- getanchor ();
2136 let w = truncate
(float w *. conf.zoom
) - state.scrollw
in
2139 setfontsize fstate.fontsize
;
2140 GlMat.mode `modelview
;
2141 GlMat.load_identity
();
2143 GlMat.mode `projection
;
2144 GlMat.load_identity
();
2145 GlMat.rotate ~
x:1.0 ~angle
:180.0 ();
2146 GlMat.translate ~
x:~
-.1.0 ~
y:~
-.1.0 ();
2147 GlMat.scale3
(2.0 /. float state.winw
, 2.0 /. float state.winh
, 1.0);
2152 else float state.x /. float state.w
2154 invalidate "geometry"
2158 then state.x <- truncate
(relx *. float w);
2160 match conf.columns
with
2162 | Cmulti
((c, _, _), _) -> (w - (c-1)*conf.interpagespace
) / c
2163 | Csplit
(c, _) -> w * c
2165 wcmd "geometry %d %d %f %d"
2166 w (h - 2*conf.interpagespace
) conf.zoom
2167 (int_of_fitmodel conf.fitmodel
));
2171 let len = String.length
state.text in
2174 match state.mode
with
2177 let h, _, _ = state.uioh#scrollpw
in
2183 (x, float (state.winh
- (fstate.fontsize
+ 4) - hscrollh))
2184 (x+.w, float (state.winh
- hscrollh))
2187 let w = float (state.winw
- state.scrollw
- 1) in
2188 if state.progress
>= 0.0 && state.progress
< 1.0
2190 GlDraw.color
(0.3, 0.3, 0.3);
2191 let w1 = w *. state.progress
in
2193 GlDraw.color
(0.0, 0.0, 0.0);
2197 GlDraw.color
(0.0, 0.0, 0.0);
2201 GlDraw.color
(1.0, 1.0, 1.0);
2202 drawstring fstate.fontsize
2203 (if len > 0 then 8 else 2) (state.winh
- hscrollh - 5) s;
2206 match state.mode
with
2207 | Textentry
((prefix
, text, _, _, _, _), _) ->
2211 Printf.sprintf
"%s%s_ [%s]" prefix
text state.text
2213 Printf.sprintf
"%s%s_" prefix
text
2222 if not
(istextentry state.mode
) && state.uioh#eformsgs
2224 let s1 = "(press 'e' to review error messasges)" in
2225 if String.length
s > 0 then s ^
" " ^
s1 else s1
2230 if String.length
s > 0
2235 let len = Queue.length
state.tilelru
in
2237 match state.throttle
with
2240 then preloadlayout state.y
2242 | Some
(layout, _, _) ->
2246 if state.memused
<= conf.memlimit
2251 let (k
, p
, s) as lruitem
= Queue.pop
state.tilelru
in
2252 let n, gen
, colorspace
, angle
, pagew
, pageh
, col, row = k
in
2253 let (_, pw, ph
, _) = getpagedim n in
2256 && colorspace
= conf.colorspace
2257 && angle
= conf.angle
2261 let x = col*conf.tilew
2262 and y = row*conf.tileh
in
2263 tilevisible (Lazy.force_val
layout) n x y
2265 then Queue.push lruitem
state.tilelru
2268 wcmd "freetile %s" p
;
2269 state.memused
<- state.memused
- s;
2270 state.uioh#infochanged Memused
;
2271 Hashtbl.remove
state.tilemap k
;
2279 let logcurrently = function
2280 | Idle
-> dolog
"Idle"
2281 | Loading
(l
, gen
) ->
2282 dolog
"Loading %d gen=%d curgen=%d" l
.pageno gen
state.gen
2283 | Tiling
(l
, pageopaque
, colorspace
, angle
, gen
, col, row, tilew
, tileh
) ->
2285 "Tiling %d[%d,%d] page=%s cs=%s angle"
2286 l
.pageno col row pageopaque
2287 (colorspace_to_string colorspace
)
2289 dolog
"gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2290 angle gen
conf.angle
state.gen
2292 conf.tilew
conf.tileh
2299 let r = Str.regexp
" " in
2300 fun s -> Str.bounded_split
r s 2;
2303 let onpagerect pageno f =
2305 match conf.columns
with
2306 | Cmulti
(_, b) -> b
2308 | Csplit
(_, b) -> b
2310 if pageno >= 0 && pageno < Array.length
b
2312 let (pdimno, _, _, (_, _, _, _)) = b.(pageno) in
2313 let r = getpdimrect
pdimno in
2314 f (r.(1)-.r.(0)) (r.(3)-.r.(2))
2317 let gotopagexy1 pageno x y =
2318 onpagerect pageno (fun w h ->
2320 let _,w1,_,leftx
= getpagedim pageno in
2321 let wh = state.winh
- state.hscrollh in
2322 let sw = float w1 /. w in
2324 let x = leftx
+ state.x + truncate
x in
2326 if x < 0 || x >= state.winw
- state.scrollw
2330 let py, h = getpageyh pageno in
2331 let pdy = truncate
(top *. float h) in
2332 let y'
= py + pdy in
2333 let dy = y'
- state.y in
2335 if x != state.x || not
(dy > 0 && dy < wh)
2337 if conf.presentation
2339 if abs
(py - y'
) > wh
2346 if state.x != sx || state.y != sy
2351 let ww = state.winw
- state.scrollw
in
2353 and qy
= pdy / wh in
2355 and y = py + qy
* wh in
2356 let x = if -x + ww > w1 then -(w1-ww) else x
2357 and y'
= if y + wh > state.maxy
then state.maxy
- wh else y in
2359 if conf.presentation
2361 if abs
(py - y'
) > wh
2372 if x = 0 && state.w <= state.winw
- state.scrollw
2376 gotoy_and_clear_text y;
2378 else gotoy_and_clear_text state.y;
2382 let gotopagexy pageno x y =
2383 match state.mode
with
2384 | Birdseye
_ -> gotopage pageno 0.0
2385 | _ -> gotopagexy1 pageno x y
2389 (* dolog "%S" cmds; *)
2390 let cl = splitatspace cmds
in
2392 try Scanf.sscanf
s fmt
f
2394 dolog
"error processing '%S': %s" cmds
(exntos exn
);
2399 state.uioh#infochanged Pdim
;
2402 | "clearrects" :: [] ->
2403 state.rects
<- state.rects1
;
2404 G.postRedisplay "clearrects";
2406 | "continue" :: args :: [] ->
2407 let n = scan args "%u" (fun n -> n) in
2408 state.pagecount
<- n;
2409 begin match state.currently
with
2411 state.currently
<- Idle
;
2412 state.outlines
<- Array.of_list
(List.rev l
)
2416 let cur, cmds
= state.geomcmds
in
2417 if String.length
cur = 0
2418 then failwith
"umpossible";
2420 begin match List.rev cmds
with
2422 state.geomcmds
<- "", [];
2426 state.geomcmds
<- s, List.rev rest
;
2428 if conf.maxwait
= None
&& not
!wtmode
2429 then G.postRedisplay "continue";
2431 | "title" :: args :: [] ->
2434 | "msg" :: args :: [] ->
2437 | "vmsg" :: args :: [] ->
2439 then showtext ' '
args
2441 | "emsg" :: args :: [] ->
2442 Buffer.add_string
state.errmsgs
args;
2443 state.newerrmsgs
<- true;
2444 G.postRedisplay "error message"
2446 | "progress" :: args :: [] ->
2447 let progress, text =
2450 f, String.sub
args pos
(String.length
args - pos
))
2453 state.progress <- progress;
2454 G.postRedisplay "progress"
2456 | "firstmatch" :: args :: [] ->
2457 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2458 scan args "%u %d %f %f %f %f %f %f %f %f"
2459 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2460 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2462 let y = (getpagey pageno) + truncate
y0 in
2465 state.rects1
<- [pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)]
2467 | "match" :: args :: [] ->
2468 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2469 scan args "%u %d %f %f %f %f %f %f %f %f"
2470 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2471 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2474 (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) :: state.rects1
2476 | "page" :: args :: [] ->
2477 let pageopaque, t
= scan args "%s %f" (fun p t
-> p
, t
) in
2478 begin match state.currently
with
2479 | Loading
(l
, gen
) ->
2480 vlog "page %d took %f sec" l
.pageno t
;
2481 Hashtbl.replace
state.pagemap
(l
.pageno, gen
) pageopaque;
2482 begin match state.throttle
with
2484 let preloadedpages =
2486 then preloadlayout state.y
2491 List.fold_left
(fun s l
-> IntSet.add l
.pageno s)
2492 IntSet.empty
preloadedpages
2495 Hashtbl.fold (fun ((pageno, _) as key) opaque
accu ->
2496 if not
(IntSet.mem
pageno set)
2498 wcmd "freepage %s" opaque
;
2504 List.iter
(Hashtbl.remove
state.pagemap
) evictedpages;
2507 state.currently
<- Idle
;
2510 tilepage l
.pageno pageopaque state.layout;
2512 load preloadedpages;
2513 if pagevisible state.layout l
.pageno
2514 && layoutready state.layout
2515 then G.postRedisplay "page";
2518 | Some
(layout, _, _) ->
2519 state.currently
<- Idle
;
2520 tilepage l
.pageno pageopaque layout;
2525 dolog
"Inconsistent loading state";
2526 logcurrently state.currently
;
2530 | "tile" :: args :: [] ->
2531 let (x, y, opaque
, size
, t
) =
2532 scan args "%u %u %s %u %f"
2533 (fun x y p size t
-> (x, y, p
, size
, t
))
2535 begin match state.currently
with
2536 | Tiling
(l
, pageopaque, cs
, angle
, gen
, col, row, tilew
, tileh
) ->
2537 vlog "tile %d [%d,%d] took %f sec" l
.pageno col row t
;
2540 if tilew
!= conf.tilew
|| tileh
!= conf.tileh
2542 wcmd "freetile %s" opaque
;
2543 state.currently
<- Idle
;
2547 puttileopaque l
col row gen cs angle opaque size t
;
2548 state.memused
<- state.memused
+ size
;
2549 state.uioh#infochanged Memused
;
2551 Queue.push
((l
.pageno, gen
, cs
, angle
, l
.pagew
, l
.pageh
, col, row),
2552 opaque
, size
) state.tilelru
;
2555 match state.throttle
with
2556 | None
-> state.layout
2557 | Some
(layout, _, _) -> layout
2560 state.currently
<- Idle
;
2562 && conf.colorspace
= cs
2563 && conf.angle
= angle
2564 && tilevisible layout l
.pageno x y
2565 then conttiling l
.pageno pageopaque;
2567 begin match state.throttle
with
2569 preload state.layout;
2571 && conf.colorspace
= cs
2572 && conf.angle
= angle
2573 && tilevisible state.layout l
.pageno x y
2574 && (not
!wtmode || layoutready state.layout)
2575 then G.postRedisplay "tile nothrottle";
2577 | Some
(layout, y, _) ->
2578 let ready = layoutready layout in
2582 state.layout <- layout;
2583 state.throttle
<- None
;
2584 G.postRedisplay "throttle";
2591 dolog
"Inconsistent tiling state";
2592 logcurrently state.currently
;
2596 | "pdim" :: args :: [] ->
2598 scan args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2600 state.uioh#infochanged Pdim
;
2601 state.pdims
<- pdim :: state.pdims
2603 | "o" :: args :: [] ->
2604 let (l
, n, t
, h, pos
) =
2605 scan args "%u %u %d %u %n"
2606 (fun l
n t
h pos
-> l
, n, t
, h, pos
)
2608 let s = String.sub
args pos
(String.length
args - pos
) in
2609 let outline = (s, l
, (n, float t
/. float h, 0.0)) in
2610 begin match state.currently
with
2611 | Outlining outlines
->
2612 state.currently
<- Outlining
(outline :: outlines
)
2614 state.currently
<- Outlining
[outline]
2616 dolog
"invalid outlining state";
2617 logcurrently currently
2620 | "a" :: args :: [] ->
2622 scan args "%u %d %d" (fun n l t
-> n, l
, t
)
2624 state.reprf
<- (fun () -> gotopagexy n (float l
) (float t
))
2626 | "info" :: args :: [] ->
2627 state.docinfo
<- (1, args) :: state.docinfo
2629 | "infoend" :: [] ->
2630 state.uioh#infochanged Docinfo
;
2631 state.docinfo
<- List.rev
state.docinfo
2634 failwith
(Printf.sprintf
"unknown cmd `%S'" cmds
)
2639 let action = function
2640 | HCprev
-> cbget cb ~
-1
2641 | HCnext
-> cbget cb
1
2642 | HCfirst
-> cbget cb ~
-(cb
.rc)
2643 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
2644 and cancel
() = cb
.rc <- rc
2648 let search pattern forward
=
2649 if String.length pattern
> 0
2652 match state.layout with
2655 l
.pageno, (l
.pagey + if forward
then 0 else 0*l
.pagevh)
2657 wcmd "search %d %d %d %d,%s\000"
2658 (btod conf.icase
) pn py (btod forward
) pattern
;
2661 let intentry text key =
2663 if key >= 32 && key < 127
2669 let text = addchar text c in
2673 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2677 let linknentry text key =
2679 if key >= 32 && key < 127
2685 let text = addchar text c in
2689 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2694 if String.length
s > 0
2697 let l = String.length
s in
2698 let rec loop pos
n = if pos
= l then n else
2699 let m = Char.code
s.[pos
] - (if pos
= 0 && l > 1 then 96 else 97) in
2700 loop (pos
+1) (n*26 + m)
2703 let rec loop n = function
2706 match getopaque l.pageno with
2707 | None
-> loop n rest
2709 let m = getlinkcount opaque
in
2712 let under = getlink opaque
n in
2715 else loop (n-m) rest
2717 loop n state.layout;
2721 let textentry text key =
2722 if key land 0xff00 = 0xff00
2724 else TEcont
(text ^ toutf8
key)
2727 let reqlayout angle fitmodel
=
2728 match state.throttle
with
2730 if nogeomcmds state.geomcmds
2731 then state.anchor <- getanchor ();
2732 conf.angle
<- angle
mod 360;
2735 match state.mode
with
2736 | LinkNav
_ -> state.mode
<- View
2739 conf.fitmodel
<- fitmodel
;
2740 invalidate "reqlayout"
2742 wcmd "reqlayout %d %d %f"
2743 conf.angle
(int_of_fitmodel fitmodel
) conf.zoom
);
2747 let settrim trimmargins trimfuzz
=
2748 if nogeomcmds state.geomcmds
2749 then state.anchor <- getanchor ();
2750 conf.trimmargins
<- trimmargins
;
2751 conf.trimfuzz
<- trimfuzz
;
2752 let x0, y0, x1, y1 = trimfuzz
in
2753 invalidate "settrim"
2755 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins
) x0 y0 x1 y1);
2760 match state.throttle
with
2762 let zoom = max
0.0001 zoom in
2763 if zoom <> conf.zoom
2765 state.prevzoom
<- conf.zoom;
2767 reshape state.winw
state.winh
;
2768 state.text <- Printf.sprintf
"zoom is now %-5.2f" (zoom *. 100.0);
2771 | Some
(layout, y, started
) ->
2773 match conf.maxwait
with
2777 let dt = now () -. started
in
2785 let setcolumns mode columns coverA coverB
=
2786 state.prevcolumns
<- Some
(conf.columns
, conf.zoom);
2790 then showtext '
!'
"split mode doesn't work in bird's eye"
2792 conf.columns
<- Csplit
(-columns
, [||]);
2800 conf.columns
<- Csingle
[||];
2805 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), [||]);
2809 reshape state.winw
state.winh
;
2812 let enterbirdseye () =
2813 let zoom = float conf.thumbw
/. float state.winw
in
2814 let birdseyepageno =
2815 let cy = state.winh
/ 2 in
2819 let rec fold best
= function
2822 let d = cy - (l.pagedispy + l.pagevh/2)
2823 and dbest
= cy - (best
.pagedispy + best
.pagevh/2) in
2824 if abs
d < abs dbest
2831 state.mode
<- Birdseye
(
2832 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2835 conf.presentation
<- false;
2836 conf.interpagespace
<- 10;
2837 conf.hlinks
<- false;
2838 conf.fitmodel
<- FitProportional
;
2840 state.mstate
<- Mnone
;
2841 conf.maxwait
<- None
;
2843 match conf.beyecolumns
with
2846 Cmulti
((c, 0, 0), [||])
2847 | None
-> Csingle
[||]
2849 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
2852 state.text <- Printf.sprintf
"birds eye mode on (zoom %3.1f%%)"
2857 reshape state.winw
state.winh
;
2860 let leavebirdseye (c, leftx
, pageno, _, anchor) goback
=
2862 conf.zoom <- c.zoom;
2863 conf.presentation
<- c.presentation
;
2864 conf.interpagespace
<- c.interpagespace
;
2865 conf.maxwait
<- c.maxwait
;
2866 conf.hlinks
<- c.hlinks
;
2867 conf.fitmodel
<- c.fitmodel
;
2868 conf.beyecolumns
<- (
2869 match conf.columns
with
2870 | Cmulti
((c, _, _), _) -> Some
c
2872 | Csplit
_ -> failwith
"leaving bird's eye split mode"
2875 match c.columns
with
2876 | Cmulti
(c, _) -> Cmulti
(c, [||])
2877 | Csingle
_ -> Csingle
[||]
2878 | Csplit
(c, _) -> Csplit
(c, [||])
2883 state.text <- Printf.sprintf
"birds eye mode off (zoom %3.1f%%)"
2886 reshape state.winw
state.winh
;
2887 state.anchor <- if goback
then anchor else (pageno, 0.0, 1.0);
2890 let togglebirdseye () =
2891 match state.mode
with
2892 | Birdseye vals
-> leavebirdseye vals
true
2893 | View
-> enterbirdseye ()
2897 let upbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2898 let pageno = max
0 (pageno - incr
) in
2899 let rec loop = function
2900 | [] -> gotopage1 pageno 0
2901 | l :: _ when l.pageno = pageno ->
2902 if l.pagedispy >= 0 && l.pagey = 0
2903 then G.postRedisplay "upbirdseye"
2904 else gotopage1 pageno 0
2905 | _ :: rest
-> loop rest
2908 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor)
2911 let downbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2912 let pageno = min
(state.pagecount
- 1) (pageno + incr
) in
2913 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor);
2914 let rec loop = function
2916 let y, h = getpageyh pageno in
2917 let dy = (y - state.y) - (state.winh
- h - conf.interpagespace
) in
2919 | l :: _ when l.pageno = pageno ->
2920 if l.pagevh != l.pageh
2921 then gotoy (clamp (l.pageh
- l.pagevh + conf.interpagespace
))
2922 else G.postRedisplay "downbirdseye"
2923 | _ :: rest
-> loop rest
2928 let optentry mode
_ key =
2929 let btos b = if b then "on" else "off" in
2930 if key >= 32 && key < 127
2932 let c = Char.chr
key in
2936 try conf.scrollstep
<- int_of_string
s with exc
->
2937 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2939 TEswitch
("scroll step: ", "", None
, intentry, ondone, true)
2944 conf.autoscrollstep
<- int_of_string
s;
2945 if state.autoscroll
<> None
2946 then state.autoscroll
<- Some
conf.autoscrollstep
2948 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2950 TEswitch
("auto scroll step: ", "", None
, intentry, ondone, true)
2955 let n, a, b = multicolumns_of_string s in
2956 setcolumns mode
n a b;
2958 state.text <- Printf.sprintf
"bad columns `%s': %s" s (exntos exc
)
2960 TEswitch
("columns: ", "", None
, textentry, ondone, true)
2965 let zoom = float (int_of_string
s) /. 100.0 in
2968 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2970 TEswitch
("zoom: ", "", None
, intentry, ondone, true)
2975 conf.thumbw
<- bound (int_of_string
s) 2 4096;
2977 Printf.sprintf
"thumbnail width is set to %d" conf.thumbw
;
2978 begin match mode
with
2980 leavebirdseye beye
false;
2985 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
2987 TEswitch
("thumbnail width: ", "", None
, intentry, ondone, true)
2992 Some
(int_of_string
s)
2994 state.text <- Printf.sprintf
"bad integer `%s': %s"
2998 | Some angle
-> reqlayout angle
conf.fitmodel
3001 TEswitch
("rotation: ", "", None
, intentry, ondone, true)
3004 conf.icase
<- not
conf.icase
;
3005 TEdone
("case insensitive search " ^
(btos conf.icase
))
3008 conf.preload <- not
conf.preload;
3010 TEdone
("preload " ^
(btos conf.preload))
3013 conf.verbose
<- not
conf.verbose
;
3014 TEdone
("verbose " ^
(btos conf.verbose
))
3017 conf.debug
<- not
conf.debug
;
3018 TEdone
("debug " ^
(btos conf.debug
))
3021 conf.maxhfit
<- not
conf.maxhfit
;
3022 state.maxy
<- calcheight ();
3023 TEdone
("maxhfit " ^
(btos conf.maxhfit
))
3026 conf.crophack
<- not
conf.crophack
;
3027 TEdone
("crophack " ^
btos conf.crophack
)
3031 match conf.maxwait
with
3033 conf.maxwait
<- Some infinity
;
3034 "always wait for page to complete"
3036 conf.maxwait
<- None
;
3037 "show placeholder if page is not ready"
3042 conf.underinfo
<- not
conf.underinfo
;
3043 TEdone
("underinfo " ^
btos conf.underinfo
)
3046 conf.savebmarks
<- not
conf.savebmarks
;
3047 TEdone
("persistent bookmarks " ^
btos conf.savebmarks
)
3053 match state.layout with
3058 conf.interpagespace
<- int_of_string
s;
3059 docolumns conf.columns
;
3060 state.maxy
<- calcheight ();
3061 let y = getpagey pageno in
3064 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
)
3066 TEswitch
("vertical margin: ", "", None
, intentry, ondone, true)
3070 match conf.fitmodel
with
3071 | FitProportional
-> FitWidth
3072 | _ -> FitProportional
3074 reqlayout conf.angle
fm;
3075 TEdone
("proportional display " ^
btos (fm == FitProportional
))
3078 settrim (not
conf.trimmargins
) conf.trimfuzz
;
3079 TEdone
("trim margins " ^
btos conf.trimmargins
)
3082 conf.invert
<- not
conf.invert
;
3083 TEdone
("invert colors " ^
btos conf.invert
)
3087 cbput state.hists
.sel
s;
3090 TEswitch
("selection command: ", "", Some
(onhist state.hists
.sel
),
3091 textentry, ondone, true)
3094 state.text <- Printf.sprintf
"bad option %d `%c'" key c;
3100 class type lvsource
= object
3101 method getitemcount
: int
3102 method getitem
: int -> (string * int)
3103 method hasaction
: int -> bool
3112 method getactive
: int
3113 method getfirst
: int
3114 method getqsearch
: string
3115 method setqsearch
: string -> unit
3119 class virtual lvsourcebase
= object
3120 val mutable m_active
= 0
3121 val mutable m_first
= 0
3122 val mutable m_qsearch
= ""
3123 val mutable m_pan
= 0
3124 method getactive
= m_active
3125 method getfirst
= m_first
3126 method getqsearch
= m_qsearch
3127 method getpan
= m_pan
3128 method setqsearch
s = m_qsearch
<- s
3131 let withoutlastutf8 s =
3132 let len = String.length
s in
3140 let b = Char.code
s.[pos
] in
3141 if b land 0b11000000 = 0b11000000
3146 if Char.code
s.[len-1] land 0x80 = 0
3150 String.sub
s 0 first;
3153 let textentrykeyboard
3154 key _mask
((c, text, opthist
, onkey
, ondone, cancelonempty
), onleave
) =
3156 if key >= 0xffb0 && key <= 0xffb9
3157 then key - 0xffb0 + 48 else key
3160 state.mode
<- Textentry
(te
, onleave
);
3163 G.postRedisplay "textentrykeyboard enttext";
3165 let histaction cmd
=
3168 | Some
(action, _) ->
3169 state.mode
<- Textentry
(
3170 (c, action cmd
, opthist
, onkey
, ondone, cancelonempty
), onleave
3172 G.postRedisplay "textentry histaction"
3175 | 0xff08 -> (* backspace *)
3176 let s = withoutlastutf8 text in
3177 let len = String.length
s in
3178 if cancelonempty
&& len = 0
3181 G.postRedisplay "textentrykeyboard after cancel";
3184 enttext (c, s, opthist
, onkey
, ondone, cancelonempty
)
3187 | 0xff0d | 0xff8d -> (* (kp) enter *)
3190 G.postRedisplay "textentrykeyboard after confirm"
3192 | 0xff52 | 0xff97 -> histaction HCprev
(* (kp) up *)
3193 | 0xff54 | 0xff99 -> histaction HCnext
(* (kp) down *)
3194 | 0xff50 | 0xff95 -> histaction HCfirst
(* (kp) home) *)
3195 | 0xff57 | 0xff9c -> histaction HClast
(* (kp) end *)
3197 | 0xff1b -> (* escape*)
3198 if String.length
text = 0
3200 begin match opthist
with
3202 | Some
(_, onhistcancel
) -> onhistcancel
()
3206 G.postRedisplay "textentrykeyboard after cancel2"
3209 enttext (c, "", opthist
, onkey
, ondone, cancelonempty
)
3212 | 0xff9f | 0xffff -> () (* delete *)
3215 && key land 0xff00 != 0xff00 (* keyboard *)
3216 && key land 0xfe00 != 0xfe00 (* xkb *)
3217 && key land 0xfd00 != 0xfd00 (* 3270 *)
3219 begin match onkey
text key with
3223 G.postRedisplay "textentrykeyboard after confirm2";
3226 enttext (c, text, opthist
, onkey
, ondone, cancelonempty
);
3230 G.postRedisplay "textentrykeyboard after cancel3"
3233 state.mode
<- Textentry
(te
, onleave
);
3234 G.postRedisplay "textentrykeyboard switch";
3238 vlog "unhandled key %s" (Wsi.keyname
key)
3241 let firstof first active
=
3242 if first > active
|| abs
(first - active
) > fstate.maxrows
- 1
3243 then max
0 (active
- (fstate.maxrows
/2))
3247 let calcfirst first active
=
3250 let rows = active
- first in
3251 if rows > fstate.maxrows
then active
- fstate.maxrows
else first
3255 let scrollph y maxy
=
3256 let sh = (float (maxy
+ state.winh
) /. float state.winh
) in
3257 let sh = float state.winh
/. sh in
3258 let sh = max
sh (float conf.scrollh
) in
3263 else float y /. float maxy
3265 let position = (float state.winh
-. sh) *. percent in
3268 if position +. sh > float state.winh
3269 then float state.winh
-. sh
3275 let coe s = (s :> uioh
);;
3277 class listview ~
(source
:lvsource
) ~trusted ~modehash
=
3279 val m_pan
= source#getpan
3280 val m_first
= source#getfirst
3281 val m_active
= source#getactive
3282 val m_qsearch
= source#getqsearch
3283 val m_prev_uioh
= state.uioh
3285 method private elemunder
y =
3286 let n = y / (fstate.fontsize
+1) in
3287 if m_first
+ n < source#getitemcount
3289 if source#hasaction
(m_first
+ n)
3290 then Some
(m_first
+ n)
3297 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
3298 GlDraw.color
(0., 0., 0.) ~alpha
:0.85;
3299 GlDraw.rect (0., 0.) (float state.winw
, float state.winh
);
3300 GlDraw.color
(1., 1., 1.);
3301 Gl.enable `texture_2d
;
3302 let fs = fstate.fontsize
in
3304 let ww = fstate.wwidth
in
3305 let tabw = 30.0*.ww in
3306 let itemcount = source#getitemcount
in
3308 if (row - m_first
) > fstate.maxrows
3311 if row >= 0 && row < itemcount
3313 let (s, level
) = source#getitem
row in
3314 let y = (row - m_first
) * nfs in
3315 let x = 5.0 +. float (level
+ m_pan
) *. ww in
3318 Gl.disable `texture_2d
;
3319 GlDraw.polygon_mode `both `line
;
3320 let alpha = if source#hasaction
row then 0.9 else 0.3 in
3321 GlDraw.color
(1., 1., 1.) ~
alpha;
3322 GlDraw.rect (1., float (y + 1))
3323 (float (state.winw
- conf.scrollbw
- 1), float (y + fs + 3));
3324 GlDraw.polygon_mode `both `fill
;
3325 GlDraw.color
(1., 1., 1.);
3326 Gl.enable `texture_2d
;
3329 let drawtabularstring s =
3330 let drawstr x s = drawstring1 fs (truncate
x) (y+nfs) s in
3333 let tabpos = try String.index
s '
\t'
with Not_found
-> -1 in
3336 let len = String.length
s - tabpos - 1 in
3337 let s1 = String.sub
s 0 tabpos
3338 and s2
= String.sub
s (tabpos + 1) len in
3339 let nx = drawstr x s1 in
3341 let x = x +. (max
tabw sw) in
3348 let _ = drawtabularstring s in
3355 Gl.disable `texture_2d
;
3357 method updownlevel incr
=
3358 let len = source#getitemcount
in
3360 if m_active
>= 0 && m_active
< len
3361 then snd
(source#getitem m_active
)
3365 if i
= len then i
-1 else if i
= -1 then 0 else
3366 let _, l = source#getitem i
in
3367 if l != curlevel then i
else flow (i
+incr
)
3369 let active = flow m_active
in
3370 let first = calcfirst m_first
active in
3371 G.postRedisplay "outline updownlevel";
3372 {< m_active
= active; m_first
= first >}
3374 method private key1
key mask
=
3375 let set1 active first qsearch
=
3376 coe {< m_active
= active; m_first
= first; m_qsearch
= qsearch
>}
3378 let search active pattern incr
=
3379 let active = if active = -1 then m_first
else active in
3382 if n >= 0 && n < source#getitemcount
3384 let s, _ = source#getitem
n in
3386 (try ignore
(Str.search_forward
re s 0); true
3387 with Not_found
-> false)
3389 else loop (n + incr
)
3396 let re = Str.regexp_case_fold pattern
in
3402 let itemcount = source#getitemcount
in
3403 let find start incr
=
3405 if i
= -1 || i
= itemcount
3408 if source#hasaction i
3410 else find (i
+ incr
)
3415 let set active first =
3416 let first = bound first 0 (itemcount - fstate.maxrows
) in
3418 coe {< m_active
= active; m_first
= first; m_qsearch
= "" >}
3421 let isvisible first n = n >= first && n - first <= fstate.maxrows
in
3423 let incr1 = if incr
> 0 then 1 else -1 in
3424 if isvisible m_first m_active
3427 let next = m_active
+ incr
in
3429 if next < 0 || next >= itemcount
3431 else find next incr1
3433 if next = -1 || abs
(m_active
- next) > fstate.maxrows
3439 let first = m_first
+ incr
in
3440 let first = bound first 0 (itemcount - 1) in
3442 let next = m_active
+ incr
in
3443 let next = bound next 0 (itemcount - 1) in
3446 let active = if next = -1 then m_active
else next in
3449 let first = min
next m_first
in
3451 if abs
(next - first) > fstate.maxrows
3457 let first = m_first
+ incr
in
3458 let first = bound first 0 (itemcount - 1) in
3460 let next = m_active
+ incr
in
3461 let next = bound next 0 (itemcount - 1) in
3462 let next = find next incr1 in
3464 if next = -1 || abs
(m_active
- first) > fstate.maxrows
3466 let active = if m_active
= -1 then next else m_active
in
3471 if isvisible first active
3477 G.postRedisplay "listview navigate";
3481 | (0x72|0x73) when Wsi.withctrl mask
-> (* ctrl-r/ctlr-s *)
3482 let incr = if key = 0x72 then -1 else 1 in
3484 match search (m_active
+ incr) m_qsearch
incr with
3486 state.text <- m_qsearch ^
" [not found]";
3489 state.text <- m_qsearch
;
3490 active, firstof m_first
active
3492 G.postRedisplay "listview ctrl-r/s";
3493 set1 active first m_qsearch
;
3495 | 0xff08 -> (* backspace *)
3496 if String.length m_qsearch
= 0
3499 let qsearch = withoutlastutf8 m_qsearch
in
3500 let len = String.length
qsearch in
3504 G.postRedisplay "listview empty qsearch";
3505 set1 m_active m_first
"";
3509 match search m_active
qsearch ~
-1 with
3511 state.text <- qsearch ^
" [not found]";
3514 state.text <- qsearch;
3515 active, firstof m_first
active
3517 G.postRedisplay "listview backspace qsearch";
3518 set1 active first qsearch
3521 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3522 let pattern = m_qsearch ^ toutf8
key in
3524 match search m_active
pattern 1 with
3526 state.text <- pattern ^
" [not found]";
3529 state.text <- pattern;
3530 active, firstof m_first
active
3532 G.postRedisplay "listview qsearch add";
3533 set1 active first pattern;
3535 | 0xff1b -> (* escape *)
3537 if String.length m_qsearch
= 0
3539 G.postRedisplay "list view escape";
3542 source#exit
(coe self
) true m_active m_first m_pan m_qsearch
3544 | None
-> m_prev_uioh
3549 G.postRedisplay "list view kill qsearch";
3550 source#setqsearch
"";
3551 coe {< m_qsearch
= "" >}
3554 | 0xff0d | 0xff8d -> (* (kp) enter *)
3556 let self = {< m_qsearch
= "" >} in
3557 source#setqsearch
"";
3559 G.postRedisplay "listview enter";
3560 if m_active
>= 0 && m_active
< source#getitemcount
3562 source#exit
(coe self) false m_active m_first m_pan
"";
3565 source#exit
(coe self) true m_active m_first m_pan
"";
3568 begin match opt with
3569 | None
-> m_prev_uioh
3573 | 0xff9f | 0xffff -> (* (kp) delete *)
3576 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
3577 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3578 | 0xff55 | 0xff9a -> navigate ~
-(fstate.maxrows
) (* (kp) prior *)
3579 | 0xff56 | 0xff9b -> navigate fstate.maxrows
(* (kp) next *)
3581 | 0xff53 | 0xff98 -> (* (kp) right *)
3583 G.postRedisplay "listview right";
3584 coe {< m_pan
= m_pan
- 1 >}
3586 | 0xff51 | 0xff96 -> (* (kp) left *)
3588 G.postRedisplay "listview left";
3589 coe {< m_pan
= m_pan
+ 1 >}
3591 | 0xff50 | 0xff95 -> (* (kp) home *)
3592 let active = find 0 1 in
3593 G.postRedisplay "listview home";
3596 | 0xff57 | 0xff9c -> (* (kp) end *)
3597 let first = max
0 (itemcount - fstate.maxrows
) in
3598 let active = find (itemcount - 1) ~
-1 in
3599 G.postRedisplay "listview end";
3602 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3606 dolog
"listview unknown key %#x" key; coe self
3608 method key key mask
=
3609 match state.mode
with
3610 | Textentry te
-> textentrykeyboard key mask te
; coe self
3611 | _ -> self#key1
key mask
3613 method button button down
x y _ =
3616 | 1 when x > state.winw
- conf.scrollbw
->
3617 G.postRedisplay "listview scroll";
3620 let _, position, sh = self#
scrollph in
3621 if y > truncate
position && y < truncate
(position +. sh)
3623 state.mstate
<- Mscrolly
;
3627 let s = float (max
0 (y - conf.scrollh
)) /. float state.winh
in
3628 let first = truncate
(s *. float source#getitemcount
) in
3629 let first = min source#getitemcount
first in
3630 Some
(coe {< m_first
= first; m_active
= first >})
3632 state.mstate
<- Mnone
;
3635 | 1 when not down
->
3636 begin match self#elemunder
y with
3638 G.postRedisplay "listview click";
3640 (coe {< m_active
= n >}) false n m_first m_pan m_qsearch
3644 | n when (n == 4 || n == 5) && not down
->
3645 let len = source#getitemcount
in
3647 if n = 5 && m_first
+ fstate.maxrows
>= len
3651 let first = m_first
+ (if n == 4 then -1 else 1) in
3652 bound first 0 (len - 1)
3654 G.postRedisplay "listview wheel";
3655 Some
(coe {< m_first
= first >})
3656 | n when (n = 6 || n = 7) && not down
->
3657 let inc = m_first
+ (if n = 7 then -1 else 1) in
3658 G.postRedisplay "listview hwheel";
3659 Some
(coe {< m_pan
= m_pan
+ inc >})
3664 | None
-> m_prev_uioh
3668 match state.mstate
with
3670 let s = float (max
0 (y - conf.scrollh
)) /. float state.winh
in
3671 let first = truncate
(s *. float source#getitemcount
) in
3672 let first = min source#getitemcount
first in
3673 G.postRedisplay "listview motion";
3674 coe {< m_first
= first; m_active
= first >}
3677 method pmotion
x y =
3678 if x < state.winw
- conf.scrollbw
3681 match self#elemunder
y with
3682 | None
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
; m_active
3683 | Some
n -> Wsi.setcursor
Wsi.CURSOR_INFO
; n
3687 then (G.postRedisplay "listview pmotion"; {< m_active
= n >})
3692 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3696 method infochanged
_ = ()
3698 method scrollpw
= (0, 0.0, 0.0)
3700 let nfs = fstate.fontsize
+ 1 in
3701 let y = m_first
* nfs in
3702 let itemcount = source#getitemcount
in
3703 let maxi = max
0 (itemcount - fstate.maxrows
) in
3704 let maxy = maxi * nfs in
3705 let p, h = scrollph y maxy in
3708 method modehash
= modehash
3709 method eformsgs
= false
3712 class outlinelistview ~source
=
3715 ~source
:(source
:> lvsource
)
3717 ~modehash
:(findkeyhash conf "outline")
3720 method key key mask
=
3721 let calcfirst first active =
3724 let rows = active - first in
3726 if String.length
state.text = 0
3728 else fstate.maxrows - 2
3730 if rows > maxrows then active - maxrows else first
3734 let active = m_active
+ incr in
3735 let active = bound active 0 (source#getitemcount
- 1) in
3736 let first = calcfirst m_first
active in
3737 G.postRedisplay "outline navigate";
3738 coe {< m_active
= active; m_first
= first >}
3740 let ctrl = Wsi.withctrl mask
in
3742 | 110 when ctrl -> (* ctrl-n *)
3743 source#narrow m_qsearch
;
3744 G.postRedisplay "outline ctrl-n";
3745 coe {< m_first
= 0; m_active
= 0 >}
3747 | 117 when ctrl -> (* ctrl-u *)
3749 G.postRedisplay "outline ctrl-u";
3751 coe {< m_first
= 0; m_active
= 0 >}
3753 | 108 when ctrl -> (* ctrl-l *)
3754 let first = max
0 (m_active
- (fstate.maxrows / 2)) in
3755 G.postRedisplay "outline ctrl-l";
3756 coe {< m_first
= first >}
3758 | 0xff9f | 0xffff -> (* (kp) delete *)
3759 source#remove m_active
;
3760 G.postRedisplay "outline delete";
3761 let active = max
0 (m_active
-1) in
3762 coe {< m_first
= firstof m_first
active;
3763 m_active
= active >}
3765 | 0xff52 | 0xff97 -> navigate ~
-1 (* (kp) up *)
3766 | 0xff54 | 0xff99 -> navigate 1 (* (kp) down *)
3767 | 0xff55 | 0xff9a -> (* (kp) prior *)
3768 navigate ~
-(fstate.maxrows)
3769 | 0xff56 | 0xff9b -> (* (kp) next *)
3770 navigate fstate.maxrows
3772 | 0xff53 | 0xff98 -> (* [ctrl-] (kp) right *)
3776 G.postRedisplay "outline ctrl right";
3777 {< m_pan
= m_pan
+ 1 >}
3779 else self#updownlevel
1
3783 | 0xff51 | 0xff96 -> (* [ctrl-] (kp) left *)
3787 G.postRedisplay "outline ctrl left";
3788 {< m_pan
= m_pan
- 1 >}
3790 else self#updownlevel ~
-1
3794 | 0xff50 | 0xff95 -> (* (kp) home *)
3795 G.postRedisplay "outline home";
3796 coe {< m_first
= 0; m_active
= 0 >}
3798 | 0xff57 | 0xff9c -> (* (kp) end *)
3799 let active = source#getitemcount
- 1 in
3800 let first = max
0 (active - fstate.maxrows) in
3801 G.postRedisplay "outline end";
3802 coe {< m_active
= active; m_first
= first >}
3804 | _ -> super#
key key mask
3807 let outlinesource usebookmarks
=
3810 inherit lvsourcebase
3811 val mutable m_items
= empty
3812 val mutable m_orig_items
= empty
3813 val mutable m_prev_items
= empty
3814 val mutable m_narrow_pattern
= ""
3815 val mutable m_hadremovals
= false
3817 method getitemcount
=
3818 Array.length m_items
+ (if m_hadremovals
then 1 else 0)
3821 if n == Array.length m_items
&& m_hadremovals
3823 ("[Confirm removal]", 0)
3825 let s, n, _ = m_items
.(n) in
3828 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
3829 ignore
(uioh
, first, qsearch);
3830 let confrimremoval = m_hadremovals
&& active = Array.length m_items
in
3832 if String.length m_narrow_pattern
= 0
3838 if not
confrimremoval
3840 let _, _, anchor = m_items
.(active) in
3841 gotoghyll (getanchory anchor);
3845 state.bookmarks
<- Array.to_list m_items
;
3846 m_orig_items
<- m_items
;
3849 else m_items
<- items;
3853 method hasaction
_ = true
3856 if Array.length m_items
!= Array.length m_orig_items
3857 then "Narrowed to " ^ m_narrow_pattern ^
" (ctrl-u to restore)"
3860 method narrow
pattern =
3861 let reopt = try Some
(Str.regexp_case_fold
pattern) with _ -> None
in
3865 let rec loop accu n =
3868 m_narrow_pattern
<- pattern;
3869 m_items
<- Array.of_list
accu
3872 let (s, _, _) as o = m_items
.(n) in
3874 if (try ignore
(Str.search_forward
re s 0); true
3875 with Not_found
-> false)
3881 loop [] (Array.length m_items
- 1)
3886 then Array.of_list
state.bookmarks
3889 m_items
<- m_orig_items
3894 if m >= 0 && m < Array.length m_items
3896 m_hadremovals
<- true;
3897 m_items
<- Array.init
(Array.length m_items
- 1) (fun n ->
3898 let n = if n >= m then n+1 else n in
3903 method reset
anchor items =
3904 m_hadremovals
<- false;
3905 if m_orig_items
== empty || m_prev_items
!= items
3907 m_orig_items
<- items;
3908 if String.length m_narrow_pattern
= 0
3909 then m_items
<- items;
3911 m_prev_items
<- items;
3912 let rely = getanchory anchor in
3914 let rec loop n best bestd
=
3915 if n = Array.length m_items
3918 let (_, _, anchor) = m_items
.(n) in
3919 let orely = getanchory anchor in
3920 let d = abs
(orely - rely) in
3923 else loop (n+1) best bestd
3928 m_first
<- firstof m_first
active
3932 let enterselector usebookmarks
=
3933 let source = outlinesource usebookmarks
in
3937 then Array.of_list
state.bookmarks
3940 if Array.length
outlines = 0
3942 showtext ' ' errmsg
;
3945 state.text <- source#greetmsg
;
3946 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3947 let anchor = getanchor () in
3948 source#reset
anchor outlines;
3949 state.uioh
<- coe (new outlinelistview ~
source);
3950 G.postRedisplay "enter selector";
3954 let enteroutlinemode =
3955 let f = enterselector false in
3956 fun ()-> f "Document has no outline";
3959 let enterbookmarkmode =
3960 let f = enterselector true in
3961 fun () -> f "Document has no bookmarks (yet)";
3964 let color_of_string s =
3965 Scanf.sscanf
s "%d/%d/%d" (fun r g b ->
3966 (float r /. 256.0, float g /. 256.0, float b /. 256.0)
3970 let color_to_string (r, g, b) =
3971 let r = truncate
(r *. 256.0)
3972 and g = truncate
(g *. 256.0)
3973 and b = truncate
(b *. 256.0) in
3974 Printf.sprintf
"%d/%d/%d" r g b
3977 let irect_of_string s =
3978 Scanf.sscanf
s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3981 let irect_to_string (x0,y0,x1,y1) =
3982 Printf.sprintf
"%d/%d/%d/%d" x0 y0 x1 y1
3985 let makecheckers () =
3986 (* Based on lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3988 converted by Issac Trotts. July 25, 2002 *)
3989 let image = GlPix.create `ubyte ~format
:`luminance ~width
:2 ~height
:2 in
3990 Raw.sets_string
(GlPix.to_raw
image) ~pos
:0 "\255\200\200\255";
3991 let id = GlTex.gen_texture
() in
3992 GlTex.bind_texture `texture_2d
id;
3993 GlPix.store
(`unpack_alignment
1);
3994 GlTex.image2d
image;
3995 List.iter
(GlTex.parameter ~target
:`texture_2d
)
3996 [ `mag_filter `nearest
; `min_filter `nearest
];
4000 let setcheckers enabled
=
4001 match state.texid
with
4003 if enabled
then state.texid
<- Some
(makecheckers ())
4008 GlTex.delete_texture texid
;
4009 state.texid
<- None
;
4013 let int_of_string_with_suffix s =
4014 let l = String.length
s in
4018 let suffix = Char.lowercase
s.[l-1] in
4020 | 'k'
-> String.sub
s 0 (l-1), 10
4021 | '
m'
-> String.sub
s 0 (l-1), 20
4022 | '
g'
-> String.sub
s 0 (l-1), 30
4026 let n = int_of_string
s1 in
4027 let m = n lsl shift
in
4029 then raise
(Failure
"value too large")
4033 let string_with_suffix_of_int n =
4038 if n land ((1 lsl 30) - 1) = 0
4041 if n land ((1 lsl 20) - 1) = 0
4044 if n land ((1 lsl 10) - 1) = 0
4051 let h = n mod 1000 in
4054 then string_of_int
h ^
s
4056 let s = Printf.sprintf
"_%03d%s" h s in
4063 let defghyllscroll = (40, 8, 32);;
4064 let ghyllscroll_of_string s =
4065 let (n, a, b) as nab
=
4068 else Scanf.sscanf
s "%u,%u,%u" (fun n a b -> n, a, b)
4070 if n <= a || n <= b || a >= b
4071 then failwith
"invalid ghyll N,A,B (N <= A, A < B, N <= B)";
4075 let ghyllscroll_to_string ((n, a, b) as nab
) =
4076 if nab
= defghyllscroll
4078 else Printf.sprintf
"%d,%d,%d" n a b;
4081 let describe_location () =
4082 let fn = page_of_y state.y in
4083 let ln = page_of_y (state.y + state.winh
- state.hscrollh - 1) in
4084 let maxy = state.maxy - (if conf.maxhfit
then state.winh
else 0) in
4088 else (100. *. (float state.y /. float maxy))
4092 Printf.sprintf
"page %d of %d [%.2f%%]"
4093 (fn+1) state.pagecount
percent
4096 "pages %d-%d of %d [%.2f%%]"
4097 (fn+1) (ln+1) state.pagecount
percent
4100 let setpresentationmode v
=
4101 let n = page_of_y state.y in
4102 state.anchor <- (n, 0.0, 1.0);
4103 conf.presentation
<- v
;
4104 if conf.presentation
4106 if not
conf.scrollbarinpm
4107 then state.scrollw
<- 0;
4109 else state.scrollw
<- conf.scrollbw
;
4114 let btos b = if b then "\xe2\x88\x9a" else "" in
4115 let showextended = ref false in
4116 let leave mode
= function
4117 | Confirm
-> state.mode
<- mode
4118 | Cancel
-> state.mode
<- mode
in
4121 val mutable m_first_time
= true
4122 val mutable m_l
= []
4123 val mutable m_a
= [||]
4124 val mutable m_prev_uioh
= nouioh
4125 val mutable m_prev_mode
= View
4127 inherit lvsourcebase
4129 method reset prev_mode prev_uioh
=
4130 m_a
<- Array.of_list
(List.rev m_l
);
4132 m_prev_mode
<- prev_mode
;
4133 m_prev_uioh
<- prev_uioh
;
4137 if n >= Array.length m_a
4141 | _, _, _, Action
_ -> m_active
<- n
4145 m_first_time
<- false;
4148 method int name get
set =
4150 (name
, `
int get
, 1, Action
(
4153 try set (int_of_string
s)
4155 state.text <- Printf.sprintf
"bad integer `%s': %s"
4159 let te = name ^
": ", "", None
, intentry, ondone, true in
4160 state.mode
<- Textentry
(te, leave m_prev_mode
);
4164 method int_with_suffix name get
set =
4166 (name
, `intws get
, 1, Action
(
4169 try set (int_of_string_with_suffix s)
4171 state.text <- Printf.sprintf
"bad integer `%s': %s"
4176 name ^
": ", "", None
, intentry_with_suffix, ondone, true
4178 state.mode
<- Textentry
(te, leave m_prev_mode
);
4182 method bool ?
(offset
=1) ?
(btos=btos) name get
set =
4184 (name
, `
bool (btos, get
), offset
, Action
(
4191 method color name get
set =
4193 (name
, `color get
, 1, Action
(
4195 let invalid = (nan
, nan
, nan
) in
4198 try color_of_string s
4200 state.text <- Printf.sprintf
"bad color `%s': %s"
4207 let te = name ^
": ", "", None
, textentry, ondone, true in
4208 state.text <- color_to_string (get
());
4209 state.mode
<- Textentry
(te, leave m_prev_mode
);
4213 method string name get
set =
4215 (name
, `
string get
, 1, Action
(
4217 let ondone s = set s in
4218 let te = name ^
": ", "", None
, textentry, ondone, true in
4219 state.mode
<- Textentry
(te, leave m_prev_mode
);
4223 method colorspace name get
set =
4225 (name
, `
string get
, 1, Action
(
4228 let vals = [| "rgb"; "bgr"; "gray" |] in
4230 inherit lvsourcebase
4233 m_active
<- int_of_colorspace conf.colorspace
;
4236 method getitemcount
= Array.length
vals
4237 method getitem
n = (vals.(n), 0)
4238 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4239 ignore
(uioh
, first, pan
, qsearch);
4240 if not cancel
then set active;
4242 method hasaction
_ = true
4246 let modehash = findkeyhash conf "info" in
4247 coe (new listview ~
source ~trusted
:true ~
modehash)
4250 method fitmodel name get
set =
4252 (name
, `
string get
, 1, Action
(
4255 let vals = [| "fit width"; "proportional"; "fit page" |] in
4257 inherit lvsourcebase
4260 m_active
<- int_of_fitmodel conf.fitmodel
;
4263 method getitemcount
= Array.length
vals
4264 method getitem
n = (vals.(n), 0)
4265 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4266 ignore
(uioh
, first, pan
, qsearch);
4267 if not cancel
then set active;
4269 method hasaction
_ = true
4273 let modehash = findkeyhash conf "info" in
4274 coe (new listview ~
source ~trusted
:true ~
modehash)
4277 method caption
s offset
=
4278 m_l
<- (s, `
empty, offset
, Noaction
) :: m_l
4280 method caption2
s f offset
=
4281 m_l
<- (s, `
string f, offset
, Noaction
) :: m_l
4283 method getitemcount
= Array.length m_a
4286 let tostr = function
4287 | `
int f -> string_of_int
(f ())
4288 | `intws
f -> string_with_suffix_of_int (f ())
4290 | `color
f -> color_to_string (f ())
4291 | `
bool (btos, f) -> btos (f ())
4294 let name, t
, offset
, _ = m_a
.(n) in
4295 ((let s = tostr t
in
4296 if String.length
s > 0
4297 then Printf.sprintf
"%s\t%s" name s
4301 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4305 m_qsearch
<- qsearch;
4307 match m_a
.(active) with
4308 | _, _, _, Action
f -> f uioh
4320 method hasaction
n =
4322 | _, _, _, Action
_ -> true
4326 let rec fillsrc prevmode prevuioh
=
4327 let sep () = src#caption
"" 0 in
4328 let colorp name get
set =
4330 (fun () -> color_to_string (get
()))
4333 let c = color_of_string v in
4336 state.text <- Printf.sprintf
"bad color `%s': %s" v (exntos exn
)
4339 let oldmode = state.mode
in
4340 let birdseye = isbirdseye state.mode
in
4342 src#caption
(if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4344 src#
bool "presentation mode"
4345 (fun () -> conf.presentation
)
4346 (fun v -> setpresentationmode v);
4348 src#
bool "ignore case in searches"
4349 (fun () -> conf.icase
)
4350 (fun v -> conf.icase
<- v);
4353 (fun () -> conf.preload)
4354 (fun v -> conf.preload <- v);
4356 src#
bool "highlight links"
4357 (fun () -> conf.hlinks
)
4358 (fun v -> conf.hlinks
<- v);
4360 src#
bool "under info"
4361 (fun () -> conf.underinfo
)
4362 (fun v -> conf.underinfo
<- v);
4364 src#
bool "persistent bookmarks"
4365 (fun () -> conf.savebmarks
)
4366 (fun v -> conf.savebmarks
<- v);
4368 src#fitmodel
"fit model"
4369 (fun () -> fitmodel_to_string conf.fitmodel
)
4370 (fun v -> reqlayout conf.angle
(fitmodel_of_int v));
4372 src#
bool "trim margins"
4373 (fun () -> conf.trimmargins
)
4374 (fun v -> settrim v conf.trimfuzz
; fillsrc prevmode prevuioh
);
4376 src#
bool "persistent location"
4377 (fun () -> conf.jumpback
)
4378 (fun v -> conf.jumpback
<- v);
4381 src#
int "inter-page space"
4382 (fun () -> conf.interpagespace
)
4384 conf.interpagespace
<- n;
4385 docolumns conf.columns
;
4387 match state.layout with
4392 state.maxy <- calcheight ();
4393 let y = getpagey pageno in
4398 (fun () -> conf.pagebias
)
4399 (fun v -> conf.pagebias
<- v);
4401 src#
int "scroll step"
4402 (fun () -> conf.scrollstep
)
4403 (fun n -> conf.scrollstep
<- n);
4405 src#
int "horizontal scroll step"
4406 (fun () -> conf.hscrollstep
)
4407 (fun v -> conf.hscrollstep
<- v);
4409 src#
int "auto scroll step"
4411 match state.autoscroll
with
4413 | _ -> conf.autoscrollstep
)
4415 if state.autoscroll
<> None
4416 then state.autoscroll
<- Some
n;
4417 conf.autoscrollstep
<- n);
4420 (fun () -> truncate
(conf.zoom *. 100.))
4421 (fun v -> setzoom ((float v) /. 100.));
4424 (fun () -> conf.angle
)
4425 (fun v -> reqlayout v conf.fitmodel
);
4427 src#
int "scroll bar width"
4428 (fun () -> state.scrollw
)
4432 reshape state.winw
state.winh
;
4435 src#
int "scroll handle height"
4436 (fun () -> conf.scrollh
)
4437 (fun v -> conf.scrollh
<- v;);
4439 src#
int "thumbnail width"
4440 (fun () -> conf.thumbw
)
4442 conf.thumbw
<- min
4096 v;
4445 leavebirdseye beye
false;
4450 let mode = state.mode in
4451 src#
string "columns"
4453 match conf.columns
with
4455 | Cmulti
(multi
, _) -> multicolumns_to_string multi
4456 | Csplit
(count
, _) -> "-" ^ string_of_int count
4459 let n, a, b = multicolumns_of_string v in
4460 setcolumns mode n a b);
4463 src#caption
"Presentation mode" 0;
4464 src#
bool "scrollbar visible"
4465 (fun () -> conf.scrollbarinpm
)
4467 if v != conf.scrollbarinpm
4469 conf.scrollbarinpm
<- v;
4470 if conf.presentation
4472 state.scrollw
<- if v then conf.scrollbw
else 0;
4473 reshape state.winw
state.winh
;
4479 src#caption
"Pixmap cache" 0;
4480 src#int_with_suffix
"size (advisory)"
4481 (fun () -> conf.memlimit
)
4482 (fun v -> conf.memlimit
<- v);
4485 (fun () -> Printf.sprintf
"%s bytes, %d tiles"
4486 (string_with_suffix_of_int state.memused
)
4487 (Hashtbl.length
state.tilemap
)) 1;
4490 src#caption
"Layout" 0;
4491 src#caption2
"Dimension"
4493 Printf.sprintf
"%dx%d (virtual %dx%d)"
4494 state.winw
state.winh
4499 src#caption2
"Position" (fun () ->
4500 Printf.sprintf
"%dx%d" state.x state.y
4503 src#caption2
"Position" (fun () -> describe_location ()) 1
4507 src#
bool ~offset
:0 ~
btos:(fun v -> if v then "(on)" else "(off)")
4508 "Save these parameters as global defaults at exit"
4509 (fun () -> conf.bedefault
)
4510 (fun v -> conf.bedefault
<- v)
4514 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4515 src#
bool ~offset
:0 ~
btos "Extended parameters"
4516 (fun () -> !showextended)
4517 (fun v -> showextended := v; fillsrc prevmode prevuioh
);
4521 (fun () -> conf.checkers
)
4522 (fun v -> conf.checkers
<- v; setcheckers v);
4523 src#
bool "update cursor"
4524 (fun () -> conf.updatecurs
)
4525 (fun v -> conf.updatecurs
<- v);
4527 (fun () -> conf.verbose
)
4528 (fun v -> conf.verbose
<- v);
4529 src#
bool "invert colors"
4530 (fun () -> conf.invert
)
4531 (fun v -> conf.invert
<- v);
4533 (fun () -> conf.maxhfit
)
4534 (fun v -> conf.maxhfit
<- v);
4535 src#
bool "redirect stderr"
4536 (fun () -> conf.redirectstderr)
4537 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4538 src#
string "uri launcher"
4539 (fun () -> conf.urilauncher
)
4540 (fun v -> conf.urilauncher
<- v);
4541 src#
string "path launcher"
4542 (fun () -> conf.pathlauncher
)
4543 (fun v -> conf.pathlauncher
<- v);
4544 src#
string "tile size"
4545 (fun () -> Printf.sprintf
"%dx%d" conf.tilew
conf.tileh
)
4548 let w, h = Scanf.sscanf
v "%dx%d" (fun w h -> w, h) in
4549 conf.tilew
<- max
64 w;
4550 conf.tileh
<- max
64 h;
4553 state.text <- Printf.sprintf
"bad tile size `%s': %s"
4556 src#
int "texture count"
4557 (fun () -> conf.texcount
)
4560 then conf.texcount
<- v
4561 else showtext '
!'
" Failed to set texture count please retry later"
4563 src#
int "slice height"
4564 (fun () -> conf.sliceheight
)
4566 conf.sliceheight
<- v;
4567 wcmd "sliceh %d" conf.sliceheight
;
4569 src#
int "anti-aliasing level"
4570 (fun () -> conf.aalevel
)
4572 conf.aalevel
<- bound v 0 8;
4573 state.anchor <- getanchor ();
4574 opendoc state.path
state.password
;
4576 src#
string "page scroll scaling factor"
4577 (fun () -> string_of_float
conf.pgscale)
4580 let s = float_of_string
v in
4583 state.text <- Printf.sprintf
4584 "bad page scroll scaling factor `%s': %s" v (exntos exn
)
4587 src#
int "ui font size"
4588 (fun () -> fstate.fontsize
)
4589 (fun v -> setfontsize (bound v 5 100));
4590 src#
int "hint font size"
4591 (fun () -> conf.hfsize
)
4592 (fun v -> conf.hfsize
<- bound v 5 100);
4593 colorp "background color"
4594 (fun () -> conf.bgcolor
)
4595 (fun v -> conf.bgcolor
<- v);
4596 src#
bool "crop hack"
4597 (fun () -> conf.crophack
)
4598 (fun v -> conf.crophack
<- v);
4599 src#
string "trim fuzz"
4600 (fun () -> irect_to_string conf.trimfuzz
)
4603 conf.trimfuzz
<- irect_of_string v;
4605 then settrim true conf.trimfuzz
;
4607 state.text <- Printf.sprintf
"bad irect `%s': %s" v (exntos exn
)
4609 src#
string "throttle"
4611 match conf.maxwait
with
4612 | None
-> "show place holder if page is not ready"
4615 then "wait for page to fully render"
4617 "wait " ^ string_of_float
time
4618 ^
" seconds before showing placeholder"
4622 let f = float_of_string
v in
4624 then conf.maxwait
<- None
4625 else conf.maxwait
<- Some
f
4627 state.text <- Printf.sprintf
"bad time `%s': %s" v (exntos exn
)
4629 src#
string "ghyll scroll"
4631 match conf.ghyllscroll
with
4633 | Some nab
-> ghyllscroll_to_string nab
4638 if String.length
v = 0
4640 else Some
(ghyllscroll_of_string v)
4642 conf.ghyllscroll
<- gs
4644 state.text <- Printf.sprintf
"bad ghyll `%s': %s" v (exntos exn
)
4646 src#
string "selection command"
4647 (fun () -> conf.selcmd
)
4648 (fun v -> conf.selcmd
<- v);
4649 src#
string "synctex command"
4650 (fun () -> conf.stcmd
)
4651 (fun v -> conf.stcmd
<- v);
4652 src#colorspace
"color space"
4653 (fun () -> colorspace_to_string conf.colorspace
)
4655 conf.colorspace
<- colorspace_of_int v;
4662 (fun () -> conf.usepbo
)
4663 (fun v -> conf.usepbo
<- v);
4664 src#
bool "mouse wheel scrolls pages"
4665 (fun () -> conf.wheelbypage
)
4666 (fun v -> conf.wheelbypage
<- v);
4670 src#caption
"Document" 0;
4671 List.iter
(fun (_, s) -> src#caption
s 1) state.docinfo
;
4672 src#caption2
"Pages"
4673 (fun () -> string_of_int
state.pagecount
) 1;
4674 src#caption2
"Dimensions"
4675 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4679 src#caption
"Trimmed margins" 0;
4680 src#caption2
"Dimensions"
4681 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4685 src#caption
"OpenGL" 0;
4686 src#caption
(Printf.sprintf
"Vendor\t%s" (GlMisc.get_string `vendor
)) 1;
4687 src#caption
(Printf.sprintf
"Renderer\t%s" (GlMisc.get_string `renderer
)) 1;
4688 src#reset prevmode prevuioh
;
4692 let prevmode = state.mode
4693 and prevuioh
= state.uioh in
4694 fillsrc prevmode prevuioh
;
4695 let source = (src :> lvsource
) in
4696 let modehash = findkeyhash conf "info" in
4697 state.uioh <- coe (object (self)
4698 inherit listview ~
source ~trusted
:true ~
modehash as super
4699 val mutable m_prevmemused
= 0
4700 method infochanged
= function
4702 if m_prevmemused
!= state.memused
4704 m_prevmemused
<- state.memused
;
4705 G.postRedisplay "memusedchanged";
4707 | Pdim
-> G.postRedisplay "pdimchanged"
4708 | Docinfo
-> fillsrc prevmode prevuioh
4710 method key key mask
=
4711 if not
(Wsi.withctrl mask
)
4714 | 0xff51 | 0xff96 -> coe (self#updownlevel ~
-1) (* (kp) left *)
4715 | 0xff53 | 0xff98 -> coe (self#updownlevel
1) (* (kp) right *)
4716 | _ -> super#
key key mask
4717 else super#
key key mask
4719 G.postRedisplay "info";
4725 inherit lvsourcebase
4726 method getitemcount
= Array.length
state.help
4728 let s, l, _ = state.help
.(n) in
4731 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4735 m_qsearch
<- qsearch;
4736 match state.help
.(active) with
4737 | _, _, Action
f -> Some
(f uioh)
4747 method hasaction
n =
4748 match state.help
.(n) with
4749 | _, _, Action
_ -> true
4756 let modehash = findkeyhash conf "help" in
4757 state.uioh <- coe (new listview ~
source ~trusted
:true ~
modehash);
4758 G.postRedisplay "help";
4763 let re = Str.regexp
"[\r\n]" in
4765 inherit lvsourcebase
4766 val mutable m_items
= [||]
4768 method getitemcount
= 1 + Array.length m_items
4773 else m_items
.(n-1), 0
4775 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4780 then Buffer.clear
state.errmsgs
;
4781 m_qsearch
<- qsearch;
4788 method hasaction
n =
4792 state.newerrmsgs
<- false;
4793 let l = Str.split
re (Buffer.contents
state.errmsgs
) in
4794 m_items
<- Array.of_list
l
4802 let source = (msgsource :> lvsource
) in
4803 let modehash = findkeyhash conf "listview" in
4804 state.uioh <- coe (object
4805 inherit listview ~
source ~trusted
:false ~
modehash as super
4808 then msgsource#reset
;
4811 G.postRedisplay "msgs";
4814 let quickbookmark ?title
() =
4815 match state.layout with
4821 let sec = Unix.gettimeofday
() in
4822 let tm = Unix.localtime
sec in
4823 Printf.sprintf
"Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4827 (tm.Unix.tm_year
+ 1900)
4830 | Some
title -> title
4832 state.bookmarks
<- (title, 0, getanchor1 l) :: state.bookmarks
4835 let setautoscrollspeed step goingdown
=
4836 let incr = max
1 ((abs step
) / 2) in
4837 let incr = if goingdown
then incr else -incr in
4838 let astep = step
+ incr in
4839 state.autoscroll
<- Some
astep;
4842 let gotounder = function
4843 | Ulinkgoto
(pageno, top) ->
4847 gotopage1 pageno top;
4853 | Uremote
(filename
, pageno) ->
4855 if Sys.file_exists filename
4858 let dir = Filename.dirname
state.path in
4859 let path = Filename.concat
dir filename
in
4860 if Sys.file_exists
path
4864 if String.length
path > 0
4866 let anchor = getanchor () in
4867 let ranchor = state.path, state.password
, anchor, state.origin
in
4869 state.anchor <- (pageno, 0.0, 0.0);
4870 state.ranchors
<- ranchor :: state.ranchors
;
4873 else showtext '
!'
("Could not find " ^ filename
)
4875 | Uunexpected
_ | Ulaunch
_ | Unamed
_ | Utext
_ | Unone
-> ()
4879 match conf.columns
with
4881 | _ -> state.x != 0 || conf.zoom > 1.0
4884 let existsinrow pageno (columns
, coverA
, coverB
) p =
4885 let last = ((pageno - coverA
) mod columns
) + columns
in
4886 let rec any = function
4889 if l.pageno = coverA
- 1 || l.pageno = state.pagecount
- coverB
4893 then (if l.pageno = last then false else any rest
)
4901 match state.layout with
4903 let pageno = page_of_y state.y in
4904 gotoghyll (getpagey (pageno+1))
4906 match conf.columns
with
4908 if conf.presentation
&& rest
== [] && l.pageh
> l.pagey + l.pagevh
4910 let y = clamp (pgscale state.winh
) in
4913 let pageno = min
(l.pageno+1) (state.pagecount
-1) in
4914 gotoghyll (getpagey pageno)
4915 | Cmulti
((c, _, _) as cl, _) ->
4916 if conf.presentation
4917 && (existsinrow l.pageno cl
4918 (fun l -> l.pageh
> l.pagey + l.pagevh))
4920 let y = clamp (pgscale state.winh
) in
4923 let pageno = min
(l.pageno+c) (state.pagecount
-1) in
4924 gotoghyll (getpagey pageno)
4926 if l.pageno < state.pagecount
- 1 || l.pagecol
< n - 1
4928 let pagey, pageh
= getpageyh l.pageno in
4929 let pagey = pagey + pageh
* l.pagecol
in
4930 let ips = if l.pagecol
= 0 then 0 else conf.interpagespace
in
4931 gotoghyll (pagey + pageh
+ ips)
4935 match state.layout with
4937 let pageno = page_of_y state.y in
4938 gotoghyll (getpagey (pageno-1))
4940 match conf.columns
with
4942 if conf.presentation
&& l.pagey != 0
4944 gotoghyll (clamp (pgscale ~
-(state.winh
)))
4946 let pageno = max
0 (l.pageno-1) in
4947 gotoghyll (getpagey pageno)
4948 | Cmulti
((c, _, coverB
) as cl, _) ->
4949 if conf.presentation
&&
4950 (existsinrow l.pageno cl (fun l -> l.pagey != 0))
4952 gotoghyll (clamp (pgscale ~
-(state.winh
)))
4955 if l.pageno = state.pagecount
- coverB
4959 let pageno = max
0 (l.pageno-decr) in
4960 gotoghyll (getpagey pageno)
4968 let pageno = max
0 (l.pageno-1) in
4969 let pagey, pageh
= getpageyh pageno in
4972 let pagey, pageh
= getpageyh l.pageno in
4973 pagey + pageh
* (l.pagecol
-1) - conf.interpagespace
4978 let viewkeyboard key mask
=
4980 let mode = state.mode in
4981 state.mode <- Textentry
(te, fun _ -> state.mode <- mode);
4984 G.postRedisplay "view:enttext"
4986 let ctrl = Wsi.withctrl mask
in
4988 if key >= 0xffb0 && key < 0xffb9 then key - 0xffb0 + 48 else key
4994 | 0xff63 -> (* insert *)
4995 if conf.angle
mod 360 = 0 && not
(isbirdseye state.mode)
4997 state.mode <- LinkNav
(Ltgendir
0);
5000 else showtext '
!'
"Keyboard link navigation does not work under rotation"
5002 | 0xff1b | 113 -> (* escape / q *)
5003 begin match state.mstate
with
5005 state.mstate
<- Mnone
;
5006 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5007 G.postRedisplay "kill zoom rect";
5009 begin match state.mode with
5012 G.postRedisplay "esc leave linknav"
5014 match state.ranchors
with
5016 | (path, password
, anchor, origin
) :: rest
->
5017 state.ranchors
<- rest
;
5018 state.anchor <- anchor;
5019 state.origin
<- origin
;
5020 opendoc path password
5024 | 0xff08 -> (* backspace *)
5025 gotoghyll (getnav ~
-1)
5033 G.postRedisplay "dehighlight";
5035 | 47 | 63 -> (* / ? *)
5036 let ondone isforw
s =
5037 cbput state.hists
.pat
s;
5038 state.searchpattern
<- s;
5041 let s = String.create
1 in
5042 s.[0] <- Char.chr
key;
5043 enttext (s, "", Some
(onhist state.hists
.pat
),
5044 textentry, ondone (key = 47), true)
5046 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
5047 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
5048 setzoom (conf.zoom +. incr)
5050 | 43 | 0xffab -> (* + *)
5053 try int_of_string
s with exc
->
5054 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
5060 state.text <- "page bias is now " ^ string_of_int
n;
5063 enttext ("page bias: ", "", None
, intentry, ondone, true)
5065 | 45 | 0xffad when ctrl -> (* ctrl-- *)
5066 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
5067 setzoom (max
0.01 (conf.zoom -. decr))
5069 | 45 | 0xffad -> (* - *)
5070 let ondone msg
= state.text <- msg
in
5072 "option [acfhilpstvxACFPRSZTIS]: ", "", None
,
5073 optentry state.mode, ondone, true
5076 | 48 when ctrl -> (* ctrl-0 *)
5081 if state.w <= state.winw
- state.scrollw
5089 | (49 | 50) when ctrl -> (* ctrl-1/2 *)
5091 match conf.columns
with
5092 | Csingle
_ | Cmulti
_ -> 1
5093 | Csplit
(n, _) -> n
5095 let h = state.winh
-
5096 conf.interpagespace
lsl (if conf.presentation
then 1 else 0)
5098 let zoom = zoomforh
state.winw
h state.scrollw
cols in
5099 if zoom > 0.0 && (key = 50 || zoom < 1.0)
5102 | 51 when ctrl -> (* ctrl-3 *)
5104 match conf.fitmodel
with
5105 | FitWidth
-> FitProportional
5106 | FitProportional
-> FitPage
5107 | FitPage
-> FitWidth
5109 state.text <- "fit model: " ^
fitmodel_to_string fm;
5110 reqlayout conf.angle
fm
5112 | 0xffc6 -> (* f9 *)
5115 | 57 when ctrl -> (* ctrl-9 *)
5118 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
5119 when not
ctrl -> (* 0..9 *)
5122 try int_of_string
s with exc
->
5123 state.text <- Printf.sprintf
"bad integer `%s': %s" s (exntos exc
);
5129 cbput state.hists
.pag
(string_of_int
n);
5130 gotopage1 (n + conf.pagebias
- 1) 0;
5133 let pageentry text key =
5134 match Char.unsafe_chr
key with
5135 | '
g'
-> TEdone
text
5136 | _ -> intentry text key
5138 let text = "x" in text.[0] <- Char.chr
key;
5139 enttext (":", text, Some
(onhist state.hists
.pag
), pageentry, ondone, true)
5142 state.scrollw
<- if state.scrollw
> 0 then 0 else conf.scrollbw
;
5143 reshape state.winw
state.winh
;
5146 conf.hlinks
<- not
conf.hlinks
;
5147 state.text <- "highlightlinks " ^
if conf.hlinks
then "on" else "off";
5148 G.postRedisplay "toggle highlightlinks";
5151 state.glinks
<- true;
5152 let mode = state.mode in
5153 state.mode <- Textentry
(
5154 (":", "", None
, linknentry, linkndone gotounder, false),
5156 state.glinks
<- false;
5160 G.postRedisplay "view:linkent(F)"
5163 state.glinks
<- true;
5164 let mode = state.mode in
5165 state.mode <- Textentry
(
5166 (":", "", None
, linknentry, linkndone (fun under ->
5167 match Ne.pipe () with
5169 showtext '
!'
(Printf.sprintf
"pipe failed: %s" (exntos exn
))
5172 try popen conf.selcmd
[r, 0; w, -1]; true
5175 (Printf.sprintf
"failed to execute %s: %s"
5176 conf.selcmd
(exntos exn
));
5180 Ne.clo fd
(fun msg
->
5181 showtext '
!'
(Printf.sprintf
"failed to close %s: %s" cap msg
)
5184 let s = undertext under in
5188 let l = String.length
s in
5189 let n = tempfailureretry
(Unix.write
w s 0) l in
5194 "failed to write %d characters to sel pipe, wrote %d"
5199 (Printf.sprintf
"failed to write to sel pipe: %s"
5209 state.glinks
<- false;
5213 G.postRedisplay "view:linkent"
5216 begin match state.autoscroll
with
5218 conf.autoscrollstep
<- step
;
5219 state.autoscroll
<- None
5221 if conf.autoscrollstep
= 0
5222 then state.autoscroll
<- Some
1
5223 else state.autoscroll
<- Some
conf.autoscrollstep
5226 | 112 when ctrl -> (* ctrl-p *)
5230 setpresentationmode (not
conf.presentation
);
5231 showtext ' '
("presentation mode " ^
5232 if conf.presentation
then "on" else "off");
5235 if List.mem
Wsi.Fullscreen
state.winstate
5236 then Wsi.reshape conf.cwinw
conf.cwinh
5237 else Wsi.fullscreen
()
5239 | 112 | 78 -> (* p|N *)
5240 search state.searchpattern
false
5242 | 110 | 0xffc0 -> (* n|F3 *)
5243 search state.searchpattern
true
5246 begin match state.layout with
5249 gotoghyll (getpagey l.pageno)
5255 | 0xff9f | 0xffff -> (* delete *)
5259 showtext ' '
(describe_location ());
5262 begin match state.layout with
5265 Wsi.reshape (l.pagew
+ state.scrollw
) l.pageh
;
5270 enterbookmarkmode ()
5272 | 104 | 0xffbe -> (* h|F1 *)
5278 | 101 when Buffer.length
state.errmsgs
> 0 -> (* e *)
5283 match state.layout with
5285 if String.length
s > 0
5287 state.bookmarks
<- (s, 0, getanchor1 l) :: state.bookmarks
5290 enttext ("bookmark: ", "", None
, textentry, ondone, true)
5294 showtext ' '
"Quick bookmark added";
5297 begin match state.layout with
5299 let rect = getpdimrect
l.pagedimno
in
5303 (truncate
(1.8 *. (rect.(1) -. rect.(0))),
5304 truncate
(1.2 *. (rect.(3) -. rect.(0))))
5306 (truncate
(rect.(1) -. rect.(0)),
5307 truncate
(rect.(3) -. rect.(0)))
5309 let w = truncate
((float w)*.conf.zoom)
5310 and h = truncate
((float h)*.conf.zoom) in
5313 state.anchor <- getanchor ();
5314 Wsi.reshape (w + state.scrollw
) (h + conf.interpagespace
)
5316 G.postRedisplay "z";
5321 | 60 | 62 -> (* < > *)
5322 reqlayout (conf.angle
+ (if key = 62 then 30 else -30)) conf.fitmodel
5324 | 91 | 93 -> (* [ ] *)
5326 bound (conf.colorscale
+. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5328 G.postRedisplay "brightness";
5330 | 99 when state.mode = View
-> (* c *)
5332 match state.prevcolumns
with
5333 | None
-> (1, 0, 0), 1.0
5334 | Some
(columns
, z
) ->
5337 | Csplit
(c, _) -> -c, 0, 0
5338 | Cmulti
((c, a, b), _) -> c, a, b
5339 | Csingle
_ -> 1, 0, 0
5343 setcolumns View
c a b;
5346 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
->
5347 setzoom state.prevzoom
5349 | 107 | 0xff52 | 0xff97 -> (* k (kp) up *)
5350 begin match state.autoscroll
with
5352 begin match state.mode with
5353 | Birdseye beye
-> upbirdseye 1 beye
5356 then gotoy_and_clear_text (clamp ~
-(state.winh
/2))
5358 if not
(Wsi.withshift mask
) && conf.presentation
5360 else gotoy_and_clear_text (clamp (-conf.scrollstep
))
5364 setautoscrollspeed n false
5367 | 106 | 0xff54 | 0xff99 -> (* j (kp) down *)
5368 begin match state.autoscroll
with
5370 begin match state.mode with
5371 | Birdseye beye
-> downbirdseye 1 beye
5374 then gotoy_and_clear_text (clamp (state.winh
/2))
5376 if not
(Wsi.withshift mask
) && conf.presentation
5378 else gotoy_and_clear_text (clamp conf.scrollstep
)
5382 setautoscrollspeed n true
5385 | 0xff51 | 0xff53 | 0xff96 | 0xff98
5386 when not
(Wsi.withalt mask
) -> (* (kp) left / right *)
5392 else conf.hscrollstep
5394 let dx = if key = 0xff51 or key = 0xff96 then dx else -dx in
5395 state.x <- state.x + dx;
5396 gotoy_and_clear_text state.y
5399 G.postRedisplay "lef/right"
5402 | 0xff55 | 0xff9a -> (* (kp) prior *)
5406 match state.layout with
5408 | l :: _ -> state.y - l.pagey
5410 clamp (pgscale (-state.winh
))
5414 | 0xff56 | 0xff9b -> (* (kp) next *)
5418 match List.rev
state.layout with
5420 | l :: _ -> getpagey l.pageno
5422 clamp (pgscale state.winh
)
5426 | 103 | 0xff50 | 0xff95 -> (* g (kp) home *)
5428 | 71 | 0xff57 | 0xff9c -> (* G (kp) end *)
5429 gotoghyll (clamp state.maxy)
5432 when Wsi.withalt mask
-> (* alt-(kp) right *)
5433 gotoghyll (getnav 1)
5435 when Wsi.withalt mask
-> (* alt-(kp) left *)
5436 gotoghyll (getnav ~
-1)
5441 | 118 when conf.debug
-> (* v *)
5444 match getopaque l.pageno with
5447 let x0, y0, x1, y1 = pagebbox opaque
in
5448 let a,b = float x0, float y0 in
5449 let c,d = float x1, float y0 in
5450 let e,f = float x1, float y1 in
5451 let h,j
= float x0, float y1 in
5452 let rect = (a,b,c,d,e,f,h,j
) in
5454 state.rects
<- (l.pageno, l.pageno mod 3, rect) :: state.rects
;
5456 G.postRedisplay "v";
5459 vlog "huh? %s" (Wsi.keyname
key)
5462 let linknavkeyboard key mask
linknav =
5463 let getpage pageno =
5464 let rec loop = function
5466 | l :: _ when l.pageno = pageno -> Some
l
5467 | _ :: rest
-> loop rest
5468 in loop state.layout
5470 let doexact (pageno, n) =
5471 match getopaque pageno, getpage pageno with
5472 | Some opaque
, Some
l ->
5473 if key = 0xff0d || key = 0xff8d (* (kp)enter *)
5475 let under = getlink opaque
n in
5476 G.postRedisplay "link gotounder";
5482 | 0xff50 -> (* home *)
5483 Some
(findlink opaque LDfirst
), -1
5485 | 0xff57 -> (* end *)
5486 Some
(findlink opaque LDlast
), 1
5488 | 0xff51 -> (* left *)
5489 Some
(findlink opaque
(LDleft
n)), -1
5491 | 0xff53 -> (* right *)
5492 Some
(findlink opaque
(LDright
n)), 1
5494 | 0xff52 -> (* up *)
5495 Some
(findlink opaque
(LDup
n)), -1
5497 | 0xff54 -> (* down *)
5498 Some
(findlink opaque
(LDdown
n)), 1
5503 begin match findpwl
l.pageno dir with
5507 state.mode <- LinkNav
(Ltgendir
dir);
5508 let y, h = getpageyh pageno in
5511 then y + h - state.winh
5516 begin match getopaque pageno, getpage pageno with
5517 | Some opaque
, Some
_ ->
5519 let ld = if dir > 0 then LDfirst
else LDlast
in
5522 begin match link with
5524 showlinktype (getlink opaque
m);
5525 state.mode <- LinkNav
(Ltexact
(pageno, m));
5526 G.postRedisplay "linknav jpage";
5533 begin match opt with
5534 | Some Lnotfound
-> pwl l dir;
5535 | Some
(Lfound
m) ->
5539 let _, y0, _, y1 = getlinkrect opaque
m in
5541 then gotopage1 l.pageno y0
5543 let d = fstate.fontsize
+ 1 in
5544 if y1 - l.pagey > l.pagevh - d
5545 then gotopage1 l.pageno (y1 - state.winh
- state.hscrollh + d)
5546 else G.postRedisplay "linknav";
5548 showlinktype (getlink opaque
m);
5549 state.mode <- LinkNav
(Ltexact
(l.pageno, m));
5552 | None
-> viewkeyboard key mask
5554 | _ -> viewkeyboard key mask
5559 G.postRedisplay "leave linknav"
5563 | Ltgendir
_ -> viewkeyboard key mask
5564 | Ltexact exact
-> doexact exact
5567 let keyboard key mask
=
5568 if (key = 103 && Wsi.withctrl mask
) && not
(istextentry state.mode)
5569 then wcmd "interrupt"
5570 else state.uioh <- state.uioh#
key key mask
5573 let birdseyekeyboard key mask
5574 ((oconf
, leftx
, pageno, hooverpageno
, anchor) as beye
) =
5576 match conf.columns
with
5578 | Cmulti
((c, _, _), _) -> c
5579 | Csplit
_ -> failwith
"bird's eye split mode"
5581 let pgh layout = List.fold_left
(fun m l -> max
l.pageh
m) state.winh
layout in
5583 | 108 when Wsi.withctrl mask
-> (* ctrl-l *)
5584 let y, h = getpageyh pageno in
5585 let top = (state.winh
- h) / 2 in
5586 gotoy (max
0 (y - top))
5587 | 0xff0d (* enter *)
5588 | 0xff8d -> leavebirdseye beye
false (* kp enter *)
5589 | 0xff1b -> leavebirdseye beye
true (* escape *)
5590 | 0xff52 -> upbirdseye incr beye
(* up *)
5591 | 0xff54 -> downbirdseye incr beye
(* down *)
5592 | 0xff51 -> upbirdseye 1 beye
(* left *)
5593 | 0xff53 -> downbirdseye 1 beye
(* right *)
5595 | 0xff55 -> (* prior *)
5596 begin match state.layout with
5600 state.mode <- Birdseye
(
5601 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5603 gotopage1 l.pageno 0;
5606 let layout = layout (state.y-state.winh
) (pgh state.layout) in
5608 | [] -> gotoy (clamp (-state.winh
))
5610 state.mode <- Birdseye
(
5611 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5613 gotopage1 l.pageno 0
5616 | [] -> gotoy (clamp (-state.winh
))
5619 | 0xff56 -> (* next *)
5620 begin match List.rev
state.layout with
5622 let layout = layout (state.y + (pgh state.layout)) state.winh
in
5623 begin match layout with
5625 let incr = l.pageh
- l.pagevh in
5630 oconf
, leftx
, state.pagecount
- 1, hooverpageno
, anchor
5632 G.postRedisplay "birdseye pagedown";
5634 else gotoy (clamp (incr + conf.interpagespace
*2));
5638 Birdseye
(oconf
, leftx
, l.pageno, hooverpageno
, anchor);
5639 gotopage1 l.pageno 0;
5642 | [] -> gotoy (clamp state.winh
)
5645 | 0xff50 -> (* home *)
5646 state.mode <- Birdseye
(oconf
, leftx
, 0, hooverpageno
, anchor);
5649 | 0xff57 -> (* end *)
5650 let pageno = state.pagecount
- 1 in
5651 state.mode <- Birdseye
(oconf
, leftx
, pageno, hooverpageno
, anchor);
5652 if not
(pagevisible state.layout pageno)
5655 match List.rev
state.pdims
with
5657 | (_, _, h, _) :: _ -> h
5659 gotoy (max
0 (getpagey pageno - (state.winh
- h - conf.interpagespace
)))
5660 else G.postRedisplay "birdseye end";
5661 | _ -> viewkeyboard key mask
5664 let drawpage l linkindexbase
=
5666 match state.mode with
5667 | Textentry
_ -> scalecolor 0.4
5669 | View
-> scalecolor 1.0
5670 | Birdseye
(_, _, pageno, hooverpageno
, _) ->
5671 if l.pageno = hooverpageno
5674 if l.pageno = pageno
5680 begin match getopaque l.pageno with
5682 if tileready l l.pagex
l.pagey
5684 let x = l.pagedispx - l.pagex
5685 and y = l.pagedispy - l.pagey in
5687 match conf.columns
with
5688 | Csingle
_ | Cmulti
_ ->
5689 (if conf.hlinks
then 1 else 0)
5691 && not
(isbirdseye state.mode) then 2 else 0)
5695 match state.mode with
5696 | Textentry
((_, s, _, _, _, _), _) when state.glinks
-> s
5699 postprocess opaque
hlmask x y (linkindexbase
, s, conf.hfsize
);
5706 let scrollindicator () =
5707 let sbw, ph
, sh = state.uioh#
scrollph in
5708 let sbh, pw, sw = state.uioh#scrollpw
in
5710 GlDraw.color (0.64, 0.64, 0.64);
5712 (float (state.winw
- sbw), 0.)
5713 (float state.winw
, float state.winh
)
5716 (0., float (state.winh
- sbh))
5717 (float (state.winw
- state.scrollw
- 1), float state.winh
)
5719 GlDraw.color (0.0, 0.0, 0.0);
5722 (float (state.winw
- sbw), ph
)
5723 (float state.winw
, ph
+. sh)
5726 (pw, float (state.winh
- sbh))
5727 (pw +. sw, float state.winh
)
5732 match state.mstate
with
5733 | Mnone
| Mscrolly
| Mscrollx
| Mpan
_ | Mzoom
_ | Mzoomrect
_ ->
5736 | Msel
((x0, y0), (x1, y1)) ->
5737 let rec loop = function
5739 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5740 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5741 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5742 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5744 match getopaque l.pageno with
5746 let x0, y0 = pagetranslatepoint l x0 y0 in
5747 let x1, y1 = pagetranslatepoint l x1 y1 in
5748 seltext opaque
(x0, y0, x1, y1);
5756 let showrects rects
=
5758 GlDraw.color (0.0, 0.0, 1.0) ~
alpha:0.5;
5759 GlDraw.polygon_mode `both `fill
;
5760 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5762 (fun (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) ->
5764 if l.pageno = pageno
5766 let dx = float (l.pagedispx - l.pagex
) in
5767 let dy = float (l.pagedispy - l.pagey) in
5768 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~
alpha:0.5;
5769 GlDraw.begins `quads
;
5771 GlDraw.vertex2
(x0+.dx, y0+.dy);
5772 GlDraw.vertex2
(x1+.dx, y1+.dy);
5773 GlDraw.vertex2
(x2
+.dx, y2
+.dy);
5774 GlDraw.vertex2
(x3
+.dx, y3
+.dy);
5785 GlClear.color (scalecolor2 conf.bgcolor
);
5786 GlClear.clear
[`
color];
5787 let rec loop linkindexbase
= function
5789 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5790 loop linkindexbase rest
5793 loop 0 state.layout;
5795 match state.mode with
5796 | LinkNav
(Ltexact
(pageno, linkno
)) ->
5797 begin match getopaque pageno with
5799 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
5806 | None
-> state.rects
5813 begin match state.mstate
with
5814 | Mzoomrect
((x0, y0), (x1, y1)) ->
5816 GlDraw.color (0.3, 0.3, 0.3) ~
alpha:0.5;
5817 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5818 GlDraw.rect (float x0, float y0)
5819 (float x1, float y1);
5828 let zoomrect x y x1 y1 =
5831 and y0 = min
y y1 in
5832 gotoy (state.y + y0);
5833 state.anchor <- getanchor ();
5834 let zoom = (float state.winw
*. conf.zoom) /. float (x1 - x0) in
5836 if state.w < state.winw
- state.scrollw
5837 then (state.winw
- state.scrollw
- state.w) / 2
5840 state.x <- (state.x + margin) - x0;
5842 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5843 state.mstate
<- Mnone
;
5847 let winw = state.winw - state.scrollw
- 1 in
5848 let s = float x /. float winw in
5849 let destx = truncate
(float (state.w + winw) *. s) in
5850 state.x <- winw - destx;
5851 gotoy_and_clear_text state.y;
5852 state.mstate
<- Mscrollx
;
5856 let s = float y /. float state.winh
in
5857 let desty = truncate
(float (state.maxy - state.winh
) *. s) in
5858 gotoy_and_clear_text desty;
5859 state.mstate
<- Mscrolly
;
5862 let viewmouse button down
x y mask
=
5864 | n when (n == 4 || n == 5) && not down
->
5865 if Wsi.withctrl mask
5867 match state.mstate
with
5868 | Mzoom
(oldn
, i
) ->
5876 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5878 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5880 let zoom = conf.zoom -. incr in
5882 state.mstate
<- Mzoom
(n, 0);
5884 state.mstate
<- Mzoom
(n, i
+1);
5886 else state.mstate
<- Mzoom
(n, 0)
5888 | _ -> state.mstate
<- Mzoom
(n, 0)
5891 match state.autoscroll
with
5892 | Some step
-> setautoscrollspeed step
(n=4)
5894 if conf.wheelbypage
|| conf.presentation
5903 then -conf.scrollstep
5904 else conf.scrollstep
5906 let incr = incr * 2 in
5907 let y = clamp incr in
5908 gotoy_and_clear_text y
5911 | n when (n = 6 || n = 7) && not down
&& canpan () ->
5912 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep
;
5913 gotoy_and_clear_text state.y
5915 | 1 when Wsi.withshift mask
->
5916 state.mstate
<- Mnone
;
5919 match unproject x y with
5920 | Some
(pageno, ux
, uy
) ->
5921 let cmd = Printf.sprintf
5923 conf.stcmd
state.path pageno ux uy
5929 | 1 when Wsi.withctrl mask
->
5932 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5933 state.mstate
<- Mpan
(x, y)
5936 state.mstate
<- Mnone
5941 Wsi.setcursor
Wsi.CURSOR_CYCLE
;
5943 state.mstate
<- Mzoomrect
(p, p)
5946 match state.mstate
with
5947 | Mzoomrect
((x0, y0), _) ->
5948 if abs
(x-x0) > 10 && abs
(y - y0) > 10
5949 then zoomrect x0 y0 x y
5951 state.mstate
<- Mnone
;
5952 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5953 G.postRedisplay "kill accidental zoom rect";
5956 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5957 state.mstate
<- Mnone
5960 | 1 when x > state.winw - state.scrollw
->
5963 let _, position, sh = state.uioh#
scrollph in
5964 if y > truncate
position && y < truncate
(position +. sh)
5965 then state.mstate
<- Mscrolly
5968 state.mstate
<- Mnone
5970 | 1 when y > state.winh
- state.hscrollh ->
5973 let _, position, sw = state.uioh#scrollpw
in
5974 if x > truncate
position && x < truncate
(position +. sw)
5975 then state.mstate
<- Mscrollx
5978 state.mstate
<- Mnone
5981 let dest = if down
then getunder x y else Unone
in
5982 begin match dest with
5986 | Uunexpected
_ | Ulaunch
_ | Unamed
_ ->
5989 | Unone
when down
->
5990 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5991 state.mstate
<- Mpan
(x, y);
5993 | Unone
| Utext
_ ->
5996 if conf.angle
mod 360 = 0
5998 state.mstate
<- Msel
((x, y), (x, y));
5999 G.postRedisplay "mouse select";
6003 match state.mstate
with
6006 | Mzoom
_ | Mscrollx
| Mscrolly
->
6007 state.mstate
<- Mnone
6009 | Mzoomrect
((x0, y0), _) ->
6013 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
6014 state.mstate
<- Mnone
6016 | Msel
((x0, y0), (x1, y1)) ->
6017 let rec loop = function
6021 let a0 = l.pagedispy in
6022 let a1 = a0 + l.pagevh in
6023 let b0 = l.pagedispx in
6024 let b1 = b0 + l.pagevw in
6025 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
6026 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
6030 match getopaque l.pageno with
6033 match Ne.pipe () with
6037 "can not create sel pipe: %s"
6040 let doclose what fd
=
6041 Ne.clo fd
(fun msg
->
6042 dolog
"%s close failed: %s" what msg
)
6045 popen conf.selcmd
[r, 0; w, -1];
6048 G.postRedisplay "copysel";
6050 dolog
"can not execute %S: %s"
6051 conf.selcmd
(exntos exn
);
6059 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
6060 state.mstate
<- Mnone
;
6067 let birdseyemouse button down
x y mask
6068 (conf, leftx
, _, hooverpageno
, anchor) =
6071 let rec loop = function
6074 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6075 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6077 leavebirdseye (conf, leftx
, l.pageno, hooverpageno
, anchor) false;
6083 | _ -> viewmouse button down
x y mask
6086 let mouse button down
x y mask
=
6087 state.uioh <- state.uioh#button button down
x y mask
;
6091 state.uioh <- state.uioh#
motion x y
6095 state.uioh <- state.uioh#
pmotion x y;
6101 method key key mask
=
6102 begin match state.mode with
6103 | Textentry
textentry -> textentrykeyboard key mask
textentry
6104 | Birdseye
birdseye -> birdseyekeyboard key mask
birdseye
6105 | View
-> viewkeyboard key mask
6106 | LinkNav
linknav -> linknavkeyboard key mask
linknav
6110 method button button bstate
x y mask
=
6111 begin match state.mode with
6113 | View
-> viewmouse button bstate
x y mask
6114 | Birdseye beye
-> birdseyemouse button bstate
x y mask beye
6120 begin match state.mode with
6122 | View
| Birdseye
_ | LinkNav
_ ->
6123 match state.mstate
with
6124 | Mzoom
_ | Mnone
-> ()
6129 state.mstate
<- Mpan
(x, y);
6131 then state.x <- state.x + dx;
6133 gotoy_and_clear_text y
6136 state.mstate
<- Msel
(a, (x, y));
6137 G.postRedisplay "motion select";
6140 let y = min
state.winh
(max
0 y) in
6144 let x = min
state.winw (max
0 x) in
6147 | Mzoomrect
(p0
, _) ->
6148 state.mstate
<- Mzoomrect
(p0
, (x, y));
6149 G.postRedisplay "motion zoomrect";
6153 method pmotion x y =
6154 begin match state.mode with
6155 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor) ->
6156 let rec loop = function
6158 if hooverpageno
!= -1
6160 state.mode <- Birdseye
(conf, leftx
, pageno, -1, anchor);
6161 G.postRedisplay "pmotion birdseye no hoover";
6164 if y > l.pagedispy && y < l.pagedispy + l.pagevh
6165 && x > l.pagedispx && x < l.pagedispx + l.pagevw
6167 state.mode <- Birdseye
(conf, leftx
, pageno, l.pageno, anchor);
6168 G.postRedisplay "pmotion birdseye hoover";
6178 match state.mstate
with
6179 | Mnone
-> updateunder x y
6180 | Mpan
_ | Msel
_ | Mzoom
_ | Mscrolly
| Mscrollx
| Mzoomrect
_ ->
6185 method infochanged
_ = ()
6188 let maxy = state.maxy - (if conf.maxhfit
then state.winh
else 0) in
6189 let p, h = scrollph state.y maxy in
6193 let winw = state.winw - state.scrollw
- 1 in
6194 let fwinw = float winw in
6196 let sw = fwinw /. float state.w in
6197 let sw = fwinw *. sw in
6198 max
sw (float conf.scrollh
)
6201 let f = state.w+winw in
6202 let r = float (winw-state.x) /. float f in
6203 let p = fwinw *. r in
6207 if position +. sw > fwinw
6208 then fwinw -. position
6211 state.hscrollh, position, sw
6215 match state.mode with
6216 | LinkNav
_ -> "links"
6217 | Textentry
_ -> "textentry"
6218 | Birdseye
_ -> "birdseye"
6221 findkeyhash conf modename
6223 method eformsgs
= true
6230 let fontpath = ref "";;
6233 Map.Make
(struct type t
= (int * int) let compare = compare end);;
6236 let l = String.length
s in
6237 let b = Buffer.create
l in
6243 try Sys.getenv
"HOME"
6246 ("Can not determine home directory location: " ^ exntos exn
);
6250 let modifier_of_string = function
6251 | "alt" -> Wsi.altmask
6252 | "shift" -> Wsi.shiftmask
6253 | "ctrl" | "control" -> Wsi.ctrlmask
6254 | "meta" -> Wsi.metamask
6259 let r = Str.regexp
"-" in
6261 let elems = Str.full_split
r s in
6264 let m1 = modifier_of_string s in
6266 then (Wsi.namekey
s, m)
6269 | Str.Delim
s when n land 1 = 0 -> g s
6271 | Str.Delim
_ -> (k
, m)
6273 let rec loop n k
m = function
6276 let k, m = f n k m x in
6282 let keys_of_string =
6283 let r = Str.regexp
"[ \t]" in
6285 let elems = Str.split
r s in
6286 List.map
key_of_string elems
6289 let copykeyhashes c =
6290 List.map
(fun (k, v) -> k, Hashtbl.copy
v) c.keyhashes
;
6293 let config_of c attrs
=
6297 | "scroll-bar-width" -> { c with scrollbw
= max
0 (int_of_string
v) }
6298 | "scroll-handle-height" -> { c with scrollh
= max
0 (int_of_string
v) }
6299 | "case-insensitive-search" -> { c with icase
= bool_of_string
v }
6300 | "preload" -> { c with preload = bool_of_string
v }
6301 | "page-bias" -> { c with pagebias
= int_of_string
v }
6302 | "scroll-step" -> { c with scrollstep
= max
1 (int_of_string
v) }
6303 | "horizontal-scroll-step" ->
6304 { c with hscrollstep
= max
(int_of_string
v) 1 }
6305 | "auto-scroll-step" ->
6306 { c with autoscrollstep
= max
0 (int_of_string
v) }
6307 | "max-height-fit" -> { c with maxhfit
= bool_of_string
v }
6308 | "crop-hack" -> { c with crophack
= bool_of_string
v }
6311 match String.lowercase
v with
6312 | "true" -> Some infinity
6314 | f -> Some
(float_of_string
f)
6316 { c with maxwait
= mw}
6317 | "highlight-links" -> { c with hlinks
= bool_of_string
v }
6318 | "under-cursor-info" -> { c with underinfo
= bool_of_string
v }
6319 | "vertical-margin" ->
6320 { c with interpagespace
= max
0 (int_of_string
v) }
6322 let zoom = float_of_string
v /. 100. in
6323 let zoom = max
zoom 0.0 in
6324 { c with zoom = zoom }
6325 | "presentation" -> { c with presentation
= bool_of_string
v }
6326 | "rotation-angle" -> { c with angle
= int_of_string
v }
6327 | "width" -> { c with cwinw
= max
20 (int_of_string
v) }
6328 | "height" -> { c with cwinh
= max
20 (int_of_string
v) }
6329 | "persistent-bookmarks" -> { c with savebmarks
= bool_of_string
v }
6330 | "proportional-display" ->
6333 then FitProportional
6336 { c with fitmodel
= fm }
6337 | "fit-model" -> { c with fitmodel
= fitmodel_of_string v }
6338 | "pixmap-cache-size" ->
6339 { c with memlimit
= max
2 (int_of_string_with_suffix v) }
6340 | "tex-count" -> { c with texcount
= max
1 (int_of_string
v) }
6341 | "slice-height" -> { c with sliceheight
= max
2 (int_of_string
v) }
6342 | "thumbnail-width" -> { c with thumbw
= max
2 (int_of_string
v) }
6343 | "persistent-location" -> { c with jumpback
= bool_of_string
v }
6344 | "background-color" -> { c with bgcolor
= color_of_string v }
6345 | "scrollbar-in-presentation" ->
6346 { c with scrollbarinpm
= bool_of_string
v }
6347 | "tile-width" -> { c with tilew
= max
2 (int_of_string
v) }
6348 | "tile-height" -> { c with tileh
= max
2 (int_of_string
v) }
6349 | "mupdf-store-size" ->
6350 { c with mustoresize
= max
1024 (int_of_string_with_suffix v) }
6351 | "checkers" -> { c with checkers
= bool_of_string
v }
6352 | "aalevel" -> { c with aalevel
= max
0 (int_of_string
v) }
6353 | "trim-margins" -> { c with trimmargins
= bool_of_string
v }
6354 | "trim-fuzz" -> { c with trimfuzz
= irect_of_string v }
6355 | "uri-launcher" -> { c with urilauncher
= unent v }
6356 | "path-launcher" -> { c with pathlauncher
= unent v }
6357 | "color-space" -> { c with colorspace
= colorspace_of_string v }
6358 | "invert-colors" -> { c with invert
= bool_of_string
v }
6359 | "brightness" -> { c with colorscale
= float_of_string
v }
6360 | "redirectstderr" -> { c with redirectstderr = bool_of_string
v }
6362 { c with ghyllscroll
= Some
(ghyllscroll_of_string v) }
6364 let (n, _, _) as nab
= multicolumns_of_string v in
6366 then { c with columns
= Csplit
(-n, [||]) }
6367 else { c with columns
= Cmulti
(nab
, [||]) }
6368 | "birds-eye-columns" ->
6369 { c with beyecolumns
= Some
(max
(int_of_string
v) 2) }
6370 | "selection-command" -> { c with selcmd
= unent v }
6371 | "synctex-command" -> { c with stcmd
= unent v }
6372 | "update-cursor" -> { c with updatecurs
= bool_of_string
v }
6373 | "hint-font-size" -> { c with hfsize
= bound (int_of_string
v) 5 100 }
6374 | "page-scroll-scale" -> { c with pgscale = float_of_string
v }
6375 | "use-pbo" -> { c with usepbo
= bool_of_string
v }
6376 | "wheel-scrolls-pages" -> { c with wheelbypage
= bool_of_string
v }
6379 prerr_endline
("Error processing attribute (`" ^
6380 k ^
"'=`" ^
v ^
"'): " ^ exntos exn
);
6383 let rec fold c = function
6386 let c = apply c k v in
6389 fold { c with keyhashes
= copykeyhashes c } attrs
;
6392 let fromstring f pos
n v d =
6395 dolog
"Error processing attribute (%S=%S) at %d\n%s"
6396 n v pos
(exntos exn
)
6401 let bookmark_of attrs
=
6402 let rec fold title page
rely visy
= function
6403 | ("title", v) :: rest
-> fold v page
rely visy rest
6404 | ("page", v) :: rest
-> fold title v rely visy rest
6405 | ("rely", v) :: rest
-> fold title page
v visy rest
6406 | ("visy", v) :: rest
-> fold title page
rely v rest
6407 | _ :: rest
-> fold title page
rely visy rest
6408 | [] -> title, page
, rely, visy
6410 fold "invalid" "0" "0" "0" attrs
6414 let rec fold path page
rely pan visy
= function
6415 | ("path", v) :: rest
-> fold v page
rely pan visy rest
6416 | ("page", v) :: rest
-> fold path v rely pan visy rest
6417 | ("rely", v) :: rest
-> fold path page
v pan visy rest
6418 | ("pan", v) :: rest
-> fold path page
rely v visy rest
6419 | ("visy", v) :: rest
-> fold path page
rely pan
v rest
6420 | _ :: rest
-> fold path page
rely pan visy rest
6421 | [] -> path, page
, rely, pan
, visy
6423 fold "" "0" "0" "0" "0" attrs
6427 let rec fold rs ls
= function
6428 | ("out", v) :: rest
-> fold v ls rest
6429 | ("in", v) :: rest
-> fold rs
v rest
6430 | _ :: rest
-> fold ls rs rest
6436 let setconf dst
src =
6437 dst
.scrollbw
<- src.scrollbw
;
6438 dst
.scrollh
<- src.scrollh
;
6439 dst
.icase
<- src.icase
;
6440 dst
.preload <- src.preload;
6441 dst
.pagebias
<- src.pagebias
;
6442 dst
.verbose
<- src.verbose
;
6443 dst
.scrollstep
<- src.scrollstep
;
6444 dst
.maxhfit
<- src.maxhfit
;
6445 dst
.crophack
<- src.crophack
;
6446 dst
.autoscrollstep
<- src.autoscrollstep
;
6447 dst
.maxwait
<- src.maxwait
;
6448 dst
.hlinks
<- src.hlinks
;
6449 dst
.underinfo
<- src.underinfo
;
6450 dst
.interpagespace
<- src.interpagespace
;
6451 dst
.zoom <- src.zoom;
6452 dst
.presentation
<- src.presentation
;
6453 dst
.angle
<- src.angle
;
6454 dst
.cwinw
<- src.cwinw
;
6455 dst
.cwinh
<- src.cwinh
;
6456 dst
.savebmarks
<- src.savebmarks
;
6457 dst
.memlimit
<- src.memlimit
;
6458 dst
.fitmodel
<- src.fitmodel
;
6459 dst
.texcount
<- src.texcount
;
6460 dst
.sliceheight
<- src.sliceheight
;
6461 dst
.thumbw
<- src.thumbw
;
6462 dst
.jumpback
<- src.jumpback
;
6463 dst
.bgcolor
<- src.bgcolor
;
6464 dst
.scrollbarinpm
<- src.scrollbarinpm
;
6465 dst
.tilew
<- src.tilew
;
6466 dst
.tileh
<- src.tileh
;
6467 dst
.mustoresize
<- src.mustoresize
;
6468 dst
.checkers
<- src.checkers
;
6469 dst
.aalevel
<- src.aalevel
;
6470 dst
.trimmargins
<- src.trimmargins
;
6471 dst
.trimfuzz
<- src.trimfuzz
;
6472 dst
.urilauncher
<- src.urilauncher
;
6473 dst
.colorspace
<- src.colorspace
;
6474 dst
.invert
<- src.invert
;
6475 dst
.colorscale
<- src.colorscale
;
6476 dst
.redirectstderr <- src.redirectstderr;
6477 dst
.ghyllscroll
<- src.ghyllscroll
;
6478 dst
.columns
<- src.columns
;
6479 dst
.beyecolumns
<- src.beyecolumns
;
6480 dst
.selcmd
<- src.selcmd
;
6481 dst
.updatecurs
<- src.updatecurs
;
6482 dst
.pathlauncher
<- src.pathlauncher
;
6483 dst
.keyhashes
<- copykeyhashes src;
6484 dst
.hfsize
<- src.hfsize
;
6485 dst
.hscrollstep
<- src.hscrollstep
;
6486 dst
.pgscale <- src.pgscale;
6487 dst
.usepbo
<- src.usepbo
;
6488 dst
.wheelbypage
<- src.wheelbypage
;
6489 dst
.stcmd
<- src.stcmd
;
6493 let h = Hashtbl.create
10 in
6494 let dc = { defconf with angle
= defconf.angle
} in
6495 let rec toplevel v t spos
_ =
6497 | Vdata
| Vcdata
| Vend
-> v
6498 | Vopen
("llppconfig", _, closed
) ->
6501 else { v with f = llppconfig
}
6503 error
"unexpected subelement at top level" s spos
6504 | Vclose
_ -> error
"unexpected close at top level" s spos
6506 and llppconfig
v t spos
_ =
6508 | Vdata
| Vcdata
-> v
6509 | Vend
-> error
"unexpected end of input in llppconfig" s spos
6510 | Vopen
("defaults", attrs
, closed
) ->
6511 let c = config_of dc attrs
in
6515 else { v with f = defaults
}
6517 | Vopen
("ui-font", attrs
, closed
) ->
6518 let rec getsize size
= function
6520 | ("size", v) :: rest
->
6522 fromstring int_of_string spos
"size" v fstate.fontsize
in
6524 | l -> getsize size l
6526 fstate.fontsize
<- getsize fstate.fontsize attrs
;
6529 else { v with f = uifont
(Buffer.create
10) }
6531 | Vopen
("doc", attrs
, closed
) ->
6532 let pathent, spage
, srely
, span
, svisy
= doc_of attrs
in
6533 let path = unent pathent
6534 and pageno = fromstring int_of_string spos
"page" spage
0
6535 and rely = fromstring float_of_string spos
"rely" srely
0.0
6536 and pan
= fromstring int_of_string spos
"pan" span
0
6537 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6538 let c = config_of dc attrs
in
6539 let anchor = (pageno, rely, visy
) in
6541 then (Hashtbl.add
h path (c, [], pan
, anchor); v)
6542 else { v with f = doc
path pan
anchor c [] }
6545 error
"unexpected subelement in llppconfig" s spos
6547 | Vclose
"llppconfig" -> { v with f = toplevel }
6548 | Vclose
_ -> error
"unexpected close in llppconfig" s spos
6550 and defaults
v t spos
_ =
6552 | Vdata
| Vcdata
-> v
6553 | Vend
-> error
"unexpected end of input in defaults" s spos
6554 | Vopen
("keymap", attrs
, closed
) ->
6556 try List.assoc
"mode" attrs
6557 with Not_found
-> "global" in
6562 let h = findkeyhash dc modename in
6563 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6566 { v with f = pkeymap
ret KeyMap.empty }
6568 | Vopen
(_, _, _) ->
6569 error
"unexpected subelement in defaults" s spos
6571 | Vclose
"defaults" ->
6572 { v with f = llppconfig
}
6574 | Vclose
_ -> error
"unexpected close in defaults" s spos
6576 and uifont
b v t spos
epos =
6579 Buffer.add_substring
b s spos
(epos - spos
);
6581 | Vopen
(_, _, _) ->
6582 error
"unexpected subelement in ui-font" s spos
6583 | Vclose
"ui-font" ->
6584 if String.length
!fontpath = 0
6585 then fontpath := Buffer.contents
b;
6586 { v with f = llppconfig
}
6587 | Vclose
_ -> error
"unexpected close in ui-font" s spos
6588 | Vend
-> error
"unexpected end of input in ui-font" s spos
6590 and doc
path pan
anchor c bookmarks
v t spos
_ =
6592 | Vdata
| Vcdata
-> v
6593 | Vend
-> error
"unexpected end of input in doc" s spos
6594 | Vopen
("bookmarks", _, closed
) ->
6597 else { v with f = pbookmarks
path pan
anchor c bookmarks
}
6599 | Vopen
("keymap", attrs
, closed
) ->
6601 try List.assoc
"mode" attrs
6602 with Not_found
-> "global"
6608 let h = findkeyhash c modename in
6609 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6610 doc
path pan
anchor c bookmarks
6612 { v with f = pkeymap
ret KeyMap.empty }
6614 | Vopen
(_, _, _) ->
6615 error
"unexpected subelement in doc" s spos
6618 Hashtbl.add
h path (c, List.rev bookmarks
, pan
, anchor);
6619 { v with f = llppconfig
}
6621 | Vclose
_ -> error
"unexpected close in doc" s spos
6623 and pkeymap
ret keymap
v t spos
_ =
6625 | Vdata
| Vcdata
-> v
6626 | Vend
-> error
"unexpected end of input in keymap" s spos
6627 | Vopen
("map", attrs
, closed
) ->
6628 let r, l = map_of attrs
in
6629 let kss = fromstring keys_of_string spos
"in" r [] in
6630 let lss = fromstring keys_of_string spos
"out" l [] in
6634 | ks
:: [] -> KeyMap.add ks
(KMinsrl
lss) keymap
6635 | ks
:: rest
-> KeyMap.add ks
(KMmulti
(rest
, lss)) keymap
6638 then { v with f = pkeymap
ret keymap }
6641 { v with f = skip
"map" f }
6644 error
"unexpected subelement in keymap" s spos
6646 | Vclose
"keymap" ->
6647 { v with f = ret keymap }
6649 | Vclose
_ -> error
"unexpected close in keymap" s spos
6651 and pbookmarks
path pan
anchor c bookmarks
v t spos
_ =
6653 | Vdata
| Vcdata
-> v
6654 | Vend
-> error
"unexpected end of input in bookmarks" s spos
6655 | Vopen
("item", attrs
, closed
) ->
6656 let titleent, spage
, srely
, svisy
= bookmark_of attrs
in
6657 let page = fromstring int_of_string spos
"page" spage
0
6658 and rely = fromstring float_of_string spos
"rely" srely
0.0
6659 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6661 (unent titleent, 0, (page, rely, visy
)) :: bookmarks
6664 then { v with f = pbookmarks
path pan
anchor c bookmarks }
6667 { v with f = skip
"item" f }
6670 error
"unexpected subelement in bookmarks" s spos
6672 | Vclose
"bookmarks" ->
6673 { v with f = doc
path pan
anchor c bookmarks }
6675 | Vclose
_ -> error
"unexpected close in bookmarks" s spos
6677 and skip tag
f v t spos
_ =
6679 | Vdata
| Vcdata
-> v
6681 error
("unexpected end of input in skipped " ^ tag
) s spos
6682 | Vopen
(tag'
, _, closed
) ->
6686 let f'
() = { v with f = skip tag
f } in
6687 { v with f = skip tag'
f'
}
6691 else error
("unexpected close in skipped " ^ tag
) s spos
6694 parse
{ f = toplevel; accu = () } s;
6700 let len = in_channel_length ic
in
6701 let s = String.create
len in
6702 really_input ic
s 0 len;
6705 | Parse_error
(msg
, s, pos
) ->
6706 let subs = subs s pos
in
6707 let s = Printf.sprintf
"%s: at %d [..%s..]" msg pos
subs in
6708 failwith
("parse error: " ^
s)
6711 failwith
("config load error: " ^ exntos exn
)
6717 let dir = Filename.concat
home ".config" in
6718 if Sys.is_directory
dir then dir else home
6721 Filename.concat
dir "llpp.conf"
6724 let confpath = ref defconfpath;;
6727 if Sys.file_exists
!confpath
6730 (try Some
(open_in_bin
!confpath)
6733 ("Error opening configuration file `" ^
!confpath ^
"': " ^
6744 ("Error loading configuration from `" ^
!confpath ^
"': " ^
6753 f (Hashtbl.create
0, defconf)
6758 let pc, pb
, px, pa
=
6760 Hashtbl.find h (Filename.basename
state.origin
)
6761 with Not_found
-> dc, [], 0, emptyanchor
6765 state.bookmarks <- pb
;
6767 state.scrollw
<- conf.scrollbw
;
6769 then state.anchor <- pa
;
6770 cbput state.hists
.nav pa
;
6776 let add_attrs bb always
dc c =
6779 then Printf.bprintf bb
"\n %s='%b'" s a
6782 then Printf.bprintf bb
"\n %s='%d'" s a
6785 then Printf.bprintf bb
"\n %s='%s'" s (string_with_suffix_of_int a)
6788 then Printf.bprintf bb
"\n %s='%g'" s (a*.100.)
6791 then Printf.bprintf bb
"\n %s='%f'" s a
6795 Printf.bprintf bb
"\n %s='%s'" s (color_to_string a)
6799 Printf.bprintf bb
"\n %s='%s'" s (colorspace_to_string a)
6803 Printf.bprintf bb
"\n %s='%s'" s (irect_to_string a)
6807 Printf.bprintf bb
"\n %s='%s'" s (enent
a 0 (String.length
a))
6813 | Some
(_N
, _A
, _B
) ->
6814 Printf.bprintf bb
"\n %s='%u,%u,%u'" s _N _A _B
6824 else string_of_float
f
6826 Printf.bprintf bb
"\n %s='%s'" s v
6831 | Cmulti
((n, a, b), _) when n > 1 ->
6832 Printf.bprintf bb
"\n %s='%d,%d,%d'" s n a b
6833 | Csplit
(n, _) when n > 1 ->
6834 Printf.bprintf bb
"\n %s='%d'" s ~
-n
6840 | Some
c when c > 1 -> Printf.bprintf bb
"\n %s='%d'" s c
6845 Printf.bprintf bb
"\n %s='%s'" s (fitmodel_to_string a)
6847 oi
"width" c.cwinw
dc.cwinw
;
6848 oi
"height" c.cwinh
dc.cwinh
;
6849 oi
"scroll-bar-width" c.scrollbw
dc.scrollbw
;
6850 oi
"scroll-handle-height" c.scrollh
dc.scrollh
;
6851 ob "case-insensitive-search" c.icase
dc.icase
;
6852 ob "preload" c.preload dc.preload;
6853 oi
"page-bias" c.pagebias
dc.pagebias
;
6854 oi
"scroll-step" c.scrollstep
dc.scrollstep
;
6855 oi
"auto-scroll-step" c.autoscrollstep
dc.autoscrollstep
;
6856 ob "max-height-fit" c.maxhfit
dc.maxhfit
;
6857 ob "crop-hack" c.crophack
dc.crophack
;
6858 oW
"throttle" c.maxwait
dc.maxwait
;
6859 ob "highlight-links" c.hlinks
dc.hlinks
;
6860 ob "under-cursor-info" c.underinfo
dc.underinfo
;
6861 oi
"vertical-margin" c.interpagespace
dc.interpagespace
;
6862 oz
"zoom" c.zoom dc.zoom;
6863 ob "presentation" c.presentation
dc.presentation
;
6864 oi
"rotation-angle" c.angle
dc.angle
;
6865 ob "persistent-bookmarks" c.savebmarks
dc.savebmarks
;
6866 oFm
"fit-model" c.fitmodel
dc.fitmodel
;
6867 oI
"pixmap-cache-size" c.memlimit
dc.memlimit
;
6868 oi
"tex-count" c.texcount
dc.texcount
;
6869 oi
"slice-height" c.sliceheight
dc.sliceheight
;
6870 oi
"thumbnail-width" c.thumbw
dc.thumbw
;
6871 ob "persistent-location" c.jumpback
dc.jumpback
;
6872 oc
"background-color" c.bgcolor
dc.bgcolor
;
6873 ob "scrollbar-in-presentation" c.scrollbarinpm
dc.scrollbarinpm
;
6874 oi
"tile-width" c.tilew
dc.tilew
;
6875 oi
"tile-height" c.tileh
dc.tileh
;
6876 oI
"mupdf-store-size" c.mustoresize
dc.mustoresize
;
6877 ob "checkers" c.checkers
dc.checkers
;
6878 oi
"aalevel" c.aalevel
dc.aalevel
;
6879 ob "trim-margins" c.trimmargins
dc.trimmargins
;
6880 oR
"trim-fuzz" c.trimfuzz
dc.trimfuzz
;
6881 os
"uri-launcher" c.urilauncher
dc.urilauncher
;
6882 os
"path-launcher" c.pathlauncher
dc.pathlauncher
;
6883 oC
"color-space" c.colorspace
dc.colorspace
;
6884 ob "invert-colors" c.invert
dc.invert
;
6885 oF
"brightness" c.colorscale
dc.colorscale
;
6886 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6887 og
"ghyllscroll" c.ghyllscroll
dc.ghyllscroll
;
6888 oco
"columns" c.columns
dc.columns
;
6889 obeco
"birds-eye-columns" c.beyecolumns
dc.beyecolumns
;
6890 os
"selection-command" c.selcmd
dc.selcmd
;
6891 os
"synctex-command" c.stcmd
dc.stcmd
;
6892 ob "update-cursor" c.updatecurs
dc.updatecurs
;
6893 oi
"hint-font-size" c.hfsize
dc.hfsize
;
6894 oi
"horizontal-scroll-step" c.hscrollstep
dc.hscrollstep
;
6895 oF
"page-scroll-scale" c.pgscale dc.pgscale;
6896 ob "use-pbo" c.usepbo
dc.usepbo
;
6897 ob "wheel-scrolls-pages" c.wheelbypage
dc.wheelbypage
;
6900 let keymapsbuf always
dc c =
6901 let bb = Buffer.create
16 in
6902 let rec loop = function
6904 | (modename, h) :: rest
->
6905 let dh = findkeyhash dc modename in
6906 if always
|| h <> dh
6908 if Hashtbl.length
h > 0
6910 if Buffer.length
bb > 0
6911 then Buffer.add_char
bb '
\n'
;
6912 Printf.bprintf
bb "<keymap mode='%s'>\n" modename;
6913 Hashtbl.iter
(fun i
o ->
6914 let isdifferent = always
||
6916 let dO = Hashtbl.find dh i
in
6918 with Not_found
-> true
6923 if Wsi.withctrl
m then Buffer.add_string
bb "ctrl-";
6924 if Wsi.withalt
m then Buffer.add_string
bb "alt-";
6925 if Wsi.withshift
m then Buffer.add_string
bb "shift-";
6926 if Wsi.withmeta
m then Buffer.add_string
bb "meta-";
6927 Buffer.add_string
bb (Wsi.keyname
k);
6930 let rec loop = function
6932 | km
:: [] -> addkm km
6933 | km
:: rest
-> addkm km
; Buffer.add_char
bb ' '
; loop rest
6937 Buffer.add_string
bb "<map in='";
6941 Buffer.add_string
bb "' out='";
6943 Buffer.add_string
bb "'/>\n"
6946 Buffer.add_string
bb "' out='";
6948 Buffer.add_string
bb "'/>\n"
6950 | KMmulti
(ins, kms
) ->
6951 Buffer.add_char
bb ' '
;
6953 Buffer.add_string
bb "' out='";
6955 Buffer.add_string
bb "'/>\n"
6957 Buffer.add_string
bb "</keymap>";
6967 let uifontsize = fstate.fontsize
in
6968 let bb = Buffer.create
32768 in
6973 | Wsi.Fullscreen
-> (conf.cwinw
, conf.cwinh
)
6974 | Wsi.MaxVert
-> (w, conf.cwinh
)
6975 | Wsi.MaxHorz
-> (conf.cwinw
, h)
6977 (state.winw, state.winh
) state.winstate
6982 let dc = if conf.bedefault
then conf else dc in
6983 Buffer.add_string
bb "<llppconfig>\n";
6985 if String.length
!fontpath > 0
6987 Printf.bprintf
bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6993 Printf.bprintf
bb "<ui-font size='%d'/>\n" uifontsize
6996 Buffer.add_string
bb "<defaults ";
6997 add_attrs bb true dc dc;
6998 let kb = keymapsbuf true dc dc in
6999 if Buffer.length
kb > 0
7001 Buffer.add_string
bb ">\n";
7002 Buffer.add_buffer
bb kb;
7003 Buffer.add_string
bb "\n</defaults>\n";
7005 else Buffer.add_string
bb "/>\n";
7007 let adddoc path pan
anchor c bookmarks =
7008 if bookmarks == [] && c = dc && anchor = emptyanchor
7011 Printf.bprintf
bb "<doc path='%s'"
7012 (enent
path 0 (String.length
path));
7014 if anchor <> emptyanchor
7016 let n, rely, visy
= anchor in
7017 Printf.bprintf
bb " page='%d'" n;
7020 Printf.bprintf
bb " rely='%f'" rely
7022 if abs_float visy
> 1e-6
7024 Printf.bprintf
bb " visy='%f'" visy
7029 then Printf.bprintf
bb " pan='%d'" pan
;
7031 add_attrs bb false dc c;
7032 let kb = keymapsbuf false dc c in
7034 begin match bookmarks with
7036 if Buffer.length
kb > 0
7038 Buffer.add_string
bb ">\n";
7039 Buffer.add_buffer
bb kb;
7040 Buffer.add_string
bb "\n</doc>\n";
7042 else Buffer.add_string
bb "/>\n"
7044 Buffer.add_string
bb ">\n<bookmarks>\n";
7045 List.iter
(fun (title, _level
, (page, rely, visy
)) ->
7047 "<item title='%s' page='%d'"
7048 (enent
title 0 (String.length
title))
7053 Printf.bprintf
bb " rely='%f'" rely
7055 if abs_float visy
> 1e-6
7057 Printf.bprintf
bb " visy='%f'" visy
7059 Buffer.add_string
bb "/>\n";
7061 Buffer.add_string
bb "</bookmarks>";
7062 if Buffer.length
kb > 0
7064 Buffer.add_string
bb "\n";
7065 Buffer.add_buffer
bb kb;
7067 Buffer.add_string
bb "\n</doc>\n";
7073 match state.mode with
7074 | Birdseye
(c, pan, _, _, _) ->
7076 match conf.columns
with
7077 | Cmulti
((c, _, _), _) -> Some
c
7081 match c.columns
with
7082 | Cmulti
(c, _) -> Cmulti
(c, [||])
7083 | Csingle
_ -> Csingle
[||]
7084 | Csplit
_ -> failwith
"quit from bird's eye while split"
7086 pan, { c with beyecolumns = beyecolumns; columns
= columns
}
7087 | _ -> state.x, conf
7089 let basename = Filename.basename state.origin
in
7090 adddoc basename pan (getanchor ())
7092 let autoscrollstep =
7093 match state.autoscroll
with
7095 | None
-> conf.autoscrollstep
7097 match state.mode with
7098 | Birdseye
(bc
, _, _, _, _) ->
7101 presentation
= bc
.presentation
;
7102 interpagespace
= bc
.interpagespace
;
7103 maxwait
= bc
.maxwait
;
7104 autoscrollstep = autoscrollstep }
7105 | _ -> { conf with autoscrollstep = autoscrollstep }
7107 (if conf.savebmarks
then state.bookmarks else []);
7109 Hashtbl.iter
(fun path (c, bookmarks, x, anchor) ->
7111 then adddoc path x anchor c bookmarks
7113 Buffer.add_string
bb "</llppconfig>\n";
7116 if load1 f && Buffer.length
bb > 0
7119 let tmp = !confpath ^
".tmp" in
7120 let oc = open_out_bin
tmp in
7121 Buffer.output_buffer
oc bb;
7123 Unix.rename
tmp !confpath;
7126 ("error while saving configuration: " ^ exntos exn
)
7130 let adderrmsg src msg
=
7131 Buffer.add_string
state.errmsgs msg
;
7132 state.newerrmsgs
<- true;
7136 let adderrfmt src fmt
=
7137 Format.kprintf
(fun s -> adderrmsg src s) fmt
;
7141 let cl = splitatspace cmds
in
7143 try Scanf.sscanf
s fmt
f
7145 adderrfmt "remote exec"
7146 "error processing '%S': %s\n" cmds
(exntos exn
)
7149 | "reload" :: [] -> reload ()
7150 | "goto" :: args :: [] ->
7151 scan args "%u %f %f"
7153 let cmd, _ = state.geomcmds
in
7154 if String.length
cmd = 0
7155 then gotopagexy pageno x y
7158 gotopagexy pageno x y;
7161 state.reprf
<- f state.reprf
7163 | "goto1" :: args :: [] -> scan args "%u %f" gotopage
7164 | "rect" :: args :: [] ->
7165 scan args "%u %u %f %f %f %f"
7166 (fun pageno color x0 y0 x1 y1 ->
7167 onpagerect pageno (fun w h ->
7168 let _,w1,h1
,_ = getpagedim pageno in
7169 let sw = float w1 /. w
7170 and sh = float h1
/. h in
7174 and y1s
= y1 *. sh in
7175 let rect = (x0s,y0s
,x1s
,y0s
,x1s
,y1s
,x0s,y1s
) in
7177 state.rects <- (pageno, color, rect) :: state.rects;
7178 G.postRedisplay "rect";
7181 | "activatewin" :: [] -> Wsi.activatewin
()
7182 | "quit" :: [] -> raise Quit
7184 adderrfmt "remote command"
7185 "error processing remote command: %S\n" cmds
;
7189 let scratch = String.create
80 in
7190 let buf = Buffer.create
80 in
7193 try Some
(Unix.read fd
scratch 0 80)
7195 | Unix.Unix_error
(Unix.EAGAIN
, _, _) -> None
7196 | Unix.Unix_error
(Unix.EINTR
, _, _) -> tempfr ()
7199 match tempfr () with
7205 if Buffer.length
buf > 0
7207 let s = Buffer.contents
buf in
7217 let pos = String.index_from
scratch ppos '
\n'
in
7218 if pos >= n then -1 else pos
7219 with Not_found
-> -1
7223 Buffer.add_substring
buf scratch ppos
(nlpos-ppos
);
7224 let s = Buffer.contents
buf in
7230 Buffer.add_substring
buf scratch ppos
(n-ppos
);
7236 let remoteopen path =
7237 try Some
(Unix.openfile
path [Unix.O_NONBLOCK
; Unix.O_RDONLY
] 0o0
)
7239 adderrfmt "remoteopen" "error opening %S: %s" path (exntos exn
);
7244 let trimcachepath = ref "" in
7245 let rcmdpath = ref "" in
7248 [("-p", Arg.String
(fun s -> state.password
<- s),
7249 "<password> Set password");
7251 ("-f", Arg.String
(fun s -> Config.fontpath := s),
7252 "<path> Set path to the user interface font");
7254 ("-c", Arg.String
(fun s -> Config.confpath := s),
7255 "<path> Set path to the configuration file");
7257 ("-tcf", Arg.String
(fun s -> trimcachepath := s),
7258 "<path> Set path to the trim cache file");
7260 ("-dest", Arg.String
(fun s -> state.nameddest
<- s),
7261 "<named-destination> Set named destination");
7263 ("-wtmode", Arg.Set
wtmode, " Operate in wt mode");
7265 ("-remote", Arg.String
(fun s -> rcmdpath := s),
7266 "<path> Set path to the remote commands source");
7268 ("-origin", Arg.String
(fun s -> state.origin
<- s),
7269 "<original path> Set original path");
7271 ("-v", Arg.Unit
(fun () ->
7273 "%s\nconfiguration path: %s\n"
7277 exit
0), " Print version and exit");
7280 (fun s -> state.path <- s)
7281 ("Usage: " ^
Sys.argv
.(0) ^
" [options] some.pdf\nOptions:")
7283 if String.length
state.path = 0
7284 then (prerr_endline
"file name missing"; exit
1);
7286 if not
(Config.load ())
7287 then prerr_endline
"failed to load configuration";
7289 let globalkeyhash = findkeyhash conf "global" in
7290 let wsfd, winw, winh
= Wsi.init
(object
7292 if nogeomcmds state.geomcmds
|| platform == Posx
7295 GlClear.color (scalecolor2 conf.bgcolor
);
7296 GlClear.clear
[`
color];
7298 method display = display ()
7299 method reshape w h = reshape w h
7300 method mouse b d x y m = mouse b d x y m
7301 method motion x y = state.mpos
<- (x, y); motion x y
7302 method pmotion x y = state.mpos
<- (x, y); pmotion x y
7304 let mascm = m land (
7305 Wsi.altmask
+ Wsi.shiftmask
+ Wsi.ctrlmask
+ Wsi.metamask
7307 match state.keystate
with
7309 let km = k, mascm in
7312 let modehash = state.uioh#
modehash in
7313 try Hashtbl.find modehash km
7315 try Hashtbl.find globalkeyhash km
7316 with Not_found
-> KMinsrt
(k, m)
7318 | KMinsrt
(k, m) -> keyboard k m
7319 | KMinsrl
l -> List.iter
(fun (k, m) -> keyboard k m) l
7320 | KMmulti
(l, r) -> state.keystate
<- KSinto
(l, r)
7322 | KSinto
((k'
, m'
) :: [], insrt
) when k'
=k && m'
land mascm = m'
->
7323 List.iter
(fun (k, m) -> keyboard k m) insrt
;
7324 state.keystate
<- KSnone
7325 | KSinto
((k'
, m'
) :: keys
, insrt
) when k'
=k && m'
land mascm = m'
->
7326 state.keystate
<- KSinto
(keys
, insrt
)
7328 state.keystate
<- KSnone
7330 method enter
x y = state.mpos
<- (x, y); pmotion x y
7331 method leave = state.mpos
<- (-1, -1)
7332 method winstate wsl
= state.winstate
<- wsl
7333 method quit
= raise Quit
7334 end) conf.cwinw
conf.cwinh
(platform = Posx
) in
7339 List.exists
GlMisc.check_extension
7340 [ "GL_ARB_texture_rectangle"
7341 ; "GL_EXT_texture_recangle"
7342 ; "GL_NV_texture_rectangle" ]
7344 then (prerr_endline
"OpenGL does not suppport rectangular textures"; exit
1);
7347 match Ne.pipe () with
7349 Printf.eprintf
"pipe/crsw failed: %s" (exntos exn
);
7353 match Ne.pipe () with
7355 Printf.eprintf
"pipe/srcw failed: %s" (exntos exn
);
7365 setcheckers conf.checkers
;
7369 conf.angle
, conf.fitmodel
, (conf.trimmargins
, conf.trimfuzz
),
7370 conf.texcount
, conf.sliceheight
, conf.mustoresize
, conf.colorspace
,
7371 !Config.fontpath, !trimcachepath,
7372 GlMisc.check_extension
"GL_ARB_pixel_buffer_object"
7376 state.text <- "Opening " ^
(mbtoutf8
state.path);
7378 opendoc state.path state.password
;
7381 Sys.set_signal
Sys.sighup
(Sys.Signal_handle
(fun _ -> reload ()));
7384 if String.length
!rcmdpath > 0
7385 then remoteopen !rcmdpath
7390 let rec loop deadline
=
7392 match state.errfd
with
7393 | None
-> [state.sr
; state.wsfd]
7394 | Some fd
-> [state.sr
; state.wsfd; fd
]
7399 | Some fd
-> fd
:: r
7403 state.redisplay
<- false;
7410 if deadline
= infinity
7412 else max
0.0 (deadline
-. now)
7417 try Unix.select
r [] [] timeout
7418 with Unix.Unix_error
(Unix.EINTR
, _, _) -> [], [], []
7424 if state.ghyll
== noghyll
7426 match state.autoscroll
with
7427 | Some step
when step
!= 0 ->
7428 let y = state.y + step
in
7432 else if y >= state.maxy then 0 else y
7435 if state.mode = View
7436 then state.text <- "";
7439 else deadline
+. 0.01
7444 let rec checkfds = function
7446 | fd
:: rest
when fd
= state.sr
->
7447 let cmd = readcmd state.sr
in
7451 | fd
:: rest
when fd
= state.wsfd ->
7455 | fd
:: rest
when Some fd
= !optrfd ->
7456 begin match remote fd
with
7457 | None
-> optrfd := remoteopen !rcmdpath;
7458 | opt -> optrfd := opt
7463 let s = String.create
80 in
7464 let n = tempfailureretry
(Unix.read fd
s 0) 80 in
7465 if conf.redirectstderr
7467 Buffer.add_substring
state.errmsgs
s 0 n;
7468 state.newerrmsgs
<- true;
7469 state.redisplay
<- true;
7472 prerr_string
(String.sub
s 0 n);
7480 if deadline
= infinity
7484 match state.autoscroll
with
7485 | Some step
when step
!= 0 -> deadline1
7486 | _ -> if state.ghyll
== noghyll then infinity
else deadline1