egui-charts 0.2.0

High-performance financial charting engine for egui — candlesticks, 95 drawing tools, 130+ indicators, and a full design-token theme system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Actions that can be returned from right toolbar interactions

use super::tabs::RightPanelTab;

/// Actions returned from right toolbar interactions
#[derive(Debug, Clone, PartialEq)]
pub enum RightToolbarAction {
    /// No action taken
    None,
    /// Tab was selected
    SelectTab(RightPanelTab),
    /// Tab was closed
    CloseTab,
    /// Panel width changed
    ResizePanel(f32),
}