~ubuntu-branches/ubuntu/trusty/imagination/trusty-updates

« back to all changes in this revision

Viewing changes to src/eog-pixbuf-cell-renderer.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-12 07:19:02 UTC
  • Revision ID: james.westby@ubuntu.com-20090512071902-1qlldhv7rlfktvzl
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Eye Of Gnome - Pixbuf Cellrenderer 
 
2
 *
 
3
 * Copyright (C) 2007 The GNOME Foundation
 
4
 *
 
5
 * Author: Lucas Rocha <lucasr@gnome.org>
 
6
 *
 
7
 * Based on gnome-control-center code (capplets/appearance/wp-cellrenderer.c) by: 
 
8
 *      - Denis Washington <denisw@svn.gnome.org>
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 *
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
23
 */
 
24
 
 
25
#ifndef __EOG_PIXBUF_CELL_RENDERER_H__
 
26
#define __EOG_PIXBUF_CELL_RENDERER_H__
 
27
 
 
28
#include <gtk/gtk.h>
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
typedef struct _EogPixbufCellRenderer EogPixbufCellRenderer;
 
33
typedef struct _EogPixbufCellRendererClass EogPixbufCellRendererClass;
 
34
 
 
35
struct _EogPixbufCellRenderer
 
36
{
 
37
        GtkCellRendererPixbuf parent;
 
38
};
 
39
 
 
40
struct _EogPixbufCellRendererClass
 
41
{
 
42
        GtkCellRendererPixbufClass parent;
 
43
};
 
44
 
 
45
GType            eog_pixbuf_cell_renderer_get_type (void) G_GNUC_CONST;
 
46
 
 
47
GtkCellRenderer *eog_pixbuf_cell_renderer_new (void);
 
48
 
 
49
G_END_DECLS
 
50
 
 
51
#endif /* __EOG_PIXBUF_CELL_RENDERER_H__ */