medit/moo/mooedit/mooeditprogress.h

25 lines
1.0 KiB
C
Raw Normal View History

2016-10-02 21:14:12 -07:00
#ifndef MOO_EDIT_PROGRESS_H
#define MOO_EDIT_PROGRESS_H
2011-01-18 01:16:25 -08:00
#include "mooedit.h"
#include "mooeditwindow.h"
2016-10-02 21:14:12 -07:00
G_BEGIN_DECLS
2016-01-03 06:13:38 -08:00
2016-10-02 21:14:12 -07:00
typedef struct MooEditProgress MooEditProgress;
2016-01-03 06:13:38 -08:00
2016-10-02 21:14:12 -07:00
MooEditProgress *_moo_edit_progress_new (void);
void _moo_edit_progress_start (MooEditProgress *progress,
const char *text,
GDestroyNotify cancel_func,
gpointer cancel_func_data);
void _moo_edit_progress_set_cancel_func (MooEditProgress *progress,
GDestroyNotify cancel_func,
gpointer cancel_func_data);
void _moo_edit_progress_set_text (MooEditProgress *progress,
const char *text);
2011-01-18 01:16:25 -08:00
2016-10-02 21:14:12 -07:00
G_END_DECLS
2011-01-18 01:16:25 -08:00
2016-10-02 21:14:12 -07:00
#endif /* MOO_EDIT_PROGRESS_H */