mirror of
https://github.com/herdrdev/herdr.git
synced 2026-09-25 16:01:16 +00:00
* fix(theme): refresh host appearance on focus refs #2416 * fix(input): preserve split appearance replies refs #2416 * fix(input): retain fragmented appearance reports refs #2416 --------- Co-authored-by: akbash-bot <300245827+akbash-bot@users.noreply.github.com> Co-authored-by: Can Celik <ogulcancelik@gmail.com>
124 lines
4.2 KiB
Rust
124 lines
4.2 KiB
Rust
use super::App;
|
|
|
|
impl App {
|
|
#[cfg(not(windows))]
|
|
pub(super) fn query_host_terminal_appearance(&self) {
|
|
use std::io::Write;
|
|
|
|
let _ = std::io::stdout()
|
|
.write_all(crate::terminal_theme::HOST_COLOR_SCHEME_QUERY_SEQUENCE.as_bytes());
|
|
let _ = std::io::stdout().flush();
|
|
}
|
|
|
|
pub(super) fn query_host_terminal_theme(&self) {
|
|
use std::io::Write;
|
|
|
|
let query = crate::terminal_theme::host_terminal_theme_query_sequence();
|
|
let _ = std::io::stdout().write_all(query.as_bytes());
|
|
let _ = std::io::stdout().flush();
|
|
}
|
|
|
|
pub(super) fn update_host_terminal_theme(
|
|
&mut self,
|
|
kind: crate::terminal_theme::DefaultColorKind,
|
|
color: crate::terminal_theme::RgbColor,
|
|
) -> bool {
|
|
let mut changed = false;
|
|
if matches!(kind, crate::terminal_theme::DefaultColorKind::Background)
|
|
&& !self.state.host_terminal_appearance_explicit
|
|
{
|
|
changed |= self.set_host_terminal_appearance(color.inferred_appearance(), false);
|
|
}
|
|
let next_theme = self.state.host_terminal_theme.with_color(kind, color);
|
|
changed | self.set_host_terminal_theme(next_theme)
|
|
}
|
|
|
|
pub(super) fn update_host_terminal_palette_colors(
|
|
&mut self,
|
|
colors: &[(u8, crate::terminal_theme::RgbColor)],
|
|
) -> bool {
|
|
let mut next_theme = self.state.host_terminal_theme;
|
|
for &(index, color) in colors {
|
|
next_theme = next_theme.with_palette_color(index, color);
|
|
}
|
|
self.set_host_terminal_theme(next_theme)
|
|
}
|
|
|
|
pub(super) fn set_host_terminal_appearance(
|
|
&mut self,
|
|
appearance: crate::terminal_theme::HostAppearance,
|
|
explicit: bool,
|
|
) -> bool {
|
|
if self.state.host_terminal_appearance == Some(appearance)
|
|
&& self.state.host_terminal_appearance_explicit == explicit
|
|
{
|
|
return false;
|
|
}
|
|
if self.state.host_terminal_appearance_explicit && !explicit {
|
|
return false;
|
|
}
|
|
self.state.host_terminal_appearance = Some(appearance);
|
|
self.state.host_terminal_appearance_explicit = explicit;
|
|
self.apply_host_terminal_appearance_to_panes();
|
|
self.refresh_effective_app_theme()
|
|
}
|
|
|
|
pub(crate) fn set_host_terminal_appearance_state(
|
|
&mut self,
|
|
appearance: Option<crate::terminal_theme::HostAppearance>,
|
|
explicit: bool,
|
|
) -> bool {
|
|
if self.state.host_terminal_appearance == appearance
|
|
&& self.state.host_terminal_appearance_explicit == explicit
|
|
{
|
|
return false;
|
|
}
|
|
self.state.host_terminal_appearance = appearance;
|
|
self.state.host_terminal_appearance_explicit = explicit;
|
|
self.apply_host_terminal_appearance_to_panes();
|
|
self.refresh_effective_app_theme()
|
|
}
|
|
|
|
pub(crate) fn set_host_terminal_theme(
|
|
&mut self,
|
|
theme: crate::terminal_theme::TerminalTheme,
|
|
) -> bool {
|
|
if theme == self.state.host_terminal_theme {
|
|
return false;
|
|
}
|
|
self.state.host_terminal_theme = theme;
|
|
self.apply_host_terminal_theme_to_panes();
|
|
true
|
|
}
|
|
|
|
pub(super) fn refresh_effective_app_theme(&mut self) -> bool {
|
|
let (palette, theme_name) = super::resolve_effective_theme(
|
|
&self.state.theme_runtime,
|
|
self.state.host_terminal_appearance,
|
|
);
|
|
if self.state.theme_name == theme_name && self.state.palette == palette {
|
|
return false;
|
|
}
|
|
self.state.theme_name = theme_name;
|
|
self.state.palette = palette;
|
|
self.render_dirty.request_generic();
|
|
self.render_notify.notify_one();
|
|
true
|
|
}
|
|
|
|
fn apply_host_terminal_appearance_to_panes(&self) {
|
|
for runtime in self.terminal_runtimes.values() {
|
|
runtime.apply_host_terminal_appearance(self.state.host_terminal_appearance);
|
|
}
|
|
}
|
|
|
|
fn apply_host_terminal_theme_to_panes(&self) {
|
|
for runtime in self.terminal_runtimes.values() {
|
|
runtime.apply_host_terminal_theme(self.state.host_terminal_theme);
|
|
}
|
|
|
|
self.render_dirty.request_generic();
|
|
self.render_notify.notify_one();
|
|
}
|
|
}
|