all repos — openbox @ e2ddfaf9fff1fb9dd6ebdc1a95f2b228d6baedb2

openbox fork - make it a bit more like ryudo

openbox/actions/move.c (raw)

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(void)
{
    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;
}