aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/narrative_priv.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-03-04 08:57:16 +0100
committerThomas White <taw@bitwiz.me.uk>2019-03-04 08:57:16 +0100
commit9c4fa38c4b301645439a6718ef42aa597a97de9b (patch)
tree188c08b19fdc7af014449dd0c560b062e650418c /libstorycode/narrative_priv.h
parent60d5817656bd7c2a9f07a83be612a28c9041ab12 (diff)
Placeholder boxes for slides in narrative
Diffstat (limited to 'libstorycode/narrative_priv.h')
-rw-r--r--libstorycode/narrative_priv.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libstorycode/narrative_priv.h b/libstorycode/narrative_priv.h
index a661e97..9076def 100644
--- a/libstorycode/narrative_priv.h
+++ b/libstorycode/narrative_priv.h
@@ -28,6 +28,7 @@
#endif
#include "storycode.h"
+#include "slide.h"
enum narrative_item_type
@@ -48,7 +49,7 @@ struct narrative_item
double space_t; /* Already included in "h" */
double space_b; /* Already included in "h" */
- /* For TEXT, SLIDETITLE, PRESTITLE */
+ /* For TEXT, BP, PRESTITLE */
char *text;
enum alignment align;
#ifdef HAVE_PANGO
@@ -56,6 +57,9 @@ struct narrative_item
#else
void *layout;
#endif
+
+ /* For SLIDE */
+ Slide *slide;
};