#modifier #winapi #input #key-bindings #interface

aloe-aax

A crate for managing modifier key interactions in Rust applications. It provides interfaces for setting and getting Win32 modifier key states through trait implementations. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#24 in #key-bindings

Download history 79/week @ 2025-03-28

79 downloads per month
Used in aloe-exports

GPL-3.0 license

160KB
804 lines

aloe-aax

aloe-aax is a Rust crate designed for precise control over modifier key interactions in applications. It provides interfaces to dynamically manage and retrieve modifier key states, facilitating integration into complex systems that require fine-grained input handling. This is especially useful in environments needing robust modifier key abstraction, such as GUI applications and cross-platform interface layers.

Features

  • ModifierKeyProvider Trait: Implement this trait to allow retrieval of Win32 modifier keys. This is essential for systems that need to interpret or manipulate modifier keys within the Win32 API context.

  • ModifierKeyReceiver Trait: Utilize this interface to set or remove a provider for modifier key states, thus enabling modulable and dynamic input management.

Usage

Implement the ModifierKeyProvider trait to provide a custom logic for Win32 modifier state retrieval:

pub struct MyModifierKeyProvider;

impl ModifierKeyProvider for MyModifierKeyProvider {
    fn get_win_32modifiers(&self) -> i32 {
        // Return a representation of the current modifier keys
        0 // Replace with actual logic
    }
}

Use the ModifierKeyReceiver trait to manage the modifier key provider:

pub struct MyKeyReceiver {
    provider: Option<*mut dyn ModifierKeyProvider>,
}

impl ModifierKeyReceiver for MyKeyReceiver {
    fn set_modifier_key_provider(&mut self, provider: *mut dyn ModifierKeyProvider) {
        self.provider = Some(provider);
    }

    fn remove_modifier_key_provider(&mut self) {
        self.provider = None;
    }
}

Getting Started

Add aloe-aax as a dependency in your Cargo.toml:

[dependencies]
aloe-aax = "0.1.0"

License

Licensed under the GPL-3.0 License.

Contribution

Contributions are welcome! Please open issues or submit pull requests via the GitHub repository.


Disclaimer: This README.md was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–23MB
~379K SLoC