This file is indexed.

/usr/include/d/gtkd-3/gtk/Frame.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
/*
 * 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.Frame;

private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gtk.Bin;
private import gtk.Widget;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;


/**
 * The frame widget is a bin that surrounds its child with a decorative
 * frame and an optional label. If present, the label is drawn in a gap
 * in the top side of the frame. The position of the label can be
 * controlled with gtk_frame_set_label_align().
 * 
 * # GtkFrame as GtkBuildable
 * 
 * The GtkFrame implementation of the GtkBuildable interface supports
 * placing a child in the label position by specifying “label” as the
 * “type” attribute of a <child> element. A normal content child can
 * be specified without specifying a <child> type attribute.
 * 
 * An example of a UI definition fragment with GtkFrame:
 * |[
 * <object class="GtkFrame">
 * <child type="label">
 * <object class="GtkLabel" id="frame-label"/>
 * </child>
 * <child>
 * <object class="GtkEntry" id="frame-content"/>
 * </child>
 * </object>
 * ]|
 * 
 * # CSS nodes
 * 
 * |[<!-- language="plain" -->
 * frame
 * ├── border[.flat]
 * ├── <label widget>
 * ╰── <child>
 * ]|
 * 
 * GtkFrame has a main CSS node named “frame” and a subnode named “border”. The
 * “border” node is used to draw the visible border. You can set the appearance
 * of the border using CSS properties like “border-style” on the “border” node.
 * 
 * The border node can be given the style class “.flat”, which is used by themes
 * to disable drawing of the border. To do this from code, call
 * gtk_frame_set_shadow_type() with %GTK_SHADOW_NONE to add the “.flat” class or
 * any other shadow type to remove it.
 */
public class Frame : Bin
{
	/** the main Gtk struct */
	protected GtkFrame* gtkFrame;

	/** Get the main Gtk struct */
	public GtkFrame* getFrameStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkFrame;
	}

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

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

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

	/**
	 * Creates frame with label and set it's child widget
	 */
	public this(Widget widget, string label)
	{
		this(label);
		add(widget);
	}

	/**
	 */

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

	/**
	 * Creates a new #GtkFrame, with optional label @label.
	 * If @label is %NULL, the label is omitted.
	 *
	 * Params:
	 *     label = the text to use as the label of the frame
	 *
	 * Returns: a new #GtkFrame widget
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(string label)
	{
		auto p = gtk_frame_new(Str.toStringz(label));

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

		this(cast(GtkFrame*) p);
	}

	/**
	 * If the frame’s label widget is a #GtkLabel, returns the
	 * text in the label widget. (The frame will have a #GtkLabel
	 * for the label widget if a non-%NULL argument was passed
	 * to gtk_frame_new().)
	 *
	 * Returns: the text in the label, or %NULL if there
	 *     was no label widget or the lable widget was not
	 *     a #GtkLabel. This string is owned by GTK+ and
	 *     must not be modified or freed.
	 */
	public string getLabel()
	{
		return Str.toString(gtk_frame_get_label(gtkFrame));
	}

	/**
	 * Retrieves the X and Y alignment of the frame’s label. See
	 * gtk_frame_set_label_align().
	 *
	 * Params:
	 *     xalign = location to store X alignment of
	 *         frame’s label, or %NULL
	 *     yalign = location to store X alignment of
	 *         frame’s label, or %NULL
	 */
	public void getLabelAlign(out float xalign, out float yalign)
	{
		gtk_frame_get_label_align(gtkFrame, &xalign, &yalign);
	}

	/**
	 * Retrieves the label widget for the frame. See
	 * gtk_frame_set_label_widget().
	 *
	 * Returns: the label widget, or %NULL if
	 *     there is none.
	 */
	public Widget getLabelWidget()
	{
		auto p = gtk_frame_get_label_widget(gtkFrame);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Widget)(cast(GtkWidget*) p);
	}

	/**
	 * Retrieves the shadow type of the frame. See
	 * gtk_frame_set_shadow_type().
	 *
	 * Returns: the current shadow type of the frame.
	 */
	public GtkShadowType getShadowType()
	{
		return gtk_frame_get_shadow_type(gtkFrame);
	}

	/**
	 * Removes the current #GtkFrame:label-widget. If @label is not %NULL, creates a
	 * new #GtkLabel with that text and adds it as the #GtkFrame:label-widget.
	 *
	 * Params:
	 *     label = the text to use as the label of the frame
	 */
	public void setLabel(string label)
	{
		gtk_frame_set_label(gtkFrame, Str.toStringz(label));
	}

	/**
	 * Sets the alignment of the frame widget’s label. The
	 * default values for a newly created frame are 0.0 and 0.5.
	 *
	 * Params:
	 *     xalign = The position of the label along the top edge
	 *         of the widget. A value of 0.0 represents left alignment;
	 *         1.0 represents right alignment.
	 *     yalign = The y alignment of the label. A value of 0.0 aligns under
	 *         the frame; 1.0 aligns above the frame. If the values are exactly
	 *         0.0 or 1.0 the gap in the frame won’t be painted because the label
	 *         will be completely above or below the frame.
	 */
	public void setLabelAlign(float xalign, float yalign)
	{
		gtk_frame_set_label_align(gtkFrame, xalign, yalign);
	}

	/**
	 * Sets the #GtkFrame:label-widget for the frame. This is the widget that
	 * will appear embedded in the top edge of the frame as a title.
	 *
	 * Params:
	 *     labelWidget = the new label widget
	 */
	public void setLabelWidget(Widget labelWidget)
	{
		gtk_frame_set_label_widget(gtkFrame, (labelWidget is null) ? null : labelWidget.getWidgetStruct());
	}

	/**
	 * Sets the #GtkFrame:shadow-type for @frame, i.e. whether it is drawn without
	 * (%GTK_SHADOW_NONE) or with (other values) a visible border. Values other than
	 * %GTK_SHADOW_NONE are treated identically by GtkFrame. The chosen type is
	 * applied by removing or adding the .flat class to the CSS node named border.
	 *
	 * Params:
	 *     type = the new #GtkShadowType
	 */
	public void setShadowType(GtkShadowType type)
	{
		gtk_frame_set_shadow_type(gtkFrame, type);
	}
}