polybar/include/components/bar.hpp

124 lines
3.2 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include "common.hpp"
#include "components/config.hpp"
#include "components/logger.hpp"
#include "components/parser.hpp"
#include "components/signals.hpp"
2016-06-15 03:32:35 +00:00
#include "components/types.hpp"
#include "utils/threading.hpp"
#include "utils/throttle.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/connection.hpp"
#include "x11/draw.hpp"
#include "x11/fontmanager.hpp"
2016-11-04 17:54:33 +00:00
#include "x11/graphics.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/tray.hpp"
#include "x11/types.hpp"
#include "x11/window.hpp"
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify> {
2016-06-15 03:32:35 +00:00
public:
explicit bar(connection& conn, const config& config, const logger& logger,
2016-11-04 17:54:33 +00:00
unique_ptr<fontmanager> fontmanager, unique_ptr<traymanager> traymanager)
2016-06-15 03:32:35 +00:00
: m_connection(conn)
, m_conf(config)
, m_log(logger)
2016-11-04 17:54:33 +00:00
, m_fontmanager(forward<decltype(fontmanager)>(fontmanager))
, m_traymanager(forward<decltype(traymanager)>(traymanager)) {}
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
~bar();
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void bootstrap(bool nodraw = false);
2016-11-04 17:54:33 +00:00
void bootstrap_tray();
void activate_tray();
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
const bar_settings settings() const;
const tray_settings tray() const;
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void parse(string data, bool force = false);
void flush();
2016-11-04 17:54:33 +00:00
void refresh_window();
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void handle(const evt::button_press& evt);
void handle(const evt::expose& evt);
void handle(const evt::property_notify& evt);
2016-06-15 03:32:35 +00:00
protected:
2016-11-02 19:22:45 +00:00
int center_x();
int width_inner();
void on_alignment_change(alignment align);
void on_attribute_set(attribute attr);
void on_attribute_unset(attribute attr);
void on_attribute_toggle(attribute attr);
void on_action_block_open(mousebtn btn, string cmd);
void on_action_block_close(mousebtn btn);
void on_color_change(gc gc_, color color_);
void on_font_change(int index);
void on_pixel_offset(int px);
void on_tray_report(uint16_t slots);
void draw_background();
void draw_border(border border_);
void draw_lines(int x, int w);
int draw_shift(int x, int chr_width);
void draw_character(uint16_t character);
void draw_textstring(const char* text, size_t len);
2016-06-15 03:32:35 +00:00
private:
connection& m_connection;
const config& m_conf;
const logger& m_log;
unique_ptr<fontmanager> m_fontmanager;
2016-11-04 17:54:33 +00:00
unique_ptr<traymanager> m_traymanager;
2016-06-15 03:32:35 +00:00
threading_util::spin_lock m_lock;
throttle_util::throttle_t m_throttler;
2016-06-15 03:32:35 +00:00
xcb_screen_t* m_screen;
xcb_visualtype_t* m_visual;
window m_window{m_connection};
colormap m_colormap{m_connection, m_connection.generate_id()};
pixmap m_pixmap{m_connection, m_connection.generate_id()};
2016-11-04 17:54:33 +00:00
// xcb_gcontext_t m_root_gc{0};
// graphics_util::root_pixmap m_rootpixmap;
2016-06-15 03:32:35 +00:00
bar_settings m_bar;
tray_settings m_tray;
map<border, border_settings> m_borders;
map<gc, gcontext> m_gcontexts;
vector<action_block> m_actions;
stateflag m_sinkattached{false};
2016-06-15 03:32:35 +00:00
string m_prevdata;
int m_xpos{0};
int m_attributes{0};
xcb_font_t m_gcfont{0};
XftDraw* m_xftdraw;
};
namespace {
/**
* Configure injection module
*/
template <typename T = unique_ptr<bar>>
di::injector<T> configure_bar() {
// clang-format off
return di::make_injector(
configure_connection(),
configure_config(),
configure_logger(),
2016-11-04 17:54:33 +00:00
configure_fontmanager(),
configure_traymanager());
// clang-format on
}
}
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS_END