53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/*
|
|
* moolang-private.h
|
|
*
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef MOOEDIT_COMPILATION
|
|
#error "This file may not be used"
|
|
#endif
|
|
|
|
#ifndef __MOO_LANG_PRIVATE_H__
|
|
#define __MOO_LANG_PRIVATE_H__
|
|
|
|
#include "gtksourceview/gtksourceengine.h"
|
|
#include "gtksourceview/gtksourcelanguage.h"
|
|
#include "mooedit/moolang.h"
|
|
#include "mooedit/moolangmgr.h"
|
|
#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);
|
|
MooLangMgr *_moo_lang_get_mgr (MooLang *lang);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MOO_LANG_H__ */
|