diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-14 05:53:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-14 05:53:32 +0000 |
| commit | 60bf9dcdb752aa282e1ffd7bbb359df4a4c78e77 (patch) | |
| tree | 857915ab6b2f7271e6e9de3f467e987a5bfc307f /openbox/action.h | |
| parent | 99d0b716776492c1927b8248375ce82a33bc7b26 (diff) | |
make the activate action have a 'here' parameter
Diffstat (limited to 'openbox/action.h')
| -rw-r--r-- | openbox/action.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/openbox/action.h b/openbox/action.h index ef2f755e..f84217e3 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -29,6 +29,11 @@ struct ClientAction { struct _ObClient *c; }; +struct Activate { + struct _ObClient *c; + gboolean here; /* bring it to the current desktop */ +}; + struct MoveResizeRelative { struct _ObClient *c; int delta; @@ -96,6 +101,7 @@ union ActionData { struct DirectionalAction diraction; struct Execute execute; struct ClientAction client; + struct Activate activate; struct MoveResizeRelative relative; struct SendToDesktop sendto; struct SendToDesktopDirection sendtodir; @@ -135,7 +141,7 @@ void action_free(ObAction *a); /* Execute */ void action_execute(union ActionData *data); -/* ClientAction */ +/* ActivateAction */ void action_activate(union ActionData *data); /* ClientAction */ void action_focus(union ActionData *data); |
