medit/moo/mooedit/mooeditor-impl.h

34 lines
1.1 KiB
C
Raw Normal View History

2010-11-23 21:54:39 -08:00
#ifndef MOO_EDITOR_IMPL_H
#define MOO_EDITOR_IMPL_H
#ifndef MOOEDIT_COMPILATION
#error "This file may not be used directly"
#endif
#include "mooedit/mooeditor.h"
2010-12-08 01:17:17 -08:00
#include "mooutils/moohistorymgr.h"
2010-11-23 21:54:39 -08:00
#include "mooutils/moofilewatch.h"
G_BEGIN_DECLS
2010-12-08 01:17:17 -08:00
MooHistoryMgr *_moo_editor_get_history_mgr (MooEditor *editor);
2010-11-23 21:54:39 -08:00
void _moo_editor_set_focused_doc (MooEditor *editor,
MooEdit *doc);
void _moo_editor_unset_focused_doc (MooEditor *editor,
MooEdit *doc);
void _moo_editor_move_doc (MooEditor *editor,
MooEdit *doc,
MooEditWindow *dest,
2011-01-09 03:31:34 -08:00
MooEditView *dest_view,
2010-11-23 21:54:39 -08:00
gboolean focus);
MooFileWatch *_moo_editor_get_file_watch (MooEditor *editor);
2010-12-12 02:29:20 -08:00
void _moo_editor_apply_prefs (MooEditor *editor);
2010-11-23 21:54:39 -08:00
G_END_DECLS
#endif /* MOO_EDITOR_IMPL_H */