mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
29 lines
569 B
C++
29 lines
569 B
C++
#ifndef APP_BROWSER_HEADER_MENU_H
|
|
#define APP_BROWSER_HEADER_MENU_H
|
|
|
|
#include <giomm/menu.h>
|
|
#include <glibmm/i18n.h>
|
|
#include <gtkmm/menubutton.h>
|
|
|
|
namespace app::browser::header
|
|
{
|
|
class Menu : public Gtk::MenuButton
|
|
{
|
|
private:
|
|
|
|
Glib::RefPtr<Gio::Menu> tab,
|
|
tab_close,
|
|
tool,
|
|
main;
|
|
|
|
public:
|
|
|
|
const char* TOOLTIP = _("Menu");
|
|
|
|
Menu();
|
|
|
|
~Menu();
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_HEADER_MENU_H
|