aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 224083a..cde0bcc 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -87,10 +87,19 @@ extern StylesheetWindow *open_stylesheet(struct presentation *p);
extern StyleSheet *new_stylesheet();
extern StyleSheet *load_stylesheet(const char *filename);
+extern void free_stylesheet(StyleSheet *ss);
+extern void default_stylesheet(StyleSheet *ss);
+
+extern struct style *new_style(StyleSheet *ss, const char *name);
+
extern int save_stylesheet(StyleSheet *ss, const char *filename);
extern struct style *find_style(StyleSheet *ss, const char *name);
+extern enum justify str_to_halign(char *halign);
+extern enum vert_pos str_to_valign(char *valign);
+
+
extern void write_stylesheet(StyleSheet *ss, struct serializer *ser);
#endif /* STYLESHEET_H */