68 lines
2.3 KiB
C
68 lines
2.3 KiB
C
|
/*
|
||
|
* Authors: Rodney Dawes <dobey@ximian.com>
|
||
|
*
|
||
|
* Copyright 2003-2006 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 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 Street #330, Boston, MA 02111-1307, USA.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _CC_BACKGROUND_XML_H_
|
||
|
#define _CC_BACKGROUND_XML_H_
|
||
|
|
||
|
#include <libgnome-desktop/gnome-desktop-thumbnail.h>
|
||
|
#include <gtk/gtk.h>
|
||
|
#include <gio/gio.h>
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
#define CC_TYPE_BACKGROUND_XML (cc_background_xml_get_type ())
|
||
|
#define CC_BACKGROUND_XML(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CC_TYPE_BACKGROUND_XML, CcBackgroundXml))
|
||
|
#define CC_BACKGROUND_XML_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CC_TYPE_BACKGROUND_XML, CcBackgroundXmlClass))
|
||
|
#define CC_IS_BACKGROUND_XML(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CC_TYPE_BACKGROUND_XML))
|
||
|
#define CC_IS_BACKGROUND_XML_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CC_TYPE_BACKGROUND_XML))
|
||
|
#define CC_BACKGROUND_XML_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CC_TYPE_BACKGROUND_XML, CcBackgroundXmlClass))
|
||
|
|
||
|
typedef struct CcBackgroundXmlPrivate CcBackgroundXmlPrivate;
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
GObjectClass parent_class;
|
||
|
} CcBackgroundXmlClass;
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
GObject parent;
|
||
|
CcBackgroundXmlPrivate *priv;
|
||
|
} CcBackgroundXml;
|
||
|
|
||
|
GType cc_background_xml_get_type (void);
|
||
|
|
||
|
CcBackgroundXml *cc_background_xml_new (void);
|
||
|
void cc_background_xml_save_list (CcBackgroundXml *data);
|
||
|
/* FIXME this should be an iterator instead, so the bg
|
||
|
* pops up as soon as a new one is available */
|
||
|
void cc_background_xml_load_list_async (CcBackgroundXml *data,
|
||
|
GCancellable *cancellable,
|
||
|
GAsyncReadyCallback callback,
|
||
|
gpointer user_data);
|
||
|
/* FIXME, this is ugly API, which wouldn't be
|
||
|
* needed if this was an object */
|
||
|
const GHashTable *cc_background_xml_load_list_finish (GAsyncResult *async_result);
|
||
|
|
||
|
G_END_DECLS
|
||
|
|
||
|
#endif
|
||
|
|