1/* gtktextviewprivate.h: Private header for GtkTextView
2 *
3 * Copyright (c) 2016 Emmanuele Bassi
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation; either version 2.1 of the License, or (at your
8 * option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
13 * License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef __GTK_TEXT_VIEW_PRIVATE_H__
20#define __GTK_TEXT_VIEW_PRIVATE_H__
21
22#include "gtktextview.h"
23#include "gtktextattributes.h"
24#include "gtkcssnodeprivate.h"
25
26G_BEGIN_DECLS
27
28GtkCssNode * gtk_text_view_get_text_node (GtkTextView *text_view);
29GtkCssNode * gtk_text_view_get_selection_node (GtkTextView *text_view);
30
31GtkTextAttributes * gtk_text_view_get_default_attributes (GtkTextView *text_view);
32
33GtkEventController *gtk_text_view_get_key_controller (GtkTextView *text_view);
34
35
36G_END_DECLS
37
38#endif /* __GTK_TEXT_VIEW_PRIVATE_H__ */
39

source code of gtk/gtk/gtktextviewprivate.h