Initial work on implementing the GtkTreeSortable interface. Basicaly a big

Sun Apr  1 00:52:06 2001  Jonathan Blandford  <jrb@redhat.com>

	* gtk/gtktreestore.c: Initial work on implementing the
	GtkTreeSortable interface.  Basicaly a big cut'n'paste job.
This commit is contained in:
Jonathan Blandford
2001-04-01 05:52:23 +00:00
committed by Jonathan Blandford
parent d2c132b3a3
commit 98605f95bf
12 changed files with 410 additions and 57 deletions

View File

@ -21,6 +21,7 @@
#define __GTK_TREE_STORE_H__
#include <gtk/gtktreemodel.h>
#include <gtk/gtktreesortable.h>
#include <stdarg.h>
#ifdef __cplusplus
@ -40,11 +41,13 @@ struct _GtkTreeStore
{
GObject parent;
GList *sort_list;
gint stamp;
gpointer root;
gpointer last;
gint n_columns;
gint sort_column_id;
GList *sort_list;
GtkTreeSortOrder order;
GType *column_headers;
};