Implement correct focusing for tabbed containers

This commit is contained in:
Ivan Chebykin 2018-05-25 14:12:09 +03:00
parent c1be4b0153
commit c62efbb5ce
No known key found for this signature in database
GPG Key ID: 34A8A768BB01746F
1 changed files with 25 additions and 4 deletions

View File

@ -162,10 +162,31 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
seat_set_focus_warp(cursor->seat, c, false);
}
} else {
// Don't switch focus on mouseover for stacked and tabbed layouts
if(focus->parent == c->parent &&
(c->parent->layout != L_STACKED
|| c->parent->layout != L_TABBED)) {
// Get container-local cursor position
double c_local_y = cursor->cursor->y - c->y;
bool is_below_title =
c_local_y - container_titlebar_height() > 0.001;
bool do_mouse_focus = true;
// Don't switch focus on title mouseover for stacked and tabbed
// layouts
if(c->parent && (c->parent->layout == L_STACKED
|| c->parent->layout == L_TABBED)
&& !is_below_title) {
do_mouse_focus = false;
}
// If pointed container is in nested container
// inside tabbed/stacked layout we should skip this nested container
if(c->parent && c->parent->parent &&
(c->parent->parent->layout == L_STACKED
|| c->parent->parent->layout == L_TABBED)
&& !is_below_title) {
do_mouse_focus = false;
}
if(do_mouse_focus) {
seat_set_focus_warp(cursor->seat, c, false);
}
}