]>
Dogcows Code - chaz/openbox/blob - openbox/actions/decorations.c
f6fd2cbeb7762df6a5567a9459d959beefdc14fc
1 #include "openbox/actions.h"
2 #include "openbox/client.h"
4 static gboolean
run_func_on(ObActionsData
*data
, gpointer options
);
5 static gboolean
run_func_off(ObActionsData
*data
, gpointer options
);
6 static gboolean
run_func_toggle(ObActionsData
*data
, gpointer options
);
8 void action_decorations_startup(void)
10 actions_register("Decorate", NULL
, NULL
, run_func_on
);
11 actions_register("Undecorate", NULL
, NULL
, run_func_off
);
12 actions_register("ToggleDecorations", NULL
, NULL
, run_func_toggle
);
15 /* Always return FALSE because its not interactive */
16 static gboolean
run_func_on(ObActionsData
*data
, gpointer options
)
19 actions_client_move(data
, TRUE
);
20 client_set_undecorated(data
->client
, FALSE
);
21 actions_client_move(data
, FALSE
);
26 /* Always return FALSE because its not interactive */
27 static gboolean
run_func_off(ObActionsData
*data
, gpointer options
)
30 actions_client_move(data
, TRUE
);
31 client_set_undecorated(data
->client
, TRUE
);
32 actions_client_move(data
, FALSE
);
37 /* Always return FALSE because its not interactive */
38 static gboolean
run_func_toggle(ObActionsData
*data
, gpointer options
)
41 actions_client_move(data
, TRUE
);
42 client_set_undecorated(data
->client
, !data
->client
->undecorated
);
43 actions_client_move(data
, FALSE
);
This page took 0.03281 seconds and 4 git commands to generate.