]>
Dogcows Code - chaz/openbox/blob - openbox/actions/movetoedge.c
1 #include "openbox/actions.h"
2 #include "openbox/misc.h"
3 #include "openbox/client.h"
4 #include "openbox/frame.h"
5 #include "openbox/geom.h"
12 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
);
13 static void free_func(gpointer options
);
14 static gboolean
run_func(ObActionsData
*data
, gpointer options
);
16 void action_movetoedge_startup(void)
18 actions_register("MoveToEdge",
25 static gpointer
setup_func(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
)
30 o
= g_new0(Options
, 1);
31 o
->dir
= OB_DIRECTION_NORTH
;
33 if ((n
= parse_find_node("direction", node
))) {
34 gchar
*s
= parse_string(doc
, n
);
35 if (!g_ascii_strcasecmp(s
, "north") ||
36 !g_ascii_strcasecmp(s
, "up"))
37 o
->dir
= OB_DIRECTION_NORTH
;
38 else if (!g_ascii_strcasecmp(s
, "south") ||
39 !g_ascii_strcasecmp(s
, "down"))
40 o
->dir
= OB_DIRECTION_SOUTH
;
41 else if (!g_ascii_strcasecmp(s
, "west") ||
42 !g_ascii_strcasecmp(s
, "left"))
43 o
->dir
= OB_DIRECTION_WEST
;
44 else if (!g_ascii_strcasecmp(s
, "east") ||
45 !g_ascii_strcasecmp(s
, "right"))
46 o
->dir
= OB_DIRECTION_EAST
;
53 static void free_func(gpointer options
)
60 /* Always return FALSE because its not interactive */
61 static gboolean
run_func(ObActionsData
*data
, gpointer options
)
68 client_find_move_directional(data
->client
, o
->dir
, &x
, &y
);
69 if (x
!= data
->client
->area
.x
|| y
!= data
->client
->area
.y
) {
70 actions_client_move(data
, TRUE
);
71 client_move(data
->client
, x
, y
);
72 actions_client_move(data
, FALSE
);
This page took 0.034796 seconds and 4 git commands to generate.