#ifndef APEX_EDIT_WINDOW_H
#define APEX_EDIT_WINDOW_H

#include <gtk/gtk.h>
#include <glib.h>

typedef struct ApexEditor_t {
  GtkWidget * edit;  // Top vbox that contains all the parts
  GtkWidget * tag;
  GtkWidget * layout_box;
  GtkWidget * body;
} ApexEditor;


GtkWidget * apex_window_new(GtkWidget * app);

#endif

