textview: use GtkTextViewChild for border and overlay children
authorChristian Hergert <chergert@redhat.com>
Fri, 4 Oct 2019 02:21:45 +0000 (19:21 -0700)
committerChristian Hergert <chergert@redhat.com>
Fri, 4 Oct 2019 21:45:43 +0000 (14:45 -0700)
commitfea2a82ef6d66d6de8fb13657614534bd6e1f5fc
tree28e5098c5c638d6cd0319931fb1200d586fcaf3a
parent8373cc6c471f478dbf48fad7f5532e27f286c150
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.
docs/reference/gtk/gtk4-sections.txt
gtk/gtktextutil.c
gtk/gtktextview.c
gtk/gtktextview.h
gtk/gtktextviewchild.c [new file with mode: 0644]
gtk/gtktextviewchildprivate.h [new file with mode: 0644]
gtk/meson.build
tests/testtextview.c
testsuite/reftests/textview-border-windows.c