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:
committed by
Jonathan Blandford
parent
d2c132b3a3
commit
98605f95bf
@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user