~alexlauni/ubuntu/lucid/gnome-control-center/fix-533888

« back to all changes in this revision

Viewing changes to capplets/appearance/wp-cellrenderer.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-06-13 12:30:08 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20070613123008-nmcon6qb309hkjek
Tags: upstream-2.19.3
ImportĀ upstreamĀ versionĀ 2.19.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <gtk/gtk.h>
 
2
 
 
3
#ifndef _WP_CELL_RENDERER_H
 
4
#define _WP_CELL_RENDERER_H
 
5
 
 
6
G_BEGIN_DECLS
 
7
 
 
8
typedef struct _CellRendererWallpaper       CellRendererWallpaper;
 
9
typedef struct _CellRendererWallpaperClass  CellRendererWallpaperClass;
 
10
 
 
11
struct _CellRendererWallpaper
 
12
{
 
13
        GtkCellRendererPixbuf parent;
 
14
};
 
15
 
 
16
struct _CellRendererWallpaperClass
 
17
{
 
18
        GtkCellRendererPixbufClass parent;
 
19
};
 
20
 
 
21
GtkCellRenderer *cell_renderer_wallpaper_new (void);
 
22
 
 
23
G_END_DECLS
 
24
 
 
25
#endif