mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
init bar title
This commit is contained in:
parent
18c3b8b72c
commit
a830082b6b
5 changed files with 94 additions and 0 deletions
39
src/app/browser/header/bar/title.h
Normal file
39
src/app/browser/header/bar/title.h
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#ifndef APP_BROWSER_HEADER_BAR_TITLE_H
|
||||
#define APP_BROWSER_HEADER_BAR_TITLE_H
|
||||
|
||||
// Dependencies
|
||||
#include "../bar.h"
|
||||
|
||||
namespace app
|
||||
{
|
||||
namespace browser
|
||||
{
|
||||
namespace header
|
||||
{
|
||||
class Bar;
|
||||
|
||||
namespace bar
|
||||
{
|
||||
class Title
|
||||
{
|
||||
public:
|
||||
|
||||
// GTK
|
||||
GtkWidget *gtk;
|
||||
|
||||
// Defaults
|
||||
const char* LABEL = "Yoda";
|
||||
|
||||
// Dependencies
|
||||
Bar *bar;
|
||||
|
||||
Title(
|
||||
Bar *bar
|
||||
);
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue