2000-12-19 14:05:04 +00:00
|
|
|
/* -*- mode: c; style: linux -*- */
|
|
|
|
|
|
|
|
/* backend-list.h
|
2001-01-12 14:40:26 +00:00
|
|
|
* Copyright (C) 2000-2001 Ximian, Inc.
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
2001-01-12 15:03:02 +00:00
|
|
|
* Written by Bradford Hovinen <hovinen@ximian.com>
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BACKEND_LIST_H
|
|
|
|
#define __BACKEND_LIST_H
|
|
|
|
|
|
|
|
#include <gnome.h>
|
2001-08-20 15:47:57 +00:00
|
|
|
#include <bonobo.h>
|
|
|
|
|
|
|
|
#include "ConfigArchiver.h"
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
|
|
|
|
#define BACKEND_LIST(obj) GTK_CHECK_CAST (obj, backend_list_get_type (), BackendList)
|
|
|
|
#define BACKEND_LIST_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, backend_list_get_type (), BackendListClass)
|
|
|
|
#define IS_BACKEND_LIST(obj) GTK_CHECK_TYPE (obj, backend_list_get_type ())
|
|
|
|
|
|
|
|
typedef struct _BackendList BackendList;
|
|
|
|
typedef struct _BackendListClass BackendListClass;
|
|
|
|
typedef struct _BackendListPrivate BackendListPrivate;
|
|
|
|
|
|
|
|
typedef gint (*BackendCB) (BackendList *, gchar *, gpointer);
|
|
|
|
|
|
|
|
struct _BackendList
|
|
|
|
{
|
2001-08-20 15:47:57 +00:00
|
|
|
BonoboXObject parent;
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
BackendListPrivate *p;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _BackendListClass
|
|
|
|
{
|
2001-08-20 15:47:57 +00:00
|
|
|
BonoboXObjectClass parent_class;
|
|
|
|
|
|
|
|
POA_ConfigArchiver_BackendList__epv epv;
|
2000-12-19 14:05:04 +00:00
|
|
|
};
|
|
|
|
|
2002-04-11 19:13:49 +00:00
|
|
|
GType backend_list_get_type (void);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
BonoboObject *backend_list_new (gboolean is_global);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
gboolean backend_list_contains (BackendList *backend_list,
|
|
|
|
const gchar *backend_id);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
gboolean backend_list_foreach (BackendList *backend_list,
|
|
|
|
BackendCB callback,
|
|
|
|
gpointer data);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
void backend_list_add (BackendList *backend_list,
|
|
|
|
const gchar *backend_id);
|
|
|
|
void backend_list_remove (BackendList *backend_list,
|
|
|
|
const gchar *backend_id);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
void backend_list_save (BackendList *backend_list);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
END_GNOME_DECLS
|
|
|
|
|
|
|
|
#endif /* __BACKEND_LIST_H */
|