neovim-gtk/src/render/mod.rs

29 lines
948 B
Rust
Raw Normal View History

use sys::pango::*;
use pango;
2017-08-22 09:27:59 +00:00
use pango::prelude::*;
use cairo;
2017-08-23 09:45:56 +00:00
use pangocairo::{CairoContextExt, FontMap};
use std::ffi::CString;
2017-08-22 09:27:59 +00:00
pub fn render(ctx: &cairo::Context, font_desc: pango::FontDescription) {
2017-08-23 09:45:56 +00:00
let font_map = FontMap::get_default();
let pango_context = font_map.create_context().unwrap();
pango_context.set_font_description(&font_desc);
2017-08-22 09:27:59 +00:00
2017-08-23 09:45:56 +00:00
let text = "TEST String".to_owned().into_bytes();
let len = text.len();
let text = CString::new(text).unwrap();
let attr_list = pango::AttrList::new();
2017-08-23 09:45:56 +00:00
ctx.move_to(0.0, 50.0);
let items = pango_itemize(&pango_context, &text, 0, len, &attr_list);
for item in items {
let mut glyphs = pango::GlyphString::new();
let analysis = item.analysis();
pango_shape(&text, len, &analysis, &mut glyphs);
let font = analysis.font();
let (ink, logical) = glyphs.extents(&font);
ctx.show_glyph_string(&font, &glyphs);
}
}