2003-07-11 12:51:24 +00:00
|
|
|
|
/* gtkentrycompletion.c
|
|
|
|
|
* Copyright (C) 2003 Kristian Rietveld <kris@gtk.org>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-07-11 12:51:24 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkentrycompletion
|
|
|
|
|
* @Short_description: Completion functionality for GtkEntry
|
|
|
|
|
* @Title: GtkEntryCompletion
|
|
|
|
|
*
|
|
|
|
|
* #GtkEntryCompletion is an auxiliary object to be used in conjunction with
|
|
|
|
|
* #GtkEntry to provide the completion functionality. It implements the
|
|
|
|
|
* #GtkCellLayout interface, to allow the user to add extra cells to the
|
|
|
|
|
* #GtkTreeView with completion matches.
|
|
|
|
|
*
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* “Completion functionality” means that when the user modifies the text
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* in the entry, #GtkEntryCompletion checks which rows in the model match
|
|
|
|
|
* the current content of the entry, and displays a list of matches.
|
|
|
|
|
* By default, the matching is done by comparing the entry text
|
|
|
|
|
* case-insensitively against the text column of the model (see
|
|
|
|
|
* gtk_entry_completion_set_text_column()), but this can be overridden
|
|
|
|
|
* with a custom match function (see gtk_entry_completion_set_match_func()).
|
|
|
|
|
*
|
|
|
|
|
* When the user selects a completion, the content of the entry is
|
|
|
|
|
* updated. By default, the content of the entry is replaced by the
|
|
|
|
|
* text column of the model, but this can be overridden by connecting
|
|
|
|
|
* to the #GtkEntryCompletion::match-selected signal and updating the
|
|
|
|
|
* entry in the signal handler. Note that you should return %TRUE from
|
|
|
|
|
* the signal handler to suppress the default behaviour.
|
|
|
|
|
*
|
|
|
|
|
* To add completion functionality to an entry, use gtk_entry_set_completion().
|
|
|
|
|
*
|
|
|
|
|
* In addition to regular completion matches, which will be inserted into the
|
|
|
|
|
* entry when they are selected, #GtkEntryCompletion also allows to display
|
2014-02-05 18:07:34 +00:00
|
|
|
|
* “actions” in the popup window. Their appearance is similar to menuitems,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* to differentiate them clearly from completion strings. When an action is
|
|
|
|
|
* selected, the #GtkEntryCompletion::action-activated signal is emitted.
|
2011-01-31 23:49:20 +00:00
|
|
|
|
*
|
|
|
|
|
* GtkEntryCompletion uses a #GtkTreeModelFilter model to represent the
|
|
|
|
|
* subset of the entire model that is currently matching. While the
|
|
|
|
|
* GtkEntryCompletion signals #GtkEntryCompletion::match-selected and
|
|
|
|
|
* #GtkEntryCompletion::cursor-on-match take the original model and an
|
|
|
|
|
* iter pointing to that model as arguments, other callbacks and signals
|
|
|
|
|
* (such as #GtkCellLayoutDataFuncs or #GtkCellArea::apply-attributes)
|
|
|
|
|
* will generally take the filter model as argument. As long as you are
|
|
|
|
|
* only calling gtk_tree_model_get(), this will make no difference to
|
|
|
|
|
* you. If for some reason, you need the original model, use
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* gtk_tree_model_filter_get_model(). Don’t forget to use
|
2011-01-31 23:49:20 +00:00
|
|
|
|
* gtk_tree_model_filter_convert_iter_to_child_iter() to obtain a
|
|
|
|
|
* matching iter.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2010-09-14 01:33:06 +00:00
|
|
|
|
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtkentrycompletion.h"
|
2010-09-14 01:33:06 +00:00
|
|
|
|
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtkentryprivate.h"
|
|
|
|
|
#include "gtkcelllayout.h"
|
2010-12-04 07:55:49 +00:00
|
|
|
|
#include "gtkcellareabox.h"
|
2003-10-23 18:25:53 +00:00
|
|
|
|
|
|
|
|
|
#include "gtkintl.h"
|
|
|
|
|
#include "gtkcellrenderertext.h"
|
2004-04-12 19:40:22 +00:00
|
|
|
|
#include "gtkframe.h"
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtktreeselection.h"
|
|
|
|
|
#include "gtktreeview.h"
|
|
|
|
|
#include "gtkscrolledwindow.h"
|
2010-09-14 01:33:06 +00:00
|
|
|
|
#include "gtksizerequest.h"
|
2011-08-28 05:40:10 +00:00
|
|
|
|
#include "gtkbox.h"
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtkwindow.h"
|
2014-06-04 10:18:03 +00:00
|
|
|
|
#include "gtkwindowgroup.h"
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtkentry.h"
|
2011-10-23 11:57:07 +00:00
|
|
|
|
#include "gtkmain.h"
|
2003-10-23 18:25:53 +00:00
|
|
|
|
#include "gtkmarshalers.h"
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2005-03-22 02:14:55 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2014-08-21 15:36:45 +00:00
|
|
|
|
#include "gtkwindowprivate.h"
|
2017-06-28 06:19:35 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
#define PAGE_STEP 14
|
2015-12-05 19:12:27 +00:00
|
|
|
|
#define COMPLETION_TIMEOUT 100
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
/* signals */
|
|
|
|
|
enum
|
|
|
|
|
{
|
2004-07-19 18:15:48 +00:00
|
|
|
|
INSERT_PREFIX,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
MATCH_SELECTED,
|
|
|
|
|
ACTION_ACTIVATED,
|
2007-04-27 16:50:04 +00:00
|
|
|
|
CURSOR_ON_MATCH,
|
2014-06-27 16:41:09 +00:00
|
|
|
|
NO_MATCHES,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
LAST_SIGNAL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* properties */
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_MODEL,
|
2004-05-27 04:46:42 +00:00
|
|
|
|
PROP_MINIMUM_KEY_LENGTH,
|
2004-07-19 18:15:48 +00:00
|
|
|
|
PROP_TEXT_COLUMN,
|
|
|
|
|
PROP_INLINE_COMPLETION,
|
2005-04-04 05:15:32 +00:00
|
|
|
|
PROP_POPUP_COMPLETION,
|
2005-05-26 20:36:36 +00:00
|
|
|
|
PROP_POPUP_SET_WIDTH,
|
2007-04-27 16:50:04 +00:00
|
|
|
|
PROP_POPUP_SINGLE_MATCH,
|
2010-12-04 07:55:49 +00:00
|
|
|
|
PROP_INLINE_SELECTION,
|
2015-09-06 02:35:22 +00:00
|
|
|
|
PROP_CELL_AREA,
|
|
|
|
|
NUM_PROPERTIES
|
2003-07-11 12:51:24 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
static void gtk_entry_completion_cell_layout_init (GtkCellLayoutIface *iface);
|
|
|
|
|
static GtkCellArea* gtk_entry_completion_get_area (GtkCellLayout *cell_layout);
|
|
|
|
|
|
2014-06-26 22:22:42 +00:00
|
|
|
|
static void gtk_entry_completion_constructed (GObject *object);
|
2007-04-28 07:47:08 +00:00
|
|
|
|
static void gtk_entry_completion_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_entry_completion_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
2010-12-04 07:55:49 +00:00
|
|
|
|
static void gtk_entry_completion_finalize (GObject *object);
|
|
|
|
|
static void gtk_entry_completion_dispose (GObject *object);
|
2007-04-28 07:47:08 +00:00
|
|
|
|
|
|
|
|
|
static gboolean gtk_entry_completion_visible_func (GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
|
gpointer data);
|
|
|
|
|
static gboolean gtk_entry_completion_popup_key_event (GtkWidget *widget,
|
|
|
|
|
GdkEventKey *event,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static gboolean gtk_entry_completion_popup_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static gboolean gtk_entry_completion_list_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static gboolean gtk_entry_completion_action_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static void gtk_entry_completion_selection_changed (GtkTreeSelection *selection,
|
|
|
|
|
gpointer data);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
static gboolean gtk_entry_completion_list_enter_notify (GtkWidget *widget,
|
|
|
|
|
GdkEventCrossing *event,
|
|
|
|
|
gpointer data);
|
|
|
|
|
static gboolean gtk_entry_completion_list_motion_notify (GtkWidget *widget,
|
|
|
|
|
GdkEventMotion *event,
|
|
|
|
|
gpointer data);
|
2007-04-28 07:47:08 +00:00
|
|
|
|
static void gtk_entry_completion_insert_action (GtkEntryCompletion *completion,
|
|
|
|
|
gint index,
|
|
|
|
|
const gchar *string,
|
|
|
|
|
gboolean markup);
|
|
|
|
|
static void gtk_entry_completion_action_data_func (GtkTreeViewColumn *tree_column,
|
|
|
|
|
GtkCellRenderer *cell,
|
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
|
gpointer data);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2004-05-10 19:10:27 +00:00
|
|
|
|
static gboolean gtk_entry_completion_match_selected (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
static gboolean gtk_entry_completion_real_insert_prefix (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
const gchar *prefix);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
static gboolean gtk_entry_completion_cursor_on_match (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter);
|
2007-04-28 07:47:08 +00:00
|
|
|
|
static gboolean gtk_entry_completion_insert_completion (GtkEntryCompletion *completion,
|
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter);
|
|
|
|
|
static void gtk_entry_completion_insert_completion_text (GtkEntryCompletion *completion,
|
|
|
|
|
const gchar *text);
|
2012-08-31 14:47:23 +00:00
|
|
|
|
static void connect_completion_signals (GtkEntryCompletion *completion);
|
|
|
|
|
static void disconnect_completion_signals (GtkEntryCompletion *completion);
|
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
static GParamSpec *entry_completion_props[NUM_PROPERTIES] = { NULL, };
|
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
static guint entry_completion_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
|
/* GtkBuildable */
|
|
|
|
|
static void gtk_entry_completion_buildable_init (GtkBuildableIface *iface);
|
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkEntryCompletion, gtk_entry_completion, G_TYPE_OBJECT,
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_ADD_PRIVATE (GtkEntryCompletion)
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_LAYOUT,
|
|
|
|
|
gtk_entry_completion_cell_layout_init)
|
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
|
|
|
|
|
gtk_entry_completion_buildable_init))
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_class_init (GtkEntryCompletionClass *klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class;
|
|
|
|
|
|
|
|
|
|
object_class = (GObjectClass *)klass;
|
|
|
|
|
|
2014-06-26 22:22:42 +00:00
|
|
|
|
object_class->constructed = gtk_entry_completion_constructed;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
object_class->set_property = gtk_entry_completion_set_property;
|
|
|
|
|
object_class->get_property = gtk_entry_completion_get_property;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
object_class->dispose = gtk_entry_completion_dispose;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
object_class->finalize = gtk_entry_completion_finalize;
|
|
|
|
|
|
2004-05-10 19:10:27 +00:00
|
|
|
|
klass->match_selected = gtk_entry_completion_match_selected;
|
2004-07-19 18:15:48 +00:00
|
|
|
|
klass->insert_prefix = gtk_entry_completion_real_insert_prefix;
|
2007-04-27 16:50:04 +00:00
|
|
|
|
klass->cursor_on_match = gtk_entry_completion_cursor_on_match;
|
2014-06-27 16:41:09 +00:00
|
|
|
|
klass->no_matches = NULL;
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion::insert-prefix:
|
|
|
|
|
* @widget: the object which received the signal
|
|
|
|
|
* @prefix: the common prefix of all possible completions
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
|
|
|
|
* Gets emitted when the inline autocompletion is triggered.
|
|
|
|
|
* The default behaviour is to make the entry display the
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* whole prefix and select the newly inserted part.
|
|
|
|
|
*
|
|
|
|
|
* Applications may connect to this signal in order to insert only a
|
|
|
|
|
* smaller part of the @prefix into the entry - e.g. the entry used in
|
2010-05-22 03:50:46 +00:00
|
|
|
|
* the #GtkFileChooser inserts only the part of the prefix up to the
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* next '/'.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the signal has been handled
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*/
|
2004-07-19 18:15:48 +00:00
|
|
|
|
entry_completion_signals[INSERT_PREFIX] =
|
2008-08-11 12:54:57 +00:00
|
|
|
|
g_signal_new (I_("insert-prefix"),
|
2004-07-19 18:15:48 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkEntryCompletionClass, insert_prefix),
|
|
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
|
|
|
|
_gtk_marshal_BOOLEAN__STRING,
|
|
|
|
|
G_TYPE_BOOLEAN, 1,
|
|
|
|
|
G_TYPE_STRING);
|
2004-05-10 19:10:27 +00:00
|
|
|
|
|
2004-03-15 01:32:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion::match-selected:
|
|
|
|
|
* @widget: the object which received the signal
|
|
|
|
|
* @model: the #GtkTreeModel containing the matches
|
|
|
|
|
* @iter: a #GtkTreeIter positioned at the selected match
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
|
|
|
|
* Gets emitted when a match from the list is selected.
|
|
|
|
|
* The default behaviour is to replace the contents of the
|
|
|
|
|
* entry with the contents of the text column in the row
|
2004-10-31 18:01:07 +00:00
|
|
|
|
* pointed to by @iter.
|
2004-03-15 01:32:20 +00:00
|
|
|
|
*
|
2011-01-31 23:49:20 +00:00
|
|
|
|
* Note that @model is the model that was passed to
|
|
|
|
|
* gtk_entry_completion_set_model().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the signal has been handled
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.4
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
entry_completion_signals[MATCH_SELECTED] =
|
2008-08-11 12:54:57 +00:00
|
|
|
|
g_signal_new (I_("match-selected"),
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkEntryCompletionClass, match_selected),
|
|
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
|
|
|
|
_gtk_marshal_BOOLEAN__OBJECT_BOXED,
|
|
|
|
|
G_TYPE_BOOLEAN, 2,
|
|
|
|
|
GTK_TYPE_TREE_MODEL,
|
|
|
|
|
GTK_TYPE_TREE_ITER);
|
2010-05-22 03:50:46 +00:00
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion::cursor-on-match:
|
|
|
|
|
* @widget: the object which received the signal
|
|
|
|
|
* @model: the #GtkTreeModel containing the matches
|
|
|
|
|
* @iter: a #GtkTreeIter positioned at the selected match
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
2007-04-27 16:50:04 +00:00
|
|
|
|
* Gets emitted when a match from the cursor is on a match
|
2010-05-22 03:50:46 +00:00
|
|
|
|
* of the list. The default behaviour is to replace the contents
|
|
|
|
|
* of the entry with the contents of the text column in the row
|
2007-04-27 16:50:04 +00:00
|
|
|
|
* pointed to by @iter.
|
|
|
|
|
*
|
2011-01-31 23:49:20 +00:00
|
|
|
|
* Note that @model is the model that was passed to
|
|
|
|
|
* gtk_entry_completion_set_model().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the signal has been handled
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*
|
2007-04-27 16:50:04 +00:00
|
|
|
|
* Since: 2.12
|
2010-05-22 03:50:46 +00:00
|
|
|
|
*/
|
2007-04-27 16:50:04 +00:00
|
|
|
|
entry_completion_signals[CURSOR_ON_MATCH] =
|
2008-08-11 12:54:57 +00:00
|
|
|
|
g_signal_new (I_("cursor-on-match"),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkEntryCompletionClass, cursor_on_match),
|
|
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
|
|
|
|
_gtk_marshal_BOOLEAN__OBJECT_BOXED,
|
|
|
|
|
G_TYPE_BOOLEAN, 2,
|
|
|
|
|
GTK_TYPE_TREE_MODEL,
|
|
|
|
|
GTK_TYPE_TREE_ITER);
|
2010-05-22 03:50:46 +00:00
|
|
|
|
|
2014-06-27 16:41:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion::no-matches:
|
|
|
|
|
* @widget: the object which received the signal
|
|
|
|
|
*
|
|
|
|
|
* Gets emitted when the filter model has zero
|
|
|
|
|
* number of rows in completion_complete method.
|
|
|
|
|
* (In other words when GtkEntryCompletion is out of
|
|
|
|
|
* suggestions)
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
entry_completion_signals[NO_MATCHES] =
|
|
|
|
|
g_signal_new (I_("no-matches"),
|
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkEntryCompletionClass, no_matches),
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
|
|
2004-03-15 01:32:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion::action-activated:
|
|
|
|
|
* @widget: the object which received the signal
|
|
|
|
|
* @index: the index of the activated action
|
|
|
|
|
*
|
2004-10-31 18:01:07 +00:00
|
|
|
|
* Gets emitted when an action is activated.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.4
|
2004-03-15 01:32:20 +00:00
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
entry_completion_signals[ACTION_ACTIVATED] =
|
2008-08-11 12:54:57 +00:00
|
|
|
|
g_signal_new (I_("action-activated"),
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkEntryCompletionClass, action_activated),
|
|
|
|
|
NULL, NULL,
|
2016-08-29 14:00:17 +00:00
|
|
|
|
NULL,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
|
G_TYPE_INT);
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_MODEL] =
|
|
|
|
|
g_param_spec_object ("model",
|
|
|
|
|
P_("Completion Model"),
|
|
|
|
|
P_("The model to find matches in"),
|
|
|
|
|
GTK_TYPE_TREE_MODEL,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
|
|
|
|
|
|
|
|
|
entry_completion_props[PROP_MINIMUM_KEY_LENGTH] =
|
|
|
|
|
g_param_spec_int ("minimum-key-length",
|
|
|
|
|
P_("Minimum Key Length"),
|
|
|
|
|
P_("Minimum length of the search key in order to look up matches"),
|
|
|
|
|
0, G_MAXINT, 1,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2004-05-27 04:46:42 +00:00
|
|
|
|
/**
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* GtkEntryCompletion:text-column:
|
2004-05-27 04:46:42 +00:00
|
|
|
|
*
|
|
|
|
|
* The column of the model containing the strings.
|
2007-10-17 03:09:12 +00:00
|
|
|
|
* Note that the strings must be UTF-8.
|
2004-05-27 04:46:42 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.6
|
|
|
|
|
*/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_TEXT_COLUMN] =
|
|
|
|
|
g_param_spec_int ("text-column",
|
|
|
|
|
P_("Text column"),
|
|
|
|
|
P_("The column of the model containing the strings."),
|
|
|
|
|
-1, G_MAXINT, -1,
|
|
|
|
|
GTK_PARAM_READWRITE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
/**
|
2004-10-31 18:01:07 +00:00
|
|
|
|
* GtkEntryCompletion:inline-completion:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
|
|
|
|
* Determines whether the common prefix of the possible completions
|
2005-03-15 15:00:11 +00:00
|
|
|
|
* should be inserted automatically in the entry. Note that this
|
|
|
|
|
* requires text-column to be set, even if you are using a custom
|
|
|
|
|
* match function.
|
2004-07-19 18:15:48 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.6
|
|
|
|
|
**/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_INLINE_COMPLETION] =
|
|
|
|
|
g_param_spec_boolean ("inline-completion",
|
|
|
|
|
P_("Inline completion"),
|
|
|
|
|
P_("Whether the common prefix should be inserted automatically"),
|
|
|
|
|
FALSE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2014-06-08 15:34:28 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
/**
|
2004-10-31 18:01:07 +00:00
|
|
|
|
* GtkEntryCompletion:popup-completion:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
|
|
|
|
* Determines whether the possible completions should be
|
|
|
|
|
* shown in a popup window.
|
2004-07-19 18:15:48 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.6
|
|
|
|
|
**/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_POPUP_COMPLETION] =
|
|
|
|
|
g_param_spec_boolean ("popup-completion",
|
|
|
|
|
P_("Popup completion"),
|
|
|
|
|
P_("Whether the completions should be shown in a popup window"),
|
|
|
|
|
TRUE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion:popup-set-width:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2005-04-04 05:15:32 +00:00
|
|
|
|
* Determines whether the completions popup window will be
|
|
|
|
|
* resized to the width of the entry.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.8
|
|
|
|
|
*/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_POPUP_SET_WIDTH] =
|
|
|
|
|
g_param_spec_boolean ("popup-set-width",
|
|
|
|
|
P_("Popup set width"),
|
|
|
|
|
P_("If TRUE, the popup window will have the same size as the entry"),
|
|
|
|
|
TRUE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2005-04-04 05:15:32 +00:00
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion:popup-single-match:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2005-05-26 20:36:36 +00:00
|
|
|
|
* Determines whether the completions popup window will shown
|
|
|
|
|
* for a single possible completion. You probably want to set
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* this to %FALSE if you are using
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* [inline completion][GtkEntryCompletion--inline-completion].
|
2005-05-26 20:36:36 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.8
|
|
|
|
|
*/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_POPUP_SINGLE_MATCH] =
|
|
|
|
|
g_param_spec_boolean ("popup-single-match",
|
|
|
|
|
P_("Popup single match"),
|
|
|
|
|
P_("If TRUE, the popup window will appear for a single match."),
|
|
|
|
|
TRUE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion:inline-selection:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-04-27 16:50:04 +00:00
|
|
|
|
* Determines whether the possible completions on the popup
|
|
|
|
|
* will appear in the entry as you navigate through them.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-04-27 16:50:04 +00:00
|
|
|
|
* Since: 2.12
|
|
|
|
|
*/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_INLINE_SELECTION] =
|
|
|
|
|
g_param_spec_boolean ("inline-selection",
|
|
|
|
|
P_("Inline selection"),
|
|
|
|
|
P_("Your description here"),
|
|
|
|
|
FALSE,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkEntryCompletion:cell-area:
|
|
|
|
|
*
|
|
|
|
|
* The #GtkCellArea used to layout cell renderers in the treeview column.
|
|
|
|
|
*
|
2015-09-06 02:35:22 +00:00
|
|
|
|
* If no area is specified when creating the entry completion with
|
|
|
|
|
* gtk_entry_completion_new_with_area() a horizontally oriented
|
|
|
|
|
* #GtkCellAreaBox will be used.
|
2011-02-24 07:05:41 +00:00
|
|
|
|
*
|
2010-12-04 07:55:49 +00:00
|
|
|
|
* Since: 3.0
|
|
|
|
|
*/
|
2015-09-06 02:35:22 +00:00
|
|
|
|
entry_completion_props[PROP_CELL_AREA] =
|
|
|
|
|
g_param_spec_object ("cell-area",
|
|
|
|
|
P_("Cell Area"),
|
|
|
|
|
P_("The GtkCellArea used to layout cells"),
|
|
|
|
|
GTK_TYPE_CELL_AREA,
|
|
|
|
|
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
|
|
|
|
|
|
|
|
|
|
g_object_class_install_properties (object_class, NUM_PROPERTIES, entry_completion_props);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2010-12-04 08:10:31 +00:00
|
|
|
|
gtk_entry_completion_buildable_custom_tag_end (GtkBuildable *buildable,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkBuilder *builder,
|
|
|
|
|
GObject *child,
|
|
|
|
|
const gchar *tagname,
|
|
|
|
|
gpointer *data)
|
2010-12-04 07:55:49 +00:00
|
|
|
|
{
|
|
|
|
|
/* Just ignore the boolean return from here */
|
|
|
|
|
_gtk_cell_layout_buildable_custom_tag_end (buildable, builder, child, tagname, data);
|
|
|
|
|
}
|
|
|
|
|
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_buildable_init (GtkBuildableIface *iface)
|
|
|
|
|
{
|
2007-06-19 12:23:36 +00:00
|
|
|
|
iface->add_child = _gtk_cell_layout_buildable_add_child;
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
|
iface->custom_tag_start = _gtk_cell_layout_buildable_custom_tag_start;
|
2010-12-04 08:10:31 +00:00
|
|
|
|
iface->custom_tag_end = gtk_entry_completion_buildable_custom_tag_end;
|
Add GtkBuilder, fixes #172535
2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* demos/gtk-demo/Makefile.am:
* demos/gtk-demo/builder.c: (quit_activate), (about_activate),
(do_builder):
* demos/gtk-demo/demo.ui:
* docs/reference/gtk/gtk-docs.sgml:
* docs/reference/gtk/gtk-sections.txt:
* docs/reference/gtk/gtk.types:
* docs/reference/gtk/tmpl/gtkbuildable.sgml:
* docs/reference/gtk/tmpl/gtkbuilder.sgml:
* gtk/Makefile.am:
* gtk/gtk.h:
* gtk/gtk.symbols:
* gtk/gtkaction.c: (gtk_action_buildable_init),
(gtk_action_buildable_set_name), (gtk_action_buildable_get_name):
* gtk/gtkactiongroup.c: (gtk_action_group_get_type),
(gtk_action_group_buildable_init),
(gtk_action_group_buildable_add),
(gtk_action_group_buildable_set_name),
(gtk_action_group_buildable_get_name):
* gtk/gtkbuildable.c: (gtk_buildable_get_type),
(gtk_buildable_set_name), (gtk_buildable_get_name),
(gtk_buildable_add), (gtk_buildable_set_property),
(gtk_buildable_parser_finished), (gtk_buildable_construct_child),
(gtk_buildable_custom_tag_start), (gtk_buildable_custom_tag_end),
(gtk_buildable_custom_finished),
(gtk_buildable_get_internal_child):
* gtk/gtkbuildable.h:
* gtk/gtkbuilder.c: (gtk_builder_class_init), (gtk_builder_init),
(gtk_builder_finalize), (gtk_builder_set_property),
(gtk_builder_get_property), (_gtk_builder_resolve_type_lazily),
(gtk_builder_real_get_type_from_name),
(gtk_builder_get_parameters), (gtk_builder_get_internal_child),
(_gtk_builder_construct), (_gtk_builder_add),
(apply_delayed_properties), (_gtk_builder_finish),
(gtk_builder_new), (gtk_builder_add_from_file),
(gtk_builder_add_from_string), (gtk_builder_get_object),
(object_add_to_list), (gtk_builder_get_objects),
(gtk_builder_set_translation_domain),
(gtk_builder_get_translation_domain),
(gtk_builder_connect_signals_default),
(gtk_builder_connect_signals), (gtk_builder_connect_signals_full),
(gtk_builder_value_from_string),
(gtk_builder_value_from_string_type),
(_gtk_builder_enum_from_string), (_gtk_builder_flags_from_string),
(gtk_builder_get_type_from_name), (gtk_builder_error_quark):
* gtk/gtkbuilder.h:
* gtk/gtkbuilderparser.c: (state_push), (state_peek), (state_pop),
(error_missing_attribute), (error_invalid_attribute),
(error_invalid_tag), (builder_construct), (parse_object),
(free_object_info), (_get_type_by_symbol), (parse_child),
(free_child_info), (parse_property), (free_property_info),
(parse_signal), (_free_signal_info), (parse_interface),
(create_subparser), (free_subparser), (subparser_start),
(subparser_end), (parse_custom), (start_element), (end_element),
(text), (_gtk_builder_parser_parse_buffer):
* gtk/gtkbuilderprivate.h:
* gtk/gtkcelllayout.c: (attributes_start_element),
(attributes_text_element),
(_gtk_cell_layout_buildable_custom_tag_start),
(_gtk_cell_layout_buildable_custom_tag_end),
(_gtk_cell_layout_buildable_add):
* gtk/gtkcelllayout.h:
* gtk/gtkcellview.c: (gtk_cell_view_buildable_init),
(gtk_cell_view_buildable_custom_tag_start),
(gtk_cell_view_buildable_custom_tag_end):
* gtk/gtkcolorseldialog.c:
(gtk_color_selection_dialog_buildable_interface_init),
(gtk_color_selection_dialog_buildable_get_internal_child):
* gtk/gtkcombobox.c: (gtk_combo_box_buildable_init),
(gtk_combo_box_buildable_custom_tag_start),
(gtk_combo_box_buildable_custom_tag_end):
* gtk/gtkcomboboxentry.c:
(gtk_combo_box_entry_buildable_interface_init),
(gtk_combo_box_entry_buildable_get_internal_child):
* gtk/gtkcontainer.c: (gtk_container_get_type),
(gtk_container_buildable_init), (gtk_container_buildable_add),
(gtk_container_buildable_set_child_property),
(attributes_start_element), (attributes_text_element),
(gtk_container_buildable_custom_tag_start),
(gtk_container_buildable_custom_tag_end):
* gtk/gtkdebug.h:
* gtk/gtkdialog.c: (gtk_dialog_buildable_interface_init),
(gtk_dialog_buildable_get_internal_child),
(attributes_start_element), (attributes_text_element),
(gtk_dialog_buildable_custom_tag_start),
(gtk_dialog_buildable_custom_finished):
* gtk/gtkentrycompletion.c: (gtk_entry_completion_buildable_init):
* gtk/gtkexpander.c: (gtk_expander_buildable_add),
(gtk_expander_buildable_init):
* gtk/gtkfontsel.c:
(gtk_font_selection_dialog_buildable_interface_init),
(gtk_font_selection_dialog_buildable_get_internal_child):
* gtk/gtkframe.c: (gtk_frame_buildable_init),
(gtk_frame_buildable_add):
* gtk/gtkiconview.c: (gtk_icon_view_buildable_init),
(gtk_icon_view_buildable_custom_tag_start),
(gtk_icon_view_buildable_custom_tag_end):
* gtk/gtkliststore.c: (gtk_list_store_buildable_init),
(list_store_start_element), (list_store_end_element),
(list_store_text), (gtk_list_store_buildable_custom_tag_start),
(gtk_list_store_buildable_custom_tag_end):
* gtk/gtkmain.c:
* gtk/gtknotebook.c: (gtk_notebook_buildable_init),
(gtk_notebook_buildable_add):
* gtk/gtksizegroup.c: (gtk_size_group_buildable_init),
(size_group_start_element),
(gtk_size_group_buildable_custom_tag_start),
(gtk_size_group_buildable_custom_finished):
* gtk/gtktreestore.c: (gtk_tree_store_buildable_init),
(tree_model_start_element),
(gtk_tree_store_buildable_custom_tag_start),
(gtk_tree_store_buildable_custom_finished):
* gtk/gtktreeview.c: (gtk_tree_view_buildable_init),
(gtk_tree_view_buildable_add):
* gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_buildable_init):
* gtk/gtkuimanager.c: (gtk_ui_manager_buildable_init),
(gtk_ui_manager_buildable_add),
(gtk_ui_manager_buildable_construct_child),
(gtk_ui_manager_buildable_custom_tag_start),
(gtk_ui_manager_buildable_custom_tag_end):
* gtk/gtkwidget.c: (gtk_widget_get_type),
(gtk_widget_buildable_interface_init),
(gtk_widget_buildable_set_name), (gtk_widget_buildable_get_name),
(gtk_widget_buildable_set_property),
(gtk_widget_buildable_parser_finshed), (accel_group_start_element),
(gtk_widget_buildable_custom_tag_start),
(gtk_widget_buildable_custom_finshed):
* gtk/gtkwindow.c: (gtk_window_buildable_interface_init),
(gtk_window_buildable_set_property),
(gtk_window_buildable_parser_finished):
* tests/Makefile.am:
* tests/buildertest.c: (builder_new_from_string), (test_parser),
(signal_normal), (signal_after), (signal_object),
(signal_object_after), (signal_first), (signal_second),
(signal_extra), (signal_extra2), (test_connect_signals),
(test_uimanager_simple), (test_domain), (test_translation),
(test_sizegroup), (test_list_store), (test_tree_store),
(test_types), (test_spin_button), (test_notebook),
(test_construct_only_property), (test_children),
(test_child_properties), (test_treeview_column), (test_icon_view),
(test_combo_box), (test_combo_box_entry), (test_cell_view),
(test_dialog), (test_accelerators), (test_widget), (main):
Add GtkBuilder, fixes #172535
svn path=/trunk/; revision=18141
2007-06-15 17:53:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_cell_layout_init (GtkCellLayoutIface *iface)
|
|
|
|
|
{
|
2010-12-04 07:55:49 +00:00
|
|
|
|
iface->get_area = gtk_entry_completion_get_area;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_init (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletionPrivate *priv;
|
|
|
|
|
|
|
|
|
|
/* yes, also priv, need to keep the code readable */
|
2013-06-27 19:02:52 +00:00
|
|
|
|
completion->priv = gtk_entry_completion_get_instance_private (completion);
|
2010-06-03 22:26:11 +00:00
|
|
|
|
priv = completion->priv;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
priv->minimum_key_length = 1;
|
|
|
|
|
priv->text_column = -1;
|
2004-07-19 18:15:48 +00:00
|
|
|
|
priv->has_completion = FALSE;
|
|
|
|
|
priv->inline_completion = FALSE;
|
|
|
|
|
priv->popup_completion = TRUE;
|
2005-04-04 05:15:32 +00:00
|
|
|
|
priv->popup_set_width = TRUE;
|
2005-05-26 20:36:36 +00:00
|
|
|
|
priv->popup_single_match = TRUE;
|
2007-04-27 16:50:04 +00:00
|
|
|
|
priv->inline_selection = FALSE;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
priv->filter_model = NULL;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-26 22:22:42 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_constructed (GObject *object)
|
2010-12-04 07:55:49 +00:00
|
|
|
|
{
|
2014-06-26 22:22:42 +00:00
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (object);
|
|
|
|
|
GtkEntryCompletionPrivate *priv = completion->priv;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
GtkCellRenderer *cell;
|
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
|
GtkWidget *popup_frame;
|
|
|
|
|
|
2014-06-26 22:22:42 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_entry_completion_parent_class)->constructed (object);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (!priv->cell_area)
|
|
|
|
|
{
|
|
|
|
|
priv->cell_area = gtk_cell_area_box_new ();
|
|
|
|
|
g_object_ref_sink (priv->cell_area);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* completions */
|
2003-07-11 12:51:24 +00:00
|
|
|
|
priv->tree_view = gtk_tree_view_new ();
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->tree_view, "button-press-event",
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_list_button_press),
|
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->tree_view, "enter-notify-event",
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_list_enter_notify),
|
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->tree_view, "motion-notify-event",
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_list_motion_notify),
|
|
|
|
|
completion);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->tree_view), FALSE);
|
2004-05-10 17:15:14 +00:00
|
|
|
|
gtk_tree_view_set_hover_selection (GTK_TREE_VIEW (priv->tree_view), TRUE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
|
|
|
|
|
gtk_tree_selection_set_mode (sel, GTK_SELECTION_SINGLE);
|
|
|
|
|
gtk_tree_selection_unselect_all (sel);
|
2003-10-11 13:32:16 +00:00
|
|
|
|
g_signal_connect (sel, "changed",
|
|
|
|
|
G_CALLBACK (gtk_entry_completion_selection_changed),
|
|
|
|
|
completion);
|
|
|
|
|
priv->first_sel_changed = TRUE;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-06 10:04:51 +00:00
|
|
|
|
priv->column = gtk_tree_view_column_new_with_area (priv->cell_area);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_view_append_column (GTK_TREE_VIEW (priv->tree_view), priv->column);
|
|
|
|
|
|
|
|
|
|
priv->scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->scrolled_window),
|
|
|
|
|
GTK_POLICY_NEVER,
|
|
|
|
|
GTK_POLICY_AUTOMATIC);
|
|
|
|
|
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (priv->scrolled_window),
|
2004-04-12 19:40:22 +00:00
|
|
|
|
GTK_SHADOW_NONE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2003-11-19 21:26:27 +00:00
|
|
|
|
/* a nasty hack to get the completions treeview to size nicely */
|
2010-07-09 19:53:55 +00:00
|
|
|
|
gtk_widget_set_size_request (gtk_scrolled_window_get_vscrollbar (GTK_SCROLLED_WINDOW (priv->scrolled_window)),
|
|
|
|
|
-1, 0);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
/* actions */
|
|
|
|
|
priv->actions = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_BOOLEAN);
|
|
|
|
|
|
|
|
|
|
priv->action_view =
|
|
|
|
|
gtk_tree_view_new_with_model (GTK_TREE_MODEL (priv->actions));
|
2006-07-21 05:23:43 +00:00
|
|
|
|
g_object_ref_sink (priv->action_view);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->action_view, "button-press-event",
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_action_button_press),
|
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->action_view, "enter-notify-event",
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_list_enter_notify),
|
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->action_view, "motion-notify-event",
|
2011-01-04 22:54:47 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_list_motion_notify),
|
|
|
|
|
completion);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->action_view), FALSE);
|
2004-05-10 17:15:14 +00:00
|
|
|
|
gtk_tree_view_set_hover_selection (GTK_TREE_VIEW (priv->action_view), TRUE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->action_view));
|
|
|
|
|
gtk_tree_selection_set_mode (sel, GTK_SELECTION_SINGLE);
|
|
|
|
|
gtk_tree_selection_unselect_all (sel);
|
|
|
|
|
|
|
|
|
|
cell = gtk_cell_renderer_text_new ();
|
|
|
|
|
gtk_tree_view_insert_column_with_data_func (GTK_TREE_VIEW (priv->action_view),
|
|
|
|
|
0, "",
|
|
|
|
|
cell,
|
|
|
|
|
gtk_entry_completion_action_data_func,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
/* pack it all */
|
|
|
|
|
priv->popup_window = gtk_window_new (GTK_WINDOW_POPUP);
|
2014-08-21 15:36:45 +00:00
|
|
|
|
gtk_window_set_use_subsurface (GTK_WINDOW (priv->popup_window), TRUE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_window_set_resizable (GTK_WINDOW (priv->popup_window), FALSE);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
gtk_window_set_type_hint (GTK_WINDOW(priv->popup_window),
|
|
|
|
|
GDK_WINDOW_TYPE_HINT_COMBO);
|
2014-08-21 15:36:45 +00:00
|
|
|
|
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->popup_window, "key-press-event",
|
2006-10-04 03:26:34 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_popup_key_event),
|
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->popup_window, "key-release-event",
|
2006-10-04 03:26:34 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_popup_key_event),
|
2003-07-11 12:51:24 +00:00
|
|
|
|
completion);
|
2008-08-11 09:17:49 +00:00
|
|
|
|
g_signal_connect (priv->popup_window, "button-press-event",
|
2003-07-11 12:51:24 +00:00
|
|
|
|
G_CALLBACK (gtk_entry_completion_popup_button_press),
|
|
|
|
|
completion);
|
|
|
|
|
|
2004-04-12 19:40:22 +00:00
|
|
|
|
popup_frame = gtk_frame_new (NULL);
|
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (popup_frame),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GTK_SHADOW_ETCHED_IN);
|
2004-04-12 19:40:22 +00:00
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->popup_window), popup_frame);
|
2010-10-31 17:07:20 +00:00
|
|
|
|
|
|
|
|
|
priv->vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
|
2004-04-12 19:40:22 +00:00
|
|
|
|
gtk_container_add (GTK_CONTAINER (popup_frame), priv->vbox);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->scrolled_window), priv->tree_view);
|
2017-04-21 16:59:59 +00:00
|
|
|
|
gtk_widget_set_hexpand (priv->scrolled_window, TRUE);
|
|
|
|
|
gtk_widget_set_vexpand (priv->scrolled_window, TRUE);
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->vbox), priv->scrolled_window);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
/* we don't want to see the action treeview when no actions have
|
|
|
|
|
* been inserted, so we pack the action treeview after the first
|
|
|
|
|
* action has been added
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (object);
|
2006-07-21 05:23:43 +00:00
|
|
|
|
GtkEntryCompletionPrivate *priv = completion->priv;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
GtkCellArea *area;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MODEL:
|
|
|
|
|
gtk_entry_completion_set_model (completion,
|
|
|
|
|
g_value_get_object (value));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_MINIMUM_KEY_LENGTH:
|
|
|
|
|
gtk_entry_completion_set_minimum_key_length (completion,
|
|
|
|
|
g_value_get_int (value));
|
|
|
|
|
break;
|
|
|
|
|
|
2004-05-27 04:46:42 +00:00
|
|
|
|
case PROP_TEXT_COLUMN:
|
2014-09-04 02:44:31 +00:00
|
|
|
|
priv->text_column = g_value_get_int (value);
|
2004-05-27 04:46:42 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
case PROP_INLINE_COMPLETION:
|
2012-03-23 06:09:02 +00:00
|
|
|
|
gtk_entry_completion_set_inline_completion (completion,
|
|
|
|
|
g_value_get_boolean (value));
|
2004-07-19 18:15:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_POPUP_COMPLETION:
|
2012-03-23 06:09:02 +00:00
|
|
|
|
gtk_entry_completion_set_popup_completion (completion,
|
|
|
|
|
g_value_get_boolean (value));
|
2004-07-19 18:15:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
case PROP_POPUP_SET_WIDTH:
|
2012-03-23 06:09:02 +00:00
|
|
|
|
gtk_entry_completion_set_popup_set_width (completion,
|
|
|
|
|
g_value_get_boolean (value));
|
2005-04-04 05:15:32 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
case PROP_POPUP_SINGLE_MATCH:
|
2012-03-23 06:09:02 +00:00
|
|
|
|
gtk_entry_completion_set_popup_single_match (completion,
|
|
|
|
|
g_value_get_boolean (value));
|
2005-05-26 20:36:36 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
case PROP_INLINE_SELECTION:
|
2012-03-23 06:09:02 +00:00
|
|
|
|
gtk_entry_completion_set_inline_selection (completion,
|
|
|
|
|
g_value_get_boolean (value));
|
2007-04-27 16:50:04 +00:00
|
|
|
|
break;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
|
|
|
|
case PROP_CELL_AREA:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
/* Construct-only, can only be assigned once */
|
|
|
|
|
area = g_value_get_object (value);
|
|
|
|
|
if (area)
|
2011-01-31 22:34:37 +00:00
|
|
|
|
{
|
|
|
|
|
if (priv->cell_area != NULL)
|
|
|
|
|
{
|
|
|
|
|
g_warning ("cell-area has already been set, ignoring construct property");
|
|
|
|
|
g_object_ref_sink (area);
|
|
|
|
|
g_object_unref (area);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
priv->cell_area = g_object_ref_sink (area);
|
|
|
|
|
}
|
2011-01-04 22:54:47 +00:00
|
|
|
|
break;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (object);
|
|
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
|
{
|
|
|
|
|
case PROP_MODEL:
|
|
|
|
|
g_value_set_object (value,
|
|
|
|
|
gtk_entry_completion_get_model (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_MINIMUM_KEY_LENGTH:
|
|
|
|
|
g_value_set_int (value, gtk_entry_completion_get_minimum_key_length (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2004-05-27 04:46:42 +00:00
|
|
|
|
case PROP_TEXT_COLUMN:
|
|
|
|
|
g_value_set_int (value, gtk_entry_completion_get_text_column (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
case PROP_INLINE_COMPLETION:
|
|
|
|
|
g_value_set_boolean (value, gtk_entry_completion_get_inline_completion (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PROP_POPUP_COMPLETION:
|
|
|
|
|
g_value_set_boolean (value, gtk_entry_completion_get_popup_completion (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
case PROP_POPUP_SET_WIDTH:
|
|
|
|
|
g_value_set_boolean (value, gtk_entry_completion_get_popup_set_width (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
case PROP_POPUP_SINGLE_MATCH:
|
|
|
|
|
g_value_set_boolean (value, gtk_entry_completion_get_popup_single_match (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
case PROP_INLINE_SELECTION:
|
|
|
|
|
g_value_set_boolean (value, gtk_entry_completion_get_inline_selection (completion));
|
|
|
|
|
break;
|
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
case PROP_CELL_AREA:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
g_value_set_object (value, completion->priv->cell_area);
|
|
|
|
|
break;
|
2010-12-04 07:55:49 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (object);
|
2006-07-21 05:23:43 +00:00
|
|
|
|
GtkEntryCompletionPrivate *priv = completion->priv;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2007-03-09 21:57:37 +00:00
|
|
|
|
g_free (priv->case_normalized_key);
|
2007-07-16 16:43:54 +00:00
|
|
|
|
g_free (priv->completion_prefix);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2006-07-21 05:23:43 +00:00
|
|
|
|
if (priv->match_notify)
|
|
|
|
|
(* priv->match_notify) (priv->match_data);
|
2006-06-16 17:42:40 +00:00
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_entry_completion_parent_class)->finalize (object);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-12-04 07:55:49 +00:00
|
|
|
|
gtk_entry_completion_dispose (GObject *object)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
2010-12-04 07:55:49 +00:00
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (object);
|
|
|
|
|
GtkEntryCompletionPrivate *priv = completion->priv;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->tree_view)
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_destroy (priv->tree_view);
|
|
|
|
|
priv->tree_view = NULL;
|
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->entry)
|
|
|
|
|
gtk_entry_set_completion (GTK_ENTRY (priv->entry), NULL);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->actions)
|
|
|
|
|
{
|
|
|
|
|
g_object_unref (priv->actions);
|
|
|
|
|
priv->actions = NULL;
|
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->action_view)
|
|
|
|
|
{
|
|
|
|
|
g_object_unref (priv->action_view);
|
|
|
|
|
priv->action_view = NULL;
|
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->popup_window)
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_destroy (priv->popup_window);
|
|
|
|
|
priv->popup_window = NULL;
|
|
|
|
|
}
|
2003-12-19 22:47:20 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
if (priv->cell_area)
|
|
|
|
|
{
|
|
|
|
|
g_object_unref (priv->cell_area);
|
|
|
|
|
priv->cell_area = NULL;
|
|
|
|
|
}
|
2003-12-19 22:47:20 +00:00
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_entry_completion_parent_class)->dispose (object);
|
2003-12-19 22:47:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-03 10:50:54 +00:00
|
|
|
|
/* implement cell layout interface (only need to return the underlying cell area) */
|
2011-01-04 22:54:47 +00:00
|
|
|
|
static GtkCellArea*
|
2010-12-04 07:55:49 +00:00
|
|
|
|
gtk_entry_completion_get_area (GtkCellLayout *cell_layout)
|
2008-03-22 17:53:42 +00:00
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletionPrivate *priv;
|
|
|
|
|
|
2010-06-03 22:26:11 +00:00
|
|
|
|
priv = GTK_ENTRY_COMPLETION (cell_layout)->priv;
|
2008-03-22 17:53:42 +00:00
|
|
|
|
|
2011-01-31 22:34:37 +00:00
|
|
|
|
if (G_UNLIKELY (!priv->cell_area))
|
|
|
|
|
{
|
|
|
|
|
priv->cell_area = gtk_cell_area_box_new ();
|
|
|
|
|
g_object_ref_sink (priv->cell_area);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-04 07:55:49 +00:00
|
|
|
|
return priv->cell_area;
|
2008-03-22 17:53:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
/* all those callbacks */
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_default_completion_func (GtkEntryCompletion *completion,
|
|
|
|
|
const gchar *key,
|
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
gchar *item = NULL;
|
|
|
|
|
gchar *normalized_string;
|
|
|
|
|
gchar *case_normalized_string;
|
|
|
|
|
|
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
|
|
GtkTreeModel *model;
|
|
|
|
|
|
|
|
|
|
model = gtk_tree_model_filter_get_model (completion->priv->filter_model);
|
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
g_return_val_if_fail (gtk_tree_model_get_column_type (model, completion->priv->text_column) == G_TYPE_STRING,
|
|
|
|
|
FALSE);
|
2004-08-22 04:11:14 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_model_get (model, iter,
|
|
|
|
|
completion->priv->text_column, &item,
|
|
|
|
|
-1);
|
|
|
|
|
|
2004-02-22 01:07:39 +00:00
|
|
|
|
if (item != NULL)
|
|
|
|
|
{
|
|
|
|
|
normalized_string = g_utf8_normalize (item, -1, G_NORMALIZE_ALL);
|
2010-07-19 18:45:25 +00:00
|
|
|
|
|
|
|
|
|
if (normalized_string != NULL)
|
|
|
|
|
{
|
|
|
|
|
case_normalized_string = g_utf8_casefold (normalized_string, -1);
|
|
|
|
|
|
|
|
|
|
if (!strncmp (key, case_normalized_string, strlen (key)))
|
2011-01-04 22:54:47 +00:00
|
|
|
|
ret = TRUE;
|
2010-07-19 18:45:25 +00:00
|
|
|
|
|
|
|
|
|
g_free (case_normalized_string);
|
|
|
|
|
}
|
2004-02-22 01:07:39 +00:00
|
|
|
|
g_free (normalized_string);
|
|
|
|
|
}
|
2010-07-19 18:45:25 +00:00
|
|
|
|
g_free (item);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_visible_func (GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
|
|
|
|
|
|
|
|
|
|
if (!completion->priv->case_normalized_key)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2004-03-14 20:44:10 +00:00
|
|
|
|
if (completion->priv->match_func)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
ret = (* completion->priv->match_func) (completion,
|
|
|
|
|
completion->priv->case_normalized_key,
|
|
|
|
|
iter,
|
|
|
|
|
completion->priv->match_data);
|
2004-03-14 20:44:10 +00:00
|
|
|
|
else if (completion->priv->text_column >= 0)
|
|
|
|
|
ret = gtk_entry_completion_default_completion_func (completion,
|
|
|
|
|
completion->priv->case_normalized_key,
|
|
|
|
|
iter,
|
|
|
|
|
NULL);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2006-10-04 03:26:34 +00:00
|
|
|
|
gtk_entry_completion_popup_key_event (GtkWidget *widget,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
GdkEventKey *event,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
|
|
|
|
|
2010-03-02 04:19:28 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* propagate event to the entry */
|
|
|
|
|
gtk_widget_event (completion->priv->entry, (GdkEvent *)event);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_popup_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
|
|
|
|
|
2010-03-02 04:19:28 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
/* if we come here, it's usually time to popdown */
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_list_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
|
|
|
|
GtkTreePath *path = NULL;
|
2017-08-25 14:45:20 +00:00
|
|
|
|
gdouble x, y;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window) ||
|
|
|
|
|
!gdk_event_get_coords ((GdkEvent *) event, &x, &y))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (widget),
|
2017-08-25 14:45:20 +00:00
|
|
|
|
x, y, &path, NULL, NULL, NULL))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreeIter iter;
|
2004-05-10 19:10:27 +00:00
|
|
|
|
gboolean entry_set;
|
2010-05-22 03:50:46 +00:00
|
|
|
|
GtkTreeModel *model;
|
|
|
|
|
GtkTreeIter child_iter;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
gtk_tree_model_get_iter (GTK_TREE_MODEL (completion->priv->filter_model),
|
|
|
|
|
&iter, path);
|
|
|
|
|
gtk_tree_path_free (path);
|
2010-05-22 03:50:46 +00:00
|
|
|
|
gtk_tree_model_filter_convert_iter_to_child_iter (completion->priv->filter_model,
|
|
|
|
|
&child_iter,
|
|
|
|
|
&iter);
|
|
|
|
|
model = gtk_tree_model_filter_get_model (completion->priv->filter_model);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2004-03-15 23:56:44 +00:00
|
|
|
|
g_signal_handler_block (completion->priv->entry,
|
2010-05-22 03:50:46 +00:00
|
|
|
|
completion->priv->changed_id);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
g_signal_emit (completion, entry_completion_signals[MATCH_SELECTED],
|
2010-05-22 03:50:46 +00:00
|
|
|
|
0, model, &child_iter, &entry_set);
|
2004-03-15 23:56:44 +00:00
|
|
|
|
g_signal_handler_unblock (completion->priv->entry,
|
2010-05-22 03:50:46 +00:00
|
|
|
|
completion->priv->changed_id);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
2004-05-10 19:10:27 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_action_button_press (GtkWidget *widget,
|
|
|
|
|
GdkEventButton *event,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
|
|
|
|
GtkTreePath *path = NULL;
|
2017-08-25 14:45:20 +00:00
|
|
|
|
gdouble x, y;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window) ||
|
|
|
|
|
!gdk_event_get_coords ((GdkEvent *) event, &x, &y))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
gtk_entry_reset_im_context (GTK_ENTRY (completion->priv->entry));
|
2006-08-06 03:32:59 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
if (gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (widget),
|
2017-08-25 14:45:20 +00:00
|
|
|
|
x, y, &path, NULL, NULL, NULL))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
g_signal_emit (completion, entry_completion_signals[ACTION_ACTIVATED],
|
2010-06-28 18:15:10 +00:00
|
|
|
|
0, gtk_tree_path_get_indices (path)[0]);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_path_free (path);
|
|
|
|
|
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_action_data_func (GtkTreeViewColumn *tree_column,
|
|
|
|
|
GtkCellRenderer *cell,
|
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
gchar *string = NULL;
|
|
|
|
|
gboolean markup;
|
|
|
|
|
|
|
|
|
|
gtk_tree_model_get (model, iter,
|
|
|
|
|
0, &string,
|
|
|
|
|
1, &markup,
|
|
|
|
|
-1);
|
|
|
|
|
|
|
|
|
|
if (!string)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (markup)
|
2004-11-19 23:18:38 +00:00
|
|
|
|
g_object_set (cell,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
"text", NULL,
|
|
|
|
|
"markup", string,
|
|
|
|
|
NULL);
|
|
|
|
|
else
|
2004-11-19 23:18:38 +00:00
|
|
|
|
g_object_set (cell,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
"markup", NULL,
|
|
|
|
|
"text", string,
|
|
|
|
|
NULL);
|
2004-01-28 20:39:46 +00:00
|
|
|
|
|
|
|
|
|
g_free (string);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-11 13:32:16 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_selection_changed (GtkTreeSelection *selection,
|
|
|
|
|
gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->first_sel_changed)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->first_sel_changed = FALSE;
|
2003-11-18 23:12:10 +00:00
|
|
|
|
if (gtk_widget_is_focus (completion->priv->tree_view))
|
|
|
|
|
gtk_tree_selection_unselect_all (selection);
|
2003-10-11 13:32:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
/* public API */
|
2003-09-30 21:44:39 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_new:
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkEntryCompletion object.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: A newly created #GtkEntryCompletion object
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
GtkEntryCompletion *
|
|
|
|
|
gtk_entry_completion_new (void)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion;
|
|
|
|
|
|
|
|
|
|
completion = g_object_new (GTK_TYPE_ENTRY_COMPLETION, NULL);
|
|
|
|
|
|
|
|
|
|
return completion;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-13 06:58:07 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_new_with_area:
|
|
|
|
|
* @area: the #GtkCellArea used to layout cells
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkEntryCompletion object using the
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* specified @area to layout cells in the underlying
|
2010-12-13 06:58:07 +00:00
|
|
|
|
* #GtkTreeViewColumn for the drop-down menu.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: A newly created #GtkEntryCompletion object
|
2010-12-13 06:58:07 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.0
|
|
|
|
|
*/
|
|
|
|
|
GtkEntryCompletion *
|
|
|
|
|
gtk_entry_completion_new_with_area (GtkCellArea *area)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion;
|
|
|
|
|
|
|
|
|
|
completion = g_object_new (GTK_TYPE_ENTRY_COMPLETION, "cell-area", area, NULL);
|
|
|
|
|
|
|
|
|
|
return completion;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_entry:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Gets the entry @completion has been attached to.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: (transfer none): The entry @completion has been attached to
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_entry_completion_get_entry (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), NULL);
|
|
|
|
|
|
|
|
|
|
return completion->priv->entry;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_model:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @model: (allow-none): the #GtkTreeModel
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the model for a #GtkEntryCompletion. If @completion already has
|
|
|
|
|
* a model set, it will remove it before setting the new model.
|
2004-06-26 04:05:25 +00:00
|
|
|
|
* If model is %NULL, then it will unset the model.
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_set_model (GtkEntryCompletion *completion,
|
|
|
|
|
GtkTreeModel *model)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2004-06-26 03:39:35 +00:00
|
|
|
|
g_return_if_fail (model == NULL || GTK_IS_TREE_MODEL (model));
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2004-10-26 15:53:32 +00:00
|
|
|
|
if (!model)
|
|
|
|
|
{
|
|
|
|
|
gtk_tree_view_set_model (GTK_TREE_VIEW (completion->priv->tree_view),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
NULL);
|
2004-10-26 15:53:32 +00:00
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
completion->priv->filter_model = NULL;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
/* code will unref the old filter model (if any) */
|
|
|
|
|
completion->priv->filter_model =
|
|
|
|
|
GTK_TREE_MODEL_FILTER (gtk_tree_model_filter_new (model, NULL));
|
|
|
|
|
gtk_tree_model_filter_set_visible_func (completion->priv->filter_model,
|
|
|
|
|
gtk_entry_completion_visible_func,
|
|
|
|
|
completion,
|
|
|
|
|
NULL);
|
2004-09-13 17:34:54 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_view_set_model (GTK_TREE_VIEW (completion->priv->tree_view),
|
|
|
|
|
GTK_TREE_MODEL (completion->priv->filter_model));
|
2004-11-19 23:18:38 +00:00
|
|
|
|
g_object_unref (completion->priv->filter_model);
|
2004-09-13 17:34:54 +00:00
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_MODEL]);
|
2005-01-26 06:46:51 +00:00
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
|
if (gtk_widget_get_visible (completion->priv->popup_window))
|
2004-09-13 17:34:54 +00:00
|
|
|
|
_gtk_entry_completion_resize_popup (completion);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_model:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns the model the #GtkEntryCompletion is using as data source.
|
|
|
|
|
* Returns %NULL if the model is unset.
|
|
|
|
|
*
|
2015-12-28 20:14:08 +00:00
|
|
|
|
* Returns: (nullable) (transfer none): A #GtkTreeModel, or %NULL if none
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* is currently being used
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
GtkTreeModel *
|
|
|
|
|
gtk_entry_completion_get_model (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), NULL);
|
|
|
|
|
|
2004-10-26 15:53:32 +00:00
|
|
|
|
if (!completion->priv->filter_model)
|
|
|
|
|
return NULL;
|
2010-09-21 04:18:11 +00:00
|
|
|
|
|
2003-07-11 12:51:24 +00:00
|
|
|
|
return gtk_tree_model_filter_get_model (completion->priv->filter_model);
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_match_func:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @func: the #GtkEntryCompletionMatchFunc to use
|
|
|
|
|
* @func_data: user data for @func
|
|
|
|
|
* @func_notify: destroy notify for @func_data.
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the match function for @completion to be @func. The match function
|
|
|
|
|
* is used to determine if a row should or should not be in the completion
|
|
|
|
|
* list.
|
|
|
|
|
*
|
2006-07-17 03:59:17 +00:00
|
|
|
|
* Since: 2.4
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_set_match_func (GtkEntryCompletion *completion,
|
|
|
|
|
GtkEntryCompletionMatchFunc func,
|
|
|
|
|
gpointer func_data,
|
|
|
|
|
GDestroyNotify func_notify)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
|
|
|
|
|
|
|
|
|
if (completion->priv->match_notify)
|
|
|
|
|
(* completion->priv->match_notify) (completion->priv->match_data);
|
|
|
|
|
|
|
|
|
|
completion->priv->match_func = func;
|
|
|
|
|
completion->priv->match_data = func_data;
|
|
|
|
|
completion->priv->match_notify = func_notify;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_minimum_key_length:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @length: the minimum length of the key in order to start completing
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Requires the length of the search key for @completion to be at least
|
|
|
|
|
* @length. This is useful for long lists, where completing using a small
|
|
|
|
|
* key takes a lot of time and will come up with meaningless results anyway
|
|
|
|
|
* (ie, a too large dataset).
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_set_minimum_key_length (GtkEntryCompletion *completion,
|
|
|
|
|
gint length)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2005-01-26 06:46:51 +00:00
|
|
|
|
g_return_if_fail (length >= 0);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2005-01-26 06:46:51 +00:00
|
|
|
|
if (completion->priv->minimum_key_length != length)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->minimum_key_length = length;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion),
|
|
|
|
|
entry_completion_props[PROP_MINIMUM_KEY_LENGTH]);
|
2005-01-26 06:46:51 +00:00
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_minimum_key_length:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns the minimum key length as set for @completion.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: The currently used minimum key length
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gint
|
|
|
|
|
gtk_entry_completion_get_minimum_key_length (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), 0);
|
|
|
|
|
|
|
|
|
|
return completion->priv->minimum_key_length;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_complete:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
|
|
|
|
* Requests a completion operation, or in other words a refiltering of the
|
|
|
|
|
* current list with completions, using the current key. The completion list
|
|
|
|
|
* view will be updated accordingly.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_complete (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
gchar *tmp;
|
2014-06-27 16:41:09 +00:00
|
|
|
|
GtkTreeIter iter;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2011-06-01 00:07:14 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY (completion->priv->entry));
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2004-10-26 15:53:32 +00:00
|
|
|
|
if (!completion->priv->filter_model)
|
|
|
|
|
return;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2007-03-09 21:57:37 +00:00
|
|
|
|
g_free (completion->priv->case_normalized_key);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
tmp = g_utf8_normalize (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)),
|
|
|
|
|
-1, G_NORMALIZE_ALL);
|
|
|
|
|
completion->priv->case_normalized_key = g_utf8_casefold (tmp, -1);
|
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
|
|
gtk_tree_model_filter_refilter (completion->priv->filter_model);
|
2005-06-17 18:26:25 +00:00
|
|
|
|
|
2014-06-27 16:41:09 +00:00
|
|
|
|
if (!gtk_tree_model_get_iter_first (GTK_TREE_MODEL (completion->priv->filter_model), &iter))
|
|
|
|
|
g_signal_emit (completion, entry_completion_signals[NO_MATCHES], 0);
|
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
|
if (gtk_widget_get_visible (completion->priv->popup_window))
|
2005-06-17 18:26:25 +00:00
|
|
|
|
_gtk_entry_completion_resize_popup (completion);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_insert_action (GtkEntryCompletion *completion,
|
|
|
|
|
gint index,
|
2003-10-11 13:49:22 +00:00
|
|
|
|
const gchar *string,
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gboolean markup)
|
|
|
|
|
{
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
|
|
gtk_list_store_insert (completion->priv->actions, &iter, index);
|
|
|
|
|
gtk_list_store_set (completion->priv->actions, &iter,
|
|
|
|
|
0, string,
|
|
|
|
|
1, markup,
|
|
|
|
|
-1);
|
|
|
|
|
|
2010-08-11 21:13:23 +00:00
|
|
|
|
if (!gtk_widget_get_parent (completion->priv->action_view))
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreePath *path = gtk_tree_path_new_from_indices (0, -1);
|
|
|
|
|
|
|
|
|
|
gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->action_view),
|
|
|
|
|
path, NULL, FALSE);
|
|
|
|
|
gtk_tree_path_free (path);
|
|
|
|
|
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (completion->priv->vbox),
|
2017-04-21 20:34:36 +00:00
|
|
|
|
completion->priv->action_view);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_widget_show (completion->priv->action_view);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_insert_action_text:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @index_: the index of the item to insert
|
|
|
|
|
* @text: text of the item to insert
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Inserts an action in @completion’s action item list at position @index_
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* with text @text. If you want the action item to have markup, use
|
|
|
|
|
* gtk_entry_completion_insert_action_markup().
|
|
|
|
|
*
|
2009-09-04 12:32:00 +00:00
|
|
|
|
* Note that @index_ is a relative position in the list of actions and
|
|
|
|
|
* the position of an action can change when deleting a different action.
|
|
|
|
|
*
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_insert_action_text (GtkEntryCompletion *completion,
|
2004-06-02 03:16:03 +00:00
|
|
|
|
gint index_,
|
2003-10-11 13:49:22 +00:00
|
|
|
|
const gchar *text)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
|
|
|
|
g_return_if_fail (text != NULL);
|
|
|
|
|
|
2004-06-02 03:16:03 +00:00
|
|
|
|
gtk_entry_completion_insert_action (completion, index_, text, FALSE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_insert_action_markup:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @index_: the index of the item to insert
|
|
|
|
|
* @markup: markup of the item to insert
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Inserts an action in @completion’s action item list at position @index_
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* with markup @markup.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_insert_action_markup (GtkEntryCompletion *completion,
|
2004-06-02 03:16:03 +00:00
|
|
|
|
gint index_,
|
2003-10-11 13:49:22 +00:00
|
|
|
|
const gchar *markup)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
|
|
|
|
g_return_if_fail (markup != NULL);
|
|
|
|
|
|
2004-06-02 03:16:03 +00:00
|
|
|
|
gtk_entry_completion_insert_action (completion, index_, markup, TRUE);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_delete_action:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @index_: the index of the item to delete
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Deletes the action at @index_ from @completion’s action list.
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
2009-09-04 12:32:00 +00:00
|
|
|
|
* Note that @index_ is a relative position and the position of an
|
|
|
|
|
* action may have changed since it was inserted.
|
|
|
|
|
*
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_delete_action (GtkEntryCompletion *completion,
|
2004-06-02 03:16:03 +00:00
|
|
|
|
gint index_)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2004-06-02 03:16:03 +00:00
|
|
|
|
g_return_if_fail (index_ >= 0);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
gtk_tree_model_iter_nth_child (GTK_TREE_MODEL (completion->priv->actions),
|
2004-06-02 03:16:03 +00:00
|
|
|
|
&iter, NULL, index_);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_list_store_remove (completion->priv->actions, &iter);
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-30 21:44:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_text_column:
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @column: the column in the model of @completion to get strings from
|
2003-09-30 21:44:39 +00:00
|
|
|
|
*
|
2004-03-03 22:55:46 +00:00
|
|
|
|
* Convenience function for setting up the most used case of this code: a
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* completion list with just strings. This function will set up @completion
|
|
|
|
|
* to have a list displaying all (and just) strings in the completion list,
|
|
|
|
|
* and to get those strings from @column in the model of @completion.
|
|
|
|
|
*
|
2014-03-03 10:50:54 +00:00
|
|
|
|
* This functions creates and adds a #GtkCellRendererText for the selected
|
|
|
|
|
* column. If you need to set the text column, but don't want the cell
|
|
|
|
|
* renderer, use g_object_set() to set the #GtkEntryCompletion:text-column
|
|
|
|
|
* property directly.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2003-09-30 21:44:39 +00:00
|
|
|
|
* Since: 2.4
|
|
|
|
|
*/
|
2003-07-11 12:51:24 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_set_text_column (GtkEntryCompletion *completion,
|
|
|
|
|
gint column)
|
|
|
|
|
{
|
|
|
|
|
GtkCellRenderer *cell;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
|
|
|
|
g_return_if_fail (column >= 0);
|
|
|
|
|
|
2014-06-08 15:34:28 +00:00
|
|
|
|
if (completion->priv->text_column == column)
|
|
|
|
|
return;
|
|
|
|
|
|
2014-03-03 10:50:54 +00:00
|
|
|
|
completion->priv->text_column = column;
|
2013-11-02 13:22:33 +00:00
|
|
|
|
|
2014-03-03 10:50:54 +00:00
|
|
|
|
cell = gtk_cell_renderer_text_new ();
|
|
|
|
|
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (completion),
|
|
|
|
|
cell, TRUE);
|
|
|
|
|
gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (completion),
|
|
|
|
|
cell,
|
|
|
|
|
"text", column);
|
2004-05-27 04:46:42 +00:00
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_TEXT_COLUMN]);
|
2004-05-27 04:46:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_text_column:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-05-27 04:46:42 +00:00
|
|
|
|
* Returns the column in the model of @completion to get strings from.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the column containing the strings
|
2004-05-27 04:46:42 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2004-05-27 04:46:42 +00:00
|
|
|
|
gint
|
|
|
|
|
gtk_entry_completion_get_text_column (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
2004-07-12 14:38:10 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), -1);
|
2004-05-27 04:46:42 +00:00
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
return completion->priv->text_column;
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */
|
|
|
|
|
|
2004-06-06 03:17:45 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_list_enter_notify (GtkWidget *widget,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GdkEventCrossing *event,
|
|
|
|
|
gpointer data)
|
2004-06-06 03:17:45 +00:00
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-06-06 03:17:45 +00:00
|
|
|
|
return completion->priv->ignore_enter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_list_motion_notify (GtkWidget *widget,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GdkEventMotion *event,
|
|
|
|
|
gpointer data)
|
2004-06-06 03:17:45 +00:00
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
|
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
completion->priv->ignore_enter = FALSE;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-06-06 03:17:45 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-17 22:02:21 +00:00
|
|
|
|
/* some nasty size requisition */
|
2015-07-03 18:48:48 +00:00
|
|
|
|
void
|
2003-11-17 22:02:21 +00:00
|
|
|
|
_gtk_entry_completion_resize_popup (GtkEntryCompletion *completion)
|
2003-07-11 12:51:24 +00:00
|
|
|
|
{
|
2010-08-11 21:13:23 +00:00
|
|
|
|
GtkAllocation allocation;
|
2004-03-17 00:17:07 +00:00
|
|
|
|
gint x, y;
|
2012-01-30 19:03:26 +00:00
|
|
|
|
gint matches, actions, items, height;
|
2016-04-11 03:01:10 +00:00
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GdkMonitor *monitor;
|
|
|
|
|
GdkRectangle area;
|
2010-08-11 21:13:23 +00:00
|
|
|
|
GdkWindow *window;
|
2004-03-17 00:17:07 +00:00
|
|
|
|
GtkRequisition popup_req;
|
2004-07-30 06:22:26 +00:00
|
|
|
|
GtkRequisition entry_req;
|
2014-12-03 08:24:43 +00:00
|
|
|
|
GtkRequisition tree_req;
|
2004-04-12 19:40:22 +00:00
|
|
|
|
GtkTreePath *path;
|
|
|
|
|
gboolean above;
|
2004-05-18 18:31:54 +00:00
|
|
|
|
gint width;
|
2009-01-15 09:51:07 +00:00
|
|
|
|
GtkTreeViewColumn *action_column;
|
|
|
|
|
gint action_height;
|
Rework of GtkFileChooserButton, some cleanups. Fixes #154388, #154390,
2004-10-25 James M. Cape <jcape@ignore-your.tv>
Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
#154390, #154390, #156272.
* docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
below GtkFileChooser.
* docs/reference/gtk/gtk-sections.txt: Added
gtk_file_chooser_button_get_width_chars(),
gtk_file_chooser_button_set_width_chars(),
gtk_label_set_width_chars(), gtk_label_get_width_chars().
* docs/reference/gtk/gtk.types: Added
gtk_cell_renderer_combo_get_type,
gtk_cell_view_get_type,
gtk_text_iter_get_type.
* docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
"logo-icon-name" property.
* docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for
properties
(b/c of get_type() inclusion above).
* docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
* docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars"
property,
getters/setters.
* docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
* gtk/gtkentrycompletion.c:
(_gtk_entry_completion_popdown): Don't show if the entry isn't
mapped.
* gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
rewritten, adds "width-chars" property, icons, working save
modes, volume/Home/Desktop friendly-naming support.
* gtk/gtklabel.[c,h]:
(gtk_label_class_init), (gtk_label_init),
(gtk_label_get_property), (gtk_label_set_property),
(gtk_label_get_width_chars), (gtk_label_set_width_chars),
(gtk_label_size_request): Add "width-chars" property.
* tests/testfilechooserbutton.c: Update, use 4 different buttons
for the different ACTIONs.
* gtk/.cvsignore: Ignore gtk-update-icon-cache.
* tests/.cvsignore: Ignore testimage.
2004-10-26 04:29:56 +00:00
|
|
|
|
|
2010-08-11 21:13:23 +00:00
|
|
|
|
window = gtk_widget_get_window (completion->priv->entry);
|
|
|
|
|
|
|
|
|
|
if (!window)
|
2015-07-03 18:48:48 +00:00
|
|
|
|
return;
|
Rework of GtkFileChooserButton, some cleanups. Fixes #154388, #154390,
2004-10-25 James M. Cape <jcape@ignore-your.tv>
Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
#154390, #154390, #156272.
* docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
below GtkFileChooser.
* docs/reference/gtk/gtk-sections.txt: Added
gtk_file_chooser_button_get_width_chars(),
gtk_file_chooser_button_set_width_chars(),
gtk_label_set_width_chars(), gtk_label_get_width_chars().
* docs/reference/gtk/gtk.types: Added
gtk_cell_renderer_combo_get_type,
gtk_cell_view_get_type,
gtk_text_iter_get_type.
* docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
"logo-icon-name" property.
* docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for
properties
(b/c of get_type() inclusion above).
* docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
* docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars"
property,
getters/setters.
* docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
* gtk/gtkentrycompletion.c:
(_gtk_entry_completion_popdown): Don't show if the entry isn't
mapped.
* gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
rewritten, adds "width-chars" property, icons, working save
modes, volume/Home/Desktop friendly-naming support.
* gtk/gtklabel.[c,h]:
(gtk_label_class_init), (gtk_label_init),
(gtk_label_get_property), (gtk_label_set_property),
(gtk_label_get_width_chars), (gtk_label_set_width_chars),
(gtk_label_size_request): Add "width-chars" property.
* tests/testfilechooserbutton.c: Update, use 4 different buttons
for the different ACTIONs.
* gtk/.cvsignore: Ignore gtk-update-icon-cache.
* tests/.cvsignore: Ignore testimage.
2004-10-26 04:29:56 +00:00
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
if (!completion->priv->filter_model)
|
2015-07-03 18:48:48 +00:00
|
|
|
|
return;
|
2012-08-31 14:47:23 +00:00
|
|
|
|
|
2017-06-28 06:19:35 +00:00
|
|
|
|
gtk_widget_get_window_allocation (completion->priv->entry, &allocation);
|
2010-10-21 11:09:25 +00:00
|
|
|
|
gtk_widget_get_preferred_size (completion->priv->entry,
|
|
|
|
|
&entry_req, NULL);
|
|
|
|
|
|
2010-08-11 21:13:23 +00:00
|
|
|
|
gdk_window_get_origin (window, &x, &y);
|
2010-10-21 11:09:25 +00:00
|
|
|
|
x += allocation.x;
|
|
|
|
|
y += allocation.y + (allocation.height - entry_req.height) / 2;
|
|
|
|
|
|
2004-04-21 21:47:53 +00:00
|
|
|
|
matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
|
2008-09-17 15:22:52 +00:00
|
|
|
|
actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
|
2009-01-15 09:51:07 +00:00
|
|
|
|
action_column = gtk_tree_view_get_column (GTK_TREE_VIEW (completion->priv->action_view), 0);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2014-12-03 08:24:43 +00:00
|
|
|
|
/* Call get preferred size on the on the tree view to force it to validate its
|
|
|
|
|
* cells before calling into the cell size functions.
|
|
|
|
|
*/
|
|
|
|
|
gtk_widget_get_preferred_size (completion->priv->tree_view,
|
|
|
|
|
&tree_req, NULL);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
gtk_tree_view_column_cell_get_size (completion->priv->column, NULL,
|
|
|
|
|
NULL, NULL, NULL, &height);
|
2009-01-15 09:51:07 +00:00
|
|
|
|
gtk_tree_view_column_cell_get_size (action_column, NULL,
|
|
|
|
|
NULL, NULL, NULL, &action_height);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2006-01-30 18:24:26 +00:00
|
|
|
|
gtk_widget_realize (completion->priv->tree_view);
|
2005-07-13 11:57:10 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
display = gtk_widget_get_display (GTK_WIDGET (completion->priv->entry));
|
|
|
|
|
monitor = gdk_display_get_monitor_at_window (display, window);
|
|
|
|
|
gdk_monitor_get_workarea (monitor, &area);
|
2008-06-12 11:17:16 +00:00
|
|
|
|
|
2012-03-28 00:29:56 +00:00
|
|
|
|
if (height == 0)
|
|
|
|
|
items = 0;
|
2016-04-11 03:01:10 +00:00
|
|
|
|
else if (y > area.height / 2)
|
|
|
|
|
items = MIN (matches, (((area.y + y) - (actions * action_height)) / height) - 1);
|
2008-06-12 11:17:16 +00:00
|
|
|
|
else
|
2016-04-11 03:01:10 +00:00
|
|
|
|
items = MIN (matches, (((area.height - y) - (actions * action_height)) / height) - 1);
|
2008-06-12 11:17:16 +00:00
|
|
|
|
|
|
|
|
|
if (items <= 0)
|
|
|
|
|
gtk_widget_hide (completion->priv->scrolled_window);
|
|
|
|
|
else
|
|
|
|
|
gtk_widget_show (completion->priv->scrolled_window);
|
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
if (completion->priv->popup_set_width)
|
2016-04-11 03:01:10 +00:00
|
|
|
|
width = MIN (allocation.width, area.width);
|
2005-04-04 05:15:32 +00:00
|
|
|
|
else
|
|
|
|
|
width = -1;
|
|
|
|
|
|
2005-04-04 21:35:46 +00:00
|
|
|
|
gtk_tree_view_columns_autosize (GTK_TREE_VIEW (completion->priv->tree_view));
|
2010-11-08 23:37:37 +00:00
|
|
|
|
gtk_scrolled_window_set_min_content_width (GTK_SCROLLED_WINDOW (completion->priv->scrolled_window), width);
|
2012-03-27 18:23:48 +00:00
|
|
|
|
gtk_widget_set_size_request (completion->priv->popup_window, width, -1);
|
2010-11-08 23:37:37 +00:00
|
|
|
|
gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (completion->priv->scrolled_window), items * height);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2008-09-17 15:22:52 +00:00
|
|
|
|
if (actions)
|
2012-03-27 18:23:48 +00:00
|
|
|
|
gtk_widget_show (completion->priv->action_view);
|
2003-11-19 21:26:27 +00:00
|
|
|
|
else
|
|
|
|
|
gtk_widget_hide (completion->priv->action_view);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
|
gtk_widget_get_preferred_size (completion->priv->popup_window,
|
|
|
|
|
&popup_req, NULL);
|
2010-09-14 01:33:06 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (x < area.x)
|
|
|
|
|
x = area.x;
|
|
|
|
|
else if (x + popup_req.width > area.x + area.width)
|
|
|
|
|
x = area.x + area.width - popup_req.width;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (y + entry_req.height + popup_req.height <= area.y + area.height ||
|
|
|
|
|
y - area.y < (area.y + area.height) - (y + entry_req.height))
|
2004-04-12 19:40:22 +00:00
|
|
|
|
{
|
2004-07-30 06:22:26 +00:00
|
|
|
|
y += entry_req.height;
|
2004-04-12 19:40:22 +00:00
|
|
|
|
above = FALSE;
|
|
|
|
|
}
|
2004-03-17 00:17:07 +00:00
|
|
|
|
else
|
2004-04-12 19:40:22 +00:00
|
|
|
|
{
|
|
|
|
|
y -= popup_req.height;
|
|
|
|
|
above = TRUE;
|
|
|
|
|
}
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
|
|
|
|
if (matches > 0)
|
2004-04-21 21:47:53 +00:00
|
|
|
|
{
|
|
|
|
|
path = gtk_tree_path_new_from_indices (above ? matches - 1 : 0, -1);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (completion->priv->tree_view), path,
|
|
|
|
|
NULL, FALSE, 0.0, 0.0);
|
2004-04-21 21:47:53 +00:00
|
|
|
|
gtk_tree_path_free (path);
|
|
|
|
|
}
|
2004-03-17 00:17:07 +00:00
|
|
|
|
|
|
|
|
|
gtk_window_move (GTK_WINDOW (completion->priv->popup_window), x, y);
|
2003-11-17 22:02:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-26 18:55:45 +00:00
|
|
|
|
static void
|
|
|
|
|
prepare_popup_func (GdkSeat *seat,
|
|
|
|
|
GdkWindow *window,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = user_data;
|
|
|
|
|
|
|
|
|
|
/* prevent the first row being focused */
|
|
|
|
|
gtk_widget_grab_focus (completion->priv->tree_view);
|
|
|
|
|
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
|
|
|
|
|
|
|
|
|
|
gtk_widget_show (completion->priv->popup_window);
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-02 17:23:29 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_popup (GtkEntryCompletion *completion)
|
2003-11-17 22:02:21 +00:00
|
|
|
|
{
|
2005-10-28 20:35:11 +00:00
|
|
|
|
GtkWidget *toplevel;
|
2003-11-17 22:02:21 +00:00
|
|
|
|
|
2010-03-02 04:19:28 +00:00
|
|
|
|
if (gtk_widget_get_mapped (completion->priv->popup_window))
|
2003-11-17 22:02:21 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2010-03-02 04:19:28 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->entry))
|
Rework of GtkFileChooserButton, some cleanups. Fixes #154388, #154390,
2004-10-25 James M. Cape <jcape@ignore-your.tv>
Rework of GtkFileChooserButton, some cleanups. Fixes #154388,
#154390, #154390, #156272.
* docs/reference/gtk/gtk-docs.sgml: Moved GtkFileChooserButton
below GtkFileChooser.
* docs/reference/gtk/gtk-sections.txt: Added
gtk_file_chooser_button_get_width_chars(),
gtk_file_chooser_button_set_width_chars(),
gtk_label_set_width_chars(), gtk_label_get_width_chars().
* docs/reference/gtk/gtk.types: Added
gtk_cell_renderer_combo_get_type,
gtk_cell_view_get_type,
gtk_text_iter_get_type.
* docs/reference/gtk/tmpl/gtkaboutdialog.sgml: Add
"logo-icon-name" property.
* docs/reference/gtk/tmpl/gtkcellview.sgml: Updates for
properties
(b/c of get_type() inclusion above).
* docs/reference/gtk/tmpl/gtkfilechooserbutton.sgml:
* docs/reference/gtk/tmpl/gtklabel.sgml: Add "width-chars"
property,
getters/setters.
* docs/reference/gtk/tmpl/gtkcellrenderercombo.sgml: Added.
* gtk/gtkentrycompletion.c:
(_gtk_entry_completion_popdown): Don't show if the entry isn't
mapped.
* gtk/gtkfilechooserbutton.[c,h]: (*): About 45%
rewritten, adds "width-chars" property, icons, working save
modes, volume/Home/Desktop friendly-naming support.
* gtk/gtklabel.[c,h]:
(gtk_label_class_init), (gtk_label_init),
(gtk_label_get_property), (gtk_label_set_property),
(gtk_label_get_width_chars), (gtk_label_set_width_chars),
(gtk_label_size_request): Add "width-chars" property.
* tests/testfilechooserbutton.c: Update, use 4 different buttons
for the different ACTIONs.
* gtk/.cvsignore: Ignore gtk-update-icon-cache.
* tests/.cvsignore: Ignore testimage.
2004-10-26 04:29:56 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2010-03-01 03:21:41 +00:00
|
|
|
|
if (!gtk_widget_has_focus (completion->priv->entry))
|
2005-11-07 17:28:37 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
if (completion->priv->has_grab)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2004-06-06 03:17:45 +00:00
|
|
|
|
completion->priv->ignore_enter = TRUE;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2017-01-19 09:02:04 +00:00
|
|
|
|
gtk_widget_show (completion->priv->vbox);
|
2003-11-17 22:02:21 +00:00
|
|
|
|
|
2009-06-06 00:11:44 +00:00
|
|
|
|
/* default on no match */
|
|
|
|
|
completion->priv->current_selected = -1;
|
|
|
|
|
|
2004-03-17 00:17:07 +00:00
|
|
|
|
_gtk_entry_completion_resize_popup (completion);
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
2005-10-28 20:35:11 +00:00
|
|
|
|
toplevel = gtk_widget_get_toplevel (completion->priv->entry);
|
|
|
|
|
if (GTK_IS_WINDOW (toplevel))
|
2015-03-09 14:15:23 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (completion->priv->popup_window),
|
|
|
|
|
GTK_WINDOW (toplevel));
|
|
|
|
|
gtk_window_group_add_window (gtk_window_get_group (GTK_WINDOW (toplevel)),
|
|
|
|
|
GTK_WINDOW (completion->priv->popup_window));
|
|
|
|
|
}
|
2006-01-09 19:22:33 +00:00
|
|
|
|
|
2017-10-31 06:41:15 +00:00
|
|
|
|
gtk_window_set_display (GTK_WINDOW (completion->priv->popup_window),
|
|
|
|
|
gtk_widget_get_display (completion->priv->entry));
|
2006-01-09 19:22:33 +00:00
|
|
|
|
|
2015-10-16 00:16:54 +00:00
|
|
|
|
if (completion->priv->device)
|
|
|
|
|
{
|
2015-11-26 18:55:45 +00:00
|
|
|
|
gtk_grab_add (completion->priv->popup_window);
|
|
|
|
|
gdk_seat_grab (gdk_device_get_seat (completion->priv->device),
|
|
|
|
|
gtk_widget_get_window (completion->priv->popup_window),
|
|
|
|
|
GDK_SEAT_CAPABILITY_POINTER | GDK_SEAT_CAPABILITY_TOUCH,
|
|
|
|
|
TRUE, NULL, NULL,
|
|
|
|
|
prepare_popup_func, completion);
|
2015-10-16 00:16:54 +00:00
|
|
|
|
|
|
|
|
|
completion->priv->has_grab = TRUE;
|
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_entry_completion_popdown (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
2010-03-02 04:19:28 +00:00
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window))
|
2004-08-02 06:09:24 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2004-06-06 03:17:45 +00:00
|
|
|
|
completion->priv->ignore_enter = FALSE;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
if (completion->priv->has_grab)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
{
|
2015-11-26 18:55:45 +00:00
|
|
|
|
gdk_seat_ungrab (gdk_device_get_seat (completion->priv->device));
|
|
|
|
|
gtk_grab_remove (completion->priv->popup_window);
|
2012-08-31 14:47:23 +00:00
|
|
|
|
completion->priv->has_grab = FALSE;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
}
|
2003-07-11 12:51:24 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_hide (completion->priv->popup_window);
|
|
|
|
|
}
|
2004-05-10 19:10:27 +00:00
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
static gboolean
|
2004-05-10 19:10:27 +00:00
|
|
|
|
gtk_entry_completion_match_selected (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter)
|
2004-05-10 19:10:27 +00:00
|
|
|
|
{
|
|
|
|
|
gchar *str = NULL;
|
|
|
|
|
|
|
|
|
|
gtk_tree_model_get (model, iter, completion->priv->text_column, &str, -1);
|
2006-02-10 19:19:54 +00:00
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), str ? str : "");
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-05-10 19:10:27 +00:00
|
|
|
|
/* move cursor to the end */
|
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (completion->priv->entry), -1);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-05-10 19:10:27 +00:00
|
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_cursor_on_match (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter)
|
2007-04-27 16:50:04 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_entry_completion_insert_completion (completion, model, iter);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
2011-11-05 19:38:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_compute_prefix:
|
|
|
|
|
* @completion: the entry completion
|
|
|
|
|
* @key: The text to complete for
|
|
|
|
|
*
|
|
|
|
|
* Computes the common prefix that is shared by all rows in @completion
|
|
|
|
|
* that start with @key. If no row matches @key, %NULL will be returned.
|
|
|
|
|
* Note that a text column must have been set for this function to work,
|
|
|
|
|
* see gtk_entry_completion_set_text_column() for details.
|
|
|
|
|
*
|
2015-12-28 20:14:08 +00:00
|
|
|
|
* Returns: (nullable) (transfer full): The common prefix all rows starting with
|
|
|
|
|
* @key or %NULL if no row matches @key.
|
2011-11-05 19:38:28 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 3.4
|
|
|
|
|
**/
|
|
|
|
|
gchar *
|
|
|
|
|
gtk_entry_completion_compute_prefix (GtkEntryCompletion *completion,
|
|
|
|
|
const char *key)
|
2004-07-19 18:15:48 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
gchar *prefix = NULL;
|
|
|
|
|
gboolean valid;
|
|
|
|
|
|
2005-03-15 15:00:11 +00:00
|
|
|
|
if (completion->priv->text_column < 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (completion->priv->filter_model),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
&iter);
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
while (valid)
|
|
|
|
|
{
|
|
|
|
|
gchar *text;
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
gtk_tree_model_get (GTK_TREE_MODEL (completion->priv->filter_model),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
&iter, completion->priv->text_column, &text,
|
|
|
|
|
-1);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
2006-06-19 21:20:56 +00:00
|
|
|
|
if (text && g_str_has_prefix (text, key))
|
2011-01-04 22:54:47 +00:00
|
|
|
|
{
|
|
|
|
|
if (!prefix)
|
|
|
|
|
prefix = g_strdup (text);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gchar *p = prefix;
|
|
|
|
|
gchar *q = text;
|
|
|
|
|
|
|
|
|
|
while (*p && *p == *q)
|
|
|
|
|
{
|
|
|
|
|
p++;
|
|
|
|
|
q++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
|
|
2007-03-19 04:27:45 +00:00
|
|
|
|
if (p > prefix)
|
|
|
|
|
{
|
|
|
|
|
/* strip a partial multibyte character */
|
|
|
|
|
q = g_utf8_find_prev_char (prefix, p);
|
|
|
|
|
switch (g_utf8_get_char_validated (q, p - q))
|
|
|
|
|
{
|
|
|
|
|
case (gunichar)-2:
|
|
|
|
|
case (gunichar)-1:
|
|
|
|
|
*q = 0;
|
|
|
|
|
default: ;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-04 22:54:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
g_free (text);
|
|
|
|
|
valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (completion->priv->filter_model),
|
2011-01-04 22:54:47 +00:00
|
|
|
|
&iter);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return prefix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_real_insert_prefix (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
const gchar *prefix)
|
2004-07-19 18:15:48 +00:00
|
|
|
|
{
|
|
|
|
|
if (prefix)
|
|
|
|
|
{
|
|
|
|
|
gint key_len;
|
|
|
|
|
gint prefix_len;
|
|
|
|
|
const gchar *key;
|
|
|
|
|
|
|
|
|
|
prefix_len = g_utf8_strlen (prefix, -1);
|
|
|
|
|
|
|
|
|
|
key = gtk_entry_get_text (GTK_ENTRY (completion->priv->entry));
|
|
|
|
|
key_len = g_utf8_strlen (key, -1);
|
|
|
|
|
|
|
|
|
|
if (prefix_len > key_len)
|
2011-01-04 22:54:47 +00:00
|
|
|
|
{
|
|
|
|
|
gint pos = prefix_len;
|
2005-03-17 18:09:24 +00:00
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gtk_editable_insert_text (GTK_EDITABLE (completion->priv->entry),
|
|
|
|
|
prefix + strlen (key), -1, &pos);
|
|
|
|
|
gtk_editable_select_region (GTK_EDITABLE (completion->priv->entry),
|
|
|
|
|
key_len, prefix_len);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
|
2011-01-04 22:54:47 +00:00
|
|
|
|
completion->priv->has_completion = TRUE;
|
|
|
|
|
}
|
2004-07-19 18:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-28 07:47:08 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_completion_prefix:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-04-28 07:47:08 +00:00
|
|
|
|
* Get the original text entered by the user that triggered
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* the completion or %NULL if there’s no completion ongoing.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-05-26 18:49:58 +00:00
|
|
|
|
* Returns: the prefix for the current completion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-04-28 07:47:08 +00:00
|
|
|
|
* Since: 2.12
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2007-04-28 07:47:08 +00:00
|
|
|
|
const gchar*
|
|
|
|
|
gtk_entry_completion_get_completion_prefix (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), NULL);
|
|
|
|
|
|
|
|
|
|
return completion->priv->completion_prefix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2007-04-27 16:50:04 +00:00
|
|
|
|
gtk_entry_completion_insert_completion_text (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
const gchar *text)
|
2007-04-27 16:50:04 +00:00
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletionPrivate *priv = completion->priv;
|
|
|
|
|
gint len;
|
|
|
|
|
|
2007-04-28 07:47:08 +00:00
|
|
|
|
priv = completion->priv;
|
|
|
|
|
|
2007-04-27 16:50:04 +00:00
|
|
|
|
if (priv->changed_id > 0)
|
2007-07-16 16:43:54 +00:00
|
|
|
|
g_signal_handler_block (priv->entry, priv->changed_id);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
|
|
|
|
if (priv->insert_text_id > 0)
|
2007-07-16 16:43:54 +00:00
|
|
|
|
g_signal_handler_block (priv->entry, priv->insert_text_id);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
2007-07-19 15:44:23 +00:00
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (priv->entry), text);
|
2007-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
|
|
len = strlen (priv->completion_prefix);
|
|
|
|
|
gtk_editable_select_region (GTK_EDITABLE (priv->entry), len, -1);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
|
|
|
|
if (priv->changed_id > 0)
|
2007-07-16 16:43:54 +00:00
|
|
|
|
g_signal_handler_unblock (priv->entry, priv->changed_id);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
|
|
|
|
if (priv->insert_text_id > 0)
|
2007-07-16 16:43:54 +00:00
|
|
|
|
g_signal_handler_unblock (priv->entry, priv->insert_text_id);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-04-28 07:47:08 +00:00
|
|
|
|
static gboolean
|
2007-04-27 16:50:04 +00:00
|
|
|
|
gtk_entry_completion_insert_completion (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
GtkTreeModel *model,
|
|
|
|
|
GtkTreeIter *iter)
|
2007-04-27 16:50:04 +00:00
|
|
|
|
{
|
|
|
|
|
gchar *str = NULL;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->text_column < 0)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
gtk_tree_model_get (model, iter,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
completion->priv->text_column, &str,
|
|
|
|
|
-1);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
|
|
|
|
|
gtk_entry_completion_insert_completion_text (completion, str);
|
|
|
|
|
|
|
|
|
|
g_free (str);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_insert_prefix:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
|
|
|
|
* Requests a prefix insertion.
|
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2004-07-19 18:15:48 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_insert_prefix (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
gboolean done;
|
|
|
|
|
gchar *prefix;
|
|
|
|
|
|
2007-01-26 11:39:16 +00:00
|
|
|
|
if (completion->priv->insert_text_id > 0)
|
|
|
|
|
g_signal_handler_block (completion->priv->entry,
|
|
|
|
|
completion->priv->insert_text_id);
|
|
|
|
|
|
2011-11-05 19:38:28 +00:00
|
|
|
|
prefix = gtk_entry_completion_compute_prefix (completion,
|
|
|
|
|
gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)));
|
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
if (prefix)
|
|
|
|
|
{
|
|
|
|
|
g_signal_emit (completion, entry_completion_signals[INSERT_PREFIX],
|
2011-01-04 22:54:47 +00:00
|
|
|
|
0, prefix, &done);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
g_free (prefix);
|
|
|
|
|
}
|
2007-01-26 11:39:16 +00:00
|
|
|
|
|
|
|
|
|
if (completion->priv->insert_text_id > 0)
|
|
|
|
|
g_signal_handler_unblock (completion->priv->entry,
|
|
|
|
|
completion->priv->insert_text_id);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_inline_completion:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @inline_completion: %TRUE to do inline completion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Sets whether the common prefix of the possible completions should
|
|
|
|
|
* be automatically inserted in the entry.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
2004-07-19 18:15:48 +00:00
|
|
|
|
gtk_entry_completion_set_inline_completion (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gboolean inline_completion)
|
2004-07-19 18:15:48 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
inline_completion = inline_completion != FALSE;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->inline_completion != inline_completion)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->inline_completion = inline_completion;
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_INLINE_COMPLETION]);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_inline_completion:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Returns whether the common prefix of the possible completions should
|
|
|
|
|
* be automatically inserted in the entry.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if inline completion is turned on
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2004-07-19 18:15:48 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_entry_completion_get_inline_completion (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), FALSE);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
return completion->priv->inline_completion;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_popup_completion:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2004-07-19 19:33:05 +00:00
|
|
|
|
* @popup_completion: %TRUE to do popup completion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Sets whether the completions should be presented in a popup window.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
2004-07-19 18:15:48 +00:00
|
|
|
|
gtk_entry_completion_set_popup_completion (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gboolean popup_completion)
|
2004-07-19 18:15:48 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
popup_completion = popup_completion != FALSE;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->popup_completion != popup_completion)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->popup_completion = popup_completion;
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_POPUP_COMPLETION]);
|
2004-07-19 18:15:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_popup_completion:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Returns whether the completions should be presented in a popup window.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if popup completion is turned on
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2004-07-19 18:15:48 +00:00
|
|
|
|
* Since: 2.6
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2004-07-19 18:15:48 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_entry_completion_get_popup_completion (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), TRUE);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2004-07-19 18:15:48 +00:00
|
|
|
|
return completion->priv->popup_completion;
|
|
|
|
|
}
|
2005-03-20 07:01:23 +00:00
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_popup_set_width:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @popup_set_width: %TRUE to make the width of the popup the same as the entry
|
|
|
|
|
*
|
|
|
|
|
* Sets whether the completion popup window will be resized to be the same
|
|
|
|
|
* width as the entry.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.8
|
|
|
|
|
*/
|
2011-01-04 22:54:47 +00:00
|
|
|
|
void
|
2005-04-04 05:15:32 +00:00
|
|
|
|
gtk_entry_completion_set_popup_set_width (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gboolean popup_set_width)
|
2005-04-04 05:15:32 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
popup_set_width = popup_set_width != FALSE;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->popup_set_width != popup_set_width)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->popup_set_width = popup_set_width;
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_POPUP_SET_WIDTH]);
|
2005-04-04 05:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_popup_set_width:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
|
|
|
|
* Returns whether the completion popup window will be resized to the
|
2005-04-04 05:15:32 +00:00
|
|
|
|
* width of the entry.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the popup window will be resized to the width of
|
2005-04-04 05:15:32 +00:00
|
|
|
|
* the entry
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2005-04-04 05:15:32 +00:00
|
|
|
|
* Since: 2.8
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2005-04-04 05:15:32 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_entry_completion_get_popup_set_width (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), TRUE);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2005-04-04 05:15:32 +00:00
|
|
|
|
return completion->priv->popup_set_width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_popup_single_match:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @popup_single_match: %TRUE if the popup should appear even for a single
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* match
|
2005-05-26 20:36:36 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets whether the completion popup window will appear even if there is
|
|
|
|
|
* only a single match. You may want to set this to %FALSE if you
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* are using [inline completion][GtkEntryCompletion--inline-completion].
|
2005-05-26 20:36:36 +00:00
|
|
|
|
*
|
|
|
|
|
* Since: 2.8
|
|
|
|
|
*/
|
2011-01-04 22:54:47 +00:00
|
|
|
|
void
|
2005-05-26 20:36:36 +00:00
|
|
|
|
gtk_entry_completion_set_popup_single_match (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gboolean popup_single_match)
|
2005-05-26 20:36:36 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
popup_single_match = popup_single_match != FALSE;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->popup_single_match != popup_single_match)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->popup_single_match = popup_single_match;
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_POPUP_SINGLE_MATCH]);
|
2005-05-26 20:36:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_popup_single_match:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2005-05-26 20:36:36 +00:00
|
|
|
|
* Returns whether the completion popup window will appear even if there is
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* only a single match.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the popup window will appear regardless of the
|
2011-01-04 22:54:47 +00:00
|
|
|
|
* number of matches
|
|
|
|
|
*
|
2005-05-26 20:36:36 +00:00
|
|
|
|
* Since: 2.8
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2005-05-26 20:36:36 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_entry_completion_get_popup_single_match (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), TRUE);
|
2011-01-04 22:54:47 +00:00
|
|
|
|
|
2005-05-26 20:36:36 +00:00
|
|
|
|
return completion->priv->popup_single_match;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 18:49:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_set_inline_selection:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
* @inline_selection: %TRUE to do inline selection
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-05-26 18:49:58 +00:00
|
|
|
|
* Sets whether it is possible to cycle through the possible completions
|
|
|
|
|
* inside the entry.
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*
|
2007-05-26 18:49:58 +00:00
|
|
|
|
* Since: 2.12
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2007-04-27 16:50:04 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_entry_completion_set_inline_selection (GtkEntryCompletion *completion,
|
2011-01-04 22:54:47 +00:00
|
|
|
|
gboolean inline_selection)
|
2007-04-27 16:50:04 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
|
|
|
|
|
|
|
|
|
|
inline_selection = inline_selection != FALSE;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->inline_selection != inline_selection)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->inline_selection = inline_selection;
|
|
|
|
|
|
2015-09-06 02:35:22 +00:00
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (completion), entry_completion_props[PROP_INLINE_SELECTION]);
|
2007-04-27 16:50:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 18:49:58 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_entry_completion_get_inline_selection:
|
|
|
|
|
* @completion: a #GtkEntryCompletion
|
|
|
|
|
*
|
|
|
|
|
* Returns %TRUE if inline-selection mode is turned on.
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE if inline-selection mode is on
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.12
|
2011-01-04 22:54:47 +00:00
|
|
|
|
*/
|
2007-04-27 16:50:04 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_entry_completion_get_inline_selection (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ENTRY_COMPLETION (completion), FALSE);
|
|
|
|
|
|
|
|
|
|
return completion->priv->inline_selection;
|
|
|
|
|
}
|
2012-08-31 14:47:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
gtk_entry_completion_timeout (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (data);
|
|
|
|
|
|
|
|
|
|
completion->priv->completion_timeout = 0;
|
|
|
|
|
|
|
|
|
|
if (completion->priv->filter_model &&
|
|
|
|
|
g_utf8_strlen (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)), -1)
|
|
|
|
|
>= completion->priv->minimum_key_length)
|
|
|
|
|
{
|
|
|
|
|
gint matches;
|
|
|
|
|
gint actions;
|
|
|
|
|
GtkTreeSelection *s;
|
|
|
|
|
gboolean popup_single;
|
|
|
|
|
|
|
|
|
|
gtk_entry_completion_complete (completion);
|
|
|
|
|
matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
|
|
|
|
|
|
|
|
|
|
s = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
|
|
|
|
|
|
|
|
|
|
gtk_tree_selection_unselect_all (s);
|
|
|
|
|
|
|
|
|
|
actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
|
|
|
|
|
|
|
|
|
|
g_object_get (completion, "popup-single-match", &popup_single, NULL);
|
|
|
|
|
if ((matches > (popup_single ? 0: 1)) || actions > 0)
|
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_visible (completion->priv->popup_window))
|
|
|
|
|
_gtk_entry_completion_resize_popup (completion);
|
|
|
|
|
else
|
2012-10-02 17:23:29 +00:00
|
|
|
|
gtk_entry_completion_popup (completion);
|
2012-08-31 14:47:23 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
}
|
|
|
|
|
else if (gtk_widget_get_visible (completion->priv->popup_window))
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline gboolean
|
|
|
|
|
keyval_is_cursor_move (guint keyval)
|
|
|
|
|
{
|
|
|
|
|
if (keyval == GDK_KEY_Up || keyval == GDK_KEY_KP_Up)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
if (keyval == GDK_KEY_Down || keyval == GDK_KEY_KP_Down)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
if (keyval == GDK_KEY_Page_Up)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
if (keyval == GDK_KEY_Page_Down)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_entry_completion_key_press (GtkWidget *widget,
|
|
|
|
|
GdkEventKey *event,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
gint matches, actions = 0;
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
2017-08-25 14:45:20 +00:00
|
|
|
|
guint keyval;
|
2012-08-31 14:47:23 +00:00
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (!completion->priv->popup_completion ||
|
|
|
|
|
!gdk_event_get_keyval ((GdkEvent *) event, &keyval))
|
2013-03-05 12:09:10 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (keyval == GDK_KEY_Return ||
|
|
|
|
|
keyval == GDK_KEY_KP_Enter ||
|
|
|
|
|
keyval == GDK_KEY_ISO_Enter ||
|
|
|
|
|
keyval == GDK_KEY_Escape)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
2017-03-18 06:13:13 +00:00
|
|
|
|
if (completion->priv->completion_timeout)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
g_source_remove (completion->priv->completion_timeout);
|
|
|
|
|
completion->priv->completion_timeout = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!gtk_widget_get_mapped (completion->priv->popup_window))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
matches = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->actions)
|
|
|
|
|
actions = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->actions), NULL);
|
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (keyval_is_cursor_move (keyval))
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreePath *path = NULL;
|
|
|
|
|
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (keyval == GDK_KEY_Up || keyval == GDK_KEY_KP_Up)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
completion->priv->current_selected = matches + actions - 1;
|
|
|
|
|
else
|
|
|
|
|
completion->priv->current_selected--;
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_Down || keyval == GDK_KEY_KP_Down)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (completion->priv->current_selected < matches + actions - 1)
|
|
|
|
|
completion->priv->current_selected++;
|
|
|
|
|
else
|
|
|
|
|
completion->priv->current_selected = -1;
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_Page_Up)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
completion->priv->current_selected = matches + actions - 1;
|
|
|
|
|
else if (completion->priv->current_selected == 0)
|
|
|
|
|
completion->priv->current_selected = -1;
|
|
|
|
|
else if (completion->priv->current_selected < matches)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->current_selected -= PAGE_STEP;
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
completion->priv->current_selected = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
completion->priv->current_selected -= PAGE_STEP;
|
|
|
|
|
if (completion->priv->current_selected < matches - 1)
|
|
|
|
|
completion->priv->current_selected = matches - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_Page_Down)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
completion->priv->current_selected = 0;
|
|
|
|
|
else if (completion->priv->current_selected < matches - 1)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->current_selected += PAGE_STEP;
|
|
|
|
|
if (completion->priv->current_selected > matches - 1)
|
|
|
|
|
completion->priv->current_selected = matches - 1;
|
|
|
|
|
}
|
|
|
|
|
else if (completion->priv->current_selected == matches + actions - 1)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->current_selected = -1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
completion->priv->current_selected += PAGE_STEP;
|
|
|
|
|
if (completion->priv->current_selected > matches + actions - 1)
|
|
|
|
|
completion->priv->current_selected = matches + actions - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
{
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
|
|
|
|
|
|
|
|
|
|
if (completion->priv->inline_selection &&
|
|
|
|
|
completion->priv->completion_prefix)
|
|
|
|
|
{
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (completion->priv->entry),
|
|
|
|
|
completion->priv->completion_prefix);
|
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (widget), -1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (completion->priv->current_selected < matches)
|
|
|
|
|
{
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view)));
|
|
|
|
|
|
|
|
|
|
path = gtk_tree_path_new_from_indices (completion->priv->current_selected, -1);
|
|
|
|
|
gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->tree_view),
|
|
|
|
|
path, NULL, FALSE);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->inline_selection)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
GtkTreeIter child_iter;
|
|
|
|
|
GtkTreeModel *model = NULL;
|
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
|
gboolean entry_set;
|
|
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
|
|
|
|
|
if (!gtk_tree_selection_get_selected (sel, &model, &iter))
|
|
|
|
|
return FALSE;
|
|
|
|
|
gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
|
|
|
|
|
model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
|
|
|
|
|
|
|
|
|
|
if (completion->priv->completion_prefix == NULL)
|
|
|
|
|
completion->priv->completion_prefix = g_strdup (gtk_entry_get_text (GTK_ENTRY (completion->priv->entry)));
|
|
|
|
|
|
|
|
|
|
g_signal_emit_by_name (completion, "cursor-on-match", model,
|
|
|
|
|
&child_iter, &entry_set);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (completion->priv->current_selected - matches >= 0)
|
|
|
|
|
{
|
|
|
|
|
gtk_tree_selection_unselect_all (gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view)));
|
|
|
|
|
|
|
|
|
|
path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
|
|
|
|
|
gtk_tree_view_set_cursor (GTK_TREE_VIEW (completion->priv->action_view),
|
|
|
|
|
path, NULL, FALSE);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->inline_selection &&
|
|
|
|
|
completion->priv->completion_prefix)
|
|
|
|
|
{
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (completion->priv->entry),
|
|
|
|
|
completion->priv->completion_prefix);
|
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (widget), -1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gtk_tree_path_free (path);
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_Escape ||
|
|
|
|
|
keyval == GDK_KEY_Left ||
|
|
|
|
|
keyval == GDK_KEY_KP_Left ||
|
|
|
|
|
keyval == GDK_KEY_Right ||
|
|
|
|
|
keyval == GDK_KEY_KP_Right)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
gboolean retval = TRUE;
|
|
|
|
|
|
|
|
|
|
gtk_entry_reset_im_context (GTK_ENTRY (widget));
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->current_selected < 0)
|
|
|
|
|
{
|
|
|
|
|
retval = FALSE;
|
|
|
|
|
goto keypress_completion_out;
|
|
|
|
|
}
|
|
|
|
|
else if (completion->priv->inline_selection)
|
|
|
|
|
{
|
|
|
|
|
/* Escape rejects the tentative completion */
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (keyval == GDK_KEY_Escape)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (completion->priv->completion_prefix)
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (completion->priv->entry),
|
|
|
|
|
completion->priv->completion_prefix);
|
|
|
|
|
else
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (completion->priv->entry), "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Move the cursor to the end for Right/Esc */
|
2017-08-25 14:45:20 +00:00
|
|
|
|
if (keyval == GDK_KEY_Right ||
|
|
|
|
|
keyval == GDK_KEY_KP_Right ||
|
|
|
|
|
keyval == GDK_KEY_Escape)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (widget), -1);
|
|
|
|
|
/* Let the default keybindings run for Left, i.e. either move to the
|
|
|
|
|
* * previous character or select word if a modifier is used */
|
|
|
|
|
else
|
|
|
|
|
retval = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keypress_completion_out:
|
|
|
|
|
if (completion->priv->inline_selection)
|
|
|
|
|
{
|
|
|
|
|
g_free (completion->priv->completion_prefix);
|
|
|
|
|
completion->priv->completion_prefix = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_Tab ||
|
|
|
|
|
keyval == GDK_KEY_KP_Tab ||
|
|
|
|
|
keyval == GDK_KEY_ISO_Left_Tab)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_entry_reset_im_context (GTK_ENTRY (widget));
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
g_free (completion->priv->completion_prefix);
|
|
|
|
|
completion->priv->completion_prefix = NULL;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2017-08-25 14:45:20 +00:00
|
|
|
|
else if (keyval == GDK_KEY_ISO_Enter ||
|
|
|
|
|
keyval == GDK_KEY_KP_Enter ||
|
|
|
|
|
keyval == GDK_KEY_Return)
|
2012-08-31 14:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
GtkTreeModel *model = NULL;
|
|
|
|
|
GtkTreeModel *child_model;
|
|
|
|
|
GtkTreeIter child_iter;
|
|
|
|
|
GtkTreeSelection *sel;
|
|
|
|
|
gboolean retval = TRUE;
|
|
|
|
|
|
|
|
|
|
gtk_entry_reset_im_context (GTK_ENTRY (widget));
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
if (completion->priv->current_selected < matches)
|
|
|
|
|
{
|
|
|
|
|
gboolean entry_set;
|
|
|
|
|
|
|
|
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->tree_view));
|
|
|
|
|
if (gtk_tree_selection_get_selected (sel, &model, &iter))
|
|
|
|
|
{
|
|
|
|
|
gtk_tree_model_filter_convert_iter_to_child_iter (GTK_TREE_MODEL_FILTER (model), &child_iter, &iter);
|
|
|
|
|
child_model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model));
|
|
|
|
|
g_signal_handler_block (widget, completion->priv->changed_id);
|
|
|
|
|
g_signal_emit_by_name (completion, "match-selected",
|
|
|
|
|
child_model, &child_iter, &entry_set);
|
|
|
|
|
g_signal_handler_unblock (widget, completion->priv->changed_id);
|
|
|
|
|
|
|
|
|
|
if (!entry_set)
|
|
|
|
|
{
|
|
|
|
|
gchar *str = NULL;
|
|
|
|
|
|
|
|
|
|
gtk_tree_model_get (model, &iter,
|
|
|
|
|
completion->priv->text_column, &str,
|
|
|
|
|
-1);
|
|
|
|
|
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (widget), str);
|
|
|
|
|
|
|
|
|
|
/* move the cursor to the end */
|
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (widget), -1);
|
|
|
|
|
g_free (str);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
retval = FALSE;
|
|
|
|
|
}
|
|
|
|
|
else if (completion->priv->current_selected - matches >= 0)
|
|
|
|
|
{
|
|
|
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (completion->priv->action_view));
|
|
|
|
|
if (gtk_tree_selection_get_selected (sel, &model, &iter))
|
|
|
|
|
{
|
|
|
|
|
GtkTreePath *path;
|
|
|
|
|
|
|
|
|
|
path = gtk_tree_path_new_from_indices (completion->priv->current_selected - matches, -1);
|
|
|
|
|
g_signal_emit_by_name (completion, "action-activated",
|
|
|
|
|
gtk_tree_path_get_indices (path)[0]);
|
|
|
|
|
gtk_tree_path_free (path);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
retval = FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_free (completion->priv->completion_prefix);
|
|
|
|
|
completion->priv->completion_prefix = NULL;
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_entry_completion_changed (GtkWidget *widget,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = GTK_ENTRY_COMPLETION (user_data);
|
|
|
|
|
GtkEntry *entry = GTK_ENTRY (widget);
|
|
|
|
|
GdkDevice *device;
|
|
|
|
|
|
2013-03-05 12:09:10 +00:00
|
|
|
|
if (!completion->priv->popup_completion)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
/* (re)install completion timeout */
|
|
|
|
|
if (completion->priv->completion_timeout)
|
2015-04-06 02:07:59 +00:00
|
|
|
|
{
|
|
|
|
|
g_source_remove (completion->priv->completion_timeout);
|
|
|
|
|
completion->priv->completion_timeout = 0;
|
|
|
|
|
}
|
2012-08-31 14:47:23 +00:00
|
|
|
|
|
|
|
|
|
if (!gtk_entry_get_text (entry))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* no need to normalize for this test */
|
|
|
|
|
if (completion->priv->minimum_key_length > 0 &&
|
|
|
|
|
strcmp ("", gtk_entry_get_text (entry)) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_visible (completion->priv->popup_window))
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
device = gtk_get_current_event_device ();
|
|
|
|
|
|
|
|
|
|
if (device && gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
|
|
|
|
|
device = gdk_device_get_associated_device (device);
|
|
|
|
|
|
|
|
|
|
if (device)
|
|
|
|
|
completion->priv->device = device;
|
|
|
|
|
|
|
|
|
|
completion->priv->completion_timeout =
|
|
|
|
|
gdk_threads_add_timeout (COMPLETION_TIMEOUT,
|
|
|
|
|
gtk_entry_completion_timeout,
|
|
|
|
|
completion);
|
2013-10-22 13:43:43 +00:00
|
|
|
|
g_source_set_name_by_id (completion->priv->completion_timeout, "[gtk+] gtk_entry_completion_timeout");
|
2012-08-31 14:47:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
check_completion_callback (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->check_completion_idle = NULL;
|
|
|
|
|
|
|
|
|
|
gtk_entry_completion_complete (completion);
|
|
|
|
|
gtk_entry_completion_insert_prefix (completion);
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
clear_completion_callback (GtkEntry *entry,
|
|
|
|
|
GParamSpec *pspec)
|
|
|
|
|
{
|
2013-03-05 12:09:10 +00:00
|
|
|
|
GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
|
|
|
|
|
|
|
|
|
|
if (!completion->priv->inline_completion)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
if (pspec->name == I_("cursor-position") ||
|
|
|
|
|
pspec->name == I_("selection-bound"))
|
2013-03-05 12:09:10 +00:00
|
|
|
|
completion->priv->has_completion = FALSE;
|
2012-08-31 14:47:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
accept_completion_callback (GtkEntry *entry)
|
|
|
|
|
{
|
|
|
|
|
GtkEntryCompletion *completion = gtk_entry_get_completion (entry);
|
|
|
|
|
|
2013-03-05 12:09:10 +00:00
|
|
|
|
if (!completion->priv->inline_completion)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
if (completion->priv->has_completion)
|
|
|
|
|
gtk_editable_set_position (GTK_EDITABLE (entry),
|
|
|
|
|
gtk_entry_buffer_get_length (gtk_entry_get_buffer (entry)));
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
completion_insert_text_callback (GtkEntry *entry,
|
|
|
|
|
const gchar *text,
|
|
|
|
|
gint length,
|
|
|
|
|
gint position,
|
|
|
|
|
GtkEntryCompletion *completion)
|
|
|
|
|
{
|
2013-03-05 12:09:10 +00:00
|
|
|
|
if (!completion->priv->inline_completion)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
/* idle to update the selection based on the file list */
|
|
|
|
|
if (completion->priv->check_completion_idle == NULL)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->check_completion_idle = g_idle_source_new ();
|
|
|
|
|
g_source_set_priority (completion->priv->check_completion_idle, G_PRIORITY_HIGH);
|
|
|
|
|
g_source_set_closure (completion->priv->check_completion_idle,
|
|
|
|
|
g_cclosure_new_object (G_CALLBACK (check_completion_callback),
|
|
|
|
|
G_OBJECT (completion)));
|
|
|
|
|
g_source_attach (completion->priv->check_completion_idle, NULL);
|
2017-08-13 13:03:40 +00:00
|
|
|
|
g_source_set_name (completion->priv->check_completion_idle, "[gtk+] check_completion_callback");
|
2012-08-31 14:47:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
connect_completion_signals (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
2013-03-05 12:09:10 +00:00
|
|
|
|
completion->priv->changed_id =
|
|
|
|
|
g_signal_connect (completion->priv->entry, "changed",
|
|
|
|
|
G_CALLBACK (gtk_entry_completion_changed), completion);
|
|
|
|
|
g_signal_connect (completion->priv->entry, "key-press-event",
|
|
|
|
|
G_CALLBACK (gtk_entry_completion_key_press), completion);
|
|
|
|
|
|
|
|
|
|
completion->priv->insert_text_id =
|
|
|
|
|
g_signal_connect (completion->priv->entry, "insert-text",
|
|
|
|
|
G_CALLBACK (completion_insert_text_callback), completion);
|
|
|
|
|
g_signal_connect (completion->priv->entry, "notify",
|
|
|
|
|
G_CALLBACK (clear_completion_callback), completion);
|
|
|
|
|
g_signal_connect (completion->priv->entry, "activate",
|
|
|
|
|
G_CALLBACK (accept_completion_callback), completion);
|
|
|
|
|
g_signal_connect (completion->priv->entry, "focus-out-event",
|
|
|
|
|
G_CALLBACK (accept_completion_callback), completion);
|
2012-08-31 14:47:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-03 21:32:21 +00:00
|
|
|
|
static void
|
|
|
|
|
set_accessible_relation (GtkWidget *window,
|
|
|
|
|
GtkWidget *entry)
|
|
|
|
|
{
|
|
|
|
|
AtkObject *window_accessible;
|
|
|
|
|
AtkObject *entry_accessible;
|
|
|
|
|
|
|
|
|
|
window_accessible = gtk_widget_get_accessible (window);
|
|
|
|
|
entry_accessible = gtk_widget_get_accessible (entry);
|
|
|
|
|
|
|
|
|
|
atk_object_add_relationship (window_accessible,
|
|
|
|
|
ATK_RELATION_POPUP_FOR,
|
|
|
|
|
entry_accessible);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
unset_accessible_relation (GtkWidget *window,
|
|
|
|
|
GtkWidget *entry)
|
|
|
|
|
{
|
|
|
|
|
AtkObject *window_accessible;
|
|
|
|
|
AtkObject *entry_accessible;
|
|
|
|
|
|
|
|
|
|
window_accessible = gtk_widget_get_accessible (window);
|
|
|
|
|
entry_accessible = gtk_widget_get_accessible (entry);
|
|
|
|
|
|
|
|
|
|
atk_object_remove_relationship (window_accessible,
|
|
|
|
|
ATK_RELATION_POPUP_FOR,
|
|
|
|
|
entry_accessible);
|
|
|
|
|
}
|
2012-08-31 14:47:23 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
disconnect_completion_signals (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
if (completion->priv->changed_id > 0 &&
|
|
|
|
|
g_signal_handler_is_connected (completion->priv->entry,
|
|
|
|
|
completion->priv->changed_id))
|
|
|
|
|
{
|
|
|
|
|
g_signal_handler_disconnect (completion->priv->entry,
|
|
|
|
|
completion->priv->changed_id);
|
|
|
|
|
completion->priv->changed_id = 0;
|
|
|
|
|
}
|
|
|
|
|
g_signal_handlers_disconnect_by_func (completion->priv->entry,
|
|
|
|
|
G_CALLBACK (gtk_entry_completion_key_press), completion);
|
|
|
|
|
if (completion->priv->insert_text_id > 0 &&
|
|
|
|
|
g_signal_handler_is_connected (completion->priv->entry,
|
|
|
|
|
completion->priv->insert_text_id))
|
|
|
|
|
{
|
|
|
|
|
g_signal_handler_disconnect (completion->priv->entry,
|
|
|
|
|
completion->priv->insert_text_id);
|
|
|
|
|
completion->priv->insert_text_id = 0;
|
|
|
|
|
}
|
|
|
|
|
g_signal_handlers_disconnect_by_func (completion->priv->entry,
|
|
|
|
|
G_CALLBACK (completion_insert_text_callback), completion);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (completion->priv->entry,
|
|
|
|
|
G_CALLBACK (clear_completion_callback), completion);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (completion->priv->entry,
|
|
|
|
|
G_CALLBACK (accept_completion_callback), completion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_entry_completion_disconnect (GtkEntryCompletion *completion)
|
|
|
|
|
{
|
|
|
|
|
if (completion->priv->completion_timeout)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (completion->priv->completion_timeout);
|
|
|
|
|
completion->priv->completion_timeout = 0;
|
|
|
|
|
}
|
|
|
|
|
if (completion->priv->check_completion_idle)
|
|
|
|
|
{
|
|
|
|
|
g_source_destroy (completion->priv->check_completion_idle);
|
|
|
|
|
completion->priv->check_completion_idle = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (gtk_widget_get_mapped (completion->priv->popup_window))
|
|
|
|
|
_gtk_entry_completion_popdown (completion);
|
|
|
|
|
|
|
|
|
|
disconnect_completion_signals (completion);
|
|
|
|
|
|
2013-02-03 21:32:21 +00:00
|
|
|
|
unset_accessible_relation (completion->priv->popup_window,
|
|
|
|
|
completion->priv->entry);
|
2013-09-19 20:35:00 +00:00
|
|
|
|
gtk_window_set_attached_to (GTK_WINDOW (completion->priv->popup_window),
|
|
|
|
|
NULL);
|
2013-02-03 21:32:21 +00:00
|
|
|
|
|
2014-08-21 15:36:45 +00:00
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (completion->priv->popup_window), NULL);
|
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
completion->priv->entry = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_entry_completion_connect (GtkEntryCompletion *completion,
|
|
|
|
|
GtkEntry *entry)
|
|
|
|
|
{
|
|
|
|
|
completion->priv->entry = GTK_WIDGET (entry);
|
2013-02-03 21:32:21 +00:00
|
|
|
|
|
|
|
|
|
set_accessible_relation (completion->priv->popup_window,
|
|
|
|
|
completion->priv->entry);
|
2013-09-19 20:35:00 +00:00
|
|
|
|
gtk_window_set_attached_to (GTK_WINDOW (completion->priv->popup_window),
|
|
|
|
|
completion->priv->entry);
|
2013-02-03 21:32:21 +00:00
|
|
|
|
|
2012-08-31 14:47:23 +00:00
|
|
|
|
connect_completion_signals (completion);
|
|
|
|
|
}
|