init tab submenu

This commit is contained in:
yggverse 2024-08-06 23:47:08 +03:00
parent c9306bb4cd
commit 494964e64a
5 changed files with 86 additions and 8 deletions

View file

@ -5,6 +5,7 @@
#include "../menu.h"
// Requirements
#include "main/tab.h"
#include "main/debug.h"
#include "main/quit.h"
@ -16,25 +17,26 @@ namespace app::browser::header
{
namespace main
{
class Tab;
class Debug;
class Quit;
};
class Main
{
private:
GMenu* _model;
public:
// GTK
GtkWidget *gtk;
// Gio
GMenu* model;
// Dependencies
Menu *menu;
// Requirements
main::Tab *tab;
main::Debug *debug;
main::Quit *quit;