medit/moo/mooedit/mooeditfileinfo-impl.h

50 lines
637 B
C
Raw Normal View History

2016-10-02 21:14:12 -07:00
#ifndef MOO_EDIT_FILE_INFO_IMPL_H
#define MOO_EDIT_FILE_INFO_IMPL_H
#include "mooeditfileinfo.h"
2016-10-02 21:14:12 -07:00
G_BEGIN_DECLS
struct MooOpenInfo
{
2016-10-02 21:14:12 -07:00
GObject parent;
GFile *file;
char *encoding;
int line;
MooOpenFlags flags;
};
2016-10-02 21:14:12 -07:00
struct MooOpenInfoClass
2016-01-04 03:56:42 -08:00
{
2016-10-02 21:14:12 -07:00
GObjectClass parent_class;
};
2016-01-05 02:18:52 -08:00
2016-10-02 21:14:12 -07:00
struct MooReloadInfo {
GObject parent;
2016-10-02 21:14:12 -07:00
char *encoding;
int line;
};
2016-10-02 21:14:12 -07:00
struct MooReloadInfoClass
2016-01-04 03:56:42 -08:00
{
2016-10-02 21:14:12 -07:00
GObjectClass parent_class;
};
2016-10-02 21:14:12 -07:00
struct MooSaveInfo {
GObject parent;
2016-10-02 21:14:12 -07:00
GFile *file;
char *encoding;
};
2016-10-02 21:14:12 -07:00
struct MooSaveInfoClass
{
GObjectClass parent_class;
};
2016-10-02 21:14:12 -07:00
G_END_DECLS
#endif /* MOO_EDIT_FILE_INFO_IMPL_H */