This file is indexed.

/usr/include/libgnomeprint-2.2/libgnomeprint/gnome-print-pango.h is in libgnomeprint2.2-dev 2.18.8-3ubuntu1.

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
/* 
 * gnome-print-pango.h
 *
 * Copyright (C) 2003 Jean Brefort <jean.brefort@ac-dijon.fr>
 * Copyright (C) 2004 Red Hat, Inc.
 *
 * Developed by Jean Brefort <jean.brefort@ac-dijon.fr>
 * Rewritten by Owen Taylor <otaylor@redhat.com>
 *
 * This library 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 2.1 of the License, or (at your option) any later version.
 *
 * This library 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 this library; if not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA  02111-1307, USA.
 */

#ifndef GNOME_PRINT_PANGO_H
#define GNOME_PRINT_PANGO_H

#include <libgnomeprint/gnome-print.h>
#include <pango/pango.h>

G_BEGIN_DECLS

PangoFontMap *gnome_print_pango_font_map_new         (void);
PangoFontMap *gnome_print_pango_get_default_font_map (void);
PangoContext *gnome_print_pango_create_context       (PangoFontMap      *fontmap);
void          gnome_print_pango_update_context       (PangoContext      *context,
						      GnomePrintContext *gpc);
PangoLayout  *gnome_print_pango_create_layout        (GnomePrintContext *gpc);

void gnome_print_pango_glyph_string (GnomePrintContext *gpc, PangoFont *font, PangoGlyphString *glyphs);
void gnome_print_pango_layout_line (GnomePrintContext *gpc, PangoLayoutLine *line);
void gnome_print_pango_layout      (GnomePrintContext *gpc, PangoLayout *layout);


/* Deprecated interface
 */
void gnome_print_pango_layout_print (GnomePrintContext *gpc, PangoLayout* pl);

G_END_DECLS

#endif