diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-18 08:39:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-18 08:39:28 +0000 |
| commit | ad44e8a708b6836c9d84be7205457cfa82800a65 (patch) | |
| tree | ccdbf058e04ad4273ae02cdb3c0b78352a6100e3 /openbox/screen.h | |
| parent | a86421d7d87dd1336101a7df62878d213020f38b (diff) | |
add actions for key/mouse bindings etc
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; |
