2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-12-17 14:37:28 -05:00
|
|
|
#include <cstdlib>
|
2022-04-25 06:59:40 -04:00
|
|
|
#include <set>
|
2016-12-19 23:05:43 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "common.hpp"
|
2021-09-27 11:35:45 -04:00
|
|
|
#include "components/eventloop.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "components/types.hpp"
|
2016-11-25 07:55:15 -05:00
|
|
|
#include "errors.hpp"
|
2016-12-05 14:41:00 -05:00
|
|
|
#include "events/signal_fwd.hpp"
|
2016-12-20 22:50:43 -05:00
|
|
|
#include "events/signal_receiver.hpp"
|
2017-01-18 23:38:42 -05:00
|
|
|
#include "settings.hpp"
|
2021-02-03 13:29:09 -05:00
|
|
|
#include "tags/action_context.hpp"
|
2020-12-17 14:37:28 -05:00
|
|
|
#include "utils/math.hpp"
|
2016-11-02 15:22:45 -04:00
|
|
|
#include "x11/types.hpp"
|
|
|
|
#include "x11/window.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-12 10:34:14 -05:00
|
|
|
// fwd {{{
|
2016-12-21 08:55:19 -05:00
|
|
|
class config;
|
2016-12-19 23:05:43 -05:00
|
|
|
class connection;
|
|
|
|
class logger;
|
|
|
|
class renderer;
|
2016-11-26 18:46:41 -05:00
|
|
|
class screen;
|
2016-11-13 15:50:21 -05:00
|
|
|
class tray_manager;
|
2020-12-17 14:37:28 -05:00
|
|
|
|
|
|
|
namespace tags {
|
|
|
|
class dispatch;
|
|
|
|
}
|
2017-01-12 10:34:14 -05:00
|
|
|
// }}}
|
2016-12-20 22:50:43 -05:00
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify, evt::enter_notify,
|
2017-08-31 12:26:38 -04:00
|
|
|
evt::leave_notify, evt::motion_notify, evt::destroy_notify, evt::client_message, evt::configure_notify>,
|
2022-03-20 14:09:45 -04:00
|
|
|
public signal_receiver<SIGN_PRIORITY_BAR, signals::ui::dim_window> {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2016-12-09 03:40:46 -05:00
|
|
|
using make_type = unique_ptr<bar>;
|
2022-01-22 16:00:26 -05:00
|
|
|
static make_type make(eventloop::loop&, bool only_initialize_values = false);
|
2016-12-09 03:02:47 -05:00
|
|
|
|
2022-01-22 16:00:26 -05:00
|
|
|
explicit bar(connection&, signal_emitter&, const config&, const logger&, eventloop::loop&, unique_ptr<screen>&&,
|
2022-04-15 17:50:04 -04:00
|
|
|
unique_ptr<tags::dispatch>&&, unique_ptr<tags::action_context>&&, bool only_initialize_values);
|
2016-12-20 07:03:46 -05:00
|
|
|
~bar();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2022-03-14 17:11:46 -04:00
|
|
|
const bar_settings& settings() const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2021-09-11 09:14:17 -04:00
|
|
|
void start();
|
|
|
|
|
2017-01-09 08:27:55 -05:00
|
|
|
void parse(string&& data, bool force = false);
|
2016-12-30 17:32:05 -05:00
|
|
|
|
2017-04-21 12:15:18 -04:00
|
|
|
void hide();
|
|
|
|
void show();
|
|
|
|
void toggle();
|
|
|
|
|
2016-11-12 06:56:39 -05:00
|
|
|
protected:
|
|
|
|
void restack_window();
|
2021-10-04 17:46:38 -04:00
|
|
|
void reconfigure_window();
|
2019-10-15 18:30:10 -04:00
|
|
|
void reconfigure_geom();
|
2016-12-03 12:38:33 -05:00
|
|
|
void reconfigure_pos();
|
|
|
|
void reconfigure_struts();
|
|
|
|
void reconfigure_wm_hints();
|
2016-12-03 14:26:29 -05:00
|
|
|
void broadcast_visibility();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2022-03-15 16:48:19 -04:00
|
|
|
void map_window();
|
|
|
|
|
2021-09-27 11:35:45 -04:00
|
|
|
void trigger_click(mousebtn btn, int pos);
|
|
|
|
|
2021-01-04 04:38:43 -05:00
|
|
|
void handle(const evt::client_message& evt) override;
|
|
|
|
void handle(const evt::destroy_notify& evt) override;
|
|
|
|
void handle(const evt::enter_notify& evt) override;
|
|
|
|
void handle(const evt::leave_notify& evt) override;
|
|
|
|
void handle(const evt::motion_notify& evt) override;
|
|
|
|
void handle(const evt::button_press& evt) override;
|
|
|
|
void handle(const evt::expose& evt) override;
|
|
|
|
void handle(const evt::property_notify& evt) override;
|
|
|
|
void handle(const evt::configure_notify& evt) override;
|
|
|
|
|
|
|
|
bool on(const signals::ui::dim_window&) override;
|
2022-03-20 14:09:45 -04:00
|
|
|
|
2017-09-06 02:35:29 -04:00
|
|
|
#if WITH_XCURSOR
|
2022-03-20 14:09:45 -04:00
|
|
|
/**
|
|
|
|
* Change cursor to the given cursor name.
|
|
|
|
*
|
|
|
|
* The cursor name must be valid (cursor_util::valid)
|
|
|
|
*/
|
|
|
|
void change_cursor(const string& name);
|
2017-09-06 02:35:29 -04:00
|
|
|
#endif
|
2016-12-20 22:50:43 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
|
|
|
connection& m_connection;
|
2016-12-05 14:41:00 -05:00
|
|
|
signal_emitter& m_sig;
|
2016-06-14 23:32:35 -04:00
|
|
|
const config& m_conf;
|
|
|
|
const logger& m_log;
|
2022-01-22 16:00:26 -05:00
|
|
|
eventloop::loop& m_loop;
|
2016-11-26 18:46:41 -05:00
|
|
|
unique_ptr<screen> m_screen;
|
2018-05-06 11:45:43 -04:00
|
|
|
unique_ptr<tray_manager> m_tray;
|
|
|
|
unique_ptr<renderer> m_renderer;
|
2020-12-17 14:37:28 -05:00
|
|
|
unique_ptr<tags::dispatch> m_dispatch;
|
2021-01-10 14:49:50 -05:00
|
|
|
unique_ptr<tags::action_context> m_action_ctxt;
|
2016-11-04 13:54:33 -04:00
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
bar_settings m_opts{};
|
2016-11-12 06:56:39 -05:00
|
|
|
|
2022-03-20 15:03:51 -04:00
|
|
|
/**
|
|
|
|
* Name of currently active cursor
|
|
|
|
*/
|
|
|
|
string m_cursor{};
|
|
|
|
|
2016-12-14 21:30:41 -05:00
|
|
|
string m_lastinput{};
|
2022-04-25 06:59:40 -04:00
|
|
|
std::set<mousebtn> m_dblclicks;
|
2016-11-26 00:13:20 -05:00
|
|
|
|
2022-01-22 14:35:37 -05:00
|
|
|
eventloop::TimerHandle& m_leftclick_timer{m_loop.handle<eventloop::TimerHandle>()};
|
|
|
|
eventloop::TimerHandle& m_middleclick_timer{m_loop.handle<eventloop::TimerHandle>()};
|
|
|
|
eventloop::TimerHandle& m_rightclick_timer{m_loop.handle<eventloop::TimerHandle>()};
|
|
|
|
eventloop::TimerHandle& m_dim_timer{m_loop.handle<eventloop::TimerHandle>()};
|
2017-04-21 12:15:18 -04:00
|
|
|
|
|
|
|
bool m_visible{true};
|
2016-06-14 23:32:35 -04:00
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|