aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-09-11 20:02:46 +0200
committerThomas White <taw@bitwiz.org.uk>2012-09-11 20:02:46 +0200
commitd52c17c36ada874e6a0702808577a603331af095 (patch)
tree5691301f8c49b5216fb525daceea93059495977b /src/stylesheet.h
parentb254880cc2f1ebad293c9396e71e1158a5d86ee2 (diff)
Put styles in submenus
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 49e3b77..82f198d 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -74,8 +74,13 @@ extern StyleSheet *tree_to_stylesheet(struct ds_node *root);
extern void write_stylesheet(StyleSheet *ss, struct serializer *ser);
typedef struct _styleiterator StyleIterator;
-
extern struct style *style_first(StyleSheet *ss, StyleIterator **piter);
extern struct style *style_next(StyleSheet *ss, StyleIterator *iter);
+typedef struct _templateiterator TemplateIterator;
+extern struct slide_template *template_first(StyleSheet *ss,
+ TemplateIterator **piter);
+extern struct slide_template *template_next(StyleSheet *ss,
+ TemplateIterator *iter);
+
#endif /* STYLESHEET_H */