diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2009-09-19 15:57:20 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2009-09-19 15:57:20 +0200 |
| commit | b89cc5859068fd5543dc9e7da3f469fb0c0a7a1c (patch) | |
| tree | b4c9bdcba493142a9fb0c44341ad16173bb49f7a /openbox/actions/movetoedge.c | |
| parent | 308478e4a5f4dc76d69395dda8a9bc42cb69eec4 (diff) | |
Add all the action names used in 3.4 so configs don't break
Diffstat (limited to 'openbox/actions/movetoedge.c')
| -rw-r--r-- | openbox/actions/movetoedge.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/openbox/actions/movetoedge.c b/openbox/actions/movetoedge.c index f360ddd0..51215fd2 100644 --- a/openbox/actions/movetoedge.c +++ b/openbox/actions/movetoedge.c @@ -11,10 +11,24 @@ typedef struct { static gpointer setup_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_movetoedge_startup(void) { actions_register("MoveToEdge", setup_func, g_free, run_func, NULL, NULL); + /* 3.4-compatibility */ + actions_register("MoveToEdgeNorth", setup_north_func, g_free, run_func, + NULL, NULL); + actions_register("MoveToEdgeSouth", setup_south_func, g_free, run_func, + NULL, NULL); + actions_register("MoveToEdgeEast", setup_east_func, g_free, run_func, + NULL, NULL); + actions_register("MoveToEdgeWest", setup_west_func, g_free, run_func, + NULL, NULL); } static gpointer setup_func(xmlNodePtr node) @@ -63,3 +77,33 @@ 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->dir = OB_DIRECTION_NORTH; + return o; +} + +static gpointer setup_south_func(xmlNodePtr node) +{ + Options *o = g_new0(Options, 1); + o->dir = OB_DIRECTION_SOUTH; + return o; +} + +static gpointer setup_east_func(xmlNodePtr node) +{ + Options *o = g_new0(Options, 1); + o->dir = OB_DIRECTION_EAST; + return o; +} + +static gpointer setup_west_func(xmlNodePtr node) +{ + Options *o = g_new0(Options, 1); + o->dir = OB_DIRECTION_WEST; + return o; +} + |
