polybar/include/components/renderer.hpp

124 lines
3.1 KiB
C++
Raw Normal View History

2016-11-21 14:07:00 +00:00
#pragma once
#include <cairo/cairo.h>
2019-08-06 17:35:07 +00:00
#include <bitset>
#include <memory>
2017-01-19 04:38:42 +00:00
#include "cairo/fwd.hpp"
2016-11-21 14:07:00 +00:00
#include "common.hpp"
#include "components/renderer_interface.hpp"
2016-11-21 14:07:00 +00:00
#include "components/types.hpp"
#include "events/signal_fwd.hpp"
#include "events/signal_receiver.hpp"
2016-12-26 08:40:15 +00:00
#include "x11/extensions/fwd.hpp"
2016-11-21 14:07:00 +00:00
#include "x11/types.hpp"
POLYBAR_NS
2017-01-19 04:38:42 +00:00
// fwd {{{
2016-11-21 14:07:00 +00:00
class connection;
2017-01-19 04:38:42 +00:00
class config;
2016-11-21 14:07:00 +00:00
class logger;
class background_manager;
class bg_slice;
2017-01-19 04:38:42 +00:00
// }}}
2016-11-21 14:07:00 +00:00
2016-12-09 08:02:47 +00:00
using std::map;
2017-01-24 05:59:58 +00:00
struct alignment_block {
cairo_pattern_t* pattern;
2017-01-24 05:59:58 +00:00
double x;
double y;
};
class renderer : public renderer_interface,
public signal_receiver<SIGN_PRIORITY_RENDERER, signals::ui::request_snapshot> {
2016-11-21 14:07:00 +00:00
public:
2016-12-09 08:40:46 +00:00
using make_type = unique_ptr<renderer>;
2017-01-19 04:38:42 +00:00
static make_type make(const bar_settings& bar);
2016-12-09 08:02:47 +00:00
2019-08-06 17:35:07 +00:00
explicit renderer(connection& conn, signal_emitter& sig, const config&, const logger& logger, const bar_settings& bar,
background_manager& background_manager);
~renderer();
2016-11-21 14:07:00 +00:00
xcb_window_t window() const;
2017-01-25 22:36:34 +00:00
void begin(xcb_rectangle_t rect);
2016-11-21 14:07:00 +00:00
void end();
2017-01-19 04:38:42 +00:00
void flush();
2016-11-21 14:07:00 +00:00
void render_offset(const tags::context& ctxt, int pixels) override;
void render_text(const tags::context& ctxt, const string&&) override;
void change_alignment(const tags::context& ctxt) override;
void action_open(const tags::context& ctxt, mousebtn btn, tags::action_t id) override;
void action_close(const tags::context& ctxt, tags::action_t id) override;
std::map<mousebtn, tags::action_t> get_actions(int x) override;
tags::action_t get_action(mousebtn btn, int x) override;
protected:
2016-11-21 14:07:00 +00:00
void fill_background();
void fill_overline(rgba color, double x, double w);
void fill_underline(rgba color, double x, double w);
2017-01-19 04:38:42 +00:00
void fill_borders();
2016-11-21 14:07:00 +00:00
2017-01-24 05:59:58 +00:00
double block_x(alignment a) const;
double block_y(alignment a) const;
double block_w(alignment a) const;
double block_h(alignment a) const;
2017-01-24 05:59:58 +00:00
void flush(alignment a);
2017-01-19 04:38:42 +00:00
void highlight_clickable_areas();
bool on(const signals::ui::request_snapshot& evt) override;
2016-11-21 14:07:00 +00:00
protected:
struct reserve_area {
edge side{edge::NONE};
2017-01-19 10:11:28 +00:00
unsigned int size{0U};
};
2016-11-21 14:07:00 +00:00
private:
connection& m_connection;
signal_emitter& m_sig;
2017-01-19 04:38:42 +00:00
const config& m_conf;
2016-11-21 14:07:00 +00:00
const logger& m_log;
const bar_settings& m_bar;
std::shared_ptr<bg_slice> m_background;
2016-11-21 14:07:00 +00:00
2017-01-19 10:11:28 +00:00
int m_depth{32};
2016-11-21 14:07:00 +00:00
xcb_window_t m_window;
xcb_colormap_t m_colormap;
xcb_visualtype_t* m_visual;
2017-01-19 04:38:42 +00:00
xcb_gcontext_t m_gcontext;
2016-11-21 14:07:00 +00:00
xcb_pixmap_t m_pixmap;
2017-01-24 05:59:58 +00:00
xcb_rectangle_t m_rect{0, 0, 0U, 0U};
reserve_area m_cleararea{};
2016-11-21 14:07:00 +00:00
// bool m_autosize{false};
2017-01-19 04:38:42 +00:00
unique_ptr<cairo::context> m_context;
2017-01-24 05:59:58 +00:00
unique_ptr<cairo::xcb_surface> m_surface;
map<alignment, alignment_block> m_blocks;
2017-01-27 14:36:37 +00:00
cairo_pattern_t* m_cornermask{};
2017-01-24 05:59:58 +00:00
2017-01-27 14:36:37 +00:00
cairo_operator_t m_comp_bg{CAIRO_OPERATOR_SOURCE};
2017-01-25 22:36:34 +00:00
cairo_operator_t m_comp_fg{CAIRO_OPERATOR_OVER};
cairo_operator_t m_comp_ol{CAIRO_OPERATOR_OVER};
cairo_operator_t m_comp_ul{CAIRO_OPERATOR_OVER};
cairo_operator_t m_comp_border{CAIRO_OPERATOR_OVER};
bool m_pseudo_transparency{false};
2017-01-24 05:59:58 +00:00
alignment m_align;
std::unordered_map<tags::action_t, action_block> m_actions;
2016-11-21 14:07:00 +00:00
2017-01-24 05:59:58 +00:00
bool m_fixedcenter;
string m_snapshot_dst;
2016-11-21 14:07:00 +00:00
};
POLYBAR_NS_END