/* * This file is part of GtkSourceView * * Copyright 2015-2021 Christian Hergert * * 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 . * * SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #if !defined (GTK_SOURCE_H_INSIDE) && !defined (GTK_SOURCE_COMPILATION) # error "Only can be included directly." #endif #include #include "gtksourcetypes.h" G_BEGIN_DECLS #define GTK_SOURCE_TYPE_INDENTER (gtk_source_indenter_get_type()) GTK_SOURCE_AVAILABLE_IN_ALL G_DECLARE_INTERFACE (GtkSourceIndenter, gtk_source_indenter, GTK_SOURCE, INDENTER, GObject) struct _GtkSourceIndenterInterface { GTypeInterface parent_iface; gboolean (*is_trigger) (GtkSourceIndenter *self, GtkSourceView *view, const GtkTextIter *location, GdkModifierType state, guint keyval); void (*indent) (GtkSourceIndenter *self, GtkSourceView *view, GtkTextIter *iter); }; GTK_SOURCE_AVAILABLE_IN_ALL gboolean gtk_source_indenter_is_trigger (GtkSourceIndenter *self, GtkSourceView *view, const GtkTextIter *location, GdkModifierType state, guint keyval); GTK_SOURCE_AVAILABLE_IN_ALL void gtk_source_indenter_indent (GtkSourceIndenter *self, GtkSourceView *view, GtkTextIter *iter); G_END_DECLS