mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Move the repositioning logic from _gtk_entry_completion() popup over here.
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de> * gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup): Move the repositioning logic from _gtk_entry_completion() popup over here. Fixes #137355, reported by Niklas Knutsson.
This commit is contained in:
parent
096dc4cc93
commit
4036e7f5e6
@ -1,3 +1,9 @@
|
||||
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
|
||||
Move the repositioning logic from _gtk_entry_completion() popup
|
||||
over here. Fixes #137355, reported by Niklas Knutsson.
|
||||
|
||||
Tue Mar 16 13:29:58 2004 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* === Released 2.4.0 ===
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
|
||||
Move the repositioning logic from _gtk_entry_completion() popup
|
||||
over here. Fixes #137355, reported by Niklas Knutsson.
|
||||
|
||||
Tue Mar 16 13:29:58 2004 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* === Released 2.4.0 ===
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
|
||||
Move the repositioning logic from _gtk_entry_completion() popup
|
||||
over here. Fixes #137355, reported by Niklas Knutsson.
|
||||
|
||||
Tue Mar 16 13:29:58 2004 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* === Released 2.4.0 ===
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
|
||||
Move the repositioning logic from _gtk_entry_completion() popup
|
||||
over here. Fixes #137355, reported by Niklas Knutsson.
|
||||
|
||||
Tue Mar 16 13:29:58 2004 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* === Released 2.4.0 ===
|
||||
|
@ -1,3 +1,9 @@
|
||||
Wed Mar 17 01:20:28 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkentrycompletion.c (_gtk_entry_completion_resize_popup):
|
||||
Move the repositioning logic from _gtk_entry_completion() popup
|
||||
over here. Fixes #137355, reported by Niklas Knutsson.
|
||||
|
||||
Tue Mar 16 13:29:58 2004 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* === Released 2.4.0 ===
|
||||
|
@ -1089,10 +1089,19 @@ get_borders (GtkEntry *entry,
|
||||
gint
|
||||
_gtk_entry_completion_resize_popup (GtkEntryCompletion *completion)
|
||||
{
|
||||
gint x, y;
|
||||
gint items, height, x_border, y_border;
|
||||
GdkScreen *screen;
|
||||
gint monitor_num;
|
||||
GdkRectangle monitor;
|
||||
GtkRequisition popup_req;
|
||||
|
||||
gdk_window_get_origin (completion->priv->entry->window, &x, &y);
|
||||
get_borders (GTK_ENTRY (completion->priv->entry), &x_border, &y_border);
|
||||
|
||||
x += x_border;
|
||||
y += 2 * y_border;
|
||||
|
||||
items = gtk_tree_model_iter_n_children (GTK_TREE_MODEL (completion->priv->filter_model), NULL);
|
||||
|
||||
items = MIN (items, 15);
|
||||
@ -1129,42 +1138,6 @@ _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion)
|
||||
else
|
||||
gtk_widget_hide (completion->priv->action_view);
|
||||
|
||||
return height;
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_entry_completion_popup (GtkEntryCompletion *completion)
|
||||
{
|
||||
gint x, y, x_border, y_border;
|
||||
gint height;
|
||||
GdkScreen *screen;
|
||||
gint monitor_num;
|
||||
GdkRectangle monitor;
|
||||
GtkRequisition popup_req;
|
||||
GtkTreeViewColumn *column;
|
||||
GList *renderers;
|
||||
|
||||
if (GTK_WIDGET_MAPPED (completion->priv->popup_window))
|
||||
return;
|
||||
|
||||
column = gtk_tree_view_get_column (GTK_TREE_VIEW (completion->priv->action_view), 0);
|
||||
renderers = gtk_tree_view_column_get_cell_renderers (column);
|
||||
gtk_widget_ensure_style (completion->priv->tree_view);
|
||||
g_object_set (GTK_CELL_RENDERER (renderers->data), "cell_background_gdk",
|
||||
&completion->priv->tree_view->style->bg[GTK_STATE_NORMAL],
|
||||
NULL);
|
||||
g_list_free (renderers);
|
||||
|
||||
gtk_widget_show_all (completion->priv->vbox);
|
||||
|
||||
gdk_window_get_origin (completion->priv->entry->window, &x, &y);
|
||||
get_borders (GTK_ENTRY (completion->priv->entry), &x_border, &y_border);
|
||||
|
||||
x += x_border;
|
||||
y += 2 * y_border;
|
||||
|
||||
height = _gtk_entry_completion_resize_popup (completion);
|
||||
|
||||
gtk_widget_size_request (completion->priv->popup_window, &popup_req);
|
||||
|
||||
screen = gtk_widget_get_screen (GTK_WIDGET (completion->priv->entry));
|
||||
@ -1184,6 +1157,30 @@ _gtk_entry_completion_popup (GtkEntryCompletion *completion)
|
||||
|
||||
gtk_window_move (GTK_WINDOW (completion->priv->popup_window), x, y);
|
||||
|
||||
return height;
|
||||
}
|
||||
|
||||
void
|
||||
_gtk_entry_completion_popup (GtkEntryCompletion *completion)
|
||||
{
|
||||
GtkTreeViewColumn *column;
|
||||
GList *renderers;
|
||||
|
||||
if (GTK_WIDGET_MAPPED (completion->priv->popup_window))
|
||||
return;
|
||||
|
||||
column = gtk_tree_view_get_column (GTK_TREE_VIEW (completion->priv->action_view), 0);
|
||||
renderers = gtk_tree_view_column_get_cell_renderers (column);
|
||||
gtk_widget_ensure_style (completion->priv->tree_view);
|
||||
g_object_set (GTK_CELL_RENDERER (renderers->data), "cell_background_gdk",
|
||||
&completion->priv->tree_view->style->bg[GTK_STATE_NORMAL],
|
||||
NULL);
|
||||
g_list_free (renderers);
|
||||
|
||||
gtk_widget_show_all (completion->priv->vbox);
|
||||
|
||||
_gtk_entry_completion_resize_popup (completion);
|
||||
|
||||
gtk_widget_show (completion->priv->popup_window);
|
||||
|
||||
gtk_grab_add (completion->priv->popup_window);
|
||||
|
Loading…
Reference in New Issue
Block a user