]> Pileus Git - ~andy/gtk/blob - gtk/gtkentrycompletion.h
Fix parameter name mismatches which confuse gtk-doc.
[~andy/gtk] / gtk / gtkentrycompletion.h
1 /* gtkentrycompletion.h
2  * Copyright (C) 2003  Kristian Rietveld  <kris@gtk.org>
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_ENTRY_COMPLETION_H__
21 #define __GTK_ENTRY_COMPLETION_H__
22
23 #include <glib-object.h>
24
25 #include <gtk/gtktreemodel.h>
26 #include <gtk/gtkliststore.h>
27 #include <gtk/gtktreeviewcolumn.h>
28 #include <gtk/gtktreemodelfilter.h>
29
30 G_BEGIN_DECLS
31
32 #define GTK_TYPE_ENTRY_COMPLETION            (gtk_entry_completion_get_type ())
33 #define GTK_ENTRY_COMPLETION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ENTRY_COMPLETION, GtkEntryCompletion))
34 #define GTK_ENTRY_COMPLETION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ENTRY_COMPLETION, GtkEntryCompletionClass))
35 #define GTK_IS_ENTRY_COMPLETION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ENTRY_COMPLETION))
36 #define GTK_IS_ENTRY_COMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ENTRY_COMPLETION))
37 #define GTK_ENTRY_COMPLETION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ENTRY_COMPLETION, GtkEntryCompletionClass))
38 #define GTK_ENTRY_COMPLETION_GET_PRIVATE(obj)(G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_ENTRY_COMPLETION, GtkEntryCompletionPrivate))
39
40 typedef struct _GtkEntryCompletion            GtkEntryCompletion;
41 typedef struct _GtkEntryCompletionClass       GtkEntryCompletionClass;
42 typedef struct _GtkEntryCompletionPrivate     GtkEntryCompletionPrivate;
43
44 typedef gboolean (* GtkEntryCompletionMatchFunc) (GtkEntryCompletion *completion,
45                                                   const gchar        *key,
46                                                   GtkTreeIter        *iter,
47                                                   gpointer            user_data);
48
49
50 struct _GtkEntryCompletion
51 {
52   GObject parent_instance;
53
54   /*< private >*/
55   GtkEntryCompletionPrivate *priv;
56 };
57
58 struct _GtkEntryCompletionClass
59 {
60   GObjectClass parent_class;
61
62   gboolean (* match_selected)   (GtkEntryCompletion *completion,
63                                  GtkTreeModel       *model,
64                                  GtkTreeIter        *iter);
65   void     (* action_activated) (GtkEntryCompletion *completion,
66                                  gint                index);
67
68   /* Padding for future expansion */
69   void (*_gtk_reserved0) (void);
70   void (*_gtk_reserved1) (void);
71   void (*_gtk_reserved2) (void);
72   void (*_gtk_reserved3) (void);
73 };
74
75 /* core */
76 GType               gtk_entry_completion_get_type               (void);
77 GtkEntryCompletion *gtk_entry_completion_new                    (void);
78
79 GtkWidget          *gtk_entry_completion_get_entry              (GtkEntryCompletion          *completion);
80
81 void                gtk_entry_completion_set_model              (GtkEntryCompletion          *completion,
82                                                                  GtkTreeModel                *model);
83 GtkTreeModel       *gtk_entry_completion_get_model              (GtkEntryCompletion          *completion);
84
85 void                gtk_entry_completion_set_match_func         (GtkEntryCompletion          *completion,
86                                                                  GtkEntryCompletionMatchFunc  func,
87                                                                  gpointer                     func_data,
88                                                                  GDestroyNotify               func_notify);
89 void                gtk_entry_completion_set_minimum_key_length (GtkEntryCompletion          *completion,
90                                                                  gint                         length);
91 gint                gtk_entry_completion_get_minimum_key_length (GtkEntryCompletion          *completion);
92 void                gtk_entry_completion_complete               (GtkEntryCompletion          *completion);
93
94 void                gtk_entry_completion_insert_action_text     (GtkEntryCompletion          *completion,
95                                                                  gint                         index,
96                                                                  const gchar                 *text);
97 void                gtk_entry_completion_insert_action_markup   (GtkEntryCompletion          *completion,
98                                                                  gint                         index,
99                                                                  const gchar                 *markup);
100 void                gtk_entry_completion_delete_action          (GtkEntryCompletion          *completion,
101                                                                  gint                         index);
102
103 /* convenience */
104 void                gtk_entry_completion_set_text_column        (GtkEntryCompletion          *completion,
105                                                                  gint                         column);
106
107 G_END_DECLS
108
109 #endif /* __GTK_ENTRY_COMPLETION_H__ */