diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-23 15:43:35 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-23 15:43:35 +0000 |
| commit | cf640af0eade492a6a0a9765a1d2d35d81ea1235 (patch) | |
| tree | 36cf63466db651ae701e46067d70962656e2df66 /openbox/action.c | |
| parent | 52b63adfe1120b2e6bc12df4b9f867e9e7c6ab31 (diff) | |
add the "if" action
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/openbox/action.c b/openbox/action.c index 04a2f9d2..3786feb3 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -17,78 +17,6 @@ See the COPYING file for a copy of the GNU General Public License. */ -#include "debug.h" -#include "client.h" -#include "focus.h" -#include "focus_cycle.h" -#include "moveresize.h" -#include "menu.h" -#include "prop.h" -#include "stacking.h" -#include "screen.h" -#include "action.h" -#include "openbox.h" -#include "grab.h" -#include "keyboard.h" -#include "event.h" -#include "dock.h" -#include "config.h" -#include "mainloop.h" -#include "startupnotify.h" -#include "gettext.h" - -#include <glib.h> - - - - -void setup_action_growtoedge_north(ObAction **a, ObUserAction uact) -{ - (*a)->data.diraction.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.diraction.direction = OB_DIRECTION_NORTH; -} - -void setup_action_growtoedge_south(ObAction **a, ObUserAction uact) -{ - (*a)->data.diraction.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.diraction.direction = OB_DIRECTION_SOUTH; -} - -void setup_action_growtoedge_east(ObAction **a, ObUserAction uact) -{ - (*a)->data.diraction.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.diraction.direction = OB_DIRECTION_EAST; -} - -void setup_action_growtoedge_west(ObAction **a, ObUserAction uact) -{ - (*a)->data.diraction.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.diraction.direction = OB_DIRECTION_WEST; -} - -void setup_action_top_layer(ObAction **a, ObUserAction uact) -{ - (*a)->data.layer.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.layer.layer = 1; -} - -void setup_action_normal_layer(ObAction **a, ObUserAction uact) -{ - (*a)->data.layer.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.layer.layer = 0; -} - -void setup_action_bottom_layer(ObAction **a, ObUserAction uact) -{ - (*a)->data.layer.any.client_action = OB_CLIENT_ACTION_ALWAYS; - (*a)->data.layer.layer = -1; -} - -void setup_client_action(ObAction **a, ObUserAction uact) -{ - (*a)->data.any.client_action = OB_CLIENT_ACTION_ALWAYS; -} - ActionString actionstrings[] = { { @@ -102,26 +30,6 @@ ActionString actionstrings[] = setup_client_action }, { - "growtoedgenorth", - action_growtoedge, - setup_action_growtoedge_north - }, - { - "growtoedgesouth", - action_growtoedge, - setup_action_growtoedge_south - }, - { - "growtoedgewest", - action_growtoedge, - setup_action_growtoedge_west - }, - { - "growtoedgeeast", - action_growtoedge, - setup_action_growtoedge_east - }, - { NULL, NULL, NULL @@ -143,7 +51,3 @@ void action_shadelower(union ActionData *data) else action_shade(data); } - -void action_growtoedge(union ActionData *data) -{ -} |
