2016-05-30 23:58:58 -04:00
|
|
|
#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 {
|
2019-12-02 13:14:26 -05:00
|
|
|
class bspwm_module : public event_module<bspwm_module> {
|
2016-06-14 23:32:35 -04:00
|
|
|
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,
|
2016-12-29 21:51:39 -05:00
|
|
|
STATE_PSEUDOTILED,
|
2016-11-30 15:03:28 -05:00
|
|
|
NODE_LOCKED,
|
|
|
|
NODE_STICKY,
|
2018-12-26 04:52:16 -05:00
|
|
|
NODE_PRIVATE,
|
|
|
|
NODE_MARKED
|
2016-11-30 15:03:28 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bspwm_monitor {
|
2017-01-19 05:11:28 -05:00
|
|
|
vector<pair<unsigned int, label_t>> workspaces;
|
2016-11-30 15:03:28 -05:00
|
|
|
vector<label_t> modes;
|
|
|
|
label_t label;
|
|
|
|
string name;
|
2016-12-14 01:45:29 -05:00
|
|
|
bool focused{false};
|
2016-11-30 15:03:28 -05:00
|
|
|
};
|
|
|
|
|
2016-12-21 02:00:09 -05:00
|
|
|
public:
|
|
|
|
explicit bspwm_module(const bar_settings&, string);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2021-01-04 04:38:43 -05:00
|
|
|
void stop() override;
|
2016-11-02 15:22:45 -04:00
|
|
|
bool has_event();
|
|
|
|
bool update();
|
2016-11-03 12:54:26 -04:00
|
|
|
string get_output();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-21 02:38:44 -05:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "internal/bspwm";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr auto EVENT_FOCUS = "focus";
|
|
|
|
static constexpr auto EVENT_NEXT = "next";
|
|
|
|
static constexpr auto EVENT_PREV = "prev";
|
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
protected:
|
2021-01-04 04:25:52 -05:00
|
|
|
void action_focus(const string& data);
|
|
|
|
void action_next();
|
|
|
|
void action_prev();
|
|
|
|
|
|
|
|
void focus_direction(bool next);
|
|
|
|
void send_command(const string& payload_cmd, const string& log_info);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
2017-02-21 08:23:16 -05:00
|
|
|
bool handle_status(string& data);
|
|
|
|
|
2016-11-30 15:03:28 -05:00
|
|
|
static constexpr auto DEFAULT_ICON = "ws-icon-default";
|
|
|
|
static constexpr auto DEFAULT_LABEL = "%icon% %name%";
|
2016-11-03 12:54:26 -04:00
|
|
|
static constexpr auto DEFAULT_MONITOR_LABEL = "%name%";
|
2016-11-30 15:03:28 -05:00
|
|
|
|
2016-11-03 12:54:26 -04: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-10-11 03:25:32 -04:00
|
|
|
bspwm_util::connection_t m_subscriber;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-03 12:54:26 -04:00
|
|
|
vector<unique_ptr<bspwm_monitor>> m_monitors;
|
|
|
|
|
2016-11-30 15:03:28 -05:00
|
|
|
map<mode, label_t> m_modelabels;
|
2017-01-19 05:11:28 -05:00
|
|
|
map<unsigned int, label_t> m_statelabels;
|
2016-11-03 12:54:26 -04:00
|
|
|
label_t m_monitorlabel;
|
2016-06-14 23:32:35 -04:00
|
|
|
iconset_t m_icons;
|
2016-11-12 07:37:07 -05:00
|
|
|
|
2018-01-06 19:18:09 -05:00
|
|
|
/**
|
|
|
|
* Separator that is inserted in between workspaces
|
|
|
|
*/
|
|
|
|
label_t m_labelseparator;
|
|
|
|
|
2016-12-14 01:45:29 -05:00
|
|
|
bool m_click{true};
|
|
|
|
bool m_scroll{true};
|
2021-05-13 06:59:13 -04:00
|
|
|
bool m_occscroll{false};
|
2016-12-14 11:18:20 -05:00
|
|
|
bool m_revscroll{true};
|
2016-12-14 01:45:29 -05:00
|
|
|
bool m_pinworkspaces{true};
|
2017-01-01 10:39:25 -05:00
|
|
|
bool m_inlinemode{false};
|
2016-12-14 01:45:29 -05:00
|
|
|
string_util::hash_type m_hash{0U};
|
2017-01-19 23:35:52 -05:00
|
|
|
bool m_fuzzy_match{false};
|
2016-11-03 12:54:26 -04:00
|
|
|
|
|
|
|
// used while formatting output
|
2016-12-14 01:45:29 -05:00
|
|
|
size_t m_index{0U};
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|