1 type link
= | LNone
| LUri
of string | LGoto
of (int * int);;
3 let log fmt
= Printf.kprintf prerr_endline fmt
;;
4 let dolog fmt
= Printf.kprintf prerr_endline fmt
;;
6 external init
: Unix.file_descr
-> unit = "ml_init";;
7 external draw
: int -> int -> int -> int -> string -> unit = "ml_draw";;
8 external seltext
: string -> (int * int * int * int) -> int -> unit =
10 external copysel
: string -> unit = "ml_copysel";;
11 external getlink
: string -> int -> int -> link
= "ml_getlink";;
12 external highlightlinks
: string -> int -> unit = "ml_highlightlinks";;
13 external getpagewh
: int -> float array
= "ml_getpagewh";;
15 type mstate
= Msel
of ((int * int) * (int * int)) | Mnone
;;
25 type textentry
= (char
* string * onhist
option * onkey
* ondone
)
26 and onkey
= string -> int -> te
27 and ondone
= string -> unit
28 and onhist
= histcmd
-> string
29 and histcmd
= HCnext
| HCprev
| HCfirst
| HClast
34 | TEswitch
of textentry
38 { store
= Array.create n v
45 let cblen b
= Array.length b
.store
;;
50 b
.wc
<- (b
.wc
+ 1) mod len;
51 b
.len <- min
(b
.len + 1) len;
54 let cbpeekw b
= b
.store
.(b
.wc
);;
57 if b
.len = 0 then b
.store
.(0) else
58 let rc = b
.rc + dir
in
59 let rc = if rc = -1 then b
.len - 1 else rc in
60 let rc = if rc = b
.len then 0 else rc in
81 { mutable scrollw
: int
82 ; mutable scrollh
: int
83 ; mutable icase
: bool
84 ; mutable preload
: bool
85 ; mutable pagebias
: int
86 ; mutable verbose
: bool
87 ; mutable scrollincr
: int
88 ; mutable maxhfit
: bool
89 ; mutable crophack
: bool
90 ; mutable autoscroll
: bool
91 ; mutable showall
: bool
92 ; mutable hlinks
: bool
96 type outline
= string * int * int * int;;
98 | Oarray
of outline array
99 | Olist
of outline list
100 | Onarrow
of outline array
* outline array
103 type rect
= (float * float * float * float * float * float * float * float);;
106 { mutable csock
: Unix.file_descr
107 ; mutable ssock
: Unix.file_descr
110 ; mutable rotate
: int
114 ; mutable layout
: layout list
115 ; pagemap
: ((int * int * int), string) Hashtbl.t
116 ; mutable pages
: (int * int * int) list
117 ; mutable pagecount
: int
118 ; pagecache
: string circbuf
119 ; mutable rendering
: bool
120 ; mutable mstate
: mstate
121 ; mutable searchpattern
: string
122 ; mutable rects
: (int * int * rect
) list
123 ; mutable rects1
: (int * int * rect
) list
124 ; mutable text
: string
125 ; mutable fullscreen
: (int * int) option
126 ; mutable textentry
: textentry
option
127 ; mutable outlines
: outlines
128 ; mutable outline
: (bool * int * int * outline array
* string) option
129 ; mutable bookmarks
: outline list
130 ; mutable path
: string
131 ; mutable invalidated
: int
132 ; mutable colorscale
: float
136 { pat
: string circbuf
137 ; pag
: string circbuf
138 ; nav
: float circbuf
168 ; pagemap
= Hashtbl.create
10
169 ; pagecache
= cbnew 10 ""
180 ; outlines
= Olist
[]
186 { nav
= cbnew 100 0.0
197 Printf.kprintf prerr_endline fmt
199 Printf.kprintf ignore fmt
203 let len = String.length s
in
205 let b = Buffer.create
n in
206 Buffer.add_char
b (Char.chr
((len lsr 24) land 0xff));
207 Buffer.add_char
b (Char.chr
((len lsr 16) land 0xff));
208 Buffer.add_char
b (Char.chr
((len lsr 8) land 0xff));
209 Buffer.add_char
b (Char.chr
((len lsr 0) land 0xff));
210 Buffer.add_string
b s
;
211 let s'
= Buffer.contents
b in
212 let n'
= Unix.write fd
s'
0 n in
213 if n'
!= n then failwith
"write failed";
218 let n = Unix.read fd
s 0 4 in
219 if n != 4 then failwith
"incomplete read(len)";
221 lor (Char.code
s.[0] lsl 24)
222 lor (Char.code
s.[1] lsl 16)
223 lor (Char.code
s.[2] lsl 8)
224 lor (Char.code
s.[3] lsl 0)
226 let s = String.create
len in
227 let n = Unix.read fd
s 0 len in
228 if n != len then failwith
"incomplete read(data)";
233 if y
= state.maxy
then 1.0
234 else float y
/. float state.maxy
238 let b = Buffer.create
10 in
239 Buffer.add_string
b s;
240 let rec combine = function
243 Buffer.add_char
b ' '
;
246 | `
b b -> if b then "1" else "0"
248 | `i i
-> string_of_int i
249 | `f f
-> string_of_float f
250 | `I f
-> string_of_int
(truncate f
)
252 Buffer.add_string
b s;
259 let cmd = Buffer.contents
(makecmd s l
) in
260 writecmd state.csock
cmd;
264 let rec f pn ph fh l
=
266 | (n, _
, h
) :: rest
->
267 let fh = fh + (n - pn
) * ph
in
271 let fh = fh + (ph
* (state.pagecount
- pn
)) in
274 let fh = f 0 0 0 state.pages
in
278 let getpagey pageno
=
279 let rec f pn ph y l
=
281 | (n, _
, h
) :: rest
->
284 y
+ (pageno
- pn
) * ph
286 let y = y + (n - pn
) * ph
in
290 y + (pageno
- pn
) * ph
296 let rec f pageno pdimno prev vy py dy l cacheleft accu
=
297 if pageno
= state.pagecount
|| cacheleft
= 0
300 let ((_
, w
, h
) as curr
), rest
, pdimno
=
302 | ((pageno'
, _
, _
) as curr
) :: rest
when pageno'
= pageno
->
303 curr
, rest
, pdimno
+ 1
307 let pageno'
= pageno + 1 in
341 let accu = e :: accu in
342 f pageno' pdimno curr
343 (vy
+ vh) (py + h
) (dy
+ vh + 2) rest
344 (pred cacheleft
) accu
346 f pageno' pdimno curr vy
(py + h
) dy rest cacheleft
accu
348 if state.invalidated
= 0
350 let accu = f 0 ~
-1 (0,0,0) y 0 0 state.pages
(cblen state.pagecache
) [] in
351 state.maxy
<- calcheight ();
358 let y = state.y + incr
in
360 let y = min
y (state.maxy
- (if conf.maxhfit
then state.h
else 0)) in
364 let getopaque pageno =
365 try Some
(Hashtbl.find
state.pagemap
(pageno + 1, state.w
- conf.scrollw
,
367 with Not_found
-> None
370 let cache pageno opaque
=
371 Hashtbl.replace
state.pagemap
(pageno + 1, state.w
- conf.scrollw
,
375 let validopaque opaque
= String.length opaque
> 0;;
378 match getopaque l
.pageno with
379 | None
when not
state.rendering
->
380 state.rendering
<- true;
382 wcmd "render" [`i
(l
.pageno + 1)
390 let loadlayout layout =
391 let rec f all
= function
393 begin match getopaque l
.pageno with
394 | None
-> render l
; f false ls
395 | Some opaque
-> f (all
&& validopaque opaque
) ls
399 f (layout <> []) layout;
404 let y = min
state.maxy
y in
405 let pages = layout y state.h
in
406 let ready = loadlayout pages in
407 state.ty
<- yratio y;
408 if conf.showall
then (
410 state.layout <- pages;
412 Glut.postRedisplay
();
416 state.layout <- pages;
418 Glut.postRedisplay
();
420 if conf.preload
then begin
421 let y = if state.y < state.h
then 0 else state.y - state.h
in
422 let pages = layout y (state.h
*3) in
423 List.iter
render pages;
428 cbput state.hists
.nav
(yratio state.y);
429 cbrfollowlen state.hists
.nav
;
433 let y = cbget state.hists
.nav ~
-1 in
434 truncate
(y *. float state.maxy
)
438 let y = getpagey n in
448 state.invalidated
<- state.invalidated
+ 1;
452 let c = c *. state.colorscale
in
457 let ratio = float w
/. float state.w
in
458 let fixbookmark (s, l
, pageno, pagey
) =
459 let pagey = truncate
(float pagey *. ratio) in
460 (s, l
, pageno, pagey)
462 state.bookmarks
<- List.map
fixbookmark state.bookmarks
;
465 GlDraw.viewport
0 0 w h
;
466 GlMat.mode `modelview
;
467 GlMat.load_identity
();
468 GlMat.mode `projection
;
469 GlMat.load_identity
();
470 GlMat.rotate ~x
:1.0 ~angle
:180.0 ();
471 GlMat.translate ~x
:~
-.1.0 ~
y:~
-.1.0 ();
472 GlMat.scale3
(2.0 /. float w
, 2.0 /. float state.h
, 1.0);
473 GlClear.color
(scalecolor 1.0);
474 GlClear.clear
[`color
];
477 wcmd "geometry" [`i
(state.w
- conf.scrollw
); `i h
];
481 GlDraw.color
(0.0, 0.0, 0.0);
483 (0.0, float (state.h
- 18))
484 (float (state.w
- conf.scrollw
- 1), float state.h
)
486 let font = Glut.BITMAP_8_BY_13
in
487 GlDraw.color
(1.0, 1.0, 1.0);
488 GlPix.raster_pos ~x
:0.0 ~
y:(float (state.h
- 5)) ();
489 Glut.bitmapCharacter ~
font ~
c:(Char.code
c);
490 String.iter
(fun c -> Glut.bitmapCharacter ~
font ~
c:(Char.code
c)) s;
494 let len = String.length
state.text
in
495 match state.textentry
with
497 if len > 0 then showtext ' '
state.text
499 | Some
(c, text
, _
, _
, _
) ->
503 text ^
" [" ^
state.text ^
"]"
514 state.outlines
<- Olist
[]
517 state.rects
<- state.rects1
;
518 Glut.postRedisplay
()
521 let n = Scanf.sscanf
cmd "C %d" (fun n -> n) in
522 state.pagecount
<- n;
523 state.invalidated
<- state.invalidated
- 1;
524 if state.invalidated
= 0
526 let rely = yratio state.y in
527 state.maxy
<- calcheight ();
528 gotoy (truncate
(float state.maxy
*. rely));
532 let s = Scanf.sscanf
cmd "t %n"
533 (fun n -> String.sub
cmd n (String.length
cmd - n))
535 Glut.setWindowTitle
s
538 let s = Scanf.sscanf
cmd "T %n"
539 (fun n -> String.sub
cmd n (String.length
cmd - n))
541 if state.textentry
= None
549 Glut.postRedisplay
();
555 let s = Scanf.sscanf
cmd "V %n"
556 (fun n -> String.sub
cmd n (String.length
cmd - n))
563 let pageno, c, x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
=
564 Scanf.sscanf
cmd "F %d %d %f %f %f %f %f %f %f %f"
565 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
566 (p
, c, x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
))
568 let y = (getpagey pageno) + truncate y0
in
571 state.rects1
<- [pageno, c, (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
)]
574 let pageno, c, x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
=
575 Scanf.sscanf
cmd "R %d %d %f %f %f %f %f %f %f %f"
576 (fun p
c x0 y0 x1 y1 x2 y2 x3 y3
->
577 (p
, c, x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
))
580 (pageno, c, (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
)) :: state.rects1
584 Scanf.sscanf
cmd "r %d %d %d %d %s"
585 (fun n w h r p
-> (n, w
, h
, r
, p
))
587 Hashtbl.replace
state.pagemap
(n, w
, r
) p
;
588 let opaque = cbpeekw state.pagecache
in
589 if validopaque opaque
593 (fun k v a
-> if v
= opaque then k else a
)
594 state.pagemap
(-1, -1, -1)
596 wcmd "free" [`
s opaque];
597 Hashtbl.remove
state.pagemap
k
599 cbput state.pagecache p
;
600 state.rendering
<- false;
602 then gotoy (truncate
(ceil
(state.ty
*. float state.maxy
)))
606 let (n, w
, h
) as pagelayout
=
607 Scanf.sscanf
cmd "l %d %d %d" (fun n w h
-> n, w
, h
)
609 state.pages <- pagelayout
:: state.pages
613 Scanf.sscanf
cmd "o %d %d %d %n" (fun l
n t pos
-> l
, n, t
, pos
)
615 let s = String.sub
cmd pos
(String.length
cmd - pos
) in
616 let outline = (s, l
, n, t
) in
618 match state.outlines with
619 | Olist
outlines -> Olist
(outline :: outlines)
620 | Oarray _
-> Olist
[outline]
621 | Onarrow _
-> Olist
[outline]
623 state.outlines <- outlines
626 log "unknown cmd `%S'" cmd
629 let now = Unix.gettimeofday
;;
632 let r, _
, _
= Unix.select
[state.csock
] [] [] 0.001 in
635 if conf.autoscroll
then begin
636 let y = state.y + conf.scrollincr
in
637 let y = if y >= state.maxy
then 0 else y in
643 let cmd = readcmd state.csock
in
648 let onhist cb
= function
649 | HCprev
-> cbget cb ~
-1
650 | HCnext
-> cbget cb
1
651 | HCfirst
-> cbget cb ~
-(cb
.rc)
652 | HClast
-> cbget cb
(cb
.len - 1 - cb
.rc)
655 let search pattern forward
=
656 if String.length pattern
> 0
659 match state.layout with
662 l
.pageno, (l
.pagey + if forward
then 0 else 0*l
.pagevh
)
665 let b = makecmd "search"
666 [`
b conf.icase
; `i
pn; `i
py; `i
(if forward
then 1 else 0)]
668 Buffer.add_char
b '
,'
;
669 Buffer.add_string
b pattern
;
670 Buffer.add_char
b '
\000'
;
673 writecmd state.csock
cmd;
676 let intentry text key
=
677 let c = Char.unsafe_chr key
in
680 let s = "x" in s.[0] <- c;
681 let text = text ^
s in
685 state.text <- Printf.sprintf
"invalid char (%d, `%c')" key
c;
690 let b = Buffer.create
(String.length
s + 1) in
691 Buffer.add_string
b s;
696 let textentry text key
=
697 let c = Char.unsafe_chr key
in
699 | _
when key
>= 32 && key
< 127 ->
700 let text = addchar text c in
704 log "unhandled key %d char `%c'" key
(Char.unsafe_chr key
);
709 state.rotate <- angle
;
711 wcmd "rotate" [`i angle
];
714 let optentry text key
=
715 let btos b = if b then "on" else "off" in
716 let c = Char.unsafe_chr key
in
720 try conf.scrollincr
<- int_of_string
s with exc
->
721 state.text <- Printf.sprintf
"bad integer `%s': %s"
722 s (Printexc.to_string exc
)
724 TEswitch
('#'
, "", None
, intentry, ondone)
729 Some
(int_of_string
s)
731 state.text <- Printf.sprintf
"bad integer `%s': %s"
732 s (Printexc.to_string exc
);
735 | Some angle
-> rotate angle
738 TEswitch
('^'
, "", None
, intentry, ondone)
741 conf.icase
<- not
conf.icase
;
742 TEdone
("case insensitive search " ^
(btos conf.icase
))
745 conf.preload
<- not
conf.preload
;
747 TEdone
("preload " ^
(btos conf.preload
))
750 conf.verbose
<- not
conf.verbose
;
751 TEdone
("verbose " ^
(btos conf.verbose
))
754 conf.maxhfit
<- not
conf.maxhfit
;
755 state.maxy
<- state.maxy
+ (if conf.maxhfit
then -state.h
else state.h
);
756 TEdone
("maxhfit " ^
(btos conf.maxhfit
))
759 conf.crophack
<- not
conf.crophack
;
760 TEdone
("crophack " ^
btos conf.crophack
)
763 conf.showall
<- not
conf.showall
;
764 TEdone
("showall " ^
btos conf.showall
)
767 state.text <- Printf.sprintf
"bad option %d `%c'" key
c;
771 let maxoutlinerows () = (state.h
- 31) / 16;;
773 let enterselector allowdel
outlines errmsg
=
774 if Array.length
outlines = 0
781 match state.layout with
783 | {pageno=pageno} :: rest
-> pageno
787 if n = Array.length
outlines
790 let (_
, _
, outlinepageno
, _
) = outlines.(n) in
791 if outlinepageno
>= pageno then n else loop (n+1)
796 Some
(allowdel
, active,
797 max
0 ((active - maxoutlinerows () / 2)), outlines, "");
798 Glut.postRedisplay
();
801 let enteroutlinemode () =
803 match state.outlines with
806 let a = Array.of_list
(List.rev l
) in
807 state.outlines <- Oarray
a;
809 | Onarrow
(a, b) -> a
811 enterselector false outlines "Document has no outline";
814 let enterbookmarkmode () =
815 let bookmarks = Array.of_list
state.bookmarks in
816 enterselector true bookmarks "Document has no bookmarks (yet)";
820 let quickbookmark ?title
() =
821 match state.layout with
827 let sec = Unix.gettimeofday
() in
828 let tm = Unix.localtime
sec in
829 Printf.sprintf
"Quick %d visited (%d/%d/%d %d:%d)"
833 (tm.Unix.tm_year
+ 1900)
836 | Some
title -> title
839 (title, 0, l
.pageno, l
.pagey) :: state.bookmarks
842 let viewkeyboard ~key ~x ~
y =
844 state.textentry <- te
;
847 Glut.postRedisplay
()
849 match state.textentry with
851 let c = Char.chr key
in
866 Glut.postRedisplay
()
869 let ondone isforw
s =
870 cbput state.hists
.pat
s;
871 cbrfollowlen state.hists
.pat
;
872 state.searchpattern
<- s;
875 enttext (Some
(c, "", Some
(onhist state.hists
.pat
),
876 textentry, ondone (c ='
/'
)))
881 try int_of_string
s with exc
->
882 state.text <- Printf.sprintf
"bad integer `%s': %s"
883 s (Printexc.to_string exc
);
889 state.text <- "page bias is now " ^ string_of_int
n;
892 enttext (Some
('
+'
, "", None
, intentry, ondone))
898 enttext (Some
('
-'
, "", None
, optentry, ondone))
903 try int_of_string
s with exc
->
904 state.text <- Printf.sprintf
"bad integer `%s': %s"
905 s (Printexc.to_string exc
);
911 cbput state.hists
.pag
(string_of_int
n);
912 cbrfollowlen state.hists
.pag
;
913 gotoy (getpagey (n + conf.pagebias
- 1))
916 let pageentry text key
=
917 match Char.unsafe_chr key
with
919 | _
-> intentry text key
921 let text = "x" in text.[0] <- c;
922 enttext (Some
('
:'
, text, Some
(onhist state.hists
.pag
),
926 conf.scrollw
<- if conf.scrollw
> 0 then 0 else 5;
927 reshape state.w
state.h
;
930 conf.hlinks
<- not
conf.hlinks
;
931 state.text <- "highlightlinks " ^
if conf.hlinks
then "on" else "off";
932 Glut.postRedisplay
()
935 conf.autoscroll
<- not
conf.autoscroll
938 begin match state.fullscreen
with
940 state.fullscreen
<- Some
(state.w
, state.h
);
943 state.fullscreen
<- None
;
944 Glut.reshapeWindow ~w ~h
951 search state.searchpattern
true
954 search state.searchpattern
false
957 begin match state.layout with
960 gotoy (state.y - l
.pagey);
964 begin match List.rev
state.layout with
967 gotoy (clamp (l
.pageh
- l
.pagey))
971 begin match state.layout with
974 gotoy (clamp (-l
.pageh
));
979 if fn
= -1 then l
.pageno, l
.pageno else fn
, l
.pageno
981 let fn, ln
= List.fold_left
f (-1, -1) state.layout in
983 let maxy = state.maxy - (if conf.maxhfit
then state.h
else 0) in
987 else (100. *. (float state.y /. float maxy)) in
990 Printf.sprintf
"Page %d of %d %.2f%%"
991 (fn+1) state.pagecount
percent
994 "Pages %d-%d of %d %.2f%%"
995 (fn+1) (ln
+1) state.pagecount
percent
1001 begin match state.layout with
1004 Glut.reshapeWindow
(l
.pagew
+ conf.scrollw
) l
.pageh
;
1005 Glut.postRedisplay
();
1009 enterbookmarkmode ()
1013 match state.layout with
1015 state.bookmarks <- (s, 0, l
.pageno, l
.pagey) :: state.bookmarks
1018 enttext (Some
('~'
, "", None
, textentry, ondone))
1022 showtext ' '
"Quick bookmark added";
1026 begin match state.layout with
1028 let a = getpagewh l
.pagedimno
in
1032 (truncate
(1.8 *. (a.(1) -. a.(0))),
1033 truncate
(1.2 *. (a.(3) -. a.(0))))
1035 (truncate
(a.(1) -. a.(0)),
1036 truncate
(a.(3) -. a.(0)))
1038 Glut.reshapeWindow
(w + conf.scrollw
) h
;
1039 Glut.postRedisplay
();
1045 rotate (state.rotate + (if c = '
>'
then 30 else -30));
1050 (min
(state.colorscale
+. (if c = '
]'
then 0.1 else -0.1)) 1.0);
1051 Glut.postRedisplay
()
1054 vlog "huh? %d %c" key
(Char.chr key
);
1057 | Some
(c, text, onhist, onkey
, ondone) when key
= 8 ->
1058 let len = String.length
text in
1061 state.textentry <- None
;
1062 Glut.postRedisplay
();
1065 let s = String.sub
text 0 (len - 1) in
1066 enttext (Some
(c, s, onhist, onkey
, ondone))
1069 | Some
(c, text, onhist, onkey
, ondone) ->
1070 begin match Char.unsafe_chr key
with
1073 state.textentry <- None
;
1074 Glut.postRedisplay
()
1077 state.textentry <- None
;
1078 Glut.postRedisplay
()
1081 begin match onkey
text key
with
1083 state.textentry <- None
;
1085 Glut.postRedisplay
()
1088 enttext (Some
(c, text, onhist, onkey
, ondone));
1091 state.textentry <- None
;
1092 Glut.postRedisplay
()
1095 state.textentry <- Some te
;
1096 Glut.postRedisplay
()
1101 let narrow outlines pattern
=
1102 let reopt = try Some
(Str.regexp_case_fold pattern
) with _
-> None
in
1106 let rec fold accu n =
1107 if n = -1 then accu else
1108 let (s, _
, _
, _
) as o
= outlines.(n) in
1110 if (try ignore
(Str.search_forward re
s 0); true
1111 with Not_found
-> false)
1117 let matched = fold [] (Array.length
outlines - 1) in
1118 if matched = [] then None
else Some
(Array.of_list
matched)
1121 let outlinekeyboard ~key ~x ~
y (allowdel
, active, first
, outlines, qsearch
) =
1122 let search active pattern incr
=
1125 if n = Array.length
outlines || n = -1 then None
else
1126 let (s, _
, _
, _
) = outlines.(n) in
1128 (try ignore
(Str.search_forward re
s 0); true
1129 with Not_found
-> false)
1131 else loop (n + incr
)
1136 let re = Str.regexp_case_fold pattern
in
1142 let firstof active = max
0 (active - maxoutlinerows () / 2) in
1145 if String.length qsearch
= 0
1148 state.outline <- None
;
1149 Glut.postRedisplay
();
1153 state.outline <- Some
(allowdel
, active, first
, outlines, "");
1154 Glut.postRedisplay
();
1158 let incr = if key
= 18 then -1 else 1 in
1160 match search (active + incr) qsearch
incr with
1162 state.text <- qsearch ^
" [not found]";
1165 state.text <- qsearch
;
1166 active, firstof active
1168 state.outline <- Some
(allowdel
, active, first
, outlines, qsearch
);
1169 Glut.postRedisplay
();
1172 let len = String.length qsearch
in
1179 state.outline <- Some
(allowdel
, active, first
, outlines, "");
1182 let qsearch = String.sub
qsearch 0 (len - 1) in
1184 match search active qsearch ~
-1 with
1186 state.text <- qsearch ^
" [not found]";
1189 state.text <- qsearch;
1190 active, firstof active
1192 state.outline <- Some
(allowdel
, active, first
, outlines, qsearch);
1194 Glut.postRedisplay
()
1197 if active < Array.length
outlines
1199 let (_
, _
, n, t
) = outlines.(active) in
1203 if allowdel
then state.bookmarks <- Array.to_list
outlines;
1204 state.outline <- None
;
1205 Glut.postRedisplay
();
1207 | _
when key
>= 32 && key
< 127 ->
1208 let pattern = addchar qsearch (Char.chr key
) in
1210 match search active pattern 1 with
1212 state.text <- pattern ^
" [not found]";
1215 state.text <- pattern;
1216 active, firstof active
1218 state.outline <- Some
(allowdel
, active, first
, outlines, pattern);
1219 Glut.postRedisplay
()
1221 | 14 when not allowdel
->
1222 let optoutlines = narrow outlines qsearch in
1223 begin match optoutlines with
1224 | None
-> state.text <- "can't narrow"
1226 state.outline <- Some
(allowdel
, 0, 0, outlines, qsearch);
1227 match state.outlines with
1229 | Oarray
a -> state.outlines <- Onarrow
(outlines, a)
1230 | Onarrow
(a, b) -> state.outlines <- Onarrow
(outlines, b)
1232 Glut.postRedisplay
()
1234 | 21 when not allowdel
->
1236 match state.outlines with
1239 let a = Array.of_list
(List.rev l
) in
1240 state.outlines <- Oarray
a;
1243 state.outlines <- Oarray
b;
1246 state.outline <- Some
(allowdel
, 0, 0, outline, qsearch);
1247 Glut.postRedisplay
()
1251 Some
(allowdel
, active, firstof active, outlines, qsearch);
1252 Glut.postRedisplay
()
1254 | 127 when allowdel
->
1255 let len = Array.length
outlines - 1 in
1258 state.outline <- None
;
1259 state.bookmarks <- [];
1262 let bookmarks = Array.init
len
1264 let i = if i >= active then i + 1 else i in
1275 Glut.postRedisplay
()
1277 | _
-> log "unknown key %d" key
1280 let keyboard ~key ~x ~
y =
1285 match state.outline with
1286 | None
-> viewkeyboard ~key ~x ~
y
1287 | Some
outline -> outlinekeyboard ~key ~x ~
y outline
1290 let special ~key ~x ~
y =
1291 match state.outline with
1293 begin match state.textentry with
1297 | Glut.KEY_F3
-> search state.searchpattern
true; state.y
1298 | Glut.KEY_UP
-> clamp (-conf.scrollincr
)
1299 | Glut.KEY_DOWN
-> clamp conf.scrollincr
1300 | Glut.KEY_PAGE_UP
-> clamp (-state.h
)
1301 | Glut.KEY_PAGE_DOWN
-> clamp state.h
1302 | Glut.KEY_HOME
-> addnav (); 0
1305 state.maxy - (if conf.maxhfit
then state.h
else 0)
1311 | Some
(c, s, Some
onhist, onkey
, ondone) ->
1314 | Glut.KEY_UP
-> onhist HCprev
1315 | Glut.KEY_DOWN
-> onhist HCnext
1316 | Glut.KEY_HOME
-> onhist HCfirst
1317 | Glut.KEY_END
-> onhist HClast
1320 state.textentry <- Some
(c, s, Some
onhist, onkey
, ondone);
1321 Glut.postRedisplay
()
1326 | Some
(allowdel
, active, first
, outlines, qsearch) ->
1327 let maxrows = maxoutlinerows () in
1329 let active = active + incr in
1330 let active = max
0 (min
active (Array.length
outlines - 1)) in
1334 let rows = active - first in
1335 if rows > maxrows then active - maxrows else first
1338 state.outline <- Some
(allowdel
, active, first, outlines, qsearch);
1339 Glut.postRedisplay
()
1342 | Glut.KEY_UP
-> navigate ~
-1
1343 | Glut.KEY_DOWN
-> navigate 1
1344 | Glut.KEY_PAGE_UP
-> navigate ~
-maxrows
1345 | Glut.KEY_PAGE_DOWN
-> navigate maxrows
1348 state.outline <- Some
(allowdel
, 0, 0, outlines, qsearch);
1349 Glut.postRedisplay
()
1352 let active = Array.length
outlines - 1 in
1353 let first = max
0 (active - maxrows) in
1354 state.outline <- Some
(allowdel
, active, first, outlines, qsearch);
1355 Glut.postRedisplay
()
1360 let drawplaceholder l
=
1361 GlDraw.color
(scalecolor 1.0);
1363 (0.0, float l
.pagedispy
)
1364 (float l
.pagew
, float (l
.pagedispy
+ l
.pagevh
))
1367 and y = float (l
.pagedispy
+ 13) in
1368 let font = Glut.BITMAP_8_BY_13
in
1369 GlDraw.color
(0.0, 0.0, 0.0);
1370 GlPix.raster_pos ~
x ~
y ();
1371 String.iter
(fun c -> Glut.bitmapCharacter ~
font ~
c:(Char.code
c))
1372 ("Loading " ^ string_of_int l
.pageno);
1375 let now () = Unix.gettimeofday
();;
1378 begin match getopaque l
.pageno with
1379 | Some
opaque when validopaque opaque ->
1380 if state.textentry = None
1381 then GlDraw.color
(scalecolor 1.0)
1382 else GlDraw.color
(scalecolor 0.4);
1384 draw l
.pagedispy l
.pagew l
.pagevh l
.pagey opaque;
1387 if conf.hlinks
then highlightlinks
opaque (l
.pagedispy
- l
.pagey);
1388 vlog "draw %f sec" d;
1393 GlDraw.color
(0.5, 0.5, 0.5);
1396 (float (state.w - conf.scrollw
), float (i + (l
.pagedispy
- i)))
1398 l
.pagedispy
+ l
.pagevh
;
1401 let scrollindicator () =
1402 let maxy = state.maxy - (if conf.maxhfit
then state.h
else 0) in
1403 GlDraw.color
(0.64 , 0.64, 0.64);
1405 (float (state.w - conf.scrollw
), 0.)
1406 (float state.w, float state.h
)
1408 GlDraw.color
(0.0, 0.0, 0.0);
1409 let sh = (float (maxy + state.h
) /. float state.h
) in
1410 let sh = float state.h
/. sh in
1411 let sh = max
sh (float conf.scrollh
) in
1414 if state.y = state.maxy
1416 else float state.y /. float maxy
1418 let position = (float state.h
-. sh) *. percent in
1421 if position +. sh > float state.h
1428 (float (state.w - conf.scrollw
), position)
1429 (float state.w, position +. sh)
1434 match state.mstate
with
1438 | Msel
((x0
, y0
), (x1
, y1
)) ->
1440 if (y0
>= l
.pagedispy
&& y0
<= (l
.pagedispy
+ l
.pagevh
))
1441 || ((y1
>= l
.pagedispy
))
1443 match getopaque l
.pageno with
1444 | Some
opaque when validopaque opaque ->
1445 let oy = -l
.pagey + l
.pagedispy
in
1446 seltext
opaque (x0
, y0
, x1
, y1
) oy
1449 List.iter
f state.layout
1454 GlDraw.color
(0.0, 0.0, 1.0) ~alpha
:0.5;
1455 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
1457 (fun (pageno, c, (x0
, y0
, x1
, y1
, x2
, y2
, x3
, y3
)) ->
1459 if l
.pageno = pageno
1461 let d = float (l
.pagedispy
- l
.pagey) in
1462 GlDraw.color
(0.0, 0.0, 1.0 /. float c) ~alpha
:0.5;
1463 GlDraw.begins `quads
;
1465 GlDraw.vertex2
(x0
, y0
+.d);
1466 GlDraw.vertex2
(x1
, y1
+.d);
1467 GlDraw.vertex2
(x2
, y2
+.d);
1468 GlDraw.vertex2
(x3
, y3
+.d);
1478 let showoutline = function
1480 | Some
(allowdel
, active, first, outlines, qsearch) ->
1482 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
1483 GlDraw.color
(0., 0., 0.) ~alpha
:0.85;
1484 GlDraw.rect
(0., 0.) (float state.w, float state.h
);
1487 GlDraw.color
(1., 1., 1.);
1488 let font = Glut.BITMAP_9_BY_15
in
1489 let draw_string x y s =
1490 GlPix.raster_pos ~
x ~
y ();
1491 String.iter
(fun c -> Glut.bitmapCharacter ~
font ~
c:(Char.code
c)) s
1494 if row
= Array.length
outlines || (row
- first) * 16 > state.h
1497 let (s, l
, _
, _
) = outlines.(row
) in
1498 let y = (row
- first) * 16 in
1503 GlDraw.polygon_mode `both `line
;
1504 GlFunc.blend_func `src_alpha `one_minus_src_alpha
;
1505 GlDraw.color
(1., 1., 1.) ~alpha
:0.9;
1506 GlDraw.rect
(0., float (y + 1))
1507 (float (state.w - conf.scrollw
- 1), float (y + 18));
1508 GlDraw.polygon_mode `both `fill
;
1510 GlDraw.color
(1., 1., 1.);
1512 draw_string (float x) (float (y + 16)) s;
1520 let lasty = List.fold_left
drawpage 0 (state.layout) in
1521 GlDraw.color
(scalecolor 0.5);
1524 (float (state.w - conf.scrollw
), float state.h
)
1529 showoutline state.outline;
1531 Glut.swapBuffers
();
1535 let rec f = function
1537 begin match getopaque l
.pageno with
1538 | Some
opaque when validopaque opaque ->
1539 let y = y - l
.pagedispy
in
1542 let y = l
.pagey + y in
1543 match getlink opaque x y with
1556 let mouse ~button ~bstate ~
x ~
y =
1558 | Glut.OTHER_BUTTON
n when n == 3 || n == 4 && bstate
= Glut.UP
->
1566 let incr = incr * 2 in
1567 let y = clamp incr in
1570 | Glut.LEFT_BUTTON
when state.outline = None
->
1571 let dest = if bstate
= Glut.DOWN
then getlink x y else LNone
in
1572 begin match dest with
1573 | LGoto
(pageno, top
) ->
1582 if bstate
= Glut.DOWN
1584 if state.rotate mod 360 = 0 then (
1585 Glut.setCursor
Glut.CURSOR_TEXT
;
1586 state.mstate
<- Msel
((x, y), (x, y));
1587 Glut.postRedisplay
()
1591 match state.mstate
with
1593 | Msel
((x0
, y0
), (x1
, y1
)) ->
1595 if (y0
>= l
.pagedispy
&& y0
<= (l
.pagedispy
+ l
.pagevh
))
1596 || ((y1
>= l
.pagedispy
))
1598 match getopaque l
.pageno with
1599 | Some
opaque when validopaque opaque ->
1603 List.iter
f state.layout;
1604 copysel
""; (* ugly *)
1605 Glut.setCursor
Glut.CURSOR_INHERIT
;
1606 state.mstate
<- Mnone
;
1613 let mouse ~button ~
state ~
x ~
y = mouse button
state x y;;
1616 if state.outline = None
1618 match state.mstate
with
1621 state.mstate
<- Msel
(a, (x, y));
1622 Glut.postRedisplay
()
1626 if state.outline = None
1628 match state.mstate
with
1630 if getlink x y != LNone
1631 then Glut.setCursor
Glut.CURSOR_INFO
1632 else Glut.setCursor
Glut.CURSOR_INHERIT
1641 if Sys.os_type
= "Win32"
1643 try Sys.getenv
"HOMEPATH" with Not_found
-> ""
1645 try Filename.concat
(Sys.getenv
"HOME") ".config" with Not_found
-> ""
1647 Filename.concat
home "llpp"
1651 let ic = open_in_bin
statepath in
1652 let hash = input_value
ic in
1658 prerr_endline
("Error loading state " ^
Printexc.to_string exn
)
1665 match state.fullscreen
with
1666 | None
-> state.w, state.h
1669 Hashtbl.replace
pstate state.path
(state.bookmarks, w, h
);
1670 let oc = open_out_bin
statepath in
1671 output_value
oc pstate
1675 prerr_endline
("Error saving state " ^
Printexc.to_string exn
)
1680 let statebookmarks, statew
, stateh
= Hashtbl.find
pstate state.path
in
1683 state.bookmarks <- statebookmarks;
1684 with Not_found
-> ()
1686 prerr_endline
("Error setting state " ^
Printexc.to_string exn
)
1689 Arg.parse
[] (fun s -> state.path
<- s) "options:";
1691 if String.length
state.path
= 0
1692 then (prerr_endline
"filename missing"; exit
1)
1697 let _ = Glut.init
Sys.argv
in
1698 let () = Glut.initDisplayMode ~depth
:false ~double_buffer
:true () in
1699 let () = Glut.initWindowSize
state.w state.h
in
1700 let _ = Glut.createWindow
("llpp " ^
Filename.basename
name) in
1703 if Sys.os_type
= "Unix"
1705 Unix.socketpair
Unix.PF_UNIX
Unix.SOCK_STREAM
0
1707 let addr = Unix.ADDR_INET
(Unix.inet_addr_loopback
, 1337) in
1708 let sock = Unix.socket
Unix.PF_INET
Unix.SOCK_STREAM
0 in
1709 Unix.setsockopt
sock Unix.SO_REUSEADDR
true;
1710 Unix.bind
sock addr;
1712 let csock = Unix.socket
Unix.PF_INET
Unix.SOCK_STREAM
0 in
1713 Unix.connect
csock addr;
1714 let ssock, _ = Unix.accept
sock in
1717 Unix.setsockopt
sock Unix.TCP_NODELAY
true;
1718 Unix.setsockopt_optint
sock Unix.SO_LINGER None
;
1722 at_exit
(fun () -> Unix.shutdown
ssock Unix.SHUTDOWN_ALL
);
1726 let () = Glut.displayFunc
display in
1727 let () = Glut.reshapeFunc
reshape in
1728 let () = Glut.keyboardFunc
keyboard in
1729 let () = Glut.specialFunc
special in
1730 let () = Glut.idleFunc
(Some
idle) in
1731 let () = Glut.mouseFunc
mouse in
1732 let () = Glut.motionFunc
motion in
1733 let () = Glut.passiveMotionFunc
pmotion in
1736 state.csock <- csock;
1737 state.ssock <- ssock;
1738 state.text <- "Opening " ^
name;
1739 writecmd csock ("open " ^
name ^
"\000");
1743 let rec handlelablglutbug () =
1746 with Glut.BadEnum
"key in special_of_int" ->
1747 showtext '
!'
" LablGlut bug: special key not recognized";
1748 Glut.swapBuffers
();
1749 handlelablglutbug ()
1751 handlelablglutbug ();