Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

104 Zeilen
4.1 KiB

  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. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  20. #error "Only <gtk/gtk.h> can be included directly."
  21. #endif
  22. #ifndef __GTK_TREE_SORTABLE_H__
  23. #define __GTK_TREE_SORTABLE_H__
  24. #include <gtk/gtktreemodel.h>
  25. #include <gtk/gtktypeutils.h>
  26. G_BEGIN_DECLS
  27. #define GTK_TYPE_TREE_SORTABLE (gtk_tree_sortable_get_type ())
  28. #define GTK_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortable))
  29. #define GTK_TREE_SORTABLE_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
  30. #define GTK_IS_TREE_SORTABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SORTABLE))
  31. #define GTK_TREE_SORTABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_TREE_SORTABLE, GtkTreeSortableIface))
  32. enum {
  33. GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID = -1,
  34. GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID = -2
  35. };
  36. typedef struct _GtkTreeSortable GtkTreeSortable; /* Dummy typedef */
  37. typedef struct _GtkTreeSortableIface GtkTreeSortableIface;
  38. typedef gint (* GtkTreeIterCompareFunc) (GtkTreeModel *model,
  39. GtkTreeIter *a,
  40. GtkTreeIter *b,
  41. gpointer user_data);
  42. struct _GtkTreeSortableIface
  43. {
  44. GTypeInterface g_iface;
  45. /* signals */
  46. void (* sort_column_changed) (GtkTreeSortable *sortable);
  47. /* virtual table */
  48. gboolean (* get_sort_column_id) (GtkTreeSortable *sortable,
  49. gint *sort_column_id,
  50. GtkSortType *order);
  51. void (* set_sort_column_id) (GtkTreeSortable *sortable,
  52. gint sort_column_id,
  53. GtkSortType order);
  54. void (* set_sort_func) (GtkTreeSortable *sortable,
  55. gint sort_column_id,
  56. GtkTreeIterCompareFunc func,
  57. gpointer data,
  58. GDestroyNotify destroy);
  59. void (* set_default_sort_func) (GtkTreeSortable *sortable,
  60. GtkTreeIterCompareFunc func,
  61. gpointer data,
  62. GDestroyNotify destroy);
  63. gboolean (* has_default_sort_func) (GtkTreeSortable *sortable);
  64. };
  65. GType gtk_tree_sortable_get_type (void) G_GNUC_CONST;
  66. void gtk_tree_sortable_sort_column_changed (GtkTreeSortable *sortable);
  67. gboolean gtk_tree_sortable_get_sort_column_id (GtkTreeSortable *sortable,
  68. gint *sort_column_id,
  69. GtkSortType *order);
  70. void gtk_tree_sortable_set_sort_column_id (GtkTreeSortable *sortable,
  71. gint sort_column_id,
  72. GtkSortType order);
  73. void gtk_tree_sortable_set_sort_func (GtkTreeSortable *sortable,
  74. gint sort_column_id,
  75. GtkTreeIterCompareFunc sort_func,
  76. gpointer user_data,
  77. GDestroyNotify destroy);
  78. void gtk_tree_sortable_set_default_sort_func (GtkTreeSortable *sortable,
  79. GtkTreeIterCompareFunc sort_func,
  80. gpointer user_data,
  81. GDestroyNotify destroy);
  82. gboolean gtk_tree_sortable_has_default_sort_func (GtkTreeSortable *sortable);
  83. G_END_DECLS
  84. #endif /* __GTK_TREE_SORTABLE_H__ */