widget.rs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. use xcb;
  2. use ui::font;
  3. use std::rc::Rc;
  4. use std::sync::Arc;
  5. pub trait Widget {
  6. fn init(&mut self) {}
  7. fn render(&mut self, x: u16);
  8. fn width(&mut self) -> u16;
  9. fn handle_event(&mut self, _event: &xcb::GenericEvent, _is_finishing: bool) -> bool {
  10. false
  11. }
  12. fn update(&mut self) {}
  13. fn finish(&mut self) {}
  14. }
  15. pub struct DrawContext {
  16. conn: Arc<xcb::Connection>,
  17. picture: xcb::render::Picture,
  18. pen: xcb::render::Picture,
  19. fonts: Rc<font::FontLoader>,
  20. bg_color: xcb::render::Color
  21. }
  22. impl DrawContext {
  23. pub fn new(conn: Arc<xcb::Connection>, picture: xcb::render::Picture, fonts: Rc<font::FontLoader>) -> DrawContext {
  24. let pen = conn.generate_id();
  25. let color = xcb::render::Color::new(0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF);
  26. xcb::render::create_solid_fill(
  27. &conn,
  28. pen,
  29. color
  30. );
  31. DrawContext {
  32. conn: conn,
  33. picture: picture,
  34. pen: pen,
  35. fonts: fonts,
  36. bg_color: xcb::render::Color::new(0, 0, 0, 0xFFFF)
  37. }
  38. }
  39. pub fn draw_bg(&self, x: u16, width: u16) {
  40. xcb::render::fill_rectangles(
  41. &self.conn,
  42. xcb::render::PICT_OP_SRC as u8,
  43. self.picture,
  44. self.bg_color,
  45. &[xcb::Rectangle::new(x as i16, 0, width, 20)]
  46. );
  47. }
  48. pub fn measure_text(&self, name: &str) -> u16 {
  49. let text = self.fonts.create_renderable_text(name);
  50. text.width
  51. }
  52. pub fn set_bg_color(&mut self, red: u16, blue: u16, green: u16, alpha: u16) {
  53. self.bg_color = xcb::render::Color::new(red, blue, green, alpha);
  54. }
  55. pub fn draw_text(&self, name: &str, x: u16) {
  56. if !name.is_empty() {
  57. let text = self.fonts.create_renderable_text(name);
  58. let baseline = 20 - self.fonts.default_offset(20);
  59. text.render(&self.conn, self.pen, self.picture, x, baseline as u16);
  60. }
  61. }
  62. }