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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*-
 *
 * This file is part of CtkSourceView
 *
 * Copyright (C) 2007 - Gustavo Giráldez
 * Copyright (C) 2007 - Paolo Maggi
 * Copyright (C) 2017 - Sébastien Wilmet <swilmet@gnome.org>
 *
 * This library 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.
 *
 * This library 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/>.
 */

#ifndef CTK_SOURCE_UTILS_PRIVATE_H
#define CTK_SOURCE_UTILS_PRIVATE_H

#include <ctk/ctk.h>

G_BEGIN_DECLS

G_GNUC_INTERNAL
gchar **	_ctk_source_utils_get_default_dirs		(const gchar *basename);

G_GNUC_INTERNAL
GSList *	_ctk_source_utils_get_file_list			(gchar       **path,
								 const gchar  *suffix,
								 gboolean      only_dirs);

G_GNUC_INTERNAL
gint		_ctk_source_utils_string_to_int			(const gchar *str);

G_GNUC_INTERNAL
gint		_ctk_source_utils_int_to_string			(guint         value,
								 const gchar **outstr);

G_GNUC_INTERNAL
gchar *		_ctk_source_utils_pango_font_description_to_css	(const PangoFontDescription *font_desc);

/* Note: it returns duplicated string. */
G_GNUC_INTERNAL
gchar *		_ctk_source_utils_dgettext			(const gchar *domain,<--- There is an unknown macro here somewhere. Configuration is required. If _ctk_source_utils_dgettext is a macro then please configure it.
								 const gchar *msgid) G_GNUC_FORMAT(2);
G_GNUC_INTERNAL
void _ctk_source_view_jump_to_iter (CtkTextView       *view,
                                    const CtkTextIter *iter,
                                    double             within_margin,
                                    gboolean           use_align,
                                    double             xalign,
                                    double             yalign);

G_END_DECLS

#endif /* CTK_SOURCE_UTILS_PRIVATE_H */