aboutsummaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index 791156d..e81197b 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -40,6 +40,14 @@ typedef enum
} LengthUnits;
+typedef enum
+{
+ GRAD_NONE,
+ GRAD_HORIZ,
+ GRAD_VERT
+} GradientType;
+
+
struct frame
{
struct frame **children;
@@ -66,6 +74,8 @@ struct frame
/* Background properties for this frame */
double bgcol[4];
+ double bgcol2[4];
+ GradientType grad;
/* True if this frame should be deleted on the next mouse click */
int empty;