summaryrefslogtreecommitdiff
path: root/openbox/actions/growtoedge.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2009-09-19 15:57:20 +0200
committerMikael Magnusson <mikachu@gmail.com>2009-09-19 15:57:20 +0200
commitb89cc5859068fd5543dc9e7da3f469fb0c0a7a1c (patch)
treeb4c9bdcba493142a9fb0c44341ad16173bb49f7a /openbox/actions/growtoedge.c
parent308478e4a5f4dc76d69395dda8a9bc42cb69eec4 (diff)
Add all the action names used in 3.4 so configs don't break
Diffstat (limited to 'openbox/actions/growtoedge.c')
-rw-r--r--openbox/actions/growtoedge.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/openbox/actions/growtoedge.c b/openbox/actions/growtoedge.c
index a37e3a26..2a31496a 100644
--- a/openbox/actions/growtoedge.c
+++ b/openbox/actions/growtoedge.c
@@ -13,6 +13,11 @@ typedef struct {
static gpointer setup_func(xmlNodePtr node);
static gpointer setup_shrink_func(xmlNodePtr node);
static gboolean run_func(ObActionsData *data, gpointer options);
+/* 3.4-compatibility */
+static gpointer setup_north_func(xmlNodePtr node);
+static gpointer setup_south_func(xmlNodePtr node);
+static gpointer setup_east_func(xmlNodePtr node);
+static gpointer setup_west_func(xmlNodePtr node);
void action_growtoedge_startup(void)
{
@@ -20,6 +25,15 @@ void action_growtoedge_startup(void)
g_free, run_func, NULL, NULL);
actions_register("ShrinkToEdge", setup_shrink_func,
g_free, run_func, NULL, NULL);
+ /* 3.4-compatibility */
+ actions_register("GrowToEdgeNorth", setup_north_func, g_free, run_func,
+ NULL, NULL);
+ actions_register("GrowToEdgeSouth", setup_south_func, g_free, run_func,
+ NULL, NULL);
+ actions_register("GrowToEdgeEast", setup_east_func, g_free, run_func,
+ NULL, NULL);
+ actions_register("GrowToEdgeWest", setup_west_func, g_free, run_func,
+ NULL, NULL);
}
static gpointer setup_func(xmlNodePtr node)
@@ -149,3 +163,36 @@ static gboolean run_func(ObActionsData *data, gpointer options)
return FALSE;
}
+
+/* 3.4-compatibility */
+static gpointer setup_north_func(xmlNodePtr node)
+{
+ Options *o = g_new0(Options, 1);
+ o->shrink = FALSE;
+ o->dir = OB_DIRECTION_NORTH;
+ return o;
+}
+
+static gpointer setup_south_func(xmlNodePtr node)
+{
+ Options *o = g_new0(Options, 1);
+ o->shrink = FALSE;
+ o->dir = OB_DIRECTION_SOUTH;
+ return o;
+}
+
+static gpointer setup_east_func(xmlNodePtr node)
+{
+ Options *o = g_new0(Options, 1);
+ o->shrink = FALSE;
+ o->dir = OB_DIRECTION_EAST;
+ return o;
+}
+
+static gpointer setup_west_func(xmlNodePtr node)
+{
+ Options *o = g_new0(Options, 1);
+ o->shrink = FALSE;
+ o->dir = OB_DIRECTION_WEST;
+ return o;
+}