37 releases (8 breaking)
new 0.9.7 | Nov 17, 2024 |
---|---|
0.9.4 | Oct 23, 2024 |
0.3.0-beta2 | Jul 31, 2024 |
0.2.0 | Mar 12, 2024 |
0.1.0 | Dec 18, 2023 |
#837 in GUI
1,161 downloads per month
Used in iced_sessionlock
220KB
3.5K
SLoC
sessionlockev
SessionLockEventloop, take lot reference from winit, amin to make a easy way to create layershell window.
you can take ./examples/simplelock.rs
for example
use std::fs::File;
use std::os::fd::AsFd;
use sessionlockev::reexport::*;
use sessionlockev::*;
const ESC_KEY: u32 = 1;
fn main() {
let mut ev: WindowState<()> = WindowState::new().build().unwrap();
let mut virtual_keyboard_manager = None;
ev.running(|event, _ev, _index| {
println!("{:?}", event);
match event {
// NOTE: this will send when init, you can request bind extra object from here
SessionLockEvent::InitRequest => ReturnData::RequestBind,
SessionLockEvent::BindProvide(globals, qh) => {
// NOTE: you can get implied wayland object from here
virtual_keyboard_manager = Some(
globals
.bind::<zwp_virtual_keyboard_v1::ZwpVirtualKeyboardManagerV1, _, _>(
qh,
1..=1,
(),
)
.unwrap(),
);
println!("{:?}", virtual_keyboard_manager);
ReturnData::None
}
SessionLockEvent::RequestBuffer(file, shm, qh, init_w, init_h) => {
draw(file, (init_w, init_h));
let pool = shm.create_pool(file.as_fd(), (init_w * init_h * 4) as i32, qh, ());
ReturnData::WlBuffer(pool.create_buffer(
0,
init_w as i32,
init_h as i32,
(init_w * 4) as i32,
wl_shm::Format::Argb8888,
qh,
(),
))
}
SessionLockEvent::RequestMessages(DispatchMessage::RequestRefresh {
width,
height,
}) => {
println!("{width}, {height}");
ReturnData::None
}
SessionLockEvent::RequestMessages(DispatchMessage::MouseButton { .. }) => {
ReturnData::None
}
SessionLockEvent::RequestMessages(DispatchMessage::MouseEnter {
serial,
pointer,
..
}) => ReturnData::RequestSetCursorShape((
"crosshair".to_owned(),
pointer.clone(),
*serial,
)),
SessionLockEvent::RequestMessages(DispatchMessage::KeyBoard { key, .. }) => {
if *key == ESC_KEY {
return ReturnData::RequestUnlockAndExist;
}
ReturnData::None
}
SessionLockEvent::RequestMessages(DispatchMessage::MouseMotion {
time,
surface_x,
surface_y,
}) => {
println!("{time}, {surface_x}, {surface_y}");
ReturnData::None
}
_ => ReturnData::None,
}
})
.unwrap();
}
fn draw(tmp: &mut File, (buf_x, buf_y): (u32, u32)) {
use std::{cmp::min, io::Write};
let mut buf = std::io::BufWriter::new(tmp);
for y in 0..buf_y {
for x in 0..buf_x {
let a = 0xFF;
let r = min(((buf_x - x) * 0xFF) / buf_x, ((buf_y - y) * 0xFF) / buf_y);
let g = min((x * 0xFF) / buf_x, ((buf_y - y) * 0xFF) / buf_y);
let b = min(((buf_x - x) * 0xFF) / buf_x, (y * 0xFF) / buf_y);
let color = (a << 24) + (r << 16) + (g << 8) + b;
buf.write_all(&color.to_ne_bytes()).unwrap();
}
}
buf.flush().unwrap();
}
For more example, please take a look at exwlshelleventloop
Dependencies
~6–15MB
~206K SLoC