gnome-control-center/capplets/appearance/wp-cellrenderer.h
Jens Granseuer ef3bb7e92b fix cell renderer state logic to not be always on
2007-07-28  Jens Granseuer  <jensgr@gmx.net>

	* wp-cellrenderer.c: (cell_renderer_wallpaper_render):
	* wp-cellrenderer.h: fix cell renderer state logic to not be always on

svn path=/trunk/; revision=7909
2007-07-28 11:38:06 +00:00

44 lines
1.3 KiB
C

/*
* Copyright (C) 2007 The GNOME Foundation
* Written by Denis Washington <denisw@svn.gnome.org>
* All Rights Reserved
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef _WP_CELL_RENDERER_H
#define _WP_CELL_RENDERER_H
#include <gtk/gtk.h>
G_BEGIN_DECLS
typedef struct _CellRendererWallpaper CellRendererWallpaper;
typedef struct _CellRendererWallpaperClass CellRendererWallpaperClass;
struct _CellRendererWallpaper
{
GtkCellRendererPixbuf parent;
};
struct _CellRendererWallpaperClass
{
GtkCellRendererPixbufClass parent;
};
GtkCellRenderer *cell_renderer_wallpaper_new (void);
G_END_DECLS
#endif