#define E_CELL_TOGGLE_TYPE typedef ECellToggle; 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); |
typedef struct {
ECell parent;
int border;
int n_states;
GdkPixbuf **images;
int height;
} ECellToggle; |
void e_cell_toggle_construct (ECellToggle *etog, int border, int n_states, GdkPixbuf **images); |
Constructs the etog object with the border, n_staes, and images arguments.