File: menu.hpp

package info (click to toggle)
polybar 3.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,108 kB
  • sloc: cpp: 30,424; python: 3,750; sh: 284; makefile: 83
file content (53 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#pragma once

#include "modules/meta/static_module.hpp"
#include "modules/meta/types.hpp"

POLYBAR_NS

namespace modules {
  class menu_module : public static_module<menu_module> {
   public:
    struct menu_tree_item {
      string exec;
      label_t label;
    };

    struct menu_tree {
      vector<unique_ptr<menu_tree_item>> items;
    };

   public:
    explicit menu_module(const bar_settings&, string, const config&);

    bool build(builder* builder, const string& tag) const;
    void update() {}

    static constexpr auto TYPE = MENU_TYPE;

    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 = "<label-toggle>";
    static constexpr auto TAG_MENU = "<menu>";

    bool m_expand_right{true};

    label_t m_labelopen;
    label_t m_labelclose;
    label_t m_labelseparator;

    vector<unique_ptr<menu_tree>> m_levels;

    int m_level{-1};
  };
}  // namespace modules

POLYBAR_NS_END