#color #keyboard #focus #graphics #caret

aloe-caret-component

A custom caret component library for GUI applications, offering color customization and visibility control based on keyboard focus. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 2, 2025

#31 in #focus

46 downloads per month
Used in 105 crates (3 directly)

GPL-3.0 license

1.5MB
12K SLoC

Aloe Caret Component

The aloe-caret-component crate offers a custom caret component suitable for GUI applications, primarily catering to developers employing the Rust programming language. This library is designed to operate seamlessly in environments adhering to the 2024 Rust edition, licensed under GPL-3.0.

Features

  • Customizable Colors: Define and manipulate caret colors using CaretComponentColourIds, facilitating a vibrant user interface development. Color types can be set using Component::setColour() or LookAndFeel::setColour() methods.
  • Keyboard Focus Sensitivity: The caret only displays under specific conditions of keyboard focus, ensuring efficient visibility control, thereby mitigating unnecessary screen clutter.
  • Integrated with Timer: Utilize a timer to handle the dynamic visibility of the caret, maintaining its presence on an interval of 380ms, contributing to precise frame timing in maintaining visual consistency.

Usage

The CaretComponent is highly adaptive, supporting a variety of applications due to its non-intrusive design. Its main structure provides robust functionality to define where, how, and when a caret appears. Utilize the SetCaretPosition trait to specify the caret's location within a given Rectangle.

Example

use aloe_caret_component::CaretComponent;

let owner = /* acquire owner component */;
let caret = CaretComponent::new(owner);

// Paint the caret
caret.paint(&mut graphics_context);

// Set the position of the caret
caret.set_caret_position(&some_character_area);

Installation

The crate is available via crates.io and can be added to your Cargo.toml:

[dependencies]
aloe-caret-component = "0.1.0"

License

Licensed under the GPL-3.0 License. See LICENSE for details.


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

~25–39MB
~597K SLoC