2001-02-03 01:09:41 +00:00
|
|
|
/* gtktreesortable.h
|
|
|
|
* Copyright (C) 2001 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
#ifndef __GTK_TREE_SORTABLE_H__
|
|
|
|
#define __GTK_TREE_SORTABLE_H__
|
|
|
|
|
2008-10-30 16:34:16 +00:00
|
|
|
|
2010-09-18 23:57:32 +00:00
|
|
|
#include <gtk/gtkenums.h>
|
2001-02-03 01:09:41 +00:00
|
|
|
#include <gtk/gtktreemodel.h>
|
|
|
|
|
2008-10-30 16:34:16 +00:00
|
|
|
|
2001-09-03 23:37:39 +00:00
|
|
|
G_BEGIN_DECLS
|
2001-02-03 01:09:41 +00:00
|
|
|
|
|
|
|
#define GTK_TYPE_TREE_SORTABLE (gtk_tree_sortable_get_type ())
|
|
|
|
#define GTK_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortable))
|
2001-03-23 00:35:19 +00:00
|
|
|
#define GTK_TREE_SORTABLE_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
|
2001-02-03 01:09:41 +00:00
|
|
|
#define GTK_IS_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SORTABLE))
|
2002-01-09 06:52:19 +00:00
|
|
|
#define GTK_TREE_SORTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
|
2001-02-03 01:09:41 +00:00
|
|
|
|
2001-09-03 23:37:39 +00:00
|
|
|
enum {
|
2004-09-05 05:06:05 +00:00
|
|
|
GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID = -1,
|
|
|
|
GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID = -2
|
2001-09-03 23:37:39 +00:00
|
|
|
};
|
2001-03-23 00:35:19 +00:00
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
typedef struct _GtkTreeSortable GtkTreeSortable; /* Dummy typedef */
|
|
|
|
typedef struct _GtkTreeSortableIface GtkTreeSortableIface;
|
|
|
|
|
2010-10-22 20:10:03 +00:00
|
|
|
/**
|
|
|
|
* GtkTreeIterCompareFunc:
|
|
|
|
* @model: The #GtkTreeModel the comparison is within
|
|
|
|
* @a: A #GtkTreeIter in @model
|
|
|
|
* @b: Another #GtkTreeIter in @model
|
|
|
|
* @user_data: Data passed when the compare func is assigned e.g. by
|
|
|
|
* gtk_tree_sortable_set_sort_func()
|
|
|
|
*
|
|
|
|
* A GtkTreeIterCompareFunc should return a negative integer, zero, or a positive
|
|
|
|
* integer if @a sorts before @b, @a sorts with @b, or @a sorts after @b
|
|
|
|
* respectively. If two iters compare as equal, their order in the sorted model
|
|
|
|
* is undefined. In order to ensure that the #GtkTreeSortable behaves as
|
|
|
|
* expected, the GtkTreeIterCompareFunc must define a partial order on
|
|
|
|
* the model, i.e. it must be reflexive, antisymmetric and transitive.
|
|
|
|
*
|
|
|
|
* For example, if @model is a product catalogue, then a compare function
|
|
|
|
* for the "price" column could be one which returns
|
|
|
|
* <literal>price_of(@a) - price_of(@b)</literal>.
|
|
|
|
*
|
|
|
|
* Returns: a negative integer, zero or a positive integer depending on whether
|
|
|
|
* @a sorts before, with or after @b
|
|
|
|
*/
|
2001-03-23 00:35:19 +00:00
|
|
|
typedef gint (* GtkTreeIterCompareFunc) (GtkTreeModel *model,
|
|
|
|
GtkTreeIter *a,
|
|
|
|
GtkTreeIter *b,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
|
2001-02-03 01:09:41 +00:00
|
|
|
struct _GtkTreeSortableIface
|
|
|
|
{
|
|
|
|
GTypeInterface g_iface;
|
|
|
|
|
2001-03-23 00:35:19 +00:00
|
|
|
/* signals */
|
2001-09-03 23:37:39 +00:00
|
|
|
void (* sort_column_changed) (GtkTreeSortable *sortable);
|
2001-03-23 00:35:19 +00:00
|
|
|
|
|
|
|
/* virtual table */
|
2001-09-03 23:37:39 +00:00
|
|
|
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,
|
2010-09-21 04:18:11 +00:00
|
|
|
GtkTreeIterCompareFunc sort_func,
|
|
|
|
gpointer user_data,
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify destroy);
|
2001-09-03 23:37:39 +00:00
|
|
|
void (* set_default_sort_func) (GtkTreeSortable *sortable,
|
2010-09-21 04:18:11 +00:00
|
|
|
GtkTreeIterCompareFunc sort_func,
|
|
|
|
gpointer user_data,
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify destroy);
|
2001-09-03 23:37:39 +00:00
|
|
|
gboolean (* has_default_sort_func) (GtkTreeSortable *sortable);
|
2001-02-03 01:09:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-09-03 23:37:39 +00:00
|
|
|
GType gtk_tree_sortable_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
void gtk_tree_sortable_sort_column_changed (GtkTreeSortable *sortable);
|
|
|
|
gboolean gtk_tree_sortable_get_sort_column_id (GtkTreeSortable *sortable,
|
|
|
|
gint *sort_column_id,
|
|
|
|
GtkSortType *order);
|
|
|
|
void gtk_tree_sortable_set_sort_column_id (GtkTreeSortable *sortable,
|
|
|
|
gint sort_column_id,
|
|
|
|
GtkSortType order);
|
|
|
|
void gtk_tree_sortable_set_sort_func (GtkTreeSortable *sortable,
|
|
|
|
gint sort_column_id,
|
2001-09-04 22:15:18 +00:00
|
|
|
GtkTreeIterCompareFunc sort_func,
|
|
|
|
gpointer user_data,
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify destroy);
|
2001-09-03 23:37:39 +00:00
|
|
|
void gtk_tree_sortable_set_default_sort_func (GtkTreeSortable *sortable,
|
2001-09-04 22:15:18 +00:00
|
|
|
GtkTreeIterCompareFunc sort_func,
|
|
|
|
gpointer user_data,
|
2008-06-18 09:12:32 +00:00
|
|
|
GDestroyNotify destroy);
|
2001-09-03 23:37:39 +00:00
|
|
|
gboolean gtk_tree_sortable_has_default_sort_func (GtkTreeSortable *sortable);
|
2008-06-18 09:12:32 +00:00
|
|
|
|
2001-09-03 23:37:39 +00:00
|
|
|
G_END_DECLS
|
2001-02-03 01:09:41 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_TREE_SORTABLE_H__ */
|