mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <i3ipc++/ipc.hpp>
|
|
|
|
#include "components/config.hpp"
|
|
#include "config.hpp"
|
|
#include "modules/meta/event_module.hpp"
|
|
#include "utils/i3.hpp"
|
|
#include "utils/io.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
// meta types {{{
|
|
|
|
enum class i3_flag {
|
|
WORKSPACE_NONE,
|
|
WORKSPACE_FOCUSED,
|
|
WORKSPACE_UNFOCUSED,
|
|
WORKSPACE_VISIBLE,
|
|
WORKSPACE_URGENT,
|
|
};
|
|
|
|
struct i3_workspace {
|
|
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_)) {}
|
|
|
|
operator bool();
|
|
};
|
|
|
|
using i3_workspace_t = unique_ptr<i3_workspace>;
|
|
|
|
// }}}
|
|
|
|
class i3_module : public event_module<i3_module> {
|
|
public:
|
|
using event_module::event_module;
|
|
|
|
void setup();
|
|
void stop();
|
|
bool has_event();
|
|
bool update();
|
|
bool build(builder* builder, const string& tag) const;
|
|
bool handle_event(string cmd);
|
|
bool receive_events() const {
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
static constexpr auto DEFAULT_WS_ICON = "ws-icon-default";
|
|
static constexpr auto DEFAULT_WS_LABEL = "%icon% %name%";
|
|
static constexpr auto TAG_LABEL_STATE = "<label-state>";
|
|
|
|
static constexpr auto EVENT_PREFIX = "i3";
|
|
static constexpr auto EVENT_CLICK = "i3-wsfocus-";
|
|
static constexpr auto EVENT_SCROLL_UP = "i3-wsnext";
|
|
static constexpr auto EVENT_SCROLL_DOWN = "i3-wsprev";
|
|
|
|
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;
|
|
bool m_pinworkspaces = false;
|
|
bool m_strip_wsnumbers = false;
|
|
size_t m_wsname_maxlen = 0;
|
|
|
|
i3_util::connection_t m_ipc;
|
|
};
|
|
}
|
|
|
|
POLYBAR_NS_END
|