- Fixed a bug that made Nitfol crash since [130]
[rodin/chimara.git] / libchimara / chimara-glk-private.h
1 #ifndef __CHIMARA_GLK_PRIVATE_H__
2 #define __CHIMARA_GLK_PRIVATE_H__
3
4 #include <glib.h>
5 #include <gmodule.h>
6 #include <pango/pango.h>
7 #include "glk.h"
8 #include "style.h"
9 #include "gi_blorb.h"
10 #include "gi_dispa.h"
11 #include "chimara-glk.h"
12
13 G_BEGIN_DECLS
14
15 typedef struct _ChimaraGlkPrivate ChimaraGlkPrivate;
16
17 struct _ChimaraGlkPrivate {
18     /* Pointer back to the widget itself for use in thread */
19     ChimaraGlk *self;
20
21         /* *** Widget properties *** */
22     /* Whether user input is expected */
23     gboolean interactive;
24     /* Whether file operations are allowed */
25     gboolean protect;
26         /* Font description of proportional font */
27         PangoFontDescription *default_font_desc;
28         /* Font description of monospace font */
29         PangoFontDescription *monospace_font_desc;
30         /* Spacing between Glk windows */
31         guint spacing;
32         /* The CSS file to read style defaults from */
33         gchar *css_file;
34         /* Hashtable containing the default and current style */
35         struct StyleSet *default_styles;
36         struct StyleSet *current_styles;
37
38         /* *** Threading data *** */
39         /* Whether program is running */
40         gboolean running;
41     /* Glk program loaded in widget */
42     GModule *program;
43     /* Thread in which Glk program is run */
44     GThread *thread;
45     /* Event queue and threading stuff */
46     GQueue *event_queue;
47     GMutex *event_lock;
48     GCond *event_queue_not_empty;
49     GCond *event_queue_not_full;
50     /* Abort mechanism */
51     GMutex *abort_lock;
52     gboolean abort_signalled;
53         /* Window arrangement locks */
54         GMutex *arrange_lock;
55         GCond *rearranged;
56         gboolean needs_rearrange;
57         gboolean ignore_next_arrange_event;
58
59         /* *** Glk library data *** */
60     /* User-defined interrupt handler */
61     void (*interrupt_handler)(void);
62     /* Global tree of all windows */
63     GNode *root_window;
64     /* List of filerefs currently in existence */
65     GList *fileref_list;
66     /* Current stream */
67     strid_t current_stream;
68     /* List of streams currently in existence */
69     GList *stream_list;
70         /* Current timer */
71         guint timer_id;
72         /* Current resource blorb map */
73         giblorb_map_t *resource_map;
74         /* File stream pointing to the blorb used as current resource map */
75         strid_t resource_file;
76         /* Callbacks for registering and unregistering dispatch objects */
77         gidispatch_rock_t (*register_obj)(void *, glui32);
78         void (*unregister_obj)(void *, glui32, gidispatch_rock_t);
79         gidispatch_rock_t (*register_arr)(void *, glui32, char *);
80         void (*unregister_arr)(void *, glui32, char *, gidispatch_rock_t);
81
82         /* *** Platform-dependent Glk library data *** */
83         /* Flag for functions to find out if they are being called from startup code */
84         gboolean in_startup;
85         /* "Current directory" for creating filerefs */
86         gchar *current_dir;
87 };
88
89 #define CHIMARA_GLK_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), CHIMARA_TYPE_GLK, ChimaraGlkPrivate))
90 #define CHIMARA_GLK_USE_PRIVATE(o, n) ChimaraGlkPrivate *n = CHIMARA_GLK_PRIVATE(o)
91         
92 G_END_DECLS
93
94 #endif /* __CHIMARA_GLK_PRIVATE_H__ */