2010-11-23 21:54:39 -08:00
|
|
|
#ifndef MOO_EDIT_WINDOW_IMPL_H
|
|
|
|
#define MOO_EDIT_WINDOW_IMPL_H
|
|
|
|
|
|
|
|
#include "mooedit/mooeditwindow.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-01-09 03:31:34 -08:00
|
|
|
void _moo_edit_window_insert_doc (MooEditWindow *window,
|
|
|
|
MooEdit *doc,
|
|
|
|
MooEditView *after);
|
|
|
|
void _moo_edit_window_remove_doc (MooEditWindow *window,
|
|
|
|
MooEdit *doc,
|
|
|
|
gboolean destroy);
|
|
|
|
void _moo_edit_window_set_focused_view (MooEditWindow *window,
|
|
|
|
MooEditView *view);
|
|
|
|
int _moo_edit_window_get_doc_no (MooEditWindow *window,
|
|
|
|
MooEdit *doc);
|
|
|
|
void _moo_edit_window_update_title (void);
|
|
|
|
void _moo_edit_window_set_use_tabs (void);
|
2010-11-23 21:54:39 -08:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* MOO_EDIT_WINDOW_IMPL_H */
|