]> Pileus Git - ~andy/gtk/blob - gtk/gtktreesortable.h
System fnmatch wasn't going to be UTF-8 clean, neither was our version.
[~andy/gtk] / gtk / gtktreesortable.h
1 /* gtktreesortable.h
2  * Copyright (C) 2001  Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GTK_TREE_SORTABLE_H__
21 #define __GTK_TREE_SORTABLE_H__
22
23 #include <gtk/gtkenums.h>
24 #include <gtk/gtktreemodel.h>
25 #include <gtk/gtktypeutils.h>
26
27 G_BEGIN_DECLS
28
29 #define GTK_TYPE_TREE_SORTABLE            (gtk_tree_sortable_get_type ())
30 #define GTK_TREE_SORTABLE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortable))
31 #define GTK_TREE_SORTABLE_CLASS(obj)      (G_TYPE_CHECK_CLASS_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
32 #define GTK_IS_TREE_SORTABLE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SORTABLE))
33 #define GTK_TREE_SORTABLE_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
34
35 enum {
36   GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID = -1
37 };
38
39 typedef struct _GtkTreeSortable      GtkTreeSortable; /* Dummy typedef */
40 typedef struct _GtkTreeSortableIface GtkTreeSortableIface;
41
42 typedef gint (* GtkTreeIterCompareFunc) (GtkTreeModel *model,
43                                          GtkTreeIter  *a,
44                                          GtkTreeIter  *b,
45                                          gpointer      user_data);
46
47
48 struct _GtkTreeSortableIface
49 {
50   GTypeInterface g_iface;
51
52   /* signals */
53   void     (* sort_column_changed)   (GtkTreeSortable        *sortable);
54
55   /* virtual table */
56   gboolean (* get_sort_column_id)    (GtkTreeSortable        *sortable,
57                                       gint                   *sort_column_id,
58                                       GtkSortType            *order);
59   void     (* set_sort_column_id)    (GtkTreeSortable        *sortable,
60                                       gint                    sort_column_id,
61                                       GtkSortType             order);
62   void     (* set_sort_func)         (GtkTreeSortable        *sortable,
63                                       gint                    sort_column_id,
64                                       GtkTreeIterCompareFunc  func,
65                                       gpointer                data,
66                                       GtkDestroyNotify        destroy);
67   void     (* set_default_sort_func) (GtkTreeSortable        *sortable,
68                                       GtkTreeIterCompareFunc  func,
69                                       gpointer                data,
70                                       GtkDestroyNotify        destroy);
71   gboolean (* has_default_sort_func) (GtkTreeSortable        *sortable);
72 };
73
74
75 GType    gtk_tree_sortable_get_type              (void) G_GNUC_CONST;
76
77 void     gtk_tree_sortable_sort_column_changed   (GtkTreeSortable        *sortable);
78 gboolean gtk_tree_sortable_get_sort_column_id    (GtkTreeSortable        *sortable,
79                                                   gint                   *sort_column_id,
80                                                   GtkSortType            *order);
81 void     gtk_tree_sortable_set_sort_column_id    (GtkTreeSortable        *sortable,
82                                                   gint                    sort_column_id,
83                                                   GtkSortType             order);
84 void     gtk_tree_sortable_set_sort_func         (GtkTreeSortable        *sortable,
85                                                   gint                    sort_column_id,
86                                                   GtkTreeIterCompareFunc  sort_func,
87                                                   gpointer                user_data,
88                                                   GtkDestroyNotify        destroy);
89 void     gtk_tree_sortable_set_default_sort_func (GtkTreeSortable        *sortable,
90                                                   GtkTreeIterCompareFunc  sort_func,
91                                                   gpointer                user_data,
92                                                   GtkDestroyNotify        destroy);
93 gboolean gtk_tree_sortable_has_default_sort_func (GtkTreeSortable        *sortable);
94                                                   
95                                                   
96 G_END_DECLS
97
98 #endif /* __GTK_TREE_SORTABLE_H__ */