polybar/include/modules/i3.hpp

83 lines
1.8 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-10-12 01:57:22 +00:00
#include <i3ipc++/ipc.hpp>
2016-05-19 14:41:06 +00:00
2016-10-12 01:57:22 +00:00
#include "components/config.hpp"
2016-10-18 09:49:13 +00:00
#include "config.hpp"
2016-06-15 03:32:35 +00:00
#include "drawtypes/iconset.hpp"
2016-05-19 14:41:06 +00:00
#include "drawtypes/label.hpp"
2016-06-15 03:32:35 +00:00
#include "modules/meta.hpp"
2016-10-12 01:57:22 +00:00
#include "utils/i3.hpp"
#include "utils/io.hpp"
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS
namespace modules {
2016-10-12 01:57:22 +00:00
// meta types {{{
2016-06-15 03:32:35 +00:00
enum class i3_flag {
WORKSPACE_NONE,
WORKSPACE_FOCUSED,
WORKSPACE_UNFOCUSED,
WORKSPACE_VISIBLE,
WORKSPACE_URGENT,
};
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
struct i3_workspace {
2016-10-12 01:57:22 +00:00
int index;
i3_flag flag;
label_t label;
i3_workspace(int index_, i3_flag flag_, label_t&& label_)
: index(index_), flag(flag_), label(forward<decltype(label_)>(label_)) {}
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
operator bool() {
2016-10-12 01:57:22 +00:00
return label && *label;
2016-06-15 03:32:35 +00:00
}
};
using i3_workspace_t = unique_ptr<i3_workspace>;
2016-10-12 01:57:22 +00:00
// }}}
2016-06-15 03:32:35 +00:00
class i3_module : public event_module<i3_module> {
public:
using event_module::event_module;
2016-11-02 19:22:45 +00:00
void setup();
void stop();
bool has_event();
bool update();
bool build(builder* builder, string tag) const;
bool handle_event(string cmd);
bool receive_events() const {
return true;
}
2016-06-15 03:32:35 +00:00
private:
static constexpr auto DEFAULT_WS_ICON = "ws-icon-default";
2016-06-15 03:32:35 +00:00
static constexpr auto DEFAULT_WS_LABEL = "%icon% %name%";
static constexpr auto TAG_LABEL_STATE = "<label-state>";
static constexpr auto EVENT_PREFIX = "i3";
2016-10-12 02:14:28 +00:00
static constexpr auto EVENT_CLICK = "i3-wsfocus-";
static constexpr auto EVENT_SCROLL_UP = "i3-wsnext";
static constexpr auto EVENT_SCROLL_DOWN = "i3-wsprev";
2016-06-15 03:32:35 +00:00
map<i3_flag, label_t> m_statelabels;
vector<i3_workspace_t> m_workspaces;
iconset_t m_icons;
bool m_click = true;
bool m_scroll = true;
bool m_indexsort = false;
2016-10-12 01:57:22 +00:00
bool m_pinworkspaces = false;
bool m_strip_wsnumbers = false;
2016-10-12 01:57:22 +00:00
size_t m_wsname_maxlen = 0;
i3_util::connection_t m_ipc;
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS_END