#pragma once #include "modules/meta/static_module.hpp" POLYBAR_NS namespace modules { class menu_module : public static_module { public: struct menu_tree_item { string exec; label_t label; }; struct menu_tree { vector> items; }; public: explicit menu_module(const bar_settings&, string); bool build(builder* builder, const string& tag) const; void update() {} static constexpr auto TYPE = "custom/menu"; static constexpr auto EVENT_OPEN = "open"; static constexpr auto EVENT_CLOSE = "close"; static constexpr auto EVENT_EXEC = "exec"; protected: void action_open(const string& data); void action_close(); void action_exec(const string& item); private: static constexpr auto TAG_LABEL_TOGGLE = ""; static constexpr auto TAG_MENU = ""; bool m_expand_right{true}; label_t m_labelopen; label_t m_labelclose; label_t m_labelseparator; vector> m_levels; int m_level{-1}; }; } // namespace modules POLYBAR_NS_END