mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "components/config.hpp"
|
|
#include "components/types.hpp"
|
|
#include "errors.hpp"
|
|
#include "utils/concurrency.hpp"
|
|
#include "utils/throttle.hpp"
|
|
#include "x11/connection.hpp"
|
|
#include "x11/events.hpp"
|
|
#include "x11/types.hpp"
|
|
#include "x11/window.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
// fwd
|
|
class screen;
|
|
class tray_manager;
|
|
class logger;
|
|
class renderer;
|
|
|
|
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify> {
|
|
public:
|
|
explicit bar(connection& conn, const config& config, const logger& logger, unique_ptr<screen> screen, unique_ptr<tray_manager> tray_manager);
|
|
~bar();
|
|
|
|
void bootstrap(bool nodraw = false);
|
|
void bootstrap_tray();
|
|
void activate_tray();
|
|
|
|
const bar_settings settings() const;
|
|
|
|
void parse(const string& data, bool force = false);
|
|
|
|
protected:
|
|
void setup_monitor();
|
|
void configure_geom();
|
|
void restack_window();
|
|
void reconfigure_window();
|
|
|
|
void handle(const evt::button_press& evt);
|
|
void handle(const evt::expose& evt);
|
|
void handle(const evt::property_notify& evt);
|
|
|
|
private:
|
|
connection& m_connection;
|
|
const config& m_conf;
|
|
const logger& m_log;
|
|
unique_ptr<screen> m_screen;
|
|
unique_ptr<tray_manager> m_tray;
|
|
unique_ptr<renderer> m_renderer;
|
|
|
|
xcb_window_t m_window;
|
|
bar_settings m_opts;
|
|
|
|
alignment m_trayalign{alignment::NONE};
|
|
uint8_t m_trayclients{0};
|
|
|
|
string m_lastinput;
|
|
|
|
std::mutex m_mutex;
|
|
|
|
event_timer m_buttonpress{};
|
|
};
|
|
|
|
di::injector<unique_ptr<bar>> configure_bar();
|
|
|
|
POLYBAR_NS_END
|