fcitx5_dbus/utils/
rect.rs1use crate::utils::macros;
2
3macros::dbus_type! {
4 pub struct Rect {
5 pub x: i32,
6 pub y: i32,
7 pub w: i32,
8 pub h: i32,
9 }
10 pub struct RectV2 {
11 pub x: i32,
12 pub y: i32,
13 pub w: i32,
14 pub h: i32,
15 pub scale: f64,
16 }
17}