polybar/include/modules/bspwm.hpp

86 lines
2.0 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-11-20 22:04:31 +00:00
#include "modules/meta/event_module.hpp"
2016-06-15 03:32:35 +00:00
#include "utils/bspwm.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
namespace modules {
class bspwm_module : public event_module<bspwm_module> {
public:
2016-11-30 20:03:28 +00:00
enum class state {
NONE = 0U,
EMPTY,
OCCUPIED,
FOCUSED,
URGENT,
DIMMED, // used when the monitor is out of focus
};
enum class mode {
NONE = 0U,
LAYOUT_MONOCLE,
LAYOUT_TILED,
STATE_FULLSCREEN,
STATE_FLOATING,
NODE_LOCKED,
NODE_STICKY,
NODE_PRIVATE
};
struct bspwm_monitor {
vector<pair<uint32_t, label_t>> workspaces;
vector<label_t> modes;
label_t label;
string name;
bool focused = false;
};
2016-06-15 03:32:35 +00:00
using event_module::event_module;
2016-11-02 19:22:45 +00:00
void setup();
void stop();
bool has_event();
bool update();
string get_output();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
2016-11-02 19:22:45 +00:00
bool handle_event(string cmd);
bool receive_events() const {
return true;
}
2016-06-15 03:32:35 +00:00
private:
2016-11-30 20:03:28 +00:00
static constexpr auto DEFAULT_ICON = "ws-icon-default";
static constexpr auto DEFAULT_LABEL = "%icon% %name%";
static constexpr auto DEFAULT_MONITOR_LABEL = "%name%";
2016-11-30 20:03:28 +00:00
static constexpr auto TAG_LABEL_MONITOR = "<label-monitor>";
2016-06-15 03:32:35 +00:00
static constexpr auto TAG_LABEL_STATE = "<label-state>";
static constexpr auto TAG_LABEL_MODE = "<label-mode>";
2016-11-30 20:03:28 +00:00
2016-11-11 18:55:37 +00:00
static constexpr auto EVENT_PREFIX = "bwm";
static constexpr auto EVENT_CLICK = "bwmf";
static constexpr auto EVENT_SCROLL_UP = "bwmn";
static constexpr auto EVENT_SCROLL_DOWN = "bwmp";
2016-06-15 03:32:35 +00:00
bspwm_util::connection_t m_subscriber;
2016-06-15 03:32:35 +00:00
vector<unique_ptr<bspwm_monitor>> m_monitors;
2016-11-30 20:03:28 +00:00
map<mode, label_t> m_modelabels;
map<uint32_t, label_t> m_statelabels;
label_t m_monitorlabel;
2016-06-15 03:32:35 +00:00
iconset_t m_icons;
bool m_click = true;
bool m_scroll = true;
bool m_pinworkspaces = true;
2016-06-15 03:32:35 +00:00
unsigned long m_hash;
// used while formatting output
size_t m_index = 0;
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END