This file is indexed.

/usr/include/d/gtkd-3/gtk/PrintContext.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
 * 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.PrintContext;

private import cairo.Context;
private import gobject.ObjectG;
private import gtk.PageSetup;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;
private import pango.PgContext;
private import pango.PgFontMap;
private import pango.PgLayout;


/**
 * A GtkPrintContext encapsulates context information that is required when
 * drawing pages for printing, such as the cairo context and important
 * parameters like page size and resolution. It also lets you easily
 * create #PangoLayout and #PangoContext objects that match the font metrics
 * of the cairo surface.
 * 
 * GtkPrintContext objects gets passed to the #GtkPrintOperation::begin-print,
 * #GtkPrintOperation::end-print, #GtkPrintOperation::request-page-setup and
 * #GtkPrintOperation::draw-page signals on the #GtkPrintOperation.
 * 
 * ## Using GtkPrintContext in a #GtkPrintOperation::draw-page callback
 * 
 * |[<!-- language="C" -->
 * static void
 * draw_page (GtkPrintOperation *operation,
 * GtkPrintContext   *context,
 * int                page_nr)
 * {
 * cairo_t *cr;
 * PangoLayout *layout;
 * PangoFontDescription *desc;
 * 
 * cr = gtk_print_context_get_cairo_context (context);
 * 
 * // Draw a red rectangle, as wide as the paper (inside the margins)
 * cairo_set_source_rgb (cr, 1.0, 0, 0);
 * cairo_rectangle (cr, 0, 0, gtk_print_context_get_width (context), 50);
 * 
 * cairo_fill (cr);
 * 
 * // Draw some lines
 * cairo_move_to (cr, 20, 10);
 * cairo_line_to (cr, 40, 20);
 * cairo_arc (cr, 60, 60, 20, 0, M_PI);
 * cairo_line_to (cr, 80, 20);
 * 
 * cairo_set_source_rgb (cr, 0, 0, 0);
 * cairo_set_line_width (cr, 5);
 * cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
 * cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
 * 
 * cairo_stroke (cr);
 * 
 * // Draw some text
 * layout = gtk_print_context_create_layout (context);
 * pango_layout_set_text (layout, "Hello World! Printing is easy", -1);
 * desc = pango_font_description_from_string ("sans 28");
 * pango_layout_set_font_description (layout, desc);
 * pango_font_description_free (desc);
 * 
 * cairo_move_to (cr, 30, 20);
 * pango_cairo_layout_path (cr, layout);
 * 
 * // Font Outline
 * cairo_set_source_rgb (cr, 0.93, 1.0, 0.47);
 * cairo_set_line_width (cr, 0.5);
 * cairo_stroke_preserve (cr);
 * 
 * // Font Fill
 * cairo_set_source_rgb (cr, 0, 0.0, 1.0);
 * cairo_fill (cr);
 * 
 * g_object_unref (layout);
 * }
 * ]|
 * 
 * Printing support was added in GTK+ 2.10.
 */
public class PrintContext : ObjectG
{
	/** the main Gtk struct */
	protected GtkPrintContext* gtkPrintContext;

	/** Get the main Gtk struct */
	public GtkPrintContext* getPrintContextStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkPrintContext;
	}

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

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

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


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

	/**
	 * Creates a new #PangoContext that can be used with the
	 * #GtkPrintContext.
	 *
	 * Returns: a new Pango context for @context
	 *
	 * Since: 2.10
	 */
	public PgContext createPangoContext()
	{
		auto p = gtk_print_context_create_pango_context(gtkPrintContext);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(PgContext)(cast(PangoContext*) p, true);
	}

	/**
	 * Creates a new #PangoLayout that is suitable for use
	 * with the #GtkPrintContext.
	 *
	 * Returns: a new Pango layout for @context
	 *
	 * Since: 2.10
	 */
	public PgLayout createPangoLayout()
	{
		auto p = gtk_print_context_create_pango_layout(gtkPrintContext);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(PgLayout)(cast(PangoLayout*) p, true);
	}

	/**
	 * Obtains the cairo context that is associated with the
	 * #GtkPrintContext.
	 *
	 * Returns: the cairo context of @context
	 *
	 * Since: 2.10
	 */
	public Context getCairoContext()
	{
		auto p = gtk_print_context_get_cairo_context(gtkPrintContext);

		if(p is null)
		{
			return null;
		}

		return new Context(cast(cairo_t*) p);
	}

	/**
	 * Obtains the horizontal resolution of the #GtkPrintContext,
	 * in dots per inch.
	 *
	 * Returns: the horizontal resolution of @context
	 *
	 * Since: 2.10
	 */
	public double getDpiX()
	{
		return gtk_print_context_get_dpi_x(gtkPrintContext);
	}

	/**
	 * Obtains the vertical resolution of the #GtkPrintContext,
	 * in dots per inch.
	 *
	 * Returns: the vertical resolution of @context
	 *
	 * Since: 2.10
	 */
	public double getDpiY()
	{
		return gtk_print_context_get_dpi_y(gtkPrintContext);
	}

	/**
	 * Obtains the hardware printer margins of the #GtkPrintContext, in units.
	 *
	 * Params:
	 *     top = top hardware printer margin
	 *     bottom = bottom hardware printer margin
	 *     left = left hardware printer margin
	 *     right = right hardware printer margin
	 *
	 * Returns: %TRUE if the hard margins were retrieved
	 *
	 * Since: 2.20
	 */
	public bool getHardMargins(out double top, out double bottom, out double left, out double right)
	{
		return gtk_print_context_get_hard_margins(gtkPrintContext, &top, &bottom, &left, &right) != 0;
	}

	/**
	 * Obtains the height of the #GtkPrintContext, in pixels.
	 *
	 * Returns: the height of @context
	 *
	 * Since: 2.10
	 */
	public double getHeight()
	{
		return gtk_print_context_get_height(gtkPrintContext);
	}

	/**
	 * Obtains the #GtkPageSetup that determines the page
	 * dimensions of the #GtkPrintContext.
	 *
	 * Returns: the page setup of @context
	 *
	 * Since: 2.10
	 */
	public PageSetup getPageSetup()
	{
		auto p = gtk_print_context_get_page_setup(gtkPrintContext);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(PageSetup)(cast(GtkPageSetup*) p);
	}

	/**
	 * Returns a #PangoFontMap that is suitable for use
	 * with the #GtkPrintContext.
	 *
	 * Returns: the font map of @context
	 *
	 * Since: 2.10
	 */
	public PgFontMap getPangoFontmap()
	{
		auto p = gtk_print_context_get_pango_fontmap(gtkPrintContext);

		if(p is null)
		{
			return null;
		}

		return ObjectG.getDObject!(PgFontMap)(cast(PangoFontMap*) p);
	}

	/**
	 * Obtains the width of the #GtkPrintContext, in pixels.
	 *
	 * Returns: the width of @context
	 *
	 * Since: 2.10
	 */
	public double getWidth()
	{
		return gtk_print_context_get_width(gtkPrintContext);
	}

	/**
	 * Sets a new cairo context on a print context.
	 *
	 * This function is intended to be used when implementing
	 * an internal print preview, it is not needed for printing,
	 * since GTK+ itself creates a suitable cairo context in that
	 * case.
	 *
	 * Params:
	 *     cr = the cairo context
	 *     dpiX = the horizontal resolution to use with @cr
	 *     dpiY = the vertical resolution to use with @cr
	 *
	 * Since: 2.10
	 */
	public void setCairoContext(Context cr, double dpiX, double dpiY)
	{
		gtk_print_context_set_cairo_context(gtkPrintContext, (cr is null) ? null : cr.getContextStruct(), dpiX, dpiY);
	}
}