cursor: handle xwayland views for move/resize
This commit is contained in:
parent
7a244092e5
commit
d6823fe3a0
3 changed files with 44 additions and 24 deletions
|
@ -263,12 +263,9 @@ fn handleButton(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
|||
}
|
||||
}
|
||||
|
||||
// If the found surface is an xdg toplevel surface, send keyboard
|
||||
// focus to the view.
|
||||
if (c.wlr_surface_is_xdg_surface(wlr_surface)) {
|
||||
const wlr_xdg_surface = c.wlr_xdg_surface_from_wlr_surface(wlr_surface);
|
||||
if (wlr_xdg_surface.*.role == .WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
|
||||
const view = util.voidCast(View, wlr_xdg_surface.*.data.?);
|
||||
// If the target surface has a view, give that view keyboard focus and
|
||||
// perhaps enter move/resize mode.
|
||||
if (View.fromWlrSurface(wlr_surface)) |view| {
|
||||
self.seat.focus(view);
|
||||
|
||||
if (event.state == .WLR_BUTTON_PRESSED and self.pressed_count == 1) {
|
||||
|
@ -289,7 +286,6 @@ fn handleButton(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_ = c.wlr_seat_pointer_notify_button(
|
||||
self.seat.wlr_seat,
|
||||
|
|
|
@ -293,6 +293,23 @@ pub fn getConstraints(self: Self) Constraints {
|
|||
};
|
||||
}
|
||||
|
||||
/// Find and return the view corresponding to a given wlr_surface, if any
|
||||
pub fn fromWlrSurface(wlr_surface: *c.wlr_surface) ?*Self {
|
||||
if (c.wlr_surface_is_xdg_surface(wlr_surface)) {
|
||||
const wlr_xdg_surface = c.wlr_xdg_surface_from_wlr_surface(wlr_surface);
|
||||
if (wlr_xdg_surface.*.role == .WLR_XDG_SURFACE_ROLE_TOPLEVEL) {
|
||||
return util.voidCast(Self, wlr_xdg_surface.*.data.?);
|
||||
}
|
||||
}
|
||||
if (build_options.xwayland) {
|
||||
if (c.wlr_surface_is_xwayland_surface(wlr_surface)) {
|
||||
const wlr_xwayland_surface = c.wlr_xwayland_surface_from_wlr_surface(wlr_surface);
|
||||
return util.voidCast(Self, wlr_xwayland_surface.*.data.?);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/// Called by the impl when the surface is ready to be displayed
|
||||
pub fn map(self: *Self) void {
|
||||
const root = self.output.root;
|
||||
|
|
|
@ -57,8 +57,10 @@ pub fn init(self: *Self, view: *View, wlr_xwayland_surface: *c.wlr_xwayland_surf
|
|||
}
|
||||
|
||||
pub fn needsConfigure(self: Self) bool {
|
||||
return self.view.current.box.width != self.view.pending.box.width or
|
||||
self.view.current.box.height != self.view.pending.box.height;
|
||||
return self.wlr_xwayland_surface.x != self.view.pending.box.x or
|
||||
self.wlr_xwayland_surface.y != self.view.pending.box.y or
|
||||
self.wlr_xwayland_surface.width != self.view.pending.box.width or
|
||||
self.wlr_xwayland_surface.height != self.view.pending.box.height;
|
||||
}
|
||||
|
||||
/// Tell the client to take a new size
|
||||
|
@ -195,7 +197,12 @@ fn handleCommit(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
|||
|
||||
// See comment in XwaylandView.configure()
|
||||
if (view.pending_serial != null) {
|
||||
view.output.root.notifyConfigured();
|
||||
// If the view is part of the layout, notify the transaction code. If
|
||||
// the view is floating or fullscreen apply the pending state immediately.
|
||||
view.pending_serial = null;
|
||||
if (!view.pending.float and !view.pending.fullscreen)
|
||||
view.output.root.notifyConfigured()
|
||||
else
|
||||
view.current = view.pending;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue