summaryrefslogtreecommitdiff
path: root/testsuite/reftests
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-10-03 19:21:45 -0700
committerChristian Hergert <chergert@redhat.com>2019-10-04 14:45:43 -0700
commitfea2a82ef6d66d6de8fb13657614534bd6e1f5fc (patch)
tree28e5098c5c638d6cd0319931fb1200d586fcaf3a /testsuite/reftests
parent8373cc6c471f478dbf48fad7f5532e27f286c150 (diff)
downloadgtk+-fea2a82ef6d66d6de8fb13657614534bd6e1f5fc.tar.gz
textview: use GtkTextViewChild for border and overlay children
This creates a new GtkTextViewChild that can manage overlay children at given x,y offsets in buffer coordinates. This simplifies GtkTextView by extracting this from GtkTextWindow as well as providing a real widget for the borders. With this change, we also rename gtk_text_view_add_child_in_window() to gtk_text_view_add_overlay(). For those that were using GTK_TEXT_WINDOW_WIDGET, they can use a GtkOverlay. It does not appear that anyone was using GTK_TEXT_WINDOW_(LEFT|RIGHT|TOP|BOTTOM) for widgets in this fashion, but that can be done by setting a gutter widget with gtk_text_view_set_gutter(). We can make GtkTextViewChild public if necessary to simplify this should it become necessary. GtkTextViewChild will setup a CSS node of either "text" or "border" depending on the GtkTextWindowType. The old GtkTextViewChild has been renamed to AnchoredChild as it is only used for widgets with anchors in the GtkTextBuffer. This also removes the use of allocated GSList and instead embeds a GQueue and GList to save a few extraneous allocations.
Diffstat (limited to 'testsuite/reftests')
-rw-r--r--testsuite/reftests/textview-border-windows.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/testsuite/reftests/textview-border-windows.c b/testsuite/reftests/textview-border-windows.c
index 019b654907..7a6646393a 100644
--- a/testsuite/reftests/textview-border-windows.c
+++ b/testsuite/reftests/textview-border-windows.c
@@ -17,12 +17,23 @@
#include <gtk/gtk.h>
+static void
+set_border_window_size (GtkTextView *text_view,
+ GtkTextWindowType win,
+ gint size)
+{
+ GtkWidget *label;
+
+ label = gtk_label_new (NULL);
+ gtk_widget_set_size_request (label, size, size);
+ gtk_text_view_set_gutter (text_view, win, label);
+}
G_MODULE_EXPORT void
add_border_windows (GtkTextView *text_view)
{
- gtk_text_view_set_border_window_size (text_view, GTK_TEXT_WINDOW_LEFT, 30);
- gtk_text_view_set_border_window_size (text_view, GTK_TEXT_WINDOW_RIGHT, 30);
- gtk_text_view_set_border_window_size (text_view, GTK_TEXT_WINDOW_TOP, 30);
- gtk_text_view_set_border_window_size (text_view, GTK_TEXT_WINDOW_BOTTOM, 30);
+ set_border_window_size (text_view, GTK_TEXT_WINDOW_LEFT, 30);
+ set_border_window_size (text_view, GTK_TEXT_WINDOW_RIGHT, 30);
+ set_border_window_size (text_view, GTK_TEXT_WINDOW_TOP, 30);
+ set_border_window_size (text_view, GTK_TEXT_WINDOW_BOTTOM, 30);
}