refactor: Cleanup
This commit is contained in:
parent
baaba4adf9
commit
b9f9092bbe
@ -3,9 +3,6 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
#include "common.hpp"
|
#include "common.hpp"
|
||||||
#include "components/config.hpp"
|
|
||||||
#include "components/types.hpp"
|
|
||||||
#include "config.hpp"
|
|
||||||
|
|
||||||
POLYBAR_NS
|
POLYBAR_NS
|
||||||
|
|
||||||
@ -13,10 +10,6 @@ using std::map;
|
|||||||
|
|
||||||
#define DEFAULT_SPACING -1
|
#define DEFAULT_SPACING -1
|
||||||
|
|
||||||
#ifndef BUILDER_SPACE_TOKEN
|
|
||||||
#define BUILDER_SPACE_TOKEN "%__"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// fwd decl
|
// fwd decl
|
||||||
namespace drawtypes {
|
namespace drawtypes {
|
||||||
class label;
|
class label;
|
||||||
@ -24,12 +17,18 @@ namespace drawtypes {
|
|||||||
using icon = label;
|
using icon = label;
|
||||||
using icon_t = label_t;
|
using icon_t = label_t;
|
||||||
}
|
}
|
||||||
|
|
||||||
using namespace drawtypes;
|
using namespace drawtypes;
|
||||||
|
|
||||||
|
enum class alignment : uint8_t;
|
||||||
|
enum class attribute : uint8_t;
|
||||||
|
enum class edge : uint8_t;
|
||||||
|
enum class syntaxtag : uint8_t;
|
||||||
|
enum class mousebtn : uint8_t;
|
||||||
|
struct bar_settings;
|
||||||
|
|
||||||
class builder {
|
class builder {
|
||||||
public:
|
public:
|
||||||
explicit builder(const bar_settings bar) : m_bar(bar) {}
|
explicit builder(const bar_settings& bar);
|
||||||
|
|
||||||
string flush();
|
string flush();
|
||||||
void append(const string& text);
|
void append(const string& text);
|
||||||
@ -71,34 +70,17 @@ class builder {
|
|||||||
void tag_close(attribute attr);
|
void tag_close(attribute attr);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const bar_settings m_bar;
|
const bar_settings& m_bar;
|
||||||
string m_output{};
|
string m_output;
|
||||||
|
|
||||||
map<syntaxtag, int> m_tags{
|
map<syntaxtag, int> m_tags;
|
||||||
// clang-format off
|
map<syntaxtag, string> m_colors;
|
||||||
{syntaxtag::A, 0},
|
|
||||||
{syntaxtag::B, 0},
|
|
||||||
{syntaxtag::F, 0},
|
|
||||||
{syntaxtag::T, 0},
|
|
||||||
{syntaxtag::u, 0},
|
|
||||||
{syntaxtag::o, 0},
|
|
||||||
// clang-format on
|
|
||||||
};
|
|
||||||
|
|
||||||
map<syntaxtag, string> m_colors{
|
uint8_t m_attributes;
|
||||||
// clang-format off
|
uint8_t m_fontindex;
|
||||||
{syntaxtag::B, ""},
|
|
||||||
{syntaxtag::F, ""},
|
|
||||||
{syntaxtag::u, ""},
|
|
||||||
{syntaxtag::o, ""},
|
|
||||||
// clang-format on
|
|
||||||
};
|
|
||||||
|
|
||||||
uint8_t m_attributes{static_cast<uint8_t>(attribute::NONE)};
|
string m_background;
|
||||||
uint8_t m_fontindex{1};
|
string m_foreground;
|
||||||
|
|
||||||
string m_background{};
|
|
||||||
string m_foreground{};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
POLYBAR_NS_END
|
POLYBAR_NS_END
|
||||||
|
@ -46,9 +46,7 @@ class screen : public xpp::event::sink<evt::randr_screen_change_notify> {
|
|||||||
xcb_window_t m_proxy{XCB_NONE};
|
xcb_window_t m_proxy{XCB_NONE};
|
||||||
|
|
||||||
vector<monitor_t> m_monitors;
|
vector<monitor_t> m_monitors;
|
||||||
struct size m_size {
|
struct size m_size {0U, 0U};
|
||||||
0U, 0U
|
|
||||||
};
|
|
||||||
bool m_sigraised{false};
|
bool m_sigraised{false};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -44,8 +44,12 @@ static const int SINK_PRIORITY_TRAY{3};
|
|||||||
static const int SINK_PRIORITY_MODULE{4};
|
static const int SINK_PRIORITY_MODULE{4};
|
||||||
|
|
||||||
#ifdef DEBUG_HINTS
|
#ifdef DEBUG_HINTS
|
||||||
static const int DEBUG_HINTS_OFFSET_X{@DEBUG_HINTS_OFFSET_X@};
|
static const int DEBUG_HINTS_OFFSET_X {
|
||||||
static const int DEBUG_HINTS_OFFSET_Y{@DEBUG_HINTS_OFFSET_Y@};
|
@DEBUG_HINTS_OFFSET_X@
|
||||||
|
};
|
||||||
|
static const int DEBUG_HINTS_OFFSET_Y {
|
||||||
|
@DEBUG_HINTS_OFFSET_Y@
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static constexpr const char* ALSA_SOUNDCARD{"@SETTING_ALSA_SOUNDCARD@"};
|
static constexpr const char* ALSA_SOUNDCARD{"@SETTING_ALSA_SOUNDCARD@"};
|
||||||
|
@ -24,22 +24,20 @@ class inotify_watch {
|
|||||||
|
|
||||||
void attach(int mask = IN_MODIFY);
|
void attach(int mask = IN_MODIFY);
|
||||||
void remove(bool force = false);
|
void remove(bool force = false);
|
||||||
bool poll(int wait_ms = 1000);
|
bool poll(int wait_ms = 1000) const;
|
||||||
unique_ptr<inotify_event> get_event();
|
unique_ptr<inotify_event> get_event() const;
|
||||||
bool await_match();
|
bool await_match() const;
|
||||||
const string path() const;
|
const string path() const;
|
||||||
int get_file_descriptor() const;
|
int get_file_descriptor() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
string m_path;
|
string m_path;
|
||||||
int m_fd = -1;
|
int m_fd{-1};
|
||||||
int m_wd = -1;
|
int m_wd{-1};
|
||||||
int m_mask = 0;
|
int m_mask{0};
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace inotify_util {
|
namespace inotify_util {
|
||||||
bool match(const inotify_event* evt, int mask);
|
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
decltype(auto) make_watch(Args&&... args) {
|
decltype(auto) make_watch(Args&&... args) {
|
||||||
return factory_util::unique<inotify_watch>(forward<Args>(args)...);
|
return factory_util::unique<inotify_watch>(forward<Args>(args)...);
|
||||||
|
@ -720,7 +720,7 @@ bool bar::on(const sig_ui::tick&) {
|
|||||||
|
|
||||||
bool bar::on(const sig_ui::dim_window& sig) {
|
bool bar::on(const sig_ui::dim_window& sig) {
|
||||||
m_opts.dimmed = *sig.data() != 1.0;
|
m_opts.dimmed = *sig.data() != 1.0;
|
||||||
wm_util::set_wm_window_opacity(m_connection, m_opts.window, *sig.data() * 0xFFFFFFFF);
|
set_wm_window_opacity(m_connection, m_opts.window, *sig.data() * 0xFFFFFFFF);
|
||||||
m_connection.flush();
|
m_connection.flush();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "components/builder.hpp"
|
#include "components/builder.hpp"
|
||||||
|
#include "components/types.hpp"
|
||||||
#include "drawtypes/label.hpp"
|
#include "drawtypes/label.hpp"
|
||||||
#include "utils/math.hpp"
|
#include "utils/math.hpp"
|
||||||
#include "utils/string.hpp"
|
#include "utils/string.hpp"
|
||||||
@ -9,6 +9,23 @@
|
|||||||
|
|
||||||
POLYBAR_NS
|
POLYBAR_NS
|
||||||
|
|
||||||
|
#ifndef BUILDER_SPACE_TOKEN
|
||||||
|
#define BUILDER_SPACE_TOKEN "%__"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
builder::builder(const bar_settings& bar) : m_bar(bar), m_attributes{static_cast<uint8_t>(attribute::NONE)} {
|
||||||
|
m_tags[syntaxtag::A] = 0;
|
||||||
|
m_tags[syntaxtag::B] = 0;
|
||||||
|
m_tags[syntaxtag::F] = 0;
|
||||||
|
m_tags[syntaxtag::T] = 0;
|
||||||
|
m_tags[syntaxtag::u] = 0;
|
||||||
|
m_tags[syntaxtag::o] = 0;
|
||||||
|
m_colors[syntaxtag::B] = "";
|
||||||
|
m_colors[syntaxtag::F] = "";
|
||||||
|
m_colors[syntaxtag::u] = "";
|
||||||
|
m_colors[syntaxtag::o] = "";
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flush contents of the builder and return built string
|
* Flush contents of the builder and return built string
|
||||||
*
|
*
|
||||||
|
@ -74,9 +74,6 @@ namespace modules {
|
|||||||
m_icons->add(vec[0], factory_util::shared<label>(vec[1]));
|
m_icons->add(vec[0], factory_util::shared<label>(vec[1]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure we get notified when root properties change
|
|
||||||
window{m_connection, m_connection.root()}.ensure_event_mask(XCB_EVENT_MASK_PROPERTY_CHANGE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -52,7 +52,7 @@ void inotify_watch::remove(bool force) {
|
|||||||
*
|
*
|
||||||
* @brief A wait_ms of -1 blocks until an event is fired
|
* @brief A wait_ms of -1 blocks until an event is fired
|
||||||
*/
|
*/
|
||||||
bool inotify_watch::poll(int wait_ms) {
|
bool inotify_watch::poll(int wait_ms) const {
|
||||||
if (m_fd == -1) {
|
if (m_fd == -1) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -69,7 +69,7 @@ bool inotify_watch::poll(int wait_ms) {
|
|||||||
/**
|
/**
|
||||||
* Get the latest inotify event
|
* Get the latest inotify event
|
||||||
*/
|
*/
|
||||||
unique_ptr<inotify_event> inotify_watch::get_event() {
|
unique_ptr<inotify_event> inotify_watch::get_event() const {
|
||||||
auto event = factory_util::unique<inotify_event>();
|
auto event = factory_util::unique<inotify_event>();
|
||||||
|
|
||||||
if (m_fd == -1 || m_wd == -1) {
|
if (m_fd == -1 || m_wd == -1) {
|
||||||
@ -77,8 +77,8 @@ unique_ptr<inotify_event> inotify_watch::get_event() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
size_t bytes = read(m_fd, buffer, 1024);
|
auto bytes = read(m_fd, buffer, 1024);
|
||||||
size_t len = 0;
|
auto len = 0;
|
||||||
|
|
||||||
while (len < bytes) {
|
while (len < bytes) {
|
||||||
auto* e = reinterpret_cast<::inotify_event*>(&buffer[len]);
|
auto* e = reinterpret_cast<::inotify_event*>(&buffer[len]);
|
||||||
@ -98,7 +98,7 @@ unique_ptr<inotify_event> inotify_watch::get_event() {
|
|||||||
/**
|
/**
|
||||||
* Wait for matching event
|
* Wait for matching event
|
||||||
*/
|
*/
|
||||||
bool inotify_watch::await_match() {
|
bool inotify_watch::await_match() const {
|
||||||
return (get_event()->mask & m_mask) == m_mask;
|
return (get_event()->mask & m_mask) == m_mask;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,8 +116,4 @@ int inotify_watch::get_file_descriptor() const {
|
|||||||
return m_fd;
|
return m_fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool match(const inotify_event* evt, int mask) {
|
|
||||||
return (evt->mask & mask) == mask;
|
|
||||||
}
|
|
||||||
|
|
||||||
POLYBAR_NS_END
|
POLYBAR_NS_END
|
||||||
|
Loading…
Reference in New Issue
Block a user