mirror of https://github.com/YGGverse/Yoda.git
yggverse
4 months ago
5 changed files with 74 additions and 1 deletions
@ -0,0 +1,21 @@ |
|||||||
|
#include "header.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