openbox/plugins/placement/placement.c

60 lines
1.3 KiB
C
Raw Normal View History

2003-03-21 07:33:07 +00:00
#include "../../kernel/dispatch.h"
#include "../../kernel/client.h"
#include "../../kernel/frame.h"
#include "../../kernel/screen.h"
#include "../../kernel/openbox.h"
2003-03-21 07:53:29 +00:00
#include "history.h"
2003-03-21 07:33:07 +00:00
#include <glib.h>
2003-03-21 07:53:29 +00:00
gboolean history = TRUE;
2003-03-21 09:31:36 +00:00
static void place_random(Client *c)
2003-03-21 07:33:07 +00:00
{
int l, r, t, b;
int x, y;
Rect *area;
area = screen_area(c->desktop);
l = area->x;
t = area->y;
r = area->x + area->width - c->frame->area.width;
b = area->y + area->height - c->frame->area.height;
2003-03-21 07:53:29 +00:00
if (r > l) x = g_random_int_range(l, r + 1);
else x = 0;
if (b > t) y = g_random_int_range(t, b + 1);
else y = 0;
2003-03-21 07:33:07 +00:00
frame_frame_gravity(c->frame, &x, &y); /* get where the client should be */
client_configure(c, Corner_TopLeft, x, y, c->area.width, c->area.height,
TRUE, TRUE);
}
2003-03-21 09:31:36 +00:00
static void event(ObEvent *e, void *foo)
2003-03-21 07:33:07 +00:00
{
g_assert(e->type == Event_Client_New);
if (ob_state == State_Starting) return;
/* requested a position */
if (e->data.c.client->positioned) return;
2003-03-21 07:53:29 +00:00
if (!place_history(e->data.c.client))
place_random(e->data.c.client);
2003-03-21 07:33:07 +00:00
}
void plugin_startup()
{
2003-03-21 09:31:36 +00:00
dispatch_register(Event_Client_New, (EventHandler)event, NULL);
2003-03-21 07:53:29 +00:00
history_startup();
2003-03-21 07:33:07 +00:00
}
void plugin_shutdown()
{
2003-03-21 09:31:36 +00:00
dispatch_register(0, (EventHandler)event, NULL);
2003-03-21 07:53:29 +00:00
history_shutdown();
2003-03-21 07:33:07 +00:00
}