diff options
author | Christian Hergert <chergert@redhat.com> | 2019-07-20 18:25:51 -0700 |
---|---|---|
committer | Christian Hergert <chergert@redhat.com> | 2019-07-21 16:03:45 -0700 |
commit | 4ff9163c47924a3ecb023a95b0b06eedaf3ec8d7 (patch) | |
tree | 1b126023590a0514ca374a2626feba3ac110ddb5 /gtk/gtktextutil.c | |
parent | 45ebe47d944d0168c90fa826e74f9a51c63c7be5 (diff) | |
download | gtk+-4ff9163c47924a3ecb023a95b0b06eedaf3ec8d7.tar.gz |
textview: port GtkTextView to GskPangoRenderer
This removes the use of GtkTextDisplay (a PangoRenderer) to use
the GskPangoRender which generates render nodes. Part of this means
improving the GskPangoRenderer to support the necessary features for
displaying a GtkTextView.
Primarily, this is a merging of GtkTextDisplay features into
GskPangoRender. Additionally, GtkTextDisplay was removed to allow for
gtk_text_layout_snapshot() to be implemented elsewhere.
Diffstat (limited to 'gtk/gtktextutil.c')
-rw-r--r-- | gtk/gtktextutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktextutil.c b/gtk/gtktextutil.c index 19c2f7982d..e806c6a205 100644 --- a/gtk/gtktextutil.c +++ b/gtk/gtktextutil.c @@ -27,8 +27,8 @@ #include "gtktextview.h" #include "gtktextutil.h" -#include "gtktextdisplayprivate.h" #include "gtktextbuffer.h" +#include "gtktextlayoutprivate.h" #include "gtkmenuitem.h" #include "gtkintl.h" |