mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-02-06 08:24:14 +00:00
init page subclass
This commit is contained in:
parent
4a8b84d57e
commit
9b6dceddd8
@ -53,10 +53,44 @@ namespace app
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
class Page
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
class Navbar
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
Navbar();
|
||||||
|
};
|
||||||
|
|
||||||
|
class Body
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
Body();
|
||||||
|
};
|
||||||
|
|
||||||
|
Page();
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
Navbar _navbar;
|
||||||
|
Body _body;
|
||||||
|
};
|
||||||
|
|
||||||
const bool SCROLLABLE = true;
|
const bool SCROLLABLE = true;
|
||||||
const bool REORDERABLE = true;
|
const bool REORDERABLE = true;
|
||||||
|
|
||||||
Container();
|
Container();
|
||||||
|
|
||||||
|
Page append(
|
||||||
|
char* request,
|
||||||
|
bool open = true,
|
||||||
|
bool focus = false
|
||||||
|
);
|
||||||
|
|
||||||
|
void update();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user