diff options
Diffstat (limited to 'openbox/screen.h')
| -rw-r--r-- | openbox/screen.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/openbox/screen.h b/openbox/screen.h index 1c0a4f77..1e969702 100644 --- a/openbox/screen.h +++ b/openbox/screen.h @@ -2,6 +2,7 @@ #define __screen_h #include "geom.h" +#include "client.h" struct Client; @@ -18,13 +19,13 @@ extern gboolean screen_showing_desktop; /*! Orientation of the desktops */ typedef enum { - Orientation_Horz, - Orientation_Vert + Orientation_Horz = 0, + Orientation_Vert = 1 } Orientation; typedef struct DesktopLayout { - guint orientation; - guint start_corner; + Orientation orientation; + Corner start_corner; guint rows; guint columns; } DesktopLayout; |
