summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-13 02:42:27 +0000
committerDana Jansens <danakj@orodu.net>2007-06-13 02:42:27 +0000
commit1514ce75b654903003c7f38fec6482d61c79bb48 (patch)
tree0120f0a0baec2e8695d078802f622601d029c168 /openbox
parentcbaafd2ff9194570686cc242910f81e104ee8c42 (diff)
ignore the dock in placing as a last resort
Diffstat (limited to 'openbox')
-rw-r--r--openbox/dock.c5
-rw-r--r--openbox/dock.h2
-rw-r--r--openbox/place.c45
3 files changed, 35 insertions, 17 deletions
diff --git a/openbox/dock.c b/openbox/dock.c
index d8ca062d..c456ea75 100644
--- a/openbox/dock.c
+++ b/openbox/dock.c
@@ -637,3 +637,8 @@ void dock_hide(gboolean hide)
}
}
}
+
+void dock_get_area(Rect *a)
+{
+ RECT_SET(*a, dock->x, dock->y, dock->w, dock->h);
+}
diff --git a/openbox/dock.h b/openbox/dock.h
index 051747c3..48d6af49 100644
--- a/openbox/dock.h
+++ b/openbox/dock.h
@@ -82,4 +82,6 @@ void dock_remove(ObDockApp *app, gboolean reparent);
void dock_app_drag(ObDockApp *app, XMotionEvent *e);
void dock_app_configure(ObDockApp *app, gint w, gint h);
+void dock_get_area(Rect *a);
+
#endif
diff --git a/openbox/place.c b/openbox/place.c
index 6bcfe9d8..b6ede657 100644
--- a/openbox/place.c
+++ b/openbox/place.c
@@ -23,8 +23,11 @@
#include "frame.h"
#include "focus.h"
#include "config.h"
+#include "dock.h"
#include "debug.h"
+extern ObDock *dock;
+
static void add_choice(guint *choice, guint mychoice)
{
guint i;
@@ -220,14 +223,15 @@ static GSList* area_remove(GSList *list, Rect *a)
}
enum {
- IGNORE_FULLSCREEN = 1 << 0,
- IGNORE_MAXIMIZED = 1 << 1,
- IGNORE_MENUTOOL = 1 << 2,
- /*IGNORE_SHADED = 1 << 3,*/
- IGNORE_NONGROUP = 1 << 3,
- IGNORE_BELOW = 1 << 4,
- IGNORE_NONFOCUS = 1 << 5,
- IGNORE_END = 1 << 6
+ IGNORE_FULLSCREEN = 1,
+ IGNORE_MAXIMIZED = 2,
+ IGNORE_MENUTOOL = 3,
+ /*IGNORE_SHADED = 3,*/
+ IGNORE_NONGROUP = 4,
+ IGNORE_BELOW = 5,
+ /*IGNORE_NONFOCUS = 1 << 5,*/
+ IGNORE_DOCK = 6,
+ IGNORE_END = 7
};
static gboolean place_nooverlap(ObClient *c, gint *x, gint *y)
@@ -245,7 +249,7 @@ static gboolean place_nooverlap(ObClient *c, gint *x, gint *y)
maxit = NULL;
/* try ignoring different things to find empty space */
- for (ignore = 0; ignore < IGNORE_END && !ret; ignore = (ignore << 1) + 1) {
+ for (ignore = 0; ignore < IGNORE_END && !ret; ignore++) {
guint i;
/* try all monitors in order of preference */
@@ -274,31 +278,38 @@ static gboolean place_nooverlap(ObClient *c, gint *x, gint *y)
test->type == OB_CLIENT_TYPE_DESKTOP) continue;
- if ((ignore & IGNORE_FULLSCREEN) &&
+ if ((ignore >= IGNORE_FULLSCREEN) &&
test->fullscreen) continue;
- if ((ignore & IGNORE_MAXIMIZED) &&
+ if ((ignore >= IGNORE_MAXIMIZED) &&
test->max_horz && test->max_vert) continue;
- if ((ignore & IGNORE_MENUTOOL) &&
+ if ((ignore >= IGNORE_MENUTOOL) &&
(test->type == OB_CLIENT_TYPE_MENU ||
test->type == OB_CLIENT_TYPE_TOOLBAR) &&
client_has_parent(c)) continue;
/*
- if ((ignore & IGNORE_SHADED) &&
+ if ((ignore >= IGNORE_SHADED) &&
test->shaded) continue;
*/
- if ((ignore & IGNORE_NONGROUP) &&
+ if ((ignore >= IGNORE_NONGROUP) &&
client_has_group_siblings(c) &&
test->group != c->group) continue;
- if ((ignore & IGNORE_BELOW) &&
+ if ((ignore >= IGNORE_BELOW) &&
test->layer < c->layer) continue;
- if ((ignore & IGNORE_NONFOCUS) &&
+ /*
+ if ((ignore >= IGNORE_NONFOCUS) &&
focus_client != test) continue;
-
+ */
/* don't ignore this window, so remove it from the available
area */
spaces = area_remove(spaces, &test->frame->area);
}
+ if (ignore < IGNORE_DOCK) {
+ Rect a;
+ dock_get_area(&a);
+ spaces = area_remove(spaces, &a);
+ }
+
for (sit = spaces; sit; sit = g_slist_next(sit)) {
Rect *r = sit->data;