]> Pileus Git - ~andy/gtk/blob - gtk/gtkentryprivate.h
stylecontext: Do invalidation on first resize container
[~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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GTK_ENTRY_PRIVATE_H__
19 #define __GTK_ENTRY_PRIVATE_H__
20
21 #include <gtk/gtktreeviewcolumn.h>
22 #include <gtk/gtktreemodelfilter.h>
23 #include <gtk/gtkliststore.h>
24 #include <gtk/gtkentrycompletion.h>
25 #include <gtk/gtkentry.h>
26
27 G_BEGIN_DECLS
28
29 struct _GtkEntryCompletionPrivate
30 {
31   GtkWidget *entry;
32
33   GtkWidget *tree_view;
34   GtkTreeViewColumn *column;
35   GtkTreeModelFilter *filter_model;
36   GtkListStore *actions;
37   gboolean first_sel_changed;
38   GtkCellArea *cell_area;
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 insert_text_id;
59
60   guint ignore_enter      : 1;
61   guint has_completion    : 1;
62   guint inline_completion : 1;
63   guint popup_completion  : 1;
64   guint popup_set_width   : 1;
65   guint popup_single_match : 1;
66   guint inline_selection   : 1;
67   guint has_grab           : 1;
68
69   gchar *completion_prefix;
70
71   GSource *check_completion_idle;
72
73   GdkDevice *device;
74 };
75
76 gboolean _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion);
77 void     _gtk_entry_completion_popdown      (GtkEntryCompletion *completion);
78 void     _gtk_entry_completion_connect      (GtkEntryCompletion *completion,
79                                              GtkEntry           *entry);
80 void     _gtk_entry_completion_disconnect   (GtkEntryCompletion *completion);
81
82 gchar*   _gtk_entry_get_display_text       (GtkEntry *entry,
83                                             gint      start_pos,
84                                             gint      end_pos);
85 void     _gtk_entry_get_borders            (GtkEntry  *entry,
86                                             GtkBorder *borders);
87 GtkIMContext* _gtk_entry_get_im_context    (GtkEntry  *entry);
88 void     _gtk_entry_set_is_cell_renderer   (GtkEntry  *entry,
89                                             gboolean   is_cell_renderer);
90
91
92 G_END_DECLS
93
94 #endif /* __GTK_ENTRY_PRIVATE_H__ */