/usr/include/libgoffice-0.8/goffice/drawing/god-default-attributes.h is in libgoffice-0.8-dev 0.8.17-3.
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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* god-default-attributes.h: MS Office Graphic Object support
*
* Author:
* Michael Meeks (michael@ximian.com)
* Jody Goldberg (jody@gnome.org)
* Christopher James Lahey <clahey@ximian.com>
*
* (C) 1998-2003 Michael Meeks, Jody Goldberg, Chris Lahey
*/
#ifndef GOD_DEFAULT_ATTRIBUTES_H
#define GOD_DEFAULT_ATTRIBUTES_H
#include <glib-object.h>
#include <glib.h>
#include <goffice/drawing/god-paragraph-attributes.h>
G_BEGIN_DECLS
#define GOD_TYPE_DEFAULT_ATTRIBUTES (god_default_attributes_get_type ())
#define GOD_DEFAULT_ATTRIBUTES(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOD_TYPE_DEFAULT_ATTRIBUTES, GodDefaultAttributes))
#define GOD_DEFAULT_ATTRIBUTES_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GOD_TYPE_DEFAULT_ATTRIBUTES, GodDefaultAttributesClass))
#define GOD_DEFAULT_ATTRIBUTES_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GOD_TYPE_DEFAULT_ATTRIBUTES, GodDefaultAttributesClass))
#define GOD_IS_DEFAULT_ATTRIBUTES(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOD_TYPE_DEFAULT_ATTRIBUTES))
#define GOD_IS_DEFAULT_ATTRIBUTES_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GOD_TYPE_DEFAULT_ATTRIBUTES))
typedef struct GodDefaultAttributesPrivate_ GodDefaultAttributesPrivate;
typedef struct {
GObject parent;
GodDefaultAttributesPrivate *priv;
} GodDefaultAttributes;
typedef struct {
GObjectClass parent_class;
} GodDefaultAttributesClass;
GType god_default_attributes_get_type (void);
GodDefaultAttributes *god_default_attributes_new (void);
void god_default_attributes_set_paragraph_attributes (GodDefaultAttributes *attributes,
GodParagraphAttributes *paragraph_attributes);
void god_default_attributes_set_paragraph_attributes_for_indent (GodDefaultAttributes *attributes,
guint indent,
GodParagraphAttributes *paragraph_attributes);
void god_default_attributes_set_pango_attributes (GodDefaultAttributes *attributes,
GList *pango_attributes);
void god_default_attributes_set_pango_attributes_for_indent (GodDefaultAttributes *attributes,
guint indent,
GList *pango_attributes);
const GodParagraphAttributes *god_default_attributes_get_paragraph_attributes (GodDefaultAttributes *attributes);
const GodParagraphAttributes *god_default_attributes_get_paragraph_attributes_for_indent (GodDefaultAttributes *attributes,
guint indent);
const GList *god_default_attributes_get_pango_attributes (GodDefaultAttributes *attributes);
const GList *god_default_attributes_get_pango_attributes_for_indent (GodDefaultAttributes *attributes,
guint indent);
G_END_DECLS
#endif /* GOD_DEFAULT_ATTRIBUTES_H */
|