mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
33 lines
No EOL
527 B
C++
33 lines
No EOL
527 B
C++
#ifndef APP_BROWSER_HEADER_BAR_TITLE_H
|
|
#define APP_BROWSER_HEADER_BAR_TITLE_H
|
|
|
|
// Dependencies
|
|
#include "../bar.h"
|
|
|
|
namespace app::browser::header
|
|
{
|
|
class Bar;
|
|
|
|
namespace bar
|
|
{
|
|
class Title
|
|
{
|
|
public:
|
|
|
|
// GTK
|
|
GtkWidget *gtk;
|
|
|
|
// Defaults
|
|
const char* LABEL = "Yoda";
|
|
|
|
// Dependencies
|
|
Bar *bar;
|
|
|
|
Title(
|
|
Bar *bar
|
|
);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif |