aboutsummaryrefslogtreecommitdiff
path: root/include/saffron_layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/saffron_layout.h')
-rw-r--r--include/saffron_layout.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/saffron_layout.h b/include/saffron_layout.h
new file mode 100644
index 0000000..9e5ff40
--- /dev/null
+++ b/include/saffron_layout.h
@@ -0,0 +1,33 @@
+#ifndef SAFFRON_LAYOUT_H
+#define SAFFRON_LAYOUT_H
+
+#include "saffron_widget.h"
+
+typedef enum {
+ SAFFRON_ORIENTATION_VERTICAL,
+ SAFFRON_ORIENTATION_HORIZONTAL
+} SaffronOrientation;
+
+typedef enum {
+ SAFFRON_HALIGN_LEFT,
+ SAFFRON_HALIGN_CENTER,
+ SAFFRON_HALIGN_RIGHT
+} SaffronHorizontalAlignment;
+
+typedef enum {
+ SAFFRON_VALIGN_TOP,
+ SAFFRON_VALIGN_CENTER,
+ SAFFRON_VALIGN_BOTTOM
+} SaffronVerticalAlignment;
+
+typedef struct {
+ SaffronWidget base;
+ SaffronOrientation orientation;
+ SaffronHorizontalAlignment halign;
+ SaffronVerticalAlignment valign;
+ int spacing;
+ int padding;
+ int margin;
+} SaffronBox;
+
+#endif