1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/include/modules/bspwm.hpp

86 lines
2 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 10:41:06 -04:00
2016-11-20 17:04:31 -05:00
#include "modules/meta/event_module.hpp"
2016-06-14 23:32:35 -04:00
#include "utils/bspwm.hpp"
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-06-14 23:32:35 -04:00
namespace modules {
class bspwm_module : public event_module<bspwm_module> {
public:
2016-11-30 15:03:28 -05: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-14 23:32:35 -04:00
using event_module::event_module;
2016-11-02 15:22:45 -04:00
void setup();
void stop();
bool has_event();
bool update();
string get_output();
2016-11-25 07:55:15 -05:00
bool build(builder* builder, const string& tag) const;
2016-11-02 15:22:45 -04:00
bool handle_event(string cmd);
bool receive_events() const {
return true;
}
2016-06-14 23:32:35 -04:00
private:
2016-11-30 15:03:28 -05: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 15:03:28 -05:00
static constexpr auto TAG_LABEL_MONITOR = "<label-monitor>";
2016-06-14 23:32:35 -04:00
static constexpr auto TAG_LABEL_STATE = "<label-state>";
static constexpr auto TAG_LABEL_MODE = "<label-mode>";
2016-11-30 15:03:28 -05:00
2016-12-05 08:02:16 -05:00
static constexpr const char* EVENT_PREFIX{"bspwm-desk"};
static constexpr const char* EVENT_CLICK{"bspwm-deskfocus"};
static constexpr const char* EVENT_SCROLL_UP{"bspwm-desknext"};
static constexpr const char* EVENT_SCROLL_DOWN{"bspwm-deskprev"};
2016-06-14 23:32:35 -04:00
bspwm_util::connection_t m_subscriber;
2016-06-14 23:32:35 -04:00
vector<unique_ptr<bspwm_monitor>> m_monitors;
2016-11-30 15:03:28 -05:00
map<mode, label_t> m_modelabels;
map<uint32_t, label_t> m_statelabels;
label_t m_monitorlabel;
2016-06-14 23:32:35 -04:00
iconset_t m_icons;
bool m_click = true;
bool m_scroll = true;
bool m_pinworkspaces = true;
2016-06-14 23:32:35 -04:00
unsigned long m_hash;
// used while formatting output
size_t m_index = 0;
2016-05-19 10:41:06 -04:00
};
}
2016-06-14 23:32:35 -04:00
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END