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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-source-group.h
*
* Copyright (C) 2003 Ximian, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU 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 General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author: Ettore Perazzoli <ettore@ximian.com>
*/
#ifndef _E_SOURCE_GROUP_H_
#define _E_SOURCE_GROUP_H_
#include <glib-object.h>
#include <libxml/tree.h>
G_BEGIN_DECLS
#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(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), 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(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_SOURCE_GROUP))
typedef struct _ESourceGroup ESourceGroup;
typedef struct _ESourceGroupPrivate ESourceGroupPrivate;
typedef struct _ESourceGroupClass ESourceGroupClass;
#include "e-source.h"
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);
ESourceGroup *e_source_group_new (const char *name,
const char *base_uri);
ESourceGroup *e_source_group_new_from_xml (const char *xml);
ESourceGroup *e_source_group_new_from_xmldoc (xmlDocPtr doc);
gboolean e_source_group_update_from_xml (ESourceGroup *group,
const char *xml,
gboolean *changed_return);
gboolean e_source_group_update_from_xmldoc (ESourceGroup *group,
xmlDocPtr doc,
gboolean *changed_return);
char *e_source_group_uid_from_xmldoc (xmlDocPtr doc);
void e_source_group_set_name (ESourceGroup *group,
const char *name);
void e_source_group_set_base_uri (ESourceGroup *group,
const char *base_uri);
void e_source_group_set_readonly (ESourceGroup *group,
gboolean readonly);
const char *e_source_group_peek_uid (ESourceGroup *group);
const char *e_source_group_peek_name (ESourceGroup *group);
const char *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 char *source_uid);
ESource *e_source_group_peek_source_by_name (ESourceGroup *group,
const char *source_name);
gboolean e_source_group_add_source (ESourceGroup *group,
ESource *source,
int position);
gboolean e_source_group_remove_source (ESourceGroup *group,
ESource *source);
gboolean e_source_group_remove_source_by_uid (ESourceGroup *group,
const char *uid);
char *e_source_group_to_xml (ESourceGroup *group);
G_END_DECLS
#endif /* _E_SOURCE_GROUP_H_ */
|