2016-11-26 00:14:58 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <bitset>
|
|
|
|
|
|
|
|
#include "components/config.hpp"
|
2016-11-26 03:38:55 -05:00
|
|
|
#include "components/types.hpp"
|
2016-11-26 00:14:58 -05:00
|
|
|
#include "modules/meta/static_module.hpp"
|
|
|
|
#include "x11/events.hpp"
|
|
|
|
#include "x11/ewmh.hpp"
|
|
|
|
#include "x11/icccm.hpp"
|
|
|
|
#include "x11/window.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
class connection;
|
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
enum class desktop_state {
|
|
|
|
NONE,
|
|
|
|
ACTIVE,
|
|
|
|
URGENT,
|
|
|
|
EMPTY,
|
|
|
|
OCCUPIED,
|
|
|
|
};
|
|
|
|
|
2016-11-26 03:38:55 -05:00
|
|
|
enum class viewport_state {
|
|
|
|
NONE,
|
|
|
|
FOCUSED,
|
|
|
|
UNFOCUSED,
|
|
|
|
};
|
|
|
|
|
2016-12-03 07:45:22 -05:00
|
|
|
struct desktop {
|
|
|
|
explicit desktop(size_t index, desktop_state state, label_t&& label) : index(index), state(state), label(label) {}
|
|
|
|
size_t index;
|
|
|
|
desktop_state state;
|
|
|
|
label_t label;
|
|
|
|
};
|
|
|
|
|
2016-11-26 03:38:55 -05:00
|
|
|
struct viewport {
|
|
|
|
position pos;
|
2016-11-26 00:14:58 -05:00
|
|
|
string name;
|
2016-12-03 07:45:22 -05:00
|
|
|
vector<unique_ptr<desktop>> desktops;
|
2016-11-26 03:38:55 -05:00
|
|
|
viewport_state state;
|
2016-11-26 00:14:58 -05:00
|
|
|
label_t label;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module used to display EWMH desktops
|
|
|
|
*/
|
|
|
|
class xworkspaces_module : public static_module<xworkspaces_module>, public xpp::event::sink<evt::property_notify> {
|
|
|
|
public:
|
2016-12-09 03:40:46 -05:00
|
|
|
explicit xworkspaces_module(const bar_settings& bar, string name);
|
2016-11-26 00:14:58 -05:00
|
|
|
|
|
|
|
void setup();
|
|
|
|
void teardown();
|
|
|
|
void handle(const evt::property_notify& evt);
|
|
|
|
void update();
|
|
|
|
string get_output();
|
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-11-26 04:33:32 -05:00
|
|
|
bool handle_event(string cmd);
|
|
|
|
bool receive_events() const {
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-26 00:14:58 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void rebuild_desktops();
|
|
|
|
void set_current_desktop();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr const char* DEFAULT_ICON{"icon-default"};
|
2016-11-26 03:38:55 -05:00
|
|
|
static constexpr const char* DEFAULT_LABEL_STATE{"%icon% %name%"};
|
|
|
|
static constexpr const char* DEFAULT_LABEL_MONITOR{"%name%"};
|
2016-11-26 00:14:58 -05:00
|
|
|
|
2016-11-26 03:38:55 -05:00
|
|
|
static constexpr const char* TAG_LABEL_MONITOR{"<label-monitor>"};
|
|
|
|
static constexpr const char* TAG_LABEL_STATE{"<label-state>"};
|
2016-11-26 00:14:58 -05:00
|
|
|
|
2016-11-26 04:33:32 -05:00
|
|
|
static constexpr const char* EVENT_PREFIX{"xworkspaces-"};
|
|
|
|
static constexpr const char* EVENT_CLICK{"focus="};
|
|
|
|
static constexpr const char* EVENT_SCROLL_UP{"next"};
|
|
|
|
static constexpr const char* EVENT_SCROLL_DOWN{"prev"};
|
|
|
|
|
2016-11-26 00:14:58 -05:00
|
|
|
connection& m_connection;
|
|
|
|
ewmh_connection_t m_ewmh;
|
2016-11-26 03:38:55 -05:00
|
|
|
vector<monitor_t> m_monitors;
|
|
|
|
bool m_monitorsupport{true};
|
2016-11-26 00:14:58 -05:00
|
|
|
|
2016-11-26 03:38:55 -05:00
|
|
|
vector<unique_ptr<viewport>> m_viewports;
|
2016-11-26 00:14:58 -05:00
|
|
|
map<desktop_state, label_t> m_labels;
|
2016-11-26 03:38:55 -05:00
|
|
|
label_t m_monitorlabel;
|
2016-11-26 00:14:58 -05:00
|
|
|
iconset_t m_icons;
|
2016-11-26 03:38:55 -05:00
|
|
|
bool m_pinworkspaces{false};
|
2016-11-26 04:33:32 -05:00
|
|
|
bool m_click{true};
|
|
|
|
bool m_scroll{true};
|
2016-11-26 00:14:58 -05:00
|
|
|
size_t m_index{0};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|