1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
use crate::{widget::utils::Color, Scalar}; use serde::{Deserialize, Serialize}; #[derive(Debug, Clone, Serialize, Deserialize)] pub enum TextBoxDirection { HorizontalLeftToRight, HorizontalRightToLeft, VerticalTopToBottom, VerticalBottomToTop, } impl Default for TextBoxDirection { fn default() -> Self { Self::HorizontalLeftToRight } } #[derive(Debug, Default, Clone, Serialize, Deserialize)] pub struct TextBoxFont { #[serde(default)] pub name: String, #[serde(default)] pub size: Scalar, #[serde(default)] pub bold: bool, #[serde(default)] pub italic: bool, } #[derive(Debug, Default, Clone, Serialize, Deserialize)] pub struct TextBox { #[serde(default)] pub meta: Option<String>, #[serde(default)] pub text: String, #[serde(default)] pub direction: TextBoxDirection, #[serde(default)] pub font: TextBoxFont, #[serde(default)] pub color: Color, }