Maraiah/source/tycho/noroom.rs

101 lines
2.2 KiB
Rust
Raw Normal View History

2019-03-23 05:33:04 -07:00
use cairo_sys::*;
use gdk_pixbuf_sys::*;
use gdk_sys::*;
use maraiah::{c_str, durandal::{ffi::*, image::*}, rozinante::draw::*};
2019-03-02 15:26:55 -08:00
fn flt_color(cr: impl Color) -> (f64, f64, f64)
{
fn flt_color(n: u16) -> f64 {f64::from(n) / f64::from(u16::max_value())}
(flt_color(cr.r()), flt_color(cr.g()), flt_color(cr.b()))
}
2019-03-23 05:33:04 -07:00
impl CacheImage for CrImage
2019-03-02 17:49:35 -08:00
{
2019-03-23 05:33:04 -07:00
fn w(&self) -> Coord {unsafe {gdk_pixbuf_get_width(self.0) as Coord}}
fn h(&self) -> Coord {unsafe {gdk_pixbuf_get_height(self.0) as Coord}}
2019-03-02 17:49:35 -08:00
}
2019-03-23 05:33:04 -07:00
impl CrDrawArea
2019-03-02 15:26:55 -08:00
{
2019-03-23 05:33:04 -07:00
pub const fn new(ctx: *mut cairo_t, w: f64, h: f64) -> Self
2019-03-02 15:26:55 -08:00
{
2019-03-23 05:33:04 -07:00
CrDrawArea{ctx, w: w as Coord, h: h as Coord}
2019-03-02 15:26:55 -08:00
}
}
2019-03-23 05:33:04 -07:00
impl DrawArea for CrDrawArea
2019-03-02 15:26:55 -08:00
{
2019-03-23 05:33:04 -07:00
type NativeImage = CrImage;
2019-03-02 17:49:35 -08:00
fn w(&self) -> Coord {self.w}
fn h(&self) -> Coord {self.h}
2019-03-02 15:26:55 -08:00
fn clear(&self, cr: impl Color)
{
self.rect(Rect{x: 0, y: 0, w: self.w(), h: self.h()}, cr);
2019-03-23 05:33:04 -07:00
let sl = FONT_SLANT_NORMAL;
let wt = FONT_WEIGHT_NORMAL;
unsafe {
cairo_select_font_face(self.ctx, c_str!("Monospace"), sl, wt);
cairo_set_font_size(self.ctx, 14.0);
}
2019-03-02 15:26:55 -08:00
}
fn rect(&self, rect: Rect, cr: impl Color)
{
2019-03-23 05:33:04 -07:00
let px = f64::from(rect.x);
let py = f64::from(rect.y);
let sx = f64::from(rect.w);
let sy = f64::from(rect.h);
2019-03-02 15:26:55 -08:00
let (r, g, b) = flt_color(cr);
2019-03-23 05:33:04 -07:00
unsafe {
cairo_set_source_rgb(self.ctx, r, g, b);
cairo_rectangle(self.ctx, px, py, sx, sy);
cairo_fill(self.ctx);
}
2019-03-02 15:26:55 -08:00
}
2019-03-02 21:45:04 -08:00
fn text(&self, pos: Point, text: &str, cr: impl Color)
2019-03-02 15:26:55 -08:00
{
let (r, g, b) = flt_color(cr);
2019-03-23 05:33:04 -07:00
let x = f64::from(pos.0);
let y = f64::from(pos.1);
let text = CString::new(text).unwrap();
unsafe {
cairo_set_source_rgb(self.ctx, r, g, b);
cairo_move_to(self.ctx, x, y);
cairo_show_text(self.ctx, text.as_ptr());
}
2019-03-02 15:26:55 -08:00
}
2019-03-02 17:49:35 -08:00
fn image(&self, pos: Point, im: &Self::NativeImage)
{
2019-03-23 05:33:04 -07:00
let x = f64::from(pos.0);
let y = f64::from(pos.1);
unsafe {
gdk_cairo_set_source_pixbuf(self.ctx, im.0, x, y);
cairo_paint(self.ctx);
}
2019-03-02 17:49:35 -08:00
}
2019-03-02 15:26:55 -08:00
}
2019-03-23 05:33:04 -07:00
pub struct CrImage(pub *const GdkPixbuf);
2019-03-02 21:45:04 -08:00
2019-03-23 05:33:04 -07:00
pub struct CrDrawArea
2019-03-02 15:26:55 -08:00
{
2019-03-23 05:33:04 -07:00
ctx: *mut cairo_t,
2019-03-02 17:49:35 -08:00
w: Coord,
h: Coord,
2019-03-02 15:26:55 -08:00
}
// EOF