blob: bf140c31dd8f8ca666902af0761b303b32167f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "openbox/actions.h"
#include "openbox/prop.h"
#include "openbox/moveresize.h"
static gboolean run_func(ObActionsData *data, gpointer options);
void action_move_startup()
{
actions_register("Move",
NULL, NULL,
run_func,
NULL, NULL);
}
/* Always return FALSE because its not interactive */
static gboolean run_func(ObActionsData *data, gpointer options)
{
if (data->client) {
guint32 corner;
corner = data->button != 0 ?
prop_atoms.net_wm_moveresize_move :
prop_atoms.net_wm_moveresize_move_keyboard;
moveresize_start(data->client, data->x, data->y, data->button, corner);
}
return FALSE;
}
|