2001-04-04 Kjartan Maraas <kmaraas@gnome.org> * e-cell-date.c: Fix headers. * e-cell-number.c: Ditto. * e-cell-pixbuf.[ch]: Ditto. * e-cell-size.c: Ditto. * e-cell-text.c: Ditto. * e-cell-tree.c: Ditto. * e-table-click-to-add.[ch]: Ditto. * e-table-column-specification.h: Ditto. * e-table-config-field.c: Ditto. * e-table-config.[ch]: Ditto. * e-table-example-2.c: Ditto. * e-table-field-chooser-dialog.[ch]: Ditto. * e-table-field-chooser-item.c: Ditto. * e-table-field-chooser.h: Ditto. * e-table-group-container.c: Ditto. * e-table-item.c: Ditto * e-table-memory.c: Ditto. * e-table-selection-model.c: Ditto. * e-table-sorter.c: Ditto. * e-table-subset-variable.c: Ditto. * e-table.c: Ditto. * e-tree-memory.c: Ditto. * e-tree-model.c: Ditto. * e-tree-selection-model.[ch]: Ditto. * e-tree-sorted-variable.c: Ditto. * e-tree-sorted.c: Ditto. * e-tree-table-adapter.c: Ditto. * e-tree.[ch]: Same here. svn path=/trunk/; revision=9164
37 lines
966 B
C
37 lines
966 B
C
/*
|
|
* e-cell-pixbuf.h: An ECell that displays a GdkPixbuf
|
|
*
|
|
* Copyright (C) 2001 Ximian, Inc.
|
|
*
|
|
* Authors: Vladimir Vukicevic <vladimir@ximian.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _E_CELL_PIXBUF_H_
|
|
#define _E_CELL_PIXBUF_H_
|
|
|
|
#include <gal/e-table/e-table.h>
|
|
|
|
#define E_CELL_PIXBUF_TYPE (e_cell_pixbuf_get_type ())
|
|
#define E_CELL_PIXBUF(o) (GTK_CHECK_CAST ((o), E_CELL_PIXBUF_TYPE, ECellPixbuf))
|
|
#define E_CELL_PIXBUF_CLASS(k) (GTK_CHECK_CAST_CLASS ((k), E_CELL_PIXBUF_TYPE, ECellPixbufClass))
|
|
#define E_IS_CELL_PIXBUF(o) (GTK_CHECK_TYPE ((o), E_CELL_PIXBUF_TYPE))
|
|
#define E_IS_CELL_PIXBUF_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CELL_PIXBUF_TYPE))
|
|
|
|
typedef struct _ECellPixbuf ECellPixbuf;
|
|
typedef struct _ECellPixbufClass ECellPixbufClass;
|
|
|
|
struct _ECellPixbuf {
|
|
ECell parent;
|
|
};
|
|
|
|
struct _ECellPixbufClass {
|
|
ECellClass parent_class;
|
|
};
|
|
|
|
GtkType e_cell_pixbuf_get_type (void);
|
|
ECell *e_cell_pixbuf_new (void);
|
|
void e_cell_pixbuf_construct (ECellPixbuf *ecp);
|
|
|
|
#endif
|