mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
53 lines
No EOL
896 B
C++
53 lines
No EOL
896 B
C++
#pragma once
|
|
|
|
#ifndef APP_BROWSER_HEADER_MENU_MAIN_H
|
|
#define APP_BROWSER_HEADER_MENU_MAIN_H
|
|
|
|
// Dependencies
|
|
#include "../menu.h"
|
|
|
|
// Requirements
|
|
#include "main/tab.h"
|
|
#include "main/debug.h"
|
|
#include "main/quit.h"
|
|
|
|
namespace app::browser::header
|
|
{
|
|
class Menu;
|
|
|
|
namespace menu
|
|
{
|
|
namespace main
|
|
{
|
|
class Tab;
|
|
class Debug;
|
|
class Quit;
|
|
};
|
|
|
|
class Main
|
|
{
|
|
public:
|
|
|
|
// GTK
|
|
GtkWidget *gtk;
|
|
|
|
// Gio
|
|
GMenu* model;
|
|
|
|
// Dependencies
|
|
Menu *menu;
|
|
|
|
// Requirements
|
|
main::Tab *tab;
|
|
main::Debug *debug;
|
|
main::Quit *quit;
|
|
|
|
// Constructor
|
|
Main(
|
|
Menu *menu
|
|
);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif |