mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
update header bar menu namespace
This commit is contained in:
parent
0d624d3db7
commit
7b8b3b860c
7 changed files with 71 additions and 77 deletions
|
|
@ -5,45 +5,42 @@
|
|||
#include "../header.h"
|
||||
|
||||
// Requirements
|
||||
#include "../menu.h"
|
||||
#include "bar/menu.h"
|
||||
#include "bar/title.h"
|
||||
|
||||
namespace app
|
||||
namespace app::browser
|
||||
{
|
||||
namespace browser
|
||||
class Header;
|
||||
|
||||
namespace header
|
||||
{
|
||||
class Header;
|
||||
|
||||
class Menu;
|
||||
|
||||
namespace header
|
||||
namespace bar
|
||||
{
|
||||
namespace bar
|
||||
{
|
||||
class Title;
|
||||
};
|
||||
class Menu;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public:
|
||||
class Title;
|
||||
};
|
||||
|
||||
// GTK
|
||||
GtkWidget *gtk;
|
||||
class Bar
|
||||
{
|
||||
public:
|
||||
|
||||
// Defaults
|
||||
const gint SPACING = 0;
|
||||
// GTK
|
||||
GtkWidget *gtk;
|
||||
|
||||
// Dependencies
|
||||
Header *header;
|
||||
// Defaults
|
||||
const gint SPACING = 0;
|
||||
|
||||
// Requirements
|
||||
Menu *menu;
|
||||
bar::Title *title;
|
||||
// Dependencies
|
||||
Header *header;
|
||||
|
||||
Bar(
|
||||
Header *header
|
||||
);
|
||||
};
|
||||
// Requirements
|
||||
bar::Menu *menu;
|
||||
bar::Title *title;
|
||||
|
||||
Bar(
|
||||
Header *header
|
||||
);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue