X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.c;h=ef588910479b6b4bd4cc17efce3f5000cac2ffcf;hb=0d84c43d2a02acf5d2f0159e8cf54fe85f3755cc;hp=6a86cf33f6f938506554fa17ff833fa54da3d2d5;hpb=c2cbef62bb5d7e0c3f8c00e95bc885dc1f9ab1da;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index 6a86cf33..ef588910 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -4,6 +4,7 @@ #include "screen.h" #include "action.h" #include "dispatch.h" +#include "openbox.h" #include @@ -73,6 +74,11 @@ void action_close(union ActionData *data) client_close(data->client.c); } +void action_kill(union ActionData *data) +{ + client_kill(data->client.c); +} + void action_shade(union ActionData *data) { client_shade(data->client.c, TRUE); @@ -402,6 +408,8 @@ void action_move(union ActionData *data) int x = data->move.x; int y = data->move.y; + if (!client_normal(c)) return; + dispatch_move(c, &x, &y); frame_frame_gravity(c->frame, &x, &y); /* get where the client should be */ @@ -414,9 +422,22 @@ void action_resize(union ActionData *data) Client *c = data->resize.c; int w = data->resize.x - c->frame->size.left - c->frame->size.right; int h = data->resize.y - c->frame->size.top - c->frame->size.bottom; + + if (!client_normal(c)) return; /* XXX window snapping/struts */ client_configure(c, data->resize.corner, c->area.x, c->area.y, w, h, TRUE, data->resize.final); } + +void action_restart(union ActionData *data) +{ + ob_restart_path = data->execute.path; + ob_shutdown = ob_restart = TRUE; +} + +void action_exit(union ActionData *data) +{ + ob_shutdown = TRUE; +}