mirror of
https://github.com/swaywm/sway.git
synced 2024-12-28 07:56:31 +01:00
fixed fullscreen & focusing
This commit is contained in:
parent
322989c431
commit
824a3d81aa
2 changed files with 26 additions and 10 deletions
|
@ -286,6 +286,14 @@ static bool cmd_fullscreen(struct sway_config *config, int argc, char **argv) {
|
||||||
swayc_t *container = get_focused_container(&root_container);
|
swayc_t *container = get_focused_container(&root_container);
|
||||||
bool current = (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN) > 0;
|
bool current = (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN) > 0;
|
||||||
wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current);
|
wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current);
|
||||||
|
//Resize workspace if going from fullscreen -> notfullscreen
|
||||||
|
//otherwise just resize container
|
||||||
|
if (current) {
|
||||||
|
while (container->type != C_WORKSPACE) {
|
||||||
|
container = container->parent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//Only resize container when going into fullscreen
|
||||||
arrange_windows(container, -1, -1);
|
arrange_windows(container, -1, -1);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -82,16 +82,21 @@ static void handle_output_focused(wlc_handle output, bool focus) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool handle_view_created(wlc_handle handle) {
|
static bool handle_view_created(wlc_handle handle) {
|
||||||
swayc_t *container = get_focused_container(&root_container);
|
swayc_t *focused = get_focused_container(&root_container);
|
||||||
swayc_t *view = new_view(container, handle);
|
swayc_t *view = new_view(focused, handle);
|
||||||
unfocus_all(&root_container);
|
|
||||||
if (view) {
|
if (view) {
|
||||||
|
unfocus_all(&root_container);
|
||||||
focus_view(view);
|
focus_view(view);
|
||||||
arrange_windows(view->parent, -1, -1);
|
arrange_windows(view->parent, -1, -1);
|
||||||
} else { //Unmanaged view
|
} else { //Unmanaged view
|
||||||
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
|
wlc_view_set_state(handle, WLC_BIT_ACTIVATED, true);
|
||||||
wlc_view_focus(handle);
|
wlc_view_focus(handle);
|
||||||
}
|
}
|
||||||
|
if (wlc_view_get_state(focused->handle) & WLC_BIT_FULLSCREEN) {
|
||||||
|
unfocus_all(&root_container);
|
||||||
|
focus_view(focused);
|
||||||
|
arrange_windows(focused, -1, -1);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,21 +194,24 @@ static bool handle_pointer_motion(wlc_handle view, uint32_t time, const struct w
|
||||||
if (!config->focus_follows_mouse) {
|
if (!config->focus_follows_mouse) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
swayc_t *c = find_container(&root_container, pointer_test, (void *)origin);
|
|
||||||
swayc_t *focused = get_focused_container(&root_container);
|
swayc_t *focused = get_focused_container(&root_container);
|
||||||
if (c && c != focused) {
|
if (!(wlc_view_get_state(focused->handle) & WLC_BIT_FULLSCREEN)) {
|
||||||
sway_log(L_DEBUG, "Switching focus to %p", c);
|
swayc_t *c = find_container(&root_container, pointer_test, (void *)origin);
|
||||||
unfocus_all(&root_container);
|
if (c && c != focused) {
|
||||||
focus_view(c);
|
sway_log(L_DEBUG, "Switching focus to %p", c);
|
||||||
|
unfocus_all(&root_container);
|
||||||
|
focus_view(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
|
static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct wlc_modifiers *modifiers,
|
||||||
uint32_t button, enum wlc_button_state state) {
|
uint32_t button, enum wlc_button_state state) {
|
||||||
if (state == WLC_BUTTON_STATE_PRESSED) {
|
swayc_t *focused = get_focused_container(&root_container);
|
||||||
|
if (state == WLC_BUTTON_STATE_PRESSED
|
||||||
|
&& !(wlc_view_get_state(focused->handle) & WLC_BIT_FULLSCREEN)) {
|
||||||
swayc_t *c = find_container(&root_container, pointer_test, &mouse_origin);
|
swayc_t *c = find_container(&root_container, pointer_test, &mouse_origin);
|
||||||
swayc_t *focused = get_focused_container(&root_container);
|
|
||||||
if (c && c != focused) {
|
if (c && c != focused) {
|
||||||
sway_log(L_DEBUG, "Switching focus to %p", c);
|
sway_log(L_DEBUG, "Switching focus to %p", c);
|
||||||
unfocus_all(&root_container);
|
unfocus_all(&root_container);
|
||||||
|
|
Loading…
Reference in a new issue