14 个版本 (4 个破坏性更新)
新 0.5.1 | 2024 年 8 月 17 日 |
---|---|
0.4.0 | 2024 年 8 月 11 日 |
0.3.0-beta2 | 2024 年 7 月 31 日 |
0.2.0 | 2024 年 3 月 12 日 |
0.1.0 | 2023 年 12 月 18 日 |
#763 in GUI
每月下载量 1,366
在 2 个 Crates 中使用 (通过 iced_layershell)
245KB
4K SLoC
Layershellev
Layershelleventloop,大量参考自 winit,旨在创建一个简单的 layershell 窗口。
您可以以 ./examples/simplelayer.rs
为例
use std::fs::File;
use std::os::fd::AsFd;
use layershellev::reexport::*;
use layershellev::*;
const Q_KEY: u32 = 16;
const W_KEY: u32 = 17;
const E_KEY: u32 = 18;
const A_KEY: u32 = 30;
const S_KEY: u32 = 31;
const D_KEY: u32 = 32;
const Z_KEY: u32 = 44;
const X_KEY: u32 = 45;
const C_KEY: u32 = 46;
const ESC_KEY: u32 = 1;
fn main() {
let ev: WindowState<()> = WindowState::new("Hello")
.with_single(false)
.with_size((0, 400))
.with_layer(Layer::Top)
.with_margin((20, 20, 100, 20))
.with_anchor(Anchor::Bottom | Anchor::Left | Anchor::Right)
.with_keyboard_interacivity(KeyboardInteractivity::Exclusive)
.with_exclusize_zone(-1)
.build()
.unwrap();
let mut virtual_keyboard_manager = None;
ev.running(|event, ev, index| {
match event {
// NOTE: this will send when init, you can request bind extra object from here
LayerEvent::InitRequest => ReturnData::RequestBind,
LayerEvent::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
}
LayerEvent::XdgInfoChanged(_) => {
let index = index.unwrap();
let unit = ev.get_unit(index);
println!("{:?}", unit.get_xdgoutput_info());
ReturnData::None
}
LayerEvent::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,
(),
))
}
LayerEvent::RequestMessages(DispatchMessage::RequestRefresh { width, height }) => {
println!("{width}, {height}");
ReturnData::None
}
LayerEvent::RequestMessages(DispatchMessage::MouseButton { .. }) => ReturnData::None,
LayerEvent::RequestMessages(DispatchMessage::MouseEnter {
serial, pointer, ..
}) => ReturnData::RequestSetCursorShape((
"crosshair".to_owned(),
pointer.clone(),
*serial,
)),
LayerEvent::RequestMessages(DispatchMessage::MouseMotion {
time,
surface_x,
surface_y,
}) => {
println!("{time}, {surface_x}, {surface_y}");
ReturnData::None
}
LayerEvent::RequestMessages(DispatchMessage::KeyBoard { key, .. }) => {
match index {
Some(index) => {
let ev_unit = ev.get_unit(index);
match *key {
Q_KEY => ev_unit.set_anchor(Anchor::Top | Anchor::Left),
W_KEY => ev_unit.set_anchor(Anchor::Top),
E_KEY => ev_unit.set_anchor(Anchor::Top | Anchor::Right),
A_KEY => ev_unit.set_anchor(Anchor::Left),
S_KEY => ev_unit.set_anchor(
Anchor::Left | Anchor::Right | Anchor::Top | Anchor::Bottom,
),
D_KEY => ev_unit.set_anchor(Anchor::Right),
Z_KEY => ev_unit.set_anchor(Anchor::Left | Anchor::Bottom),
X_KEY => ev_unit.set_anchor(Anchor::Bottom),
C_KEY => ev_unit.set_anchor(Anchor::Bottom | Anchor::Right),
ESC_KEY => return ReturnData::RequestExist,
_ => {}
}
}
None => {
for ev_unit in ev.get_unit_iter() {
match *key {
Q_KEY => ev_unit.set_anchor(Anchor::Top | Anchor::Left),
W_KEY => ev_unit.set_anchor(Anchor::Top),
E_KEY => ev_unit.set_anchor(Anchor::Top | Anchor::Right),
A_KEY => ev_unit.set_anchor(Anchor::Left),
S_KEY => ev_unit.set_anchor(
Anchor::Left | Anchor::Right | Anchor::Top | Anchor::Bottom,
),
D_KEY => ev_unit.set_anchor(Anchor::Right),
Z_KEY => ev_unit.set_anchor(Anchor::Left | Anchor::Bottom),
X_KEY => ev_unit.set_anchor(Anchor::Bottom),
C_KEY => ev_unit.set_anchor(Anchor::Bottom | Anchor::Right),
ESC_KEY => return ReturnData::RequestExist,
_ => {}
}
}
}
};
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
~218K SLoC