aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-04-17 09:56:27 +0200
committerThomas White <taw@bitwiz.org.uk>2012-04-17 09:56:27 +0200
commit3e101100a1e64d4ef1ac60f448f12dc9de8dcfbf (patch)
treef02ca1ccb57b840705079973f1f65e74388c5a41 /src/stylesheet.h
parentee108f180c8c199a18ce375114ee3f1553d61d79 (diff)
Start cleaning out...
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 93ca2b0..73c4e2c 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -44,17 +44,6 @@ struct frame_class
};
-struct frame
-{
- struct frame_class *cl;
-
- struct frame **children;
- int n_children;
-
- char *sc; /* Storycode */
-};
-
-
enum bgblocktype
{
BGBLOCK_SOLID,
@@ -110,12 +99,10 @@ extern int save_stylesheet(StyleSheet *ss, const char *filename);
/* Used during deserialization */
extern struct frame_class *find_slide_template(StyleSheet *ss,
const char *name);
+
extern struct frame_class *find_frame_class(struct slide_template *st,
const char *name);
-extern enum justify str_to_halign(char *halign);
-extern enum vert_pos str_to_valign(char *valign);
-
extern StyleSheet *tree_to_stylesheet(struct ds_node *root);
extern void write_stylesheet(StyleSheet *ss, struct serializer *ser);