This file is indexed.

/usr/lib/ocaml/lablgtk2-extras/gmylist.mli is in liblablgtk-extras-ocaml-dev 1.4-2+b2.

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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(*********************************************************************************)
(*                Lablgtk-extras                                                 *)
(*                                                                               *)
(*    Copyright (C) 2011 Institut National de Recherche en Informatique          *)
(*    et en Automatique. All rights reserved.                                    *)
(*                                                                               *)
(*    This program is free software; you can redistribute it and/or modify       *)
(*    it under the terms of the GNU Library General Public License as            *)
(*    published by the Free Software Foundation; either version 2 of the         *)
(*    License, or any later version.                                             *)
(*                                                                               *)
(*    This program is distributed in the hope that it will be useful,            *)
(*    but WITHOUT ANY WARRANTY; without even the implied warranty of             *)
(*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *)
(*    GNU Library General Public License for more details.                       *)
(*                                                                               *)
(*    You should have received a copy of the GNU Library General Public          *)
(*    License along with this program; if not, write to the Free Software        *)
(*    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA                   *)
(*    02111-1307  USA                                                            *)
(*                                                                               *)
(*    Contact: Maxence.Guesdon@inria.fr                                          *)
(*                                                                               *)
(*                                                                               *)
(*********************************************************************************)

(** Convenient class to use multicolumn list.

   @cgname Gmylist
   @version 1.0
   @author Maxence Guesdon
*)

type 'a content =
  String of ('a -> string)
  | Pixbuf of ('a -> GdkPixbuf.pixbuf option)
  | Check of (('a -> bool) * ('a -> bool -> bool))
;;

type 'a col_desc = string option * 'a content

class virtual ['a] plist :
  Gtk.Tags.selection_mode ->
  (string option * 'a content) list ->
  bool ->
  object
    val mutable current_sort : int
    val mutable view : GTree.view
    method box : GObj.widget
    method compare : 'a -> 'a -> int
    method private connect_events : unit
    method insert : ?row: Gtk.tree_iter -> 'a -> unit
    method menu : GToolbox.menu_entry list
    method on_deselect : 'a -> unit
    method on_double_click : 'a -> unit
    method on_enter : unit -> unit
    method on_select : 'a -> unit
    method selection : 'a list
    method set_titles : string list -> unit
    method private sort : 'a list -> 'a list
    method update_data : 'a list -> unit
    method view : GTree.view

    method up_selected : unit
    method down_selected : unit
    method copy_selected : ('a list -> unit) -> unit
    method cut_selected : ('a list -> unit) -> unit
    method delete_selected : unit
    method paste_where_selected : 'a list -> unit
    method edit_first_selected : ('a -> 'a) -> unit
    method content : 'a list

    method init_cols_display :
	cols: GTree.view_column list ->
	  datacol: 'a GTree.column ->
	    renderer: GTree.cell_renderer_text -> GTree.list_store -> unit
  end