2016-05-31 03:58:58 +00:00
|
|
|
#pragma once
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-12-21 07:38:44 +00:00
|
|
|
#include "modules/meta/input_handler.hpp"
|
2016-11-20 22:04:31 +00:00
|
|
|
#include "modules/meta/static_module.hpp"
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
namespace modules {
|
2016-12-21 07:38:44 +00:00
|
|
|
class menu_module : public static_module<menu_module>, public input_handler {
|
2016-12-21 07:00:09 +00:00
|
|
|
public:
|
|
|
|
struct menu_tree_item {
|
|
|
|
string exec;
|
|
|
|
label_t label;
|
|
|
|
};
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-12-21 07:00:09 +00:00
|
|
|
struct menu_tree {
|
|
|
|
vector<unique_ptr<menu_tree_item>> items;
|
|
|
|
};
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
public:
|
2016-12-21 07:00:09 +00:00
|
|
|
explicit menu_module(const bar_settings&, string);
|
2016-05-19 14:41:06 +00:00
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-23 14:54:06 +00:00
|
|
|
void update() {}
|
2016-12-21 07:38:44 +00:00
|
|
|
|
|
|
|
protected:
|
2016-12-23 19:43:52 +00:00
|
|
|
bool input(string&& cmd);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL_TOGGLE = "<label-toggle>";
|
|
|
|
static constexpr auto TAG_MENU = "<menu>";
|
|
|
|
|
2016-10-12 03:19:29 +00:00
|
|
|
static constexpr auto EVENT_MENU_OPEN = "menu-open-";
|
|
|
|
static constexpr auto EVENT_MENU_CLOSE = "menu-close";
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2017-08-29 20:25:41 +00:00
|
|
|
bool m_expand_right{true};
|
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
label_t m_labelopen;
|
|
|
|
label_t m_labelclose;
|
2016-10-11 13:28:14 +00:00
|
|
|
label_t m_labelseparator;
|
|
|
|
|
|
|
|
vector<unique_ptr<menu_tree>> m_levels;
|
|
|
|
|
|
|
|
std::atomic<int> m_level{-1};
|
2016-05-19 14:41:06 +00:00
|
|
|
};
|
|
|
|
}
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|