From ccc7bafebeb202b0f7f7f19b23f76a2105bf2068 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 3 Jun 2002 21:54:37 +0000 Subject: Get the font from the style again when the style changes. (init): Checks 2002-06-03 Christopher James Lahey * e-cell-text.c (ect_style_set): Get the font from the style again when the style changes. (init): Checks for the environment variable GAL_ELLIPSIS and uses that instead of ... if it is set. * e-table-click-to-add.c (finish_editing): e_table_item_leave_edit before committing. (etcta_event): Added a missing break; here. * e-table-item.c (eti_style_set): On style set, free the height cache, request a reflow and a redraw, and call eti_idle_maybe_show_cursor. (e_table_item_compute_location): Don't call eti_get_height here, just use the cached value. * e-tree.c, e-tree.h (e_tree_get_table_adapter): Added this simple accessor function. svn path=/trunk/; revision=17088 --- widgets/table/e-tree.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'widgets/table/e-tree.h') diff --git a/widgets/table/e-tree.h b/widgets/table/e-tree.h index 56ad205f63..32c3d0689d 100644 --- a/widgets/table/e-tree.h +++ b/widgets/table/e-tree.h @@ -34,6 +34,7 @@ #include #include #include +#include #include #define E_TREE_USE_TREE_SELECTION @@ -49,7 +50,6 @@ BEGIN_GNOME_DECLS #define E_TREE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TREE_TYPE, ETreeClass)) #define E_IS_TREE(o) (GTK_CHECK_TYPE ((o), E_TREE_TYPE)) #define E_IS_TREE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TREE_TYPE)) - typedef struct _ETreeDragSourceSite ETreeDragSourceSite; typedef struct ETreePriv ETreePriv; @@ -215,6 +215,7 @@ void e_tree_get_cell_geometry (ETree *tree, /* Useful accessors */ ETreeModel * e_tree_get_model (ETree *et); ESelectionModel *e_tree_get_selection_model (ETree *et); +ETreeTableAdapter *e_tree_get_table_adapter (ETree *et); /* Drag & drop stuff. */ /* Target */ -- cgit