/usr/include/evolution-data-server-3.2/libedataserver/e-source-group.h is in libedataserver1.2-dev 3.2.3-0ubuntu6.
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 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-source-group.h
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* Author: Ettore Perazzoli <ettore@ximian.com>
*/
#ifndef E_SOURCE_GROUP_H
#define E_SOURCE_GROUP_H
#include <libxml/tree.h>
#include <libedataserver/e-source.h>
/* Standard GObject macros */
#define E_TYPE_SOURCE_GROUP \
(e_source_group_get_type ())
#define E_SOURCE_GROUP(obj) \
(G_TYPE_CHECK_INSTANCE_CAST \
((obj), E_TYPE_SOURCE_GROUP, ESourceGroup))
#define E_SOURCE_GROUP_CLASS(cls) \
(G_TYPE_CHECK_CLASS_CAST \
((cls), E_TYPE_SOURCE_GROUP, ESourceGroupClass))
#define E_IS_SOURCE_GROUP(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE \
((obj), E_TYPE_SOURCE_GROUP))
#define E_IS_SOURCE_GROUP_CLASS(cls) \
(G_TYPE_CHECK_CLASS_TYPE \
((cls), E_TYPE_SOURCE_GROUP))
#define E_SOURCE_GROUP_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS \
((obj), E_TYPE_SOURCE_GROUP, ESourceGroupClass))
G_BEGIN_DECLS
typedef struct _ESourceGroup ESourceGroup;
typedef struct _ESourceGroupClass ESourceGroupClass;
typedef struct _ESourceGroupPrivate ESourceGroupPrivate;
/**
* ESourceGroup:
*
* Contains only private data that should be read and manipulated using the
* functions below.
**/
struct _ESourceGroup {
GObject parent;
ESourceGroupPrivate *priv;
};
struct _ESourceGroupClass {
GObjectClass parent_class;
/* Signals */
void (*changed) (ESourceGroup *group);
void (*source_removed) (ESourceGroup *source_list,
ESource *source);
void (*source_added) (ESourceGroup *source_list,
ESource *source);
};
GType e_source_group_get_type (void) G_GNUC_CONST;
ESourceGroup * e_source_group_new (const gchar *name,
const gchar *base_uri);
ESourceGroup * e_source_group_new_from_xml (const gchar *xml);
ESourceGroup * e_source_group_new_from_xmldoc (xmlDocPtr doc);
gboolean e_source_group_update_from_xml (ESourceGroup *group,
const gchar *xml,
gboolean *changed_return);
gboolean e_source_group_update_from_xmldoc
(ESourceGroup *group,
xmlDocPtr doc,
gboolean *changed_return);
gchar * e_source_group_uid_from_xmldoc (xmlDocPtr doc);
void e_source_group_set_name (ESourceGroup *group,
const gchar *name);
void e_source_group_set_base_uri (ESourceGroup *group,
const gchar *base_uri);
void e_source_group_set_readonly (ESourceGroup *group,
gboolean readonly);
const gchar * e_source_group_peek_uid (ESourceGroup *group);
const gchar * e_source_group_peek_name (ESourceGroup *group);
const gchar * e_source_group_peek_base_uri (ESourceGroup *group);
gboolean e_source_group_get_readonly (ESourceGroup *group);
GSList * e_source_group_peek_sources (ESourceGroup *group);
ESource * e_source_group_peek_source_by_uid
(ESourceGroup *group,
const gchar *source_uid);
ESource * e_source_group_peek_source_by_name
(ESourceGroup *group,
const gchar *source_name);
gboolean e_source_group_add_source (ESourceGroup *group,
ESource *source,
gint position);
gboolean e_source_group_remove_source (ESourceGroup *group,
ESource *source);
gboolean e_source_group_remove_source_by_uid
(ESourceGroup *group,
const gchar *uid);
gchar * e_source_group_get_property (ESourceGroup *source,
const gchar *property);
void e_source_group_set_property (ESourceGroup *source,
const gchar *property,
const gchar *value);
void e_source_group_foreach_property (ESourceGroup *source,
GHFunc func,
gpointer data);
gchar * e_source_group_to_xml (ESourceGroup *group);
gboolean e_source_group_equal (ESourceGroup *a,
ESourceGroup *b);
gboolean e_source_group_xmlstr_equal (const gchar *a,
const gchar *b);
G_END_DECLS
#endif /* E_SOURCE_GROUP_H */
|