2016-10-02 21:14:12 -07:00
|
|
|
#ifndef MOO_EDIT_VIEW_PRIV_H
|
|
|
|
#define MOO_EDIT_VIEW_PRIV_H
|
2010-12-18 23:58:18 -08:00
|
|
|
|
2016-10-22 23:45:39 -07:00
|
|
|
#ifdef MOO_USE_SCI
|
|
|
|
#error "This header must not be used"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "mooedit/native/mooeditview-impl.h"
|
2016-10-02 21:14:12 -07:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2010-12-18 23:58:18 -08:00
|
|
|
|
|
|
|
struct MooEditViewPrivate
|
|
|
|
{
|
2016-10-02 21:14:12 -07:00
|
|
|
MooEdit *doc;
|
2010-12-18 23:58:18 -08:00
|
|
|
MooEditor *editor;
|
2011-01-17 23:52:09 -08:00
|
|
|
MooEditTab *tab;
|
2011-01-18 22:01:18 -08:00
|
|
|
GtkTextMark *fake_cursor_mark;
|
2010-12-18 23:58:18 -08:00
|
|
|
};
|
2016-10-02 21:14:12 -07:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* MOO_EDIT_VIEW_PRIV_H */
|