imekit 0.1.0

A cross-platform Rust library for IME (Input Method Engine) integration using native protocols
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Wayland Input Method implementation
//!
//! Implements the `zwp_input_method_v2` protocol from wayland-protocols-misc
//! for input method functionality on Wayland compositors.
//!
//! Also provides the `zwp_text_input_v3` implementation for applications
//! that want to receive text input from an IME.

mod input_method;
mod text_input;

pub use input_method::InputMethod;
pub use text_input::{TextInput, TextInputEvent};