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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#include "openbox/actions.h"
#include "openbox/client.h"
static gboolean run_func_on(ObActionsData *data, gpointer options);
static gboolean run_func_off(ObActionsData *data, gpointer options);
static gboolean run_func_toggle(ObActionsData *data, gpointer options);
void action_shade_startup(void)
{
actions_register("Shade", NULL, NULL, run_func_on);
actions_register("Unshade", NULL, NULL, run_func_off);
actions_register("ToggleShade", NULL, NULL, run_func_toggle);
}
/* Always return FALSE because its not interactive */
static gboolean run_func_on(ObActionsData *data, gpointer options)
{
if (data->client) {
actions_client_move(data, TRUE);
client_shade(data->client, TRUE);
actions_client_move(data, FALSE);
}
return FALSE;
}
/* Always return FALSE because its not interactive */
static gboolean run_func_off(ObActionsData *data, gpointer options)
{
if (data->client) {
actions_client_move(data, TRUE);
client_shade(data->client, FALSE);
actions_client_move(data, FALSE);
}
return FALSE;
}
/* Always return FALSE because its not interactive */
static gboolean run_func_toggle(ObActionsData *data, gpointer options)
{
if (data->client) {
actions_client_move(data, TRUE);
client_shade(data->client, !data->client->shaded);
actions_client_move(data, FALSE);
}
return FALSE;
}
|