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