From 3de981ec78d529eb1bd9b2f98f154eae91dffc6d Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sun, 5 Mar 2000 23:15:14 +0000 Subject: Added support for the sorting info. The Etable creates a sort_info object, 2000-03-05 Christopher James Lahey * e-table.c, e-table.h: Added support for the sorting info. The Etable creates a sort_info object, and then connects to the signals to rearrange the rows when the sort_info changes. It also passes the info object to the ETableHeaderItem. * e-table-model.c: Fixed a typo where ETableModel was written as ETableModle. * e-table-header.c, e-table-header.h: Added some code for sorting here, but it's not used. I don't think we want this code, but I wanted to check it in at least once so that it's not lost. * e-table-header-item.c, e-table-header-item.h: Added a "sort_info" argument to ETableHeaderItem. Added display of current sort settings. Added support for clicking to change the sort settings. * e-table-col.h: E_TABLE_COL_ARROW_NONE is marked as being = 0 since this is required in other places. (I think C defines this as being the case, but it's good to have the = 0 there so that it's obvious that it has to be first.) * TODO: Mark sorting as done. * e-table-sort-info.c, e-table-sort-info.h: New files for containing the xml grouping/sorting information and for sending signals on that information. * Makefile.am: Added e-table-sort-info.c and e-table-sort-info.h. svn path=/trunk/; revision=2060 --- widgets/table/e-table-header-item.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'widgets/table/e-table-header-item.h') diff --git a/widgets/table/e-table-header-item.h b/widgets/table/e-table-header-item.h index 2e889a6adf..cc3cf8e4f6 100644 --- a/widgets/table/e-table-header-item.h +++ b/widgets/table/e-table-header-item.h @@ -1,8 +1,11 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ #ifndef _E_TABLE_HEADER_ITEM_H_ #define _E_TABLE_HEADER_ITEM_H_ #include +#include #include "e-table-header.h" +#include "e-table-sort-info.h" #define E_TABLE_HEADER_ITEM_TYPE (e_table_header_item_get_type ()) #define E_TABLE_HEADER_ITEM(o) (GTK_CHECK_CAST ((o), E_TABLE_HEADER_ITEM_TYPE, ETableHeaderItem)) @@ -45,6 +48,11 @@ typedef struct { guint drag_motion_id, drag_end_id, drag_leave_id, drag_drop_id; GnomeCanvasItem *drag_mark_item, *remove_item; GdkBitmap *stipple; + + /* + * For column sorting info + */ + ETableSortInfo *sort_info; } ETableHeaderItem; typedef struct { -- cgit v1.2.3