polybar/include/components/bar.hpp

115 lines
2.9 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/types.hpp"
2016-11-20 22:04:31 +00:00
#include "utils/concurrency.hpp"
#include "utils/throttle.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/connection.hpp"
2016-11-20 22:04:31 +00:00
#include "x11/events.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/types.hpp"
#include "x11/window.hpp"
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2016-11-13 20:50:21 +00:00
// fwd
class tray_manager;
2016-11-20 22:04:31 +00:00
class font_manager;
2016-11-13 20:50:21 +00:00
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify> {
2016-06-15 03:32:35 +00:00
public:
2016-11-20 22:04:31 +00:00
explicit bar(connection& conn, const config& config, const logger& logger, unique_ptr<font_manager> font_manager,
unique_ptr<tray_manager> tray_manager);
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;
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void parse(string data, bool force = false);
2016-11-15 01:17:21 +00:00
protected:
2016-11-02 19:22:45 +00:00
void flush();
2016-11-04 17:54:33 +00:00
void refresh_window();
void load_fonts();
void configure_geom();
void create_monitor();
void create_window();
void create_pixmap();
void create_gcontexts();
void restack_window();
void map_window();
void set_wmhints();
int get_centerx();
int get_innerwidth();
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-11-02 19:22:45 +00:00
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;
2016-11-20 22:04:31 +00:00
unique_ptr<font_manager> m_fontmanager;
unique_ptr<tray_manager> m_tray;
2016-06-15 03:32:35 +00:00
2016-11-20 22:04:31 +00:00
concurrency_util::spin_lock m_lock;
throttle_util::throttle_t m_throttler;
2016-06-15 03:32:35 +00:00
xcb_screen_t* m_screen;
2016-11-15 01:17:21 +00:00
rect m_screensize{};
2016-06-15 03:32:35 +00:00
xcb_visualtype_t* m_visual;
window m_window{m_connection, m_connection.generate_id()};
2016-06-15 03:32:35 +00:00
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;
bar_settings m_opts;
2016-06-15 03:32:35 +00:00
map<border, border_settings> m_borders;
map<gc, gcontext> m_gcontexts;
vector<action_block> m_actions;
stateflag m_sinkattached{false};
alignment m_traypos{alignment::NONE};
uint16_t m_trayclients{0};
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;
};
2016-11-20 22:04:31 +00:00
di::injector<unique_ptr<bar>> configure_bar();
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END