diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-26 13:13:45 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-26 13:13:45 +0000 |
| commit | 1a32ba561afef1a3dabeb8d4443c1aafe7ad9977 (patch) | |
| tree | 2e57693fd634cc091784ca01dc0ae1597f3e4701 /openbox/action.h | |
| parent | 9eeb13ec71687f43d31d66171efedb859a94285e (diff) | |
split up the relative move/resize actions into horz/vert
Diffstat (limited to 'openbox/action.h')
| -rw-r--r-- | openbox/action.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/openbox/action.h b/openbox/action.h index e3d891f0..672ee6c4 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -23,8 +23,7 @@ struct ClientAction { struct MoveResizeRelative { Client *c; - int dx; - int dy; + int delta; }; struct SendToDesktop { @@ -123,9 +122,13 @@ void action_toggle_shade(union ActionData *data); /* ClientAction */ void action_toggle_omnipresent(union ActionData *data); /* MoveResizeRelative */ -void action_move_relative(union ActionData *data); +void action_move_relative_horz(union ActionData *data); /* MoveResizeRelative */ -void action_resize_relative(union ActionData *data); +void action_move_relative_vert(union ActionData *data); +/* MoveResizeRelative */ +void action_resize_relative_horz(union ActionData *data); +/* MoveResizeRelative */ +void action_resize_relative_vert(union ActionData *data); /* ClientAction */ void action_maximize_full(union ActionData *data); /* ClientAction */ |
