mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 09:51:29 +00:00
Enforce mouse permissions
This commit is contained in:
parent
8aeeacf178
commit
0d395681fe
|
@ -730,7 +730,6 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier
|
||||||
if (focused->type == C_VIEW) {
|
if (focused->type == C_VIEW) {
|
||||||
pid_t pid = wlc_view_get_pid(focused->handle);
|
pid_t pid = wlc_view_get_pid(focused->handle);
|
||||||
if (!(get_feature_policy(pid) & FEATURE_KEYBOARD)) {
|
if (!(get_feature_policy(pid) & FEATURE_KEYBOARD)) {
|
||||||
sway_log(L_INFO, "Denying keypress to %d (%s)", pid, focused->name);
|
|
||||||
return EVENT_HANDLED;
|
return EVENT_HANDLED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -790,6 +789,15 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct
|
||||||
}
|
}
|
||||||
|
|
||||||
pointer_position_set(&new_origin, false);
|
pointer_position_set(&new_origin, false);
|
||||||
|
|
||||||
|
swayc_t *focused = get_focused_container(&root_container);
|
||||||
|
if (focused->type == C_VIEW) {
|
||||||
|
pid_t pid = wlc_view_get_pid(focused->handle);
|
||||||
|
if (!(get_feature_policy(pid) & FEATURE_MOUSE)) {
|
||||||
|
return EVENT_HANDLED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return EVENT_PASSTHROUGH;
|
return EVENT_PASSTHROUGH;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -857,6 +865,12 @@ static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct w
|
||||||
|
|
||||||
// don't change focus or mode if fullscreen
|
// don't change focus or mode if fullscreen
|
||||||
if (swayc_is_fullscreen(focused)) {
|
if (swayc_is_fullscreen(focused)) {
|
||||||
|
if (focused->type == C_VIEW) {
|
||||||
|
pid_t pid = wlc_view_get_pid(focused->handle);
|
||||||
|
if (!(get_feature_policy(pid) & FEATURE_MOUSE)) {
|
||||||
|
return EVENT_HANDLED;
|
||||||
|
}
|
||||||
|
}
|
||||||
return EVENT_PASSTHROUGH;
|
return EVENT_PASSTHROUGH;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -899,6 +913,13 @@ static bool handle_pointer_button(wlc_handle view, uint32_t time, const struct w
|
||||||
return EVENT_HANDLED;
|
return EVENT_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (focused->type == C_VIEW) {
|
||||||
|
pid_t pid = wlc_view_get_pid(focused->handle);
|
||||||
|
if (!(get_feature_policy(pid) & FEATURE_MOUSE)) {
|
||||||
|
return EVENT_HANDLED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Always send mouse release
|
// Always send mouse release
|
||||||
if (state == WLC_BUTTON_STATE_RELEASED) {
|
if (state == WLC_BUTTON_STATE_RELEASED) {
|
||||||
return EVENT_PASSTHROUGH;
|
return EVENT_PASSTHROUGH;
|
||||||
|
|
Loading…
Reference in a new issue