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 {
|
2019-12-02 13:14:26 -05:00
|
|
|
class menu_module : public static_module<menu_module> {
|
2016-12-21 02:00:09 -05:00
|
|
|
public:
|
|
|
|
struct menu_tree_item {
|
|
|
|
string exec;
|
|
|
|
label_t label;
|
|
|
|
};
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-12-21 02:00:09 -05: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
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
explicit menu_module(const bar_settings&, string);
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-23 09:54:06 -05:00
|
|
|
void update() {}
|
2016-12-21 02:38:44 -05:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "custom/menu";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr auto EVENT_OPEN = "open";
|
|
|
|
static constexpr auto EVENT_CLOSE = "close";
|
2020-05-30 13:13:31 -04:00
|
|
|
static constexpr auto EVENT_EXEC = "exec";
|
2020-05-24 12:35:12 -04:00
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
protected:
|
2021-01-04 04:25:52 -05:00
|
|
|
void action_open(const string& data);
|
|
|
|
void action_close();
|
|
|
|
void action_exec(const string& item);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL_TOGGLE = "<label-toggle>";
|
|
|
|
static constexpr auto TAG_MENU = "<menu>";
|
|
|
|
|
2017-08-29 16:25:41 -04:00
|
|
|
bool m_expand_right{true};
|
|
|
|
|
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;
|
|
|
|
|
2021-09-30 09:27:39 -04:00
|
|
|
int m_level{-1};
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|