#gui-widgets #widgets #opengl #rust

nightly aloe-ex-gui

A comprehensive GUI crate for Rust featuring OpenGL integration and accessibility support. 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

#60 in #accessibility


Used in 2 crates

GPL-3.0 license

8MB
64K SLoC

Aloe EX-GUI

Aloe EX-GUI is a Rust crate that provides an extensive collection of example components and utilities for building rich, interactive user interfaces, leveraging native accessibility features and OpenGL rendering capabilities. It includes widgets, dialogs, menus, and toolbar implementations alongside OpenGL examples for complex graphic demonstrations.

Overview

Aloe EX-GUI demonstrates a comprehensive suite of components ideal for both application and UI developers looking to extend their GUI functionality and interaction mechanisms in Rust. From simple widgets to complex components, this library facilitates a wide range of UI functionalities utilizing native capabilities and OpenGL rendering.

Key Features

  • Component Demonstrations: Includes numerous pre-built graphical user elements like buttons, sliders, and customizable demos.
  • OpenGL Integration: Offers OpenGL drawable components and shader demonstrations, supporting interactive 2D and 3D graphics.
  • Extensive Accessibility: Implements accessible UI elements with built-in support for screen readers and other accessibility tools.
  • Dynamic Configurations: Customize component appearance and behavior dynamically through LookAndFeel settings.
  • Comprehensive Toolboxes: Provides toolbars, menu, and component overview demonstrations for integrated UI management.

Usage

Add aloe-ex-gui to your Cargo.toml:

[dependencies]
aloe-ex-gui = "0.1.0"

Then, you can start utilizing various components like ToolbarDemoComp, DialogsDemo, and shader utilities within the crate by importing them into your Rust project. Explore the included demos to understand how to effectively leverage graphical capabilities and UI interactions.

Examples

Creating a Custom Toolbar

Include the following code snippet in your Rust application to initialize and customize a toolbar:

use aloe_ex_gui::ToolbarDemoComp;

fn main() {
    let mut toolbar = ToolbarDemoComp::default();
    // Add custom toolbar items
    toolbar.customize_button.on_click(|_| { println!("Custom toolbar item clicked!"); });
}

OpenGL Rendering with Custom Shader

use aloe_ex_gui::{OpenGLAppDemo, OpenGLDemo};

fn setup_opengl_demo() {
    let mut demo = OpenGLAppDemo::default();
    demo.set_shader_program("vertex_shader_code", "fragment_shader_code");
    demo.render();
}

License

This crate is licensed under the GNU General Public License v3.0.

Contribution

We welcome contributions for enhancing Aloe EX-GUI. Feel free to open issues or pull requests on its GitHub repository.


This README.md was generated by an AI model. The content may not be 100% accurate but is expected to be highly helpful.

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

~49MB
~826K SLoC