#wayland #wlroots #event-loop #winit #window #binding #shell

sessionlockev

为 ext-session-shell 提供额外的 shell 绑定,类似于 winit 的事件循环

14 个版本 (4 个破坏性版本)

新版本 0.5.1 2024 年 8 月 17 日
0.4.0 2024 年 8 月 11 日
0.3.0-beta22024 年 7 月 31 日
0.2.0 2024 年 3 月 12 日
0.1.0 2023 年 12 月 18 日

#863GUI

Download history 148/week @ 2024-05-10 8/week @ 2024-05-17 3/week @ 2024-05-24 1/week @ 2024-06-07 143/week @ 2024-06-14 18/week @ 2024-06-21 402/week @ 2024-07-26 230/week @ 2024-08-02 326/week @ 2024-08-09

958 每月下载量
用于 iced_sessionlock

MIT 许可证

210KB
3.5K SLoC

sessionlockev

SessionLockEventloop,参考了 winit 的许多地方,旨在提供创建 layershell 窗口的简便方法。

你可以以 ./examples/simplelock.rs 为例

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();
}

更多示例,请参阅 exwlshelleventloop

依赖项

~7–16MB
~220K SLoC