aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-08-10 22:03:52 +0200
committerThomas White <taw@bitwiz.org.uk>2011-08-10 22:03:52 +0200
commit87d1c1c339768b8c9cde14e40b955e618ee4540f (patch)
treebae3f229a48a526f2f1d788cff3db204068e555f /src/stylesheet.h
parent394b051daacb63c661dba0a8c57ec04ad1ae73cf (diff)
Plug in style and layout stuff to UI
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index b2640a7..8f9733e 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -73,6 +73,22 @@ struct layout_element
};
+struct _stylesheet
+{
+ /* Slide layout */
+ struct layout_element **layout_elements;
+ int n_layout_elements;
+
+ /* Normal text styles */
+ struct text_style **text_styles;
+ int n_text_styles;
+
+ /* Background stuff */
+
+ /* Image styles */
+};
+
+
typedef struct _stylesheetwindow StylesheetWindow;
typedef struct _stylesheet StyleSheet;
struct presentation;