1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*- */
/*
* This file is part of GtkSourceView
*
* Copyright (C) 2013, 2014, 2016 - Sébastien Wilmet <swilmet@gnome.org>
*
* GtkSourceView is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* GtkSourceView 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
/*
* Custom sizing of the scrolled window containing the GtkTreeView containing
* the completion proposals. If the GtkTreeView is small enough, the scrolled
* window returns the natural size of the GtkTreeView. If it exceeds a certain
* size, the scrolled window returns a smaller size, with the height at a row
* boundary of the GtkTreeView.
*
* The purpose is to have a compact completion window, with a certain size
* limit.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "gtksourcecompletioncontainer.h"
#define UNREALIZED_WIDTH 350
#define MAX_HEIGHT 180
G_DEFINE_TYPE (GtkSourceCompletionContainer,
_gtk_source_completion_container,
GTK_TYPE_SCROLLED_WINDOW);
static gint
get_max_width (GtkSourceCompletionContainer *container)
{
if (gtk_widget_get_realized (GTK_WIDGET (container)))
{
GtkWidget *toplevel;
GdkWindow *window;
GdkScreen *screen;
gint max_width;
gint xorigin;
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (container));
window = gtk_widget_get_window (toplevel);
screen = gdk_window_get_screen (window);
gdk_window_get_origin (window, &xorigin, NULL);
max_width = gdk_screen_get_width (screen) - xorigin;
return MAX (max_width, UNREALIZED_WIDTH);
}
return UNREALIZED_WIDTH;
}
static void
_gtk_source_completion_container_get_preferred_width (GtkWidget *widget,
gint *min_width,
gint *nat_width)
{
GtkSourceCompletionContainer *container = GTK_SOURCE_COMPLETION_CONTAINER (widget);
GtkWidget *child;
GtkRequisition nat_size;
gint width;
child = gtk_bin_get_child (GTK_BIN (container));
gtk_widget_get_preferred_size (child, NULL, &nat_size);
width = MIN (nat_size.width, get_max_width (container));
if (GTK_WIDGET_CLASS (_gtk_source_completion_container_parent_class)->get_preferred_width != NULL)
{
gint min_width_parent = 0;
GTK_WIDGET_CLASS (_gtk_source_completion_container_parent_class)->get_preferred_width (widget,
&min_width_parent,
NULL);
width = MAX (width, min_width_parent);
}
if (min_width != NULL)
{
*min_width = width;
}
if (nat_width != NULL)
{
*nat_width = width;
}
g_return_if_fail (width >= 0);
}
static gint
get_row_height (GtkSourceCompletionContainer *container,
gint tree_view_height)
{
GtkWidget *tree_view;
GtkTreeModel *model;
gint nb_rows;
/* For another possible implementation, see gtkentrycompletion.c in the
* GTK+ source code (the _gtk_entry_completion_resize_popup() function).
* It uses gtk_tree_view_column_cell_get_size() for retrieving the
* height, plus gtk_widget_style_get() to retrieve the
* "vertical-separator" height (note that the vertical separator must
* probably be counted one less time than the number or rows).
* But using that technique is buggy, it returns a smaller height (it's
* maybe a bug in GtkTreeView, or there are other missing parameters).
*
* Note that the following implementation doesn't take into account
* "vertical-separator". If there are some sizing bugs, it's maybe the
* source of the problem. (note that on my system the separator size was
* 0).
*/
tree_view = gtk_bin_get_child (GTK_BIN (container));
model = gtk_tree_view_get_model (GTK_TREE_VIEW (tree_view));
if (model == NULL)
{
return 0;
}
nb_rows = gtk_tree_model_iter_n_children (model, NULL);
if (nb_rows == 0)
{
return 0;
}
return tree_view_height / nb_rows;
}
/* Return a height at a row boundary of the GtkTreeView. */
static void
_gtk_source_completion_container_get_preferred_height (GtkWidget *widget,
gint *min_height,
gint *nat_height)
{
GtkSourceCompletionContainer *container = GTK_SOURCE_COMPLETION_CONTAINER (widget);
GtkWidget *child;
GtkRequisition nat_size;
gint height;
child = gtk_bin_get_child (GTK_BIN (container));
gtk_widget_get_preferred_size (child, NULL, &nat_size);
if (nat_size.height <= MAX_HEIGHT)
{
height = nat_size.height;
}
else
{
gint row_height = get_row_height (container, nat_size.height);
gint n_rows_allowed = row_height != 0 ? MAX_HEIGHT / row_height : 0;
height = n_rows_allowed * row_height;
}
if (GTK_WIDGET_CLASS (_gtk_source_completion_container_parent_class)->get_preferred_height != NULL)
{
gint min_height_parent = 0;
GTK_WIDGET_CLASS (_gtk_source_completion_container_parent_class)->get_preferred_height (widget,
&min_height_parent,
NULL);
height = MAX (height, min_height_parent);
}
if (min_height != NULL)
{
*min_height = height;
}
if (nat_height != NULL)
{
*nat_height = height;
}
g_return_if_fail (height >= 0);
}
static void
_gtk_source_completion_container_class_init (GtkSourceCompletionContainerClass *klass)
{
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
widget_class->get_preferred_width = _gtk_source_completion_container_get_preferred_width;
widget_class->get_preferred_height = _gtk_source_completion_container_get_preferred_height;
}
static void
_gtk_source_completion_container_init (GtkSourceCompletionContainer *container)
{
}
GtkSourceCompletionContainer *
_gtk_source_completion_container_new (void)
{
return g_object_new (GTK_SOURCE_TYPE_COMPLETION_CONTAINER, NULL);
}
|