mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
4961a7dcfc
Closes: #1526 Closes: #314 * debug log * semi-working prototype. works on the left and the center but not on the right * fixes formatting * fixes tests * - fixed tray_width_change signal - implements suggestions * - fixes error with tray positioning * - tries to fix tests. Does not work * - fixes tests * - implemented suggestions * reverted formatting in comake and doc * - changed unique_ptr to const reference * - fixed formatting errors in code * - actually fixed formatting(ran clang-format) * - implemented suggestions * - Added CHANGELOG.md entry(not sure about wording) * - removed bar_settings from tray_manager::setup * - fixed issue from rebase * - fixed issue with tests from rebase * implemented suggestions * Update CHANGELOG.md Co-authored-by: Patrick Ziegler <p.ziegler96@gmail.com>
117 lines
3.1 KiB
C++
117 lines
3.1 KiB
C++
#pragma once
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "common.hpp"
|
|
#include "components/eventloop.hpp"
|
|
#include "components/types.hpp"
|
|
#include "errors.hpp"
|
|
#include "events/signal_fwd.hpp"
|
|
#include "events/signal_receiver.hpp"
|
|
#include "settings.hpp"
|
|
#include "tags/action_context.hpp"
|
|
#include "utils/math.hpp"
|
|
#include "x11/types.hpp"
|
|
#include "x11/window.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
// fwd {{{
|
|
class config;
|
|
class connection;
|
|
class logger;
|
|
class renderer;
|
|
class screen;
|
|
class tray_manager;
|
|
|
|
namespace tags {
|
|
class dispatch;
|
|
}
|
|
// }}}
|
|
|
|
class bar : public xpp::event::sink<evt::button_press, evt::expose, evt::property_notify, evt::enter_notify,
|
|
evt::leave_notify, evt::motion_notify, evt::destroy_notify, evt::client_message, evt::configure_notify>,
|
|
public signal_receiver<SIGN_PRIORITY_BAR, signals::ui::dim_window> {
|
|
public:
|
|
using make_type = unique_ptr<bar>;
|
|
static make_type make(eventloop::loop&, bool only_initialize_values = false);
|
|
|
|
explicit bar(connection&, signal_emitter&, const config&, const logger&, eventloop::loop&, unique_ptr<screen>&&,
|
|
unique_ptr<tags::dispatch>&&, unique_ptr<tags::action_context>&&, bool only_initialize_values);
|
|
~bar();
|
|
|
|
const bar_settings& settings() const;
|
|
|
|
void start();
|
|
|
|
void parse(string&& data, bool force = false);
|
|
|
|
void hide();
|
|
void show();
|
|
void toggle();
|
|
|
|
protected:
|
|
void restack_window();
|
|
void reconfigure_window();
|
|
void reconfigure_geom();
|
|
void reconfigure_pos();
|
|
void reconfigure_struts();
|
|
void reconfigure_wm_hints();
|
|
void broadcast_visibility();
|
|
|
|
void map_window();
|
|
|
|
void trigger_click(mousebtn btn, int pos);
|
|
|
|
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;
|
|
|
|
#if WITH_XCURSOR
|
|
/**
|
|
* Change cursor to the given cursor name.
|
|
*
|
|
* The cursor name must be valid (cursor_util::valid)
|
|
*/
|
|
void change_cursor(const string& name);
|
|
#endif
|
|
|
|
private:
|
|
connection& m_connection;
|
|
signal_emitter& m_sig;
|
|
const config& m_conf;
|
|
const logger& m_log;
|
|
eventloop::loop& m_loop;
|
|
unique_ptr<screen> m_screen;
|
|
unique_ptr<tray_manager> m_tray;
|
|
unique_ptr<renderer> m_renderer;
|
|
unique_ptr<tags::dispatch> m_dispatch;
|
|
unique_ptr<tags::action_context> m_action_ctxt;
|
|
|
|
bar_settings m_opts{};
|
|
|
|
/**
|
|
* Name of currently active cursor
|
|
*/
|
|
string m_cursor{};
|
|
|
|
string m_lastinput{};
|
|
bool m_dblclicks{false};
|
|
|
|
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>()};
|
|
|
|
bool m_visible{true};
|
|
};
|
|
|
|
POLYBAR_NS_END
|