summaryrefslogtreecommitdiff
path: root/openbox/stacking.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-10 04:39:06 +0000
committerDana Jansens <danakj@orodu.net>2007-05-10 04:39:06 +0000
commit220015e56e0b8ce1a00bd0f6e89bc25bb6e73cbf (patch)
treeb42dfde28bba09beb9ecf280a87feddd5bff80c8 /openbox/stacking.c
parentaa40be22970dbdd8bf0f133634eb1165bcb3ec02 (diff)
make configurerequest activate but net_restack_windows just restack.
fix bottomif, topif, opposite. fix debug output in event printing when there was no problem
Diffstat (limited to 'openbox/stacking.c')
-rw-r--r--openbox/stacking.c110
1 files changed, 86 insertions, 24 deletions
diff --git a/openbox/stacking.c b/openbox/stacking.c
index 70a072fc..564b995e 100644
--- a/openbox/stacking.c
+++ b/openbox/stacking.c
@@ -461,41 +461,87 @@ void stacking_add_nonintrusive(ObWindow *win)
}
}
-gboolean stacking_occluded(ObClient *client, ObClient *sibling)
+/*! Returns TRUE if client is occluded by the sibling. If sibling is NULL it
+ tries against all other clients.
+*/
+static gboolean stacking_occluded(ObClient *client, ObClient *sibling)
{
GList *it;
- gboolean obscured = FALSE;
+ gboolean occluded = FALSE;
gboolean found = FALSE;
/* no need for any looping in this case */
if (sibling && client->layer != sibling->layer)
- return obscured;
+ return occluded;
- for (it = stacking_list; it; it = g_list_next(it))
+ for (it = stacking_list; it;
+ it = (found ? g_list_previous(it) :g_list_next(it)))
if (WINDOW_IS_CLIENT(it->data)) {
ObClient *c = it->data;
if (found) {
- if (sibling != NULL) {
- if (c == sibling) {
- obscured = TRUE;
+ if (RECT_INTERSECTS_RECT(c->frame->area, client->frame->area))
+ {
+ if (sibling != NULL) {
+ if (c == sibling) {
+ occluded = TRUE;
+ break;
+ }
+ }
+ else if (c->layer == client->layer) {
+ occluded = TRUE;
break;
}
+ else if (c->layer > client->layer)
+ break; /* we past its layer */
}
- else if (c->layer == client->layer) {
- obscured = TRUE;
- break;
+ }
+ else if (c == client)
+ found = TRUE;
+ }
+ return occluded;
+}
+
+/*! Returns TRUE if client is occludes the sibling. If sibling is NULL it tries
+ against all other clients.
+*/
+static gboolean stacking_occludes(ObClient *client, ObClient *sibling)
+{
+ GList *it;
+ gboolean occludes = FALSE;
+ gboolean found = FALSE;
+
+ /* no need for any looping in this case */
+ if (sibling && client->layer != sibling->layer)
+ return occludes;
+
+ for (it = stacking_list; it; it = g_list_next(it))
+ if (WINDOW_IS_CLIENT(it->data)) {
+ ObClient *c = it->data;
+ if (found) {
+ if (RECT_INTERSECTS_RECT(c->frame->area, client->frame->area))
+ {
+ if (sibling != NULL) {
+ if (c == sibling) {
+ occludes = TRUE;
+ break;
+ }
+ }
+ else if (c->layer == client->layer) {
+ occludes = TRUE;
+ break;
+ }
+ else if (c->layer > client->layer)
+ break; /* we past its layer */
}
- else if (c->layer > client->layer)
- break; /* we past its layer */
}
else if (c == client)
found = TRUE;
}
- return obscured;
+ return occludes;
}
void stacking_restack_request(ObClient *client, ObClient *sibling,
- gint detail)
+ gint detail, gboolean activate)
{
switch (detail) {
case Below:
@@ -510,29 +556,45 @@ void stacking_restack_request(ObClient *client, ObClient *sibling,
client->title, sibling ? sibling->title : "(all)");
/* if this client occludes sibling (or anything if NULL), then
lower it to the bottom */
- if (stacking_occluded(sibling, client))
+ if (stacking_occludes(client, sibling))
stacking_lower(CLIENT_AS_WINDOW(client));
break;
case Above:
ob_debug("Restack request Above for client %s sibling %s\n",
client->title, sibling ? sibling->title : "(all)");
- /* activate it rather than just focus it */
- client_activate(client, FALSE, FALSE);
+ if (activate)
+ /* use user=TRUE because it is impossible to get a timestamp
+ for this */
+ client_activate(client, FALSE, TRUE);
+ else
+ stacking_raise(CLIENT_AS_WINDOW(client));
break;
case TopIf:
ob_debug("Restack request TopIf for client %s sibling %s\n",
client->title, sibling ? sibling->title : "(all)");
- if (stacking_occluded(client, sibling))
- /* activate it rather than just focus it */
- client_activate(client, FALSE, FALSE);
+ if (stacking_occluded(client, sibling)) {
+ if (activate)
+ /* use user=TRUE because it is impossible to get a timestamp
+ for this */
+ client_activate(client, FALSE, TRUE);
+ else
+ stacking_raise(CLIENT_AS_WINDOW(client));
+ }
+ break;
case Opposite:
ob_debug("Restack request Opposite for client %s sibling "
"%s\n",
client->title, sibling ? sibling->title : "(all)");
- if (stacking_occluded(client, sibling))
- /* activate it rather than just focus it */
- client_activate(client, FALSE, FALSE);
- else if (stacking_occluded(sibling, client))
+ if (stacking_occluded(client, sibling)) {
+ if (activate)
+ /* use user=TRUE because it is impossible to get a timestamp
+ for this */
+ client_activate(client, FALSE, TRUE);
+ else
+ stacking_raise(CLIENT_AS_WINDOW(client));
+ }
+ else if (stacking_occludes(client, sibling))
stacking_lower(CLIENT_AS_WINDOW(client));
+ break;
}
}