mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
88 lines
2.2 KiB
C++
88 lines
2.2 KiB
C++
#include <gui.hpp>
|
|
|
|
#include <driver.hpp>
|
|
#include <task.hpp>
|
|
#include <printf.h>
|
|
#include <debug.h>
|
|
|
|
#include "../kernel.h"
|
|
#include "../DAPI.hpp"
|
|
#include "../Fex.hpp"
|
|
|
|
namespace GraphicalUserInterface
|
|
{
|
|
void Window::OnResize(Event *e)
|
|
{
|
|
// TODO: Optimize this
|
|
this->mem->FreePages(this->Buffer->Data, TO_PAGES(this->Buffer->Size));
|
|
delete this->Buffer;
|
|
|
|
this->Buffer = new ScreenBitmap;
|
|
this->Buffer->Width = e->Resize.Width;
|
|
this->Buffer->Height = e->Resize.Height;
|
|
this->Buffer->BitsPerPixel = Display->GetBitsPerPixel();
|
|
this->Buffer->Pitch = Display->GetPitch();
|
|
this->Buffer->Size = this->Buffer->Pitch * e->Resize.Height;
|
|
this->Buffer->Data = (uint8_t *)this->mem->RequestPages(TO_PAGES(this->Buffer->Size));
|
|
memset(this->Buffer->Data, 0, this->Buffer->Size);
|
|
this->OnPaint(e);
|
|
}
|
|
|
|
void Window::OnMinimize(Event *e)
|
|
{
|
|
fixme("Window::OnMinimize() not implemented");
|
|
}
|
|
|
|
void Window::OnMaximize(Event *e)
|
|
{
|
|
fixme("Window::OnMaximize() not implemented");
|
|
}
|
|
|
|
void Window::OnClose(Event *e)
|
|
{
|
|
fixme("Window::OnClose() not implemented");
|
|
}
|
|
|
|
void Window::OnPaintBackground(Event *e)
|
|
{
|
|
Rect PaintPosition = this->Position;
|
|
PaintPosition.Left = 0;
|
|
PaintPosition.Top = 0;
|
|
PutRect(this->Buffer, PaintPosition, /*0x121212*/ 0xFF00FF);
|
|
}
|
|
|
|
void Window::OnPaintForeground(Event *e)
|
|
{
|
|
// Window content
|
|
if (!this->Maximized)
|
|
{
|
|
char buf[256];
|
|
sprintf_(buf, "Left:\eAA11FF%ld\eFFFFFF Top:\eAA11FF%ld\eFFFFFF W:\eAA11FF%ld\eFFFFFF H:\eAA11FF%ld\eFFFFFF", this->Position.Left, this->Position.Top, this->Position.Width, this->Position.Height);
|
|
// Display->DrawString(buf, this->Position.Left + 20, this->Position.Top + 25, 200);
|
|
}
|
|
|
|
foreach (auto var in this->Widgets)
|
|
{
|
|
var->OnPaint(e);
|
|
}
|
|
}
|
|
|
|
void Window::OnPaint(Event *e)
|
|
{
|
|
this->OnPaintBackground(e);
|
|
this->OnPaintForeground(e);
|
|
}
|
|
|
|
void Window::OnMouseDown(Event *e)
|
|
{
|
|
}
|
|
|
|
void Window::OnMouseUp(Event *e)
|
|
{
|
|
}
|
|
|
|
void Window::OnMouseMove(Event *e)
|
|
{
|
|
}
|
|
}
|