2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "components/config.hpp"
|
|
|
|
#include "components/logger.hpp"
|
|
|
|
#include "components/types.hpp"
|
|
|
|
#include "utils/threading.hpp"
|
2016-10-19 00:02:57 -04:00
|
|
|
#include "utils/throttle.hpp"
|
2016-11-02 15:22:45 -04:00
|
|
|
#include "x11/connection.hpp"
|
|
|
|
#include "x11/fontmanager.hpp"
|
|
|
|
#include "x11/tray.hpp"
|
|
|
|
#include "x11/types.hpp"
|
|
|
|
#include "x11/window.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
|
2016-11-13 15:50:21 -05:00
|
|
|
// fwd
|
|
|
|
class tray_manager;
|
|
|
|
|
2016-10-15 14:10:40 -04:00
|
|
|
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify> {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2016-11-12 06:56:39 -05:00
|
|
|
explicit bar(connection& conn, const config& config, const logger& logger, unique_ptr<fontmanager> fontmanager,
|
|
|
|
unique_ptr<tray_manager> tray_manager)
|
2016-06-14 23:32:35 -04:00
|
|
|
: m_connection(conn)
|
|
|
|
, m_conf(config)
|
|
|
|
, m_log(logger)
|
2016-11-04 13:54:33 -04:00
|
|
|
, m_fontmanager(forward<decltype(fontmanager)>(fontmanager))
|
2016-11-12 06:56:39 -05:00
|
|
|
, m_tray(forward<decltype(tray_manager)>(tray_manager)) {}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
~bar();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void bootstrap(bool nodraw = false);
|
2016-11-04 13:54:33 -04:00
|
|
|
void bootstrap_tray();
|
|
|
|
void activate_tray();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
const bar_settings settings() const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void parse(string data, bool force = false);
|
2016-11-14 20:17:21 -05:00
|
|
|
|
2016-11-12 06:56:39 -05:00
|
|
|
protected:
|
2016-11-02 15:22:45 -04:00
|
|
|
void flush();
|
2016-11-04 13:54:33 -04:00
|
|
|
void refresh_window();
|
2016-11-12 06:56:39 -05:00
|
|
|
void load_fonts();
|
|
|
|
void configure_geom();
|
|
|
|
void create_monitor();
|
|
|
|
void create_window();
|
|
|
|
void create_pixmap();
|
|
|
|
void create_gcontexts();
|
|
|
|
void restack_window();
|
2016-11-13 05:30:27 -05:00
|
|
|
void map_window();
|
2016-11-12 06:56:39 -05:00
|
|
|
void set_wmhints();
|
|
|
|
|
|
|
|
int get_centerx();
|
|
|
|
int get_innerwidth();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void handle(const evt::button_press& evt);
|
|
|
|
void handle(const evt::expose& evt);
|
|
|
|
void handle(const evt::property_notify& evt);
|
2016-10-15 14:10:40 -04:00
|
|
|
|
2016-11-02 15:22:45 -04: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-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
connection& m_connection;
|
|
|
|
const config& m_conf;
|
|
|
|
const logger& m_log;
|
|
|
|
unique_ptr<fontmanager> m_fontmanager;
|
2016-11-12 06:56:39 -05:00
|
|
|
unique_ptr<tray_manager> m_tray;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
threading_util::spin_lock m_lock;
|
2016-10-19 00:02:57 -04:00
|
|
|
throttle_util::throttle_t m_throttler;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
xcb_screen_t* m_screen;
|
2016-11-14 20:17:21 -05:00
|
|
|
rect m_screensize{};
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
xcb_visualtype_t* m_visual;
|
|
|
|
|
2016-11-13 05:30:27 -05:00
|
|
|
window m_window{m_connection, m_connection.generate_id()};
|
2016-06-14 23:32:35 -04:00
|
|
|
colormap m_colormap{m_connection, m_connection.generate_id()};
|
|
|
|
pixmap m_pixmap{m_connection, m_connection.generate_id()};
|
|
|
|
|
2016-11-04 13:54:33 -04:00
|
|
|
// xcb_gcontext_t m_root_gc{0};
|
|
|
|
// graphics_util::root_pixmap m_rootpixmap;
|
|
|
|
|
2016-11-12 06:56:39 -05:00
|
|
|
bar_settings m_opts;
|
2016-06-14 23:32:35 -04:00
|
|
|
map<border, border_settings> m_borders;
|
|
|
|
map<gc, gcontext> m_gcontexts;
|
|
|
|
vector<action_block> m_actions;
|
|
|
|
|
2016-10-10 12:05:58 -04:00
|
|
|
stateflag m_sinkattached{false};
|
|
|
|
|
2016-11-12 06:56:39 -05:00
|
|
|
alignment m_traypos{alignment::NONE};
|
|
|
|
uint16_t m_trayclients{0};
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
string m_prevdata;
|
|
|
|
int m_xpos{0};
|
|
|
|
int m_attributes{0};
|
|
|
|
|
|
|
|
xcb_font_t m_gcfont{0};
|
|
|
|
XftDraw* m_xftdraw;
|
|
|
|
};
|
|
|
|
|
2016-10-24 19:55:59 -04:00
|
|
|
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 13:54:33 -04:00
|
|
|
configure_fontmanager(),
|
2016-11-12 06:56:39 -05:00
|
|
|
configure_tray_manager());
|
2016-10-24 19:55:59 -04:00
|
|
|
// clang-format on
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
LEMONBUDDY_NS_END
|