summaryrefslogtreecommitdiff
path: root/gtksourceview/gtksourcehoverassistant-private.h
blob: 7925014afd38b16093369d8754dd32f5a1ef8af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * This file is part of GtkSourceView
 *
 * Copyright 2021 Christian Hergert <chergert@redhat.com>
 *
 * 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 <http://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#include "gtksourcetypes.h"

#include "gtksourceassistant-private.h"

G_BEGIN_DECLS

#define GTK_SOURCE_TYPE_HOVER_ASSISTANT (gtk_source_hover_assistant_get_type())

G_DECLARE_FINAL_TYPE (GtkSourceHoverAssistant, gtk_source_hover_assistant, GTK_SOURCE, HOVER_ASSISTANT, GtkSourceAssistant)

GtkSourceAssistant *_gtk_source_hover_assistant_new     (void);
void                _gtk_source_hover_assistant_dismiss (GtkSourceHoverAssistant  *self);
void                _gtk_source_hover_assistant_display (GtkSourceHoverAssistant  *self,
                                                         GtkSourceHoverProvider  **providers,
                                                         guint                     n_providers,
                                                         const GtkTextIter        *begin,
                                                         const GtkTextIter        *end,
                                                         const GtkTextIter        *location);

G_END_DECLS