55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/*
|
|
* moolang-private.h
|
|
*
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
|
*
|
|
* This file is part of medit. medit 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MOO_LANG_PRIVATE_H
|
|
#define MOO_LANG_PRIVATE_H
|
|
|
|
#ifdef MOO_USE_SCI
|
|
#error "This header must not be used"
|
|
#endif
|
|
|
|
#include "gtksourceview/gtksourceview-api.h"
|
|
#ifndef MOO_USE_SCI
|
|
#include "mooedit/native/moolang.h"
|
|
#include "mooedit/native/moolangmgr.h"
|
|
#endif // !MOO_USE_SCI
|
|
#include "mooedit/mooeditconfig.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define MOO_LANG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_LANG, MooLangClass))
|
|
#define MOO_IS_LANG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_LANG))
|
|
#define MOO_LANG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_LANG, MooLangClass))
|
|
|
|
typedef struct MooLangPrivate MooLangPrivate;
|
|
typedef struct MooLangClass MooLangClass;
|
|
|
|
struct MooLang {
|
|
GtkSourceLanguage base;
|
|
MooLangPrivate *priv;
|
|
};
|
|
|
|
struct MooLangClass {
|
|
GtkSourceLanguageClass base_class;
|
|
};
|
|
|
|
|
|
GtkSourceEngine *_moo_lang_get_engine (MooLang *lang);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* MOO_LANG_H */
|