Implement a new design for the wallpaper selection. https://bugzilla.gnome.org/show_bug.cgi?id=676539
202 lines
5.3 KiB
C
202 lines
5.3 KiB
C
/* bg-wallpapers-source.c */
|
|
/*
|
|
* Copyright (C) 2010 Intel, Inc
|
|
*
|
|
* 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 of the License, 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.
|
|
*
|
|
* Author: Thomas Wood <thomas.wood@intel.com>
|
|
*
|
|
*/
|
|
|
|
|
|
#include "bg-wallpapers-source.h"
|
|
|
|
#include "cc-background-item.h"
|
|
#include "cc-background-xml.h"
|
|
|
|
#include <libgnome-desktop/gnome-desktop-thumbnail.h>
|
|
#include <gio/gio.h>
|
|
|
|
G_DEFINE_TYPE (BgWallpapersSource, bg_wallpapers_source, BG_TYPE_SOURCE)
|
|
|
|
#define WALLPAPERS_SOURCE_PRIVATE(o) \
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((o), BG_TYPE_WALLPAPERS_SOURCE, BgWallpapersSourcePrivate))
|
|
|
|
struct _BgWallpapersSourcePrivate
|
|
{
|
|
GnomeDesktopThumbnailFactory *thumb_factory;
|
|
CcBackgroundXml *xml;
|
|
};
|
|
|
|
|
|
static void
|
|
bg_wallpapers_source_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
switch (property_id)
|
|
{
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
bg_wallpapers_source_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
switch (property_id)
|
|
{
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
bg_wallpapers_source_dispose (GObject *object)
|
|
{
|
|
BgWallpapersSourcePrivate *priv = BG_WALLPAPERS_SOURCE (object)->priv;
|
|
|
|
if (priv->thumb_factory)
|
|
{
|
|
g_object_unref (priv->thumb_factory);
|
|
priv->thumb_factory = NULL;
|
|
}
|
|
if (priv->xml)
|
|
{
|
|
g_object_unref (priv->xml);
|
|
priv->xml = NULL;
|
|
}
|
|
|
|
G_OBJECT_CLASS (bg_wallpapers_source_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
bg_wallpapers_source_finalize (GObject *object)
|
|
{
|
|
G_OBJECT_CLASS (bg_wallpapers_source_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
bg_wallpapers_source_class_init (BgWallpapersSourceClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (BgWallpapersSourcePrivate));
|
|
|
|
object_class->get_property = bg_wallpapers_source_get_property;
|
|
object_class->set_property = bg_wallpapers_source_set_property;
|
|
object_class->dispose = bg_wallpapers_source_dispose;
|
|
object_class->finalize = bg_wallpapers_source_finalize;
|
|
}
|
|
|
|
static void
|
|
load_wallpapers (gchar *key,
|
|
CcBackgroundItem *item,
|
|
BgWallpapersSource *source)
|
|
{
|
|
BgWallpapersSourcePrivate *priv = source->priv;
|
|
GtkTreeIter iter;
|
|
GIcon *pixbuf;
|
|
GtkListStore *store = bg_source_get_liststore (BG_SOURCE (source));
|
|
gboolean deleted;
|
|
|
|
g_object_get (G_OBJECT (item), "is-deleted", &deleted, NULL);
|
|
|
|
if (deleted)
|
|
return;
|
|
|
|
gtk_list_store_append (store, &iter);
|
|
|
|
pixbuf = cc_background_item_get_thumbnail (item, priv->thumb_factory,
|
|
THUMBNAIL_WIDTH, THUMBNAIL_HEIGHT);
|
|
|
|
gtk_list_store_set (store, &iter,
|
|
0, pixbuf,
|
|
1, g_object_ref (item),
|
|
2, cc_background_item_get_name (item),
|
|
-1);
|
|
|
|
if (pixbuf)
|
|
g_object_unref (pixbuf);
|
|
}
|
|
|
|
static void
|
|
list_load_cb (GObject *source_object,
|
|
GAsyncResult *res,
|
|
gpointer user_data)
|
|
{
|
|
cc_background_xml_load_list_finish (res);
|
|
}
|
|
|
|
static void
|
|
item_added (CcBackgroundXml *xml,
|
|
CcBackgroundItem *item,
|
|
BgWallpapersSource *self)
|
|
{
|
|
load_wallpapers (NULL, item, self);
|
|
}
|
|
|
|
static void
|
|
load_default_bg (BgWallpapersSource *self)
|
|
{
|
|
const char * const *system_data_dirs;
|
|
char *filename;
|
|
guint i;
|
|
|
|
/* FIXME We could do this nicer if we had the XML source in GSettings */
|
|
|
|
system_data_dirs = g_get_system_data_dirs ();
|
|
for (i = 0; system_data_dirs[i]; i++) {
|
|
filename = g_build_filename (system_data_dirs[i],
|
|
"gnome-background-properties",
|
|
"adwaita.xml",
|
|
NULL);
|
|
if (cc_background_xml_load_xml (self->priv->xml, filename)) {
|
|
g_free (filename);
|
|
break;
|
|
}
|
|
g_free (filename);
|
|
}
|
|
}
|
|
|
|
static void
|
|
bg_wallpapers_source_init (BgWallpapersSource *self)
|
|
{
|
|
BgWallpapersSourcePrivate *priv;
|
|
|
|
priv = self->priv = WALLPAPERS_SOURCE_PRIVATE (self);
|
|
|
|
priv->thumb_factory =
|
|
gnome_desktop_thumbnail_factory_new (GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE);
|
|
priv->xml = cc_background_xml_new ();
|
|
g_signal_connect (G_OBJECT (priv->xml), "added",
|
|
G_CALLBACK (item_added), self);
|
|
|
|
/* Try adding the default background first */
|
|
load_default_bg (self);
|
|
|
|
cc_background_xml_load_list_async (priv->xml, NULL, list_load_cb, self);
|
|
}
|
|
|
|
BgWallpapersSource *
|
|
bg_wallpapers_source_new (void)
|
|
{
|
|
return g_object_new (BG_TYPE_WALLPAPERS_SOURCE, NULL);
|
|
}
|
|
|