Added a "spacing" property which sets the border width between Glk windows.
[projects/chimara/chimara.git] / src / chimara-glk-private.h
index 9395b40a46f38fc903cd914f73834aef43098a03..2a1373d7459fb54e2fcbc68285237a7a9800071d 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <glib.h>
 #include <gmodule.h>
+#include <pango/pango.h>
 #include "glk.h"
 #include "chimara-glk.h"
 
@@ -17,6 +18,12 @@ struct _ChimaraGlkPrivate {
     gboolean interactive;
     /* Whether file operations are allowed */
     gboolean protect;
+       /* Font description of proportional font */
+       PangoFontDescription *default_font_desc;
+       /* Font description of monospace font */
+       PangoFontDescription *monospace_font_desc;
+       /* Spacing between Glk windows */
+       guint spacing;
     /* Glk program loaded in widget */
     GModule *program;
     /* Thread in which Glk program is run */