This file is indexed.

/usr/include/d/gtkd-3/gtk/Plug.d is in libgtkd-3-dev 3.7.5-2build1.

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
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
 * This file is part of gtkD.
 *
 * gtkD is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 3
 * of the License, or (at your option) any later version, with
 * some exceptions, please read the COPYING file.
 *
 * gtkD 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with gtkD; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
 */

// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage


module gtk.Plug;

private import gdk.Display;
private import gdk.Window : GdkWin = Window;
private import glib.ConstructionException;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Widget;
private import gtk.Window;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;
private import std.algorithm;


/**
 * Together with #GtkSocket, #GtkPlug provides the ability to embed
 * widgets from one process into another process in a fashion that is
 * transparent to the user. One process creates a #GtkSocket widget
 * and passes the ID of that widget’s window to the other process,
 * which then creates a #GtkPlug with that window ID. Any widgets
 * contained in the #GtkPlug then will appear inside the first
 * application’s window.
 * 
 * The communication between a #GtkSocket and a #GtkPlug follows the
 * [XEmbed Protocol](http://www.freedesktop.org/Standards/xembed-spec).
 * This protocol has also been implemented in other toolkits, e.g. Qt,
 * allowing the same level of integration when embedding a Qt widget
 * in GTK+ or vice versa.
 * 
 * The #GtkPlug and #GtkSocket widgets are only available when GTK+
 * is compiled for the X11 platform and %GDK_WINDOWING_X11 is defined.
 * They can only be used on a #GdkX11Display. To use #GtkPlug and
 * #GtkSocket, you need to include the `gtk/gtkx.h` header.
 */
public class Plug : Window
{
	/** the main Gtk struct */
	protected GtkPlug* gtkPlug;

	/** Get the main Gtk struct */
	public GtkPlug* getPlugStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkPlug;
	}

	/** the main Gtk struct as a void* */
	protected override void* getStruct()
	{
		return cast(void*)gtkPlug;
	}

	protected override void setStruct(GObject* obj)
	{
		gtkPlug = cast(GtkPlug*)obj;
		super.setStruct(obj);
	}

	/**
	 * Sets our main struct and passes it to the parent class.
	 */
	public this (GtkPlug* gtkPlug, bool ownedRef = false)
	{
		this.gtkPlug = gtkPlug;
		super(cast(GtkWindow*)gtkPlug, ownedRef);
	}


	/** */
	public static GType getType()
	{
		return gtk_plug_get_type();
	}

	/**
	 * Creates a new plug widget inside the #GtkSocket identified
	 * by @socket_id. If @socket_id is 0, the plug is left “unplugged” and
	 * can later be plugged into a #GtkSocket by  gtk_socket_add_id().
	 *
	 * Params:
	 *     socketId = the window ID of the socket, or 0.
	 *
	 * Returns: the new #GtkPlug widget.
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(ulong socketId)
	{
		auto p = gtk_plug_new(socketId);

		if(p is null)
		{
			throw new ConstructionException("null returned by new");
		}

		this(cast(GtkPlug*) p);
	}

	/**
	 * Create a new plug widget inside the #GtkSocket identified by socket_id.
	 *
	 * Params:
	 *     display = the #GdkDisplay on which @socket_id is displayed
	 *     socketId = the XID of the socket’s window.
	 *
	 * Returns: the new #GtkPlug widget.
	 *
	 * Since: 2.2
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(Display display, ulong socketId)
	{
		auto p = gtk_plug_new_for_display((display is null) ? null : display.getDisplayStruct(), socketId);

		if(p is null)
		{
			throw new ConstructionException("null returned by new_for_display");
		}

		this(cast(GtkPlug*) p);
	}

	/**
	 * Finish the initialization of @plug for a given #GtkSocket identified by
	 * @socket_id. This function will generally only be used by classes deriving from #GtkPlug.
	 *
	 * Params:
	 *     socketId = the XID of the socket’s window.
	 */
	public void construct(ulong socketId)
	{
		gtk_plug_construct(gtkPlug, socketId);
	}

	/**
	 * Finish the initialization of @plug for a given #GtkSocket identified by
	 * @socket_id which is currently displayed on @display.
	 * This function will generally only be used by classes deriving from #GtkPlug.
	 *
	 * Params:
	 *     display = the #GdkDisplay associated with @socket_id’s
	 *         #GtkSocket.
	 *     socketId = the XID of the socket’s window.
	 *
	 * Since: 2.2
	 */
	public void constructForDisplay(Display display, ulong socketId)
	{
		gtk_plug_construct_for_display(gtkPlug, (display is null) ? null : display.getDisplayStruct(), socketId);
	}

	/**
	 * Determines whether the plug is embedded in a socket.
	 *
	 * Returns: %TRUE if the plug is embedded in a socket
	 *
	 * Since: 2.14
	 */
	public bool getEmbedded()
	{
		return gtk_plug_get_embedded(gtkPlug) != 0;
	}

	/**
	 * Gets the window ID of a #GtkPlug widget, which can then
	 * be used to embed this window inside another window, for
	 * instance with gtk_socket_add_id().
	 *
	 * Returns: the window ID for the plug
	 */
	public ulong getId()
	{
		return gtk_plug_get_id(gtkPlug);
	}

	/**
	 * Retrieves the socket the plug is embedded in.
	 *
	 * Returns: the window of the socket, or %NULL
	 *
	 * Since: 2.14
	 */
	public GdkWin getSocketWindow()
	{
		auto p = gtk_plug_get_socket_window(gtkPlug);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(GdkWin)(cast(GdkWindow*) p);
	}

	protected class OnEmbeddedDelegateWrapper
	{
		void delegate(Plug) dlg;
		gulong handlerId;

		this(void delegate(Plug) dlg)
		{
			this.dlg = dlg;
			onEmbeddedListeners ~= this;
		}

		void remove(OnEmbeddedDelegateWrapper source)
		{
			foreach(index, wrapper; onEmbeddedListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onEmbeddedListeners[index] = null;
					onEmbeddedListeners = std.algorithm.remove(onEmbeddedListeners, index);
					break;
				}
			}
		}
	}
	OnEmbeddedDelegateWrapper[] onEmbeddedListeners;

	/**
	 * Gets emitted when the plug becomes embedded in a socket.
	 */
	gulong addOnEmbedded(void delegate(Plug) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnEmbeddedDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"embedded",
			cast(GCallback)&callBackEmbedded,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackEmbeddedDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackEmbedded(GtkPlug* plugStruct, OnEmbeddedDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackEmbeddedDestroy(OnEmbeddedDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}
}