]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkentryprivate.h
Don't activate insensitive widgets
[~andy/gtk] / gtk / gtkentryprivate.h
index 43eff46b0822c2d97218fa57df799c54e96889b0..baf0b9fe1fc7c0fb76b3cee79968e3b6ee8c9b39 100644 (file)
@@ -24,6 +24,7 @@
 #include <gtk/gtktreemodelfilter.h>
 #include <gtk/gtkliststore.h>
 #include <gtk/gtkentrycompletion.h>
+#include <gtk/gtkentry.h>
 
 G_BEGIN_DECLS
 
@@ -62,13 +63,27 @@ struct _GtkEntryCompletionPrivate
   guint inline_completion : 1;
   guint popup_completion  : 1;
   guint popup_set_width   : 1;
+  guint popup_single_match : 1;
+  guint inline_selection   : 1;
+
+  gchar *completion_prefix;
+
   GSource *check_completion_idle;
+
+  GdkDevice *grab_device;
 };
 
-gboolean            _gtk_entry_completion_resize_popup           (GtkEntryCompletion          *completion);
-void                _gtk_entry_completion_popup                  (GtkEntryCompletion          *completion);
-void                _gtk_entry_completion_popdown                (GtkEntryCompletion          *completion);
+gboolean _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion);
+void     _gtk_entry_completion_popup        (GtkEntryCompletion *completion,
+                                             GdkDevice          *device);
+void     _gtk_entry_completion_popdown      (GtkEntryCompletion *completion);
 
+void      _gtk_entry_get_borders            (GtkEntry  *entry,
+                                            gint      *xborder,
+                                            gint      *yborder);
+void     _gtk_entry_effective_inner_border (GtkEntry  *entry,
+                                           GtkBorder *border);
+void     _gtk_entry_reset_im_context       (GtkEntry  *entry);
 G_END_DECLS
 
 #endif /* __GTK_ENTRY_PRIVATE_H__ */