diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-16 17:06:26 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-16 17:06:26 +0800 |
commit | 18fa92ee1db9cc931f2783a1343ddad7f0418ede (patch) | |
tree | ca1ed3bb62d507f713d6aeceabcfad1fbc86d30e /widgets/e-table/e-table-header.h | |
parent | 03f6e29a121581cc5e6fc8ec6132df55104f109d (diff) | |
download | gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar.gz gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar.bz2 gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar.lz gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar.xz gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.tar.zst gsoc2013-evolution-18fa92ee1db9cc931f2783a1343ddad7f0418ede.zip |
Fixed a FIXME comment.
2000-05-16 Christopher James Lahey <clahey@helixcode.com>
* e-table-sorted-variable.c: Fixed a FIXME comment.
* e-table-header.c, e-table-header.h: Added code to put off size
calculation to the idle loop. Added code to not resize columns
with 0 expansion. Removed the set_width function; it's been
replaced with a Gtk+ arg.
* Makefile.am: Added e-table-defines.h to the Makefile.am.
* e-table-defines.h: A new file containing some #defines for use
in ETable.
svn path=/trunk/; revision=3077
Diffstat (limited to 'widgets/e-table/e-table-header.h')
-rw-r--r-- | widgets/e-table/e-table-header.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/widgets/e-table/e-table-header.h b/widgets/e-table/e-table-header.h index 6ff4874f6f..0dcce14b1e 100644 --- a/widgets/e-table/e-table-header.h +++ b/widgets/e-table/e-table-header.h @@ -23,12 +23,16 @@ struct _ETableHeader { int col_count; int width; + int nominal_width; ETableSortInfo *sort_info; int sort_info_group_change_id; ETableCol **columns; gboolean selectable; + + GSList *change_queue, *change_tail; + gint idle; }; typedef struct { @@ -59,7 +63,6 @@ void e_table_header_move (ETableHeader *eth, int source_index, int target_index); void e_table_header_remove (ETableHeader *eth, int idx); -void e_table_header_set_width (ETableHeader *eth, int width); void e_table_header_set_size (ETableHeader *eth, int idx, int size); void e_table_header_set_selection (ETableHeader *eth, gboolean allow_selection); |