選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

126 行
5.8 KiB

  1. /* gtktreeselection.h
  2. * Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
  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_SELECTION_H__
  23. #define __GTK_TREE_SELECTION_H__
  24. #include <gtk/gtktreeview.h>
  25. G_BEGIN_DECLS
  26. #define GTK_TYPE_TREE_SELECTION (gtk_tree_selection_get_type ())
  27. #define GTK_TREE_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TREE_SELECTION, GtkTreeSelection))
  28. #define GTK_TREE_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TREE_SELECTION, GtkTreeSelectionClass))
  29. #define GTK_IS_TREE_SELECTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TREE_SELECTION))
  30. #define GTK_IS_TREE_SELECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TREE_SELECTION))
  31. #define GTK_TREE_SELECTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TREE_SELECTION, GtkTreeSelectionClass))
  32. typedef gboolean (* GtkTreeSelectionFunc) (GtkTreeSelection *selection,
  33. GtkTreeModel *model,
  34. GtkTreePath *path,
  35. gboolean path_currently_selected,
  36. gpointer data);
  37. typedef void (* GtkTreeSelectionForeachFunc) (GtkTreeModel *model,
  38. GtkTreePath *path,
  39. GtkTreeIter *iter,
  40. gpointer data);
  41. struct _GtkTreeSelection
  42. {
  43. GObject parent;
  44. /*< private >*/
  45. GtkTreeView *GSEAL (tree_view);
  46. GtkSelectionMode GSEAL (type);
  47. GtkTreeSelectionFunc GSEAL (user_func);
  48. gpointer GSEAL (user_data);
  49. GDestroyNotify GSEAL (destroy);
  50. };
  51. struct _GtkTreeSelectionClass
  52. {
  53. GObjectClass parent_class;
  54. void (* changed) (GtkTreeSelection *selection);
  55. /* Padding for future expansion */
  56. void (*_gtk_reserved1) (void);
  57. void (*_gtk_reserved2) (void);
  58. void (*_gtk_reserved3) (void);
  59. void (*_gtk_reserved4) (void);
  60. };
  61. GType gtk_tree_selection_get_type (void) G_GNUC_CONST;
  62. void gtk_tree_selection_set_mode (GtkTreeSelection *selection,
  63. GtkSelectionMode type);
  64. GtkSelectionMode gtk_tree_selection_get_mode (GtkTreeSelection *selection);
  65. void gtk_tree_selection_set_select_function (GtkTreeSelection *selection,
  66. GtkTreeSelectionFunc func,
  67. gpointer data,
  68. GDestroyNotify destroy);
  69. gpointer gtk_tree_selection_get_user_data (GtkTreeSelection *selection);
  70. GtkTreeView* gtk_tree_selection_get_tree_view (GtkTreeSelection *selection);
  71. GtkTreeSelectionFunc gtk_tree_selection_get_select_function (GtkTreeSelection *selection);
  72. /* Only meaningful if GTK_SELECTION_SINGLE or GTK_SELECTION_BROWSE is set */
  73. /* Use selected_foreach or get_selected_rows for GTK_SELECTION_MULTIPLE */
  74. gboolean gtk_tree_selection_get_selected (GtkTreeSelection *selection,
  75. GtkTreeModel **model,
  76. GtkTreeIter *iter);
  77. GList * gtk_tree_selection_get_selected_rows (GtkTreeSelection *selection,
  78. GtkTreeModel **model);
  79. gint gtk_tree_selection_count_selected_rows (GtkTreeSelection *selection);
  80. void gtk_tree_selection_selected_foreach (GtkTreeSelection *selection,
  81. GtkTreeSelectionForeachFunc func,
  82. gpointer data);
  83. void gtk_tree_selection_select_path (GtkTreeSelection *selection,
  84. GtkTreePath *path);
  85. void gtk_tree_selection_unselect_path (GtkTreeSelection *selection,
  86. GtkTreePath *path);
  87. void gtk_tree_selection_select_iter (GtkTreeSelection *selection,
  88. GtkTreeIter *iter);
  89. void gtk_tree_selection_unselect_iter (GtkTreeSelection *selection,
  90. GtkTreeIter *iter);
  91. gboolean gtk_tree_selection_path_is_selected (GtkTreeSelection *selection,
  92. GtkTreePath *path);
  93. gboolean gtk_tree_selection_iter_is_selected (GtkTreeSelection *selection,
  94. GtkTreeIter *iter);
  95. void gtk_tree_selection_select_all (GtkTreeSelection *selection);
  96. void gtk_tree_selection_unselect_all (GtkTreeSelection *selection);
  97. void gtk_tree_selection_select_range (GtkTreeSelection *selection,
  98. GtkTreePath *start_path,
  99. GtkTreePath *end_path);
  100. void gtk_tree_selection_unselect_range (GtkTreeSelection *selection,
  101. GtkTreePath *start_path,
  102. GtkTreePath *end_path);
  103. G_END_DECLS
  104. #endif /* __GTK_TREE_SELECTION_H__ */