25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
#ifndef MOO_EDIT_WINDOW_IMPL_H
|
|
#define MOO_EDIT_WINDOW_IMPL_H
|
|
|
|
#include "mooedit/mooeditwindow.h"
|
|
#include "mooedit/mooeditprogress.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void _moo_edit_window_insert_tab (MooEditWindow *window,
|
|
MooEditTab *tab,
|
|
MooEditView *after);
|
|
void _moo_edit_window_insert_doc (MooEditWindow *window,
|
|
MooEdit *doc,
|
|
MooEditView *after);
|
|
void _moo_edit_window_remove_doc (MooEditWindow *window,
|
|
MooEdit *doc);
|
|
void _moo_edit_window_set_active_tab (MooEditWindow *window,
|
|
MooEditTab *tab);
|
|
void _moo_edit_window_update_title (void);
|
|
void _moo_edit_window_set_use_tabs (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* MOO_EDIT_WINDOW_IMPL_H */
|