This file is indexed.

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

private import cairo.Pattern;
private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gtk.StyleContext;
private import gtk.StyleProperties;
private import gtk.SymbolicColor;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;
private import gtkd.Loader;


/**
 * GtkGradient is a boxed type that represents a gradient.
 * It is the result of parsing a
 * [gradient expression][gtkcssprovider-gradients].
 * To obtain the gradient represented by a GtkGradient, it has to
 * be resolved with gtk_gradient_resolve(), which replaces all
 * symbolic color references by the colors they refer to (in a given
 * context) and constructs a #cairo_pattern_t value.
 * 
 * It is not normally necessary to deal directly with #GtkGradients,
 * since they are mostly used behind the scenes by #GtkStyleContext and
 * #GtkCssProvider.
 * 
 * #GtkGradient is deprecated. It was used internally by GTK’s CSS engine
 * to represent gradients. As its handling is not conforming to modern
 * web standards, it is not used anymore. If you want to use gradients in
 * your own code, please use Cairo directly.
 */
public class Gradient
{
	/** the main Gtk struct */
	protected GtkGradient* gtkGradient;
	protected bool ownedRef;

	/** Get the main Gtk struct */
	public GtkGradient* getGradientStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkGradient;
	}

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

	/**
	 * Sets our main struct and passes it to the parent class.
	 */
	public this (GtkGradient* gtkGradient, bool ownedRef = false)
	{
		this.gtkGradient = gtkGradient;
		this.ownedRef = ownedRef;
	}

	~this ()
	{
		if ( Linker.isLoaded(LIBRARY_GTK) && ownedRef )
			gtk_gradient_unref(gtkGradient);
	}


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

	/**
	 * Creates a new linear gradient along the line defined by (x0, y0) and (x1, y1). Before using the gradient
	 * a number of stop colors must be added through gtk_gradient_add_color_stop().
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Params:
	 *     x0 = X coordinate of the starting point
	 *     y0 = Y coordinate of the starting point
	 *     x1 = X coordinate of the end point
	 *     y1 = Y coordinate of the end point
	 *
	 * Returns: A newly created #GtkGradient
	 *
	 * Since: 3.0
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(double x0, double y0, double x1, double y1)
	{
		auto p = gtk_gradient_new_linear(x0, y0, x1, y1);

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

		this(cast(GtkGradient*) p);
	}

	/**
	 * Creates a new radial gradient along the two circles defined by (x0, y0, radius0) and
	 * (x1, y1, radius1). Before using the gradient a number of stop colors must be added
	 * through gtk_gradient_add_color_stop().
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Params:
	 *     x0 = X coordinate of the start circle
	 *     y0 = Y coordinate of the start circle
	 *     radius0 = radius of the start circle
	 *     x1 = X coordinate of the end circle
	 *     y1 = Y coordinate of the end circle
	 *     radius1 = radius of the end circle
	 *
	 * Returns: A newly created #GtkGradient
	 *
	 * Since: 3.0
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(double x0, double y0, double radius0, double x1, double y1, double radius1)
	{
		auto p = gtk_gradient_new_radial(x0, y0, radius0, x1, y1, radius1);

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

		this(cast(GtkGradient*) p);
	}

	/**
	 * Adds a stop color to @gradient.
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Params:
	 *     offset = offset for the color stop
	 *     color = color to use
	 *
	 * Since: 3.0
	 */
	public void addColorStop(double offset, SymbolicColor color)
	{
		gtk_gradient_add_color_stop(gtkGradient, offset, (color is null) ? null : color.getSymbolicColorStruct());
	}

	/**
	 * Increases the reference count of @gradient.
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Returns: The same @gradient
	 *
	 * Since: 3.0
	 */
	public Gradient doref()
	{
		auto p = gtk_gradient_ref(gtkGradient);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(Gradient)(cast(GtkGradient*) p, true);
	}

	/**
	 * If @gradient is resolvable, @resolved_gradient will be filled in
	 * with the resolved gradient as a cairo_pattern_t, and %TRUE will
	 * be returned. Generally, if @gradient can’t be resolved, it is
	 * due to it being defined on top of a named color that doesn't
	 * exist in @props.
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Params:
	 *     props = #GtkStyleProperties to use when resolving named colors
	 *     resolvedGradient = return location for the resolved pattern
	 *
	 * Returns: %TRUE if the gradient has been resolved
	 *
	 * Since: 3.0
	 */
	public bool resolve(StyleProperties props, out Pattern resolvedGradient)
	{
		cairo_pattern_t* outresolvedGradient = null;

		auto p = gtk_gradient_resolve(gtkGradient, (props is null) ? null : props.getStylePropertiesStruct(), &outresolvedGradient) != 0;

		resolvedGradient = new Pattern(outresolvedGradient);

		return p;
	}

	/** */
	public Pattern resolveForContext(StyleContext context)
	{
		auto p = gtk_gradient_resolve_for_context(gtkGradient, (context is null) ? null : context.getStyleContextStruct());

		if(p is null)
		{
			return null;
		}

		return new Pattern(cast(cairo_pattern_t*) p);
	}

	/**
	 * Creates a string representation for @gradient that is suitable
	 * for using in GTK CSS files.
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Returns: A string representation for @gradient
	 */
	public override string toString()
	{
		auto retStr = gtk_gradient_to_string(gtkGradient);

		scope(exit) Str.freeString(retStr);
		return Str.toString(retStr);
	}

	/**
	 * Decreases the reference count of @gradient, freeing its memory
	 * if the reference count reaches 0.
	 *
	 * Deprecated: #GtkGradient is deprecated.
	 *
	 * Since: 3.0
	 */
	public void unref()
	{
		gtk_gradient_unref(gtkGradient);
	}
}