From cf640af0eade492a6a0a9765a1d2d35d81ea1235 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 23 Jun 2007 15:43:35 +0000 Subject: add the "if" action --- openbox/action.c | 96 -------------------------------------------------------- 1 file changed, 96 deletions(-) (limited to 'openbox/action.c') 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 - - - - -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[] = { { @@ -101,26 +29,6 @@ ActionString actionstrings[] = action_unshaderaise, 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, @@ -143,7 +51,3 @@ void action_shadelower(union ActionData *data) else action_shade(data); } - -void action_growtoedge(union ActionData *data) -{ -} -- cgit v1.2.3