neovim-gtk/src/render/mod.rs

114 lines
3.2 KiB
Rust
Raw Normal View History

2017-08-24 14:41:20 +00:00
mod context;
2017-08-31 15:37:55 +00:00
pub use self::context::Context;
2017-09-05 15:23:46 +00:00
pub use self::context::CellMetrics;
2017-08-31 15:37:55 +00:00
use color;
use sys::pango::*;
use pango;
use cairo;
2017-08-26 20:17:09 +00:00
use pangocairo::CairoContextExt;
2017-08-24 14:41:20 +00:00
use ui_model;
2017-08-25 15:32:30 +00:00
pub fn render(
ctx: &cairo::Context,
2017-09-06 14:18:30 +00:00
font_ctx: &context::Context,
2017-08-31 15:37:55 +00:00
ui_model: &ui_model::UiModel,
color_model: &color::ColorModel,
2017-08-25 15:32:30 +00:00
) {
2017-09-07 14:48:10 +00:00
// TODO: underline
// TODO: undercurl
// TODO: cursor
2017-08-31 15:37:55 +00:00
ctx.set_source_rgb(
color_model.bg_color.0,
color_model.bg_color.1,
color_model.bg_color.2,
);
ctx.paint();
2017-08-25 15:32:30 +00:00
2017-09-06 14:18:30 +00:00
let &CellMetrics {
line_height,
char_width,
..
} = font_ctx.cell_metrics();
2017-09-05 15:23:46 +00:00
let mut line_y = 0.0;
let ascent = font_ctx.ascent();
2017-08-26 20:17:09 +00:00
2017-08-31 15:37:55 +00:00
for line in ui_model.model() {
2017-08-27 19:29:43 +00:00
let mut line_x = 0.0;
2017-08-31 15:37:55 +00:00
2017-08-25 15:32:30 +00:00
for i in 0..line.line.len() {
2017-09-05 15:23:46 +00:00
2017-08-31 15:37:55 +00:00
if let Some(item) = line.item_line[i].as_ref() {
2017-09-06 14:18:30 +00:00
let (bg, fg) = color_model.cell_colors(&line.line[i]);
if let Some(bg) = bg {
ctx.set_source_rgb(bg.0, bg.1, bg.2);
ctx.rectangle(
line_x,
line_y,
char_width * line.item_len_from_idx(i) as f64,
2017-09-06 14:18:30 +00:00
line_height,
);
ctx.fill();
}
2017-08-25 15:32:30 +00:00
if let Some(ref glyphs) = item.glyphs {
2017-09-05 15:23:46 +00:00
ctx.move_to(line_x, line_y + ascent);
2017-08-31 15:37:55 +00:00
ctx.set_source_rgb(fg.0, fg.1, fg.2);
2017-08-26 20:17:09 +00:00
ctx.show_glyph_string(item.font(), glyphs);
2017-08-25 15:32:30 +00:00
}
2017-09-06 14:18:30 +00:00
} else if !line.is_binded_to_item(i) {
let bg = color_model.cell_bg(&line.line[i]);
if let Some(bg) = bg {
ctx.set_source_rgb(bg.0, bg.1, bg.2);
ctx.rectangle(line_x, line_y, char_width, line_height);
ctx.fill();
}
2017-08-25 15:32:30 +00:00
}
2017-08-27 19:29:43 +00:00
line_x += char_width;
2017-08-25 15:32:30 +00:00
}
2017-08-26 20:17:09 +00:00
line_y += line_height;
2017-08-25 15:32:30 +00:00
}
}
2017-09-04 15:32:12 +00:00
pub fn shape_dirty(
ctx: &context::Context,
ui_model: &mut ui_model::UiModel,
color_model: &color::ColorModel,
) {
2017-08-25 15:32:30 +00:00
for line in ui_model.model_mut() {
if line.dirty_line {
2017-09-04 15:32:12 +00:00
let styled_line = ui_model::StyledLine::from(line, color_model);
2017-08-25 15:32:30 +00:00
let items = ctx.itemize(&styled_line);
line.merge(&styled_line, &items);
for i in 0..line.line.len() {
if line[i].dirty {
2017-08-27 19:29:43 +00:00
if let Some(mut item) = line.get_item_mut(i) {
let mut glyphs = pango::GlyphString::new();
{
let analysis = item.analysis();
let (offset, length, _) = item.item.offset();
pango_shape(
&styled_line.line_str,
offset,
length,
&analysis,
&mut glyphs,
);
}
2017-08-25 15:32:30 +00:00
2017-08-27 19:29:43 +00:00
item.set_glyphs(glyphs);
}
2017-08-25 15:32:30 +00:00
}
line[i].dirty = false;
}
line.dirty_line = false;
}
2017-08-23 09:45:56 +00:00
}
}