summaryrefslogtreecommitdiff
path: root/gtk/gtkentryprivate.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-06-22 14:12:45 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-06-22 14:43:36 -0400
commit67a7ad069fbee4f53c05ba5d91bc50044cb4b913 (patch)
treeebee804fb83360cb7f63c9b1e18a5d16266220ea /gtk/gtkentryprivate.h
parentfb148027d91da293953293a367f6a7279e047445 (diff)
downloadgtk+-67a7ad069fbee4f53c05ba5d91bc50044cb4b913.tar.gz
entrycompletion: Drop action support
This api has not really been kept up with current user experiences in popups, and we're better off just dropping it and letting people do their own popups if they need custom UI.
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r--gtk/gtkentryprivate.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h
index af5e24cd8c..895fada177 100644
--- a/gtk/gtkentryprivate.h
+++ b/gtk/gtkentryprivate.h
@@ -48,8 +48,6 @@ struct _GtkEntryCompletionClass
gboolean (* match_selected) (GtkEntryCompletion *completion,
GtkTreeModel *model,
GtkTreeIter *iter);
- void (* action_activated) (GtkEntryCompletion *completion,
- gint index_);
gboolean (* insert_prefix) (GtkEntryCompletion *completion,
const gchar *prefix);
gboolean (* cursor_on_match) (GtkEntryCompletion *completion,
@@ -65,7 +63,6 @@ struct _GtkEntryCompletionPrivate
GtkWidget *tree_view;
GtkTreeViewColumn *column;
GtkTreeModelFilter *filter_model;
- GtkListStore *actions;
GtkCellArea *cell_area;
GtkEntryCompletionMatchFunc match_func;
@@ -82,9 +79,7 @@ struct _GtkEntryCompletionPrivate
/* only used by GtkEntry when attached: */
GtkWidget *popup_window;
- GtkWidget *vbox;
GtkWidget *scrolled_window;
- GtkWidget *action_view;
gulong completion_timeout;
gulong changed_id;