aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2012-12-22 17:30:06 +0000
committerThomas White <taw@bitwiz.org.uk>2012-12-22 17:30:06 +0000
commit6b115264f47f86a61c7e2f38d7621a1d3f30c7a3 (patch)
tree76836824fcf86fa84bb1eb97443731c238b13ff2 /src/stylesheet.c
parenta37a7ba353a2a0432c2111676356f0ce40278385 (diff)
Layout stuff
Diffstat (limited to 'src/stylesheet.c')
-rw-r--r--src/stylesheet.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/stylesheet.c b/src/stylesheet.c
index 0f49d26..3fde53c 100644
--- a/src/stylesheet.c
+++ b/src/stylesheet.c
@@ -56,6 +56,12 @@ struct style *new_style(StyleSheet *ss, const char *name)
sty->name = strdup(name);
+ /* DS9K compatibility */
+ sty->lop.min_w_u = 0.0;
+ sty->lop.min_h_u = 0.0;
+ sty->lop.min_w_frac = 0.0;
+ sty->lop.min_w_frac = 0.0;
+
n = ss->n_styles;
styles_new = realloc(ss->styles, (n+1)*sizeof(sty));
if ( styles_new == NULL ) {
@@ -101,6 +107,7 @@ void default_stylesheet(StyleSheet *ss)
sty->lop.margin_r = 20.0;
sty->lop.margin_t = 20.0;
sty->lop.margin_b = 20.0;
+ sty->lop.grav = DIR_U;
add_to_template(titlepage, sty);
sty = new_style(ss, "Content");
@@ -108,6 +115,7 @@ void default_stylesheet(StyleSheet *ss)
sty->lop.margin_r = 20.0;
sty->lop.margin_t = 20.0;
sty->lop.margin_b = 20.0;
+ sty->lop.grav = DIR_NONE;
add_to_template(slide, sty);
sty = new_style(ss, "Slide title");
@@ -115,7 +123,18 @@ void default_stylesheet(StyleSheet *ss)
sty->lop.margin_r = 20.0;
sty->lop.margin_t = 20.0;
sty->lop.margin_b = 20.0;
+ sty->lop.grav = DIR_U;
+ sty->lop.min_w_frac = 1.0;
add_to_template(slide, sty);
+
+ sty = new_style(ss, "Content");
+ sty->lop.margin_l = 20.0;
+ sty->lop.margin_r = 20.0;
+ sty->lop.margin_t = 20.0;
+ sty->lop.margin_b = 20.0;
+ sty->lop.grav = DIR_NONE;
+ add_to_template(acknowledgements, sty);
+
}