ladybird/Libraries/LibHTML/Frame.cpp
Andreas Kling 8dc6f7cd4f LibHTML: Give Frame a (weak) back-pointer to the HtmlView
This will be the official path from DOM/layout code to the HtmlView
for now. Perhaps in the future we will have a fancier abstraction.
2019-11-25 21:19:21 +01:00

41 lines
697 B
C++

#include <LibHTML/DOM/Document.h>
#include <LibHTML/Frame.h>
#include <LibHTML/HtmlView.h>
Frame::Frame(HtmlView& html_view)
: m_html_view(html_view.make_weak_ptr())
{
}
Frame::~Frame()
{
}
void Frame::set_document(Document* document)
{
if (m_document == document)
return;
if (m_document)
m_document->detach_from_frame({}, *this);
m_document = document;
if (m_document)
m_document->attach_to_frame({}, *this);
}
void Frame::set_size(const Size& size)
{
if (m_size == size)
return;
m_size = size;
}
void Frame::set_needs_display(const Rect& rect)
{
if (!on_set_needs_display)
return;
on_set_needs_display(rect);
}