neovim-gtk/src/ui.rs

379 lines
11 KiB
Rust
Raw Normal View History

2016-03-31 10:09:34 +00:00
use std::cell::RefCell;
use std::thread;
2016-03-31 16:19:08 +00:00
use std::collections::HashMap;
2016-04-03 10:06:35 +00:00
use std::string::String;
2016-03-31 16:19:08 +00:00
use rmp::Value;
use rmp::value::Integer;
2016-03-31 10:09:34 +00:00
2016-03-16 15:25:25 +00:00
use cairo;
2016-04-01 21:14:22 +00:00
use cairo::TextExtents;
use cairo::enums::{FontWeight, FontSlant};
2016-03-16 15:25:25 +00:00
use gtk;
use gtk::prelude::*;
2016-03-17 13:58:21 +00:00
use gtk::{Window, WindowType, DrawingArea, Grid, ToolButton, ButtonBox, Orientation, Image};
2016-04-06 14:53:16 +00:00
use gdk::{EventKey, EventConfigure};
use glib;
use glib_sys;
2016-03-31 13:52:22 +00:00
use neovim_lib::{Neovim, NeovimApi};
2016-03-16 15:25:25 +00:00
use ui_model::{UiModel, Attrs, Color, COLOR_BLACK, COLOR_WHITE};
2016-03-23 11:59:18 +00:00
use nvim::RedrawEvents;
2016-03-19 08:47:23 +00:00
2016-04-04 10:14:57 +00:00
use input::convert_key;
#[cfg(target_os = "linux")]
2016-04-01 21:14:22 +00:00
const FONT_NAME: &'static str = "Droid Sans Mono for Powerline";
2016-04-04 10:14:57 +00:00
#[cfg(target_os = "windows")]
const FONT_NAME: &'static str = "Droid Sans Mono";
2016-04-01 21:14:22 +00:00
const FONT_SIZE: f64 = 16.0;
2016-03-31 10:09:34 +00:00
thread_local!(pub static UI: RefCell<Ui> = {
let thread = thread::current();
let current_thread_name = thread.name();
if current_thread_name != Some("<main>") {
panic!("Can create UI only from main thread, {:?}", current_thread_name);
}
RefCell::new(Ui::new())
});
2016-05-04 06:23:39 +00:00
#[derive(PartialEq)]
enum NvimMode {
Normal,
Insert,
Other,
}
2016-03-19 10:27:39 +00:00
pub struct Ui {
2016-03-28 15:05:10 +00:00
pub model: UiModel,
nvim: Option<Neovim>,
2016-03-31 10:09:34 +00:00
drawing_area: DrawingArea,
2016-05-03 10:30:36 +00:00
window: Window,
2016-03-31 16:19:08 +00:00
cur_attrs: Option<Attrs>,
bg_color: Color,
fg_color: Color,
line_height: Option<f64>,
char_width: Option<f64>,
2016-04-06 14:53:16 +00:00
resize_timer: Option<u32>,
2016-05-04 06:23:39 +00:00
mode: NvimMode,
2016-03-19 10:27:39 +00:00
}
2016-03-16 15:25:25 +00:00
impl Ui {
pub fn new() -> Ui {
2016-03-19 10:27:39 +00:00
Ui {
model: UiModel::empty(),
2016-03-31 10:09:34 +00:00
drawing_area: DrawingArea::new(),
2016-05-03 10:30:36 +00:00
window: Window::new(WindowType::Toplevel),
nvim: None,
2016-03-31 16:19:08 +00:00
cur_attrs: None,
bg_color: COLOR_BLACK,
fg_color: COLOR_WHITE,
line_height: None,
char_width: None,
2016-04-06 14:53:16 +00:00
resize_timer: None,
2016-05-04 06:23:39 +00:00
mode: NvimMode::Insert,
2016-03-19 10:27:39 +00:00
}
2016-03-16 15:25:25 +00:00
}
pub fn set_nvim(&mut self, nvim: Neovim) {
self.nvim = Some(nvim);
}
pub fn nvim(&mut self) -> &mut Neovim {
self.nvim.as_mut().unwrap()
}
2016-03-31 10:09:34 +00:00
pub fn init(&mut self) {
2016-03-16 15:25:25 +00:00
let grid = Grid::new();
let button_bar = ButtonBox::new(Orientation::Horizontal);
2016-03-17 13:58:21 +00:00
button_bar.set_hexpand(true);
button_bar.set_layout(gtk::ButtonBoxStyle::Start);
let open_image = Image::new_from_icon_name("document-open", 50);
let open_btn = ToolButton::new(Some(&open_image), None);
button_bar.add(&open_btn);
let save_image = Image::new_from_icon_name("document-save", 50);
let save_btn = ToolButton::new(Some(&save_image), None);
button_bar.add(&save_btn);
let exit_image = Image::new_from_icon_name("application-exit", 50);
let exit_btn = ToolButton::new(Some(&exit_image), None);
exit_btn.connect_clicked(|_| gtk::main_quit());
2016-03-17 13:58:21 +00:00
button_bar.add(&exit_btn);
2016-03-16 15:25:25 +00:00
grid.attach(&button_bar, 0, 0, 1, 1);
2016-04-03 22:34:44 +00:00
self.drawing_area.set_size_request(500, 300);
2016-03-31 10:09:34 +00:00
self.drawing_area.set_hexpand(true);
self.drawing_area.set_vexpand(true);
grid.attach(&self.drawing_area, 0, 1, 1, 1);
self.drawing_area.connect_draw(gtk_draw);
2016-03-16 15:25:25 +00:00
2016-05-03 10:30:36 +00:00
self.window.add(&grid);
self.window.show_all();
self.window.connect_key_press_event(gtk_key_press);
self.window.connect_delete_event(|_, _| {
2016-03-16 15:25:25 +00:00
gtk::main_quit();
Inhibit(false)
});
2016-04-06 14:53:16 +00:00
self.drawing_area.connect_configure_event(gtk_configure_event);
2016-03-16 15:25:25 +00:00
}
2016-03-31 10:09:34 +00:00
}
2016-03-16 15:25:25 +00:00
2016-03-31 13:52:22 +00:00
fn gtk_key_press(_: &Window, ev: &EventKey) -> Inhibit {
2016-04-04 10:14:57 +00:00
if let Some(input) = convert_key(ev) {
UI.with(|ui_cell| {
let mut ui = ui_cell.borrow_mut();
ui.nvim().input(&input).expect("Error run input command to nvim");
});
Inhibit(true)
} else {
Inhibit(false)
2016-03-31 13:52:22 +00:00
}
}
2016-04-01 21:14:22 +00:00
fn calc_char_bounds(ctx: &cairo::Context) -> TextExtents {
let font_face = cairo::FontFace::toy_create(FONT_NAME, FontSlant::Normal, FontWeight::Normal);
2016-04-01 21:14:22 +00:00
ctx.set_font_size(FONT_SIZE);
ctx.set_font_face(font_face);
ctx.text_extents("A")
}
2016-05-03 10:30:36 +00:00
fn gtk_draw(_: &DrawingArea, ctx: &cairo::Context) -> Inhibit {
2016-03-31 10:09:34 +00:00
UI.with(|ui_cell| {
let mut ui = ui_cell.borrow_mut();
2016-04-03 22:34:44 +00:00
let char_bounds = calc_char_bounds(ctx);
let font_extents = ctx.font_extents();
ui.line_height = Some(font_extents.height.round());
ui.char_width = Some(char_bounds.width.round());
draw(&*ui, ctx);
2016-05-03 10:30:36 +00:00
request_width(&*ui);
2016-03-31 10:09:34 +00:00
});
2016-04-06 14:53:16 +00:00
Inhibit(false)
}
fn gtk_configure_event(_: &DrawingArea, ev: &EventConfigure) -> Inhibit {
UI.with(|ui_cell| {
let mut ui = ui_cell.borrow_mut();
let (width, height) = ev.get_size();
if let Some(timer) = ui.resize_timer {
unsafe { glib_sys::g_source_remove(timer) };
}
if let Some(line_height) = ui.line_height {
if let Some(char_width) = ui.char_width {
ui.resize_timer = Some(glib::timeout_add(250, move || {
UI.with(|ui_cell| {
let mut ui = ui_cell.borrow_mut();
ui.resize_timer = None;
let rows = (height as f64 / line_height).trunc() as usize;
let columns = (width as f64 / char_width).trunc() as usize;
if ui.model.rows != rows || ui.model.columns != columns {
if let Err(err) = ui.nvim().ui_try_resize(columns as u64, rows as u64) {
println!("Error trying resize nvim {}", err);
}
}
});
Continue(false)
}));
}
}
});
Inhibit(false)
}
fn draw(ui: &Ui, ctx: &cairo::Context) {
ctx.set_source_rgb(ui.bg_color.0, ui.bg_color.1, ui.bg_color.2);
ctx.paint();
2016-04-03 22:34:44 +00:00
let font_extents = ctx.font_extents();
let line_height = ui.line_height.unwrap();
let char_width = ui.char_width.unwrap();
2016-05-03 17:25:52 +00:00
let (row, col) = ui.model.get_cursor();
let mut line_y = line_height;
2016-05-03 17:25:52 +00:00
for (line_idx, line) in ui.model.model().iter().enumerate() {
ctx.move_to(0.0, line_y - font_extents.descent);
2016-05-03 17:25:52 +00:00
for (col_idx, cell) in line.iter().enumerate() {
let slant = if cell.attrs.italic {
FontSlant::Italic
} else {
FontSlant::Normal
};
let weight = if cell.attrs.bold {
FontWeight::Bold
} else {
FontWeight::Normal
};
let font_face = cairo::FontFace::toy_create(FONT_NAME, slant, weight);
ctx.set_font_face(font_face);
ctx.set_font_size(FONT_SIZE);
let current_point = ctx.get_current_point();
if let Some(ref bg) = cell.attrs.background {
ctx.set_source_rgb(bg.0, bg.1, bg.2);
ctx.rectangle(current_point.0,
line_y - line_height,
char_width,
line_height);
ctx.fill();
ctx.move_to(current_point.0, current_point.1);
}
2016-05-03 17:25:52 +00:00
let fg = if let Some(ref fg) = cell.attrs.foreground {
fg
2016-05-03 10:34:36 +00:00
} else {
&ui.fg_color
};
2016-05-03 17:25:52 +00:00
let bg = if let Some(ref bg) = cell.attrs.background {
bg
} else {
&ui.bg_color
};
if row == line_idx && col == col_idx {
ctx.set_source_rgba(1.0 - bg.0, 1.0 - bg.1, 1.0 - bg.2, 0.5);
2016-05-04 06:23:39 +00:00
let cursor_width = if ui.mode == NvimMode::Insert {
char_width / 5.0
} else {
char_width
};
2016-05-03 17:25:52 +00:00
ctx.rectangle(current_point.0,
line_y - line_height,
2016-05-04 06:23:39 +00:00
cursor_width,
2016-05-03 17:25:52 +00:00
line_height);
ctx.fill();
ctx.move_to(current_point.0, current_point.1);
}
ctx.set_source_rgb(fg.0, fg.1, fg.2);
ctx.show_text(&cell.ch.to_string());
ctx.move_to(current_point.0 + char_width, current_point.1);
}
line_y += line_height;
}
2016-04-04 10:14:57 +00:00
2016-03-16 15:25:25 +00:00
}
2016-03-23 11:59:18 +00:00
2016-05-03 10:30:36 +00:00
fn request_width(ui: &Ui) {
if ui.resize_timer.is_some() {
return;
}
let width = ui.drawing_area.get_allocated_width();
let height = ui.drawing_area.get_allocated_height();
let request_height = (ui.model.rows as f64 * ui.line_height.unwrap()) as i32;
let request_width = (ui.model.columns as f64 * ui.char_width.unwrap()) as i32;
2016-04-03 22:34:44 +00:00
if width != request_width || height != request_height {
2016-05-03 10:30:36 +00:00
let h_border = ui.window.get_allocated_width() - width;
let v_border = ui.window.get_allocated_height() - height;
ui.window.resize(request_width + h_border, request_height + v_border);
2016-04-03 22:34:44 +00:00
}
}
2016-03-23 11:59:18 +00:00
impl RedrawEvents for Ui {
2016-03-28 14:03:21 +00:00
fn on_cursor_goto(&mut self, row: u64, col: u64) {
self.model.set_cursor(row, col);
}
2016-03-28 15:05:10 +00:00
fn on_put(&mut self, text: &str) {
2016-03-31 16:19:08 +00:00
self.model.put(text, &self.cur_attrs);
2016-03-28 15:05:10 +00:00
}
2016-03-29 09:22:16 +00:00
fn on_clear(&mut self) {
self.model.clear();
}
2016-03-29 09:43:01 +00:00
fn on_eol_clear(&mut self) {
self.model.eol_clear();
}
2016-03-29 09:43:01 +00:00
fn on_resize(&mut self, columns: u64, rows: u64) {
self.model = UiModel::new(rows, columns);
}
2016-03-31 13:52:22 +00:00
fn on_redraw(&self) {
self.drawing_area.queue_draw();
}
2016-03-31 16:19:08 +00:00
2016-04-03 15:13:18 +00:00
fn on_set_scroll_region(&mut self, top: u64, bot: u64, left: u64, right: u64) {
self.model.set_scroll_region(top, bot, left, right);
}
fn on_scroll(&mut self, count: i64) {
self.model.scroll(count);
}
2016-03-31 16:19:08 +00:00
fn on_highlight_set(&mut self, attrs: &HashMap<String, Value>) {
let mut model_attrs = Attrs::new();
if let Some(&Value::Integer(Integer::U64(fg))) = attrs.get("foreground") {
model_attrs.foreground = Some(split_color(fg));
2016-03-31 16:19:08 +00:00
}
if let Some(&Value::Integer(Integer::U64(bg))) = attrs.get("background") {
model_attrs.background = Some(split_color(bg));
2016-03-31 16:19:08 +00:00
}
if attrs.contains_key("reverse") {
let fg = if let Some(ref fg) = model_attrs.foreground {
fg.clone()
} else {
self.fg_color.clone()
};
let bg = if let Some(ref bg) = model_attrs.background {
bg.clone()
} else {
self.bg_color.clone()
};
model_attrs.foreground = Some(bg);
model_attrs.background = Some(fg);
2016-03-31 16:19:08 +00:00
}
2016-04-01 09:34:55 +00:00
model_attrs.bold = attrs.contains_key("bold");
model_attrs.italic = attrs.contains_key("italic");
2016-03-31 16:19:08 +00:00
self.cur_attrs = Some(model_attrs);
}
fn on_update_bg(&mut self, bg: i64) {
if bg >= 0 {
self.bg_color = split_color(bg as u64);
2016-05-03 10:34:36 +00:00
} else {
self.bg_color = COLOR_BLACK;
}
}
fn on_update_fg(&mut self, fg: i64) {
if fg >= 0 {
self.fg_color = split_color(fg as u64);
2016-05-03 10:34:36 +00:00
} else {
self.fg_color = COLOR_WHITE;
}
}
2016-05-04 06:23:39 +00:00
fn on_mode_change(&mut self, mode: &str) {
match mode {
"normal" => self.mode = NvimMode::Normal,
"insert" => self.mode = NvimMode::Insert,
_ => self.mode = NvimMode::Other,
}
}
2016-03-31 16:19:08 +00:00
}
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)
2016-03-23 11:59:18 +00:00
}