mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
43 lines
No EOL
661 B
C++
43 lines
No EOL
661 B
C++
#pragma once
|
|
|
|
#ifndef APP_BROWSER_CONTAINER_H
|
|
#define APP_BROWSER_CONTAINER_H
|
|
|
|
// Dependencies
|
|
#include "../browser.h"
|
|
|
|
// Requirements
|
|
#include "container/tab.h"
|
|
|
|
namespace app
|
|
{
|
|
class Browser;
|
|
|
|
namespace browser
|
|
{
|
|
namespace container
|
|
{
|
|
class Tab;
|
|
}
|
|
|
|
class Container
|
|
{
|
|
public:
|
|
|
|
// GTK
|
|
GtkWidget *gtk;
|
|
|
|
// Defaults
|
|
const gint SPACING = 0;
|
|
|
|
// Requirements
|
|
container::Tab *tab;
|
|
|
|
Container(
|
|
Browser *browser
|
|
);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif |