mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
392 B
21 lines
392 B
|
11 years ago
|
#ifndef JUCI_MENU_H_
|
||
|
|
#define JUCI_MENU_H_
|
||
|
|
|
||
|
11 years ago
|
#include <string>
|
||
|
|
#include <unordered_map>
|
||
|
11 years ago
|
#include <gtkmm.h>
|
||
|
11 years ago
|
|
||
|
11 years ago
|
class Menu {
|
||
|
|
public:
|
||
|
|
Menu();
|
||
|
|
Gtk::Widget& get_widget();
|
||
|
|
void build();
|
||
|
|
|
||
|
|
Gtk::Box box;
|
||
|
|
std::unordered_map<std::string, std::string> key_map;
|
||
|
|
std::string ui;
|
||
|
|
Glib::RefPtr<Gtk::UIManager> ui_manager;
|
||
|
|
Glib::RefPtr<Gtk::ActionGroup> action_group;
|
||
|
|
};
|
||
|
11 years ago
|
#endif // JUCI_MENU_H_
|