mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
20 lines
356 B
C++
20 lines
356 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
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
const char* TOOLTIP = _("Menu");
|
||
|
|
||
|
Menu();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // APP_BROWSER_HEADER_MENU_H
|