diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-02-14 07:15:13 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-02-14 07:15:13 +0800 |
commit | d4be90f9b25a398cafa91adec4098847ee4198cf (patch) | |
tree | dfbf85264f01cec237ab2785166f9446be124680 /widgets/table/e-table.h | |
parent | 6e67c20da8be56717c25807b65af8c8723e7e78c (diff) | |
download | gsoc2013-evolution-d4be90f9b25a398cafa91adec4098847ee4198cf.tar.gz gsoc2013-evolution-d4be90f9b25a398cafa91adec4098847ee4198cf.tar.zst gsoc2013-evolution-d4be90f9b25a398cafa91adec4098847ee4198cf.zip |
This new function updates the minimum width of all of the columns based on
2001-02-13 Christopher James Lahey <clahey@ximian.com>
* e-table-header.c, e-table-header.h
(e_table_header_update_horizontal): This new function updates the
minimum width of all of the columns based on the data contained in
that column.
* e-table.c, e-table.h (changed_idle): Added a
horizontal_scrolling field. Call e_table_header_update_horizontal
if the model changes at all and horizontal_scrolling is set to TRUE.
svn path=/trunk/; revision=8214
Diffstat (limited to 'widgets/table/e-table.h')
-rw-r--r-- | widgets/table/e-table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index 7aea980c13..b2161dd0ef 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -76,6 +76,8 @@ typedef struct { guint draw_grid : 1; guint draw_focus : 1; guint row_selection_active : 1; + + guint horizontal_scrolling : 1; char *click_to_add_message; GnomeCanvasItem *click_to_add; |