mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-07 05:19:17 +00:00
Rewrote GUI implementation
This commit is contained in:
@ -11,20 +11,17 @@
|
||||
|
||||
namespace GraphicalUserInterface
|
||||
{
|
||||
void Widget::Paint()
|
||||
Handle WidgetCollection::CreatePanel(uint32_t Left, uint32_t Top, uint32_t Width, uint32_t Height)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Widget::HandleEvent(Event *e)
|
||||
{
|
||||
}
|
||||
|
||||
Widget::Widget(void *ParentWindow)
|
||||
WidgetCollection::WidgetCollection(void *ParentWindow)
|
||||
{
|
||||
this->mem = new Memory::MemMgr;
|
||||
}
|
||||
|
||||
Widget::~Widget()
|
||||
WidgetCollection::~WidgetCollection()
|
||||
{
|
||||
delete this->mem;
|
||||
}
|
||||
|
Reference in New Issue
Block a user