2006-05-04 01:40:54 -05:00
|
|
|
/*
|
|
|
|
* moolang-private.h
|
|
|
|
*
|
2010-12-21 20:15:45 -08:00
|
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
2006-05-04 01:40:54 -05:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* 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.
|
2006-05-04 01:40:54 -05:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
2006-05-04 01:40:54 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MOOEDIT_COMPILATION
|
|
|
|
#error "This file may not be used"
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#ifndef MOO_LANG_PRIVATE_H
|
|
|
|
#define MOO_LANG_PRIVATE_H
|
2006-05-04 01:40:54 -05:00
|
|
|
|
2010-08-30 22:19:58 -07:00
|
|
|
#include "gtksourceview/gtksourceview-api.h"
|
2006-08-26 04:46:29 -05:00
|
|
|
#include "mooedit/moolang.h"
|
2006-05-04 01:40:54 -05:00
|
|
|
#include "mooedit/moolangmgr.h"
|
|
|
|
#include "mooedit/mooeditconfig.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2006-08-26 04:46:29 -05:00
|
|
|
#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))
|
2006-05-04 01:40:54 -05:00
|
|
|
|
2010-12-12 02:29:20 -08:00
|
|
|
typedef struct MooLangPrivate MooLangPrivate;
|
|
|
|
typedef struct MooLangClass MooLangClass;
|
2006-05-04 01:40:54 -05:00
|
|
|
|
2010-12-12 02:29:20 -08:00
|
|
|
struct MooLang {
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceLanguage base;
|
|
|
|
MooLangPrivate *priv;
|
2006-05-04 01:40:54 -05:00
|
|
|
};
|
|
|
|
|
2010-12-12 02:29:20 -08:00
|
|
|
struct MooLangClass {
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceLanguageClass base_class;
|
2006-05-04 01:40:54 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-08-26 04:46:29 -05:00
|
|
|
GtkSourceEngine *_moo_lang_get_engine (MooLang *lang);
|
2006-05-04 01:40:54 -05:00
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#endif /* MOO_LANG_H */
|