Files
evolution/widgets/table/e-cell-toggle.h
Arturo Espinosa fa895ed8e1 More work. We now have the basics for nesting working, now we need all the
More work.  We now have the basics for nesting working, now we need all
the interactions done properly.

I want to use a new GnomeCanvasItem for the nesting parent as well.

DnD will have to be done with our own protocol to provide all the feedback
we want to provide.

Miguel

svn path=/trunk/; revision=1481
1999-12-12 09:20:46 +00:00

36 lines
1.0 KiB
C

#ifndef _E_CELL_TOGGLE_H_
#define _E_CELL_TOGGLE_H_
#include <libgnomeui/gnome-canvas.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "e-cell.h"
#define E_CELL_TOGGLE_TYPE (e_cell_toggle_get_type ())
#define E_CELL_TOGGLE(o) (GTK_CHECK_CAST ((o), E_CELL_TOGGLE_TYPE, ECellToggle))
#define E_CELL_TOGGLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CELL_TOGGLE_TYPE, ECellToggleClass))
#define E_IS_CELL_TOGGLE(o) (GTK_CHECK_TYPE ((o), E_CELL_TOGGLE_TYPE))
#define E_IS_CELL_TOGGLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CELL_TOGGLE_TYPE))
typedef struct {
ECell parent;
int border;
int n_states;
GdkPixbuf **images;
int height;
} ECellToggle;
typedef struct {
ECellClass parent_class;
} ECellToggleClass;
GtkType e_cell_toggle_get_type (void);
ECell *e_cell_toggle_new (int border, int n_states, GdkPixbuf **images);
void e_cell_toggle_construct (ECellToggle *etog, int border,
int n_states, GdkPixbuf **images);
#endif /* _E_CELL_TOGGLE_H_ */