1
0
Fork 0
forked from wry/wry

tree: use trunc instead of round when scrolling containers

This commit is contained in:
Julian Orth 2022-05-07 18:06:55 +02:00
parent b7831e1019
commit ec9710983c
14 changed files with 70 additions and 6 deletions

View file

@ -34,7 +34,7 @@ pub const AXIS_DISCRETE_SINCE_VERSION: u32 = 5;
pub const AXIS_STOP_SINCE_VERSION: u32 = 5;
pub const WHEEL_TILT_SINCE_VERSION: u32 = 6;
#[derive(Default)]
#[derive(Default, Debug)]
pub struct PendingScroll {
pub discrete: [Cell<Option<i32>>; 2],
pub axis: [Cell<Option<Fixed>>; 2],

View file

@ -321,6 +321,7 @@ impl Node for XdgPopup {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("xdg-popup focus");
seat.set_known_cursor(KnownCursor::Default);
}
}

View file

@ -426,6 +426,7 @@ impl Node for XdgToplevel {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("xdg-toplevel focus");
seat.set_known_cursor(KnownCursor::Default);
}
}

View file

@ -374,6 +374,7 @@ impl Node for Xwindow {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("wl-surface focus");
seat.set_known_cursor(KnownCursor::Default);
}
}

View file

@ -302,6 +302,13 @@ impl TestBackendMouse {
));
self.common.event(InputEvent::Frame);
}
pub fn scroll_px(&self, dy: i32) {
self.common.event(InputEvent::AxisSource(AxisSource::Wheel));
self.common
.event(InputEvent::Axis(Fixed::from_int(dy), ScrollAxis::Vertical));
self.common.event(InputEvent::Frame);
}
}
pub struct TestBackendKb {

View file

@ -40,6 +40,7 @@ mod t0011_set_keymap;
mod t0012_subsurface_focus;
mod t0013_graphics_initialized;
mod t0014_container_scroll_focus;
mod t0015_scroll_partial;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -72,5 +73,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0012_subsurface_focus,
t0013_graphics_initialized,
t0014_container_scroll_focus,
t0015_scroll_partial,
}
}

View file

@ -48,7 +48,6 @@ async fn test(run: Rc<TestRun>) -> TestResult {
let mono_container = w_mono2.tl.container_parent()?;
let container_pos = mono_container.tl_data().pos.get();
log::info!("cp {:?}", container_pos);
let w_mono1_title = mono_container.render_data.borrow_mut().title_rects[0]
.move_(container_pos.x1(), container_pos.y1());
ds.mouse.abs(
@ -63,8 +62,6 @@ async fn test(run: Rc<TestRun>) -> TestResult {
ds.mouse.scroll(-1);
client.sync().await;
client.save_screenshot("s2").await?;
let enter = enters.next().with_context(|| "no enter event 2")?;
tassert_eq!(enter.surface, w_mono1.surface.id);

View file

@ -0,0 +1,48 @@
use {
crate::{
it::{test_error::TestResult, testrun::TestRun},
tree::ToplevelNode,
},
std::rc::Rc,
};
testcase!();
async fn test(run: Rc<TestRun>) -> TestResult {
let ds = run.create_default_setup().await?;
ds.mouse.rel(1.0, 1.0);
let client = run.create_client().await?;
let dss = client.get_default_seat().await?;
let w_mono1 = client.create_window().await?;
w_mono1.map2().await?;
let w_mono2 = client.create_window().await?;
w_mono2.map2().await?;
run.cfg.set_mono(ds.seat.id(), true)?;
client.sync().await;
let container = w_mono2.tl.container_parent()?;
let pos = container.tl_data().pos.get();
let w_mono1_title = container.render_data.borrow_mut().title_rects[0].move_(pos.x1(), pos.y1());
ds.mouse.abs(
&ds.connector,
w_mono1_title.x1() as f64,
w_mono1_title.y1() as f64,
);
client.sync().await;
let enters = dss.kb.enter.expect()?;
ds.mouse.scroll_px(-14);
client.sync().await;
tassert!(enters.next().is_err());
ds.mouse.scroll_px(-1);
client.sync().await;
tassert!(enters.next().is_ok());
Ok(())
}

View file

@ -189,6 +189,7 @@ pub trait Node: 'static {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("{} focus", std::any::type_name::<Self>());
let _ = seat;
}

View file

@ -1159,7 +1159,7 @@ impl Node for ContainerNode {
d
} else if let Some(scroll) = event.axis[VERTICAL_SCROLL as usize].get() {
let mut scroll = self.scroll.get() + scroll.to_f64();
let discrete = (scroll / PX_PER_SCROLL).round();
let discrete = (scroll / PX_PER_SCROLL).trunc();
scroll -= discrete * PX_PER_SCROLL;
self.scroll.set(scroll);
discrete as i32
@ -1191,6 +1191,7 @@ impl Node for ContainerNode {
}
fn node_on_pointer_unfocus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("unfocus");
let mut seats = self.seats.borrow_mut();
if let Some(seat_state) = seats.get_mut(&seat.id()) {
seat_state.target = false;
@ -1198,6 +1199,7 @@ impl Node for ContainerNode {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("container focus");
let mut seats = self.seats.borrow_mut();
if let Some(seat_state) = seats.get_mut(&seat.id()) {
seat_state.target = true;

View file

@ -115,6 +115,7 @@ impl Node for DisplayNode {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("display focus");
seat.set_known_cursor(KnownCursor::Default);
}
}

View file

@ -467,6 +467,7 @@ impl Node for FloatNode {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("float focus");
let mut seats = self.seats.borrow_mut();
if let Some(seat_state) = seats.get_mut(&seat.id()) {
seat_state.target = true;

View file

@ -382,7 +382,7 @@ impl Node for OutputNode {
}
}
let bar_height = self.state.theme.title_height.get() + 1;
if y > bar_height {
if y >= bar_height {
y -= bar_height;
let len = tree.len();
if let Some(ws) = self.workspace.get() {
@ -405,6 +405,7 @@ impl Node for OutputNode {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("output focus");
seat.set_known_cursor(KnownCursor::Default);
}

View file

@ -130,6 +130,7 @@ impl Node for WorkspaceNode {
}
fn node_on_pointer_focus(&self, seat: &Rc<WlSeatGlobal>) {
// log::info!("workspace focus");
seat.set_known_cursor(KnownCursor::Default);
}