Blame gtksourceview/completion-providers/words/gtksourcecompletionwords.h

Packit a7d494
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*-
Packit a7d494
 * gtksourcecompletionproviderwords.h
Packit a7d494
 * This file is part of GtkSourceView
Packit a7d494
 *
Packit a7d494
 * Copyright (C) 2009 - Jesse van den Kieboom
Packit a7d494
 *
Packit a7d494
 * gtksourceview is free software; you can redistribute it and/or
Packit a7d494
 * modify it under the terms of the GNU Lesser General Public
Packit a7d494
 * License as published by the Free Software Foundation; either
Packit a7d494
 * version 2.1 of the License, or (at your option) any later version.
Packit a7d494
 *
Packit a7d494
 * gtksourceview is distributed in the hope that it will be useful,
Packit a7d494
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a7d494
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a7d494
 * Lesser General Public License for more details.
Packit a7d494
 *
Packit a7d494
 * You should have received a copy of the GNU Lesser General Public
Packit a7d494
 * License along with this library; if not, write to the Free Software
Packit a7d494
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit a7d494
 */
Packit a7d494
Packit a7d494
#ifndef GTK_SOURCE_COMPLETION_WORDS_H
Packit a7d494
#define GTK_SOURCE_COMPLETION_WORDS_H
Packit a7d494
Packit a7d494
#if !defined (GTK_SOURCE_H_INSIDE) && !defined (GTK_SOURCE_COMPILATION)
Packit a7d494
#  if defined (__GNUC__)
Packit a7d494
#    warning "Only <gtksourceview/gtksource.h> can be included directly."
Packit a7d494
#  elif defined (G_OS_WIN32)
Packit a7d494
#    pragma message("Only <gtksourceview/gtksource.h> can be included directly.")
Packit a7d494
#  endif
Packit a7d494
#endif
Packit a7d494
Packit a7d494
#include <gtksourceview/gtksourcecompletionprovider.h>
Packit a7d494
#include <gtk/gtk.h>
Packit a7d494
Packit a7d494
G_BEGIN_DECLS
Packit a7d494
Packit a7d494
#define GTK_SOURCE_TYPE_COMPLETION_WORDS		(gtk_source_completion_words_get_type ())
Packit a7d494
#define GTK_SOURCE_COMPLETION_WORDS(obj)		(G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_SOURCE_TYPE_COMPLETION_WORDS, GtkSourceCompletionWords))
Packit a7d494
#define GTK_SOURCE_COMPLETION_WORDS_CLASS(klass)	(G_TYPE_CHECK_CLASS_CAST ((klass), GTK_SOURCE_TYPE_COMPLETION_WORDS, GtkSourceCompletionWordsClass))
Packit a7d494
#define GTK_SOURCE_IS_COMPLETION_WORDS(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_SOURCE_TYPE_COMPLETION_WORDS))
Packit a7d494
#define GTK_SOURCE_IS_COMPLETION_WORDS_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_SOURCE_TYPE_COMPLETION_WORDS))
Packit a7d494
#define GTK_SOURCE_COMPLETION_WORDS_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_SOURCE_TYPE_COMPLETION_WORDS, GtkSourceCompletionWordsClass))
Packit a7d494
Packit a7d494
typedef struct _GtkSourceCompletionWords		GtkSourceCompletionWords;
Packit a7d494
typedef struct _GtkSourceCompletionWordsClass		GtkSourceCompletionWordsClass;
Packit a7d494
typedef struct _GtkSourceCompletionWordsPrivate		GtkSourceCompletionWordsPrivate;
Packit a7d494
Packit a7d494
struct _GtkSourceCompletionWords {
Packit a7d494
	GObject parent;
Packit a7d494
Packit a7d494
	GtkSourceCompletionWordsPrivate *priv;
Packit a7d494
};
Packit a7d494
Packit a7d494
struct _GtkSourceCompletionWordsClass {
Packit a7d494
	GObjectClass parent_class;
Packit a7d494
};
Packit a7d494
Packit a7d494
GTK_SOURCE_AVAILABLE_IN_ALL
Packit a7d494
GType		gtk_source_completion_words_get_type	(void) G_GNUC_CONST;
Packit a7d494
Packit a7d494
GTK_SOURCE_AVAILABLE_IN_ALL
Packit a7d494
GtkSourceCompletionWords *
Packit a7d494
		gtk_source_completion_words_new 	(const gchar              *name,
Packit a7d494
		                                         GdkPixbuf                *icon);
Packit a7d494
Packit a7d494
GTK_SOURCE_AVAILABLE_IN_ALL
Packit a7d494
void 		gtk_source_completion_words_register 	(GtkSourceCompletionWords *words,
Packit a7d494
                                                         GtkTextBuffer            *buffer);
Packit a7d494
Packit a7d494
GTK_SOURCE_AVAILABLE_IN_ALL
Packit a7d494
void 		gtk_source_completion_words_unregister 	(GtkSourceCompletionWords *words,
Packit a7d494
                                                         GtkTextBuffer            *buffer);
Packit a7d494
Packit a7d494
G_END_DECLS
Packit a7d494
Packit a7d494
#endif /* GTK_SOURCE_COMPLETION_WORDS_H */