]>
Dogcows Code - chaz/openbox/blob - openbox/actions/shadelowerraise.c
1 #include "openbox/actions.h"
2 #include "openbox/client.h"
4 static gboolean
run_func_sl(ObActionsData
*data
, gpointer options
);
5 static gboolean
run_func_ur(ObActionsData
*data
, gpointer options
);
7 void action_shadelowerraise_startup()
9 /* 3.4-compatibility */
10 actions_register("ShadeLower", NULL
, NULL
, run_func_sl
);
11 actions_register("UnshadeRaise", NULL
, NULL
, run_func_ur
);
14 /* Always return FALSE because its not interactive */
15 static gboolean
run_func_sl(ObActionsData
*data
, gpointer options
)
18 actions_client_move(data
, TRUE
);
19 if (data
->client
->shaded
)
20 stacking_lower(CLIENT_AS_WINDOW(data
->client
));
22 client_shade(data
->client
, TRUE
);
23 actions_client_move(data
, FALSE
);
28 /* Always return FALSE because its not interactive */
29 static gboolean
run_func_ur(ObActionsData
*data
, gpointer options
)
32 actions_client_move(data
, TRUE
);
33 if (data
->client
->shaded
)
34 client_shade(data
->client
, FALSE
);
36 stacking_raise(CLIENT_AS_WINDOW(data
->client
));
37 actions_client_move(data
, FALSE
);
This page took 0.034054 seconds and 4 git commands to generate.