]> Pileus Git - ~andy/gtk/blob - gtk/gtkentryprivate.h
Typo fix.
[~andy/gtk] / gtk / gtkentryprivate.h
1 /* gtkentryprivate.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_PRIVATE_H__
21 #define __GTK_ENTRY_PRIVATE_H__
22
23 #include <gtk/gtktreeviewcolumn.h>
24 #include <gtk/gtktreemodelfilter.h>
25 #include <gtk/gtkliststore.h>
26 #include <gtk/gtkentrycompletion.h>
27
28 G_BEGIN_DECLS
29
30 struct _GtkEntryCompletionPrivate
31 {
32   GtkWidget *entry;
33
34   GtkWidget *tree_view;
35   GtkTreeViewColumn *column;
36   GtkTreeModelFilter *filter_model;
37   GtkListStore *actions;
38   gboolean first_sel_changed;
39
40   GtkEntryCompletionMatchFunc match_func;
41   gpointer match_data;
42   GDestroyNotify match_notify;
43
44   gint minimum_key_length;
45   gint text_column;
46   gint current_selected;
47
48   gchar *case_normalized_key;
49
50   /* only used by GtkEntry when attached: */
51   GtkWidget *popup_window;
52   GtkWidget *vbox;
53   GtkWidget *scrolled_window;
54   GtkWidget *action_view;
55
56   gulong completion_timeout;
57   gulong changed_id;
58   gulong key_press_id;
59   gulong key_release_id;
60
61   gboolean may_wrap;
62 };
63
64 gboolean            _gtk_entry_completion_resize_popup           (GtkEntryCompletion          *completion);
65 void                _gtk_entry_completion_popup                  (GtkEntryCompletion          *completion);
66 void                _gtk_entry_completion_popdown                (GtkEntryCompletion          *completion);
67
68 G_END_DECLS
69
70 #endif /* __GTK_ENTRY_PRIVATE_H__ */