Fix text coloring
This commit is contained in:
parent
c4ecd43ea0
commit
bc31984362
49
src/color.rs
49
src/color.rs
@ -1,14 +1,15 @@
|
|||||||
|
use std;
|
||||||
use gdk;
|
use gdk;
|
||||||
use ui_model::Cell;
|
use ui_model::Cell;
|
||||||
|
|
||||||
#[derive(Clone, PartialEq)]
|
#[derive(Clone, PartialEq, Debug)]
|
||||||
pub struct Color(pub f64, pub f64, pub f64);
|
pub struct Color(pub f64, pub f64, pub f64);
|
||||||
|
|
||||||
pub const COLOR_BLACK: Color = Color(0.0, 0.0, 0.0);
|
pub const COLOR_BLACK: Color = Color(0.0, 0.0, 0.0);
|
||||||
pub const COLOR_WHITE: Color = Color(1.0, 1.0, 1.0);
|
pub const COLOR_WHITE: Color = Color(1.0, 1.0, 1.0);
|
||||||
pub const COLOR_RED: Color = Color(1.0, 0.0, 0.0);
|
pub const COLOR_RED: Color = Color(1.0, 0.0, 0.0);
|
||||||
|
|
||||||
impl <'a> Into<gdk::RGBA> for &'a Color {
|
impl<'a> Into<gdk::RGBA> for &'a Color {
|
||||||
fn into(self) -> gdk::RGBA {
|
fn into(self) -> gdk::RGBA {
|
||||||
gdk::RGBA {
|
gdk::RGBA {
|
||||||
red: self.0,
|
red: self.0,
|
||||||
@ -19,6 +20,23 @@ impl <'a> Into<gdk::RGBA> for &'a Color {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Color {
|
||||||
|
pub fn from_indexed_color(indexed_color: u64) -> Color {
|
||||||
|
let r = ((indexed_color >> 16) & 0xff) as f64;
|
||||||
|
let g = ((indexed_color >> 8) & 0xff) as f64;
|
||||||
|
let b = (indexed_color & 0xff) as f64;
|
||||||
|
Color(r / 255.0, g / 255.0, b / 255.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn to_u16(&self) -> (u16, u16, u16) {
|
||||||
|
(
|
||||||
|
(std::u16::MAX as f64 * self.0) as u16,
|
||||||
|
(std::u16::MAX as f64 * self.1) as u16,
|
||||||
|
(std::u16::MAX as f64 * self.2) as u16,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct ColorModel {
|
pub struct ColorModel {
|
||||||
pub bg_color: Color,
|
pub bg_color: Color,
|
||||||
pub fg_color: Color,
|
pub fg_color: Color,
|
||||||
@ -35,21 +53,24 @@ impl ColorModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn cell_colors<'a>(&'a self, cell: &'a Cell) -> (&'a Color, &'a Color) {
|
pub fn cell_colors<'a>(&'a self, cell: &'a Cell) -> (&'a Color, &'a Color) {
|
||||||
let bg = if let Some(ref bg) = cell.attrs.background {
|
if !cell.attrs.reverse {
|
||||||
bg
|
(
|
||||||
|
cell.attrs.background.as_ref().unwrap_or(&self.bg_color),
|
||||||
|
cell.attrs.foreground.as_ref().unwrap_or(&self.fg_color),
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
&self.bg_color
|
(
|
||||||
};
|
cell.attrs.foreground.as_ref().unwrap_or(&self.fg_color),
|
||||||
let fg = if let Some(ref fg) = cell.attrs.foreground {
|
cell.attrs.background.as_ref().unwrap_or(&self.bg_color),
|
||||||
fg
|
)
|
||||||
} else {
|
}
|
||||||
&self.fg_color
|
}
|
||||||
};
|
|
||||||
|
|
||||||
if cell.attrs.reverse {
|
pub fn cell_fg<'a>(&'a self, cell: &'a Cell) -> Option<&'a Color> {
|
||||||
(fg, bg)
|
if !cell.attrs.reverse {
|
||||||
|
cell.attrs.foreground.as_ref()
|
||||||
} else {
|
} else {
|
||||||
(bg, fg)
|
cell.attrs.background.as_ref().or(Some(&self.bg_color))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
19
src/shell.rs
19
src/shell.rs
@ -985,13 +985,6 @@ fn request_window_resize(state: &mut State) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn split_color(indexed_color: u64) -> Color {
|
|
||||||
let r = ((indexed_color >> 16) & 0xff) as f64;
|
|
||||||
let g = ((indexed_color >> 8) & 0xff) as f64;
|
|
||||||
let b = (indexed_color & 0xff) as f64;
|
|
||||||
Color(r / 255.0, g / 255.0, b / 255.0)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn try_nvim_resize(state: &Arc<UiMutex<State>>) {
|
fn try_nvim_resize(state: &Arc<UiMutex<State>>) {
|
||||||
let mut state_ref = state.borrow_mut();
|
let mut state_ref = state.borrow_mut();
|
||||||
|
|
||||||
@ -1074,17 +1067,17 @@ impl RedrawEvents for State {
|
|||||||
match key {
|
match key {
|
||||||
"foreground" => {
|
"foreground" => {
|
||||||
if let Some(fg) = val.as_u64() {
|
if let Some(fg) = val.as_u64() {
|
||||||
model_attrs.foreground = Some(split_color(fg));
|
model_attrs.foreground = Some(Color::from_indexed_color(fg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"background" => {
|
"background" => {
|
||||||
if let Some(bg) = val.as_u64() {
|
if let Some(bg) = val.as_u64() {
|
||||||
model_attrs.background = Some(split_color(bg));
|
model_attrs.background = Some(Color::from_indexed_color(bg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"special" => {
|
"special" => {
|
||||||
if let Some(bg) = val.as_u64() {
|
if let Some(bg) = val.as_u64() {
|
||||||
model_attrs.special = Some(split_color(bg));
|
model_attrs.special = Some(Color::from_indexed_color(bg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"reverse" => model_attrs.reverse = true,
|
"reverse" => model_attrs.reverse = true,
|
||||||
@ -1105,7 +1098,7 @@ impl RedrawEvents for State {
|
|||||||
|
|
||||||
fn on_update_bg(&mut self, bg: i64) -> RepaintMode {
|
fn on_update_bg(&mut self, bg: i64) -> RepaintMode {
|
||||||
if bg >= 0 {
|
if bg >= 0 {
|
||||||
self.color_model.bg_color = split_color(bg as u64);
|
self.color_model.bg_color = Color::from_indexed_color(bg as u64);
|
||||||
} else {
|
} else {
|
||||||
self.color_model.bg_color = COLOR_BLACK;
|
self.color_model.bg_color = COLOR_BLACK;
|
||||||
}
|
}
|
||||||
@ -1114,7 +1107,7 @@ impl RedrawEvents for State {
|
|||||||
|
|
||||||
fn on_update_fg(&mut self, fg: i64) -> RepaintMode {
|
fn on_update_fg(&mut self, fg: i64) -> RepaintMode {
|
||||||
if fg >= 0 {
|
if fg >= 0 {
|
||||||
self.color_model.fg_color = split_color(fg as u64);
|
self.color_model.fg_color = Color::from_indexed_color(fg as u64);
|
||||||
} else {
|
} else {
|
||||||
self.color_model.fg_color = COLOR_WHITE;
|
self.color_model.fg_color = COLOR_WHITE;
|
||||||
}
|
}
|
||||||
@ -1123,7 +1116,7 @@ impl RedrawEvents for State {
|
|||||||
|
|
||||||
fn on_update_sp(&mut self, sp: i64) -> RepaintMode {
|
fn on_update_sp(&mut self, sp: i64) -> RepaintMode {
|
||||||
if sp >= 0 {
|
if sp >= 0 {
|
||||||
self.color_model.sp_color = split_color(sp as u64);
|
self.color_model.sp_color = Color::from_indexed_color(sp as u64);
|
||||||
} else {
|
} else {
|
||||||
self.color_model.sp_color = COLOR_RED;
|
self.color_model.sp_color = COLOR_RED;
|
||||||
}
|
}
|
||||||
|
@ -314,12 +314,21 @@ fn insert_attrs(
|
|||||||
attr.set_end_index(end_idx);
|
attr.set_end_index(end_idx);
|
||||||
attr_list.insert(attr);
|
attr_list.insert(attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
if cell.attrs.bold {
|
if cell.attrs.bold {
|
||||||
let mut attr = pango::Attribute::new_weight(pango::Weight::Bold).unwrap();
|
let mut attr = pango::Attribute::new_weight(pango::Weight::Bold).unwrap();
|
||||||
attr.set_start_index(start_idx);
|
attr.set_start_index(start_idx);
|
||||||
attr.set_end_index(end_idx);
|
attr.set_end_index(end_idx);
|
||||||
attr_list.insert(attr);
|
attr_list.insert(attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let Some(fg) = color_model.cell_fg(cell) {
|
||||||
|
let (r, g, b) = fg.to_u16();
|
||||||
|
let mut attr = pango::Attribute::new_foreground(r, g, b).unwrap();
|
||||||
|
attr.set_start_index(start_idx);
|
||||||
|
attr.set_end_index(end_idx);
|
||||||
|
attr_list.insert(attr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
@ -333,7 +342,7 @@ mod tests {
|
|||||||
line[1].ch = 'b';
|
line[1].ch = 'b';
|
||||||
line[2].ch = 'c';
|
line[2].ch = 'c';
|
||||||
|
|
||||||
let styled_line = StyledLine::from(&line);
|
let styled_line = StyledLine::from(&line, &color::ColorModel::new());
|
||||||
assert_eq!("abc", styled_line.line_str);
|
assert_eq!("abc", styled_line.line_str);
|
||||||
assert_eq!(3, styled_line.cell_to_byte.len());
|
assert_eq!(3, styled_line.cell_to_byte.len());
|
||||||
assert_eq!(0, styled_line.cell_to_byte[0]);
|
assert_eq!(0, styled_line.cell_to_byte[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user