This file is indexed.

/usr/share/idl/bonobo-2.0/Bonobo_Embeddable.idl is in libbonobo2-common 2.32.1-0ubuntu1.

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
78
79
80
81
/*
 * bonobo-embeddable.idl: handles embeddable components
 *
 *   An Embeddable is an object that can be used inside
 * an office productivity application; it is part of a
 * compound document. Mostly people will want to implement
 * the Control interface for their application first.
 *
 * Copyright (C) 1999, 2000  Helix Code, Inc.
 *
 * Authors:
 *	Miguel de Icaza (miguel@helixcode.com)
 *	Nat Friedman    (nat@helixcode.com)
 */

#ifndef BONOBO_EMBEDDABLE_IDL
#define BONOBO_EMBEDDABLE_IDL

#include "Bonobo_Unknown.idl"
#include "Bonobo_Control.idl"
#include "Bonobo_Canvas.idl"

module Bonobo {

interface ControlFactory : Bonobo::Unknown {

	/**
	 * createControl:
	 * @uic: UIContainer interface to merge UI elements with.
	 *
	 * Returns: a Control which serves as a Component View.
	 * 
	 * This method can be used to produce multiple View instances
	 * for a given Component.
	 */
	Control	createControl (in ControlFrame frame, in UIContainer uic);

	void unImplemented1 ();
	void unImplemented2 ();
};

interface CanvasComponentFactory : Bonobo::Unknown {

	/**
	 * createCanvasComponent:
	 * @aa: Whether the item is anti-aliased
	 * @proxy: The Proxy used to notify of requested updates.
	 *
	 * Returns a Bonobo::Canvas::Component interface
	 * 
	 * This method can be used to produce multiple Canvas-based
	 * view instances for a given component.
	 */
	Canvas::Component createCanvasComponent (
					in boolean aa,
					in Canvas::ComponentProxy proxy);

	void unImplemented1 ();
	void unImplemented2 ();
};

interface Embeddable : Bonobo::Unknown {

	/**
	 * properties:
	 * 
	 * double ZoomFactor;
	 */

	void unImplemented1 ();
	void unImplemented2 ();
	void unImplemented3 ();
	void unImplemented4 ();
	void unImplemented5 ();
	void unImplemented6 ();
	void unImplemented7 ();
	void unImplemented8 ();
};
};

#endif /* BONOBO_EMBEDDABLE_IDL */