openbox/plugins/placement/placement.c

78 lines
1.9 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-23 22:39:06 +00:00
#include "../../kernel/config.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-23 19:42:47 +00:00
void plugin_setup_config()
{
2003-03-23 22:39:06 +00:00
ConfigValue val;
config_def_set(config_def_new("placement.remember", Config_Bool,
"Remember Window Positions",
"Place windows where they last were "
"positioned."));
val.bool = TRUE;
config_set("placement.remember", Config_Bool, val);
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
{
2003-03-23 22:39:06 +00:00
ConfigValue remember;
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;
2003-03-23 22:53:19 +00:00
if (!config_get("placement.remember", Config_Bool, &remember))
g_assert_not_reached();
2003-03-23 22:39:06 +00:00
if (!remember.bool || !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
}