/usr/share/doc/racket/pict-snip/blueboxes.rktd is in racket-doc 6.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | 480
((3) 0 () 2 ((c (? . 1) q pict-snip%) (q lib "pict/snip.rkt")) () (h ! (equal) ((c meth c (c (? . 0) q write)) q (1837 . 3)) ((c meth c (c (? . 0) q get-extent)) q (189 . 17)) ((c def c (c (? . 1) q reader)) q (2028 . 2)) ((c meth c (c (? . 0) q copy)) q (1925 . 2)) ((c meth c (c (? . 0) q get-pict)) q (141 . 2)) ((c constructor c (? . 0)) q (51 . 3)) ((c def c (c (? . 1) q snipclass)) q (1985 . 2)) ((c def c (? . 0)) q (0 . 3)) ((c meth c (c (? . 0) q draw)) q (989 . 23))))
class
pict-snip% : class?
  superclass: snip%
constructor
(new pict-snip% [pict pict]) -> (is-a?/c pict-snip%)
  pict : pict?
method
(send a-pict-snip get-pict) -> pict?
method
(send a-pict-snip get-extent dc          
                             x           
                             y           
                             w           
                             h           
                             descent     
                             lspace      
                             rspace) -> void?
  dc : (is-a?/c dc<%>)
  x : real?
  y : real?
  w : (or/c (box/c (and/c real? (not/c negative?))) #f)
  h : (or/c (box/c (and/c real? (not/c negative?))) #f)
  descent : (or/c (box/c (and/c real? (not/c negative?))) #f)
  lspace : (or/c (box/c (and/c real? (not/c negative?))) #f)
  rspace : (or/c (box/c (and/c real? (not/c negative?))) #f)
method
(send a-pict-snip draw dc              
                       x               
                       y               
                       left            
                       top             
                       right           
                       bottom          
                       dx              
                       dy              
                       draw-caret) -> void?
  dc : (is-a?/c dc<%>)
  x : real?
  y : real?
  left : real?
  top : real?
  right : real?
  bottom : real?
  dx : real?
  dy : real?
  draw-caret : (or/c 'no-caret 'show-inactive-caret 'show-caret
                     (cons/c exact-nonnegative-integer?
                             exact-nonnegative-integer?))
method
(send a-pict-snip write f) -> void?
  f : (is-a?/c editor-stream-out%)
method
(send a-pict-snip copy) -> (is-a?/c pict-snip%)
value
snipclass : (is-a?/c snip-class%)
value
reader : (is-a?/c snip-reader<%>)
 |