2000-06-23 Chris Toshok <toshok@helixcode.com> * e-tree-model.h, e-tree-model.c: add icon_at virtual function - it was stupid to make the insert call take 2 pixbufs. the model should give this information. * e-cell-tree.c: get rid of the opened/closed pixbuf stuff. call e_tree_model_icon_of_node. * e-tree-example-1.c: add my_icon_at. * e-tree-simple.c (simple_icon_at): new function (e_tree_simple_new): add icon_at parameter. * e-tree-simple.h: add SimpleIconAtFn. svn path=/trunk/; revision=3707
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
#ifndef _E_TREE_SIMPLE_H_
|
|
#define _E_TREE_SIMPLE_H_
|
|
|
|
#include "e-tree-model.h"
|
|
|
|
#define E_TREE_SIMPLE_TYPE (e_tree_simple_get_type ())
|
|
#define E_TREE_SIMPLE(o) (GTK_CHECK_CAST ((o), E_TREE_SIMPLE_TYPE, ETreeSimple))
|
|
#define E_TREE_SIMPLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TREE_SIMPLE_TYPE, ETreeSimpleClass))
|
|
#define E_IS_TREE_SIMPLE(o) (GTK_CHECK_TYPE ((o), E_TREE_SIMPLE_TYPE))
|
|
#define E_IS_TREE_SIMPLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TREE_SIMPLE_TYPE))
|
|
|
|
|
|
typedef GdkPixbuf* (*ETreeSimpleIconAtFn) (ETreeModel *etree, ETreePath *path, void *model_data);
|
|
typedef void* (*ETreeSimpleValueAtFn) (ETreeModel *etree, ETreePath *path, int col, void *model_data);
|
|
typedef void (*ETreeSimpleSetValueAtFn) (ETreeModel *etree, ETreePath *path, int col, const void *val, void *model_data);
|
|
typedef gboolean (*ETreeSimpleIsEditableFn) (ETreeModel *etree, ETreePath *path, int col, void *model_data);
|
|
|
|
typedef struct {
|
|
ETreeModel parent;
|
|
|
|
ETreeSimpleIconAtFn icon_at;
|
|
ETreeSimpleValueAtFn value_at;
|
|
ETreeSimpleSetValueAtFn set_value_at;
|
|
ETreeSimpleIsEditableFn is_editable;
|
|
|
|
gpointer model_data;
|
|
} ETreeSimple;
|
|
|
|
typedef struct {
|
|
ETreeModelClass parent_class;
|
|
} ETreeSimpleClass;
|
|
|
|
GtkType e_tree_simple_get_type (void);
|
|
|
|
ETreeModel *e_tree_simple_new (ETreeSimpleIconAtFn icon_at,
|
|
ETreeSimpleValueAtFn value_at,
|
|
ETreeSimpleSetValueAtFn set_value_at,
|
|
ETreeSimpleIsEditableFn is_editable,
|
|
gpointer model_data);
|
|
|
|
#endif /* _E_TREE_SIMPLE_H_ */
|