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/static_module.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
namespace modules {
|
|
|
|
struct menu_tree_item {
|
|
|
|
string exec;
|
|
|
|
label_t label;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
struct menu_tree {
|
|
|
|
vector<unique_ptr<menu_tree_item>> items;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
class menu_module : public static_module<menu_module> {
|
|
|
|
public:
|
|
|
|
using static_module::static_module;
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void setup();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-11-02 15:22:45 -04:00
|
|
|
bool handle_event(string cmd);
|
|
|
|
bool receive_events() const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL_TOGGLE = "<label-toggle>";
|
|
|
|
static constexpr auto TAG_MENU = "<menu>";
|
|
|
|
|
2016-10-11 23:19:29 -04:00
|
|
|
static constexpr auto EVENT_MENU_OPEN = "menu-open-";
|
|
|
|
static constexpr auto EVENT_MENU_CLOSE = "menu-close";
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
label_t m_labelopen;
|
|
|
|
label_t m_labelclose;
|
2016-10-11 09:28:14 -04:00
|
|
|
label_t m_labelseparator;
|
|
|
|
|
|
|
|
vector<unique_ptr<menu_tree>> m_levels;
|
|
|
|
|
|
|
|
std::atomic<int> m_level{-1};
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|