diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-14 07:02:32 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-14 07:05:13 -0500 |
commit | f217af54ca7694e497b50a876062de7ed4633825 (patch) | |
tree | 3b9f9f374a5e08813c3a891bb16003bc69b3caed /gtk/gtkappchooserprivate.h | |
parent | e30f5dd00dea61f0e55d92701bac8d4dea6c88c2 (diff) | |
download | gtk+-f217af54ca7694e497b50a876062de7ed4633825.tar.gz |
app chooser: Add a search bar
This replaces the treeview typeahead popup with a GtkSearchBar,
and adds a search button to the header bar (if we have one).
https://bugzilla.gnome.org/show_bug.cgi?id=724218
Diffstat (limited to 'gtk/gtkappchooserprivate.h')
-rw-r--r-- | gtk/gtkappchooserprivate.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtkappchooserprivate.h b/gtk/gtkappchooserprivate.h index f35df37388..609bc18600 100644 --- a/gtk/gtkappchooserprivate.h +++ b/gtk/gtkappchooserprivate.h @@ -27,6 +27,7 @@ #include "gtkappchooser.h" #include "gtkappchooserwidget.h" +#include "gtkentry.h" typedef struct _GtkAppChooserIface GtkAppChooserIface; typedef GtkAppChooserIface GtkAppChooserInterface; @@ -40,4 +41,8 @@ struct _GtkAppChooserIface { void (* refresh) (GtkAppChooser *object); }; +void +_gtk_app_chooser_widget_set_search_entry (GtkAppChooserWidget *self, + GtkEntry *entry); + #endif /* __GTK_APP_CHOOSER_PRIVATE_H__ */ |