mirror of https://github.com/YGGverse/Yoda.git
yggverse
4 months ago
5 changed files with 86 additions and 8 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
#include "tab.h" |
||||
|
||||
namespace app::browser::header::menu::main |
||||
{ |
||||
// Construct
|
||||
Tab::Tab( |
||||
Main *main |
||||
) { |
||||
// Init dependencies
|
||||
this->main = main; |
||||
|
||||
// Init model
|
||||
this->model = g_menu_new(); |
||||
|
||||
// Init menu
|
||||
this->gtk = gtk_popover_menu_new_from_model( |
||||
G_MENU_MODEL( |
||||
this->model |
||||
) |
||||
); |
||||
} |
||||
} |
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
#ifndef APP_BROWSER_HEADER_MENU_MAIN_TAB_H |
||||
#define APP_BROWSER_HEADER_MENU_MAIN_TAB_H |
||||
|
||||
#include "../main.h" |
||||
|
||||
namespace app::browser::header::menu |
||||
{ |
||||
class Main; |
||||
|
||||
namespace main |
||||
{ |
||||
class Tab |
||||
{ |
||||
public: |
||||
|
||||
// GTK
|
||||
GtkWidget *gtk; |
||||
|
||||
// Gio
|
||||
GMenu* model; |
||||
|
||||
GMenuItem *item; |
||||
|
||||
// Dependencies
|
||||
Main *main; |
||||
|
||||
// Defaults
|
||||
const gchar *LABEL = "Tab"; |
||||
|
||||
// Construct
|
||||
Tab( |
||||
Main *main |
||||
); |
||||
}; |
||||
}; |
||||
}; |
||||
|
||||
#endif |
Loading…
Reference in new issue