// This file is part of "haussmann" // Under the MIT License // Copyright (c) 2023 Antonin Hérault use crate::{ graphics::{colours::RGBA, shapes, Shape, Size}, Align, DebugWidget, ToAny, Widget, }; use super::{Button, Label}; /// Tool bar to be commonly displayed at the top of the application. #[derive(Debug)] pub struct ToolBar { /// The text displayed on the tool bar following `self.title_align` /// alignment. pub title: Option