glistmodel.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright 2015 Lars Uebernickel
  3. * Copyright 2015 Ryan Lortie
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Authors:
  19. * Lars Uebernickel <lars@uebernic.de>
  20. * Ryan Lortie <desrt@desrt.ca>
  21. */
  22. #ifndef __G_LIST_MODEL_H__
  23. #define __G_LIST_MODEL_H__
  24. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  25. #error "Only <gio/gio.h> can be included directly."
  26. #endif
  27. #include <gio/giotypes.h>
  28. G_BEGIN_DECLS
  29. #define G_TYPE_LIST_MODEL g_list_model_get_type ()
  30. GLIB_AVAILABLE_IN_2_44
  31. G_DECLARE_INTERFACE(GListModel, g_list_model, G, LIST_MODEL, GObject)
  32. struct _GListModelInterface
  33. {
  34. GTypeInterface g_iface;
  35. GType (* get_item_type) (GListModel *list);
  36. guint (* get_n_items) (GListModel *list);
  37. gpointer (* get_item) (GListModel *list,
  38. guint position);
  39. };
  40. GLIB_AVAILABLE_IN_2_44
  41. GType g_list_model_get_item_type (GListModel *list);
  42. GLIB_AVAILABLE_IN_2_44
  43. guint g_list_model_get_n_items (GListModel *list);
  44. GLIB_AVAILABLE_IN_2_44
  45. gpointer g_list_model_get_item (GListModel *list,
  46. guint position);
  47. GLIB_AVAILABLE_IN_2_44
  48. GObject * g_list_model_get_object (GListModel *list,
  49. guint position);
  50. GLIB_AVAILABLE_IN_2_44
  51. void g_list_model_items_changed (GListModel *list,
  52. guint position,
  53. guint removed,
  54. guint added);
  55. G_END_DECLS
  56. #endif /* __G_LIST_MODEL_H__ */