Crates.io | sessionlockev |
lib.rs | sessionlockev |
version | 0.9.6 |
source | src |
created_at | 2023-12-18 14:42:06.162266 |
updated_at | 2024-11-06 14:47:41.909068 |
description | extra shell binding for ext-session-shell with winit like eventloop |
homepage | |
repository | https://github.com/waycrate/exwlshelleventloop |
max_upload_size | |
id | 1073415 |
size | 104,014 |
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