2016-05-31 05:58:58 +02:00
|
|
|
#pragma once
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-11-20 23:04:31 +01:00
|
|
|
#include "modules/meta/static_module.hpp"
|
2023-05-08 19:36:12 +02:00
|
|
|
#include "modules/meta/types.hpp"
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-11-19 06:22:44 +01:00
|
|
|
POLYBAR_NS
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
namespace modules {
|
2019-12-02 19:14:26 +01:00
|
|
|
class menu_module : public static_module<menu_module> {
|
2016-12-21 08:00:09 +01:00
|
|
|
public:
|
|
|
|
struct menu_tree_item {
|
|
|
|
string exec;
|
|
|
|
label_t label;
|
|
|
|
};
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-12-21 08:00:09 +01:00
|
|
|
struct menu_tree {
|
|
|
|
vector<unique_ptr<menu_tree_item>> items;
|
|
|
|
};
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
public:
|
2023-05-01 14:58:52 +02:00
|
|
|
explicit menu_module(const bar_settings&, string, const config&);
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-11-25 13:55:15 +01:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-23 15:54:06 +01:00
|
|
|
void update() {}
|
2016-12-21 08:38:44 +01:00
|
|
|
|
2023-05-08 19:36:12 +02:00
|
|
|
static constexpr auto TYPE = MENU_TYPE;
|
2020-05-15 19:59:08 +02:00
|
|
|
|
2020-05-24 18:35:12 +02:00
|
|
|
static constexpr auto EVENT_OPEN = "open";
|
|
|
|
static constexpr auto EVENT_CLOSE = "close";
|
2020-05-30 19:13:31 +02:00
|
|
|
static constexpr auto EVENT_EXEC = "exec";
|
2020-05-24 18:35:12 +02:00
|
|
|
|
2016-12-21 08:38:44 +01:00
|
|
|
protected:
|
2021-01-04 10:25:52 +01:00
|
|
|
void action_open(const string& data);
|
|
|
|
void action_close();
|
|
|
|
void action_exec(const string& item);
|
2016-06-15 05:32:35 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL_TOGGLE = "<label-toggle>";
|
|
|
|
static constexpr auto TAG_MENU = "<menu>";
|
|
|
|
|
2017-08-29 22:25:41 +02:00
|
|
|
bool m_expand_right{true};
|
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
label_t m_labelopen;
|
|
|
|
label_t m_labelclose;
|
2016-10-11 15:28:14 +02:00
|
|
|
label_t m_labelseparator;
|
|
|
|
|
|
|
|
vector<unique_ptr<menu_tree>> m_levels;
|
|
|
|
|
2021-09-30 15:27:39 +02:00
|
|
|
int m_level{-1};
|
2016-05-19 16:41:06 +02:00
|
|
|
};
|
2020-05-15 19:59:08 +02:00
|
|
|
} // namespace modules
|
2016-06-15 05:32:35 +02:00
|
|
|
|
2016-11-19 06:22:44 +01:00
|
|
|
POLYBAR_NS_END
|