#parameters #component #processor #interface #audio

aloe-parameter-component

Aloe Parameter Component offers a cohesive set of tools for handling audio parameter interfaces in Rust, promoting seamless integration within audio processing environments using various parameter display components. 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 3, 2025

#118 in #processor

25 downloads per month
Used in aloe-exports

GPL-3.0 license

2MB
17K SLoC

Aloe Parameter Component

The aloe-parameter-component crate provides a comprehensive framework for managing audio processor parameter components within Rust applications, particularly emphasizing integration with audio processing environments. The crate centers around a set of structured components designed to display, interact, and dynamically manage audio parameters effectively.

Table of Contents

  1. Overview
  2. Components
  3. Usage
  4. Features
  5. Contributing

Overview

In contemporary audio processors, parameters play a vital role in adjusting various aspects of the audio signal processing chain. aloe-parameter-component is crafted to facilitate the encapsulation and rendering of parameter components like sliders, toggle buttons, and combo boxes. This modular and scalable crate ensures that the parameters are organized in a user-friendly and visually coherent interface.

Components

  • ParametersPanel: Acts as a container for parameter components, arranged to be easily accessible and manageable.
  • ParameterListener: Observes changes in parameters and propagates updates efficiently to other components.
  • SwitchParameterComponent: Facilitates binary state representation through buttons, ideally suited for toggling settings.
  • BooleanParameterComponent: For parameters that require true/false inputs, utilizing a toggle button interface.
  • SliderParameterComponent: Provides intuitive linear or nonlinear slider input field for continuous parameters.
  • ChoiceParameterComponent: Manages a selection of options through dropdown menus for discrete parameter values.
  • ParameterDisplayComponent: An overarching component to present parameter name, value, and a graphical representation.

Usage

To employ this crate, instantiate any of the provided components and pass your AudioProcessor and associated parameters. Each component comes with methods to initialize, layout, and customize behavior according to your logical requirements.

let mut processor = // your setup;
let parameters = // your parameters;
let mut panel = ParametersPanel::new(&mut processor, &parameters);

Features

  • Dynamic and Responsive UI: Adaptable parameter display options for precise and aesthetic control handling.
  • Concurrent Parameter Listening: Efficient change propagation via the parameter listener design pattern.
  • Customizable: Leverage constructors and setter methods to adapt components to unique needs and stylistic preferences.
  • State Management: Integrates reliably with audio states, enabling seamless end-host interaction.

Contributing

Contributions to the Aloe ecosystem are welcome! Please check the issues and pull requests for any existing work to engage with.


This README.md file was generated by an AI model and may not be 100% accurate; however, it should provide guidance on utilizing the aloe-parameter-component crate effectively.

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

~28–37MB
~609K SLoC