Ardour  9.0-pre0-350-gf17a656217
gtktreesortable.h
Go to the documentation of this file.
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 
24 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
25 #error "Only <gtk/gtk.h> can be included directly."
26 #endif
27 
28 #include <gtk/gtktreemodel.h>
29 #include <gtk/gtktypeutils.h>
30 
31 
32 G_BEGIN_DECLS
33 
34 #define GTK_TYPE_TREE_SORTABLE (gtk_tree_sortable_get_type ())
35 #define GTK_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortable))
36 #define GTK_TREE_SORTABLE_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
37 #define GTK_IS_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SORTABLE))
38 #define GTK_TREE_SORTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
39 
40 enum {
43 };
44 
45 typedef struct _GtkTreeSortable GtkTreeSortable; /* Dummy typedef */
47 
48 typedef gint (* GtkTreeIterCompareFunc) (GtkTreeModel *model,
49  GtkTreeIter *a,
50  GtkTreeIter *b,
51  gpointer user_data);
52 
53 
55 {
56  GTypeInterface g_iface;
57 
58  /* signals */
59  void (* sort_column_changed) (GtkTreeSortable *sortable);
60 
61  /* virtual table */
62  gboolean (* get_sort_column_id) (GtkTreeSortable *sortable,
63  gint *sort_column_id,
65  void (* set_sort_column_id) (GtkTreeSortable *sortable,
66  gint sort_column_id,
68  void (* set_sort_func) (GtkTreeSortable *sortable,
69  gint sort_column_id,
71  gpointer data,
72  GDestroyNotify destroy);
75  gpointer data,
76  GDestroyNotify destroy);
77  gboolean (* has_default_sort_func) (GtkTreeSortable *sortable);
78 };
79 
80 
81 GType gtk_tree_sortable_get_type (void) G_GNUC_CONST;
82 
85  gint *sort_column_id,
88  gint sort_column_id,
91  gint sort_column_id,
92  GtkTreeIterCompareFunc sort_func,
93  gpointer user_data,
94  GDestroyNotify destroy);
96  GtkTreeIterCompareFunc sort_func,
97  gpointer user_data,
98  GDestroyNotify destroy);
100 
101 G_END_DECLS
102 
103 #endif /* __GTK_TREE_SORTABLE_H__ */
GtkSortType
Definition: gtkenums.h:477
struct _GtkTreeModel GtkTreeModel
Definition: gtktreemodel.h:46
void gtk_tree_sortable_set_default_sort_func(GtkTreeSortable *sortable, GtkTreeIterCompareFunc sort_func, gpointer user_data, GDestroyNotify destroy)
struct _GtkTreeSortable GtkTreeSortable
void gtk_tree_sortable_set_sort_column_id(GtkTreeSortable *sortable, gint sort_column_id, GtkSortType order)
gboolean gtk_tree_sortable_get_sort_column_id(GtkTreeSortable *sortable, gint *sort_column_id, GtkSortType *order)
gboolean gtk_tree_sortable_has_default_sort_func(GtkTreeSortable *sortable)
void gtk_tree_sortable_sort_column_changed(GtkTreeSortable *sortable)
gint(* GtkTreeIterCompareFunc)(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer user_data)
@ GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID
@ GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID
GType gtk_tree_sortable_get_type(void) G_GNUC_CONST
void gtk_tree_sortable_set_sort_func(GtkTreeSortable *sortable, gint sort_column_id, GtkTreeIterCompareFunc sort_func, gpointer user_data, GDestroyNotify destroy)
PBD::PropertyDescriptor< uint32_t > order
GTypeInterface g_iface
gboolean(* has_default_sort_func)(GtkTreeSortable *sortable)
void(* set_default_sort_func)(GtkTreeSortable *sortable, GtkTreeIterCompareFunc func, gpointer data, GDestroyNotify destroy)
void(* sort_column_changed)(GtkTreeSortable *sortable)
gboolean(* get_sort_column_id)(GtkTreeSortable *sortable, gint *sort_column_id, GtkSortType *order)
void(* set_sort_column_id)(GtkTreeSortable *sortable, gint sort_column_id, GtkSortType order)
void(* set_sort_func)(GtkTreeSortable *sortable, gint sort_column_id, GtkTreeIterCompareFunc func, gpointer data, GDestroyNotify destroy)