medit/moo/mooedit/moolangmgr-private.h

62 lines
1.6 KiB
C
Raw Normal View History

2006-08-26 02:46:29 -07:00
/*
* moolangmgr-private.h
*
2010-11-07 01:20:45 -08:00
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@sourceforge.net>
2006-08-26 02:46:29 -07: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-08-26 02:46:29 -07: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-08-26 02:46:29 -07:00
*/
#ifndef MOOEDIT_COMPILATION
#error "This file may not be used"
#endif
#ifndef MOO_LANG_MGR_PRIVATE_H
#define MOO_LANG_MGR_PRIVATE_H
2006-08-26 02:46:29 -07:00
#include "mooedit/moolangmgr.h"
#include "mooedit/mooeditconfig.h"
2010-08-30 22:19:58 -07:00
#include "gtksourceview/gtksourceview-api.h"
2006-08-26 02:46:29 -07:00
G_BEGIN_DECLS
#define MOO_LANG_MGR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_LANG_MGR, MooLangMgrClass))
#define MOO_IS_LANG_MGR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_LANG_MGR))
#define MOO_LANG_MGR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_LANG_MGR, MooLangMgrClass))
2010-12-12 02:29:20 -08:00
typedef struct MooLangMgrClass MooLangMgrClass;
2006-08-26 02:46:29 -07:00
2010-12-12 02:29:20 -08:00
struct MooLangMgr {
GObject base;
2006-08-26 02:46:29 -07:00
GtkSourceLanguageManager *lang_mgr;
2007-09-09 12:21:19 -07:00
GtkSourceStyleSchemeManager *style_mgr;
2006-08-26 02:46:29 -07:00
GHashTable *langs;
GHashTable *config;
GHashTable *schemes;
MooTextStyleScheme *active_scheme;
gboolean got_langs;
gboolean got_schemes;
gboolean modified;
2006-08-26 02:46:29 -07:00
};
2010-12-12 02:29:20 -08:00
struct MooLangMgrClass
2006-08-26 02:46:29 -07:00
{
GObjectClass base_class;
2006-08-26 02:46:29 -07:00
};
G_END_DECLS
#endif /* MOO_LANG_MGR_PRIVATE_H */