1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 2, 2025 |
---|
#112 in #design
87 downloads per month
Used in 34 crates
(8 directly)
5MB
37K
SLoC
Aloe LookAndFeel Crate
The aloe-lookandfeel
crate provides an extensive framework for customizing the graphical user interface (GUI) look-and-feel, tailored to the Aloe GUI toolkit. It defines numerous color IDs and LookAndFeel methods to support a wide range of GUI components such as buttons, windows, sliders, and more.
Overview
The crate includes enums and traits for color identification and customization across different components, enabling both static and dynamic appearance changes. Key elements include:
- Color Enums: Define color IDs for various components like
SidePanel
,ComboBox
,DocumentWindow
, etc. - LookAndFeel Traits: Abstract base classes designed to be implemented by sub-classes providing specialized drawing and customization capabilities (e.g.,
SidePanelLookAndFeelMethods
,ComboBoxLookAndFeelMethods
). - LookAndFeel Versions: Define classes and methods for existing styles (e.g.,
LookAndFeel_V1
,LookAndFeel_V2
,LookAndFeel_V3
,LookAndFeel_V4
) with customization options (e.g., color schemes).
Usage
Implement and customize these look-and-feel traits in your application to adapt the appearance of GUI elements according to your design goals. You can easily set colors and adjust styles dynamically through provided enums and methods:
let scheme = LookAndFeelV4ColourScheme::new(
[Colour::from_rgb(0x32, 0x3e, 0x44), ...]
);
let mut look_and_feel_v4 = LookAndFeel_V4::new(scheme);
look_and_feel_v4.set_colour_scheme(scheme);
Traits and Methods
- LookAndFeel: Base trait marking classes that define skins of UI components.
- SidePanelLookAndFeelMethods: Methods for modifying appearance of side panels.
- ComboBoxLookAndFeelMethods: Covers drawing and font settings for combo box items.
- Resize Methods: Adjust component sizes dynamically for scalable applications.
Note
This documentation was generated by an AI model to facilitate complex GUI customizations swiftly. While comprehensive, verify and test attributes within a live environment for precise outcomes.
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
~26–35MB
~593K SLoC