
2001-06-27 Peter Williams <peterw@ximian.com> * configure.in: Bump version number due to incompatible changes in ETree. gal/e-table: 2001-06-27 Peter Williams <peterw@ximian.com> * e-tree-selection-model.c (e_tree_selection_model_add_to_selection): New function, heavily based on select_single_row. * e-tree-selection-model.h: Added prototype; * e-tree.c (e_tree_get_model): New accessor function. (e_tree_get_selection_model): Same. (e_tree_selected_count, e_tree_select_all, e_tree_invert_select): Removed. With the accessors these become pointless. * e-tree.h: Prototype the functions above. Remove a few functions that don't make sense anymore. svn path=/trunk/; revision=10543
55 lines
1.9 KiB
C
55 lines
1.9 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TREE_SELECTION_MODEL_H_
|
|
#define _E_TREE_SELECTION_MODEL_H_
|
|
|
|
#include <gdk/gdktypes.h>
|
|
#include <gtk/gtkobject.h>
|
|
#include <gal/util/e-sorter.h>
|
|
#include <gal/widgets/e-selection-model.h>
|
|
#include <gal/e-table/e-tree-model.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
typedef void (*ETreeForeachFunc) (ETreePath path,
|
|
gpointer closure);
|
|
|
|
typedef struct ETreeSelectionModelPriv ETreeSelectionModelPriv;
|
|
|
|
#define E_TREE_SELECTION_MODEL_TYPE (e_tree_selection_model_get_type ())
|
|
#define E_TREE_SELECTION_MODEL(o) (GTK_CHECK_CAST ((o), E_TREE_SELECTION_MODEL_TYPE, ETreeSelectionModel))
|
|
#define E_TREE_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TREE_SELECTION_MODEL_TYPE, ETreeSelectionModelClass))
|
|
#define E_IS_TREE_SELECTION_MODEL(o) (GTK_CHECK_TYPE ((o), E_TREE_SELECTION_MODEL_TYPE))
|
|
#define E_IS_TREE_SELECTION_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TREE_SELECTION_MODEL_TYPE))
|
|
|
|
typedef struct {
|
|
ESelectionModel base;
|
|
|
|
ETreeSelectionModelPriv *priv;
|
|
} ETreeSelectionModel;
|
|
|
|
typedef struct {
|
|
ESelectionModelClass parent_class;
|
|
} ETreeSelectionModelClass;
|
|
|
|
|
|
GtkType e_tree_selection_model_get_type (void);
|
|
ESelectionModel *e_tree_selection_model_new (void);
|
|
void e_tree_selection_model_foreach (ETreeSelectionModel *etsm,
|
|
ETreeForeachFunc callback,
|
|
gpointer closure);
|
|
void e_tree_selection_model_select_single_path (ETreeSelectionModel *etsm,
|
|
ETreePath path);
|
|
void e_tree_selection_model_add_to_selection (ETreeSelectionModel *etsm,
|
|
ETreePath path);
|
|
void e_tree_selection_model_change_cursor (ETreeSelectionModel *etsm,
|
|
ETreePath path);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* _E_TREE_SELECTION_MODEL_H_ */
|