mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
7 changed files with 70 additions and 76 deletions
@ -0,0 +1,18 @@ |
|||||||
|
#include "menu.h" |
||||||
|
|
||||||
|
namespace app::browser::header::bar |
||||||
|
{ |
||||||
|
// Construct
|
||||||
|
Menu::Menu( |
||||||
|
Bar *bar |
||||||
|
) { |
||||||
|
// Init GTK
|
||||||
|
this->gtk = gtk_menu_button_new(); |
||||||
|
|
||||||
|
gtk_widget_show( |
||||||
|
GTK_WIDGET( |
||||||
|
this->gtk |
||||||
|
) |
||||||
|
); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
#ifndef APP_BROWSER_HEADER_BAR_MENU_H |
||||||
|
#define APP_BROWSER_HEADER_BAR_MENU_H |
||||||
|
|
||||||
|
#include "../bar.h" |
||||||
|
|
||||||
|
namespace app::browser::header |
||||||
|
{ |
||||||
|
class Bar; |
||||||
|
|
||||||
|
namespace bar |
||||||
|
{ |
||||||
|
class Menu |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
GtkWidget *gtk; |
||||||
|
|
||||||
|
Menu( |
||||||
|
Bar *bar |
||||||
|
); |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
@ -1,21 +0,0 @@ |
|||||||
#include "menu.h" |
|
||||||
|
|
||||||
namespace app |
|
||||||
{ |
|
||||||
namespace browser |
|
||||||
{ |
|
||||||
// Construct
|
|
||||||
Menu::Menu( |
|
||||||
Browser *browser |
|
||||||
) { |
|
||||||
// Init GTK
|
|
||||||
this->gtk = gtk_menu_button_new(); |
|
||||||
|
|
||||||
gtk_widget_show( |
|
||||||
GTK_WIDGET( |
|
||||||
this->gtk |
|
||||||
) |
|
||||||
); |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue