cosmic-terminal/src/main.rs

3616 lines
151 KiB
Rust
Raw Normal View History

2023-12-20 13:31:10 -07:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
2024-03-13 09:12:07 -06:00
use alacritty_terminal::{event::Event as TermEvent, term, term::color::Colors as TermColors, tty};
use cosmic::iced::clipboard::dnd::DndAction;
use cosmic::iced::core::keyboard::key::Named;
use cosmic::widget::menu::action::MenuAction;
use cosmic::widget::menu::key_bind::KeyBind;
2026-01-28 20:08:44 -05:00
use cosmic::widget::pane_grid::Pane;
use cosmic::widget::segmented_button::ReorderEvent;
2023-12-20 13:31:10 -07:00
use cosmic::{
2025-09-10 14:33:46 +02:00
Application, ApplicationExt, Element, action,
app::{Core, Settings, Task, context_drawer},
2024-02-09 15:45:46 -07:00
cosmic_config::{self, ConfigSet, CosmicConfigEntry},
2023-12-20 13:31:10 -07:00
cosmic_theme, executor,
iced::{
2025-10-16 09:27:00 +02:00
self, Alignment, Color, Event, Length, Limits, Padding, Subscription,
2023-12-22 14:31:01 -07:00
advanced::graphics::text::font_system,
2023-12-21 22:13:17 -07:00
clipboard, event,
2023-12-20 13:31:10 -07:00
futures::SinkExt,
keyboard::{Event as KeyEvent, Key, Modifiers},
2024-01-21 21:13:13 +01:00
mouse::{Button as MouseButton, Event as MouseEvent},
2025-09-10 14:33:46 +02:00
stream, window,
2023-12-17 22:51:50 -07:00
},
2023-12-20 13:31:10 -07:00
style,
widget::{self, DndDestination, PaneGrid, about::About, button, pane_grid, segmented_button},
2023-12-17 17:49:39 -07:00
};
2025-09-10 14:33:46 +02:00
use cosmic::{Apply, surface};
use cosmic_files::dialog::{Dialog, DialogKind, DialogMessage, DialogResult, DialogSettings};
2025-09-10 14:33:46 +02:00
use cosmic_text::{Family, Stretch, Weight, fontdb::FaceInfo};
use localize::LANGUAGE_SORTER;
use std::{
any::TypeId,
2026-02-05 11:25:53 -07:00
cell::Cell,
2024-02-12 12:36:30 -07:00
cmp,
collections::{BTreeMap, BTreeSet, HashMap},
env,
error::Error,
2026-02-16 23:32:19 +00:00
fs,
path::PathBuf,
process,
2024-10-22 12:31:02 -06:00
rc::Rc,
2025-09-10 14:33:46 +02:00
sync::{LazyLock, Mutex, atomic::Ordering},
};
2023-12-20 13:31:10 -07:00
use tokio::sync::mpsc;
2024-02-22 11:18:13 -07:00
use config::{
2025-09-10 14:33:46 +02:00
AppTheme, CONFIG_VERSION, ColorScheme, ColorSchemeId, ColorSchemeKind, Config, Profile,
ProfileId,
2024-02-22 11:18:13 -07:00
};
2023-12-22 14:31:01 -07:00
mod config;
2024-01-30 08:59:19 +01:00
mod mouse_reporter;
2023-12-22 14:31:01 -07:00
2024-01-11 13:20:16 -07:00
use icon_cache::IconCache;
mod icon_cache;
use key_bind::key_binds;
2024-01-19 10:45:35 -07:00
mod key_bind;
2025-12-29 20:42:52 -08:00
mod shortcuts;
2023-12-22 14:31:01 -07:00
mod localize;
2024-01-09 10:16:32 -07:00
use menu::menu_bar;
2023-12-22 15:00:50 -07:00
mod menu;
use terminal::{Terminal, TerminalPaneGrid, TerminalScroll};
2023-12-20 13:31:10 -07:00
mod terminal;
2023-12-18 13:54:08 -07:00
2024-01-09 10:16:32 -07:00
use terminal_box::terminal_box;
use crate::dnd::DndDrop;
2025-10-16 09:27:00 +02:00
use crate::menu::MenuState;
2023-12-20 13:31:10 -07:00
mod terminal_box;
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
mod password_manager;
mod terminal_theme;
mod dnd;
use clap_lex::RawArgs;
static ICON_CACHE: LazyLock<Mutex<IconCache>> = LazyLock::new(|| Mutex::new(IconCache::new()));
2024-01-11 13:20:16 -07:00
pub fn icon_cache_get(name: &'static str, size: u16) -> widget::icon::Icon {
let mut icon_cache = ICON_CACHE.lock().unwrap();
icon_cache.get(name, size)
}
2023-12-20 13:31:10 -07:00
/// Runs application with these settings
#[rustfmt::skip]
fn main() -> Result<(), Box<dyn Error>> {
let raw_args = RawArgs::from_args();
let mut cursor = raw_args.cursor();
let mut shell_program_opt = None;
let mut shell_args = Vec::new();
let mut daemonize = true;
2025-12-24 21:07:26 +00:00
let mut working_directory = None;
// Parse the arguments using clap_lex
while let Some(arg) = raw_args.next_os(&mut cursor) {
match arg.to_str() {
Some("--help") | Some("-h") => {
print_help();
return Ok(());
}
Some("--version") | Some("-V") => {
println!(
"cosmic-term {}",
env!("CARGO_PKG_VERSION"),
);
return Ok(());
2025-04-08 17:03:44 +02:00
}
Some(arg_str @ "--working-directory") | Some(arg_str @ "-w") => {
2025-12-24 21:07:26 +00:00
if let Some(dir_arg) = raw_args.next_os(&mut cursor) {
working_directory = Some(PathBuf::from(dir_arg));
} else {
eprintln!("Missing argument for {arg_str}");
2025-12-24 21:07:26 +00:00
process::exit(1);
}
}
Some("--no-daemon") => {
2025-04-08 17:03:44 +02:00
daemonize = false;
}
Some("-e") | Some("--command") | Some("--") => {
// Handle the '--command' or '-e' flag
break;
}
2025-04-08 17:03:44 +02:00
_ => {
//TODO: should this throw an error?
log::warn!("ignored argument {:?}", arg);
}
}
}
// After flags, process remaining shell program and args
while let Some(arg) = raw_args.next_os(&mut cursor) {
if shell_program_opt.is_some() {
shell_args.push(arg.to_string_lossy().to_string());
} else {
shell_program_opt = Some(arg.to_string_lossy().to_string());
}
}
// Platform-specific daemonization logic
2023-12-22 14:31:01 -07:00
#[cfg(all(unix, not(target_os = "redox")))]
if daemonize {
match fork::daemon(true, true) {
Ok(fork::Fork::Child) => (),
Ok(fork::Fork::Parent(_child_pid)) => process::exit(0),
Err(err) => {
eprintln!("failed to daemonize: {:?}", err);
process::exit(1);
}
2023-12-22 14:31:01 -07:00
}
}
localize::localize();
let (config_handler, config) = match cosmic_config::Config::new(App::APP_ID, CONFIG_VERSION) {
Ok(config_handler) => {
let config = match Config::get_entry(&config_handler) {
Ok(ok) => ok,
Err((errs, config)) => {
log::info!("errors loading config: {:?}", errs);
config
}
};
(Some(config_handler), config)
}
Err(err) => {
log::error!("failed to create config handler: {}", err);
(None, Config::default())
}
};
2026-02-05 12:57:56 -07:00
let shortcuts_config = shortcuts::ShortcutsConfig::new(config.shortcuts_custom.clone());
2025-12-29 20:42:52 -08:00
2026-04-10 18:09:25 +02:00
let shell = shell_program_opt.map(|shell_program| tty::Shell::new(shell_program, shell_args));
2025-12-24 21:07:26 +00:00
let startup_options = Some(tty::Options {
shell,
working_directory,
..tty::Options::default()
});
// Terminal config setup
2024-03-13 09:12:07 -06:00
let term_config = term::Config::default();
// Set up environmental variables for terminal
tty::setup_env();
2023-12-21 10:14:57 -07:00
// Override TERM for better compatibility
2025-09-10 14:33:46 +02:00
unsafe {
env::set_var("TERM", "xterm-256color");
}
// Set settings
2023-12-22 14:31:01 -07:00
let mut settings = Settings::default();
settings = settings.theme(config.app_theme.theme());
2024-01-31 10:52:56 -07:00
settings = settings.size_limits(Limits::NONE.min_width(360.0).min_height(180.0));
2023-12-22 14:31:01 -07:00
// Flags
2023-12-22 14:31:01 -07:00
let flags = Flags {
config_handler,
config,
2025-12-29 20:42:52 -08:00
shortcuts_config,
startup_options,
2023-12-22 14:31:01 -07:00
term_config,
};
// Run the cosmic app
2023-12-22 14:31:01 -07:00
cosmic::app::run::<App>(settings, flags)?;
2023-12-20 13:31:10 -07:00
Ok(())
2023-12-17 22:51:50 -07:00
}
fn print_help() {
println!(
r#"COSMIC Terminal
Designed for the COSMIC desktop environment, cosmic-term is a libcosmic-based terminal emulator.
Project home page: https://github.com/pop-os/cosmic-term
Options:
2025-12-24 21:07:26 +00:00
--help Show this message
--version Show the version of cosmic-term
-w, --working-directory <dir> Set the working directory for the terminal"#
);
}
2023-12-22 14:31:01 -07:00
#[derive(Clone, Debug)]
pub struct Flags {
config_handler: Option<cosmic_config::Config>,
config: Config,
2025-12-29 20:42:52 -08:00
shortcuts_config: shortcuts::ShortcutsConfig,
startup_options: Option<tty::Options>,
2024-03-13 09:12:07 -06:00
term_config: term::Config,
2023-12-22 14:31:01 -07:00
}
2024-01-19 11:03:14 -07:00
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
2023-12-22 15:00:50 -07:00
pub enum Action {
2024-02-27 21:20:00 -07:00
About,
2024-09-15 23:53:13 +02:00
ClearScrollback,
2024-02-22 11:18:13 -07:00
ColorSchemes(ColorSchemeKind),
2023-12-22 15:00:50 -07:00
Copy,
2026-02-15 10:23:49 +01:00
CopyUrlByMenu,
2024-05-03 14:37:01 -07:00
CopyOrSigint,
2024-01-21 21:13:13 +01:00
CopyPrimary,
2024-01-19 10:45:35 -07:00
Find,
2026-02-05 11:31:05 -07:00
KeyboardShortcuts,
2025-10-16 09:27:00 +02:00
LaunchUrlByMenu,
2024-01-19 10:45:35 -07:00
PaneFocusDown,
PaneFocusLeft,
PaneFocusRight,
PaneFocusUp,
PaneSplitHorizontal,
PaneSplitVertical,
PaneToggleMaximized,
2023-12-22 15:00:50 -07:00
Paste,
PastePrimary,
2024-02-09 15:45:46 -07:00
ProfileOpen(ProfileId),
Profiles,
2023-12-22 15:00:50 -07:00
SelectAll,
2023-12-22 15:16:40 -07:00
Settings,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
PasswordManager,
2023-12-22 15:40:10 -07:00
ShowHeaderBar(bool),
2024-01-19 10:45:35 -07:00
TabActivate0,
TabActivate1,
TabActivate2,
TabActivate3,
TabActivate4,
TabActivate5,
TabActivate6,
TabActivate7,
TabActivate8,
TabClose,
2023-12-22 15:16:40 -07:00
TabNew,
TabNewNoProfile,
2024-01-19 10:45:35 -07:00
TabNext,
TabPrev,
2025-06-19 06:38:57 +02:00
ToggleFullscreen,
2024-01-19 11:03:14 -07:00
WindowClose,
WindowNew,
2024-01-19 10:45:35 -07:00
ZoomIn,
ZoomOut,
ZoomReset,
2023-12-22 15:00:50 -07:00
}
2024-05-20 14:12:21 -06:00
impl Action {
fn message(&self, entity_opt: Option<segmented_button::Entity>) -> Message {
2023-12-22 15:00:50 -07:00
match self {
Self::About => Message::ToggleContextPage(ContextPage::About),
2024-09-15 23:53:13 +02:00
Self::ClearScrollback => Message::ClearScrollback(entity_opt),
Self::ColorSchemes(color_scheme_kind) => {
Message::ToggleContextPage(ContextPage::ColorSchemes(*color_scheme_kind))
2024-02-22 11:18:13 -07:00
}
Self::Copy => Message::Copy(entity_opt),
2026-02-15 10:23:49 +01:00
Self::CopyUrlByMenu => Message::CopyUrlByMenu,
2024-05-03 14:37:01 -07:00
Self::CopyOrSigint => Message::CopyOrSigint(entity_opt),
Self::CopyPrimary => Message::CopyPrimary(entity_opt),
Self::Find => Message::Find(true),
2026-02-05 11:31:05 -07:00
Self::KeyboardShortcuts => Message::ToggleContextPage(ContextPage::KeyboardShortcuts),
2025-10-16 09:27:00 +02:00
Self::LaunchUrlByMenu => Message::LaunchUrlByMenu,
Self::PaneFocusDown => Message::PaneFocusAdjacent(pane_grid::Direction::Down),
Self::PaneFocusLeft => Message::PaneFocusAdjacent(pane_grid::Direction::Left),
Self::PaneFocusRight => Message::PaneFocusAdjacent(pane_grid::Direction::Right),
Self::PaneFocusUp => Message::PaneFocusAdjacent(pane_grid::Direction::Up),
Self::PaneSplitHorizontal => Message::PaneSplit(pane_grid::Axis::Horizontal),
Self::PaneSplitVertical => Message::PaneSplit(pane_grid::Axis::Vertical),
Self::PaneToggleMaximized => Message::PaneToggleMaximized,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
Self::PasswordManager => Message::ToggleContextPage(ContextPage::PasswordManager),
Self::Paste => Message::Paste(entity_opt),
Self::PastePrimary => Message::PastePrimary(entity_opt),
Self::ProfileOpen(profile_id) => Message::ProfileOpen(*profile_id),
Self::Profiles => Message::ToggleContextPage(ContextPage::Profiles),
Self::SelectAll => Message::SelectAll(entity_opt),
Self::Settings => Message::ToggleContextPage(ContextPage::Settings),
Self::ShowHeaderBar(show_headerbar) => Message::ShowHeaderBar(*show_headerbar),
Self::TabActivate0 => Message::TabActivateJump(0),
Self::TabActivate1 => Message::TabActivateJump(1),
Self::TabActivate2 => Message::TabActivateJump(2),
Self::TabActivate3 => Message::TabActivateJump(3),
Self::TabActivate4 => Message::TabActivateJump(4),
Self::TabActivate5 => Message::TabActivateJump(5),
Self::TabActivate6 => Message::TabActivateJump(6),
Self::TabActivate7 => Message::TabActivateJump(7),
Self::TabActivate8 => Message::TabActivateJump(8),
Self::TabClose => Message::TabClose(entity_opt),
Self::TabNew => Message::TabNew,
Self::TabNewNoProfile => Message::TabNewNoProfile,
Self::TabNext => Message::TabNext,
Self::TabPrev => Message::TabPrev,
2025-06-19 06:38:57 +02:00
Self::ToggleFullscreen => Message::ToggleFullscreen,
Self::WindowClose => Message::WindowClose,
Self::WindowNew => Message::WindowNew,
Self::ZoomIn => Message::ZoomIn,
Self::ZoomOut => Message::ZoomOut,
Self::ZoomReset => Message::ZoomReset,
2023-12-22 15:00:50 -07:00
}
}
}
2024-05-20 14:12:21 -06:00
impl MenuAction for Action {
type Message = Message;
fn message(&self) -> Message {
self.message(None)
}
}
2023-12-20 13:31:10 -07:00
/// Messages that are used specifically by our [`App`].
#[derive(Clone, Debug)]
pub enum Message {
2023-12-22 14:31:01 -07:00
AppTheme(AppTheme),
2024-09-15 23:53:13 +02:00
ClearScrollback(Option<segmented_button::Entity>),
2024-02-22 11:18:13 -07:00
ColorSchemeCollapse,
ColorSchemeDelete(ColorSchemeKind, ColorSchemeId),
ColorSchemeExpand(ColorSchemeKind, Option<ColorSchemeId>),
ColorSchemeExport(ColorSchemeKind, Option<ColorSchemeId>),
ColorSchemeExportResult(ColorSchemeKind, Option<ColorSchemeId>, DialogResult),
2024-02-22 11:18:13 -07:00
ColorSchemeImport(ColorSchemeKind),
ColorSchemeImportResult(ColorSchemeKind, DialogResult),
2024-02-28 09:15:58 -07:00
ColorSchemeRename(ColorSchemeKind, ColorSchemeId, String),
ColorSchemeRenameSubmit,
2024-02-22 11:18:13 -07:00
ColorSchemeTabActivate(widget::segmented_button::Entity),
Config(Box<Config>),
2023-12-22 15:00:50 -07:00
Copy(Option<segmented_button::Entity>),
2024-05-03 14:37:01 -07:00
CopyOrSigint(Option<segmented_button::Entity>),
2024-01-21 21:13:13 +01:00
CopyPrimary(Option<segmented_button::Entity>),
2026-02-15 10:23:49 +01:00
CopyUrlByMenu,
2024-02-28 09:15:58 -07:00
DefaultBoldFontWeight(usize),
DefaultDimFontWeight(usize),
2023-12-22 14:31:01 -07:00
DefaultFont(usize),
DefaultFontSize(usize),
DefaultFontStretch(usize),
DefaultFontWeight(usize),
DefaultZoomStep(usize),
DialogMessage(Box<DialogMessage>), // DialogMessage is huge, so we use a box to make the size of this enum smaller on the stack
Drop(Option<(pane_grid::Pane, segmented_button::Entity, DndDrop)>),
2024-01-11 13:20:16 -07:00
Find(bool),
FindNext,
FindPrevious,
FindSearchValueChanged(String),
2024-01-21 21:13:13 +01:00
MiddleClick(pane_grid::Pane, Option<segmented_button::Entity>),
2024-02-28 09:15:58 -07:00
FocusFollowMouse(bool),
Key(Modifiers, Key),
LaunchUrl(String),
2025-10-16 09:27:00 +02:00
LaunchUrlByMenu,
2024-01-11 13:20:16 -07:00
Modifiers(Modifiers),
2025-12-29 20:42:52 -08:00
ShortcutCaptureCancel,
ShortcutCaptureStart(shortcuts::KeyBindAction),
ShortcutConflictCancel,
ShortcutConflictReplace,
2025-12-29 20:42:52 -08:00
ShortcutRemove(shortcuts::Binding, shortcuts::BindingSource),
2026-02-05 12:57:56 -07:00
ShortcutReset(shortcuts::KeyBindAction),
2026-02-05 11:25:53 -07:00
ShortcutSearch(String),
2024-01-22 16:35:23 +01:00
MouseEnter(pane_grid::Pane),
2024-02-12 12:36:30 -07:00
Opacity(u8),
2024-02-28 09:15:58 -07:00
PaneClicked(pane_grid::Pane),
PaneDragged(pane_grid::DragEvent),
PaneFocusAdjacent(pane_grid::Direction),
PaneResized(pane_grid::ResizeEvent),
PaneSplit(pane_grid::Axis),
PaneToggleMaximized,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
PasswordManager(password_manager::PasswordManagerMessage),
#[cfg(feature = "password_manager")]
PasswordPaste(secstr::SecUtf8, pane_grid::Pane),
2023-12-22 15:00:50 -07:00
Paste(Option<segmented_button::Entity>),
2024-01-20 14:13:04 +01:00
PastePrimary(Option<segmented_button::Entity>),
2023-12-22 15:00:50 -07:00
PasteValue(Option<segmented_button::Entity>, String),
2024-02-09 15:45:46 -07:00
ProfileCollapse(ProfileId),
ProfileCommand(ProfileId, String),
2024-04-14 21:17:32 +02:00
ProfileDirectory(ProfileId, String),
2024-02-09 15:45:46 -07:00
ProfileExpand(ProfileId),
2024-04-14 21:17:32 +02:00
ProfileHold(ProfileId, bool),
2024-02-09 15:45:46 -07:00
ProfileName(ProfileId, String),
ProfileNew,
ProfileOpen(ProfileId),
ProfileRemove(ProfileId),
2024-02-22 11:18:13 -07:00
ProfileSyntaxTheme(ProfileId, ColorSchemeKind, usize),
2024-02-09 15:45:46 -07:00
ProfileTabTitle(ProfileId, String),
2026-01-28 20:08:44 -05:00
ReorderTab(Pane, ReorderEvent),
2025-03-19 12:27:00 -04:00
Surface(surface::Action),
2023-12-22 15:00:50 -07:00
SelectAll(Option<segmented_button::Entity>),
2024-02-28 09:15:58 -07:00
ShowAdvancedFontSettings(bool),
2023-12-22 15:40:10 -07:00
ShowHeaderBar(bool),
2024-02-22 11:18:13 -07:00
SyntaxTheme(ColorSchemeKind, usize),
SystemThemeChange,
2023-12-20 13:31:10 -07:00
TabActivate(segmented_button::Entity),
TabActivateJump(usize),
2024-01-09 10:16:32 -07:00
TabClose(Option<segmented_button::Entity>),
2023-12-22 15:00:50 -07:00
TabContextAction(segmented_button::Entity, Action),
TabContextMenu(pane_grid::Pane, Option<MenuState>),
2023-12-20 13:31:10 -07:00
TabNew,
TabNewNoProfile,
TabNext,
2024-02-28 09:15:58 -07:00
TabPrev,
TermEvent(pane_grid::Pane, segmented_button::Entity, TermEvent),
TermEventTx(mpsc::UnboundedSender<(pane_grid::Pane, segmented_button::Entity, TermEvent)>),
2025-06-19 06:38:57 +02:00
ToggleFullscreen,
2023-12-22 14:31:01 -07:00
ToggleContextPage(ContextPage),
2024-02-28 09:15:58 -07:00
UpdateDefaultProfile((bool, ProfileId)),
UseBrightBold(bool),
2024-01-09 10:16:32 -07:00
WindowClose,
WindowNew,
WindowFocused,
WindowUnfocused,
2024-01-09 10:16:32 -07:00
ZoomIn,
ZoomOut,
ZoomReset,
ContextMenuPopupClosed(window::Id),
2023-12-22 14:31:01 -07:00
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ContextPage {
2024-02-27 21:20:00 -07:00
About,
2024-02-22 11:18:13 -07:00
ColorSchemes(ColorSchemeKind),
KeyboardShortcuts,
2024-02-09 15:45:46 -07:00
Profiles,
2023-12-22 14:31:01 -07:00
Settings,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
PasswordManager,
2023-12-22 14:31:01 -07:00
}
#[derive(Clone, Debug)]
struct ShortcutConflict {
binding: shortcuts::Binding,
existing_action: shortcuts::KeyBindAction,
new_action: shortcuts::KeyBindAction,
}
2023-12-20 13:31:10 -07:00
/// The [`App`] stores application-specific state.
pub struct App {
core: Core,
about: About,
pane_model: TerminalPaneGrid,
2023-12-22 14:31:01 -07:00
config_handler: Option<cosmic_config::Config>,
config: Config,
2025-12-29 20:42:52 -08:00
shortcuts_config: shortcuts::ShortcutsConfig,
2024-01-19 10:45:35 -07:00
key_binds: HashMap<KeyBind, Action>,
2023-12-22 14:31:01 -07:00
app_themes: Vec<String>,
font_names: Vec<String>,
font_size_names: Vec<String>,
font_sizes: Vec<u16>,
font_name_faces_map: BTreeMap<String, Vec<FaceInfo>>,
all_font_weights_vals_names_map: BTreeMap<u16, String>,
all_font_stretches_vals_names_map: BTreeMap<Stretch, String>,
curr_font_weight_names: Vec<String>,
curr_font_weights: Vec<u16>,
curr_font_stretch_names: Vec<String>,
curr_font_stretches: Vec<Stretch>,
zoom_step_names: Vec<String>,
zoom_steps: Vec<u16>,
2024-02-22 11:18:13 -07:00
theme_names_dark: Vec<String>,
theme_names_light: Vec<String>,
themes: HashMap<(String, ColorSchemeKind), TermColors>,
2023-12-22 14:31:01 -07:00
context_page: ContextPage,
dialog_opt: Option<Dialog<Message>>,
terminal_ids: HashMap<pane_grid::Pane, widget::Id>,
2024-01-11 13:20:16 -07:00
find: bool,
find_search_id: widget::Id,
find_search_value: String,
term_event_tx_opt:
Option<mpsc::UnboundedSender<(pane_grid::Pane, segmented_button::Entity, TermEvent)>>,
startup_options: Option<tty::Options>,
2024-03-13 09:12:07 -06:00
term_config: term::Config,
color_scheme_errors: Vec<String>,
color_scheme_expanded: Option<(ColorSchemeKind, Option<ColorSchemeId>)>,
2024-02-22 11:18:13 -07:00
color_scheme_renaming: Option<(ColorSchemeKind, ColorSchemeId, String)>,
color_scheme_rename_id: widget::Id,
2024-02-22 11:18:13 -07:00
color_scheme_tab_model: widget::segmented_button::SingleSelectModel,
2024-02-09 15:45:46 -07:00
profile_expanded: Option<ProfileId>,
show_advanced_font_settings: bool,
2025-12-29 20:42:52 -08:00
shortcut_capture: Option<shortcuts::KeyBindAction>,
shortcut_conflict: Option<ShortcutConflict>,
shortcut_conflict_overlay_restore: Option<bool>,
2026-02-05 11:25:53 -07:00
shortcut_search_focus: Cell<bool>,
shortcut_search_id: widget::Id,
shortcut_search_regex: Option<regex::Regex>,
shortcut_search_value: String,
2024-01-11 13:20:16 -07:00
modifiers: Modifiers,
2026-03-24 11:20:59 -06:00
context_menu_popup: Option<(
window::Id,
pane_grid::Pane,
segmented_button::Entity,
Option<String>,
widget::Id,
cosmic::iced::Point,
2026-03-24 11:20:59 -06:00
)>,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
password_mgr: password_manager::PasswordManager,
2023-12-20 13:31:10 -07:00
}
2023-12-22 14:31:01 -07:00
impl App {
2024-02-22 11:18:13 -07:00
fn theme_names(&self, color_scheme_kind: ColorSchemeKind) -> &Vec<String> {
match color_scheme_kind {
ColorSchemeKind::Dark => &self.theme_names_dark,
ColorSchemeKind::Light => &self.theme_names_light,
}
}
fn update_color_schemes(&mut self) {
self.themes = terminal_theme::terminal_themes();
2024-02-22 11:18:13 -07:00
for &color_scheme_kind in &[ColorSchemeKind::Dark, ColorSchemeKind::Light] {
for (color_scheme_name, color_scheme_id) in
self.config.color_scheme_names(color_scheme_kind)
{
if let Some(color_scheme) = self
.config
.color_schemes(color_scheme_kind)
.get(&color_scheme_id)
2026-04-10 18:09:25 +02:00
&& self
2024-02-22 11:18:13 -07:00
.themes
.insert(
(color_scheme_name.clone(), color_scheme_kind),
color_scheme.into(),
)
.is_some()
{
log::warn!(
"custom {:?} color scheme {:?} replaces builtin one",
color_scheme_kind,
color_scheme_name
);
}
}
}
2024-02-22 11:18:13 -07:00
self.theme_names_dark.clear();
self.theme_names_light.clear();
for (name, color_scheme_kind) in self.themes.keys() {
match *color_scheme_kind {
ColorSchemeKind::Dark => {
self.theme_names_dark.push(name.clone());
}
ColorSchemeKind::Light => {
self.theme_names_light.push(name.clone());
}
}
}
2024-02-22 11:18:13 -07:00
self.theme_names_dark
.sort_by(|a, b| LANGUAGE_SORTER.compare(a, b));
2024-02-22 11:18:13 -07:00
self.theme_names_light
.sort_by(|a, b| LANGUAGE_SORTER.compare(a, b));
}
fn reset_terminal_panes_zoom(&mut self) {
for (_pane, tab_model) in self.pane_model.panes.iter() {
for entity in tab_model.iter() {
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.set_zoom_adj(0);
}
}
}
}
2025-12-29 20:42:52 -08:00
fn save_shortcuts_custom(&mut self) {
2026-01-29 20:10:25 -08:00
self.config.shortcuts_custom = self.shortcuts_config.custom.clone();
match &self.config_handler {
2025-12-29 20:42:52 -08:00
Some(config_handler) => {
if let Err(err) =
config_handler.set("shortcuts_custom", &self.config.shortcuts_custom)
{
2025-12-29 20:42:52 -08:00
log::warn!("failed to save shortcuts custom config: {}", err);
}
}
None => {
log::warn!("failed to save shortcuts custom config: no config handler");
}
}
self.key_binds = key_binds(&self.shortcuts_config);
}
fn apply_shortcut_binding(
&mut self,
binding: shortcuts::Binding,
action: shortcuts::KeyBindAction,
) {
self.shortcuts_config.custom.0.insert(binding, action);
self.save_shortcuts_custom();
}
fn set_context_overlay(&mut self, overlay: bool) {
if self.core.window.context_is_overlay != overlay {
self.core.window.context_is_overlay = overlay;
self.core.set_show_context(self.core.window.show_context);
}
}
fn begin_shortcut_conflict(&mut self, conflict: ShortcutConflict) {
if self.shortcut_conflict.is_none() {
self.shortcut_conflict_overlay_restore = Some(self.core.window.context_is_overlay);
self.set_context_overlay(false);
}
self.shortcut_conflict = Some(conflict);
}
fn clear_shortcut_conflict(&mut self) {
self.shortcut_conflict = None;
if let Some(overlay) = self.shortcut_conflict_overlay_restore.take() {
self.set_context_overlay(overlay);
}
}
2026-02-05 11:25:53 -07:00
fn shortcut_page_toggle(&mut self) {
self.shortcut_capture = None;
self.clear_shortcut_conflict();
self.shortcut_search_focus
.set(self.core.window.show_context);
self.shortcut_search_regex = None;
self.shortcut_search_value.clear();
}
2024-10-22 12:31:02 -06:00
fn update_config(&mut self) -> Task<Message> {
let theme = self.config.app_theme.theme();
// Update color schemes
self.update_color_schemes();
// Update terminal window background color
{
let color = Color::from(theme.cosmic().background.base);
let bytes = color.into_rgba8();
let data = u32::from(bytes[2])
| (u32::from(bytes[1]) << 8)
| (u32::from(bytes[0]) << 16)
| 0xFF000000;
terminal::WINDOW_BG_COLOR.store(data, Ordering::SeqCst);
}
// Set config of all tabs
for (_pane, tab_model) in self.pane_model.panes.iter() {
for entity in tab_model.iter() {
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.set_config(&self.config, &self.themes);
}
2023-12-22 14:31:01 -07:00
}
}
2023-12-22 15:40:10 -07:00
// Set headerbar state
2023-12-22 15:40:10 -07:00
self.core.window.show_headerbar = self.config.show_headerbar;
// Update application theme
2025-03-19 12:27:00 -04:00
cosmic::command::set_theme(theme)
2023-12-22 14:31:01 -07:00
}
2024-10-22 12:31:02 -06:00
fn update_render_active_pane_zoom(&mut self, zoom_message: Message) -> Task<Message> {
// skip writing config to fs when zoom in/ out
// recalculate the pane due to the changes of zoom_adj value
// but only for the active pane/tab
if let Some(tab_model) = self.pane_model.active() {
for entity in tab_model.iter() {
2026-04-10 18:09:25 +02:00
if tab_model.is_active(entity)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let mut terminal = terminal.lock().unwrap();
let current_zoom_adj = terminal.zoom_adj();
match zoom_message {
Message::ZoomIn => {
terminal.set_zoom_adj(current_zoom_adj.saturating_add(1))
}
Message::ZoomOut => {
terminal.set_zoom_adj(current_zoom_adj.saturating_sub(1))
}
_ => {}
}
terminal.set_config(&self.config, &self.themes);
}
}
}
2024-10-22 12:31:02 -06:00
Task::none()
}
2024-10-22 12:31:02 -06:00
fn save_color_schemes(&mut self, color_scheme_kind: ColorSchemeKind) -> Task<Message> {
// Optimized for just saving color_schemes
2026-04-10 18:09:25 +02:00
if let Some(ref config_handler) = self.config_handler
&& let Err(err) = config_handler.set(
2024-02-22 11:18:13 -07:00
match color_scheme_kind {
ColorSchemeKind::Dark => "color_schemes_dark",
ColorSchemeKind::Light => "color_schemes_light",
},
self.config.color_schemes(color_scheme_kind),
)
{
log::error!("failed to save config: {}", err);
}
self.update_color_schemes();
2024-10-22 12:31:02 -06:00
Task::none()
}
2024-10-22 12:31:02 -06:00
fn save_profiles(&mut self) -> Task<Message> {
2024-02-09 15:45:46 -07:00
// Optimized for just saving profiles
if let Some(ref config_handler) = self.config_handler {
match config_handler.set("profiles", &self.config.profiles) {
Ok(()) => {}
Err(err) => {
log::error!("failed to save config: {}", err);
}
}
}
2024-10-22 12:31:02 -06:00
Task::none()
2024-02-09 15:45:46 -07:00
}
2024-10-22 12:31:02 -06:00
fn update_focus(&self) -> Task<Message> {
if self.find {
2024-01-11 13:20:16 -07:00
widget::text_input::focus(self.find_search_id.clone())
} else if self.core.window.show_context {
// Right now we only care about the KeyboardShortcuts context page, so we use a simple if.
// In the future if we are to care about other conext pages, we could switch this to a match
// statement instead to be cleaner.
if self.context_page == ContextPage::KeyboardShortcuts
&& self.shortcut_search_focus.get()
{
self.shortcut_search_focus.set(false);
return widget::text_input::focus(self.shortcut_search_id.clone());
2026-02-05 11:25:53 -07:00
}
Task::none()
} else if let Some(terminal_id) = self.terminal_ids.get(&self.pane_model.focused()).cloned()
{
widget::text_input::focus(terminal_id)
2024-01-11 13:20:16 -07:00
} else {
2024-10-22 12:31:02 -06:00
Task::none()
2024-01-11 13:20:16 -07:00
}
}
// Call this any time the tab changes
2024-10-22 12:31:02 -06:00
fn update_title(&mut self, pane: Option<pane_grid::Pane>) -> Task<Message> {
let pane = pane.unwrap_or(self.pane_model.focused());
if let Some(tab_model) = self.pane_model.panes.get(pane) {
let (header_title, window_title) = match tab_model.text(tab_model.active()) {
Some(tab_title) => (
tab_title.to_string(),
2024-02-27 21:20:00 -07:00
format!("{tab_title}{}", fl!("cosmic-terminal")),
),
2024-02-27 21:20:00 -07:00
None => (String::new(), fl!("cosmic-terminal")),
};
self.set_header_title(header_title);
2024-10-22 12:31:02 -06:00
Task::batch([
if let Some(window_id) = self.core.main_window_id() {
self.set_window_title(window_title, window_id)
} else {
Task::none()
},
self.update_focus(),
])
} else {
log::error!("Failed to get the specific pane");
2024-10-22 12:31:02 -06:00
Task::batch([
if let Some(window_id) = self.core.main_window_id() {
self.set_window_title(fl!("cosmic-terminal"), window_id)
} else {
Task::none()
},
self.update_focus(),
])
}
2023-12-22 14:31:01 -07:00
}
fn set_curr_font_weights_and_stretches(&mut self) {
// check if config font_name is available first, if not, set it to first name in list
if !self.font_names.contains(&self.config.font_name) {
log::error!("'{}' is not in the font list", self.config.font_name);
log::error!("setting font name to '{}'", self.font_names[0]);
let _ = self.update(Message::DefaultFont(0));
}
let curr_font_faces = &self.font_name_faces_map[&self.config.font_name];
self.curr_font_stretches = curr_font_faces
.iter()
.map(|face| face.stretch)
.collect::<BTreeSet<_>>() // remove duplicates and sort
.into_iter()
.collect();
self.curr_font_stretch_names = self
.curr_font_stretches
.iter()
.map(|stretch| &self.all_font_stretches_vals_names_map[stretch])
.cloned()
.collect::<Vec<_>>();
if !self
.curr_font_stretches
.contains(&self.config.typed_font_stretch())
{
self.config.font_stretch = Stretch::Normal.to_number();
}
let curr_weights = |conf_stretch| {
curr_font_faces
.iter()
.filter(|face| face.stretch == conf_stretch)
.map(|face| face.weight.0)
.collect::<BTreeSet<_>>() // remove duplicates and sort
.into_iter()
.collect()
};
self.curr_font_weights = curr_weights(self.config.typed_font_stretch());
if self.curr_font_weights.is_empty() {
// stretch fallback
self.config.font_stretch = Stretch::Normal.to_number();
}
self.curr_font_weights = curr_weights(self.config.typed_font_stretch());
assert!(!self.curr_font_weights.is_empty());
self.curr_font_weight_names = self
.curr_font_weights
.iter()
.map(|weight| &self.all_font_weights_vals_names_map[weight])
.cloned()
.collect::<Vec<_>>();
if !self.curr_font_weights.contains(&self.config.font_weight) {
self.config.font_weight = Weight::NORMAL.0;
}
if !self
.curr_font_weights
.contains(&self.config.dim_font_weight)
{
self.config.dim_font_weight = Weight::NORMAL.0;
}
if !self
.curr_font_weights
.contains(&self.config.bold_font_weight)
{
self.config.bold_font_weight = Weight::BOLD.0;
}
}
2025-09-10 14:33:46 +02:00
fn color_schemes(&self, color_scheme_kind: ColorSchemeKind) -> Element<'_, Message> {
let cosmic_theme::Spacing { space_xxxs, .. } = self.core().system_theme().cosmic().spacing;
2024-02-22 11:18:13 -07:00
let mut sections = Vec::with_capacity(3 + self.color_scheme_errors.len());
2024-02-22 11:18:13 -07:00
sections.push(
2024-02-26 15:19:54 -07:00
widget::tab_bar::horizontal(&self.color_scheme_tab_model)
2024-02-22 11:18:13 -07:00
.on_activate(Message::ColorSchemeTabActivate)
.into(),
);
2024-10-22 12:31:02 -06:00
let mut section = widget::settings::section();
let builtin_name = format!("COSMIC {:?}", color_scheme_kind);
let color_scheme_names = self.config.color_scheme_names(color_scheme_kind);
for (color_scheme_name, color_scheme_id_opt) in std::iter::once((builtin_name, None)).chain(
color_scheme_names
.into_iter()
.map(|(name, id)| (name, Some(id))),
) {
let expanded =
self.color_scheme_expanded == Some((color_scheme_kind, color_scheme_id_opt));
let renaming = match &self.color_scheme_renaming {
Some((kind, id, value))
if kind == &color_scheme_kind && Some(id) == color_scheme_id_opt.as_ref() =>
{
Some(value)
2024-02-27 10:33:24 -07:00
}
_ => None,
};
let button = if expanded {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("view-more-symbolic", 16))
.on_press(Message::ColorSchemeCollapse)
} else {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("view-more-symbolic", 16)).on_press(
Message::ColorSchemeExpand(color_scheme_kind, color_scheme_id_opt),
)
}
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon);
let mut popover = widget::popover(button);
if expanded {
let menu = menu::color_scheme_menu(
color_scheme_kind,
color_scheme_id_opt,
&color_scheme_name,
);
popover = popover
.popup(menu)
.position(widget::popover::Position::Bottom);
}
let item = match renaming {
Some(value) => widget::settings::item_row(vec![
widget::text_input("", value)
.id(self.color_scheme_rename_id.clone())
.on_input(move |value| {
Message::ColorSchemeRename(
color_scheme_kind,
color_scheme_id_opt.expect("trying to rename builtin color scheme"),
value,
)
})
2025-03-19 12:27:00 -04:00
.on_submit(|_| Message::ColorSchemeRenameSubmit)
.into(),
popover.into(),
]),
None => widget::settings::item::builder(color_scheme_name).control(popover),
};
section = section.add(item);
}
sections.push(section.into());
sections.push(
widget::row::with_children(vec![
2026-03-18 12:21:57 -04:00
widget::space::horizontal().into(),
widget::button::standard(fl!("import"))
2024-02-22 11:18:13 -07:00
.on_press(Message::ColorSchemeImport(color_scheme_kind))
.into(),
])
.into(),
);
for error in &self.color_scheme_errors {
sections.push(
widget::row::with_children(vec![
icon_cache_get("dialog-error-symbolic", 16)
2024-10-22 12:31:02 -06:00
.class(style::Svg::Custom(Rc::new(|theme| {
let cosmic = theme.cosmic();
2024-10-22 12:31:02 -06:00
widget::svg::Style {
color: Some(cosmic.destructive_text_color().into()),
}
2024-10-22 12:31:02 -06:00
})))
.into(),
2024-10-22 12:31:02 -06:00
widget::text::body(error)
.class(style::Text::Custom(|theme| {
let cosmic = theme.cosmic();
//TODO: re-export in libcosmic
2024-10-22 12:31:02 -06:00
iced::widget::text::Style {
color: Some(cosmic.destructive_text_color().into()),
}
}))
.into(),
])
.spacing(space_xxxs)
.into(),
);
}
widget::settings::view_column(sections).into()
}
fn keyboard_shortcuts(&self) -> Element<'_, Message> {
let cosmic_theme::Spacing {
space_xxs,
space_s,
space_m,
space_l,
space_xl,
..
} = self.core().system_theme().cosmic().spacing;
let pad_action = [space_xxs, space_m];
let div_action = space_s;
let pad_binding = [space_xxs, space_xl];
let div_binding = space_l;
let mut groups = Vec::new();
2026-02-05 11:25:53 -07:00
//TODO: fix text input focus going outside bounds
2026-03-18 12:21:57 -04:00
groups.push(widget::space::horizontal().into());
2026-02-05 11:25:53 -07:00
groups.push(
widget::text_input::search_input(fl!("type-to-search"), &self.shortcut_search_value)
.id(self.shortcut_search_id.clone())
.on_input(Message::ShortcutSearch)
.into(),
);
for group in shortcuts::shortcut_groups() {
let mut list = widget::list::list_column();
2026-02-05 11:25:53 -07:00
let mut found_actions = false;
for action in group.actions {
2026-02-05 11:25:53 -07:00
let action_label = shortcuts::action_label(action);
2026-04-10 18:09:25 +02:00
if let Some(regex) = &self.shortcut_search_regex
&& regex.find(&action_label).is_none()
{
continue;
}
2026-02-05 11:25:53 -07:00
found_actions = true;
2026-02-05 12:57:56 -07:00
let (bindings, changed) = self.shortcuts_config.bindings_for_action(action);
2026-02-05 12:57:56 -07:00
let mut buttons = widget::row::with_capacity(2);
if changed {
buttons = buttons.push(widget::tooltip(
widget::button::custom(icon_cache_get("edit-undo-symbolic", 16))
.class(style::Button::Icon)
2026-02-05 12:57:56 -07:00
.on_press(Message::ShortcutReset(action)),
widget::text::body(fl!("reset-to-default")),
widget::tooltip::Position::Top,
));
}
buttons = buttons.push(widget::tooltip(
widget::button::custom(icon_cache_get("list-add-symbolic", 16))
.class(style::Button::Icon)
.on_press(Message::ShortcutCaptureStart(action)),
widget::text::body(fl!("add-another-keybinding")),
widget::tooltip::Position::Top,
));
list = list.list_item_padding(pad_action);
list = list.divider_padding(div_action);
list = list.add(widget::settings::item_row(vec![
widget::text::heading(action_label)
.width(Length::Fill)
.into(),
buttons.into(),
]));
if bindings.is_empty() {
list = list.list_item_padding(pad_binding);
list = list.add(widget::text::body(fl!("no-shortcuts")));
list = list.divider_padding(div_binding);
} else {
for resolved in bindings {
list = list.list_item_padding(pad_binding);
list = list.add(
widget::settings::item::builder(shortcuts::binding_display(
&resolved.binding,
))
.control(
widget::button::custom(icon_cache_get("edit-delete-symbolic", 16))
.class(style::Button::Icon)
.on_press(Message::ShortcutRemove(
resolved.binding.clone(),
resolved.source,
)),
),
);
list = list.divider_padding(div_binding);
}
}
if self.shortcut_capture == Some(action) {
list = list.list_item_padding(pad_binding);
list = list.add(
2026-02-05 13:36:38 -07:00
widget::settings::item_row(vec![
widget::text::body(fl!("shortcut-capture-hint"))
.width(Length::Fill)
.into(),
widget::button::text(fl!("cancel"))
.on_press(Message::ShortcutCaptureCancel)
.into(),
])
.spacing(space_xxs),
);
list = list.divider_padding(div_binding);
}
}
2026-02-05 11:25:53 -07:00
if found_actions {
groups.push(
widget::settings::section::with_column(list)
.title(group.title)
.into(),
);
}
}
2026-02-05 11:25:53 -07:00
widget::settings::view_column(groups).into()
}
2025-09-10 14:33:46 +02:00
fn profiles(&self) -> Element<'_, Message> {
2024-02-09 15:45:46 -07:00
let cosmic_theme::Spacing {
space_s,
space_xs,
space_xxs,
space_xxxs,
..
} = self.core().system_theme().cosmic().spacing;
let mut sections = Vec::with_capacity(2);
if !self.config.profiles.is_empty() {
2024-10-22 12:31:02 -06:00
let mut profiles_section = widget::settings::section();
2024-02-09 15:45:46 -07:00
for (profile_name, profile_id) in self.config.profile_names() {
let Some(profile) = self.config.profiles.get(&profile_id) else {
continue;
2024-02-09 15:45:46 -07:00
};
let expanded = self.profile_expanded == Some(profile_id);
profiles_section = profiles_section.add(
widget::settings::item::builder(profile_name).control(
widget::row::with_children(vec![
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("edit-delete-symbolic", 16))
2024-02-09 15:45:46 -07:00
.on_press(Message::ProfileRemove(profile_id))
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon)
2024-02-09 15:45:46 -07:00
.into(),
if expanded {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("go-up-symbolic", 16))
2024-02-09 15:45:46 -07:00
.on_press(Message::ProfileCollapse(profile_id))
} else {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("go-down-symbolic", 16))
2024-02-09 15:45:46 -07:00
.on_press(Message::ProfileExpand(profile_id))
}
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon)
2024-02-09 15:45:46 -07:00
.into(),
])
2024-10-22 12:31:02 -06:00
.align_y(Alignment::Center)
2024-02-09 15:45:46 -07:00
.spacing(space_xxs),
),
);
if expanded {
let dark_selected = self
2024-02-22 11:18:13 -07:00
.theme_names_dark
2024-02-09 15:45:46 -07:00
.iter()
.position(|theme_name| theme_name == &profile.syntax_theme_dark);
let light_selected = self
2024-02-22 11:18:13 -07:00
.theme_names_light
2024-02-09 15:45:46 -07:00
.iter()
.position(|theme_name| theme_name == &profile.syntax_theme_light);
2024-10-22 12:31:02 -06:00
let expanded_section = widget::settings::section()
2024-02-09 15:45:46 -07:00
.add(
widget::column::with_children(vec![
widget::column::with_children(vec![
widget::text(fl!("name")).into(),
widget::text_input("", &profile.name)
.on_input(move |text| {
Message::ProfileName(profile_id, text)
})
.on_paste(move |text| {
Message::ProfileName(profile_id, text)
})
2024-02-09 15:45:46 -07:00
.into(),
])
.spacing(space_xxxs)
.into(),
widget::column::with_children(vec![
widget::text(fl!("command-line")).into(),
widget::text_input("", &profile.command)
.on_input(move |text| {
Message::ProfileCommand(profile_id, text)
})
.on_paste(move |text| {
Message::ProfileCommand(profile_id, text)
})
2024-02-09 15:45:46 -07:00
.into(),
])
.spacing(space_xxxs)
.into(),
2024-04-14 21:17:32 +02:00
widget::column::with_children(vec![
widget::text(fl!("working-directory")).into(),
widget::text_input("", &profile.working_directory)
.on_input(move |text| {
Message::ProfileDirectory(profile_id, text)
})
.on_paste(move |text| {
Message::ProfileDirectory(profile_id, text)
})
2024-04-14 21:17:32 +02:00
.into(),
])
.spacing(space_xxxs)
.into(),
2024-02-09 15:45:46 -07:00
widget::column::with_children(vec![
widget::text(fl!("tab-title")).into(),
widget::text_input("", &profile.tab_title)
.on_input(move |text| {
Message::ProfileTabTitle(profile_id, text)
})
.on_paste(move |text| {
Message::ProfileTabTitle(profile_id, text)
})
2024-02-09 15:45:46 -07:00
.into(),
widget::text::caption(fl!("tab-title-description")).into(),
])
.spacing(space_xxxs)
.into(),
])
.padding([0, space_s])
.spacing(space_xs),
)
.add(
//TODO: rename to color-scheme-dark?
widget::settings::item::builder(fl!("syntax-dark")).control(
2025-03-19 12:27:00 -04:00
widget::dropdown::popup_dropdown(
2024-02-22 11:18:13 -07:00
&self.theme_names_dark,
2024-02-09 15:45:46 -07:00
dark_selected,
move |theme_i| {
2024-02-22 11:18:13 -07:00
Message::ProfileSyntaxTheme(
profile_id,
ColorSchemeKind::Dark,
theme_i,
)
2024-02-09 15:45:46 -07:00
},
2025-03-19 12:27:00 -04:00
self.core.main_window_id().unwrap_or(window::Id::RESERVED),
Message::Surface,
|a| a,
2024-02-09 15:45:46 -07:00
),
),
)
.add(
//TODO: rename to color-scheme-light?
widget::settings::item::builder(fl!("syntax-light")).control(
widget::dropdown(
2024-02-22 11:18:13 -07:00
&self.theme_names_light,
2024-02-09 15:45:46 -07:00
light_selected,
move |theme_i| {
2024-02-22 11:18:13 -07:00
Message::ProfileSyntaxTheme(
profile_id,
ColorSchemeKind::Light,
theme_i,
)
2024-02-09 15:45:46 -07:00
},
),
),
)
.add(
widget::settings::item::builder(fl!("make-default")).control(
widget::toggler(
self.get_default_profile().is_some_and(|p| p == profile_id),
2024-10-22 12:31:02 -06:00
)
.on_toggle(move |t| Message::UpdateDefaultProfile((t, profile_id))),
),
2024-04-14 21:17:32 +02:00
)
.add(
widget::row::with_children(vec![
widget::column::with_children(vec![
widget::text(fl!("hold")).into(),
widget::text::caption(fl!("remain-open")).into(),
])
.spacing(space_xxxs)
.into(),
2026-03-18 12:21:57 -04:00
widget::space::horizontal().into(),
widget::toggler(profile.drain_on_exit)
2024-10-22 12:31:02 -06:00
.on_toggle(move |t| Message::ProfileHold(profile_id, t))
.into(),
2024-04-14 21:17:32 +02:00
])
2024-10-22 12:31:02 -06:00
.align_y(Alignment::Center)
2024-04-14 21:17:32 +02:00
.padding([0, space_s]),
2024-02-09 15:45:46 -07:00
);
let padding = Padding {
top: 0.0,
bottom: 0.0,
left: space_s.into(),
right: space_s.into(),
2024-02-09 15:45:46 -07:00
};
profiles_section =
profiles_section.add(widget::container(expanded_section).padding(padding))
}
}
sections.push(profiles_section.into());
}
let add_profile = widget::row::with_children(vec![
2026-03-18 12:21:57 -04:00
widget::space::horizontal().into(),
widget::button::standard(fl!("add-profile"))
2024-02-09 15:45:46 -07:00
.on_press(Message::ProfileNew)
.into(),
]);
sections.push(add_profile.into());
widget::settings::view_column(sections).into()
}
2025-09-10 14:33:46 +02:00
fn settings(&self) -> Element<'_, Message> {
2023-12-22 14:31:01 -07:00
let app_theme_selected = match self.config.app_theme {
AppTheme::Dark => 1,
AppTheme::Light => 2,
AppTheme::System => 0,
};
let dark_selected = self
2024-02-22 11:18:13 -07:00
.theme_names_dark
2023-12-22 14:31:01 -07:00
.iter()
.position(|theme_name| theme_name == &self.config.syntax_theme_dark);
let light_selected = self
2024-02-22 11:18:13 -07:00
.theme_names_light
2023-12-22 14:31:01 -07:00
.iter()
.position(|theme_name| theme_name == &self.config.syntax_theme_light);
let font_selected = {
let mut font_system = font_system().write().unwrap();
let current_font_name = font_system.raw().db().family_name(&Family::Monospace);
self.font_names
.iter()
.position(|font_name| font_name == current_font_name)
};
let font_size_selected = self
.font_sizes
.iter()
.position(|font_size| font_size == &self.config.font_size);
let font_stretch_selected = self
.curr_font_stretches
.iter()
.position(|font_stretch| font_stretch == &self.config.typed_font_stretch());
let font_weight_selected = self
.curr_font_weights
.iter()
.position(|font_weight| font_weight == &self.config.font_weight);
let dim_font_weight_selected = self
.curr_font_weights
.iter()
.position(|font_weight| font_weight == &self.config.dim_font_weight);
let bold_font_weight_selected = self
.curr_font_weights
.iter()
.position(|font_weight| font_weight == &self.config.bold_font_weight);
let zoom_step_selected = self
.zoom_steps
.iter()
.position(|zoom_step| zoom_step == &self.config.font_size_zoom_step_mul_100);
2024-10-22 12:31:02 -06:00
let appearance_section = widget::settings::section()
.title(fl!("appearance"))
2024-01-31 10:29:35 -07:00
.add(
widget::settings::item::builder(fl!("theme")).control(widget::dropdown(
&self.app_themes,
Some(app_theme_selected),
move |index| {
Message::AppTheme(match index {
1 => AppTheme::Dark,
2 => AppTheme::Light,
_ => AppTheme::System,
})
},
)),
)
.add(
//TODO: rename to color-scheme-dark?
widget::settings::item::builder(fl!("syntax-dark")).control(widget::dropdown(
2024-02-22 11:18:13 -07:00
&self.theme_names_dark,
2024-01-31 10:29:35 -07:00
dark_selected,
2024-02-22 11:18:13 -07:00
move |index| Message::SyntaxTheme(ColorSchemeKind::Dark, index),
2024-01-31 10:29:35 -07:00
)),
)
.add(
//TODO: rename to color-scheme-light?
widget::settings::item::builder(fl!("syntax-light")).control(widget::dropdown(
2024-02-22 11:18:13 -07:00
&self.theme_names_light,
2024-01-31 10:29:35 -07:00
light_selected,
2024-02-22 11:18:13 -07:00
move |index| Message::SyntaxTheme(ColorSchemeKind::Light, index),
2024-01-31 10:29:35 -07:00
)),
)
.add(
widget::settings::item::builder(fl!("default-zoom-step")).control(
widget::dropdown(&self.zoom_step_names, zoom_step_selected, |index| {
Message::DefaultZoomStep(index)
}),
),
2024-02-12 12:36:30 -07:00
)
.add(
widget::settings::item::builder(fl!("opacity"))
.description(format!("{}%", self.config.opacity))
.control(widget::slider(0..=100, self.config.opacity, |opacity| {
Message::Opacity(opacity)
})),
2024-01-31 10:29:35 -07:00
);
2024-10-22 12:31:02 -06:00
let mut font_section = widget::settings::section()
.title(fl!("font"))
2024-01-31 10:29:35 -07:00
.add(
widget::settings::item::builder(fl!("default-font")).control(widget::dropdown(
&self.font_names,
font_selected,
2024-02-05 15:59:07 +01:00
Message::DefaultFont,
2024-01-31 10:29:35 -07:00
)),
)
.add(
widget::settings::item::builder(fl!("default-font-size")).control(
widget::dropdown(&self.font_size_names, font_size_selected, |index| {
Message::DefaultFontSize(index)
}),
),
)
.add(
widget::settings::item::builder(fl!("advanced-font-settings")).control(
if self.show_advanced_font_settings {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("go-up-symbolic", 16))
.on_press(Message::ShowAdvancedFontSettings(false))
} else {
2024-09-20 19:44:36 -06:00
widget::button::custom(icon_cache_get("go-down-symbolic", 16))
.on_press(Message::ShowAdvancedFontSettings(true))
}
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon),
2024-01-31 10:29:35 -07:00
),
);
let advanced_font_settings = || {
2024-10-22 12:31:02 -06:00
let section = widget::settings::section()
.add(
widget::settings::item::builder(fl!("default-font-stretch")).control(
widget::dropdown(
&self.curr_font_stretch_names,
font_stretch_selected,
2024-02-05 15:59:07 +01:00
Message::DefaultFontStretch,
),
),
)
.add(
widget::settings::item::builder(fl!("default-font-weight")).control(
widget::dropdown(
&self.curr_font_weight_names,
font_weight_selected,
2024-02-05 15:59:07 +01:00
Message::DefaultFontWeight,
),
),
)
.add(
widget::settings::item::builder(fl!("default-dim-font-weight")).control(
widget::dropdown(
&self.curr_font_weight_names,
dim_font_weight_selected,
2024-02-05 15:59:07 +01:00
Message::DefaultDimFontWeight,
),
),
)
.add(
widget::settings::item::builder(fl!("default-bold-font-weight")).control(
widget::dropdown(
&self.curr_font_weight_names,
bold_font_weight_selected,
2024-02-05 15:59:07 +01:00
Message::DefaultBoldFontWeight,
),
),
2024-01-31 10:29:35 -07:00
)
.add(
widget::settings::item::builder(fl!("use-bright-bold"))
.toggler(self.config.use_bright_bold, Message::UseBrightBold),
);
let padding = Padding {
top: 0.0,
bottom: 0.0,
left: 12.0,
right: 12.0,
};
widget::container(section).padding(padding)
};
if self.show_advanced_font_settings {
2024-01-31 10:29:35 -07:00
font_section = font_section.add(advanced_font_settings());
}
2024-10-22 12:31:02 -06:00
let splits_section = widget::settings::section().title(fl!("splits")).add(
2024-01-31 10:29:35 -07:00
widget::settings::item::builder(fl!("focus-follow-mouse"))
.toggler(self.config.focus_follow_mouse, Message::FocusFollowMouse),
);
2024-10-22 12:31:02 -06:00
let advanced_section = widget::settings::section().title(fl!("advanced")).add(
2024-01-31 10:29:35 -07:00
widget::settings::item::builder(fl!("show-headerbar"))
.description(fl!("show-header-description"))
.toggler(self.config.show_headerbar, Message::ShowHeaderBar),
);
widget::settings::view_column(vec![
appearance_section.into(),
font_section.into(),
splits_section.into(),
advanced_section.into(),
])
.into()
2023-12-22 14:31:01 -07:00
}
fn get_default_profile(&self) -> Option<ProfileId> {
self.config.default_profile
}
2024-02-09 15:45:46 -07:00
fn create_and_focus_new_terminal(
&mut self,
pane: pane_grid::Pane,
profile_id_opt: Option<ProfileId>,
2024-10-22 12:31:02 -06:00
) -> Task<Message> {
self.pane_model.set_focus(pane);
match &self.term_event_tx_opt {
2024-02-09 15:45:46 -07:00
Some(term_event_tx) => {
let colors = self
.themes
.get(&self.config.syntax_theme(profile_id_opt))
2024-04-14 16:48:13 +02:00
.or_else(|| match self.config.color_scheme_kind() {
ColorSchemeKind::Dark => self
.themes
.get(&(config::COSMIC_THEME_DARK.to_string(), ColorSchemeKind::Dark)),
ColorSchemeKind::Light => self.themes.get(&(
config::COSMIC_THEME_LIGHT.to_string(),
ColorSchemeKind::Light,
)),
});
match colors {
2024-02-09 15:45:46 -07:00
Some(colors) => {
let current_pane = self.pane_model.focused();
2024-02-09 15:45:46 -07:00
if let Some(tab_model) = self.pane_model.active_mut() {
let (options, tab_title_override) = if let Some(profile) =
profile_id_opt
.and_then(|profile_id| self.config.profiles.get(&profile_id))
2026-02-16 23:32:19 +00:00
{
// Merge profile and startup options, preferring startup options
let startup_options =
self.startup_options.take().unwrap_or_default();
let options = tty::Options {
shell: startup_options.shell.or_else(|| {
2026-04-10 18:09:25 +02:00
if let Some(mut args) = shlex::split(&profile.command)
&& !args.is_empty()
{
let command = args.remove(0);
return Some(tty::Shell::new(command, args));
}
2026-04-10 18:09:25 +02:00
None
2026-02-16 23:32:19 +00:00
}),
working_directory: startup_options.working_directory.or_else(
|| {
(!profile.working_directory.is_empty())
.then(|| profile.working_directory.clone().into())
},
),
drain_on_exit: startup_options.drain_on_exit
|| profile.drain_on_exit,
..startup_options
2026-02-16 23:32:19 +00:00
};
let tab_title_override = if profile.tab_title.is_empty() {
2026-02-16 23:32:19 +00:00
None
} else {
Some(profile.tab_title.clone())
};
(options, tab_title_override)
} else {
(self.startup_options.take().unwrap_or_default(), None)
2024-02-09 15:45:46 -07:00
};
2026-02-16 23:32:19 +00:00
2024-02-20 10:21:30 -07:00
let entity = tab_model
.insert()
.text(
tab_title_override
.clone()
.unwrap_or_else(|| fl!("new-terminal")),
)
.closable()
.activate()
.id();
2024-02-09 15:45:46 -07:00
match Terminal::new(
current_pane,
entity,
term_event_tx.clone(),
self.term_config.clone(),
options,
&self.config,
*colors,
profile_id_opt,
2024-02-20 10:21:30 -07:00
tab_title_override,
2024-02-09 15:45:46 -07:00
) {
Ok(mut terminal) => {
terminal.set_config(&self.config, &self.themes);
2024-02-09 15:45:46 -07:00
tab_model
.data_set::<Mutex<Terminal>>(entity, Mutex::new(terminal));
}
Err(err) if profile_id_opt.is_some() => {
// Create a tab without a profile if the selected
// profile doesn't work
let name = profile_id_opt
.and_then(|id| self.config.profiles.get(&id))
.map(|profile| profile.name.as_str())
.unwrap_or_default();
log::error!(
"failed to open terminal with profile `{}`: {}",
name,
err
);
// TabClose focuses the nearest tab which would be incorrect
// in this specific case as it would unfocus the new tab
// created by TabNewNoProfile
// TabClose can also cause the terminal app to close if it
// closes the only open tab. This would close cosmic term
// if launched with an invalid profile (issue #274)
tab_model.remove(entity);
return self.update(Message::TabNewNoProfile);
}
2024-02-09 15:45:46 -07:00
Err(err) => {
log::error!("failed to open terminal: {}", err);
// Clean up partially created tab
return self.update(Message::TabClose(Some(entity)));
}
}
} else {
log::error!("Found no active pane");
}
}
None => {
log::error!(
"failed to find terminal theme {:?}",
self.config.syntax_theme(profile_id_opt)
);
2024-02-09 15:45:46 -07:00
//TODO: fall back to known good theme
}
}
2024-02-09 15:45:46 -07:00
}
None => {
log::warn!("tried to create new tab before having event channel");
}
}
self.update_title(Some(pane))
}
2023-12-22 14:31:01 -07:00
}
/// Implement [`Application`] to integrate with COSMIC.
impl Application for App {
2023-12-20 13:31:10 -07:00
/// Default async executor to use with the app.
type Executor = executor::Default;
/// Argument received
2023-12-22 14:31:01 -07:00
type Flags = Flags;
2023-12-20 13:31:10 -07:00
/// Message type specific to our [`App`].
type Message = Message;
2023-12-20 13:31:10 -07:00
/// The unique application ID to supply to the window manager.
2023-12-22 14:31:01 -07:00
const APP_ID: &'static str = "com.system76.CosmicTerm";
2023-12-20 13:31:10 -07:00
fn core(&self) -> &Core {
&self.core
}
2023-12-20 13:31:10 -07:00
fn core_mut(&mut self) -> &mut Core {
&mut self.core
}
2023-12-17 22:51:50 -07:00
2023-12-20 13:31:10 -07:00
/// Creates the application, and optionally emits command on initialize.
2024-10-22 12:31:02 -06:00
fn init(mut core: Core, flags: Self::Flags) -> (Self, Task<Self::Message>) {
2024-02-12 12:36:30 -07:00
core.window.content_container = false;
2023-12-22 15:40:10 -07:00
core.window.show_headerbar = flags.config.show_headerbar;
2023-12-21 11:57:52 -07:00
2023-12-22 14:31:01 -07:00
// Update font name from config
{
let mut font_system = font_system().write().unwrap();
font_system
.raw()
.db_mut()
.set_monospace_family(&flags.config.font_name);
}
let app_themes = vec![fl!("match-desktop"), fl!("dark"), fl!("light")];
let font_name_faces_map = {
let mut font_name_faces_map = BTreeMap::<_, Vec<_>>::new();
2023-12-22 14:31:01 -07:00
let mut font_system = font_system().write().unwrap();
//TODO: do not repeat, used in Tab::new
for face in font_system.raw().db().faces() {
// only monospace fonts and weights that match named constants.
let weight = face.weight.0;
if face.monospaced && { 1..9 }.contains(&{ weight / 100 }) && weight % 100 == 0 {
2023-12-22 14:31:01 -07:00
//TODO: get localized name if possible
let font_name = face
.families
2024-02-05 15:59:07 +01:00
.first()
2023-12-22 14:31:01 -07:00
.map_or_else(|| face.post_script_name.to_string(), |x| x.0.to_string());
font_name_faces_map
.entry(font_name)
.or_default()
.push(face.clone());
2023-12-22 14:31:01 -07:00
}
}
// only keep fonts that have both NORMAL and BOLD weights with both having
// a `Stretch::Normal` face.
// This is important for fallbacks.
font_name_faces_map.retain(|_, v| {
let has_normal = v
.iter()
.any(|face| face.weight == Weight::NORMAL && face.stretch == Stretch::Normal);
let has_bold = v
.iter()
.any(|face| face.weight == Weight::BOLD && face.stretch == Stretch::Normal);
has_normal && has_bold
});
font_name_faces_map
2023-12-22 14:31:01 -07:00
};
if font_name_faces_map.is_empty() {
2025-09-10 14:33:46 +02:00
log::error!(
"at least one monospace font with normal/bold weights and default stretch is required"
);
log::error!("no monospace fonts to select from, exiting");
process::exit(1);
}
let font_names = font_name_faces_map.keys().cloned().collect();
2023-12-22 14:31:01 -07:00
let mut font_size_names = Vec::new();
let mut font_sizes = Vec::new();
for font_size in 4..=32 {
font_size_names.push(format!("{font_size}px"));
2023-12-22 14:31:01 -07:00
font_sizes.push(font_size);
}
let mut all_font_weights_vals_names_map = BTreeMap::new();
macro_rules! populate_font_weights {
($($weight:ident,)+) => {
// all weights
paste::paste!{
$(
all_font_weights_vals_names_map
.insert(Weight::$weight.0, stringify!([<$weight:camel>]).into());
)+
}
};
}
populate_font_weights! {
THIN, EXTRA_LIGHT, LIGHT, NORMAL, MEDIUM,
SEMIBOLD, BOLD, EXTRA_BOLD, BLACK,
};
let mut all_font_stretches_vals_names_map = BTreeMap::new();
macro_rules! populate_font_stretches {
($($stretch:ident,)+) => {
// all stretches
$(
all_font_stretches_vals_names_map
.insert(Stretch::$stretch, stringify!($stretch).into());
)+
};
}
populate_font_stretches! {
UltraCondensed, ExtraCondensed, Condensed, SemiCondensed,
Normal, SemiExpanded, Expanded, ExtraExpanded, UltraExpanded,
};
let mut zoom_step_names = Vec::new();
let mut zoom_steps = Vec::new();
for zoom_step in [25, 50, 75, 100, 150, 200] {
zoom_step_names.push(format!("{}px", f32::from(zoom_step) / 100.0));
zoom_steps.push(zoom_step);
}
let pane_model = TerminalPaneGrid::new(segmented_button::ModelBuilder::default().build());
let mut terminal_ids = HashMap::new();
terminal_ids.insert(pane_model.focused(), widget::Id::unique());
2023-12-22 14:31:01 -07:00
let about = About::default()
.name(fl!("cosmic-terminal"))
.icon(widget::icon::from_name(Self::APP_ID))
.version(env!("CARGO_PKG_VERSION"))
.author("System76")
.comments(fl!("comment"))
.license("GPL-3.0-only")
2025-10-03 15:32:16 -04:00
.license_url("https://spdx.org/licenses/GPL-3.0-only")
.developers([("Jeremy Soller", "jeremy@system76.com")])
.links([
(fl!("repository"), "https://github.com/pop-os/cosmic-term"),
(
fl!("support"),
"https://github.com/pop-os/cosmic-term/issues",
),
]);
2025-12-29 20:42:52 -08:00
let key_binds = key_binds(&flags.shortcuts_config);
let mut app = Self {
2023-12-20 13:31:10 -07:00
core,
about,
pane_model,
2023-12-22 14:31:01 -07:00
config_handler: flags.config_handler,
config: flags.config,
2025-12-29 20:42:52 -08:00
shortcuts_config: flags.shortcuts_config,
key_binds,
2023-12-22 14:31:01 -07:00
app_themes,
font_names,
font_size_names,
font_sizes,
font_name_faces_map,
all_font_weights_vals_names_map,
all_font_stretches_vals_names_map,
curr_font_weight_names: Vec::new(),
curr_font_weights: Vec::new(),
curr_font_stretch_names: Vec::new(),
curr_font_stretches: Vec::new(),
zoom_step_names,
zoom_steps,
2024-02-22 11:18:13 -07:00
theme_names_dark: Vec::new(),
theme_names_light: Vec::new(),
themes: HashMap::new(),
2023-12-22 14:31:01 -07:00
context_page: ContextPage::Settings,
dialog_opt: None,
terminal_ids,
2024-01-11 13:20:16 -07:00
find: false,
find_search_id: widget::Id::unique(),
find_search_value: String::new(),
startup_options: flags.startup_options,
2023-12-22 14:31:01 -07:00
term_config: flags.term_config,
2023-12-20 13:31:10 -07:00
term_event_tx_opt: None,
color_scheme_errors: Vec::new(),
color_scheme_expanded: None,
color_scheme_renaming: None,
color_scheme_rename_id: widget::Id::unique(),
2024-02-22 11:18:13 -07:00
color_scheme_tab_model: widget::segmented_button::Model::default(),
2024-02-09 15:45:46 -07:00
profile_expanded: None,
show_advanced_font_settings: false,
2025-12-29 20:42:52 -08:00
shortcut_capture: None,
shortcut_conflict: None,
shortcut_conflict_overlay_restore: None,
2026-02-05 11:25:53 -07:00
shortcut_search_focus: Cell::new(true),
shortcut_search_id: widget::Id::unique(),
shortcut_search_regex: None,
shortcut_search_value: String::new(),
2024-01-11 13:20:16 -07:00
modifiers: Modifiers::empty(),
context_menu_popup: None,
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
password_mgr: Default::default(),
2023-12-17 22:51:50 -07:00
};
2023-12-20 13:31:10 -07:00
app.set_curr_font_weights_and_stretches();
2024-10-22 12:31:02 -06:00
let command = Task::batch([app.update_config(), app.update_title(None)]);
2023-12-20 13:31:10 -07:00
(app, command)
2023-12-17 22:51:50 -07:00
}
2024-01-11 13:20:16 -07:00
//TODO: currently the first escape unfocuses, and the second calls this function
2024-10-22 12:31:02 -06:00
fn on_escape(&mut self) -> Task<Message> {
2024-01-11 13:20:16 -07:00
if self.core.window.show_context {
// Handle keyboard shortcut page escape
if let ContextPage::KeyboardShortcuts = self.context_page {
// Cancel shortcut capture
if self.shortcut_capture.take().is_some() {
return Task::none();
}
// Cancel shortcut conflict dialog
if self.shortcut_conflict.take().is_some() {
return Task::none();
}
2024-02-09 09:35:24 +01:00
}
return self.update(Message::ToggleContextPage(self.context_page));
2024-01-11 13:20:16 -07:00
} else if self.find {
// Close find if open
self.find = false;
self.find_search_value.clear();
2024-01-11 13:20:16 -07:00
}
// Focus correct widget
self.update_focus()
}
2024-10-22 12:31:02 -06:00
fn on_context_drawer(&mut self) -> Task<Message> {
if self.core.window.show_context {
2024-10-22 12:31:02 -06:00
Task::none()
} else {
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
if self.context_page == ContextPage::PasswordManager {
self.password_mgr.clear();
}
self.update_focus()
}
}
2023-12-20 13:31:10 -07:00
/// Handle application events here.
2024-10-22 12:31:02 -06:00
fn update(&mut self, message: Self::Message) -> Task<Self::Message> {
2024-02-12 12:36:30 -07:00
// Helper for updating config values efficiently
macro_rules! config_set {
($name: ident, $value: expr) => {
match &self.config_handler {
Some(config_handler) => {
2024-04-15 21:04:46 +01:00
if let Err(err) =
paste::paste! { self.config.[<set_ $name>](config_handler, $value) }
{
log::warn!("failed to save config {:?}: {}", stringify!($name), err);
2024-02-12 12:36:30 -07:00
}
}
None => {
self.config.$name = $value;
log::warn!(
"failed to save config {:?}: no config handler",
stringify!($name)
);
}
}
};
}
2023-12-20 13:31:10 -07:00
match message {
2023-12-22 14:31:01 -07:00
Message::AppTheme(app_theme) => {
2024-08-20 07:26:46 -06:00
config_set!(app_theme, app_theme);
return self.update_config();
2023-12-22 14:31:01 -07:00
}
2024-09-15 23:53:13 +02:00
Message::ClearScrollback(entity_opt) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
let mut term = terminal.term.lock();
term.grid_mut().clear_history();
}
}
}
2024-02-22 11:18:13 -07:00
Message::ColorSchemeCollapse => {
self.color_scheme_expanded = None;
}
2024-02-22 11:18:13 -07:00
Message::ColorSchemeDelete(color_scheme_kind, color_scheme_id) => {
self.color_scheme_expanded = None;
2024-02-22 11:18:13 -07:00
self.config
.color_schemes_mut(color_scheme_kind)
.remove(&color_scheme_id);
return self.save_color_schemes(color_scheme_kind);
}
Message::ColorSchemeExport(color_scheme_kind, color_scheme_id_opt) => {
self.color_scheme_expanded = None;
if let Some(color_scheme_name) = match color_scheme_id_opt {
Some(color_scheme_id) => self
.config
.color_schemes(color_scheme_kind)
.get(&color_scheme_id)
.map(|color_scheme| color_scheme.name.clone()),
None => Some(format!("COSMIC {:?}", color_scheme_kind)),
} && self.dialog_opt.is_none()
{
let (dialog, command) = Dialog::new(
DialogSettings::new().kind(DialogKind::SaveFile {
filename: format!("{}.ron", color_scheme_name),
}),
|msg| Message::DialogMessage(Box::new(msg)),
move |result| {
Message::ColorSchemeExportResult(
color_scheme_kind,
color_scheme_id_opt,
result,
)
},
);
self.dialog_opt = Some(dialog);
return command;
2026-04-10 18:09:25 +02:00
}
}
Message::ColorSchemeExportResult(color_scheme_kind, color_scheme_id_opt, result) => {
//TODO: show errors in UI
self.dialog_opt = None;
if let DialogResult::Open(paths) = result {
let path = &paths[0];
match color_scheme_id_opt {
Some(color_scheme_id) => {
if let Some(color_scheme) = self
.config
.color_schemes(color_scheme_kind)
.get(&color_scheme_id)
{
match ron::ser::to_string_pretty(
&color_scheme,
ron::ser::PrettyConfig::new(),
) {
Ok(ron) => {
if let Err(err) = fs::write(path, ron) {
log::error!(
"failed to export {:?} to {:?}: {}",
color_scheme_id,
path,
err
);
}
}
Err(err) => {
log::error!(
"failed to serialize color scheme {:?}: {}",
color_scheme_id,
err
);
}
}
} else {
log::error!("failed to find color scheme {:?}", color_scheme_id);
}
}
None => {
let name = format!("COSMIC {:?}", color_scheme_kind);
let color_scheme = match color_scheme_kind {
ColorSchemeKind::Dark => ColorScheme::from((
name.as_str(),
&terminal_theme::cosmic_dark(),
)),
ColorSchemeKind::Light => ColorScheme::from((
name.as_str(),
&terminal_theme::cosmic_light(),
)),
};
//TODO: do not duplicate code
match ron::ser::to_string_pretty(
&color_scheme,
ron::ser::PrettyConfig::new(),
) {
Ok(ron) => {
if let Err(err) = fs::write(path, ron) {
log::error!(
"failed to export {:?} to {:?}: {}",
color_scheme.name,
path,
err
);
}
}
Err(err) => {
log::error!(
"failed to serialize color scheme {:?}: {}",
color_scheme.name,
err
);
}
}
}
}
}
}
Message::ColorSchemeExpand(color_scheme_kind, color_scheme_id_opt) => {
self.color_scheme_expanded = Some((color_scheme_kind, color_scheme_id_opt));
}
2024-02-22 11:18:13 -07:00
Message::ColorSchemeImport(color_scheme_kind) => {
if self.dialog_opt.is_none() {
self.color_scheme_errors.clear();
let (dialog, command) = Dialog::new(
DialogSettings::new().kind(DialogKind::OpenMultipleFiles),
|msg| Message::DialogMessage(Box::new(msg)),
2024-02-22 11:18:13 -07:00
move |result| Message::ColorSchemeImportResult(color_scheme_kind, result),
);
self.dialog_opt = Some(dialog);
return command;
}
}
2024-02-22 11:18:13 -07:00
Message::ColorSchemeImportResult(color_scheme_kind, result) => {
self.dialog_opt = None;
if let DialogResult::Open(paths) = result {
self.color_scheme_errors.clear();
for path in &paths {
let mut file = match fs::File::open(path) {
Ok(ok) => ok,
Err(err) => {
self.color_scheme_errors
.push(format!("Failed to open {path:?}: {err}"));
continue;
}
};
match ron::de::from_reader::<_, ColorScheme>(&mut file) {
Ok(color_scheme) => {
// Get next color_scheme ID
let color_scheme_id = self
.config
2024-02-22 11:18:13 -07:00
.color_schemes(color_scheme_kind)
.last_key_value()
.map(|(id, _)| ColorSchemeId(id.0 + 1))
.unwrap_or_default();
self.config
2024-02-22 11:18:13 -07:00
.color_schemes_mut(color_scheme_kind)
.insert(color_scheme_id, color_scheme);
}
Err(err) => {
self.color_scheme_errors
.push(format!("Failed to parse {path:?}: {err}"));
}
}
}
2024-02-22 11:18:13 -07:00
return self.save_color_schemes(color_scheme_kind);
}
}
Message::ColorSchemeRename(color_scheme_kind, color_scheme_id, color_scheme_name) => {
self.color_scheme_expanded = None;
let focus = self.color_scheme_renaming.is_none();
self.color_scheme_renaming =
Some((color_scheme_kind, color_scheme_id, color_scheme_name));
if focus {
return widget::text_input::focus(self.color_scheme_rename_id.clone());
}
}
Message::ColorSchemeRenameSubmit => {
if let Some((color_scheme_kind, color_scheme_id, color_scheme_name)) =
self.color_scheme_renaming.take()
2026-04-10 18:09:25 +02:00
&& let Some(color_scheme) = self
2024-02-22 11:18:13 -07:00
.config
.color_schemes_mut(color_scheme_kind)
.get_mut(&color_scheme_id)
{
color_scheme.name = color_scheme_name;
return self.save_color_schemes(color_scheme_kind);
}
2024-02-22 11:18:13 -07:00
}
Message::ColorSchemeTabActivate(entity) => {
if let Some(color_scheme_kind) =
self.color_scheme_tab_model.data::<ColorSchemeKind>(entity)
{
let context_page = ContextPage::ColorSchemes(*color_scheme_kind);
if self.context_page != context_page {
return self.update(Message::ToggleContextPage(context_page));
}
}
}
2023-12-22 14:31:01 -07:00
Message::Config(config) => {
if *config != self.config {
let shortcuts_changed = config.shortcuts_custom != self.config.shortcuts_custom;
2023-12-22 14:31:01 -07:00
log::info!("update config");
//TODO: update syntax theme by clearing tabs, only if needed
self.config = *config;
2026-01-29 20:10:25 -08:00
if shortcuts_changed {
2026-02-05 12:57:56 -07:00
self.shortcuts_config =
shortcuts::ShortcutsConfig::new(self.config.shortcuts_custom.clone());
2026-01-29 20:10:25 -08:00
self.key_binds = key_binds(&self.shortcuts_config);
}
2023-12-22 14:31:01 -07:00
return self.update_config();
}
}
2023-12-22 15:00:50 -07:00
Message::Copy(entity_opt) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
let term = terminal.term.lock();
if let Some(text) = term.selection_to_string() {
2024-10-22 12:31:02 -06:00
return Task::batch([clipboard::write(text), self.update_focus()]);
}
2023-12-21 22:13:17 -07:00
}
} else {
log::warn!("Failed to get focused pane");
2024-05-03 14:37:01 -07:00
}
return self.update_focus();
}
Message::CopyOrSigint(entity_opt) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
let mut term = terminal.term.lock();
2024-05-03 14:37:01 -07:00
if let Some(text) = term.selection_to_string() {
// Clear selection (to allow next Ctrl+C to signal)
term.selection = None;
drop(term);
// Mark as dirty
terminal.needs_update = true;
drop(terminal);
2024-10-22 12:31:02 -06:00
return Task::batch([clipboard::write(text), self.update_focus()]);
2024-05-03 14:37:01 -07:00
} else {
// Drop the lock for term so that input_scroll doesn't block forever
drop(term);
// 0x03 is ^C
2024-05-14 13:15:02 -06:00
terminal.input_scroll(b"\x03".as_slice());
2024-05-03 14:37:01 -07:00
}
}
} else {
log::warn!("Failed to get focused pane");
2023-12-21 22:13:17 -07:00
}
return self.update_focus();
2023-12-21 22:13:17 -07:00
}
2025-06-19 06:38:57 +02:00
Message::ToggleFullscreen => {
if let Some(window_id) = self.core.main_window_id() {
return cosmic::command::toggle_maximize(window_id);
}
}
2024-01-21 21:13:13 +01:00
Message::CopyPrimary(entity_opt) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
let term = terminal.term.lock();
if let Some(text) = term.selection_to_string() {
2024-10-22 12:31:02 -06:00
return Task::batch([
2024-04-26 10:24:07 -06:00
clipboard::write_primary(text),
self.update_focus(),
]);
2024-01-21 21:13:13 +01:00
}
}
} else {
log::warn!("Failed to get focused pane");
}
}
2023-12-22 14:31:01 -07:00
Message::DefaultFont(index) => {
match self.font_names.get(index) {
Some(font_name) => {
if font_name != &self.config.font_name {
// Update font name from config
{
let mut font_system = font_system().write().unwrap();
font_system.raw().db_mut().set_monospace_family(font_name);
}
let panes: Vec<_> = self.pane_model.panes.iter().collect();
for (_pane, tab_model) in panes {
let entities: Vec<_> = tab_model.iter().collect();
for entity in entities {
if let Some(terminal) =
tab_model.data::<Mutex<Terminal>>(entity)
{
let mut terminal = terminal.lock().unwrap();
terminal.update_cell_size();
}
2023-12-22 14:31:01 -07:00
}
}
2024-08-20 07:26:46 -06:00
config_set!(font_name, font_name.to_string());
self.set_curr_font_weights_and_stretches();
2024-08-20 07:26:46 -06:00
return self.update_config();
2023-12-22 14:31:01 -07:00
}
}
None => {
log::warn!("failed to find font with index {}", index);
}
}
}
2024-01-09 10:16:32 -07:00
Message::DefaultFontSize(index) => match self.font_sizes.get(index) {
Some(font_size) => {
2024-08-20 07:26:46 -06:00
config_set!(font_size, *font_size);
self.reset_terminal_panes_zoom(); // reset zoom
2024-08-20 07:26:46 -06:00
return self.update_config();
}
None => {
2024-01-09 10:16:32 -07:00
log::warn!("failed to find font with index {}", index);
}
},
Message::DefaultFontStretch(index) => match self.curr_font_stretches.get(index) {
Some(font_stretch) => {
2024-08-20 07:26:46 -06:00
config_set!(font_stretch, font_stretch.to_number());
self.set_curr_font_weights_and_stretches();
2024-08-20 07:26:46 -06:00
return self.update_config();
}
None => {
log::warn!("failed to find font weight with index {}", index);
}
},
Message::DefaultFontWeight(index) => match self.curr_font_weights.get(index) {
Some(font_weight) => {
2024-08-20 07:26:46 -06:00
config_set!(font_weight, *font_weight);
return self.update_config();
}
None => {
log::warn!("failed to find font weight with index {}", index);
}
},
Message::DefaultDimFontWeight(index) => match self.curr_font_weights.get(index) {
Some(font_weight) => {
2024-08-20 07:26:46 -06:00
config_set!(dim_font_weight, *font_weight);
return self.update_config();
}
None => {
log::warn!("failed to find dim font weight with index {}", index);
}
},
Message::DefaultBoldFontWeight(index) => match self.curr_font_weights.get(index) {
Some(font_weight) => {
2024-08-20 07:26:46 -06:00
config_set!(bold_font_weight, *font_weight);
return self.update_config();
}
None => {
log::warn!("failed to find bold font weight with index {}", index);
}
},
2024-01-09 10:16:32 -07:00
Message::DefaultZoomStep(index) => match self.zoom_steps.get(index) {
Some(zoom_step) => {
2024-08-20 07:26:46 -06:00
config_set!(font_size_zoom_step_mul_100, *zoom_step);
self.reset_terminal_panes_zoom(); // reset zoom
2024-08-20 07:26:46 -06:00
return self.update_config();
2023-12-22 14:31:01 -07:00
}
None => {
2024-01-09 10:16:32 -07:00
log::warn!("failed to find zoom step with index {}", index);
2023-12-22 14:31:01 -07:00
}
},
Message::DialogMessage(dialog_message) => {
if let Some(dialog) = &mut self.dialog_opt {
// DialogMessage is boxed, so we need to dereference it before updating
return dialog.update(*dialog_message);
}
}
Message::Drop(Some((pane, entity, data))) => {
self.pane_model.set_focus(pane);
if let Ok(value) = shlex::try_join(data.paths.iter().filter_map(|p| p.to_str())) {
2024-10-22 12:31:02 -06:00
return Task::batch([
self.update_focus(),
2025-03-19 12:27:00 -04:00
cosmic::task::message(action::app(Message::PasteValue(
Some(entity),
value,
))),
]);
}
}
Message::Drop(None) => {}
2024-01-11 13:20:16 -07:00
Message::Find(find) => {
self.find = find;
if find {
if let Some(tab_model) = self.pane_model.active() {
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
let term = terminal.term.lock();
if let Some(text) = term.selection_to_string() {
self.find_search_value = text;
}
}
} else {
log::warn!("Failed to get focused pane");
}
} else {
self.find_search_value.clear();
}
2024-01-11 13:20:16 -07:00
// Focus correct input
return self.update_focus();
}
Message::FindNext => {
2026-04-10 18:09:25 +02:00
if !self.find_search_value.is_empty()
&& let Some(tab_model) = self.pane_model.active()
{
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.search(&self.find_search_value, true);
2024-01-11 14:31:20 -07:00
}
}
2024-01-11 13:20:16 -07:00
// Focus correct input
return self.update_focus();
}
Message::FindPrevious => {
2026-04-10 18:09:25 +02:00
if !self.find_search_value.is_empty()
&& let Some(tab_model) = self.pane_model.active()
{
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.search(&self.find_search_value, false);
2024-01-11 14:31:20 -07:00
}
}
2024-01-11 13:20:16 -07:00
// Focus correct input
return self.update_focus();
}
Message::FindSearchValueChanged(value) => {
self.find_search_value = value;
}
2024-01-21 21:13:13 +01:00
Message::MiddleClick(pane, entity_opt) => {
self.pane_model.set_focus(pane);
2024-10-22 12:31:02 -06:00
return Task::batch([
2024-01-21 21:13:13 +01:00
self.update_focus(),
2024-10-22 12:31:02 -06:00
clipboard::read_primary().map(move |value_opt| match value_opt {
2025-03-19 12:27:00 -04:00
Some(value) => action::app(Message::PasteValue(entity_opt, value)),
None => action::none(),
2024-01-21 21:13:13 +01:00
}),
]);
}
2024-02-28 09:15:58 -07:00
Message::FocusFollowMouse(focus_follow_mouse) => {
config_set!(focus_follow_mouse, focus_follow_mouse);
}
Message::Key(modifiers, key) => {
// Hard-coded keys
match key {
Key::Named(Named::Copy) => {
return self.update(Message::Copy(None));
}
Key::Named(Named::Paste) => {
return self.update(Message::Paste(None));
}
2026-02-05 13:39:32 -07:00
Key::Named(Named::Escape) => {
// Handled by on_escape
return Task::none();
}
_ => {}
}
// Handle shortcut capture
2025-12-29 20:42:52 -08:00
if let Some(action) = self.shortcut_capture {
if let Some(binding) = shortcuts::binding_from_key(modifiers, key) {
self.shortcut_capture = None;
if let Some(existing_action) =
self.shortcuts_config.action_for_binding(&binding)
{
if existing_action != action {
self.begin_shortcut_conflict(ShortcutConflict {
binding,
existing_action,
new_action: action,
});
return Task::none();
}
return Task::none();
}
self.apply_shortcut_binding(binding, action);
2025-12-29 20:42:52 -08:00
}
return Task::none();
}
// Handle configurable keys
for (key_bind, action) in &self.key_binds {
2024-02-28 09:15:58 -07:00
if key_bind.matches(modifiers, &key) {
return self.update(action.message(None));
}
}
}
2024-04-15 21:04:46 +01:00
Message::LaunchUrl(url) => {
if let Err(err) = open::that_detached(&url) {
2024-02-28 09:15:58 -07:00
log::warn!("failed to open {:?}: {}", url, err);
}
2024-04-15 21:04:46 +01:00
}
2026-02-15 10:23:49 +01:00
Message::CopyUrlByMenu => {
if let Some(tab_model) = self.pane_model.active() {
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
if let Some(url) =
terminal.context_menu.as_ref().and_then(|m| m.link.as_ref())
{
let url = url.to_owned();
terminal.context_menu = None;
terminal.active_regex_match = None;
terminal.needs_update = true;
return Task::batch([clipboard::write(url), self.update_focus()]);
}
2026-02-15 10:23:49 +01:00
}
}
}
2025-10-16 09:27:00 +02:00
Message::LaunchUrlByMenu => {
if let Some(tab_model) = self.pane_model.active() {
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
if let Some(url) =
terminal.context_menu.as_ref().and_then(|m| m.link.as_ref())
&& let Err(err) = open::that_detached(url)
{
log::warn!("failed to open {:?}: {}", url, err);
}
terminal.context_menu = None;
terminal.active_regex_match = None;
terminal.needs_update = true;
2025-10-16 09:27:00 +02:00
}
}
}
2024-01-11 13:20:16 -07:00
Message::Modifiers(modifiers) => {
self.modifiers = modifiers;
}
2024-01-22 16:35:23 +01:00
Message::MouseEnter(pane) => {
self.pane_model.set_focus(pane);
2024-01-22 16:35:23 +01:00
return self.update_focus();
}
2025-12-29 20:42:52 -08:00
Message::ShortcutCaptureCancel => {
self.shortcut_capture = None;
}
Message::ShortcutCaptureStart(action) => {
self.shortcut_capture = Some(action);
}
Message::ShortcutConflictCancel => {
self.clear_shortcut_conflict();
}
Message::ShortcutConflictReplace => {
if let Some(conflict) = self.shortcut_conflict.clone() {
self.apply_shortcut_binding(conflict.binding, conflict.new_action);
}
self.clear_shortcut_conflict();
}
2025-12-29 20:42:52 -08:00
Message::ShortcutRemove(binding, source) => {
match source {
shortcuts::BindingSource::Default => {
self.shortcuts_config
.custom
.0
.insert(binding, shortcuts::KeyBindAction::Disable);
2025-12-29 20:42:52 -08:00
}
shortcuts::BindingSource::Custom => {
self.shortcuts_config.custom.0.remove(&binding);
}
}
self.save_shortcuts_custom();
}
2026-02-05 12:57:56 -07:00
Message::ShortcutReset(reset_action) => {
self.shortcuts_config.reset_action(reset_action);
self.save_shortcuts_custom();
}
2026-02-05 11:25:53 -07:00
Message::ShortcutSearch(search) => {
self.shortcut_search_focus.set(true);
self.shortcut_search_regex = None;
if !search.is_empty() {
let pattern = regex::escape(&search);
match regex::RegexBuilder::new(&pattern)
.case_insensitive(true)
.build()
{
Ok(regex) => {
self.shortcut_search_regex = Some(regex);
}
Err(err) => {
log::warn!("failed to parse regex {:?}: {}", pattern, err);
}
};
}
self.shortcut_search_value = search;
return self.update_focus();
}
2024-02-12 12:36:30 -07:00
Message::Opacity(opacity) => {
config_set!(opacity, cmp::min(100, opacity));
}
Message::PaneClicked(pane) => {
self.pane_model.set_focus(pane);
return self.update_title(Some(pane));
}
Message::PaneSplit(axis) => {
let result = self.pane_model.panes.split(
axis,
self.pane_model.focused(),
segmented_button::ModelBuilder::default().build(),
);
if let Some((pane, _)) = result {
self.terminal_ids.insert(pane, widget::Id::unique());
let command =
self.create_and_focus_new_terminal(pane, self.get_default_profile());
self.pane_model.panes_created += 1;
2024-02-09 15:45:46 -07:00
return command;
}
}
Message::PaneToggleMaximized => {
if self.pane_model.panes.maximized().is_some() {
self.pane_model.panes.restore();
} else {
self.pane_model.panes.maximize(self.pane_model.focused());
}
return self.update_focus();
}
Message::PaneFocusAdjacent(direction) => {
if let Some(adjacent) = self
.pane_model
.panes
.adjacent(self.pane_model.focused(), direction)
{
self.pane_model.set_focus(adjacent);
2024-01-18 10:15:16 +01:00
return self.update_title(Some(adjacent));
}
}
Message::PaneResized(pane_grid::ResizeEvent { split, ratio }) => {
self.pane_model.panes.resize(split, ratio);
}
Message::PaneDragged(pane_grid::DragEvent::Dropped { pane, target }) => {
self.pane_model.panes.drop(pane, target);
}
Message::PaneDragged(_) => {}
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
Message::PasswordManager(msg) => {
return self.password_mgr.update(msg);
}
#[cfg(feature = "password_manager")]
Message::PasswordPaste(password, pane) => {
if let Some(tab_model) = self.pane_model.panes.get(pane) {
let entity = tab_model.active();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
terminal.paste(password.into_unsecure());
terminal.input_scroll(b"\n".as_slice());
self.core.window.show_context = false;
self.password_mgr.clear();
}
}
}
2023-12-22 15:00:50 -07:00
Message::Paste(entity_opt) => {
2024-10-22 12:31:02 -06:00
return clipboard::read().map(move |value_opt| match value_opt {
2025-03-19 12:27:00 -04:00
Some(value) => action::app(Message::PasteValue(entity_opt, value)),
None => action::none(),
2023-12-21 22:13:17 -07:00
});
}
2024-01-20 14:13:04 +01:00
Message::PastePrimary(entity_opt) => {
2024-10-22 12:31:02 -06:00
return clipboard::read_primary().map(move |value_opt| match value_opt {
2025-03-19 12:27:00 -04:00
Some(value) => action::app(Message::PasteValue(entity_opt, value)),
None => action::none(),
2024-01-20 14:13:04 +01:00
});
}
2023-12-22 15:00:50 -07:00
Message::PasteValue(entity_opt, value) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
terminal.paste(value);
}
2023-12-21 22:13:17 -07:00
}
2024-02-05 11:28:41 +01:00
return self.update_focus();
2023-12-21 22:13:17 -07:00
}
2024-02-09 15:45:46 -07:00
Message::ProfileCollapse(_profile_id) => {
self.profile_expanded = None;
}
Message::ProfileCommand(profile_id, text) => {
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
profile.command = text;
return self.save_profiles();
}
}
2024-04-14 21:17:32 +02:00
Message::ProfileDirectory(profile_id, text) => {
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
profile.working_directory = text;
return self.save_profiles();
}
}
2024-02-09 15:45:46 -07:00
Message::ProfileExpand(profile_id) => {
self.profile_expanded = Some(profile_id);
}
Message::ProfileHold(profile_id, drain_on_exit) => {
2024-04-14 21:17:32 +02:00
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
profile.drain_on_exit = drain_on_exit;
2024-04-14 21:17:32 +02:00
return self.save_profiles();
}
}
2024-02-09 15:45:46 -07:00
Message::ProfileName(profile_id, text) => {
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
profile.name = text;
return self.save_profiles();
}
}
Message::ProfileNew => {
// Get next profile ID
let profile_id = self
.config
.profiles
.last_key_value()
.map(|(id, _)| ProfileId(id.0 + 1))
.unwrap_or_default();
self.config.profiles.insert(profile_id, Profile::default());
self.profile_expanded = Some(profile_id);
return self.save_profiles();
}
Message::ProfileOpen(profile_id) => {
return self
.create_and_focus_new_terminal(self.pane_model.focused(), Some(profile_id));
2024-02-09 15:45:46 -07:00
}
Message::ProfileRemove(profile_id) => {
// Reset matching terminals to default profile
for (_pane, tab_model) in self.pane_model.panes.iter() {
for entity in tab_model.iter() {
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
if terminal.profile_id_opt == Some(profile_id) {
terminal.profile_id_opt = None;
}
}
}
}
if Some(profile_id) == self.get_default_profile() {
config_set!(default_profile, None);
}
2024-02-09 15:45:46 -07:00
self.config.profiles.remove(&profile_id);
return self.save_profiles();
}
2024-02-22 11:18:13 -07:00
Message::ProfileSyntaxTheme(profile_id, color_scheme_kind, theme_i) => {
match self
.theme_names(color_scheme_kind)
.get(theme_i)
.map(|x| x.to_string())
{
2024-02-09 15:45:46 -07:00
Some(theme_name) => {
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
2024-02-22 11:18:13 -07:00
match color_scheme_kind {
ColorSchemeKind::Dark => {
profile.syntax_theme_dark = theme_name;
}
ColorSchemeKind::Light => {
profile.syntax_theme_light = theme_name;
}
2024-02-09 15:45:46 -07:00
}
return self.save_profiles();
}
}
None => {
log::warn!("failed to find syntax theme with index {}", theme_i);
}
}
}
Message::ProfileTabTitle(profile_id, text) => {
if let Some(profile) = self.config.profiles.get_mut(&profile_id) {
profile.tab_title = text;
return self.save_profiles();
}
}
2023-12-22 15:00:50 -07:00
Message::SelectAll(entity_opt) => {
if let Some(tab_model) = self.pane_model.active() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.select_all();
}
2023-12-22 15:00:50 -07:00
}
return self.update_focus();
2023-12-22 15:00:50 -07:00
}
2023-12-22 15:40:10 -07:00
Message::ShowHeaderBar(show_headerbar) => {
if show_headerbar != self.config.show_headerbar {
2024-08-20 07:26:46 -06:00
config_set!(show_headerbar, show_headerbar);
return self.update_config();
2023-12-22 15:40:10 -07:00
}
}
Message::UseBrightBold(use_bright_bold) => {
if use_bright_bold != self.config.use_bright_bold {
2024-08-20 07:26:46 -06:00
config_set!(use_bright_bold, use_bright_bold);
return self.update_config();
}
}
2024-02-28 09:15:58 -07:00
Message::ShowAdvancedFontSettings(show) => {
self.show_advanced_font_settings = show;
2024-01-22 16:35:23 +01:00
}
Message::SystemThemeChange => {
2023-12-22 14:31:01 -07:00
return self.update_config();
}
2024-02-22 11:18:13 -07:00
Message::SyntaxTheme(color_scheme_kind, index) => {
match self.theme_names(color_scheme_kind).get(index) {
Some(theme_name) => {
match color_scheme_kind {
ColorSchemeKind::Dark => {
2024-08-20 07:26:46 -06:00
config_set!(syntax_theme_dark, theme_name.to_string());
2024-02-22 11:18:13 -07:00
}
ColorSchemeKind::Light => {
2024-08-20 07:26:46 -06:00
config_set!(syntax_theme_light, theme_name.to_string());
2024-02-22 11:18:13 -07:00
}
}
2024-08-20 07:26:46 -06:00
return self.update_config();
2024-02-22 11:18:13 -07:00
}
None => {
log::warn!("failed to find syntax theme with index {}", index);
2023-12-22 14:31:01 -07:00
}
}
2024-02-22 11:18:13 -07:00
}
2023-12-20 13:31:10 -07:00
Message::TabActivate(entity) => {
if let Some(tab_model) = self.pane_model.active_mut() {
tab_model.activate(entity);
}
return self.update_title(None);
2023-12-20 13:31:10 -07:00
}
Message::TabActivateJump(pos) => {
if let Some(tab_model) = self.pane_model.active() {
// Length is always at least one so there shouldn't be a division by zero
let len = tab_model.iter().count();
// The typical pattern is that 1-8 selects tabs 1-8 while 9 selects the last tab
let pos = if pos >= 8 || pos > len - 1 {
len - 1
} else {
pos % len
};
let entity = tab_model.iter().nth(pos);
if let Some(entity) = entity {
return self.update(Message::TabActivate(entity));
}
}
}
2024-01-09 10:16:32 -07:00
Message::TabClose(entity_opt) => {
if let Some(tab_model) = self.pane_model.active_mut() {
let entity = entity_opt.unwrap_or_else(|| tab_model.active());
// Activate closest item if closing active tab
if entity == tab_model.active()
&& let Some(position) = tab_model.position(entity)
{
if position > 0 {
tab_model.activate_position(position - 1);
} else {
tab_model.activate_position(position + 1);
}
2023-12-20 13:31:10 -07:00
}
2023-12-17 22:51:50 -07:00
// Remove item
tab_model.remove(entity);
2023-12-20 13:31:10 -07:00
2024-01-18 10:15:46 +01:00
// If that was the last tab, close current pane
if tab_model.iter().next().is_none() {
if let Some((_state, sibling)) =
self.pane_model.panes.close(self.pane_model.focused())
{
self.terminal_ids.remove(&self.pane_model.focused());
self.pane_model.set_focus(sibling);
} else {
2024-01-18 10:15:46 +01:00
//Last pane, closing window
2024-10-22 12:31:02 -06:00
if let Some(window_id) = self.core.main_window_id() {
return window::close(window_id);
}
}
}
2023-12-20 13:31:10 -07:00
}
2023-12-18 13:54:08 -07:00
return self.update_title(None);
2023-12-18 13:54:08 -07:00
}
2023-12-22 15:00:50 -07:00
Message::TabContextAction(entity, action) => {
// Close context menu popup
let mut tasks = Vec::new();
if let Some((_popup_id, _, _, _, _, _)) = self.context_menu_popup.take() {
#[cfg(feature = "wayland")]
if is_wayland() {
tasks.push(cosmic::task::message(Message::Surface(
cosmic::surface::action::destroy_popup(_popup_id),
)));
}
}
// Close terminal context menu state
2026-04-10 18:09:25 +02:00
if let Some(tab_model) = self.pane_model.active()
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let mut terminal = terminal.lock().unwrap();
//Some actions need the menu_state,
//so only clear the position for them.
match action {
Action::LaunchUrlByMenu | Action::CopyUrlByMenu => {
if let Some(context_menu) = terminal.context_menu.as_mut() {
context_menu.position = None;
}
}
_ => {
terminal.context_menu = None;
}
2023-12-22 15:00:50 -07:00
}
}
tasks.push(self.update(action.message(Some(entity))));
return cosmic::Task::batch(tasks);
2023-12-22 15:00:50 -07:00
}
2025-10-16 09:27:00 +02:00
Message::TabContextMenu(pane, menu_state) => {
#[allow(unused_mut)]
let mut tasks = Vec::new();
// Close existing context menu popup if any
if let Some((_popup_id, _, _, _, _, _)) = self.context_menu_popup.take() {
#[cfg(feature = "wayland")]
if is_wayland() {
tasks.push(cosmic::task::message(Message::Surface(
cosmic::surface::action::destroy_popup(_popup_id),
)));
}
}
// Clear all terminal context_menu state
for (_, tab_model) in self.pane_model.panes.iter() {
for entity in tab_model.iter() {
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.context_menu = None;
}
}
}
if let Some(menu_state) = menu_state {
if let Some(_position) = menu_state.position {
let local_position = menu_state.local_position.unwrap_or(_position);
if let Some(tab_model) = self.pane_model.panes.get(pane) {
let entity = tab_model.active();
let link = menu_state.link.clone();
let popup_id = window::Id::unique();
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let mut terminal = terminal.lock().unwrap();
terminal.context_menu = Some(menu_state);
}
self.context_menu_popup = Some((
popup_id,
pane,
entity,
link,
widget::Id::unique(),
local_position,
));
#[cfg(feature = "wayland")]
if is_wayland() {
let main_window = self.core.main_window_id().unwrap();
let pos_x = _position.x as i32;
let pos_y = _position.y as i32;
tasks.push(cosmic::task::message(Message::Surface(
cosmic::surface::action::app_popup(move |_app: &mut Self| {
use cosmic::cctk::wayland_protocols::xdg::shell::client::xdg_positioner::{Anchor, Gravity};
use cosmic::iced::runtime::platform_specific::wayland::popup::{SctkPopupSettings, SctkPositioner};
SctkPopupSettings {
parent: main_window,
id: popup_id,
positioner: SctkPositioner {
size: None,
anchor_rect: cosmic::iced::Rectangle {
x: pos_x,
y: pos_y,
width: 1,
height: 1,
},
anchor: Anchor::None,
gravity: Gravity::BottomRight,
reactive: true,
..Default::default()
},
parent_size: None,
grab: true,
close_with_children: false,
input_zone: None,
}
}, None),
)));
}
}
2023-12-22 15:00:50 -07:00
}
self.pane_model.set_focus(pane);
2023-12-22 15:00:50 -07:00
}
return cosmic::Task::batch(tasks);
2023-12-22 15:00:50 -07:00
}
2024-02-09 15:45:46 -07:00
Message::TabNew => {
return self.create_and_focus_new_terminal(
self.pane_model.focused(),
self.get_default_profile(),
2025-09-10 14:33:46 +02:00
);
2024-02-09 15:45:46 -07:00
}
Message::TabNewNoProfile => {
2025-09-10 14:33:46 +02:00
return self.create_and_focus_new_terminal(self.pane_model.focused(), None);
}
Message::TabNext => {
if let Some(tab_model) = self.pane_model.active() {
let len = tab_model.iter().count();
// Next tab position. Wraps around to 0 (first tab) if the last tab is active.
let pos = tab_model
.position(tab_model.active())
.map(|i| (i as usize + 1) % len)
.expect("at least one tab is always open");
let entity = tab_model.iter().nth(pos);
if let Some(entity) = entity {
return self.update(Message::TabActivate(entity));
}
}
}
Message::TabPrev => {
if let Some(tab_model) = self.pane_model.active() {
let pos = tab_model
.position(tab_model.active())
.and_then(|i| (i as usize).checked_sub(1))
.unwrap_or_else(|| tab_model.iter().count().saturating_sub(1));
let entity = tab_model.iter().nth(pos);
if let Some(entity) = entity {
return self.update(Message::TabActivate(entity));
}
}
}
Message::TermEvent(pane, entity, event) => {
match event {
TermEvent::Bell => {
//TODO: audible or visible bell options?
2023-12-18 13:54:08 -07:00
}
2024-03-13 09:12:07 -06:00
TermEvent::ClipboardLoad(kind, callback) => {
match kind {
term::ClipboardType::Clipboard => {
log::info!("clipboard load");
2024-10-22 12:31:02 -06:00
return clipboard::read().map(move |data_opt| {
2024-03-13 09:12:07 -06:00
//TODO: what to do when data_opt is None?
callback(&data_opt.unwrap_or_default());
// We don't need to do anything else
2025-03-19 12:27:00 -04:00
action::none()
2024-03-13 09:12:07 -06:00
});
}
term::ClipboardType::Selection => {
log::info!("TODO: load selection");
}
}
}
TermEvent::ClipboardStore(kind, data) => match kind {
term::ClipboardType::Clipboard => {
log::info!("clipboard store");
return clipboard::write(data);
}
term::ClipboardType::Selection => {
log::info!("TODO: store selection");
}
},
TermEvent::ColorRequest(index, f) => {
2026-04-10 18:09:25 +02:00
if let Some(tab_model) = self.pane_model.panes.get(pane)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let terminal = terminal.lock().unwrap();
let rgb = terminal.colors()[index].unwrap_or_default();
let text = f(rgb);
terminal.input_no_scroll(text.into_bytes());
}
2023-12-18 13:54:08 -07:00
}
2024-03-13 09:12:07 -06:00
TermEvent::CursorBlinkingChange => {
//TODO: should we blink the cursor?
}
TermEvent::Exit => {
return self.update(Message::TabClose(Some(entity)));
2023-12-17 22:51:50 -07:00
}
TermEvent::PtyWrite(text) => {
2026-04-10 18:09:25 +02:00
if let Some(tab_model) = self.pane_model.panes.get(pane)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let terminal = terminal.lock().unwrap();
terminal.input_no_scroll(text.into_bytes());
}
}
TermEvent::ResetTitle => {
if let Some(tab_model) = self.pane_model.panes.get_mut(pane) {
2024-02-20 10:21:30 -07:00
let tab_title_override =
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
terminal.tab_title_override.clone()
} else {
None
};
tab_model.text_set(
entity,
tab_title_override.unwrap_or_else(|| fl!("new-terminal")),
);
}
return self.update_title(Some(pane));
}
TermEvent::TextAreaSizeRequest(f) => {
2026-04-10 18:09:25 +02:00
if let Some(tab_model) = self.pane_model.panes.get(pane)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let terminal = terminal.lock().unwrap();
let text = f(terminal.size().into());
terminal.input_no_scroll(text.into_bytes());
}
}
TermEvent::Title(title) => {
if let Some(tab_model) = self.pane_model.panes.get_mut(pane) {
2024-02-20 10:21:30 -07:00
let has_override =
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
let terminal = terminal.lock().unwrap();
terminal.tab_title_override.is_some()
} else {
false
};
if !has_override {
tab_model.text_set(entity, title);
}
}
return self.update_title(Some(pane));
}
TermEvent::MouseCursorDirty | TermEvent::Wakeup => {
2026-04-10 18:09:25 +02:00
if let Some(tab_model) = self.pane_model.panes.get(pane)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
{
let mut terminal = terminal.lock().unwrap();
terminal.needs_update = true;
}
}
2024-04-05 16:35:17 +02:00
TermEvent::ChildExit(_error_code) => {
//Ignore this for now
}
2023-12-18 13:54:08 -07:00
}
}
2023-12-20 13:31:10 -07:00
Message::TermEventTx(term_event_tx) => {
// Check if the terminal event channel was reset
if self.term_event_tx_opt.is_some() {
// Close tabs using old terminal event channel
log::warn!("terminal event channel reset, closing tabs");
// First, close other panes
while let Some((_state, sibling)) =
self.pane_model.panes.close(self.pane_model.focused())
{
self.terminal_ids.remove(&self.pane_model.focused());
self.pane_model.set_focus(sibling);
}
// Next, close all tabs in the active pane
if let Some(tab_model) = self.pane_model.active_mut() {
let entities: Vec<_> = tab_model.iter().collect();
for entity in entities {
tab_model.remove(entity);
}
}
}
// Set new terminal event channel
2023-12-20 13:31:10 -07:00
self.term_event_tx_opt = Some(term_event_tx);
// Spawn first tab
return self.update(Message::TabNew);
2023-12-18 13:54:08 -07:00
}
2023-12-22 14:31:01 -07:00
Message::ToggleContextPage(context_page) => {
if self.context_page == context_page {
self.core.window.show_context = !self.core.window.show_context;
self.pane_model.update_terminal_focus();
2026-02-05 11:25:53 -07:00
if let ContextPage::KeyboardShortcuts = context_page {
self.shortcut_page_toggle();
}
#[cfg(feature = "password_manager")]
if ContextPage::PasswordManager == context_page {
if self.core.window.show_context {
self.password_mgr.pane = Some(self.pane_model.focused());
return self.password_mgr.refresh_password_list();
} else {
self.password_mgr.clear();
}
}
return self.update_focus();
2023-12-22 14:31:01 -07:00
} else {
self.context_page = context_page;
self.core.window.show_context = true;
self.pane_model.unfocus_all_terminals();
2023-12-22 14:31:01 -07:00
}
// Extra work to do to prepare context pages
if let ContextPage::ColorSchemes(color_scheme_kind) = self.context_page {
self.color_scheme_errors.clear();
self.color_scheme_expanded = None;
self.color_scheme_renaming = None;
self.color_scheme_tab_model = widget::segmented_button::Model::default();
let dark_entity = self
.color_scheme_tab_model
.insert()
.text(fl!("dark"))
.data(ColorSchemeKind::Dark)
.id();
let light_entity = self
.color_scheme_tab_model
.insert()
.text(fl!("light"))
.data(ColorSchemeKind::Light)
.id();
self.color_scheme_tab_model
.activate(match color_scheme_kind {
ColorSchemeKind::Dark => dark_entity,
ColorSchemeKind::Light => light_entity,
});
}
2024-02-09 09:35:24 +01:00
if let ContextPage::KeyboardShortcuts = context_page {
2026-02-05 11:25:53 -07:00
self.shortcut_page_toggle();
return self.update_focus();
}
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
if ContextPage::PasswordManager == context_page {
self.password_mgr.pane = Some(self.pane_model.focused());
return self.password_mgr.refresh_password_list();
2024-02-09 09:35:24 +01:00
}
2023-12-22 14:31:01 -07:00
}
2024-02-28 09:15:58 -07:00
Message::UpdateDefaultProfile((default, profile_id)) => {
config_set!(default_profile, default.then_some(profile_id));
}
2024-01-09 10:16:32 -07:00
Message::WindowClose => {
2024-10-22 12:31:02 -06:00
if let Some(window_id) = self.core.main_window_id() {
return window::close(window_id);
}
2024-01-09 10:16:32 -07:00
}
Message::WindowNew => match env::current_exe() {
Ok(exe) => match process::Command::new(&exe).spawn() {
Ok(_child) => {}
Err(err) => {
log::error!("failed to execute {:?}: {}", exe, err);
}
},
Err(err) => {
log::error!("failed to get current executable path: {}", err);
}
},
Message::WindowFocused => {
if !self.core.window.show_context {
self.pane_model.update_terminal_focus();
}
return self.update_focus();
}
Message::WindowUnfocused => {
self.pane_model.unfocus_all_terminals();
}
2024-01-09 10:16:32 -07:00
Message::ZoomIn => {
return self.update_render_active_pane_zoom(message);
2024-01-09 10:16:32 -07:00
}
Message::ZoomOut => {
return self.update_render_active_pane_zoom(message);
2024-01-09 10:16:32 -07:00
}
Message::ZoomReset => {
self.reset_terminal_panes_zoom();
2024-08-20 07:26:46 -06:00
return self.update_config();
2024-01-09 10:16:32 -07:00
}
Message::ContextMenuPopupClosed(id) => {
2026-04-10 18:09:25 +02:00
if let Some((popup_id, pane, entity, _, _, _)) = &self.context_menu_popup
&& id == *popup_id
{
// Clear link underline on the terminal
if let Some(tab_model) = self.pane_model.panes.get(*pane)
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(*entity)
{
let mut terminal = terminal.lock().unwrap();
terminal.context_menu = None;
terminal.active_regex_match = None;
terminal.needs_update = true;
}
self.context_menu_popup = None;
}
}
2025-03-19 12:27:00 -04:00
Message::Surface(a) => {
return cosmic::task::message(cosmic::Action::Cosmic(
cosmic::app::Action::Surface(a),
));
}
2026-01-28 20:08:44 -05:00
Message::ReorderTab(
pane,
ReorderEvent {
dragged,
target,
position,
},
) => {
let Some(p) = self.pane_model.panes.get_mut(pane) else {
log::error!("Failed to find reordered tab model.");
return Task::none();
};
_ = p.reorder(dragged, target, position);
}
2023-12-20 13:31:10 -07:00
}
2023-12-18 13:54:08 -07:00
2024-10-22 12:31:02 -06:00
Task::none()
2023-12-20 13:31:10 -07:00
}
2023-12-18 13:54:08 -07:00
2025-09-10 14:33:46 +02:00
fn context_drawer(&self) -> Option<context_drawer::ContextDrawer<'_, Message>> {
2023-12-22 14:31:01 -07:00
if !self.core.window.show_context {
return None;
}
Some(match self.context_page {
ContextPage::About => context_drawer::about(
&self.about,
2025-10-03 14:56:47 -04:00
|s| Message::LaunchUrl(s.to_string()),
2024-12-02 23:26:14 +01:00
Message::ToggleContextPage(ContextPage::About),
),
ContextPage::ColorSchemes(color_scheme_kind) => context_drawer::context_drawer(
self.color_schemes(color_scheme_kind),
Message::ToggleContextPage(ContextPage::ColorSchemes(color_scheme_kind)),
)
.title(fl!("color-schemes")),
ContextPage::KeyboardShortcuts => context_drawer::context_drawer(
self.keyboard_shortcuts(),
Message::ToggleContextPage(ContextPage::KeyboardShortcuts),
)
.title(fl!("keyboard-shortcuts")),
2024-12-02 23:26:14 +01:00
ContextPage::Profiles => context_drawer::context_drawer(
self.profiles(),
Message::ToggleContextPage(ContextPage::Profiles),
)
.title(fl!("profiles")),
ContextPage::Settings => context_drawer::context_drawer(
self.settings(),
Message::ToggleContextPage(ContextPage::Settings),
)
.title(fl!("settings")),
2024-02-09 09:35:24 +01:00
#[cfg(feature = "password_manager")]
ContextPage::PasswordManager => context_drawer::context_drawer(
self.password_mgr.context_page(self.core.system_theme()),
Message::ToggleContextPage(ContextPage::PasswordManager),
)
.title(fl!("passwords-title")),
2023-12-22 14:31:01 -07:00
})
}
fn dialog(&self) -> Option<Element<'_, Message>> {
let conflict = self.shortcut_conflict.as_ref()?;
let binding = shortcuts::binding_display(&conflict.binding);
let existing = shortcuts::action_label(conflict.existing_action);
let new_action = shortcuts::action_label(conflict.new_action);
let body = fl!(
"shortcut-replace-body",
binding = binding.as_str(),
existing = existing.as_str(),
new_action = new_action.as_str()
);
Some(
widget::dialog()
.title(fl!("shortcut-replace-title"))
.body(body)
.primary_action(
widget::button::suggested(fl!("replace"))
.on_press(Message::ShortcutConflictReplace),
)
.secondary_action(
widget::button::standard(fl!("cancel"))
.on_press(Message::ShortcutConflictCancel),
)
.into(),
)
}
2025-09-10 14:33:46 +02:00
fn header_start(&self) -> Vec<Element<'_, Self::Message>> {
2025-04-15 17:38:49 -04:00
vec![menu_bar(&self.core, &self.config, &self.key_binds)]
2023-12-22 14:31:01 -07:00
}
2025-09-10 14:33:46 +02:00
fn header_end(&self) -> Vec<Element<'_, Self::Message>> {
2024-09-20 19:44:36 -06:00
vec![
widget::button::custom(icon_cache_get("list-add-symbolic", 16))
.on_press(Message::TabNew)
.padding(8)
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon)
2024-09-20 19:44:36 -06:00
.into(),
]
}
fn on_close_requested(&self, id: window::Id) -> Option<Self::Message> {
2026-04-10 18:09:25 +02:00
if let Some((popup_id, _, _, _, _, _)) = &self.context_menu_popup
&& id == *popup_id
{
return Some(Message::ContextMenuPopupClosed(id));
}
None
}
2025-09-10 14:33:46 +02:00
fn view_window(&self, window_id: window::Id) -> Element<'_, Message> {
if let Some((popup_id, _pane, entity, ref link, ref autosize_id, _)) =
self.context_menu_popup
&& window_id == popup_id
{
return widget::autosize::autosize(
menu::context_menu(&self.config, &self.key_binds, entity, link.clone()),
autosize_id.clone(),
)
.into();
}
match &self.dialog_opt {
Some(dialog) => dialog.view(window_id),
None => widget::text("Unknown window ID").into(),
}
}
2023-12-20 13:31:10 -07:00
/// Creates a view after each update.
2025-09-10 14:33:46 +02:00
fn view(&self) -> Element<'_, Self::Message> {
let cosmic_theme::Spacing { space_xxs, .. } = self.core().system_theme().cosmic().spacing;
2024-02-12 12:36:30 -07:00
let pane_grid = PaneGrid::new(&self.pane_model.panes, |pane, tab_model, _is_maximized| {
let mut tab_column = widget::column::with_capacity(1);
if tab_model.iter().count() > 1 {
tab_column = tab_column.push(
widget::container(
2024-02-26 15:19:54 -07:00
widget::tab_bar::horizontal(tab_model)
2026-01-28 20:08:44 -05:00
.enable_tab_drag(String::from("x-cosmic-term/tab"))
.on_reorder(move |event| Message::ReorderTab(pane, event))
.tab_drag_threshold(25.)
.button_height(32)
.button_spacing(space_xxs)
.on_activate(Message::TabActivate)
.on_close(|entity| Message::TabClose(Some(entity))),
)
.class(style::Container::Custom(Box::new(|theme| {
let cosmic = theme.cosmic();
cosmic::iced::widget::container::Style {
icon_color: Some(Color::from(cosmic.background.on)),
text_color: Some(Color::from(cosmic.background.on)),
background: Some(iced::Background::Color(
cosmic.background.base.into(),
)),
border: iced::Border::default(),
shadow: iced::Shadow::default(),
snap: true,
}
})))
.width(Length::Fill),
);
}
2023-12-20 13:31:10 -07:00
let entity = tab_model.active();
2024-01-21 21:13:13 +01:00
let entity_middle_click = tab_model.active();
let terminal_id = self
.terminal_ids
.get(&pane)
.cloned()
.unwrap_or_else(widget::Id::unique);
if let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity) {
2025-12-29 20:42:52 -08:00
let mut terminal_box = terminal_box(terminal, &self.key_binds)
.id(terminal_id)
.disabled(self.core.window.show_context)
2025-10-16 09:27:00 +02:00
.on_context_menu(move |menu_state| Message::TabContextMenu(pane, menu_state))
.on_middle_click(move || Message::MiddleClick(pane, Some(entity_middle_click)))
2024-11-17 01:47:50 +01:00
.on_open_hyperlink(Some(Box::new(Message::LaunchUrl)))
.on_window_focused(|| Message::WindowFocused)
.on_window_unfocused(|| Message::WindowUnfocused)
.opacity(self.config.opacity_ratio())
.padding(space_xxs)
2025-10-06 15:02:34 -04:00
.sharp_corners(self.core.window.sharp_corners)
.show_headerbar(self.config.show_headerbar);
if self.config.focus_follow_mouse {
terminal_box = terminal_box.on_mouse_enter(move || Message::MouseEnter(pane));
}
// If a context menu popup is active for this pane, inform the
// terminal_box so it will emit on_context_menu(None) on click
// to dismiss the popup.
if self.context_menu_popup.is_some() {
terminal_box = terminal_box.context_menu(cosmic::iced::Point::ORIGIN);
}
let use_wayland_popup = {
#[cfg(feature = "wayland")]
{
is_wayland()
}
#[cfg(not(feature = "wayland"))]
{
false
}
};
let tab_element: Element<'_, Message> = if !use_wayland_popup {
// Fallback: render context menu as an inline popover
if let Some((_, popup_pane, popup_entity, ref link, _, point)) =
self.context_menu_popup
{
if pane == popup_pane {
let mut popover = widget::popover(terminal_box.context_menu(point));
popover = popover
.popup(menu::context_menu(
&self.config,
&self.key_binds,
popup_entity,
link.clone(),
))
.position(widget::popover::Position::Point(point));
popover.into()
} else {
terminal_box.into()
}
} else {
terminal_box.into()
}
} else {
terminal_box.into()
};
tab_column = tab_column.push(tab_element);
}
2023-12-20 13:31:10 -07:00
//Only draw find in the currently focused pane
if self.find && pane == self.pane_model.focused() {
let find_input = widget::text_input::text_input(
fl!("find-placeholder"),
&self.find_search_value,
)
.id(self.find_search_id.clone())
.on_input(Message::FindSearchValueChanged)
// This is inverted for ease of use, usually in terminals you want to search
// upwards, which is FindPrevious
2025-03-19 12:27:00 -04:00
.on_submit(|_| {
if self.modifiers.contains(Modifiers::SHIFT) {
Message::FindNext
} else {
Message::FindPrevious
}
})
.width(Length::Fixed(320.0))
.trailing_icon(
2024-09-20 19:44:36 -06:00
button::custom(icon_cache_get("edit-clear-symbolic", 16))
.on_press(Message::FindSearchValueChanged(String::new()))
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon)
.into(),
);
let find_widget = widget::row::with_children(vec![
find_input.into(),
widget::tooltip(
2024-09-20 19:44:36 -06:00
button::custom(icon_cache_get("go-up-symbolic", 16))
.on_press(Message::FindPrevious)
.padding(space_xxs)
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon),
widget::text::body(fl!("find-previous")),
widget::tooltip::Position::Top,
2023-12-22 15:00:50 -07:00
)
.into(),
widget::tooltip(
2024-09-20 19:44:36 -06:00
button::custom(icon_cache_get("go-down-symbolic", 16))
.on_press(Message::FindNext)
.padding(space_xxs)
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon),
widget::text::body(fl!("find-next")),
widget::tooltip::Position::Top,
)
.into(),
2026-03-18 12:21:57 -04:00
widget::space::horizontal().into(),
2024-09-20 19:44:36 -06:00
button::custom(icon_cache_get("window-close-symbolic", 16))
.on_press(Message::Find(false))
.padding(space_xxs)
2024-10-22 12:31:02 -06:00
.class(style::Button::Icon)
.into(),
])
2024-10-22 12:31:02 -06:00
.align_y(Alignment::Center)
.padding(space_xxs)
.spacing(space_xxs);
2024-03-18 15:05:53 -06:00
tab_column = tab_column
.push(widget::layer_container(find_widget).layer(cosmic_theme::Layer::Primary));
} else {
// TODO
2023-12-18 13:54:08 -07:00
}
2023-12-17 17:49:39 -07:00
DndDestination::for_data::<DndDrop>(tab_column, move |data, action| {
if let Some(data) = data {
if action == DndAction::Move {
Message::Drop(Some((pane, entity, data)))
} else {
log::warn!("unsuppported action: {:?}", action);
Message::Drop(None)
}
} else {
Message::Drop(None)
}
})
.apply(pane_grid::Content::new)
})
.width(Length::Fill)
.height(Length::Fill)
.on_click(Message::PaneClicked)
.on_resize(space_xxs, Message::PaneResized)
.on_drag(Message::PaneDragged);
2024-02-12 12:36:30 -07:00
//TODO: apply window border radius xs at bottom of window
2024-02-12 10:50:29 -07:00
pane_grid.into()
2023-12-20 13:31:10 -07:00
}
2023-12-18 13:54:08 -07:00
fn system_theme_update(
&mut self,
_keys: &[&'static str],
2025-09-10 14:33:46 +02:00
_new_theme: &cosmic::cosmic_theme::Theme,
) -> Task<Self::Message> {
self.update(Message::SystemThemeChange)
}
2023-12-20 13:31:10 -07:00
fn subscription(&self) -> Subscription<Self::Message> {
2023-12-22 14:31:01 -07:00
struct ConfigSubscription;
struct TerminalEventSubscription;
2023-12-21 22:13:17 -07:00
Subscription::batch([
2024-10-22 12:31:02 -06:00
event::listen_with(|event, _status, _window_id| match event {
Event::Keyboard(KeyEvent::KeyPressed { key, modifiers, .. }) => {
Some(Message::Key(modifiers, key))
}
2024-01-11 13:20:16 -07:00
Event::Keyboard(KeyEvent::ModifiersChanged(modifiers)) => {
Some(Message::Modifiers(modifiers))
}
2024-01-21 21:13:13 +01:00
Event::Mouse(MouseEvent::ButtonReleased(MouseButton::Left)) => {
Some(Message::CopyPrimary(None))
}
2023-12-21 22:13:17 -07:00
_ => None,
}),
2026-03-18 12:21:57 -04:00
Subscription::run_with(TypeId::of::<TerminalEventSubscription>(), |_| {
stream::channel(
100,
|mut output: iced::futures::channel::mpsc::Sender<Message>| async move {
let (event_tx, mut event_rx) = mpsc::unbounded_channel();
output.send(Message::TermEventTx(event_tx)).await.unwrap();
while let Some((pane, entity, event)) = event_rx.recv().await {
output
.send(Message::TermEvent(pane, entity, event))
.await
.unwrap();
}
2023-12-18 13:54:08 -07:00
2026-03-18 12:21:57 -04:00
panic!("terminal event channel closed");
},
)
}),
2023-12-22 14:31:01 -07:00
cosmic_config::config_subscription(
TypeId::of::<ConfigSubscription>(),
Self::APP_ID.into(),
CONFIG_VERSION,
)
2024-01-19 09:46:06 -07:00
.map(|update| {
if !update.errors.is_empty() {
log::debug!(
"errors loading config {:?}: {:?}",
update.keys,
update.errors
);
2023-12-22 14:31:01 -07:00
}
Message::Config(Box::new(update.config))
2023-12-22 14:31:01 -07:00
}),
match &self.dialog_opt {
Some(dialog) => dialog.subscription(),
2024-10-22 12:31:02 -06:00
None => Subscription::none(),
},
2023-12-21 22:13:17 -07:00
])
2023-12-20 13:31:10 -07:00
}
}
#[cfg(feature = "wayland")]
fn is_wayland() -> bool {
matches!(
cosmic::app::cosmic::windowing_system(),
Some(cosmic::app::cosmic::WindowingSystem::Wayland)
)
}