6 | Ulinkgoto
of (int * int)
8 | Uunexpected
of string
11 | Uremote
of (string * int)
12 and facename
= string;;
14 let dolog fmt
= Printf.kprintf prerr_endline fmt
;;
15 let now = Unix.gettimeofday
;;
17 type params
= (angle
* proportional
* trimparams
18 * texcount
* sliceheight
* memsize
19 * colorspace
* fontpath
* trimcachepath
29 and proportional
= bool
30 and trimmargins
= bool
31 and interpagespace
= int
38 and trimcachepath
= string
41 and irect
= (int * int * int * int)
42 and trimparams
= (trimmargins
* irect
)
43 and colorspace
= | Rgb
| Bgr
| Gray
53 | LDfirstvisible
of (int * int * int)
68 | KMmulti
of key list
* key list
70 and keyhash
= (key
, keymap
) Hashtbl.t
73 | KSinto
of (key list
* key list
)
76 type platform
= | Punknown
| Plinux
| Posx
| Psun
| Pfreebsd
77 | Pdragonflybsd
| Popenbsd
| Pnetbsd
| Pcygwin
;;
79 type pipe
= (Unix.file_descr
* Unix.file_descr
);;
81 external init
: pipe
-> params
-> unit = "ml_init";;
82 external seltext
: string -> (int * int * int * int) -> unit = "ml_seltext";;
83 external copysel
: Unix.file_descr
-> opaque
-> unit = "ml_copysel";;
84 external getpdimrect
: int -> float array
= "ml_getpdimrect";;
85 external whatsunder
: string -> int -> int -> under
= "ml_whatsunder";;
86 external zoomforh
: int -> int -> int -> int -> float = "ml_zoom_for_height";;
87 external drawstr
: int -> int -> int -> string -> float = "ml_draw_string";;
88 external measurestr
: int -> string -> float = "ml_measure_string";;
89 external getmaxw
: unit -> float = "ml_getmaxw";;
90 external postprocess
:
91 opaque
-> int -> int -> int -> (int * string * int) -> int = "ml_postprocess";;
92 external pagebbox
: opaque
-> (int * int * int * int) = "ml_getpagebox";;
93 external platform
: unit -> platform
= "ml_platform";;
94 external setaalevel
: int -> unit = "ml_setaalevel";;
95 external realloctexts
: int -> bool = "ml_realloctexts";;
96 external cloexec
: Unix.file_descr
-> unit = "ml_cloexec";;
97 external findlink
: opaque
-> linkdir
-> link
= "ml_findlink";;
98 external getlink
: opaque
-> int -> under
= "ml_getlink";;
99 external getlinkrect
: opaque
-> int -> irect
= "ml_getlinkrect";;
100 external getlinkcount
: opaque
-> int = "ml_getlinkcount";;
101 external findpwl
: int -> int -> pagewithlinks
= "ml_find_page_with_links"
102 external popen
: string -> (Unix.file_descr
* int) list
-> unit = "ml_popen";;
103 external mbtoutf8
: string -> string = "ml_mbtoutf8";;
104 external getpbo
: width
-> height
-> colorspace
-> string = "ml_getpbo";;
105 external freepbo
: string -> unit = "ml_freepbo";;
106 external unmappbo
: string -> unit = "ml_unmappbo";;
107 external pbousable
: unit -> bool = "ml_pbo_usable";;
109 let platform_to_string = function
110 | Punknown
-> "unknown"
114 | Pfreebsd
-> "FreeBSD"
115 | Pdragonflybsd
-> "DragonflyBSD"
116 | Popenbsd
-> "OpenBSD"
117 | Pnetbsd
-> "NetBSD"
118 | Pcygwin
-> "Cygwin"
121 let platform = platform ();;
124 if platform = Pcygwin
126 let sh = "/bin/sh" in
127 let args = [|sh; "-c"; cmd
|] in
128 let rec std si so se
= function
130 | (fd
, 0) :: rest
-> std fd so se rest
131 | (fd
, -1) :: rest
->
132 Unix.set_close_on_exec fd
;
135 failwith
("unexpected fdn in cygwin popen " ^ string_of_int n
)
137 let si, so
, se
= std Unix.stdin
Unix.stdout
Unix.stderr fda
in
138 ignore
(Unix.create_process
sh args si so se
)
147 and tileparams
= (x
* y
* width
* height
* tilex
* tiley
)
150 external drawtile
: tileparams
-> opaque
-> unit = "ml_drawtile";;
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
315 ; mutable savebmarks
: bool
316 ; mutable proportional
: proportional
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
349 | Csingle
of singlecolumn
350 | Cmulti
of multicolumns
351 | Csplit
of splitcolumns
354 type anchor
= pageno
* top
* dtop
;;
356 type outline
= string * int * anchor
;;
358 type rect
= float * float * float * float * float * float * float * float;;
360 type tile
= opaque
* pixmapsize
* elapsed
361 and elapsed
= float;;
362 type pagemapkey
= pageno
* gen
;;
363 type tilemapkey
= pageno
* gen
* colorspace
* angle
* width
* height
* col
* row
367 let emptyanchor = (0, 0.0, 0.0);;
369 type infochange
= | Memused
| Docinfo
| Pdim
;;
371 class type uioh
= object
372 method display
: unit
373 method key
: int -> int -> uioh
374 method button
: int -> bool -> int -> int -> int -> uioh
375 method motion
: int -> int -> uioh
376 method pmotion
: int -> int -> uioh
377 method infochanged
: infochange
-> unit
378 method scrollpw
: (int * float * float)
379 method scrollph
: (int * float * float)
380 method modehash
: keyhash
384 | Birdseye
of (conf
* leftx
* pageno
* pageno
* anchor
)
385 | Textentry
of (textentry
* onleave
)
387 | LinkNav
of linktarget
388 and onleave
= leavetextentrystatus
-> unit
389 and leavetextentrystatus
= | Cancel
| Confirm
390 and helpitem
= string * int * action
393 | Action
of (uioh
-> uioh
)
395 | Ltexact
of (pageno
* int)
399 let isbirdseye = function Birdseye _
-> true | _
-> false;;
400 let istextentry = function Textentry _
-> true | _
-> false;;
404 | Loading
of (page
* gen
)
406 page
* opaque
* colorspace
* angle
* gen
* col
* row
* width
* height
408 | Outlining
of outline list
411 let emptykeyhash = Hashtbl.create
0;;
412 let nouioh : uioh
= object (self
)
414 method key _ _
= self
415 method button _ _ _ _ _
= self
416 method motion _ _
= self
417 method pmotion _ _
= self
418 method infochanged _
= ()
419 method scrollpw
= (0, nan
, nan
)
420 method scrollph
= (0, nan
, nan
)
421 method modehash
= emptykeyhash
425 { mutable sr
: Unix.file_descr
426 ; mutable sw
: Unix.file_descr
427 ; mutable wsfd
: Unix.file_descr
428 ; mutable errfd
: Unix.file_descr
option
429 ; mutable stderr
: Unix.file_descr
430 ; mutable errmsgs
: Buffer.t
431 ; mutable newerrmsgs
: bool
435 ; mutable scrollw
: int
436 ; mutable hscrollh
: int
437 ; mutable anchor
: anchor
438 ; mutable ranchors
: (string * string * anchor
) list
440 ; mutable layout
: page list
441 ; pagemap
: (pagemapkey
, opaque
) Hashtbl.t
442 ; tilemap
: (tilemapkey
, tile
) Hashtbl.t
443 ; tilelru
: (tilemapkey
* opaque
* pixmapsize
) Queue.t
444 ; mutable pdims
: (pageno
* width
* height
* leftx
) list
445 ; mutable pagecount
: int
446 ; mutable currently
: currently
447 ; mutable mstate
: mstate
448 ; mutable searchpattern
: string
449 ; mutable rects
: (pageno
* recttype
* rect
) list
450 ; mutable rects1
: (pageno
* recttype
* rect
) list
451 ; mutable text
: string
452 ; mutable fullscreen
: (width
* height
) option
453 ; mutable mode
: mode
454 ; mutable uioh
: uioh
455 ; mutable outlines
: outline array
456 ; mutable bookmarks
: outline list
457 ; mutable path
: string
458 ; mutable password
: string
459 ; mutable geomcmds
: (string * ((string * (unit -> unit)) list
))
460 ; mutable memused
: memsize
462 ; mutable throttle
: (page list
* int * float) option
463 ; mutable autoscroll
: int option
464 ; mutable ghyll
: (int option -> unit)
465 ; mutable help
: helpitem array
466 ; mutable docinfo
: (int * string) list
467 ; mutable texid
: GlTex.texture_id
option
469 ; mutable prevzoom
: float
470 ; mutable progress
: float
471 ; mutable redisplay
: bool
472 ; mutable mpos
: mpos
473 ; mutable keystate
: keystate
474 ; mutable glinks
: bool
475 ; mutable prevcolumns
: (columns
* float) option
478 { pat
: string circbuf
479 ; pag
: string circbuf
480 ; nav
: anchor circbuf
481 ; sel
: string circbuf
503 ; presentation
= false
508 ; proportional
= true
509 ; trimmargins
= false
510 ; trimfuzz
= (0,0,0,0)
511 ; memlimit
= 32 lsl 20
516 ; bgcolor
= (0.5, 0.5, 0.5)
518 ; scrollbarinpm
= true
521 ; mustoresize
= 256 lsl 20
526 | Plinux
| Pfreebsd
| Pdragonflybsd
527 | Popenbsd
| Pnetbsd
| Psun
-> "xdg-open \"%s\""
528 | Posx
-> "open \"%s\""
529 | Pcygwin
-> "cygstart \"%s\""
530 | Punknown
-> "echo %s")
531 ; pathlauncher
= "lp \"%s\""
534 | Plinux
| Pfreebsd
| Pdragonflybsd
535 | Popenbsd
| Pnetbsd
| Psun
-> "xsel -i"
542 ; redirectstderr
= false
544 ; columns
= Csingle
[||]
551 let mk n
= (n
, Hashtbl.create
1) in
565 let findkeyhash c name
=
566 try List.assoc name c
.keyhashes
567 with Not_found
-> failwith
("invalid mode name `" ^ name ^
"'")
570 let conf = { defconf with angle
= defconf.angle
};;
572 let pgscale h
= truncate
(float h
*. conf.pgscale);;
575 { mutable fontsize
: int
576 ; mutable wwidth
: float
577 ; mutable maxrows
: int
589 fstate.fontsize
<- n
;
590 fstate.wwidth
<- measurestr
fstate.fontsize
"w";
591 fstate.maxrows
<- (conf.winh
- fstate.fontsize
- 1) / (fstate.fontsize
+ 1);
595 let colonpos = try String.index s '
:'
with Not_found
-> -1 in
596 let len = String.length s
in
597 if colonpos >= 0 && colonpos + 3 < len
599 if s
.[colonpos+1] = '
/'
&& s
.[colonpos+2] = '
/'
602 try String.rindex_from s
colonpos ' '
606 String.sub s
(schemestartpos+1) (colonpos-1-schemestartpos)
609 | "http" | "ftp" | "mailto" ->
611 try String.index_from s
colonpos ' '
612 with Not_found
-> len
614 String.sub s
(schemestartpos+1) (epos-1-schemestartpos)
622 if String.length
conf.urilauncher
= 0
623 then print_endline uri
625 let url = geturl uri
in
626 if String.length
url = 0
627 then print_endline uri
629 let re = Str.regexp
"%s" in
630 let command = Str.global_replace
re url conf.urilauncher
in
634 "failed to execute `%s': %s\n" command (Printexc.to_string exn
);
640 Printf.sprintf
"llpp version %s (%s/%dbit, ocaml %s)" Help.version
641 (platform_to_string platform) Sys.word_size
Sys.ocaml_version
645 let strings = version () :: "" :: Help.keys
in
648 let url = geturl s
in
649 if String.length
url > 0
650 then (s
, 0, Action
(fun u
-> gotouri url; u
))
651 else (s
, 0, Noaction
)
656 let firstgeomcmds = "", [];;
663 ; stderr
= Unix.stderr
664 ; errmsgs
= Buffer.create
0
671 ; anchor
= emptyanchor
675 ; tilelru
= Queue.create
()
676 ; pagemap
= Hashtbl.create
10
677 ; tilemap
= Hashtbl.create
10
692 ; geomcmds
= firstgeomcmds
694 { nav
= cbnew 10 emptyanchor
721 Printf.kprintf prerr_endline fmt
723 Printf.kprintf ignore fmt
727 if String.length
conf.pathlauncher
= 0
728 then print_endline
state.path
730 let re = Str.regexp
"%s" in
731 let command = Str.global_replace
re state.path
conf.pathlauncher
in
735 "failed to execute `%s': %s\n" command (Printexc.to_string exn
);
741 type 'a t
= | Res
of 'a
| Exn
of exn
;;
744 try Res
(Unix.pipe ())
750 with exn
-> f
(Printexc.to_string exn
)
754 try Res
(Unix.dup fd
)
759 try Res
(Unix.dup2 fd1 fd2
)
764 let redirectstderr () =
765 let clofail what errmsg
= dolog "failed to close %s: %s" what errmsg
in
766 if conf.redirectstderr
768 match Ne.pipe () with
770 dolog "failed to create stderr redirection pipes: %s"
771 (Printexc.to_string exn
)
774 begin match Ne.dup Unix.stderr
with
776 dolog "failed to dup stderr: %s" (Printexc.to_string exn
);
777 Ne.clo r
(clofail "pipe/r");
778 Ne.clo w
(clofail "pipe/w");
780 | Ne.Res dupstderr
->
781 begin match Ne.dup2 w
Unix.stderr
with
783 dolog "failed to dup2 to stderr: %s"
784 (Printexc.to_string exn
);
785 Ne.clo dupstderr
(clofail "stderr duplicate");
786 Ne.clo r
(clofail "redir pipe/r");
787 Ne.clo w
(clofail "redir pipe/w");
790 state.stderr
<- dupstderr
;
791 state.errfd
<- Some r
;
795 state.newerrmsgs
<- false;
796 begin match state.errfd
with
798 begin match Ne.dup2 state.stderr
Unix.stderr
with
800 dolog "failed to dup2 original stderr: %s"
801 (Printexc.to_string exn
)
803 Ne.clo fd
(clofail "dup of stderr");
804 Unix.dup2 state.stderr
Unix.stderr
;
809 prerr_string
(Buffer.contents
state.errmsgs
);
811 Buffer.clear
state.errmsgs
;
817 let postRedisplay who
=
819 then prerr_endline
("redisplay for " ^ who
);
820 state.redisplay
<- true;
824 let getopaque pageno
=
825 try Some
(Hashtbl.find
state.pagemap
(pageno
, state.gen
))
826 with Not_found
-> None
829 let putopaque pageno opaque
=
830 Hashtbl.replace
state.pagemap
(pageno
, state.gen
) opaque
833 let pagetranslatepoint l x y
=
834 let dy = y
- l
.pagedispy
in
835 let y = dy + l
.pagey
in
836 let dx = x
- l
.pagedispx
in
837 let x = dx + l
.pagex
in
844 begin match getopaque l
.pageno
with
846 let x0 = l
.pagedispx
in
847 let x1 = x0 + l
.pagevw
in
848 let y0 = l
.pagedispy
in
849 let y1 = y0 + l
.pagevh
in
850 if y >= y0 && y <= y1 && x >= x0 && x <= x1
852 let px, py
= pagetranslatepoint l
x y in
853 match whatsunder opaque
px py
with
866 state.text
<- Printf.sprintf
"%c%s" c s
;
867 G.postRedisplay "showtext";
870 let undertext = function
873 | Ulinkgoto
(pageno
, _
) -> Printf.sprintf
"%s: page %d" state.path
(pageno
+1)
874 | Utext s
-> "font: " ^ s
875 | Uunexpected s
-> "unexpected: " ^ s
876 | Ulaunch s
-> "launch: " ^ s
877 | Unamed s
-> "named: " ^ s
878 | Uremote
(filename
, pageno
) ->
879 Printf.sprintf
"%s: page %d" filename
(pageno
+1)
882 let updateunder x y =
883 match getunder x y with
884 | Unone
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
886 if conf.underinfo
then showtext 'u'
("ri: " ^ uri
);
887 Wsi.setcursor
Wsi.CURSOR_INFO
888 | Ulinkgoto
(pageno
, _
) ->
890 then showtext 'p'
("age: " ^ string_of_int
(pageno
+1));
891 Wsi.setcursor
Wsi.CURSOR_INFO
893 if conf.underinfo
then showtext '
f'
("ont: " ^ s
);
894 Wsi.setcursor
Wsi.CURSOR_TEXT
896 if conf.underinfo
then showtext 'u'
("nexpected: " ^ s
);
897 Wsi.setcursor
Wsi.CURSOR_INHERIT
899 if conf.underinfo
then showtext 'l'
("aunch: " ^ s
);
900 Wsi.setcursor
Wsi.CURSOR_INHERIT
902 if conf.underinfo
then showtext 'n'
("amed: " ^ s
);
903 Wsi.setcursor
Wsi.CURSOR_INHERIT
904 | Uremote
(filename
, pageno
) ->
905 if conf.underinfo
then showtext 'r'
906 (Printf.sprintf
"emote: %s (%d)" filename
(pageno
+1));
907 Wsi.setcursor
Wsi.CURSOR_INFO
910 let showlinktype under
=
916 let s = undertext under
in
921 let b = Buffer.create
(String.length
s + 1) in
922 Buffer.add_string
b s;
927 let colorspace_of_string s =
928 match String.lowercase
s with
932 | _
-> failwith
"invalid colorspace"
935 let int_of_colorspace = function
941 let colorspace_of_int = function
945 | n
-> failwith
("invalid colorspace index " ^ string_of_int n
)
948 let colorspace_to_string = function
954 let intentry_with_suffix text key
=
956 if key
>= 32 && key
< 127
960 match Char.lowercase
c with
962 let text = addchar text c in
966 let text = addchar text c in
970 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key
c;
974 let multicolumns_to_string (n
, a
, b) =
976 then Printf.sprintf
"%d" n
977 else Printf.sprintf
"%d,%d,%d" n a
b;
980 let multicolumns_of_string s =
982 (int_of_string
s, 0, 0)
984 Scanf.sscanf
s "%u,%u,%u" (fun n a
b ->
986 then failwith
"subtly broken"; (n
, a
, b)
992 let n = Unix.read fd
s 0 4 in
993 if n != 4 then failwith
"incomplete read(len)";
995 lor (Char.code
s.[0] lsl 24)
996 lor (Char.code
s.[1] lsl 16)
997 lor (Char.code
s.[2] lsl 8)
998 lor (Char.code
s.[3] lsl 0)
1000 let s = String.create
len in
1001 let n = Unix.read fd
s 0 len in
1002 if n != len then failwith
"incomplete read(data)";
1006 let btod b = if b then 1 else 0;;
1009 let b = Buffer.create
16 in
1010 Buffer.add_string
b "llll";
1013 let s = Buffer.contents
b in
1014 let n = String.length
s in
1016 (* dolog "wcmd %S" (String.sub s 4 len); *)
1017 s.[0] <- Char.chr
((len lsr 24) land 0xff);
1018 s.[1] <- Char.chr
((len lsr 16) land 0xff);
1019 s.[2] <- Char.chr
((len lsr 8) land 0xff);
1020 s.[3] <- Char.chr
(len land 0xff);
1021 let n'
= Unix.write
state.sw
s 0 n in
1022 if n'
!= n then failwith
"write failed";
1027 let d = conf.winh
- h
in
1028 max
conf.interpagespace
((d + 1) / 2)
1031 let rowyh (c, coverA
, coverB
) b n =
1032 if c = 1 || (n < coverA
|| n >= state.pagecount
- coverB
)
1034 let _, _, vy
, (_, _, h
, _) = b.(n) in
1037 let n'
= n - coverA
in
1040 let e = min
state.pagecount
(s + c) in
1041 let rec find m miny maxh
= if m
= e then miny
, maxh
else
1042 let _, _, y, (_, _, h
, _) = b.(m
) in
1043 let miny = min
miny y in
1044 let maxh = max
maxh h
in
1045 find (m
+1) miny maxh
1050 match conf.columns
with
1051 | Cmulti
((_, _, _) as cl
, b) ->
1052 if Array.length
b > 0
1054 let y, h
= rowyh cl
b (Array.length
b - 1) in
1055 y + h
+ (if conf.presentation
then calcips h
else 0)
1058 if Array.length
b > 0
1060 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1061 y + h
+ (if conf.presentation
then calcips h
else 0)
1064 if Array.length
b > 0
1066 let (_, _, y, (_, _, h
, _)) = b.(Array.length
b - 1) in
1071 let getpageyh pageno
=
1072 let pageno = bound pageno 0 (state.pagecount
-1) in
1073 match conf.columns
with
1075 if Array.length
b = 0
1078 let (_, _, y, (_, _, h
, _)) = b.(pageno) in
1080 if conf.presentation
1086 if Array.length
b = 0
1089 let y, h
= rowyh cl
b pageno in
1091 if conf.presentation
1097 if Array.length
b = 0
1101 let (_, _, y, (_, _, h
, _)) = b.(n) in
1105 let getpagedim pageno =
1108 | (n, _, _, _) as pdim
:: rest
->
1110 then (if n = pageno then pdim
else ppdim
)
1115 f (-1, -1, -1, -1) state.pdims
1118 let getpagey pageno = fst
(getpageyh pageno);;
1120 let nogeomcmds cmds
=
1122 | s, [] -> String.length
s = 0
1127 let ((c, coverA
, coverB
) as cl
), b =
1128 match conf.columns
with
1129 | Csingle
b -> (1, 0, 0), b
1130 | Cmulti
(c, b) -> c, b
1131 | Csplit
(_, b) -> (1, 0, 0), b
1133 let rec bsearch nmin nmax
=
1135 then bound nmin
0 (state.pagecount
-1)
1137 let n = (nmax
+ nmin
) / 2 in
1138 let vy, h
= rowyh cl
b n in
1140 if conf.presentation
1142 let ips = calcips h
in
1143 let y0 = vy - ips in
1144 let y1 = vy + h
+ ips in
1148 then 0, vy + h
+ conf.interpagespace
1150 let y0 = vy - conf.interpagespace
in
1151 y0, y0 + h
+ conf.interpagespace
1154 if y >= y0 && y < y1
1161 if n < state.pagecount
- coverB
1162 then ((n-coverA
)/c)*c + coverA
1169 then bsearch (n+1) nmax
1170 else bsearch nmin
(n-1)
1173 let r = bsearch 0 (state.pagecount
-1) in
1177 let layoutN ((columns
, coverA
, coverB
), b) y sh =
1178 let sh = sh - state.hscrollh
in
1179 let rec fold accu
n =
1180 if n = Array.length
b
1183 let pdimno, dx, vy, (_, w
, h
, xoff
) = b.(n) in
1186 || n = state.pagecount
- coverB
1187 || (n - coverA
) mod columns
= columns
- 1)
1193 let pagey = max
0 (y - vy) in
1194 let pagedispy = if pagey > 0 then 0 else vy - y in
1195 let pagedispx, pagex
=
1197 if n = coverA
- 1 || n = state.pagecount
- coverB
1198 then state.x + (conf.winw
- state.scrollw
- w
) / 2
1199 else dx + xoff
+ state.x
1206 let vw = conf.winw
- state.scrollw
- pagedispx in
1207 let pw = w
- pagex
in
1210 let pagevh = min
(h
- pagey) (sh - pagedispy) in
1211 if pagevw > 0 && pagevh > 0
1215 ; pagedimno
= pdimno
1222 ; pagedispx = pagedispx
1223 ; pagedispy = pagedispy
1235 List.rev
(fold [] (page_of_y y));
1238 let layoutS (columns
, b) y sh =
1239 let sh = sh - state.hscrollh
in
1240 let rec fold accu n =
1241 if n = Array.length
b
1244 let pdimno, px, vy, (_, pagew
, pageh
, xoff
) = b.(n) in
1251 let x = xoff
+ state.x in
1252 let pagey = max
0 (y - vy) in
1253 let pagedispy = if pagey > 0 then 0 else vy - y in
1254 let pagedispx, pagex
=
1268 let pagecolw = pagew
/columns
in
1270 if pagecolw < conf.winw
1271 then pagedispx + ((conf.winw
- state.scrollw
- pagecolw) / 2)
1275 let vw = conf.winw
- pagedispx - state.scrollw
in
1276 let pw = pagew
- pagex
in
1279 let pagevw = min
pagevw pagecolw in
1280 let pagevh = min
(pageh
- pagey) (sh - pagedispy) in
1281 if pagevw > 0 && pagevh > 0
1284 { pageno = n/columns
1285 ; pagedimno
= pdimno
1292 ; pagedispx = pagedispx
1293 ; pagedispy = pagedispy
1294 ; pagecol
= n mod columns
1305 List.rev
(fold [] 0)
1309 if nogeomcmds state.geomcmds
1311 match conf.columns
with
1312 | Csingle
b -> layoutN ((1, 0, 0), b) y sh
1313 | Cmulti
c -> layoutN c y sh
1314 | Csplit
s -> layoutS s y sh
1319 let y = state.y + incr
in
1321 let y = min
y (state.maxy
- (if conf.maxhfit
then conf.winh
else 0)) in
1326 let tilex = l
.pagex
mod conf.tilew
in
1327 let tiley = l
.pagey mod conf.tileh
in
1329 let col = l
.pagex
/ conf.tilew
in
1330 let row = l
.pagey / conf.tileh
in
1332 let rec rowloop row y0 dispy h
=
1336 let dh = conf.tileh
- y0 in
1337 let dh = min h
dh in
1338 let rec colloop col x0 dispx w
=
1342 let dw = conf.tilew
- x0 in
1343 let dw = min w
dw in
1345 f col row dispx dispy
x0 y0 dw dh;
1346 colloop (col+1) 0 (dispx
+dw) (w
-dw)
1349 colloop col tilex l
.pagedispx l
.pagevw;
1350 rowloop (row+1) 0 (dispy
+dh) (h
-dh)
1353 if l
.pagevw > 0 && l
.pagevh > 0
1354 then rowloop row tiley l
.pagedispy l
.pagevh;
1357 let gettileopaque l
col row =
1359 l
.pageno, state.gen
, conf.colorspace
, conf.angle
, l
.pagew
, l
.pageh
, col, row
1361 try Some
(Hashtbl.find state.tilemap
key)
1362 with Not_found
-> None
1365 let puttileopaque l
col row gen colorspace angle opaque size elapsed
=
1366 let key = l
.pageno, gen
, colorspace
, angle
, l
.pagew
, l
.pageh
, col, row in
1367 Hashtbl.add
state.tilemap
key (opaque
, size
, elapsed
)
1370 let drawtiles l color
=
1372 let f col row x y tilex tiley w h
=
1373 match gettileopaque l
col row with
1374 | Some
(opaque
, _, t
) ->
1375 let params = x, y, w
, h
, tilex, tiley in
1379 GlFunc.blend_func `zero `one_minus_src_color
;
1381 drawtile
params opaque
;
1383 then Gl.disable `blend
;
1386 let s = Printf.sprintf
1390 let w = measurestr
fstate.fontsize
s in
1391 GlMisc.push_attrib
[`current
];
1392 GlDraw.color
(0.0, 0.0, 0.0);
1394 (float (x-2), float (y-2))
1395 (float (x+2) +. w, float (y + fstate.fontsize
+ 2));
1396 GlDraw.color
(1.0, 1.0, 1.0);
1397 drawstring fstate.fontsize
x (y + fstate.fontsize
- 1) s;
1398 GlMisc.pop_attrib
();
1403 let lw = conf.winw
- state.scrollw
- x in
1406 let lh = conf.winh
- y in
1409 begin match state.texid
with
1411 Gl.enable `texture_2d
;
1412 GlTex.bind_texture `texture_2d id
;
1415 and x1 = float (x+w)
1416 and y1 = float (y+h
) in
1418 let tw = float w /. 16.0
1419 and th
= float h
/. 16.0 in
1420 let tx0 = float tilex /. 16.0
1421 and ty0
= float tiley /. 16.0 in
1423 and ty1
= ty0
+. th
in
1424 GlDraw.begins `quads
;
1425 GlTex.coord2
(tx0, ty0
); GlDraw.vertex2
(x0, y0);
1426 GlTex.coord2
(tx0, ty1
); GlDraw.vertex2
(x0, y1);
1427 GlTex.coord2
(tx1, ty1
); GlDraw.vertex2
(x1, y1);
1428 GlTex.coord2
(tx1, ty0
); GlDraw.vertex2
(x1, y0);
1431 Gl.disable `texture_2d
;
1433 GlDraw.color
(1.0, 1.0, 1.0);
1436 (float (x+w), float (y+h
));
1438 if w > 128 && h
> fstate.fontsize
+ 10
1440 GlDraw.color
(0.0, 0.0, 0.0);
1443 then (col*conf.tilew
, row*conf.tileh
)
1446 drawstring2 fstate.fontsize
x y "Loading %d [%d,%d]" l
.pageno c r;
1453 let pagevisible layout n = List.exists
(fun l
-> l
.pageno = n) layout;;
1455 let tilevisible1 l
x y =
1457 and ax1
= l
.pagex
+ l
.pagevw
1459 and ay1
= l
.pagey + l
.pagevh in
1463 let bx1 = min
(bx0 + conf.tilew
) l
.pagew
1464 and by1
= min
(by0
+ conf.tileh
) l
.pageh
in
1466 let rx0 = max
ax0 bx0
1467 and ry0
= max ay0 by0
1468 and rx1
= min ax1
bx1
1469 and ry1
= min ay1 by1
in
1471 let nonemptyintersection = rx1
> rx0 && ry1
> ry0
in
1472 nonemptyintersection
1475 let tilevisible layout n x y =
1476 let rec findpageinlayout m
= function
1477 | l
:: rest
when l
.pageno = n ->
1478 tilevisible1 l
x y || (
1479 match conf.columns
with
1480 | Csplit
(c, _) when c > m
-> findpageinlayout (m
+1) rest
1483 | _ :: rest
-> findpageinlayout 0 rest
1486 findpageinlayout 0 layout;
1489 let tileready l
x y =
1490 tilevisible1 l
x y &&
1491 gettileopaque l
(x/conf.tilew
) (y/conf.tileh
) != None
1494 let tilepage n p
layout =
1495 let rec loop = function
1499 let f col row _ _ _ _ _ _ =
1500 if state.currently
= Idle
1502 match gettileopaque l
col row with
1505 let x = col*conf.tilew
1506 and y = row*conf.tileh
in
1508 let w = l
.pagew
- x in
1512 let h = l
.pageh
- y in
1517 then getpbo
w h conf.colorspace
1520 wcmd "tile %s %d %d %d %d %s" p
x y w h pbo;
1523 l
, p
, conf.colorspace
, conf.angle
, state.gen
, col, row,
1524 conf.tilew
, conf.tileh
1533 if nogeomcmds state.geomcmds
1537 let preloadlayout y =
1538 let y = if y < conf.winh
then 0 else y - conf.winh
in
1539 let h = conf.winh
*3 in
1544 let rec loop pages
=
1545 if state.currently
!= Idle
1550 begin match getopaque l
.pageno with
1552 wcmd "page %d %d" l
.pageno l
.pagedimno
;
1553 state.currently
<- Loading
(l
, state.gen
);
1555 tilepage l
.pageno opaque pages
;
1560 if nogeomcmds state.geomcmds
1566 if conf.preload && state.currently
= Idle
1567 then load (preloadlayout state.y);
1570 let layoutready layout =
1571 let rec fold all ls
=
1572 all
&& match ls
with
1574 let seen = ref false in
1575 let allvisible = ref true in
1576 let foo col row _ _ _ _ _ _ =
1578 allvisible := !allvisible &&
1579 begin match gettileopaque l
col row with
1585 fold (!seen && !allvisible) rest
1588 let alltilesvisible = fold true layout in
1593 let y = bound y 0 state.maxy
in
1594 let y, layout, proceed
=
1595 match conf.maxwait
with
1596 | Some time
when state.ghyll
== noghyll ->
1597 begin match state.throttle
with
1599 let layout = layout y conf.winh
in
1600 let ready = layoutready layout in
1604 state.throttle
<- Some
(layout, y, now ());
1606 else G.postRedisplay "gotoy showall (None)";
1608 | Some
(_, _, started
) ->
1609 let dt = now () -. started
in
1612 state.throttle
<- None
;
1613 let layout = layout y conf.winh
in
1615 G.postRedisplay "maxwait";
1622 let layout = layout y conf.winh
in
1623 if true || layoutready layout
1624 then G.postRedisplay "gotoy ready";
1630 state.layout <- layout;
1631 begin match state.mode
with
1632 | LinkNav
(Ltexact
(pageno, linkno
)) ->
1633 let rec loop = function
1635 state.mode
<- LinkNav
(Ltgendir
0)
1636 | l
:: _ when l
.pageno = pageno ->
1637 begin match getopaque pageno with
1639 state.mode
<- LinkNav
(Ltgendir
0)
1641 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
1642 if not
(x0 >= l
.pagex
&& x1 <= l
.pagex
+ l
.pagevw
1643 && y0 >= l
.pagey && y1 <= l
.pagey + l
.pagevh)
1644 then state.mode
<- LinkNav
(Ltgendir
0)
1646 | _ :: rest
-> loop rest
1651 begin match state.mode
with
1652 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor
) ->
1653 if not
(pagevisible layout pageno)
1655 match state.layout with
1658 state.mode
<- Birdseye
(
1659 conf, leftx
, l
.pageno, hooverpageno
, anchor
1662 | LinkNav
(Ltgendir dir
as lt
) ->
1664 let rec loop = function
1667 match getopaque l
.pageno with
1673 then LDfirstvisible
(l
.pagex
, l
.pagey, dir
)
1675 if dir
> 0 then LDfirst
else LDlast
1681 | Lnotfound
-> loop rest
1683 showlinktype (getlink opaque
n);
1684 Ltexact
(l
.pageno, n)
1688 state.mode
<- LinkNav
linknav
1693 state.ghyll
<- noghyll;
1696 let mx, my
= state.mpos
in
1701 let conttiling pageno opaque
=
1702 tilepage pageno opaque
1703 (if conf.preload then preloadlayout state.y else state.layout)
1706 let gotoy_and_clear_text y =
1707 if not
conf.verbose
then state.text <- "";
1713 let coloff = l
.pagecol
* l
.pageh
in
1714 float (l
.pagey + coloff) /. float l
.pageh
1721 if conf.presentation
1722 then float l
.pagedispy /. float (calcips l
.pageh
)
1723 else float l
.pagedispy /. float conf.interpagespace
1725 (l
.pageno, top, dtop)
1729 match state.layout with
1730 | l
:: _ -> getanchor1 l
1732 let n = page_of_y state.y in
1733 let y, h = getpageyh n in
1734 let dy = y - state.y in
1736 if conf.presentation
1738 let ips = calcips h in
1739 float (dy + ips) /. float ips
1741 float dy /. float conf.interpagespace
1746 let getanchory (n, top, dtop) =
1747 let y, h = getpageyh n in
1748 if conf.presentation
1750 let ips = calcips h in
1751 y + truncate
(top*.float h -. dtop*.float ips) + ips;
1753 y + truncate
(top*.float h -. dtop*.float conf.interpagespace
)
1756 let gotoanchor anchor
=
1757 gotoy (getanchory anchor
);
1761 cbput state.hists
.nav
(getanchor ());
1765 let anchor = cbgetc state.hists
.nav dir
in
1770 let scroll f n a
b =
1771 (* http://devmaster.net/forums/topic/9796-ease-in-ease-out-algorithm/ *)
1773 let s x = 3.0*.x**2.0 -. 2.0*.x**3.0 in
1775 then s (float f /. float a
)
1778 then 1.0 -. s ((float (f-b) /. float (n-b)))
1785 http://integrals.wolfram.com/index.jsp?expr=3x%5E2-2x%5E3&random=false *)
1786 let iv x = -.((-.2.0 +. x)*.x**3.0)/.2.0 in
1788 let ins = float a
*. iv1
1789 and outs
= float (n-b) *. iv1 in
1791 ins +. outs
+. float ones
1793 let rec set (_N
, _A
, _B
) y sy
=
1794 let sum = summa
1.0 _N _A _B
in
1795 let dy = float (y - sy
) in
1799 then state.ghyll
<- noghyll
1802 let s = scroll n _N _A _B
in
1803 let y1 = y1 +. ((s *. dy) /. sum) in
1804 gotoy_and_clear_text (truncate
y1);
1805 state.ghyll
<- gf (n+1) y1;
1809 | Some
y'
-> set (_N
/2, 1, 1) y'
state.y
1811 gf 0 (float state.y)
1814 match conf.ghyllscroll
with
1816 gotoy_and_clear_text y
1818 if state.ghyll
== noghyll
1819 then set nab
y state.y
1820 else state.ghyll
(Some
y)
1823 let gotopage n top =
1824 let y, h = getpageyh n in
1825 let y = y + (truncate
(top *. float h)) in
1829 let gotopage1 n top =
1830 let y = getpagey n in
1835 let invalidate s f =
1840 match state.geomcmds
with
1841 | ps
, [] when String.length ps
= 0 ->
1843 state.geomcmds
<- s, [];
1846 state.geomcmds
<- ps
, [s, f];
1848 | ps
, (s'
, _) :: rest
when s'
= s ->
1849 state.geomcmds
<- ps
, ((s, f) :: rest
);
1852 state.geomcmds
<- ps
, ((s, f) :: cmds
);
1856 Hashtbl.iter
(fun _ opaque
->
1857 wcmd "freepage %s" opaque
;
1859 Hashtbl.clear
state.pagemap
;
1862 let opendoc path password
=
1864 state.password
<- password
;
1865 state.gen
<- state.gen
+ 1;
1866 state.docinfo
<- [];
1869 setaalevel
conf.aalevel
;
1870 Wsi.settitle
("llpp " ^
(mbtoutf8
(Filename.basename path
)));
1871 wcmd "open %s\000%s\000" path password
;
1872 invalidate "reqlayout"
1874 wcmd "reqlayout %d %d" conf.angle
(btod conf.proportional
));
1878 state.anchor <- getanchor ();
1879 opendoc state.path
state.password
;
1883 let c = c *. conf.colorscale
in
1887 let scalecolor2 (r, g
, b) =
1888 (r *. conf.colorscale
, g
*. conf.colorscale
, b *. conf.colorscale
);
1891 let docolumns = function
1893 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1894 let rec loop pageno pdimno pdim
y ph pdims
=
1895 if pageno = state.pagecount
1898 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
1900 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
1901 pdimno+1, pdim
, rest
1905 let x = max
0 (((conf.winw
- state.scrollw
- w) / 2) - xoff
) in
1907 (if conf.presentation
1908 then (if pageno = 0 then calcips h else calcips ph
+ calcips h)
1909 else (if pageno = 0 then 0 else conf.interpagespace
)
1912 a.(pageno) <- (pdimno, x, y, pdim
);
1913 loop (pageno+1) pdimno pdim
(y + h) h pdims
1915 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 state.pdims
;
1916 conf.columns
<- Csingle
a;
1918 | Cmulti
((columns
, coverA
, coverB
), _) ->
1919 let a = Array.make
state.pagecount
(-1, -1, -1, (-1, -1, -1, -1)) in
1920 let rec loop pageno pdimno pdim
x y rowh pdims
=
1921 let rec fixrow m
= if m
= pageno then () else
1922 let (pdimno, x, y, ((_, _, h, _) as pdim
)) = a.(m
) in
1925 let y = y + (rowh
- h) / 2 in
1926 a.(m
) <- (pdimno, x, y, pdim
);
1930 if pageno = state.pagecount
1931 then fixrow (((pageno - 1) / columns
) * columns
)
1933 let pdimno, ((_, w, h, xoff
) as pdim
), pdims
=
1935 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
1936 pdimno+1, pdim
, rest
1941 if pageno = coverA
- 1 || pageno = state.pagecount
- coverB
1943 let x = (conf.winw
- state.scrollw
- w) / 2 in
1945 if conf.presentation
then calcips h else conf.interpagespace
in
1946 x, y + ips + rowh
, h
1949 if (pageno - coverA
) mod columns
= 0
1951 let x = max
0 (conf.winw
- state.scrollw
- state.w) / 2 in
1953 if conf.presentation
1955 let ips = calcips h in
1956 y + (if pageno = 0 then 0 else calcips rowh
+ ips)
1958 y + (if pageno = 0 then 0 else conf.interpagespace
)
1962 else x, y, max rowh
h
1966 if pageno > 1 && (pageno - coverA
) mod columns
= 0
1969 if pageno = columns
&& conf.presentation
1971 let ips = calcips rowh
in
1972 for i
= 0 to pred columns
1974 let (pdimno, x, y, pdim
) = a.(i
) in
1975 a.(i
) <- (pdimno, x, y+ips, pdim
)
1981 fixrow (pageno - columns
);
1986 a.(pageno) <- (pdimno, x, y, pdim
);
1987 let x = x + w + xoff
*2 + conf.interpagespace
in
1988 loop (pageno+1) pdimno pdim
x y rowh' pdims
1990 loop 0 ~
-1 (-1,-1,-1,-1) 0 0 0 state.pdims
;
1991 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), a);
1994 let a = Array.make
(state.pagecount
*c) (-1, -1, -1, (-1, -1, -1, -1)) in
1995 let rec loop pageno pdimno pdim
y pdims
=
1996 if pageno = state.pagecount
1999 let pdimno, ((_, w, h, _) as pdim
), pdims
=
2001 | ((pageno'
, _, _, _) as pdim
) :: rest
when pageno'
= pageno ->
2002 pdimno+1, pdim
, rest
2007 let rec loop1 n x y =
2008 if n = c then y else (
2009 a.(pageno*c + n) <- (pdimno, x, y, pdim
);
2010 loop1 (n+1) (x+cw) (y + h + conf.interpagespace
)
2013 let y = loop1 0 0 y in
2014 loop (pageno+1) pdimno pdim
y pdims
2016 loop 0 ~
-1 (-1,-1,-1,-1) 0 state.pdims
;
2017 conf.columns
<- Csplit
(c, a);
2021 docolumns conf.columns
;
2022 state.maxy
<- calcheight ();
2024 if state.w <= conf.winw
- state.scrollw
2028 match state.mode
with
2029 | Birdseye
(_, _, pageno, _, _) ->
2030 let y, h = getpageyh pageno in
2031 let top = (conf.winh
- h) / 2 in
2032 gotoy (max
0 (y - top))
2033 | _ -> gotoanchor state.anchor
2037 GlDraw.viewport
0 0 w h;
2038 let firsttime = state.geomcmds
== firstgeomcmds in
2039 if not
firsttime && nogeomcmds state.geomcmds
2040 then state.anchor <- getanchor ();
2043 let w = truncate
(float w *. conf.zoom
) - state.scrollw
in
2046 setfontsize fstate.fontsize
;
2047 GlMat.mode `modelview
;
2048 GlMat.load_identity
();
2050 GlMat.mode `projection
;
2051 GlMat.load_identity
();
2052 GlMat.rotate ~
x:1.0 ~angle
:180.0 ();
2053 GlMat.translate ~
x:~
-.1.0 ~
y:~
-.1.0 ();
2054 GlMat.scale3
(2.0 /. float conf.winw
, 2.0 /. float conf.winh
, 1.0);
2059 else float state.x /. float state.w
2061 invalidate "geometry"
2065 then state.x <- truncate
(relx *. float w);
2067 match conf.columns
with
2069 | Cmulti
((c, _, _), _) -> (w - (c-1)*conf.interpagespace
) / c
2070 | Csplit
(c, _) -> w * c
2072 wcmd "geometry %d %d" w h);
2076 let len = String.length
state.text in
2079 match state.mode
with
2082 let h, _, _ = state.uioh#scrollpw
in
2088 (x, float (conf.winh
- (fstate.fontsize
+ 4) - hscrollh))
2089 (x+.w, float (conf.winh
- hscrollh))
2092 let w = float (conf.winw
- state.scrollw
- 1) in
2093 if state.progress
>= 0.0 && state.progress
< 1.0
2095 GlDraw.color
(0.3, 0.3, 0.3);
2096 let w1 = w *. state.progress
in
2098 GlDraw.color
(0.0, 0.0, 0.0);
2102 GlDraw.color
(0.0, 0.0, 0.0);
2106 GlDraw.color
(1.0, 1.0, 1.0);
2107 drawstring fstate.fontsize
2108 (if len > 0 then 8 else 2) (conf.winh
- hscrollh - 5) s;
2111 match state.mode
with
2112 | Textentry
((prefix
, text, _, _, _, _), _) ->
2116 Printf.sprintf
"%s%s_ [%s]" prefix
text state.text
2118 Printf.sprintf
"%s%s_" prefix
text
2127 if not
(istextentry state.mode
)
2129 let s1 = "(press 'e' to review error messasges)" in
2130 if String.length
s > 0 then s ^
" " ^
s1 else s1
2135 if String.length
s > 0
2140 let len = Queue.length
state.tilelru
in
2142 match state.throttle
with
2145 then preloadlayout state.y
2147 | Some
(layout, _, _) ->
2151 if state.memused
<= conf.memlimit
2156 let (k
, p
, s) as lruitem
= Queue.pop
state.tilelru
in
2157 let n, gen
, colorspace
, angle
, pagew
, pageh
, col, row = k
in
2158 let (_, pw, ph
, _) = getpagedim n in
2161 && colorspace
= conf.colorspace
2162 && angle
= conf.angle
2166 let x = col*conf.tilew
2167 and y = row*conf.tileh
in
2168 tilevisible (Lazy.force_val
layout) n x y
2170 then Queue.push lruitem
state.tilelru
2173 wcmd "freetile %s" p
;
2174 state.memused
<- state.memused
- s;
2175 state.uioh#infochanged Memused
;
2176 Hashtbl.remove
state.tilemap k
;
2185 Queue.iter
(fun (k
, p
, s) ->
2186 wcmd "freetile %s" p
;
2187 state.memused
<- state.memused
- s;
2188 state.uioh#infochanged Memused
;
2189 Hashtbl.remove
state.tilemap k
;
2191 Queue.clear
state.tilelru
;
2195 let logcurrently = function
2196 | Idle
-> dolog "Idle"
2197 | Loading
(l
, gen
) ->
2198 dolog "Loading %d gen=%d curgen=%d" l
.pageno gen
state.gen
2199 | Tiling
(l
, pageopaque
, colorspace
, angle
, gen
, col, row, tilew
, tileh
) ->
2201 "Tiling %d[%d,%d] page=%s cs=%s angle"
2202 l
.pageno col row pageopaque
2203 (colorspace_to_string colorspace
)
2205 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2206 angle gen
conf.angle
state.gen
2208 conf.tilew
conf.tileh
2215 (* dolog "%S" cmds; *)
2218 try String.index cmds ' '
2219 with Not_found
-> -1
2224 let l = String.length cmds
in
2225 let op = String.sub cmds
0 spacepos in
2227 if l - spacepos < 2 then ""
2228 else String.sub cmds
(spacepos+1) (l-spacepos-1)
2233 state.uioh#infochanged Pdim
;
2237 state.rects
<- state.rects1
;
2238 G.postRedisplay "clearrects";
2242 try Scanf.sscanf
args "%u" (fun n -> n)
2244 dolog "error processing 'continue' %S: %s"
2245 cmds
(Printexc.to_string exn
);
2248 state.pagecount
<- n;
2249 begin match state.currently
with
2251 state.currently
<- Idle
;
2252 state.outlines
<- Array.of_list
(List.rev
l)
2256 let cur, cmds
= state.geomcmds
in
2257 if String.length
cur = 0
2258 then failwith
"umpossible";
2260 begin match List.rev cmds
with
2262 state.geomcmds
<- "", [];
2266 state.geomcmds
<- s, List.rev rest
;
2268 if conf.maxwait
= None
2269 then G.postRedisplay "continue";
2279 then showtext ' '
args
2282 let progress, text =
2284 Scanf.sscanf
args "%f %n"
2286 f, String.sub
args pos
(String.length
args - pos
))
2288 dolog "error processing 'progress' %S: %s"
2289 cmds
(Printexc.to_string exn
);
2293 state.progress <- progress;
2294 G.postRedisplay "progress"
2297 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2299 Scanf.sscanf
args "%u %d %f %f %f %f %f %f %f %f"
2300 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2301 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2303 dolog "error processing 'firstmatch' %S: %s"
2304 cmds
(Printexc.to_string exn
);
2307 let y = (getpagey pageno) + truncate
y0 in
2310 state.rects1
<- [pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)]
2313 let pageno, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
=
2315 Scanf.sscanf
args "%u %d %f %f %f %f %f %f %f %f"
2316 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
2317 (p
, c, x0, y0, x1, y1, x2
, y2
, x3
, y3
))
2319 dolog "error processing 'match' %S: %s"
2320 cmds
(Printexc.to_string exn
);
2324 (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) :: state.rects1
2329 Scanf.sscanf
args "%s %f" (fun p t
-> p
, t
)
2331 dolog "error processing 'page' %S: %s"
2332 cmds
(Printexc.to_string exn
);
2335 begin match state.currently
with
2336 | Loading
(l, gen
) ->
2337 vlog "page %d took %f sec" l.pageno t
;
2338 Hashtbl.replace
state.pagemap
(l.pageno, gen
) pageopaque;
2339 begin match state.throttle
with
2341 let preloadedpages =
2343 then preloadlayout state.y
2348 Set.Make
(struct type t
= int let compare = (-) end) in
2350 List.fold_left
(fun s l -> IntSet.add
l.pageno s)
2351 IntSet.empty
preloadedpages
2354 Hashtbl.fold (fun ((pageno, _) as key) opaque
accu ->
2355 if not
(IntSet.mem
pageno set)
2357 wcmd "freepage %s" opaque
;
2363 List.iter
(Hashtbl.remove
state.pagemap
) evictedpages;
2366 state.currently
<- Idle
;
2369 tilepage l.pageno pageopaque state.layout;
2371 load preloadedpages;
2372 if pagevisible state.layout l.pageno
2373 && layoutready state.layout
2374 then G.postRedisplay "page";
2377 | Some
(layout, _, _) ->
2378 state.currently
<- Idle
;
2379 tilepage l.pageno pageopaque layout;
2384 dolog "Inconsistent loading state";
2385 logcurrently state.currently
;
2390 let (x, y, opaque
, size
, t
) =
2392 Scanf.sscanf
args "%u %u %s %u %f"
2393 (fun x y p size t
-> (x, y, p
, size
, t
))
2395 dolog "error processing 'tile' %S: %s"
2396 cmds
(Printexc.to_string exn
);
2399 begin match state.currently
with
2400 | Tiling
(l, pageopaque, cs
, angle
, gen
, col, row, tilew
, tileh
) ->
2401 vlog "tile %d [%d,%d] took %f sec" l.pageno col row t
;
2404 if tilew
!= conf.tilew
|| tileh
!= conf.tileh
2406 wcmd "freetile %s" opaque
;
2407 state.currently
<- Idle
;
2411 puttileopaque l col row gen cs angle opaque size t
;
2412 state.memused
<- state.memused
+ size
;
2413 state.uioh#infochanged Memused
;
2415 Queue.push
((l.pageno, gen
, cs
, angle
, l.pagew
, l.pageh
, col, row),
2416 opaque
, size
) state.tilelru
;
2419 match state.throttle
with
2420 | None
-> state.layout
2421 | Some
(layout, _, _) -> layout
2424 state.currently
<- Idle
;
2426 && conf.colorspace
= cs
2427 && conf.angle
= angle
2428 && tilevisible layout l.pageno x y
2429 then conttiling l.pageno pageopaque;
2431 begin match state.throttle
with
2433 preload state.layout;
2435 && conf.colorspace
= cs
2436 && conf.angle
= angle
2437 && tilevisible state.layout l.pageno x y
2438 then G.postRedisplay "tile nothrottle";
2440 | Some
(layout, y, _) ->
2441 let ready = layoutready layout in
2445 state.layout <- layout;
2446 state.throttle
<- None
;
2447 G.postRedisplay "throttle";
2454 dolog "Inconsistent tiling state";
2455 logcurrently state.currently
;
2462 Scanf.sscanf
args "%u %u %u %u" (fun n w h x -> n, w, h, x)
2464 dolog "error processing 'pdim' %S: %s"
2465 cmds
(Printexc.to_string exn
);
2468 state.uioh#infochanged Pdim
;
2469 state.pdims
<- pdim :: state.pdims
2472 let (l, n, t
, h, pos
) =
2474 Scanf.sscanf
args "%u %u %d %u %n"
2475 (fun l n t
h pos
-> l, n, t
, h, pos
)
2477 dolog "error processing 'o' %S: %s"
2478 cmds
(Printexc.to_string exn
);
2481 let s = String.sub
args pos
(String.length
args - pos
) in
2482 let outline = (s, l, (n, float t
/. float h, 0.0)) in
2483 begin match state.currently
with
2484 | Outlining outlines
->
2485 state.currently
<- Outlining
(outline :: outlines
)
2487 state.currently
<- Outlining
[outline]
2489 dolog "invalid outlining state";
2490 logcurrently currently
2494 state.docinfo
<- (1, args) :: state.docinfo
2497 state.uioh#infochanged Docinfo
;
2498 state.docinfo
<- List.rev
state.docinfo
2501 dolog "unknown cmd `%S'" cmds
2506 let action = function
2507 | HCprev
-> cbget cb ~
-1
2508 | HCnext
-> cbget cb
1
2509 | HCfirst
-> cbget cb ~
-(cb
.rc)
2510 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
2511 and cancel
() = cb
.rc <- rc
2515 let search pattern forward
=
2516 if String.length pattern
> 0
2519 match state.layout with
2522 l.pageno, (l.pagey + if forward
then 0 else 0*l.pagevh)
2524 wcmd "search %d %d %d %d,%s\000"
2525 (btod conf.icase
) pn py
(btod forward
) pattern
;
2528 let intentry text key =
2530 if key >= 32 && key < 127
2536 let text = addchar text c in
2540 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2544 let linknentry text key =
2546 if key >= 32 && key < 127
2552 let text = addchar text c in
2556 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key c;
2561 if String.length
s > 0
2564 let l = String.length
s in
2565 let rec loop pos
n = if pos
= l then n else
2566 let m = Char.code
s.[pos
] - (if pos
= 0 && l > 1 then 96 else 97) in
2567 loop (pos
+1) (n*26 + m)
2570 let rec loop n = function
2573 match getopaque l.pageno with
2574 | None
-> loop n rest
2576 let m = getlinkcount opaque
in
2579 let under = getlink opaque
n in
2582 else loop (n-m) rest
2584 loop n state.layout;
2588 let textentry text key =
2589 if key land 0xff00 = 0xff00
2591 else TEcont
(text ^
Wsi.toutf8
key)
2594 let reqlayout angle proportional
=
2595 match state.throttle
with
2597 if nogeomcmds state.geomcmds
2598 then state.anchor <- getanchor ();
2599 conf.angle
<- angle
mod 360;
2602 match state.mode
with
2603 | LinkNav
_ -> state.mode
<- View
2606 conf.proportional
<- proportional
;
2607 invalidate "reqlayout"
2608 (fun () -> wcmd "reqlayout %d %d" conf.angle
(btod proportional
));
2612 let settrim trimmargins trimfuzz
=
2613 if nogeomcmds state.geomcmds
2614 then state.anchor <- getanchor ();
2615 conf.trimmargins
<- trimmargins
;
2616 conf.trimfuzz
<- trimfuzz
;
2617 let x0, y0, x1, y1 = trimfuzz
in
2618 invalidate "settrim"
2620 wcmd "settrim %d %d %d %d %d" (btod conf.trimmargins
) x0 y0 x1 y1);
2625 match state.throttle
with
2627 let zoom = max
0.01 zoom in
2628 if zoom <> conf.zoom
2630 state.prevzoom
<- conf.zoom;
2632 reshape conf.winw
conf.winh
;
2633 state.text <- Printf.sprintf
"zoom is now %-5.1f" (zoom *. 100.0);
2636 | Some
(layout, y, started
) ->
2638 match conf.maxwait
with
2642 let dt = now () -. started
in
2650 let setcolumns mode columns coverA coverB
=
2651 state.prevcolumns
<- Some
(conf.columns
, conf.zoom);
2655 then showtext '
!'
"split mode doesn't work in bird's eye"
2657 conf.columns
<- Csplit
(-columns
, [||]);
2665 conf.columns
<- Csingle
[||];
2670 conf.columns
<- Cmulti
((columns
, coverA
, coverB
), [||]);
2674 reshape conf.winw
conf.winh
;
2677 let enterbirdseye () =
2678 let zoom = float conf.thumbw
/. float conf.winw
in
2679 let birdseyepageno =
2680 let cy = conf.winh
/ 2 in
2684 let rec fold best
= function
2687 let d = cy - (l.pagedispy + l.pagevh/2)
2688 and dbest
= cy - (best
.pagedispy + best
.pagevh/2) in
2689 if abs
d < abs dbest
2696 state.mode
<- Birdseye
(
2697 { conf with zoom = conf.zoom }, state.x, birdseyepageno, -1, getanchor ()
2700 conf.presentation
<- false;
2701 conf.interpagespace
<- 10;
2702 conf.hlinks
<- false;
2704 state.mstate
<- Mnone
;
2705 conf.maxwait
<- None
;
2707 match conf.beyecolumns
with
2710 Cmulti
((c, 0, 0), [||])
2711 | None
-> Csingle
[||]
2713 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
2716 state.text <- Printf.sprintf
"birds eye mode on (zoom %3.1f%%)"
2721 reshape conf.winw
conf.winh
;
2724 let leavebirdseye (c, leftx
, pageno, _, anchor) goback
=
2726 conf.zoom <- c.zoom;
2727 conf.presentation
<- c.presentation
;
2728 conf.interpagespace
<- c.interpagespace
;
2729 conf.maxwait
<- c.maxwait
;
2730 conf.hlinks
<- c.hlinks
;
2731 conf.beyecolumns
<- (
2732 match conf.columns
with
2733 | Cmulti
((c, _, _), _) -> Some
c
2735 | Csplit
_ -> failwith
"leaving bird's eye split mode"
2738 match c.columns
with
2739 | Cmulti
(c, _) -> Cmulti
(c, [||])
2740 | Csingle
_ -> Csingle
[||]
2741 | Csplit
(c, _) -> Csplit
(c, [||])
2746 state.text <- Printf.sprintf
"birds eye mode off (zoom %3.1f%%)"
2749 reshape conf.winw
conf.winh
;
2750 state.anchor <- if goback
then anchor else (pageno, 0.0, 1.0);
2753 let togglebirdseye () =
2754 match state.mode
with
2755 | Birdseye vals
-> leavebirdseye vals
true
2756 | View
-> enterbirdseye ()
2760 let upbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2761 let pageno = max
0 (pageno - incr
) in
2762 let rec loop = function
2763 | [] -> gotopage1 pageno 0
2764 | l :: _ when l.pageno = pageno ->
2765 if l.pagedispy >= 0 && l.pagey = 0
2766 then G.postRedisplay "upbirdseye"
2767 else gotopage1 pageno 0
2768 | _ :: rest
-> loop rest
2771 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor)
2774 let downbirdseye incr
(conf, leftx
, pageno, hooverpageno
, anchor) =
2775 let pageno = min
(state.pagecount
- 1) (pageno + incr
) in
2776 state.mode
<- Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor);
2777 let rec loop = function
2779 let y, h = getpageyh pageno in
2780 let dy = (y - state.y) - (conf.winh
- h - conf.interpagespace
) in
2782 | l :: _ when l.pageno = pageno ->
2783 if l.pagevh != l.pageh
2784 then gotoy (clamp (l.pageh
- l.pagevh + conf.interpagespace
))
2785 else G.postRedisplay "downbirdseye"
2786 | _ :: rest
-> loop rest
2791 let optentry mode
_ key =
2792 let btos b = if b then "on" else "off" in
2793 if key >= 32 && key < 127
2795 let c = Char.chr
key in
2799 try conf.scrollstep
<- int_of_string
s with exc
->
2800 state.text <- Printf.sprintf
"bad integer `%s': %s"
2801 s (Printexc.to_string exc
)
2803 TEswitch
("scroll step: ", "", None
, intentry, ondone, true)
2808 conf.autoscrollstep
<- int_of_string
s;
2809 if state.autoscroll
<> None
2810 then state.autoscroll
<- Some
conf.autoscrollstep
2812 state.text <- Printf.sprintf
"bad integer `%s': %s"
2813 s (Printexc.to_string exc
)
2815 TEswitch
("auto scroll step: ", "", None
, intentry, ondone, true)
2820 let n, a, b = multicolumns_of_string s in
2821 setcolumns mode
n a b;
2823 state.text <- Printf.sprintf
"bad columns `%s': %s"
2824 s (Printexc.to_string exc
)
2826 TEswitch
("columns: ", "", None
, textentry, ondone, true)
2831 let zoom = float (int_of_string
s) /. 100.0 in
2834 state.text <- Printf.sprintf
"bad integer `%s': %s"
2835 s (Printexc.to_string exc
)
2837 TEswitch
("zoom: ", "", None
, intentry, ondone, true)
2842 conf.thumbw
<- bound (int_of_string
s) 2 4096;
2844 Printf.sprintf
"thumbnail width is set to %d" conf.thumbw
;
2845 begin match mode
with
2847 leavebirdseye beye
false;
2852 state.text <- Printf.sprintf
"bad integer `%s': %s"
2853 s (Printexc.to_string exc
)
2855 TEswitch
("thumbnail width: ", "", None
, intentry, ondone, true)
2860 Some
(int_of_string
s)
2862 state.text <- Printf.sprintf
"bad integer `%s': %s"
2863 s (Printexc.to_string exc
);
2866 | Some angle
-> reqlayout angle
conf.proportional
2869 TEswitch
("rotation: ", "", None
, intentry, ondone, true)
2872 conf.icase
<- not
conf.icase
;
2873 TEdone
("case insensitive search " ^
(btos conf.icase
))
2876 conf.preload <- not
conf.preload;
2878 TEdone
("preload " ^
(btos conf.preload))
2881 conf.verbose
<- not
conf.verbose
;
2882 TEdone
("verbose " ^
(btos conf.verbose
))
2885 conf.debug
<- not
conf.debug
;
2886 TEdone
("debug " ^
(btos conf.debug
))
2889 conf.maxhfit
<- not
conf.maxhfit
;
2890 state.maxy
<- calcheight ();
2891 TEdone
("maxhfit " ^
(btos conf.maxhfit
))
2894 conf.crophack
<- not
conf.crophack
;
2895 TEdone
("crophack " ^
btos conf.crophack
)
2899 match conf.maxwait
with
2901 conf.maxwait
<- Some infinity
;
2902 "always wait for page to complete"
2904 conf.maxwait
<- None
;
2905 "show placeholder if page is not ready"
2910 conf.underinfo
<- not
conf.underinfo
;
2911 TEdone
("underinfo " ^
btos conf.underinfo
)
2914 conf.savebmarks
<- not
conf.savebmarks
;
2915 TEdone
("persistent bookmarks " ^
btos conf.savebmarks
)
2921 match state.layout with
2926 conf.interpagespace
<- int_of_string
s;
2927 docolumns conf.columns
;
2928 state.maxy
<- calcheight ();
2929 let y = getpagey pageno in
2932 state.text <- Printf.sprintf
"bad integer `%s': %s"
2933 s (Printexc.to_string exc
)
2935 TEswitch
("vertical margin: ", "", None
, intentry, ondone, true)
2938 reqlayout conf.angle
(not
conf.proportional
);
2939 TEdone
("proportional display " ^
btos conf.proportional
)
2942 settrim (not
conf.trimmargins
) conf.trimfuzz
;
2943 TEdone
("trim margins " ^
btos conf.trimmargins
)
2946 conf.invert
<- not
conf.invert
;
2947 TEdone
("invert colors " ^
btos conf.invert
)
2951 cbput state.hists
.sel
s;
2954 TEswitch
("selection command: ", "", Some
(onhist state.hists
.sel
),
2955 textentry, ondone, true)
2958 state.text <- Printf.sprintf
"bad option %d `%c'" key c;
2964 class type lvsource
= object
2965 method getitemcount
: int
2966 method getitem
: int -> (string * int)
2967 method hasaction
: int -> bool
2976 method getactive
: int
2977 method getfirst
: int
2978 method getqsearch
: string
2979 method setqsearch
: string -> unit
2983 class virtual lvsourcebase
= object
2984 val mutable m_active
= 0
2985 val mutable m_first
= 0
2986 val mutable m_qsearch
= ""
2987 val mutable m_pan
= 0
2988 method getactive
= m_active
2989 method getfirst
= m_first
2990 method getqsearch
= m_qsearch
2991 method getpan
= m_pan
2992 method setqsearch
s = m_qsearch
<- s
2995 let withoutlastutf8 s =
2996 let len = String.length
s in
3004 let b = Char.code
s.[pos
] in
3005 if b land 0b110000 = 0b11000000
3010 if Char.code
s.[len-1] land 0x80 = 0
3014 String.sub
s 0 first;
3017 let textentrykeyboard
3018 key _mask
((c, text, opthist
, onkey
, ondone, cancelonempty
), onleave
) =
3020 state.mode
<- Textentry
(te
, onleave
);
3023 G.postRedisplay "textentrykeyboard enttext";
3025 let histaction cmd
=
3028 | Some
(action, _) ->
3029 state.mode
<- Textentry
(
3030 (c, action cmd
, opthist
, onkey
, ondone, cancelonempty
), onleave
3032 G.postRedisplay "textentry histaction"
3035 | 0xff08 -> (* backspace *)
3036 let s = withoutlastutf8 text in
3037 let len = String.length
s in
3038 if cancelonempty
&& len = 0
3041 G.postRedisplay "textentrykeyboard after cancel";
3044 enttext (c, s, opthist
, onkey
, ondone, cancelonempty
)
3050 G.postRedisplay "textentrykeyboard after confirm"
3052 | 0xff52 -> histaction HCprev
3053 | 0xff54 -> histaction HCnext
3054 | 0xff50 -> histaction HCfirst
3055 | 0xff57 -> histaction HClast
3057 | 0xff1b -> (* escape*)
3058 if String.length
text = 0
3060 begin match opthist
with
3062 | Some
(_, onhistcancel
) -> onhistcancel
()
3066 G.postRedisplay "textentrykeyboard after cancel2"
3069 enttext (c, "", opthist
, onkey
, ondone, cancelonempty
)
3072 | 0xff9f | 0xffff -> () (* delete *)
3074 | _ when key != 0 && key land 0xff00 != 0xff00 ->
3075 begin match onkey
text key with
3079 G.postRedisplay "textentrykeyboard after confirm2";
3082 enttext (c, text, opthist
, onkey
, ondone, cancelonempty
);
3086 G.postRedisplay "textentrykeyboard after cancel3"
3089 state.mode
<- Textentry
(te
, onleave
);
3090 G.postRedisplay "textentrykeyboard switch";
3094 vlog "unhandled key %s" (Wsi.keyname
key)
3097 let firstof first active
=
3098 if first > active
|| abs
(first - active
) > fstate.maxrows
- 1
3099 then max
0 (active
- (fstate.maxrows
/2))
3103 let calcfirst first active
=
3106 let rows = active
- first in
3107 if rows > fstate.maxrows
then active
- fstate.maxrows
else first
3111 let scrollph y maxy
=
3112 let sh = (float (maxy
+ conf.winh
) /. float conf.winh
) in
3113 let sh = float conf.winh
/. sh in
3114 let sh = max
sh (float conf.scrollh
) in
3119 else float y /. float maxy
3121 let position = (float conf.winh
-. sh) *. percent in
3124 if position +. sh > float conf.winh
3125 then float conf.winh
-. sh
3131 let coe s = (s :> uioh
);;
3133 class listview ~
(source
:lvsource
) ~trusted ~modehash
=
3135 val m_pan
= source#getpan
3136 val m_first
= source#getfirst
3137 val m_active
= source#getactive
3138 val m_qsearch
= source#getqsearch
3139 val m_prev_uioh
= state.uioh
3141 method private elemunder
y =
3142 let n = y / (fstate.fontsize
+1) in
3143 if m_first
+ n < source#getitemcount
3145 if source#hasaction
(m_first
+ n)
3146 then Some
(m_first
+ n)
3153 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
3154 GlDraw.color
(0., 0., 0.) ~alpha
:0.85;
3155 GlDraw.rect (0., 0.) (float conf.winw
, float conf.winh
);
3156 GlDraw.color
(1., 1., 1.);
3157 Gl.enable `texture_2d
;
3158 let fs = fstate.fontsize
in
3160 let ww = fstate.wwidth
in
3161 let tabw = 30.0*.ww in
3162 let itemcount = source#getitemcount
in
3164 if (row - m_first
) > fstate.maxrows
3167 if row >= 0 && row < itemcount
3169 let (s, level
) = source#getitem
row in
3170 let y = (row - m_first
) * nfs in
3171 let x = 5.0 +. float (level
+ m_pan
) *. ww in
3174 Gl.disable `texture_2d
;
3175 GlDraw.polygon_mode `both `line
;
3176 GlDraw.color
(1., 1., 1.) ~alpha
:0.9;
3177 GlDraw.rect (1., float (y + 1))
3178 (float (conf.winw
- conf.scrollbw
- 1), float (y + fs + 3));
3179 GlDraw.polygon_mode `both `fill
;
3180 GlDraw.color
(1., 1., 1.);
3181 Gl.enable `texture_2d
;
3184 let drawtabularstring s =
3185 let drawstr x s = drawstring1 fs (truncate
x) (y+nfs) s in
3188 let tabpos = try String.index
s '
\t'
with Not_found
-> -1 in
3191 let len = String.length
s - tabpos - 1 in
3192 let s1 = String.sub
s 0 tabpos
3193 and s2
= String.sub
s (tabpos + 1) len in
3194 let nx = drawstr x s1 in
3196 let x = x +. (max
tabw sw) in
3203 let _ = drawtabularstring s in
3210 Gl.disable `texture_2d
;
3212 method updownlevel incr
=
3213 let len = source#getitemcount
in
3215 if m_active
>= 0 && m_active
< len
3216 then snd
(source#getitem m_active
)
3220 if i
= len then i
-1 else if i
= -1 then 0 else
3221 let _, l = source#getitem i
in
3222 if l != curlevel then i
else flow (i
+incr
)
3224 let active = flow m_active
in
3225 let first = calcfirst m_first
active in
3226 G.postRedisplay "outline updownlevel";
3227 {< m_active
= active; m_first
= first >}
3229 method private key1
key mask
=
3230 let set1 active first qsearch
=
3231 coe {< m_active
= active; m_first
= first; m_qsearch
= qsearch
>}
3233 let search active pattern incr
=
3236 if n >= 0 && n < source#getitemcount
3238 let s, _ = source#getitem
n in
3240 (try ignore
(Str.search_forward
re s 0); true
3241 with Not_found
-> false)
3243 else loop (n + incr
)
3250 let re = Str.regexp_case_fold pattern
in
3256 let itemcount = source#getitemcount
in
3257 let find start incr
=
3259 if i
= -1 || i
= itemcount
3262 if source#hasaction i
3264 else find (i
+ incr
)
3269 let set active first =
3270 let first = bound first 0 (itemcount - fstate.maxrows
) in
3272 coe {< m_active
= active; m_first
= first >}
3275 let isvisible first n = n >= first && n - first <= fstate.maxrows
in
3277 let incr1 = if incr
> 0 then 1 else -1 in
3278 if isvisible m_first m_active
3281 let next = m_active
+ incr
in
3283 if next < 0 || next >= itemcount
3285 else find next incr1
3287 if next = -1 || abs
(m_active
- next) > fstate.maxrows
3293 let first = m_first
+ incr
in
3294 let first = bound first 0 (itemcount - 1) in
3296 let next = m_active
+ incr
in
3297 let next = bound next 0 (itemcount - 1) in
3300 let active = if next = -1 then m_active
else next in
3303 let first = min
next m_first
in
3305 if abs
(next - first) > fstate.maxrows
3311 let first = m_first
+ incr
in
3312 let first = bound first 0 (itemcount - 1) in
3314 let next = m_active
+ incr
in
3315 let next = bound next 0 (itemcount - 1) in
3316 let next = find next incr1 in
3318 if next = -1 || abs
(m_active
- first) > fstate.maxrows
3320 let active = if m_active
= -1 then next else m_active
in
3325 if isvisible first active
3331 G.postRedisplay "listview navigate";
3335 | (0x72|0x73) when Wsi.withctrl mask
-> (* ctrl-r/ctlr-s *)
3336 let incr = if key = 0x72 then -1 else 1 in
3338 match search (m_active
+ incr) m_qsearch
incr with
3340 state.text <- m_qsearch ^
" [not found]";
3343 state.text <- m_qsearch
;
3344 active, firstof m_first
active
3346 G.postRedisplay "listview ctrl-r/s";
3347 set1 active first m_qsearch
;
3349 | 0xff08 -> (* backspace *)
3350 if String.length m_qsearch
= 0
3353 let qsearch = withoutlastutf8 m_qsearch
in
3354 let len = String.length
qsearch in
3358 G.postRedisplay "listview empty qsearch";
3359 set1 m_active m_first
"";
3363 match search m_active
qsearch ~
-1 with
3365 state.text <- qsearch ^
" [not found]";
3368 state.text <- qsearch;
3369 active, firstof m_first
active
3371 G.postRedisplay "listview backspace qsearch";
3372 set1 active first qsearch
3375 | key when (key != 0 && key land 0xff00 != 0xff00) ->
3376 let pattern = m_qsearch ^
Wsi.toutf8
key in
3378 match search m_active
pattern 1 with
3380 state.text <- pattern ^
" [not found]";
3383 state.text <- pattern;
3384 active, firstof m_first
active
3386 G.postRedisplay "listview qsearch add";
3387 set1 active first pattern;
3389 | 0xff1b -> (* escape *)
3391 if String.length m_qsearch
= 0
3393 G.postRedisplay "list view escape";
3396 source#exit
(coe self
) true m_active m_first m_pan m_qsearch
3398 | None
-> m_prev_uioh
3403 G.postRedisplay "list view kill qsearch";
3404 source#setqsearch
"";
3405 coe {< m_qsearch
= "" >}
3408 | 0xff0d -> (* return *)
3410 let self = {< m_qsearch
= "" >} in
3411 source#setqsearch
"";
3413 G.postRedisplay "listview enter";
3414 if m_active
>= 0 && m_active
< source#getitemcount
3416 source#exit
(coe self) false m_active m_first m_pan
"";
3419 source#exit
(coe self) true m_active m_first m_pan
"";
3422 begin match opt with
3423 | None
-> m_prev_uioh
3427 | 0xff9f | 0xffff -> (* delete *)
3430 | 0xff52 -> navigate ~
-1 (* up *)
3431 | 0xff54 -> navigate 1 (* down *)
3432 | 0xff55 -> navigate ~
-(fstate.maxrows
) (* prior *)
3433 | 0xff56 -> navigate fstate.maxrows
(* next *)
3435 | 0xff53 -> (* right *)
3437 G.postRedisplay "listview right";
3438 coe {< m_pan
= m_pan
- 1 >}
3440 | 0xff51 -> (* left *)
3442 G.postRedisplay "listview left";
3443 coe {< m_pan
= m_pan
+ 1 >}
3445 | 0xff50 -> (* home *)
3446 let active = find 0 1 in
3447 G.postRedisplay "listview home";
3450 | 0xff57 -> (* end *)
3451 let first = max
0 (itemcount - fstate.maxrows
) in
3452 let active = find (itemcount - 1) ~
-1 in
3453 G.postRedisplay "listview end";
3456 | key when (key = 0 || key land 0xff00 = 0xff00) ->
3460 dolog "listview unknown key %#x" key; coe self
3462 method key key mask
=
3463 match state.mode
with
3464 | Textentry te
-> textentrykeyboard key mask te
; coe self
3465 | _ -> self#key1
key mask
3467 method button button down
x y _ =
3470 | 1 when x > conf.winw
- conf.scrollbw
->
3471 G.postRedisplay "listview scroll";
3474 let _, position, sh = self#
scrollph in
3475 if y > truncate
position && y < truncate
(position +. sh)
3477 state.mstate
<- Mscrolly
;
3481 let s = float (max
0 (y - conf.scrollh
)) /. float conf.winh
in
3482 let first = truncate
(s *. float source#getitemcount
) in
3483 let first = min source#getitemcount
first in
3484 Some
(coe {< m_first
= first; m_active
= first >})
3486 state.mstate
<- Mnone
;
3489 | 1 when not down
->
3490 begin match self#elemunder
y with
3492 G.postRedisplay "listview click";
3494 (coe {< m_active
= n >}) false n m_first m_pan m_qsearch
3498 | n when (n == 4 || n == 5) && not down
->
3499 let len = source#getitemcount
in
3501 if n = 5 && m_first
+ fstate.maxrows
>= len
3505 let first = m_first
+ (if n == 4 then -1 else 1) in
3506 bound first 0 (len - 1)
3508 G.postRedisplay "listview wheel";
3509 Some
(coe {< m_first
= first >})
3510 | n when (n = 6 || n = 7) && not down
->
3511 let inc = m_first
+ (if n = 7 then -1 else 1) in
3512 G.postRedisplay "listview hwheel";
3513 Some
(coe {< m_pan
= m_pan
+ inc >})
3518 | None
-> m_prev_uioh
3522 match state.mstate
with
3524 let s = float (max
0 (y - conf.scrollh
)) /. float conf.winh
in
3525 let first = truncate
(s *. float source#getitemcount
) in
3526 let first = min source#getitemcount
first in
3527 G.postRedisplay "listview motion";
3528 coe {< m_first
= first; m_active
= first >}
3531 method pmotion
x y =
3532 if x < conf.winw
- conf.scrollbw
3535 match self#elemunder
y with
3536 | None
-> Wsi.setcursor
Wsi.CURSOR_INHERIT
; m_active
3537 | Some
n -> Wsi.setcursor
Wsi.CURSOR_INFO
; n
3541 then (G.postRedisplay "listview pmotion"; {< m_active
= n >})
3546 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3550 method infochanged
_ = ()
3552 method scrollpw
= (0, 0.0, 0.0)
3554 let nfs = fstate.fontsize
+ 1 in
3555 let y = m_first
* nfs in
3556 let itemcount = source#getitemcount
in
3557 let maxi = max
0 (itemcount - fstate.maxrows
) in
3558 let maxy = maxi * nfs in
3559 let p, h = scrollph y maxy in
3562 method modehash
= modehash
3565 class outlinelistview ~source
=
3568 ~source
:(source
:> lvsource
)
3570 ~modehash
:(findkeyhash conf "outline")
3573 method key key mask
=
3574 let calcfirst first active =
3577 let rows = active - first in
3579 if String.length
state.text = 0
3581 else fstate.maxrows - 2
3583 if rows > maxrows then active - maxrows else first
3587 let active = m_active
+ incr in
3588 let active = bound active 0 (source#getitemcount
- 1) in
3589 let first = calcfirst m_first
active in
3590 G.postRedisplay "outline navigate";
3591 coe {< m_active
= active; m_first
= first >}
3593 let ctrl = Wsi.withctrl mask
in
3595 | 110 when ctrl -> (* ctrl-n *)
3596 source#narrow m_qsearch
;
3597 G.postRedisplay "outline ctrl-n";
3598 coe {< m_first
= 0; m_active
= 0 >}
3600 | 117 when ctrl -> (* ctrl-u *)
3602 G.postRedisplay "outline ctrl-u";
3604 coe {< m_first
= 0; m_active
= 0 >}
3606 | 108 when ctrl -> (* ctrl-l *)
3607 let first = max
0 (m_active
- (fstate.maxrows / 2)) in
3608 G.postRedisplay "outline ctrl-l";
3609 coe {< m_first
= first >}
3611 | 0xff9f | 0xffff -> (* delete *)
3612 source#remove m_active
;
3613 G.postRedisplay "outline delete";
3614 let active = max
0 (m_active
-1) in
3615 coe {< m_first
= firstof m_first
active;
3616 m_active
= active >}
3618 | 0xff52 -> navigate ~
-1 (* up *)
3619 | 0xff54 -> navigate 1 (* down *)
3620 | 0xff55 -> (* prior *)
3621 navigate ~
-(fstate.maxrows)
3622 | 0xff56 -> (* next *)
3623 navigate fstate.maxrows
3625 | 0xff53 -> (* [ctrl-]right *)
3629 G.postRedisplay "outline ctrl right";
3630 {< m_pan
= m_pan
+ 1 >}
3632 else self#updownlevel
1
3636 | 0xff51 -> (* [ctrl-]left *)
3640 G.postRedisplay "outline ctrl left";
3641 {< m_pan
= m_pan
- 1 >}
3643 else self#updownlevel ~
-1
3647 | 0xff50 -> (* home *)
3648 G.postRedisplay "outline home";
3649 coe {< m_first
= 0; m_active
= 0 >}
3651 | 0xff57 -> (* end *)
3652 let active = source#getitemcount
- 1 in
3653 let first = max
0 (active - fstate.maxrows) in
3654 G.postRedisplay "outline end";
3655 coe {< m_active
= active; m_first
= first >}
3657 | _ -> super#
key key mask
3660 let outlinesource usebookmarks
=
3663 inherit lvsourcebase
3664 val mutable m_items
= empty
3665 val mutable m_orig_items
= empty
3666 val mutable m_prev_items
= empty
3667 val mutable m_narrow_pattern
= ""
3668 val mutable m_hadremovals
= false
3670 method getitemcount
=
3671 Array.length m_items
+ (if m_hadremovals
then 1 else 0)
3674 if n == Array.length m_items
&& m_hadremovals
3676 ("[Confirm removal]", 0)
3678 let s, n, _ = m_items
.(n) in
3681 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
3682 ignore
(uioh
, first, qsearch);
3683 let confrimremoval = m_hadremovals
&& active = Array.length m_items
in
3685 if String.length m_narrow_pattern
= 0
3691 if not
confrimremoval
3693 let _, _, anchor = m_items
.(active) in
3694 gotoghyll (getanchory anchor);
3698 state.bookmarks
<- Array.to_list m_items
;
3699 m_orig_items
<- m_items
;
3702 else m_items
<- items;
3706 method hasaction
_ = true
3709 if Array.length m_items
!= Array.length m_orig_items
3710 then "Narrowed to " ^ m_narrow_pattern ^
" (ctrl-u to restore)"
3713 method narrow
pattern =
3714 let reopt = try Some
(Str.regexp_case_fold
pattern) with _ -> None
in
3718 let rec loop accu n =
3721 m_narrow_pattern
<- pattern;
3722 m_items
<- Array.of_list
accu
3725 let (s, _, _) as o = m_items
.(n) in
3727 if (try ignore
(Str.search_forward
re s 0); true
3728 with Not_found
-> false)
3734 loop [] (Array.length m_items
- 1)
3739 then Array.of_list
state.bookmarks
3742 m_items
<- m_orig_items
3747 if m >= 0 && m < Array.length m_items
3749 m_hadremovals
<- true;
3750 m_items
<- Array.init
(Array.length m_items
- 1) (fun n ->
3751 let n = if n >= m then n+1 else n in
3756 method reset
anchor items =
3757 m_hadremovals
<- false;
3758 if m_orig_items
== empty || m_prev_items
!= items
3760 m_orig_items
<- items;
3761 if String.length m_narrow_pattern
= 0
3762 then m_items
<- items;
3764 m_prev_items
<- items;
3765 let rely = getanchory anchor in
3767 let rec loop n best bestd
=
3768 if n = Array.length m_items
3771 let (_, _, anchor) = m_items
.(n) in
3772 let orely = getanchory anchor in
3773 let d = abs
(orely - rely) in
3776 else loop (n+1) best bestd
3781 m_first
<- firstof m_first
active
3785 let enterselector usebookmarks
=
3786 let source = outlinesource usebookmarks
in
3790 then Array.of_list
state.bookmarks
3793 if Array.length
outlines = 0
3795 showtext ' ' errmsg
;
3798 state.text <- source#greetmsg
;
3799 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
3800 let anchor = getanchor () in
3801 source#reset
anchor outlines;
3802 state.uioh
<- coe (new outlinelistview ~
source);
3803 G.postRedisplay "enter selector";
3807 let enteroutlinemode =
3808 let f = enterselector false in
3809 fun ()-> f "Document has no outline";
3812 let enterbookmarkmode =
3813 let f = enterselector true in
3814 fun () -> f "Document has no bookmarks (yet)";
3817 let color_of_string s =
3818 Scanf.sscanf
s "%d/%d/%d" (fun r g
b ->
3819 (float r /. 256.0, float g
/. 256.0, float b /. 256.0)
3823 let color_to_string (r, g
, b) =
3824 let r = truncate
(r *. 256.0)
3825 and g
= truncate
(g
*. 256.0)
3826 and b = truncate
(b *. 256.0) in
3827 Printf.sprintf
"%d/%d/%d" r g
b
3830 let irect_of_string s =
3831 Scanf.sscanf
s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
3834 let irect_to_string (x0,y0,x1,y1) =
3835 Printf.sprintf
"%d/%d/%d/%d" x0 y0 x1 y1
3838 let makecheckers () =
3839 (* Appropriated from lablGL-1.04/LablGlut/examples/lablGL/checker.ml which had
3841 converted by Issac Trotts. July 25, 2002 *)
3842 let image = GlPix.create `ubyte ~format
:`luminance ~width
:2 ~height
:2 in
3843 Raw.sets_string
(GlPix.to_raw
image) ~pos
:0 "\255\200\200\255";
3844 let id = GlTex.gen_texture
() in
3845 GlTex.bind_texture `texture_2d
id;
3846 GlPix.store
(`unpack_alignment
1);
3847 GlTex.image2d
image;
3848 List.iter
(GlTex.parameter ~target
:`texture_2d
)
3851 `mag_filter `nearest
;
3852 `min_filter `nearest
];
3856 let setcheckers enabled
=
3857 match state.texid
with
3859 if enabled
then state.texid
<- Some
(makecheckers ())
3864 GlTex.delete_texture texid
;
3865 state.texid
<- None
;
3869 let int_of_string_with_suffix s =
3870 let l = String.length
s in
3874 let suffix = Char.lowercase
s.[l-1] in
3876 | 'k'
-> String.sub
s 0 (l-1), 10
3877 | '
m'
-> String.sub
s 0 (l-1), 20
3878 | 'g'
-> String.sub
s 0 (l-1), 30
3882 let n = int_of_string
s1 in
3883 let m = n lsl shift
in
3885 then raise
(Failure
"value too large")
3889 let string_with_suffix_of_int n =
3894 if n land ((1 lsl 20) - 1) = 0
3897 if n land ((1 lsl 10) - 1) = 0
3903 let h = n mod 1000 in
3906 then string_of_int
h ^
s
3908 let s = Printf.sprintf
"_%03d%s" h s in
3915 let defghyllscroll = (40, 8, 32);;
3916 let ghyllscroll_of_string s =
3917 let (n, a, b) as nab
=
3920 else Scanf.sscanf
s "%u,%u,%u" (fun n a b -> n, a, b)
3922 if n <= a || n <= b || a >= b
3923 then failwith
"invalid ghyll N,A,B (N <= A, A < B, N <= B)";
3927 let ghyllscroll_to_string ((n, a, b) as nab
) =
3928 if nab
= defghyllscroll
3930 else Printf.sprintf
"%d,%d,%d" n a b;
3933 let describe_location () =
3935 if fn
= -1 then l.pageno, l.pageno else fn
, l.pageno
3937 let fn, ln
= List.fold_left
f (-1, -1) state.layout in
3938 let maxy = state.maxy - (if conf.maxhfit
then conf.winh
else 0) in
3942 else (100. *. (float state.y /. float maxy))
3946 Printf.sprintf
"page %d of %d [%.2f%%]"
3947 (fn+1) state.pagecount
percent
3950 "pages %d-%d of %d [%.2f%%]"
3951 (fn+1) (ln
+1) state.pagecount
percent
3954 let setpresentationmode v
=
3955 let (n, _, _) = getanchor () in
3956 let _, h = getpageyh n in
3957 let ips = if conf.presentation
then calcips h else conf.interpagespace
in
3958 state.anchor <- (n, 0.0, float ips);
3959 conf.presentation
<- v
;
3960 if conf.presentation
3962 if not
conf.scrollbarinpm
3963 then state.scrollw
<- 0;
3965 else state.scrollw
<- conf.scrollbw
;
3970 let btos b = if b then "\xe2\x88\x9a" else "" in
3971 let showextended = ref false in
3972 let leave mode
= function
3973 | Confirm
-> state.mode
<- mode
3974 | Cancel
-> state.mode
<- mode
in
3977 val mutable m_first_time
= true
3978 val mutable m_l
= []
3979 val mutable m_a
= [||]
3980 val mutable m_prev_uioh
= nouioh
3981 val mutable m_prev_mode
= View
3983 inherit lvsourcebase
3985 method reset prev_mode prev_uioh
=
3986 m_a
<- Array.of_list
(List.rev m_l
);
3988 m_prev_mode
<- prev_mode
;
3989 m_prev_uioh
<- prev_uioh
;
3993 if n >= Array.length m_a
3997 | _, _, _, Action
_ -> m_active
<- n
4001 m_first_time
<- false;
4004 method int name get
set =
4006 (name
, `
int get
, 1, Action
(
4009 try set (int_of_string
s)
4011 state.text <- Printf.sprintf
"bad integer `%s': %s"
4012 s (Printexc.to_string exn
)
4015 let te = name ^
": ", "", None
, intentry, ondone, true in
4016 state.mode
<- Textentry
(te, leave m_prev_mode
);
4020 method int_with_suffix name get
set =
4022 (name
, `intws get
, 1, Action
(
4025 try set (int_of_string_with_suffix s)
4027 state.text <- Printf.sprintf
"bad integer `%s': %s"
4028 s (Printexc.to_string exn
)
4032 name ^
": ", "", None
, intentry_with_suffix, ondone, true
4034 state.mode
<- Textentry
(te, leave m_prev_mode
);
4038 method bool ?
(offset
=1) ?
(btos=btos) name get
set =
4040 (name
, `
bool (btos, get
), offset
, Action
(
4047 method color name get
set =
4049 (name
, `color get
, 1, Action
(
4051 let invalid = (nan
, nan
, nan
) in
4054 try color_of_string s
4056 state.text <- Printf.sprintf
"bad color `%s': %s"
4057 s (Printexc.to_string exn
);
4063 let te = name ^
": ", "", None
, textentry, ondone, true in
4064 state.text <- color_to_string (get
());
4065 state.mode
<- Textentry
(te, leave m_prev_mode
);
4069 method string name get
set =
4071 (name
, `
string get
, 1, Action
(
4073 let ondone s = set s in
4074 let te = name ^
": ", "", None
, textentry, ondone, true in
4075 state.mode
<- Textentry
(te, leave m_prev_mode
);
4079 method colorspace name get
set =
4081 (name
, `
string get
, 1, Action
(
4084 let vals = [| "rgb"; "bgr"; "gray" |] in
4086 inherit lvsourcebase
4089 m_active
<- int_of_colorspace conf.colorspace
;
4092 method getitemcount
= Array.length
vals
4093 method getitem
n = (vals.(n), 0)
4094 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4095 ignore
(uioh
, first, pan
, qsearch);
4096 if not cancel
then set active;
4098 method hasaction
_ = true
4102 let modehash = findkeyhash conf "info" in
4103 coe (new listview ~
source ~trusted
:true ~
modehash)
4106 method caption
s offset
=
4107 m_l
<- (s, `
empty, offset
, Noaction
) :: m_l
4109 method caption2
s f offset
=
4110 m_l
<- (s, `
string f, offset
, Noaction
) :: m_l
4112 method getitemcount
= Array.length m_a
4115 let tostr = function
4116 | `
int f -> string_of_int
(f ())
4117 | `intws
f -> string_with_suffix_of_int (f ())
4119 | `color
f -> color_to_string (f ())
4120 | `
bool (btos, f) -> btos (f ())
4123 let name, t
, offset
, _ = m_a
.(n) in
4124 ((let s = tostr t
in
4125 if String.length
s > 0
4126 then Printf.sprintf
"%s\t%s" name s
4130 method exit ~uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4134 m_qsearch
<- qsearch;
4136 match m_a
.(active) with
4137 | _, _, _, Action
f -> f uioh
4149 method hasaction
n =
4151 | _, _, _, Action
_ -> true
4155 let rec fillsrc prevmode prevuioh
=
4156 let sep () = src#caption
"" 0 in
4157 let colorp name get
set =
4159 (fun () -> color_to_string (get
()))
4162 let c = color_of_string v in
4165 state.text <- Printf.sprintf
"bad color `%s': %s"
4166 v (Printexc.to_string exn
);
4169 let oldmode = state.mode
in
4170 let birdseye = isbirdseye state.mode
in
4172 src#caption
(if birdseye then "Setup (Bird's eye)" else "Setup") 0;
4174 src#
bool "presentation mode"
4175 (fun () -> conf.presentation
)
4176 (fun v -> setpresentationmode v);
4178 src#
bool "ignore case in searches"
4179 (fun () -> conf.icase
)
4180 (fun v -> conf.icase
<- v);
4183 (fun () -> conf.preload)
4184 (fun v -> conf.preload <- v);
4186 src#
bool "highlight links"
4187 (fun () -> conf.hlinks
)
4188 (fun v -> conf.hlinks
<- v);
4190 src#
bool "under info"
4191 (fun () -> conf.underinfo
)
4192 (fun v -> conf.underinfo
<- v);
4194 src#
bool "persistent bookmarks"
4195 (fun () -> conf.savebmarks
)
4196 (fun v -> conf.savebmarks
<- v);
4198 src#
bool "proportional display"
4199 (fun () -> conf.proportional
)
4200 (fun v -> reqlayout conf.angle
v);
4202 src#
bool "trim margins"
4203 (fun () -> conf.trimmargins
)
4204 (fun v -> settrim v conf.trimfuzz
; fillsrc prevmode prevuioh
);
4206 src#
bool "persistent location"
4207 (fun () -> conf.jumpback
)
4208 (fun v -> conf.jumpback
<- v);
4211 src#
int "inter-page space"
4212 (fun () -> conf.interpagespace
)
4214 conf.interpagespace
<- n;
4215 docolumns conf.columns
;
4217 match state.layout with
4222 state.maxy <- calcheight ();
4223 let y = getpagey pageno in
4228 (fun () -> conf.pagebias
)
4229 (fun v -> conf.pagebias
<- v);
4231 src#
int "scroll step"
4232 (fun () -> conf.scrollstep
)
4233 (fun n -> conf.scrollstep
<- n);
4235 src#
int "horizontal scroll step"
4236 (fun () -> conf.hscrollstep
)
4237 (fun v -> conf.hscrollstep
<- v);
4239 src#
int "auto scroll step"
4241 match state.autoscroll
with
4243 | _ -> conf.autoscrollstep
)
4245 if state.autoscroll
<> None
4246 then state.autoscroll
<- Some
n;
4247 conf.autoscrollstep
<- n);
4250 (fun () -> truncate
(conf.zoom *. 100.))
4251 (fun v -> setzoom ((float v) /. 100.));
4254 (fun () -> conf.angle
)
4255 (fun v -> reqlayout v conf.proportional
);
4257 src#
int "scroll bar width"
4258 (fun () -> state.scrollw
)
4262 reshape conf.winw
conf.winh
;
4265 src#
int "scroll handle height"
4266 (fun () -> conf.scrollh
)
4267 (fun v -> conf.scrollh
<- v;);
4269 src#
int "thumbnail width"
4270 (fun () -> conf.thumbw
)
4272 conf.thumbw
<- min
4096 v;
4275 leavebirdseye beye
false;
4280 let mode = state.mode in
4281 src#
string "columns"
4283 match conf.columns
with
4285 | Cmulti
(multi
, _) -> multicolumns_to_string multi
4286 | Csplit
(count
, _) -> "-" ^ string_of_int count
4289 let n, a, b = multicolumns_of_string v in
4290 setcolumns mode n a b);
4293 src#caption
"Presentation mode" 0;
4294 src#
bool "scrollbar visible"
4295 (fun () -> conf.scrollbarinpm
)
4297 if v != conf.scrollbarinpm
4299 conf.scrollbarinpm
<- v;
4300 if conf.presentation
4302 state.scrollw
<- if v then conf.scrollbw
else 0;
4303 reshape conf.winw
conf.winh
;
4309 src#caption
"Pixmap cache" 0;
4310 src#int_with_suffix
"size (advisory)"
4311 (fun () -> conf.memlimit
)
4312 (fun v -> conf.memlimit
<- v);
4315 (fun () -> Printf.sprintf
"%s bytes, %d tiles"
4316 (string_with_suffix_of_int state.memused
)
4317 (Hashtbl.length
state.tilemap
)) 1;
4320 src#caption
"Layout" 0;
4321 src#caption2
"Dimension"
4323 Printf.sprintf
"%dx%d (virtual %dx%d)"
4329 src#caption2
"Position" (fun () ->
4330 Printf.sprintf
"%dx%d" state.x state.y
4333 src#caption2
"Visible" (fun () -> describe_location ()) 1
4337 src#
bool ~offset
:0 ~
btos:(fun v -> if v then "(on)" else "(off)")
4338 "Save these parameters as global defaults at exit"
4339 (fun () -> conf.bedefault
)
4340 (fun v -> conf.bedefault
<- v)
4344 let btos b = if b then "\xc2\xab" else "\xc2\xbb" in
4345 src#
bool ~offset
:0 ~
btos "Extended parameters"
4346 (fun () -> !showextended)
4347 (fun v -> showextended := v; fillsrc prevmode prevuioh
);
4351 (fun () -> conf.checkers
)
4352 (fun v -> conf.checkers
<- v; setcheckers v);
4353 src#
bool "update cursor"
4354 (fun () -> conf.updatecurs
)
4355 (fun v -> conf.updatecurs
<- v);
4357 (fun () -> conf.verbose
)
4358 (fun v -> conf.verbose
<- v);
4359 src#
bool "invert colors"
4360 (fun () -> conf.invert
)
4361 (fun v -> conf.invert
<- v);
4363 (fun () -> conf.maxhfit
)
4364 (fun v -> conf.maxhfit
<- v);
4365 src#
bool "redirect stderr"
4366 (fun () -> conf.redirectstderr)
4367 (fun v -> conf.redirectstderr <- v; redirectstderr ());
4368 src#
string "uri launcher"
4369 (fun () -> conf.urilauncher
)
4370 (fun v -> conf.urilauncher
<- v);
4371 src#
string "path launcher"
4372 (fun () -> conf.pathlauncher
)
4373 (fun v -> conf.pathlauncher
<- v);
4374 src#
string "tile size"
4375 (fun () -> Printf.sprintf
"%dx%d" conf.tilew
conf.tileh
)
4378 let w, h = Scanf.sscanf
v "%dx%d" (fun w h -> w, h) in
4379 conf.tilew
<- max
64 w;
4380 conf.tileh
<- max
64 h;
4383 state.text <- Printf.sprintf
"bad tile size `%s': %s"
4384 v (Printexc.to_string exn
));
4385 src#
int "texture count"
4386 (fun () -> conf.texcount
)
4389 then conf.texcount
<- v
4390 else showtext '
!'
" Failed to set texture count please retry later"
4392 src#
int "slice height"
4393 (fun () -> conf.sliceheight
)
4395 conf.sliceheight
<- v;
4396 wcmd "sliceh %d" conf.sliceheight
;
4398 src#
int "anti-aliasing level"
4399 (fun () -> conf.aalevel
)
4401 conf.aalevel
<- bound v 0 8;
4402 state.anchor <- getanchor ();
4403 opendoc state.path
state.password
;
4405 src#
string "page scroll scaling factor"
4406 (fun () -> string_of_float
conf.pgscale)
4409 let s = float_of_string
v in
4412 state.text <- Printf.sprintf
4413 "bad page scroll scaling factor `%s': %s"
4414 v (Printexc.to_string exn
)
4417 src#
int "ui font size"
4418 (fun () -> fstate.fontsize
)
4419 (fun v -> setfontsize (bound v 5 100));
4420 src#
int "hint font size"
4421 (fun () -> conf.hfsize
)
4422 (fun v -> conf.hfsize
<- bound v 5 100);
4423 colorp "background color"
4424 (fun () -> conf.bgcolor
)
4425 (fun v -> conf.bgcolor
<- v);
4426 src#
bool "crop hack"
4427 (fun () -> conf.crophack
)
4428 (fun v -> conf.crophack
<- v);
4429 src#
string "trim fuzz"
4430 (fun () -> irect_to_string conf.trimfuzz
)
4433 conf.trimfuzz
<- irect_of_string v;
4435 then settrim true conf.trimfuzz
;
4437 state.text <- Printf.sprintf
"bad irect `%s': %s"
4438 v (Printexc.to_string exn
)
4440 src#
string "throttle"
4442 match conf.maxwait
with
4443 | None
-> "show place holder if page is not ready"
4446 then "wait for page to fully render"
4448 "wait " ^ string_of_float
time
4449 ^
" seconds before showing placeholder"
4453 let f = float_of_string
v in
4455 then conf.maxwait
<- None
4456 else conf.maxwait
<- Some
f
4458 state.text <- Printf.sprintf
"bad time `%s': %s"
4459 v (Printexc.to_string exn
)
4461 src#
string "ghyll scroll"
4463 match conf.ghyllscroll
with
4465 | Some nab
-> ghyllscroll_to_string nab
4470 if String.length
v = 0
4472 else Some
(ghyllscroll_of_string v)
4474 conf.ghyllscroll
<- gs
4476 state.text <- Printf.sprintf
"bad ghyll `%s': %s"
4477 v (Printexc.to_string exn
)
4479 src#
string "selection command"
4480 (fun () -> conf.selcmd
)
4481 (fun v -> conf.selcmd
<- v);
4482 src#colorspace
"color space"
4483 (fun () -> colorspace_to_string conf.colorspace
)
4485 conf.colorspace
<- colorspace_of_int v;
4492 (fun () -> conf.usepbo
)
4493 (fun v -> conf.usepbo
<- v);
4497 src#caption
"Document" 0;
4498 List.iter
(fun (_, s) -> src#caption
s 1) state.docinfo
;
4499 src#caption2
"Pages"
4500 (fun () -> string_of_int
state.pagecount
) 1;
4501 src#caption2
"Dimensions"
4502 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4506 src#caption
"Trimmed margins" 0;
4507 src#caption2
"Dimensions"
4508 (fun () -> string_of_int
(List.length
state.pdims
)) 1;
4512 src#caption
"OpenGL" 0;
4513 src#caption
(Printf.sprintf
"Vendor\t%s" (GlMisc.get_string `vendor
)) 1;
4514 src#caption
(Printf.sprintf
"Renderer\t%s" (GlMisc.get_string `renderer
)) 1;
4515 src#reset prevmode prevuioh
;
4519 let prevmode = state.mode
4520 and prevuioh
= state.uioh in
4521 fillsrc prevmode prevuioh
;
4522 let source = (src :> lvsource
) in
4523 let modehash = findkeyhash conf "info" in
4524 state.uioh <- coe (object (self)
4525 inherit listview ~
source ~trusted
:true ~
modehash as super
4526 val mutable m_prevmemused
= 0
4527 method infochanged
= function
4529 if m_prevmemused
!= state.memused
4531 m_prevmemused
<- state.memused
;
4532 G.postRedisplay "memusedchanged";
4534 | Pdim
-> G.postRedisplay "pdimchanged"
4535 | Docinfo
-> fillsrc prevmode prevuioh
4537 method key key mask
=
4538 if not
(Wsi.withctrl mask
)
4541 | 0xff51 -> coe (self#updownlevel ~
-1)
4542 | 0xff53 -> coe (self#updownlevel
1)
4543 | _ -> super#
key key mask
4544 else super#
key key mask
4546 G.postRedisplay "info";
4552 inherit lvsourcebase
4553 method getitemcount
= Array.length
state.help
4555 let s, l, _ = state.help
.(n) in
4558 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4562 m_qsearch
<- qsearch;
4563 match state.help
.(active) with
4564 | _, _, Action
f -> Some
(f uioh)
4574 method hasaction
n =
4575 match state.help
.(n) with
4576 | _, _, Action
_ -> true
4583 let modehash = findkeyhash conf "help" in
4584 state.uioh <- coe (new listview ~
source ~trusted
:true ~
modehash);
4585 G.postRedisplay "help";
4590 let re = Str.regexp
"[\r\n]" in
4592 inherit lvsourcebase
4593 val mutable m_items
= [||]
4595 method getitemcount
= 1 + Array.length m_items
4600 else m_items
.(n-1), 0
4602 method exit ~
uioh ~cancel ~
active ~
first ~pan ~
qsearch =
4607 then Buffer.clear
state.errmsgs
;
4608 m_qsearch
<- qsearch;
4615 method hasaction
n =
4619 state.newerrmsgs
<- false;
4620 let l = Str.split
re (Buffer.contents
state.errmsgs
) in
4621 m_items
<- Array.of_list
l
4629 let source = (msgsource :> lvsource
) in
4630 let modehash = findkeyhash conf "listview" in
4631 state.uioh <- coe (object
4632 inherit listview ~
source ~trusted
:false ~
modehash as super
4635 then msgsource#reset
;
4638 G.postRedisplay "msgs";
4641 let quickbookmark ?title
() =
4642 match state.layout with
4648 let sec = Unix.gettimeofday
() in
4649 let tm = Unix.localtime
sec in
4650 Printf.sprintf
"Quick (page %d) (bookmarked at %d/%d/%d %d:%d)"
4654 (tm.Unix.tm_year
+ 1900)
4657 | Some
title -> title
4659 state.bookmarks
<- (title, 0, getanchor1 l) :: state.bookmarks
4663 state.fullscreen
<- None
;
4667 let setautoscrollspeed step goingdown
=
4668 let incr = max
1 ((abs step
) / 2) in
4669 let incr = if goingdown
then incr else -incr in
4670 let astep = step
+ incr in
4671 state.autoscroll
<- Some
astep;
4674 let gotounder = function
4675 | Ulinkgoto
(pageno, top) ->
4679 gotopage1 pageno top;
4685 | Uremote
(filename
, pageno) ->
4687 if Sys.file_exists filename
4690 let dir = Filename.dirname
state.path in
4691 let path = Filename.concat
dir filename
in
4692 if Sys.file_exists
path
4696 if String.length
path > 0
4698 let anchor = getanchor () in
4699 let ranchor = state.path, state.password
, anchor in
4700 state.anchor <- (pageno, 0.0, 0.0);
4701 state.ranchors
<- ranchor :: state.ranchors
;
4704 else showtext '
!'
("Could not find " ^ filename
)
4706 | Uunexpected
_ | Ulaunch
_ | Unamed
_ | Utext
_ | Unone
-> ()
4710 match conf.columns
with
4712 | _ -> conf.zoom > 1.0
4715 let viewkeyboard key mask
=
4717 let mode = state.mode in
4718 state.mode <- Textentry
(te, fun _ -> state.mode <- mode);
4721 G.postRedisplay "view:enttext"
4723 let ctrl = Wsi.withctrl mask
in
4724 let existsinrow pageno (columns
, coverA
, coverB
) p =
4725 let last = ((pageno - coverA
) mod columns
) + columns
in
4726 let rec any = function
4729 if l.pageno = coverA
- 1 || l.pageno = state.pagecount
- coverB
4733 then (if l.pageno = last then false else any rest
)
4743 | 0xff63 -> (* insert *)
4744 if conf.angle
mod 360 = 0 && not
(isbirdseye state.mode)
4746 state.mode <- LinkNav
(Ltgendir
0);
4749 else showtext '
!'
"Keyboard link navigation does not work under rotation"
4751 | 0xff1b | 113 -> (* escape / q *)
4752 begin match state.mstate
with
4754 state.mstate
<- Mnone
;
4755 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
4756 G.postRedisplay "kill zoom rect";
4758 begin match state.mode with
4761 G.postRedisplay "esc leave linknav"
4763 match state.ranchors
with
4765 | (path, password
, anchor) :: rest
->
4766 state.ranchors
<- rest
;
4767 state.anchor <- anchor;
4768 opendoc path password
4772 | 0xff08 -> (* backspace *)
4773 gotoghyll (getnav ~
-1)
4781 G.postRedisplay "dehighlight";
4783 | 47 | 63 -> (* / ? *)
4784 let ondone isforw
s =
4785 cbput state.hists
.pat
s;
4786 state.searchpattern
<- s;
4789 let s = String.create
1 in
4790 s.[0] <- Char.chr
key;
4791 enttext (s, "", Some
(onhist state.hists
.pat
),
4792 textentry, ondone (key = 47), true)
4794 | 43 | 0xffab | 61 when ctrl -> (* ctrl-+ or ctrl-= *)
4795 let incr = if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01 in
4796 setzoom (conf.zoom +. incr)
4798 | 43 | 0xffab -> (* + *)
4801 try int_of_string
s with exc
->
4802 state.text <- Printf.sprintf
"bad integer `%s': %s"
4803 s (Printexc.to_string exc
);
4809 state.text <- "page bias is now " ^ string_of_int
n;
4812 enttext ("page bias: ", "", None
, intentry, ondone, true)
4814 | 45 | 0xffad when ctrl -> (* ctrl-- *)
4815 let decr = if conf.zoom -. 0.1 < 0.1 then 0.01 else 0.1 in
4816 setzoom (max
0.01 (conf.zoom -. decr))
4818 | 45 | 0xffad -> (* - *)
4819 let ondone msg
= state.text <- msg
in
4821 "option [acfhilpstvxACFPRSZTIS]: ", "", None
,
4822 optentry state.mode, ondone, true
4825 | 48 when ctrl -> (* ctrl-0 *)
4828 | 49 when ctrl -> (* ctrl-1 *)
4830 match conf.columns
with
4831 | Csingle
_ | Cmulti
_ -> 1
4832 | Csplit
(n, _) -> n
4834 let zoom = zoomforh
conf.winw
conf.winh
state.scrollw
cols in
4838 | 0xffc6 -> (* f9 *)
4841 | 57 when ctrl -> (* ctrl-9 *)
4844 | (48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57)
4845 when not
ctrl -> (* 0..9 *)
4848 try int_of_string
s with exc
->
4849 state.text <- Printf.sprintf
"bad integer `%s': %s"
4850 s (Printexc.to_string exc
);
4856 cbput state.hists
.pag
(string_of_int
n);
4857 gotopage1 (n + conf.pagebias
- 1) 0;
4860 let pageentry text key =
4861 match Char.unsafe_chr
key with
4862 | 'g'
-> TEdone
text
4863 | _ -> intentry text key
4865 let text = "x" in text.[0] <- Char.chr
key;
4866 enttext (":", text, Some
(onhist state.hists
.pag
), pageentry, ondone, true)
4869 state.scrollw
<- if state.scrollw
> 0 then 0 else conf.scrollbw
;
4870 reshape conf.winw
conf.winh
;
4873 conf.hlinks
<- not
conf.hlinks
;
4874 state.text <- "highlightlinks " ^
if conf.hlinks
then "on" else "off";
4875 G.postRedisplay "toggle highlightlinks";
4878 state.glinks
<- true;
4879 let mode = state.mode in
4880 state.mode <- Textentry
(
4881 (":", "", None
, linknentry, linkndone gotounder, false),
4883 state.glinks
<- false;
4887 G.postRedisplay "view:linkent(F)"
4890 state.glinks
<- true;
4891 let mode = state.mode in
4892 state.mode <- Textentry
(
4893 (":", "", None
, linknentry, linkndone (fun under ->
4894 match Ne.pipe () with
4896 showtext '
!'
(Printf.sprintf
"pipe failed: %s"
4897 (Printexc.to_string exn
));
4900 try popen conf.selcmd
[r, 0; w, -1]; true
4903 (Printf.sprintf
"failed to execute %s: %s"
4904 conf.selcmd
(Printexc.to_string exn
));
4908 Ne.clo fd
(fun msg
->
4909 showtext '
!'
(Printf.sprintf
"failed to close %s: %s" cap msg
)
4912 let s = undertext under in
4916 let l = String.length
s in
4917 let n = Unix.write
w s 0 l in
4922 "failed to write %d characters to sel pipe, wrote %d"
4927 (Printf.sprintf
"failed to write to sel pipe: %s"
4928 (Printexc.to_string exn
)
4937 state.glinks
<- false;
4941 G.postRedisplay "view:linkent"
4944 begin match state.autoscroll
with
4946 conf.autoscrollstep
<- step
;
4947 state.autoscroll
<- None
4949 if conf.autoscrollstep
= 0
4950 then state.autoscroll
<- Some
1
4951 else state.autoscroll
<- Some
conf.autoscrollstep
4954 | 112 when ctrl -> (* ctrl-p *)
4958 setpresentationmode (not
conf.presentation
);
4959 showtext ' '
("presentation mode " ^
4960 if conf.presentation
then "on" else "off");
4963 begin match state.fullscreen
with
4965 state.fullscreen
<- Some
(conf.winw
, conf.winh
);
4968 state.fullscreen
<- None
;
4972 | 112 | 78 -> (* p|N *)
4973 search state.searchpattern
false
4975 | 110 | 0xffc0 -> (* n|F3 *)
4976 search state.searchpattern
true
4979 begin match state.layout with
4982 gotoy_and_clear_text (getpagey l.pageno)
4986 begin match state.layout with
4989 match conf.columns
with
4991 if conf.presentation
&& rest
== [] && l.pageh
> l.pagey + l.pagevh
4993 let y = clamp (pgscale conf.winh
) in
4996 let pageno = min
(l.pageno+1) (state.pagecount
-1) in
4997 gotoghyll (getpagey pageno)
4998 | Cmulti
((c, _, _) as cl
, _) ->
4999 if conf.presentation
5000 && (existsinrow l.pageno cl
5001 (fun l -> l.pageh
> l.pagey + l.pagevh))
5003 let y = clamp (pgscale conf.winh
) in
5006 let pageno = min
(l.pageno+c) (state.pagecount
-1) in
5007 gotoghyll (getpagey pageno)
5009 if l.pageno < state.pagecount
- 1 || l.pagecol
< n - 1
5011 let pagey, pageh
= getpageyh l.pageno in
5012 let pagey = pagey + pageh
* l.pagecol
in
5013 let ips = if l.pagecol
= 0 then 0 else conf.interpagespace
in
5014 gotoghyll (pagey + pageh
+ ips)
5017 | 0xff9f | 0xffff -> (* delete *)
5018 begin match state.layout with
5021 match conf.columns
with
5023 if conf.presentation
&& l.pagey != 0
5025 gotoghyll (clamp (pgscale ~
-(conf.winh
)))
5027 let pageno = max
0 (l.pageno-1) in
5028 gotoghyll (getpagey pageno)
5029 | Cmulti
((c, _, coverB
) as cl
, _) ->
5030 if conf.presentation
&&
5031 (existsinrow l.pageno cl
(fun l -> l.pagey != 0))
5033 gotoghyll (clamp (pgscale ~
-(conf.winh
)))
5036 if l.pageno = state.pagecount
- coverB
5040 let pageno = max
0 (l.pageno-decr) in
5041 gotoghyll (getpagey pageno)
5049 let pageno = max
0 (l.pageno-1) in
5050 let pagey, pageh
= getpageyh pageno in
5053 let pagey, pageh
= getpageyh l.pageno in
5054 pagey + pageh
* (l.pagecol
-1) - conf.interpagespace
5060 showtext ' '
(describe_location ());
5063 begin match state.layout with
5066 doreshape (l.pagew
+ state.scrollw
) l.pageh
;
5071 enterbookmarkmode ()
5073 | 104 | 0xffbe -> (* h|F1 *)
5079 | 101 when conf.redirectstderr -> (* e *)
5084 match state.layout with
5085 | l :: _ -> state.bookmarks
<- (s, 0, getanchor1 l) :: state.bookmarks
5088 enttext ("bookmark: ", "", None
, textentry, ondone, true)
5092 showtext ' '
"Quick bookmark added";
5095 begin match state.layout with
5097 let rect = getpdimrect
l.pagedimno
in
5101 (truncate
(1.8 *. (rect.(1) -. rect.(0))),
5102 truncate
(1.2 *. (rect.(3) -. rect.(0))))
5104 (truncate
(rect.(1) -. rect.(0)),
5105 truncate
(rect.(3) -. rect.(0)))
5107 let w = truncate
((float w)*.conf.zoom)
5108 and h = truncate
((float h)*.conf.zoom) in
5111 state.anchor <- getanchor ();
5112 doreshape (w + state.scrollw
) (h + conf.interpagespace
)
5114 G.postRedisplay "z";
5119 | 50 when ctrl -> (* ctrl-2 *)
5120 let maxw = getmaxw
() in
5122 then setzoom (maxw /. float conf.winw
)
5124 | 60 | 62 -> (* < > *)
5125 reqlayout (conf.angle
+ (if key = 62 then 30 else -30)) conf.proportional
5127 | 91 | 93 -> (* [ ] *)
5129 bound (conf.colorscale
+. (if key = 93 then 0.1 else -0.1)) 0.0 1.0
5131 G.postRedisplay "brightness";
5133 | 99 when state.mode = View
-> (* c *)
5135 match state.prevcolumns
with
5136 | None
-> (1, 0, 0), 1.0
5137 | Some
(columns
, z
) ->
5140 | Csplit
(c, _) -> -c, 0, 0
5141 | Cmulti
((c, a, b), _) -> c, a, b
5142 | Csingle
_ -> 1, 0, 0
5146 setcolumns View
c a b;
5149 | 0xff54 | 0xff52 when ctrl && Wsi.withshift mask
->
5150 setzoom state.prevzoom
5152 | 107 | 0xff52 -> (* k up *)
5153 begin match state.autoscroll
with
5155 begin match state.mode with
5156 | Birdseye beye
-> upbirdseye 1 beye
5159 then gotoy_and_clear_text (clamp ~
-(conf.winh
/2))
5160 else gotoy_and_clear_text (clamp (-conf.scrollstep
))
5163 setautoscrollspeed n false
5166 | 106 | 0xff54 -> (* j down *)
5167 begin match state.autoscroll
with
5169 begin match state.mode with
5170 | Birdseye beye
-> downbirdseye 1 beye
5173 then gotoy_and_clear_text (clamp (conf.winh
/2))
5174 else gotoy_and_clear_text (clamp conf.scrollstep
)
5177 setautoscrollspeed n true
5180 | 0xff51 | 0xff53 when not
(Wsi.withalt mask
) -> (* left / right *)
5186 else conf.hscrollstep
5188 let dx = if key = 0xff51 then dx else -dx in
5189 state.x <- state.x + dx;
5190 gotoy_and_clear_text state.y
5193 G.postRedisplay "lef/right"
5196 | 0xff55 -> (* prior *)
5200 match state.layout with
5202 | l :: _ -> state.y - l.pagey
5204 clamp (pgscale (-conf.winh
))
5208 | 0xff56 -> (* next *)
5212 match List.rev
state.layout with
5214 | l :: _ -> getpagey l.pageno
5216 clamp (pgscale conf.winh
)
5220 | 103 | 0xff50 -> (* g home *)
5222 | 71 | 0xff57 -> (* G end *)
5223 gotoghyll (clamp state.maxy)
5225 | 0xff53 when Wsi.withalt mask
-> (* alt-right *)
5226 gotoghyll (getnav 1)
5227 | 0xff51 when Wsi.withalt mask
-> (* alt-left *)
5228 gotoghyll (getnav ~
-1)
5233 | 118 when conf.debug
-> (* v *)
5236 match getopaque l.pageno with
5239 let x0, y0, x1, y1 = pagebbox opaque
in
5240 let a,b = float x0, float y0 in
5241 let c,d = float x1, float y0 in
5242 let e,f = float x1, float y1 in
5243 let h,j
= float x0, float y1 in
5244 let rect = (a,b,c,d,e,f,h,j
) in
5246 state.rects
<- (l.pageno, l.pageno mod 3, rect) :: state.rects
;
5248 G.postRedisplay "v";
5251 vlog "huh? %s" (Wsi.keyname
key)
5254 let linknavkeyboard key mask
linknav =
5255 let getpage pageno =
5256 let rec loop = function
5258 | l :: _ when l.pageno = pageno -> Some
l
5259 | _ :: rest
-> loop rest
5260 in loop state.layout
5262 let doexact (pageno, n) =
5263 match getopaque pageno, getpage pageno with
5264 | Some opaque
, Some
l ->
5267 let under = getlink opaque
n in
5268 G.postRedisplay "link gotounder";
5274 | 0xff50 -> (* home *)
5275 Some
(findlink opaque LDfirst
), -1
5277 | 0xff57 -> (* end *)
5278 Some
(findlink opaque LDlast
), 1
5280 | 0xff51 -> (* left *)
5281 Some
(findlink opaque
(LDleft
n)), -1
5283 | 0xff53 -> (* right *)
5284 Some
(findlink opaque
(LDright
n)), 1
5286 | 0xff52 -> (* up *)
5287 Some
(findlink opaque
(LDup
n)), -1
5289 | 0xff54 -> (* down *)
5290 Some
(findlink opaque
(LDdown
n)), 1
5295 begin match findpwl
l.pageno dir with
5299 state.mode <- LinkNav
(Ltgendir
dir);
5300 let y, h = getpageyh pageno in
5303 then y + h - conf.winh
5308 begin match getopaque pageno, getpage pageno with
5309 | Some opaque
, Some
_ ->
5311 let ld = if dir > 0 then LDfirst
else LDlast
in
5314 begin match link with
5316 showlinktype (getlink opaque
m);
5317 state.mode <- LinkNav
(Ltexact
(pageno, m));
5318 G.postRedisplay "linknav jpage";
5325 begin match opt with
5326 | Some Lnotfound
-> pwl l dir;
5327 | Some
(Lfound
m) ->
5331 let _, y0, _, y1 = getlinkrect opaque
m in
5333 then gotopage1 l.pageno y0
5335 let d = fstate.fontsize
+ 1 in
5336 if y1 - l.pagey > l.pagevh - d
5337 then gotopage1 l.pageno (y1 - conf.winh
- state.hscrollh + d)
5338 else G.postRedisplay "linknav";
5340 showlinktype (getlink opaque
m);
5341 state.mode <- LinkNav
(Ltexact
(l.pageno, m));
5344 | None
-> viewkeyboard key mask
5346 | _ -> viewkeyboard key mask
5351 G.postRedisplay "leave linknav"
5355 | Ltgendir
_ -> viewkeyboard key mask
5356 | Ltexact exact
-> doexact exact
5359 let keyboard key mask
=
5360 if (key = 103 && Wsi.withctrl mask
) && not
(istextentry state.mode)
5361 then wcmd "interrupt"
5362 else state.uioh <- state.uioh#
key key mask
5365 let birdseyekeyboard key mask
5366 ((oconf
, leftx
, pageno, hooverpageno
, anchor) as beye
) =
5368 match conf.columns
with
5370 | Cmulti
((c, _, _), _) -> c
5371 | Csplit
_ -> failwith
"bird's eye split mode"
5373 let pgh layout = List.fold_left
(fun m l -> max
l.pageh
m) conf.winh
layout in
5375 | 108 when Wsi.withctrl mask
-> (* ctrl-l *)
5376 let y, h = getpageyh pageno in
5377 let top = (conf.winh
- h) / 2 in
5378 gotoy (max
0 (y - top))
5379 | 0xff0d -> leavebirdseye beye
false
5380 | 0xff1b -> leavebirdseye beye
true (* escape *)
5381 | 0xff52 -> upbirdseye incr beye
(* up *)
5382 | 0xff54 -> downbirdseye incr beye
(* down *)
5383 | 0xff51 -> upbirdseye 1 beye
(* left *)
5384 | 0xff53 -> downbirdseye 1 beye
(* right *)
5386 | 0xff55 -> (* prior *)
5387 begin match state.layout with
5391 state.mode <- Birdseye
(
5392 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5394 gotopage1 l.pageno 0;
5397 let layout = layout (state.y-conf.winh
) (pgh state.layout) in
5399 | [] -> gotoy (clamp (-conf.winh
))
5401 state.mode <- Birdseye
(
5402 oconf
, leftx
, l.pageno, hooverpageno
, anchor
5404 gotopage1 l.pageno 0
5407 | [] -> gotoy (clamp (-conf.winh
))
5410 | 0xff56 -> (* next *)
5411 begin match List.rev
state.layout with
5413 let layout = layout (state.y + (pgh state.layout)) conf.winh
in
5414 begin match layout with
5416 let incr = l.pageh
- l.pagevh in
5421 oconf
, leftx
, state.pagecount
- 1, hooverpageno
, anchor
5423 G.postRedisplay "birdseye pagedown";
5425 else gotoy (clamp (incr + conf.interpagespace
*2));
5429 Birdseye
(oconf
, leftx
, l.pageno, hooverpageno
, anchor);
5430 gotopage1 l.pageno 0;
5433 | [] -> gotoy (clamp conf.winh
)
5436 | 0xff50 -> (* home *)
5437 state.mode <- Birdseye
(oconf
, leftx
, 0, hooverpageno
, anchor);
5440 | 0xff57 -> (* end *)
5441 let pageno = state.pagecount
- 1 in
5442 state.mode <- Birdseye
(oconf
, leftx
, pageno, hooverpageno
, anchor);
5443 if not
(pagevisible state.layout pageno)
5446 match List.rev
state.pdims
with
5448 | (_, _, h, _) :: _ -> h
5450 gotoy (max
0 (getpagey pageno - (conf.winh
- h - conf.interpagespace
)))
5451 else G.postRedisplay "birdseye end";
5452 | _ -> viewkeyboard key mask
5455 let drawpage l linkindexbase
=
5457 match state.mode with
5458 | Textentry
_ -> scalecolor 0.4
5460 | View
-> scalecolor 1.0
5461 | Birdseye
(_, _, pageno, hooverpageno
, _) ->
5462 if l.pageno = hooverpageno
5465 if l.pageno = pageno
5471 begin match getopaque l.pageno with
5473 if tileready l l.pagex
l.pagey
5475 let x = l.pagedispx - l.pagex
5476 and y = l.pagedispy - l.pagey in
5478 match conf.columns
with
5479 | Csingle
_ | Cmulti
_ ->
5480 (if conf.hlinks
then 1 else 0)
5482 && not
(isbirdseye state.mode) then 2 else 0)
5486 match state.mode with
5487 | Textentry
((_, s, _, _, _, _), _) when state.glinks
-> s
5490 postprocess opaque
hlmask x y (linkindexbase
, s, conf.hfsize
);
5497 let scrollindicator () =
5498 let sbw, ph
, sh = state.uioh#
scrollph in
5499 let sbh, pw, sw = state.uioh#scrollpw
in
5501 GlDraw.color (0.64, 0.64, 0.64);
5503 (float (conf.winw
- sbw), 0.)
5504 (float conf.winw
, float conf.winh
)
5507 (0., float (conf.winh
- sbh))
5508 (float (conf.winw
- state.scrollw
- 1), float conf.winh
)
5510 GlDraw.color (0.0, 0.0, 0.0);
5513 (float (conf.winw
- sbw), ph
)
5514 (float conf.winw
, ph
+. sh)
5517 (pw, float (conf.winh
- sbh))
5518 (pw +. sw, float conf.winh
)
5523 match state.mstate
with
5524 | Mnone
| Mscrolly
| Mscrollx
| Mpan
_ | Mzoom
_ | Mzoomrect
_ ->
5527 | Msel
((x0, y0), (x1, y1)) ->
5528 let rec loop = function
5530 if ((y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
5531 || ((y1 >= l.pagedispy && y1 <= (l.pagedispy + l.pagevh))))
5532 && ((x0 >= l.pagedispx && x0 <= (l.pagedispx + l.pagevw))
5533 || ((x1 >= l.pagedispx && x1 <= (l.pagedispx + l.pagevw))))
5535 match getopaque l.pageno with
5537 let x0, y0 = pagetranslatepoint l x0 y0 in
5538 let x1, y1 = pagetranslatepoint l x1 y1 in
5539 seltext opaque
(x0, y0, x1, y1);
5547 let showrects rects
=
5549 GlDraw.color (0.0, 0.0, 1.0) ~alpha
:0.5;
5550 GlDraw.polygon_mode `both `fill
;
5551 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5553 (fun (pageno, c, (x0, y0, x1, y1, x2
, y2
, x3
, y3
)) ->
5555 if l.pageno = pageno
5557 let dx = float (l.pagedispx - l.pagex
) in
5558 let dy = float (l.pagedispy - l.pagey) in
5559 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha
:0.5;
5560 GlDraw.begins `quads
;
5562 GlDraw.vertex2
(x0+.dx, y0+.dy);
5563 GlDraw.vertex2
(x1+.dx, y1+.dy);
5564 GlDraw.vertex2
(x2
+.dx, y2
+.dy);
5565 GlDraw.vertex2
(x3
+.dx, y3
+.dy);
5576 GlClear.color (scalecolor2 conf.bgcolor
);
5577 GlClear.clear
[`
color];
5578 let rec loop linkindexbase
= function
5580 let linkindexbase = linkindexbase + drawpage l linkindexbase in
5581 loop linkindexbase rest
5584 loop 0 state.layout;
5586 match state.mode with
5587 | LinkNav
(Ltexact
(pageno, linkno
)) ->
5588 begin match getopaque pageno with
5590 let x0, y0, x1, y1 = getlinkrect opaque linkno
in
5597 | None
-> state.rects
5604 begin match state.mstate
with
5605 | Mzoomrect
((x0, y0), (x1, y1)) ->
5607 GlDraw.color (0.3, 0.3, 0.3) ~alpha
:0.5;
5608 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
5609 GlDraw.rect (float x0, float y0)
5610 (float x1, float y1);
5619 let zoomrect x y x1 y1 =
5622 and y0 = min
y y1 in
5623 gotoy (state.y + y0);
5624 state.anchor <- getanchor ();
5625 let zoom = (float conf.winw
*. conf.zoom) /. float (x1 - x0) in
5627 if state.w < conf.winw
- state.scrollw
5628 then (conf.winw
- state.scrollw
- state.w) / 2
5631 state.x <- (state.x + margin) - x0;
5633 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5634 state.mstate
<- Mnone
;
5638 let winw = conf.winw - state.scrollw
- 1 in
5639 let s = float x /. float winw in
5640 let destx = truncate
(float (state.w + winw) *. s) in
5641 state.x <- winw - destx;
5642 gotoy_and_clear_text state.y;
5643 state.mstate
<- Mscrollx
;
5647 let s = float y /. float conf.winh
in
5648 let desty = truncate
(float (state.maxy - conf.winh
) *. s) in
5649 gotoy_and_clear_text desty;
5650 state.mstate
<- Mscrolly
;
5653 let viewmouse button down
x y mask
=
5655 | n when (n == 4 || n == 5) && not down
->
5656 if Wsi.withctrl mask
5658 match state.mstate
with
5659 | Mzoom
(oldn
, i
) ->
5667 if conf.zoom +. 0.01 > 0.1 then 0.1 else 0.01
5669 if conf.zoom -. 0.1 < 0.1 then -0.01 else -0.1
5671 let zoom = conf.zoom -. incr in
5673 state.mstate
<- Mzoom
(n, 0);
5675 state.mstate
<- Mzoom
(n, i
+1);
5677 else state.mstate
<- Mzoom
(n, 0)
5679 | _ -> state.mstate
<- Mzoom
(n, 0)
5682 match state.autoscroll
with
5683 | Some step
-> setautoscrollspeed step
(n=4)
5687 then -conf.scrollstep
5688 else conf.scrollstep
5690 let incr = incr * 2 in
5691 let y = clamp incr in
5692 gotoy_and_clear_text y
5695 | n when (n = 6 || n = 7) && not down
&& canpan () ->
5696 state.x <- state.x + (if n = 7 then -2 else 2) * conf.hscrollstep
;
5697 gotoy_and_clear_text state.y
5699 | 1 when Wsi.withctrl mask
->
5702 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5703 state.mstate
<- Mpan
(x, y)
5706 state.mstate
<- Mnone
5711 Wsi.setcursor
Wsi.CURSOR_CYCLE
;
5713 state.mstate
<- Mzoomrect
(p, p)
5716 match state.mstate
with
5717 | Mzoomrect
((x0, y0), _) ->
5718 if abs
(x-x0) > 10 && abs
(y - y0) > 10
5719 then zoomrect x0 y0 x y
5721 state.mstate
<- Mnone
;
5722 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5723 G.postRedisplay "kill accidental zoom rect";
5726 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5727 state.mstate
<- Mnone
5730 | 1 when x > conf.winw - state.scrollw
->
5733 let _, position, sh = state.uioh#
scrollph in
5734 if y > truncate
position && y < truncate
(position +. sh)
5735 then state.mstate
<- Mscrolly
5738 state.mstate
<- Mnone
5740 | 1 when y > conf.winh
- state.hscrollh ->
5743 let _, position, sw = state.uioh#scrollpw
in
5744 if x > truncate
position && x < truncate
(position +. sw)
5745 then state.mstate
<- Mscrollx
5748 state.mstate
<- Mnone
5751 let dest = if down
then getunder x y else Unone
in
5752 begin match dest with
5756 | Uunexpected
_ | Ulaunch
_ | Unamed
_ ->
5759 | Unone
when down
->
5760 Wsi.setcursor
Wsi.CURSOR_CROSSHAIR
;
5761 state.mstate
<- Mpan
(x, y);
5763 | Unone
| Utext
_ ->
5766 if conf.angle
mod 360 = 0
5768 state.mstate
<- Msel
((x, y), (x, y));
5769 G.postRedisplay "mouse select";
5773 match state.mstate
with
5776 | Mzoom
_ | Mscrollx
| Mscrolly
->
5777 state.mstate
<- Mnone
5779 | Mzoomrect
((x0, y0), _) ->
5783 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5784 state.mstate
<- Mnone
5786 | Msel
((x0, y0), (x1, y1)) ->
5787 let rec loop = function
5791 let a0 = l.pagedispy in
5792 let a1 = a0 + l.pagevh in
5793 let b0 = l.pagedispx in
5794 let b1 = b0 + l.pagevw in
5795 ((y0 >= a0 && y0 <= a1) || (y1 >= a0 && y1 <= a1))
5796 && ((x0 >= b0 && x0 <= b1) || (x1 >= b0 && x1 <= b1))
5800 match getopaque l.pageno with
5803 match Ne.pipe () with
5807 "can not create sel pipe: %s"
5808 (Printexc.to_string exn
));
5810 let doclose what fd
=
5811 Ne.clo fd
(fun msg
->
5812 dolog "%s close failed: %s" what msg
)
5815 popen conf.selcmd
[r, 0; w, -1];
5818 G.postRedisplay "copysel";
5820 dolog "can not execute %S: %s"
5821 conf.selcmd
(Printexc.to_string exn
);
5829 Wsi.setcursor
Wsi.CURSOR_INHERIT
;
5830 state.mstate
<- Mnone
;
5837 let birdseyemouse button down
x y mask
5838 (conf, leftx
, _, hooverpageno
, anchor) =
5841 let rec loop = function
5844 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5845 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5847 leavebirdseye (conf, leftx
, l.pageno, hooverpageno
, anchor) false;
5853 | _ -> viewmouse button down
x y mask
5856 let mouse button down
x y mask
=
5857 state.uioh <- state.uioh#button button down
x y mask
;
5861 state.uioh <- state.uioh#
motion x y
5865 state.uioh <- state.uioh#
pmotion x y;
5871 method key key mask
=
5872 begin match state.mode with
5873 | Textentry
textentry -> textentrykeyboard key mask
textentry
5874 | Birdseye
birdseye -> birdseyekeyboard key mask
birdseye
5875 | View
-> viewkeyboard key mask
5876 | LinkNav
linknav -> linknavkeyboard key mask
linknav
5880 method button button bstate
x y mask
=
5881 begin match state.mode with
5883 | View
-> viewmouse button bstate
x y mask
5884 | Birdseye beye
-> birdseyemouse button bstate
x y mask beye
5890 begin match state.mode with
5892 | View
| Birdseye
_ | LinkNav
_ ->
5893 match state.mstate
with
5894 | Mzoom
_ | Mnone
-> ()
5899 state.mstate
<- Mpan
(x, y);
5901 then state.x <- state.x + dx;
5903 gotoy_and_clear_text y
5906 state.mstate
<- Msel
(a, (x, y));
5907 G.postRedisplay "motion select";
5910 let y = min
conf.winh
(max
0 y) in
5914 let x = min
conf.winw (max
0 x) in
5917 | Mzoomrect
(p0
, _) ->
5918 state.mstate
<- Mzoomrect
(p0
, (x, y));
5919 G.postRedisplay "motion zoomrect";
5923 method pmotion x y =
5924 begin match state.mode with
5925 | Birdseye
(conf, leftx
, pageno, hooverpageno
, anchor) ->
5926 let rec loop = function
5928 if hooverpageno
!= -1
5930 state.mode <- Birdseye
(conf, leftx
, pageno, -1, anchor);
5931 G.postRedisplay "pmotion birdseye no hoover";
5934 if y > l.pagedispy && y < l.pagedispy + l.pagevh
5935 && x > l.pagedispx && x < l.pagedispx + l.pagevw
5937 state.mode <- Birdseye
(conf, leftx
, pageno, l.pageno, anchor);
5938 G.postRedisplay "pmotion birdseye hoover";
5948 match state.mstate
with
5949 | Mnone
-> updateunder x y
5950 | Mpan
_ | Msel
_ | Mzoom
_ | Mscrolly
| Mscrollx
| Mzoomrect
_ ->
5955 method infochanged
_ = ()
5958 let maxy = state.maxy - (if conf.maxhfit
then conf.winh
else 0) in
5959 let p, h = scrollph state.y maxy in
5963 let winw = conf.winw - state.scrollw
- 1 in
5964 let fwinw = float winw in
5966 let sw = fwinw /. float state.w in
5967 let sw = fwinw *. sw in
5968 max
sw (float conf.scrollh
)
5971 let f = state.w+winw in
5972 let r = float (winw-state.x) /. float f in
5973 let p = fwinw *. r in
5977 if position +. sw > fwinw
5978 then fwinw -. position
5981 state.hscrollh, position, sw
5985 match state.mode with
5986 | LinkNav
_ -> "links"
5987 | Textentry
_ -> "textentry"
5988 | Birdseye
_ -> "birdseye"
5991 findkeyhash conf modename
5998 let fontpath = ref "";;
6001 Map.Make
(struct type t
= (int * int) let compare = compare end);;
6004 let l = String.length
s in
6005 let b = Buffer.create
l in
6011 try Sys.getenv
"HOME"
6014 ("Can not determine home directory location: " ^
6015 Printexc.to_string exn
);
6019 let modifier_of_string = function
6020 | "alt" -> Wsi.altmask
6021 | "shift" -> Wsi.shiftmask
6022 | "ctrl" | "control" -> Wsi.ctrlmask
6023 | "meta" -> Wsi.metamask
6028 let r = Str.regexp
"-" in
6030 let elems = Str.full_split
r s in
6033 let m1 = modifier_of_string s in
6035 then (Wsi.namekey
s, m)
6038 | Str.Delim
s when n land 1 = 0 -> g s
6040 | Str.Delim
_ -> (k
, m)
6042 let rec loop n k
m = function
6045 let k, m = f n k m x in
6051 let keys_of_string =
6052 let r = Str.regexp
"[ \t]" in
6054 let elems = Str.split
r s in
6055 List.map
key_of_string elems
6058 let copykeyhashes c =
6059 List.map
(fun (k, v) -> k, Hashtbl.copy
v) c.keyhashes
;
6062 let config_of c attrs
=
6066 | "scroll-bar-width" -> { c with scrollbw
= max
0 (int_of_string
v) }
6067 | "scroll-handle-height" -> { c with scrollh
= max
0 (int_of_string
v) }
6068 | "case-insensitive-search" -> { c with icase
= bool_of_string
v }
6069 | "preload" -> { c with preload = bool_of_string
v }
6070 | "page-bias" -> { c with pagebias
= int_of_string
v }
6071 | "scroll-step" -> { c with scrollstep
= max
1 (int_of_string
v) }
6072 | "horizontal-scroll-step" ->
6073 { c with hscrollstep
= max
(int_of_string
v) 1 }
6074 | "auto-scroll-step" ->
6075 { c with autoscrollstep
= max
0 (int_of_string
v) }
6076 | "max-height-fit" -> { c with maxhfit
= bool_of_string
v }
6077 | "crop-hack" -> { c with crophack
= bool_of_string
v }
6080 match String.lowercase
v with
6081 | "true" -> Some infinity
6083 | f -> Some
(float_of_string
f)
6085 { c with maxwait
= mw}
6086 | "highlight-links" -> { c with hlinks
= bool_of_string
v }
6087 | "under-cursor-info" -> { c with underinfo
= bool_of_string
v }
6088 | "vertical-margin" ->
6089 { c with interpagespace
= max
0 (int_of_string
v) }
6091 let zoom = float_of_string
v /. 100. in
6092 let zoom = max
zoom 0.0 in
6093 { c with zoom = zoom }
6094 | "presentation" -> { c with presentation
= bool_of_string
v }
6095 | "rotation-angle" -> { c with angle
= int_of_string
v }
6096 | "width" -> { c with winw = max
20 (int_of_string
v) }
6097 | "height" -> { c with winh
= max
20 (int_of_string
v) }
6098 | "persistent-bookmarks" -> { c with savebmarks
= bool_of_string
v }
6099 | "proportional-display" -> { c with proportional
= bool_of_string
v }
6100 | "pixmap-cache-size" ->
6101 { c with memlimit
= max
2 (int_of_string_with_suffix v) }
6102 | "tex-count" -> { c with texcount
= max
1 (int_of_string
v) }
6103 | "slice-height" -> { c with sliceheight
= max
2 (int_of_string
v) }
6104 | "thumbnail-width" -> { c with thumbw
= max
2 (int_of_string
v) }
6105 | "persistent-location" -> { c with jumpback
= bool_of_string
v }
6106 | "background-color" -> { c with bgcolor
= color_of_string v }
6107 | "scrollbar-in-presentation" ->
6108 { c with scrollbarinpm
= bool_of_string
v }
6109 | "tile-width" -> { c with tilew
= max
2 (int_of_string
v) }
6110 | "tile-height" -> { c with tileh
= max
2 (int_of_string
v) }
6111 | "mupdf-store-size" ->
6112 { c with mustoresize
= max
1024 (int_of_string_with_suffix v) }
6113 | "checkers" -> { c with checkers
= bool_of_string
v }
6114 | "aalevel" -> { c with aalevel
= max
0 (int_of_string
v) }
6115 | "trim-margins" -> { c with trimmargins
= bool_of_string
v }
6116 | "trim-fuzz" -> { c with trimfuzz
= irect_of_string v }
6117 | "uri-launcher" -> { c with urilauncher
= unent v }
6118 | "path-launcher" -> { c with pathlauncher
= unent v }
6119 | "color-space" -> { c with colorspace
= colorspace_of_string v }
6120 | "invert-colors" -> { c with invert
= bool_of_string
v }
6121 | "brightness" -> { c with colorscale
= float_of_string
v }
6122 | "redirectstderr" -> { c with redirectstderr = bool_of_string
v }
6124 { c with ghyllscroll
= Some
(ghyllscroll_of_string v) }
6126 let (n, _, _) as nab
= multicolumns_of_string v in
6128 then { c with columns
= Csplit
(-n, [||]) }
6129 else { c with columns
= Cmulti
(nab
, [||]) }
6130 | "birds-eye-columns" ->
6131 { c with beyecolumns
= Some
(max
(int_of_string
v) 2) }
6132 | "selection-command" -> { c with selcmd
= unent v }
6133 | "update-cursor" -> { c with updatecurs
= bool_of_string
v }
6134 | "hint-font-size" -> { c with hfsize
= bound (int_of_string
v) 5 100 }
6135 | "page-scroll-scale" -> { c with pgscale = float_of_string
v }
6136 | "use-pbo" -> { c with usepbo
= bool_of_string
v }
6139 prerr_endline
("Error processing attribute (`" ^
6140 k ^
"'=`" ^
v ^
"'): " ^
Printexc.to_string exn
);
6143 let rec fold c = function
6146 let c = apply c k v in
6149 fold { c with keyhashes
= copykeyhashes c } attrs
;
6152 let fromstring f pos
n v d =
6155 dolog "Error processing attribute (%S=%S) at %d\n%s"
6156 n v pos
(Printexc.to_string exn
)
6161 let bookmark_of attrs
=
6162 let rec fold title page
rely visy
= function
6163 | ("title", v) :: rest
-> fold v page
rely visy rest
6164 | ("page", v) :: rest
-> fold title v rely visy rest
6165 | ("rely", v) :: rest
-> fold title page
v visy rest
6166 | ("visy", v) :: rest
-> fold title page
rely v rest
6167 | _ :: rest
-> fold title page
rely visy rest
6168 | [] -> title, page
, rely, visy
6170 fold "invalid" "0" "0" "0" attrs
6174 let rec fold path page
rely pan visy
= function
6175 | ("path", v) :: rest
-> fold v page
rely pan visy rest
6176 | ("page", v) :: rest
-> fold path v rely pan visy rest
6177 | ("rely", v) :: rest
-> fold path page
v pan visy rest
6178 | ("pan", v) :: rest
-> fold path page
rely v visy rest
6179 | ("visy", v) :: rest
-> fold path page
rely pan
v rest
6180 | _ :: rest
-> fold path page
rely pan visy rest
6181 | [] -> path, page
, rely, pan
, visy
6183 fold "" "0" "0" "0" "0" attrs
6187 let rec fold rs ls
= function
6188 | ("out", v) :: rest
-> fold v ls rest
6189 | ("in", v) :: rest
-> fold rs
v rest
6190 | _ :: rest
-> fold ls rs rest
6196 let setconf dst
src =
6197 dst
.scrollbw
<- src.scrollbw
;
6198 dst
.scrollh
<- src.scrollh
;
6199 dst
.icase
<- src.icase
;
6200 dst
.preload <- src.preload;
6201 dst
.pagebias
<- src.pagebias
;
6202 dst
.verbose
<- src.verbose
;
6203 dst
.scrollstep
<- src.scrollstep
;
6204 dst
.maxhfit
<- src.maxhfit
;
6205 dst
.crophack
<- src.crophack
;
6206 dst
.autoscrollstep
<- src.autoscrollstep
;
6207 dst
.maxwait
<- src.maxwait
;
6208 dst
.hlinks
<- src.hlinks
;
6209 dst
.underinfo
<- src.underinfo
;
6210 dst
.interpagespace
<- src.interpagespace
;
6211 dst
.zoom <- src.zoom;
6212 dst
.presentation
<- src.presentation
;
6213 dst
.angle
<- src.angle
;
6214 dst
.winw <- src.winw;
6215 dst
.winh
<- src.winh
;
6216 dst
.savebmarks
<- src.savebmarks
;
6217 dst
.memlimit
<- src.memlimit
;
6218 dst
.proportional
<- src.proportional
;
6219 dst
.texcount
<- src.texcount
;
6220 dst
.sliceheight
<- src.sliceheight
;
6221 dst
.thumbw
<- src.thumbw
;
6222 dst
.jumpback
<- src.jumpback
;
6223 dst
.bgcolor
<- src.bgcolor
;
6224 dst
.scrollbarinpm
<- src.scrollbarinpm
;
6225 dst
.tilew
<- src.tilew
;
6226 dst
.tileh
<- src.tileh
;
6227 dst
.mustoresize
<- src.mustoresize
;
6228 dst
.checkers
<- src.checkers
;
6229 dst
.aalevel
<- src.aalevel
;
6230 dst
.trimmargins
<- src.trimmargins
;
6231 dst
.trimfuzz
<- src.trimfuzz
;
6232 dst
.urilauncher
<- src.urilauncher
;
6233 dst
.colorspace
<- src.colorspace
;
6234 dst
.invert
<- src.invert
;
6235 dst
.colorscale
<- src.colorscale
;
6236 dst
.redirectstderr <- src.redirectstderr;
6237 dst
.ghyllscroll
<- src.ghyllscroll
;
6238 dst
.columns
<- src.columns
;
6239 dst
.beyecolumns
<- src.beyecolumns
;
6240 dst
.selcmd
<- src.selcmd
;
6241 dst
.updatecurs
<- src.updatecurs
;
6242 dst
.pathlauncher
<- src.pathlauncher
;
6243 dst
.keyhashes
<- copykeyhashes src;
6244 dst
.hfsize
<- src.hfsize
;
6245 dst
.hscrollstep
<- src.hscrollstep
;
6246 dst
.pgscale <- src.pgscale;
6247 dst
.usepbo
<- src.usepbo
;
6251 let h = Hashtbl.create
10 in
6252 let dc = { defconf with angle
= defconf.angle
} in
6253 let rec toplevel v t spos
_ =
6255 | Vdata
| Vcdata
| Vend
-> v
6256 | Vopen
("llppconfig", _, closed
) ->
6259 else { v with f = llppconfig
}
6261 error
"unexpected subelement at top level" s spos
6262 | Vclose
_ -> error
"unexpected close at top level" s spos
6264 and llppconfig
v t spos
_ =
6266 | Vdata
| Vcdata
-> v
6267 | Vend
-> error
"unexpected end of input in llppconfig" s spos
6268 | Vopen
("defaults", attrs
, closed
) ->
6269 let c = config_of dc attrs
in
6273 else { v with f = defaults
}
6275 | Vopen
("ui-font", attrs
, closed
) ->
6276 let rec getsize size
= function
6278 | ("size", v) :: rest
->
6280 fromstring int_of_string spos
"size" v fstate.fontsize
in
6282 | l -> getsize size l
6284 fstate.fontsize
<- getsize fstate.fontsize attrs
;
6287 else { v with f = uifont
(Buffer.create
10) }
6289 | Vopen
("doc", attrs
, closed
) ->
6290 let pathent, spage
, srely
, span
, svisy
= doc_of attrs
in
6291 let path = unent pathent
6292 and pageno = fromstring int_of_string spos
"page" spage
0
6293 and rely = fromstring float_of_string spos
"rely" srely
0.0
6294 and pan
= fromstring int_of_string spos
"pan" span
0
6295 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6296 let c = config_of dc attrs
in
6297 let anchor = (pageno, rely, visy
) in
6299 then (Hashtbl.add
h path (c, [], pan
, anchor); v)
6300 else { v with f = doc
path pan
anchor c [] }
6303 error
"unexpected subelement in llppconfig" s spos
6305 | Vclose
"llppconfig" -> { v with f = toplevel }
6306 | Vclose
_ -> error
"unexpected close in llppconfig" s spos
6308 and defaults
v t spos
_ =
6310 | Vdata
| Vcdata
-> v
6311 | Vend
-> error
"unexpected end of input in defaults" s spos
6312 | Vopen
("keymap", attrs
, closed
) ->
6314 try List.assoc
"mode" attrs
6315 with Not_found
-> "global" in
6320 let h = findkeyhash dc modename in
6321 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6324 { v with f = pkeymap
ret KeyMap.empty }
6326 | Vopen
(_, _, _) ->
6327 error
"unexpected subelement in defaults" s spos
6329 | Vclose
"defaults" ->
6330 { v with f = llppconfig
}
6332 | Vclose
_ -> error
"unexpected close in defaults" s spos
6334 and uifont
b v t spos
epos =
6337 Buffer.add_substring
b s spos
(epos - spos
);
6339 | Vopen
(_, _, _) ->
6340 error
"unexpected subelement in ui-font" s spos
6341 | Vclose
"ui-font" ->
6342 if String.length
!fontpath = 0
6343 then fontpath := Buffer.contents
b;
6344 { v with f = llppconfig
}
6345 | Vclose
_ -> error
"unexpected close in ui-font" s spos
6346 | Vend
-> error
"unexpected end of input in ui-font" s spos
6348 and doc
path pan
anchor c bookmarks
v t spos
_ =
6350 | Vdata
| Vcdata
-> v
6351 | Vend
-> error
"unexpected end of input in doc" s spos
6352 | Vopen
("bookmarks", _, closed
) ->
6355 else { v with f = pbookmarks
path pan
anchor c bookmarks
}
6357 | Vopen
("keymap", attrs
, closed
) ->
6359 try List.assoc
"mode" attrs
6360 with Not_found
-> "global"
6366 let h = findkeyhash c modename in
6367 KeyMap.iter
(Hashtbl.replace
h) keymap
;
6368 doc
path pan
anchor c bookmarks
6370 { v with f = pkeymap
ret KeyMap.empty }
6372 | Vopen
(_, _, _) ->
6373 error
"unexpected subelement in doc" s spos
6376 Hashtbl.add
h path (c, List.rev bookmarks
, pan
, anchor);
6377 { v with f = llppconfig
}
6379 | Vclose
_ -> error
"unexpected close in doc" s spos
6381 and pkeymap
ret keymap
v t spos
_ =
6383 | Vdata
| Vcdata
-> v
6384 | Vend
-> error
"unexpected end of input in keymap" s spos
6385 | Vopen
("map", attrs
, closed
) ->
6386 let r, l = map_of attrs
in
6387 let kss = fromstring keys_of_string spos
"in" r [] in
6388 let lss = fromstring keys_of_string spos
"out" l [] in
6392 | ks
:: [] -> KeyMap.add ks
(KMinsrl
lss) keymap
6393 | ks
:: rest
-> KeyMap.add ks
(KMmulti
(rest
, lss)) keymap
6396 then { v with f = pkeymap
ret keymap }
6399 { v with f = skip
"map" f }
6402 error
"unexpected subelement in keymap" s spos
6404 | Vclose
"keymap" ->
6405 { v with f = ret keymap }
6407 | Vclose
_ -> error
"unexpected close in keymap" s spos
6409 and pbookmarks
path pan
anchor c bookmarks
v t spos
_ =
6411 | Vdata
| Vcdata
-> v
6412 | Vend
-> error
"unexpected end of input in bookmarks" s spos
6413 | Vopen
("item", attrs
, closed
) ->
6414 let titleent, spage
, srely
, svisy
= bookmark_of attrs
in
6415 let page = fromstring int_of_string spos
"page" spage
0
6416 and rely = fromstring float_of_string spos
"rely" srely
0.0
6417 and visy
= fromstring float_of_string spos
"visy" svisy
0.0 in
6419 (unent titleent, 0, (page, rely, visy
)) :: bookmarks
6422 then { v with f = pbookmarks
path pan
anchor c bookmarks }
6425 { v with f = skip
"item" f }
6428 error
"unexpected subelement in bookmarks" s spos
6430 | Vclose
"bookmarks" ->
6431 { v with f = doc
path pan
anchor c bookmarks }
6433 | Vclose
_ -> error
"unexpected close in bookmarks" s spos
6435 and skip tag
f v t spos
_ =
6437 | Vdata
| Vcdata
-> v
6439 error
("unexpected end of input in skipped " ^ tag
) s spos
6440 | Vopen
(tag'
, _, closed
) ->
6444 let f'
() = { v with f = skip tag
f } in
6445 { v with f = skip tag'
f'
}
6449 else error
("unexpected close in skipped " ^ tag
) s spos
6452 parse
{ f = toplevel; accu = () } s;
6458 let len = in_channel_length ic
in
6459 let s = String.create
len in
6460 really_input ic
s 0 len;
6463 | Parse_error
(msg
, s, pos
) ->
6464 let subs = subs s pos
in
6465 let s = Printf.sprintf
"%s: at %d [..%s..]" msg pos
subs in
6466 failwith
("parse error: " ^
s)
6469 failwith
("config load error: " ^
Printexc.to_string exn
)
6475 let dir = Filename.concat
home ".config" in
6476 if Sys.is_directory
dir then dir else home
6479 Filename.concat
dir "llpp.conf"
6482 let confpath = ref defconfpath;;
6485 if Sys.file_exists
!confpath
6488 (try Some
(open_in_bin
!confpath)
6491 ("Error opening configuation file `" ^
!confpath ^
"': " ^
6492 Printexc.to_string exn
);
6502 ("Error loading configuation from `" ^
!confpath ^
"': " ^
6503 Printexc.to_string exn
);
6511 f (Hashtbl.create
0, defconf)
6516 let pc, pb
, px, pa
=
6518 Hashtbl.find h (Filename.basename
state.path)
6519 with Not_found
-> dc, [], 0, emptyanchor
6523 state.bookmarks <- pb
;
6525 state.scrollw
<- conf.scrollbw
;
6527 then state.anchor <- pa
;
6528 cbput state.hists
.nav pa
;
6534 let add_attrs bb always
dc c =
6537 then Printf.bprintf bb
"\n %s='%b'" s a
6540 then Printf.bprintf bb
"\n %s='%d'" s a
6543 then Printf.bprintf bb
"\n %s='%s'" s (string_with_suffix_of_int a)
6546 then Printf.bprintf bb
"\n %s='%g'" s (a*.100.)
6549 then Printf.bprintf bb
"\n %s='%f'" s a
6553 Printf.bprintf bb
"\n %s='%s'" s (color_to_string a)
6557 Printf.bprintf bb
"\n %s='%s'" s (colorspace_to_string a)
6561 Printf.bprintf bb
"\n %s='%s'" s (irect_to_string a)
6565 Printf.bprintf bb
"\n %s='%s'" s (enent
a 0 (String.length
a))
6571 | Some
(_N
, _A
, _B
) ->
6572 Printf.bprintf bb
"\n %s='%u,%u,%u'" s _N _A _B
6582 else string_of_float
f
6584 Printf.bprintf bb
"\n %s='%s'" s v
6589 | Cmulti
((n, a, b), _) when n > 1 ->
6590 Printf.bprintf bb
"\n %s='%d,%d,%d'" s n a b
6591 | Csplit
(n, _) when n > 1 ->
6592 Printf.bprintf bb
"\n %s='%d'" s ~
-n
6598 | Some
c when c > 1 -> Printf.bprintf bb
"\n %s='%d'" s c
6603 then dc.winw, dc.winh
6605 match state.fullscreen
with
6607 | None
-> c.winw, c.winh
6609 oi
"width" w dc.winw;
6610 oi
"height" h dc.winh
;
6611 oi
"scroll-bar-width" c.scrollbw
dc.scrollbw
;
6612 oi
"scroll-handle-height" c.scrollh
dc.scrollh
;
6613 ob "case-insensitive-search" c.icase
dc.icase
;
6614 ob "preload" c.preload dc.preload;
6615 oi
"page-bias" c.pagebias
dc.pagebias
;
6616 oi
"scroll-step" c.scrollstep
dc.scrollstep
;
6617 oi
"auto-scroll-step" c.autoscrollstep
dc.autoscrollstep
;
6618 ob "max-height-fit" c.maxhfit
dc.maxhfit
;
6619 ob "crop-hack" c.crophack
dc.crophack
;
6620 oW
"throttle" c.maxwait
dc.maxwait
;
6621 ob "highlight-links" c.hlinks
dc.hlinks
;
6622 ob "under-cursor-info" c.underinfo
dc.underinfo
;
6623 oi
"vertical-margin" c.interpagespace
dc.interpagespace
;
6624 oz
"zoom" c.zoom dc.zoom;
6625 ob "presentation" c.presentation
dc.presentation
;
6626 oi
"rotation-angle" c.angle
dc.angle
;
6627 ob "persistent-bookmarks" c.savebmarks
dc.savebmarks
;
6628 ob "proportional-display" c.proportional
dc.proportional
;
6629 oI
"pixmap-cache-size" c.memlimit
dc.memlimit
;
6630 oi
"tex-count" c.texcount
dc.texcount
;
6631 oi
"slice-height" c.sliceheight
dc.sliceheight
;
6632 oi
"thumbnail-width" c.thumbw
dc.thumbw
;
6633 ob "persistent-location" c.jumpback
dc.jumpback
;
6634 oc
"background-color" c.bgcolor
dc.bgcolor
;
6635 ob "scrollbar-in-presentation" c.scrollbarinpm
dc.scrollbarinpm
;
6636 oi
"tile-width" c.tilew
dc.tilew
;
6637 oi
"tile-height" c.tileh
dc.tileh
;
6638 oI
"mupdf-store-size" c.mustoresize
dc.mustoresize
;
6639 ob "checkers" c.checkers
dc.checkers
;
6640 oi
"aalevel" c.aalevel
dc.aalevel
;
6641 ob "trim-margins" c.trimmargins
dc.trimmargins
;
6642 oR
"trim-fuzz" c.trimfuzz
dc.trimfuzz
;
6643 os
"uri-launcher" c.urilauncher
dc.urilauncher
;
6644 os
"path-launcher" c.pathlauncher
dc.pathlauncher
;
6645 oC
"color-space" c.colorspace
dc.colorspace
;
6646 ob "invert-colors" c.invert
dc.invert
;
6647 oF
"brightness" c.colorscale
dc.colorscale
;
6648 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
6649 og
"ghyllscroll" c.ghyllscroll
dc.ghyllscroll
;
6650 oco
"columns" c.columns
dc.columns
;
6651 obeco
"birds-eye-columns" c.beyecolumns
dc.beyecolumns
;
6652 os
"selection-command" c.selcmd
dc.selcmd
;
6653 ob "update-cursor" c.updatecurs
dc.updatecurs
;
6654 oi
"hint-font-size" c.hfsize
dc.hfsize
;
6655 oi
"horizontal-scroll-step" c.hscrollstep
dc.hscrollstep
;
6656 oF
"page-scroll-scale" c.pgscale dc.pgscale;
6657 ob "use-pbo" c.usepbo
dc.usepbo
;
6660 let keymapsbuf always
dc c =
6661 let bb = Buffer.create
16 in
6662 let rec loop = function
6664 | (modename, h) :: rest
->
6665 let dh = findkeyhash dc modename in
6666 if always
|| h <> dh
6668 if Hashtbl.length
h > 0
6670 if Buffer.length
bb > 0
6671 then Buffer.add_char
bb '
\n'
;
6672 Printf.bprintf
bb "<keymap mode='%s'>\n" modename;
6673 Hashtbl.iter
(fun i
o ->
6674 let isdifferent = always
||
6676 let dO = Hashtbl.find dh i
in
6678 with Not_found
-> true
6683 if Wsi.withctrl
m then Buffer.add_string
bb "ctrl-";
6684 if Wsi.withalt
m then Buffer.add_string
bb "alt-";
6685 if Wsi.withshift
m then Buffer.add_string
bb "shift-";
6686 if Wsi.withmeta
m then Buffer.add_string
bb "meta-";
6687 Buffer.add_string
bb (Wsi.keyname
k);
6690 let rec loop = function
6692 | km
:: [] -> addkm km
6693 | km
:: rest
-> addkm km
; Buffer.add_char
bb ' '
; loop rest
6697 Buffer.add_string
bb "<map in='";
6701 Buffer.add_string
bb "' out='";
6703 Buffer.add_string
bb "'/>\n"
6706 Buffer.add_string
bb "' out='";
6708 Buffer.add_string
bb "'/>\n"
6710 | KMmulti
(ins, kms
) ->
6711 Buffer.add_char
bb ' '
;
6713 Buffer.add_string
bb "' out='";
6715 Buffer.add_string
bb "'/>\n"
6717 Buffer.add_string
bb "</keymap>";
6727 let uifontsize = fstate.fontsize
in
6728 let bb = Buffer.create
32768 in
6730 let dc = if conf.bedefault
then conf else dc in
6731 Buffer.add_string
bb "<llppconfig>\n";
6733 if String.length
!fontpath > 0
6735 Printf.bprintf
bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
6741 Printf.bprintf
bb "<ui-font size='%d'/>\n" uifontsize
6744 Buffer.add_string
bb "<defaults ";
6745 add_attrs bb true dc dc;
6746 let kb = keymapsbuf true dc dc in
6747 if Buffer.length
kb > 0
6749 Buffer.add_string
bb ">\n";
6750 Buffer.add_buffer
bb kb;
6751 Buffer.add_string
bb "\n</defaults>\n";
6753 else Buffer.add_string
bb "/>\n";
6755 let adddoc path pan
anchor c bookmarks =
6756 if bookmarks == [] && c = dc && anchor = emptyanchor
6759 Printf.bprintf
bb "<doc path='%s'"
6760 (enent
path 0 (String.length
path));
6762 if anchor <> emptyanchor
6764 let n, rely, visy
= anchor in
6765 Printf.bprintf
bb " page='%d'" n;
6768 Printf.bprintf
bb " rely='%f'" rely
6770 if abs_float visy
> 1e-6
6772 Printf.bprintf
bb " visy='%f'" visy
6777 then Printf.bprintf
bb " pan='%d'" pan
;
6779 add_attrs bb false dc c;
6780 let kb = keymapsbuf false dc c in
6782 begin match bookmarks with
6784 if Buffer.length
kb > 0
6786 Buffer.add_string
bb ">\n";
6787 Buffer.add_buffer
bb kb;
6788 Buffer.add_string
bb "\n</doc>\n";
6790 else Buffer.add_string
bb "/>\n"
6792 Buffer.add_string
bb ">\n<bookmarks>\n";
6793 List.iter
(fun (title, _level
, (page, rely, visy
)) ->
6795 "<item title='%s' page='%d'"
6796 (enent
title 0 (String.length
title))
6801 Printf.bprintf
bb " rely='%f'" rely
6803 if abs_float visy
> 1e-6
6805 Printf.bprintf
bb " visy='%f'" visy
6807 Buffer.add_string
bb "/>\n";
6809 Buffer.add_string
bb "</bookmarks>";
6810 if Buffer.length
kb > 0
6812 Buffer.add_string
bb "\n";
6813 Buffer.add_buffer
bb kb;
6815 Buffer.add_string
bb "\n</doc>\n";
6821 match state.mode with
6822 | Birdseye
(c, pan, _, _, _) ->
6824 match conf.columns
with
6825 | Cmulti
((c, _, _), _) -> Some
c
6829 match c.columns
with
6830 | Cmulti
(c, _) -> Cmulti
(c, [||])
6831 | Csingle
_ -> Csingle
[||]
6832 | Csplit
_ -> failwith
"quit from bird's eye while split"
6834 pan, { c with beyecolumns = beyecolumns; columns
= columns
}
6835 | _ -> state.x, conf
6837 let basename = Filename.basename state.path in
6838 adddoc basename pan (getanchor ())
6840 let autoscrollstep =
6841 match state.autoscroll
with
6843 | None
-> conf.autoscrollstep
6845 match state.mode with
6846 | Birdseye
(bc
, _, _, _, _) ->
6849 presentation
= bc
.presentation
;
6850 interpagespace
= bc
.interpagespace
;
6851 maxwait
= bc
.maxwait
;
6852 autoscrollstep = autoscrollstep }
6853 | _ -> { conf with autoscrollstep = autoscrollstep }
6855 (if conf.savebmarks
then state.bookmarks else []);
6857 Hashtbl.iter
(fun path (c, bookmarks, x, anchor) ->
6859 then adddoc path x anchor c bookmarks
6861 Buffer.add_string
bb "</llppconfig>\n";
6864 if load1 f && Buffer.length
bb > 0
6867 let tmp = !confpath ^
".tmp" in
6868 let oc = open_out_bin
tmp in
6869 Buffer.output_buffer
oc bb;
6871 Unix.rename
tmp !confpath;
6874 ("error while saving configuration: " ^
Printexc.to_string exn
)
6879 let trimcachepath = ref "" in
6882 [("-p", Arg.String
(fun s -> state.password
<- s) ,
6883 "<password> Set password");
6885 ("-f", Arg.String
(fun s -> Config.fontpath := s),
6886 "<path> Set path to the user interface font");
6888 ("-c", Arg.String
(fun s -> Config.confpath := s),
6889 "<path> Set path to the configuration file");
6891 ("-tcf", Arg.String
(fun s -> trimcachepath := s),
6892 "<path> Set path to the trim cache file");
6894 ("-v", Arg.Unit
(fun () ->
6896 "%s\nconfiguration path: %s\n"
6900 exit
0), " Print version and exit");
6903 (fun s -> state.path <- s)
6904 ("Usage: " ^
Sys.argv
.(0) ^
" [options] some.pdf\nOptions:")
6906 if String.length
state.path = 0
6907 then (prerr_endline
"file name missing"; exit
1);
6909 if not
(Config.load ())
6910 then prerr_endline
"failed to load configuration";
6912 let globalkeyhash = findkeyhash conf "global" in
6913 let wsfd, winw, winh
= Wsi.init
(object
6915 if nogeomcmds state.geomcmds
|| platform == Posx
6918 GlClear.color (scalecolor2 conf.bgcolor
);
6919 GlClear.clear
[`
color];
6921 method display = display ()
6922 method reshape w h = reshape w h
6923 method mouse b d x y m = mouse b d x y m
6924 method motion x y = state.mpos
<- (x, y); motion x y
6925 method pmotion x y = state.mpos
<- (x, y); pmotion x y
6927 let mascm = m land (
6928 Wsi.altmask
+ Wsi.shiftmask
+ Wsi.ctrlmask
+ Wsi.metamask
6930 match state.keystate
with
6932 let km = k, mascm in
6935 let modehash = state.uioh#
modehash in
6936 try Hashtbl.find modehash km
6938 try Hashtbl.find globalkeyhash km
6939 with Not_found
-> KMinsrt
(k, m)
6941 | KMinsrt
(k, m) -> keyboard k m
6942 | KMinsrl
l -> List.iter
(fun (k, m) -> keyboard k m) l
6943 | KMmulti
(l, r) -> state.keystate
<- KSinto
(l, r)
6945 | KSinto
((k'
, m'
) :: [], insrt
) when k'
=k && m'
land mascm = m'
->
6946 List.iter
(fun (k, m) -> keyboard k m) insrt
;
6947 state.keystate
<- KSnone
6948 | KSinto
((k'
, m'
) :: keys
, insrt
) when k'
=k && m'
land mascm = m'
->
6949 state.keystate
<- KSinto
(keys
, insrt
)
6951 state.keystate
<- KSnone
6953 method enter
x y = state.mpos
<- (x, y); pmotion x y
6954 method leave = state.mpos
<- (-1, -1)
6955 method quit
= raise Quit
6956 end) conf.winw conf.winh
(platform = Posx
) in
6961 List.exists
GlMisc.check_extension
6962 [ "GL_ARB_texture_rectangle"
6963 ; "GL_EXT_texture_recangle"
6964 ; "GL_NV_texture_rectangle" ]
6966 then (prerr_endline
"OpenGL does not suppport rectangular textures"; exit
1);
6969 match Ne.pipe () with
6971 Printf.eprintf
"pipe/crsw failed: %s" (Printexc.to_string exn
);
6975 match Ne.pipe () with
6977 Printf.eprintf
"pipe/srcw failed: %s" (Printexc.to_string exn
);
6987 setcheckers conf.checkers
;
6991 conf.angle
, conf.proportional
, (conf.trimmargins
, conf.trimfuzz
),
6992 conf.texcount
, conf.sliceheight
, conf.mustoresize
, conf.colorspace
,
6993 !Config.fontpath, !trimcachepath,
6994 GlMisc.check_extension
"GL_ARB_pixel_buffer_object"
6998 state.text <- "Opening " ^
(mbtoutf8
state.path);
7000 opendoc state.path state.password
;
7003 Sys.set_signal
Sys.sighup
(Sys.Signal_handle
(fun _ -> reload ()));
7005 let rec loop deadline
=
7007 match state.errfd
with
7008 | None
-> [state.sr
; state.wsfd]
7009 | Some fd
-> [state.sr
; state.wsfd; fd
]
7013 state.redisplay
<- false;
7020 if deadline
= infinity
7022 else max
0.0 (deadline
-. now)
7027 try Unix.select
r [] [] timeout
7028 with Unix.Unix_error
(Unix.EINTR
, _, _) -> [], [], []
7034 if state.ghyll
== noghyll
7036 match state.autoscroll
with
7037 | Some step
when step
!= 0 ->
7038 let y = state.y + step
in
7042 else if y >= state.maxy then 0 else y
7045 if state.mode = View
7046 then state.text <- "";
7049 else deadline
+. 0.01
7054 let rec checkfds = function
7056 | fd
:: rest
when fd
= state.sr
->
7057 let cmd = readcmd state.sr
in
7061 | fd
:: rest
when fd
= state.wsfd ->
7066 let s = String.create
80 in
7067 let n = Unix.read fd
s 0 80 in
7068 if conf.redirectstderr
7070 Buffer.add_substring
state.errmsgs
s 0 n;
7071 state.newerrmsgs
<- true;
7072 state.redisplay
<- true;
7075 prerr_string
(String.sub
s 0 n);
7083 if deadline
= infinity
7087 match state.autoscroll
with
7088 | Some step
when step
!= 0 -> deadline1
7089 | _ -> if state.ghyll
== noghyll then infinity
else deadline1