This file is indexed.

/usr/include/libbonoboui-2.0/bonobo/bonobo-canvas-item.h is in libbonoboui2-dev 2.24.5-3ubuntu1.

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
/**
 * bonobo-canvas-item.h: Canvas item implementation for embedding remote 
 * 			 canvas-items
 *
 * Author:
 *     Miguel de Icaza (miguel@kernel.org)
 *
 * (C) 1999, 2000 Helix Code, Inc.
 */
#ifndef _BONOBO_CANVAS_ITEM_H_
#define _BONOBO_CANVAS_ITEM_H_

#include <glib.h>
#include <libgnomecanvas/gnome-canvas.h>

#ifndef BONOBO_UI_DISABLE_DEPRECATED

G_BEGIN_DECLS

#define BONOBO_TYPE_CANVAS_ITEM          (bonobo_canvas_item_get_type ())
#define BONOBO_CANVAS_ITEM(obj)          (G_TYPE_CHECK_INSTANCE_CAST((obj), bonobo_canvas_item_get_type (), BonoboCanvasItem))
#define BONOBO_CANVAS_ITEM_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST ((k), bonobo_canvas_item_get_type (), BonoboCanvasItemClass))
#define BONOBO_IS_CANVAS_ITEM(o)         (G_TYPE_CHECK_INSTANCE_TYPE((o), bonobo_canvas_item_get_type ()))

typedef struct _BonoboCanvasItemPrivate BonoboCanvasItemPrivate;
typedef struct _BonoboCanvasItem        BonoboCanvasItem;

struct _BonoboCanvasItem {
	GnomeCanvasItem         canvas_item;
	BonoboCanvasItemPrivate *priv;
};

typedef struct {
	GnomeCanvasItemClass parent_class;
} BonoboCanvasItemClass;

GType bonobo_canvas_item_get_type   (void) G_GNUC_CONST;
void  bonobo_canvas_item_set_bounds (BonoboCanvasItem *item,
				     double x1, double y1,
				     double x2, double y2);

G_END_DECLS

#endif /* BONOBO_UI_DISABLE_DEPRECATED */

#endif /* _BONOBO_CANVAS_ITEM_H_ */