mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
implement main menu popover (container)
This commit is contained in:
parent
7b8b3b860c
commit
5075798b0e
5 changed files with 90 additions and 1 deletions
37
src/app/browser/header/bar/menu/main.h
Normal file
37
src/app/browser/header/bar/menu/main.h
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#ifndef APP_BROWSER_HEADER_BAR_MENU_MAIN_H
|
||||
#define APP_BROWSER_HEADER_BAR_MENU_MAIN_H
|
||||
|
||||
// Dependencies
|
||||
#include "../menu.h"
|
||||
|
||||
// Requirements
|
||||
// ..
|
||||
|
||||
namespace app::browser::header::bar
|
||||
{
|
||||
class Menu;
|
||||
|
||||
namespace menu
|
||||
{
|
||||
class Main
|
||||
{
|
||||
public:
|
||||
|
||||
// GTK
|
||||
GtkWidget *gtk;
|
||||
|
||||
// Dependencies
|
||||
Menu *menu;
|
||||
|
||||
// Requirements
|
||||
// ..
|
||||
|
||||
// Constructor
|
||||
Main(
|
||||
Menu *menu
|
||||
);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue