mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
init tab class
This commit is contained in:
parent
3e24a6fb72
commit
3bcffc4326
5 changed files with 90 additions and 0 deletions
|
|
@ -1,22 +1,36 @@
|
|||
#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
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue