openbox/plugins/placement/placement.c

80 lines
1.8 KiB
C
Raw Normal View History

#include "kernel/dispatch.h"
#include "kernel/client.h"
#include "kernel/frame.h"
#include "kernel/screen.h"
#include "kernel/openbox.h"
#include "kernel/parse.h"
2003-03-21 07:53:29 +00:00
#include "history.h"
2003-03-21 07:33:07 +00:00
#include <glib.h>
static gboolean history;
static void parse_assign(char *name, ParseToken *value)
{
if (!g_ascii_strcasecmp(name, "remember")) {
if (value->type != TOKEN_BOOL)
yyerror("invalid value");
else
history = value->data.bool;
} else
yyerror("invalid option");
parse_free_token(value);
}
2003-03-21 07:53:29 +00:00
2003-03-23 19:42:47 +00:00
void plugin_setup_config()
{
history = TRUE;
parse_reg_section("placement", NULL, parse_assign);
2003-03-23 19:42:47 +00:00
}
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;
if (ob_state == State_Starting) return;
2003-03-21 07:33:07 +00:00
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);
/* requested a position */
if (e->data.c.client->positioned) return;
if (!history || !place_history(e->data.c.client))
2003-03-21 07:53:29 +00:00
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
}