Blame gspell/gspell-navigator-text-view.h

Packit aa0600
/*
Packit aa0600
 * This file is part of gspell, a spell-checking library.
Packit aa0600
 *
Packit aa0600
 * Copyright 2015, 2016 - Sébastien Wilmet <swilmet@gnome.org>
Packit aa0600
 *
Packit aa0600
 * This library is free software; you can redistribute it and/or
Packit aa0600
 * modify it under the terms of the GNU Lesser General Public
Packit aa0600
 * License as published by the Free Software Foundation; either
Packit aa0600
 * version 2.1 of the License, or (at your option) any later version.
Packit aa0600
 *
Packit aa0600
 * This library is distributed in the hope that it will be useful,
Packit aa0600
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aa0600
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aa0600
 * Lesser General Public License for more details.
Packit aa0600
 *
Packit aa0600
 * You should have received a copy of the GNU Lesser General Public License
Packit aa0600
 * along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit aa0600
 */
Packit aa0600
Packit aa0600
#ifndef GSPELL_NAVIGATOR_TEXT_VIEW_H
Packit aa0600
#define GSPELL_NAVIGATOR_TEXT_VIEW_H
Packit aa0600
Packit aa0600
#if !defined (GSPELL_H_INSIDE) && !defined (GSPELL_COMPILATION)
Packit aa0600
#error "Only <gspell/gspell.h> can be included directly."
Packit aa0600
#endif
Packit aa0600
Packit aa0600
#include <gtk/gtk.h>
Packit aa0600
#include <gspell/gspell-navigator.h>
Packit aa0600
#include <gspell/gspell-checker.h>
Packit aa0600
#include <gspell/gspell-version.h>
Packit aa0600
Packit aa0600
G_BEGIN_DECLS
Packit aa0600
Packit aa0600
#define GSPELL_TYPE_NAVIGATOR_TEXT_VIEW (gspell_navigator_text_view_get_type ())
Packit aa0600
Packit aa0600
GSPELL_AVAILABLE_IN_ALL
Packit aa0600
G_DECLARE_DERIVABLE_TYPE (GspellNavigatorTextView, gspell_navigator_text_view,
Packit aa0600
			  GSPELL, NAVIGATOR_TEXT_VIEW,
Packit aa0600
			  GInitiallyUnowned)
Packit aa0600
Packit aa0600
struct _GspellNavigatorTextViewClass
Packit aa0600
{
Packit aa0600
	GInitiallyUnownedClass parent_class;
Packit aa0600
Packit aa0600
	/* Padding for future expansion */
Packit aa0600
	gpointer padding[8];
Packit aa0600
};
Packit aa0600
Packit aa0600
GSPELL_AVAILABLE_IN_ALL
Packit aa0600
GspellNavigator *	gspell_navigator_text_view_new		(GtkTextView *view);
Packit aa0600
Packit aa0600
GSPELL_AVAILABLE_IN_ALL
Packit aa0600
GtkTextView *		gspell_navigator_text_view_get_view	(GspellNavigatorTextView *navigator);
Packit aa0600
Packit aa0600
G_END_DECLS
Packit aa0600
Packit aa0600
#endif /* GSPELL_NAVIGATOR_TEXT_VIEW_H */
Packit aa0600
Packit aa0600
/* ex:set ts=8 noet: */