diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-16 10:12:44 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-16 10:12:44 +0800 |
commit | bf3357b91ec240f3d325df8d9e9ffea98c796ea8 (patch) | |
tree | 60084f4a63df1dfa3ec6dcac88c3c7be91c3ff56 /widgets/table/e-tree.c | |
parent | 17bc3ae168964c0d60aa3ab38c2d2db50f01b4fa (diff) | |
download | gsoc2013-evolution-bf3357b91ec240f3d325df8d9e9ffea98c796ea8.tar.gz gsoc2013-evolution-bf3357b91ec240f3d325df8d9e9ffea98c796ea8.tar.zst gsoc2013-evolution-bf3357b91ec240f3d325df8d9e9ffea98c796ea8.zip |
Set the background color to the specified tooltip->background. Set the
2001-04-15 Christopher James Lahey <clahey@ximian.com>
* e-cell-text.c (ect_show_tooltip): Set the background color to
the specified tooltip->background. Set the foreground color to
the specified tooltip->foreground.
* e-table-item.c (eti_get_cell_background_color,
eti_get_cell_foreground_color): Added these functions.
(eti_draw, _do_tooltip): Use these new functions.
* e-table-tooltip.h: Added foreground and background colors to
this structure.
* e-tree.c, e-tree.h (e_tree_get_tooltip): Added this function.
svn path=/trunk/; revision=9338
Diffstat (limited to 'widgets/table/e-tree.c')
-rw-r--r-- | widgets/table/e-tree.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c index 4a81390783..358d7a22b1 100644 --- a/widgets/table/e-tree.c +++ b/widgets/table/e-tree.c @@ -1391,6 +1391,12 @@ e_tree_row_count (ETree *et) return e_table_model_row_count (E_TABLE_MODEL(et->priv->etta)); } +GtkWidget * +e_tree_get_tooltip (ETree *et) +{ + return E_CANVAS(et->priv->table_canvas)->tooltip_window; +} + struct _ETreeDragSourceSite { GdkModifierType start_button_mask; |