mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
41 lines
No EOL
651 B
C++
41 lines
No EOL
651 B
C++
#ifndef APP_BROWSER_HEADER_H
|
|
#define APP_BROWSER_HEADER_H
|
|
|
|
// Dependencies
|
|
#include "../browser.h"
|
|
|
|
// Requirements
|
|
#include "menu.h"
|
|
|
|
namespace app
|
|
{
|
|
class Browser;
|
|
|
|
namespace browser
|
|
{
|
|
class Menu;
|
|
|
|
class Header
|
|
{
|
|
public:
|
|
|
|
// GTK
|
|
GtkWidget *gtk;
|
|
|
|
// Defaults
|
|
const gboolean SHOW_TITLE_BUTTONS = true;
|
|
|
|
// Dependencies
|
|
Browser *browser;
|
|
|
|
// Requirements
|
|
Menu *menu;
|
|
|
|
Header(
|
|
Browser *browser
|
|
);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif |