mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
61 lines
1.1 KiB
C++
61 lines
1.1 KiB
C++
#include "Window.h"
|
|
#include "WindowManager.h"
|
|
#include "Event.h"
|
|
#include "Widget.h"
|
|
|
|
Window::Window(Object* parent)
|
|
: Object(parent)
|
|
{
|
|
WindowManager::the().addWindow(*this);
|
|
}
|
|
|
|
Window::~Window()
|
|
{
|
|
}
|
|
|
|
void Window::setMainWidget(Widget* widget)
|
|
{
|
|
if (m_mainWidget == widget)
|
|
return;
|
|
|
|
m_mainWidget = widget;
|
|
widget->setWindow(this);
|
|
}
|
|
|
|
void Window::setTitle(String&& title)
|
|
{
|
|
if (m_title == title)
|
|
return;
|
|
|
|
m_title = std::move(title);
|
|
WindowManager::the().notifyTitleChanged(*this);
|
|
}
|
|
|
|
|
|
void Window::setRect(const Rect& rect)
|
|
{
|
|
if (m_rect == rect)
|
|
return;
|
|
auto oldRect = m_rect;
|
|
m_rect = rect;
|
|
WindowManager::the().notifyRectChanged(*this, oldRect, m_rect);
|
|
}
|
|
|
|
void Window::event(Event& event)
|
|
{
|
|
if (event.isMouseEvent()) {
|
|
auto& me = static_cast<MouseEvent&>(event);
|
|
printf("Window{%p}: %s %d,%d\n", this, me.name(), me.x(), me.y());
|
|
return Object::event(event);
|
|
}
|
|
|
|
if (event.isPaintEvent()) {
|
|
if (m_mainWidget) {
|
|
printf("forward to main widget\n");
|
|
return m_mainWidget->event(event);
|
|
}
|
|
}
|
|
|
|
return Object::event(event);
|
|
}
|