medit/moo/mooedit/moolangmgr-private.h

58 lines
1.4 KiB
C
Raw Normal View History

2006-08-26 04:46:29 -05:00
/*
* moolangmgr-private.h
*
2007-06-24 12:56:20 -05:00
* Copyright (C) 2004-2007 by Yevgen Muntyan <muntyan@math.tamu.edu>
2006-08-26 04:46:29 -05:00
*
2007-06-24 12:56:20 -05:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
2007-09-23 11:47:28 -05:00
* License version 2.1 as published by the Free Software Foundation.
2006-08-26 04:46:29 -05:00
*
* See COPYING file that comes with this distribution.
*/
#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 04:46:29 -05:00
#include "mooedit/moolangmgr.h"
#include "mooedit/mooeditconfig.h"
#include "mooedit/gtksourceview/gtksourceview-api.h"
2006-08-26 04:46:29 -05: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))
typedef struct _MooLangMgrClass MooLangMgrClass;
struct _MooLangMgr {
2007-04-21 07:37:25 -05:00
GtkSourceLanguageManager base;
2006-08-26 04:46:29 -05:00
2007-09-09 14:21:19 -05:00
GtkSourceStyleSchemeManager *style_mgr;
2006-08-26 04:46:29 -05:00
GHashTable *langs;
GHashTable *config;
GHashTable *schemes;
MooTextStyleScheme *active_scheme;
gboolean got_langs;
gboolean got_schemes;
gboolean modified;
2006-08-26 04:46:29 -05:00
};
struct _MooLangMgrClass
{
2007-04-21 07:37:25 -05:00
GtkSourceLanguageManagerClass base_class;
2006-08-26 04:46:29 -05:00
};
G_END_DECLS
#endif /* MOO_LANG_MGR_PRIVATE_H */