medit/moo/mooedit/mooeditwindow-priv.h

28 lines
381 B
C
Raw Normal View History

2011-01-17 03:01:11 -08:00
#ifndef MOO_EDIT_WINDOW_PRIV_H
#define MOO_EDIT_WINDOW_PRIV_H
#include "mooeditwindow-impl.h"
G_BEGIN_DECLS
struct MooEditTab
{
GtkVBox base;
GtkWidget *hpaned;
2011-01-17 03:01:11 -08:00
GtkWidget *vpaned1;
GtkWidget *vpaned2;
MooEdit *doc;
2011-01-17 03:01:11 -08:00
MooEditView *active_view;
};
struct MooEditTabClass
{
GtkVBoxClass base_class;
2011-01-17 03:01:11 -08:00
};
G_END_DECLS
#endif /* MOO_EDIT_WINDOW_PRIV_H */