polybar/include/modules/menu.hpp

45 lines
927 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "drawtypes/label.hpp"
#include "modules/meta.hpp"
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
namespace modules {
struct menu_tree_item {
string exec;
label_t label;
2016-05-19 14:41:06 +00:00
};
2016-06-15 03:32:35 +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
class menu_module : public static_module<menu_module> {
public:
using static_module::static_module;
2016-05-19 14:41:06 +00:00
2016-11-02 19:22:45 +00:00
void setup();
bool build(builder* builder, string tag) const;
bool handle_event(string cmd);
bool receive_events() const;
2016-06-15 03:32:35 +00:00
private:
static constexpr auto TAG_LABEL_TOGGLE = "<label-toggle>";
static constexpr auto TAG_MENU = "<menu>";
static constexpr auto EVENT_MENU_OPEN = "menu-open-";
static constexpr auto EVENT_MENU_CLOSE = "menu-close";
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
LEMONBUDDY_NS_END