use ansi_term::{ unstyled_len, ANSIString, ANSIStrings, Color::{Fixed, RGB}, Style, }; use crate::LinePart; use zellij_tile::prelude::*; use zellij_tile_utils::palette_match; macro_rules! strings { ($ANSIStrings:expr) => {{ let strings: &[ANSIString] = $ANSIStrings; let ansi_strings = ANSIStrings(strings); LinePart { part: format!("{}", ansi_strings), len: unstyled_len(&ansi_strings), } }}; } pub fn mouse_click_to_terminal_full(help: &ModeInfo) -> LinePart { // Tip: SHIFT + bypasses Zellij and sends the mouse click directly to the terminal let green_color = palette_match!(help.style.colors.green); let orange_color = palette_match!(help.style.colors.orange); strings!(&[ Style::new().paint(" Tip: "), Style::new().fg(orange_color).bold().paint("Shift"), Style::new().paint(" + <"), Style::new().fg(green_color).bold().paint("mouse-click"), Style::new().paint("> bypasses Zellij and sends the mouse click directly to the terminal."), ]) } pub fn mouse_click_to_terminal_medium(help: &ModeInfo) -> LinePart { // Tip: SHIFT + sends the click directly to the terminal let green_color = palette_match!(help.style.colors.green); let orange_color = palette_match!(help.style.colors.orange); strings!(&[ Style::new().paint(" Tip: "), Style::new().fg(orange_color).bold().paint("Shift"), Style::new().paint(" + <"), Style::new().fg(green_color).bold().paint("mouse-click"), Style::new().paint("> sends the click directly to the terminal."), ]) } pub fn mouse_click_to_terminal_short(help: &ModeInfo) -> LinePart { // Tip: SHIFT + => sends click to terminal. let green_color = palette_match!(help.style.colors.green); let orange_color = palette_match!(help.style.colors.orange); strings!(&[ Style::new().paint(" Tip: "), Style::new().fg(orange_color).bold().paint("Shift"), Style::new().paint(" + <"), Style::new().fg(green_color).bold().paint("mouse-click"), Style::new().paint("> => sends click to terminal."), ]) }