123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- /*
- * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "OutOfProcessWebView.h"
- #include "WebContentClient.h"
- #include <LibGUI/MessageBox.h>
- #include <LibGUI/Painter.h>
- #include <LibGUI/ScrollBar.h>
- #include <LibGUI/Window.h>
- #include <LibGfx/Palette.h>
- #include <LibGfx/SystemTheme.h>
- REGISTER_WIDGET(Web, OutOfProcessWebView)
- namespace Web {
- OutOfProcessWebView::OutOfProcessWebView()
- {
- set_should_hide_unnecessary_scrollbars(true);
- set_focus_policy(GUI::FocusPolicy::StrongFocus);
- m_client = WebContentClient::construct(*this);
- client().post_message(Messages::WebContentServer::UpdateSystemTheme(Gfx::current_system_theme_buffer()));
- }
- OutOfProcessWebView::~OutOfProcessWebView()
- {
- }
- void OutOfProcessWebView::load(const URL& url)
- {
- m_url = url;
- client().post_message(Messages::WebContentServer::LoadURL(url));
- }
- void OutOfProcessWebView::load_html(const StringView& html, const URL& url)
- {
- m_url = url;
- client().post_message(Messages::WebContentServer::LoadHTML(html, url));
- }
- void OutOfProcessWebView::load_empty_document()
- {
- m_url = {};
- client().post_message(Messages::WebContentServer::LoadHTML("", {}));
- }
- void OutOfProcessWebView::paint_event(GUI::PaintEvent& event)
- {
- GUI::ScrollableWidget::paint_event(event);
- // If the available size is empty, we don't have a front or back bitmap to draw.
- if (available_size().is_empty())
- return;
- GUI::Painter painter(*this);
- painter.add_clip_rect(event.rect());
- if (!m_has_usable_bitmap) {
- painter.fill_rect(frame_inner_rect(), palette().base());
- return;
- }
- painter.add_clip_rect(frame_inner_rect());
- painter.translate(frame_thickness(), frame_thickness());
- ASSERT(m_front_bitmap);
- painter.blit({ 0, 0 }, *m_front_bitmap, m_front_bitmap->rect());
- }
- void OutOfProcessWebView::resize_event(GUI::ResizeEvent& event)
- {
- GUI::ScrollableWidget::resize_event(event);
- client().post_message(Messages::WebContentServer::SetViewportRect(Gfx::IntRect({ horizontal_scrollbar().value(), vertical_scrollbar().value() }, available_size())));
- if (m_front_bitmap) {
- m_front_bitmap = nullptr;
- client().post_message(Messages::WebContentServer::RemoveBackingStore(m_front_bitmap_id));
- }
- if (m_back_bitmap) {
- m_back_bitmap = nullptr;
- client().post_message(Messages::WebContentServer::RemoveBackingStore(m_back_bitmap_id));
- }
- m_front_bitmap_id = -1;
- m_back_bitmap_id = -1;
- m_has_usable_bitmap = false;
- if (available_size().is_empty())
- return;
- if (auto new_bitmap = Gfx::Bitmap::create_shareable(Gfx::BitmapFormat::RGB32, available_size())) {
- m_front_bitmap = move(new_bitmap);
- m_front_bitmap_id = m_next_bitmap_id++;
- client().post_message(Messages::WebContentServer::AddBackingStore(m_front_bitmap_id, m_front_bitmap->to_shareable_bitmap()));
- }
- if (auto new_bitmap = Gfx::Bitmap::create_shareable(Gfx::BitmapFormat::RGB32, available_size())) {
- m_back_bitmap = move(new_bitmap);
- m_back_bitmap_id = m_next_bitmap_id++;
- client().post_message(Messages::WebContentServer::AddBackingStore(m_back_bitmap_id, m_back_bitmap->to_shareable_bitmap()));
- }
- request_repaint();
- }
- void OutOfProcessWebView::keydown_event(GUI::KeyEvent& event)
- {
- client().post_message(Messages::WebContentServer::KeyDown(event.key(), event.modifiers(), event.code_point()));
- }
- void OutOfProcessWebView::mousedown_event(GUI::MouseEvent& event)
- {
- client().post_message(Messages::WebContentServer::MouseDown(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()));
- }
- void OutOfProcessWebView::mouseup_event(GUI::MouseEvent& event)
- {
- client().post_message(Messages::WebContentServer::MouseUp(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()));
- }
- void OutOfProcessWebView::mousemove_event(GUI::MouseEvent& event)
- {
- client().post_message(Messages::WebContentServer::MouseMove(to_content_position(event.position()), event.button(), event.buttons(), event.modifiers()));
- }
- void OutOfProcessWebView::theme_change_event(GUI::ThemeChangeEvent& event)
- {
- GUI::ScrollableWidget::theme_change_event(event);
- client().post_message(Messages::WebContentServer::UpdateSystemTheme(Gfx::current_system_theme_buffer()));
- request_repaint();
- }
- void OutOfProcessWebView::notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id)
- {
- if (m_back_bitmap_id == bitmap_id) {
- m_has_usable_bitmap = true;
- swap(m_back_bitmap, m_front_bitmap);
- swap(m_back_bitmap_id, m_front_bitmap_id);
- update();
- }
- }
- void OutOfProcessWebView::notify_server_did_invalidate_content_rect(Badge<WebContentClient>, [[maybe_unused]] const Gfx::IntRect& content_rect)
- {
- request_repaint();
- }
- void OutOfProcessWebView::notify_server_did_change_selection(Badge<WebContentClient>)
- {
- request_repaint();
- }
- void OutOfProcessWebView::notify_server_did_layout(Badge<WebContentClient>, const Gfx::IntSize& content_size)
- {
- set_content_size(content_size);
- }
- void OutOfProcessWebView::notify_server_did_change_title(Badge<WebContentClient>, const String& title)
- {
- if (on_title_change)
- on_title_change(title);
- }
- void OutOfProcessWebView::notify_server_did_request_scroll_into_view(Badge<WebContentClient>, const Gfx::IntRect& rect)
- {
- scroll_into_view(rect, true, true);
- }
- void OutOfProcessWebView::notify_server_did_hover_link(Badge<WebContentClient>, const URL& url)
- {
- set_override_cursor(Gfx::StandardCursor::Hand);
- if (on_link_hover)
- on_link_hover(url);
- }
- void OutOfProcessWebView::notify_server_did_unhover_link(Badge<WebContentClient>)
- {
- set_override_cursor(Gfx::StandardCursor::None);
- if (on_link_hover)
- on_link_hover({});
- }
- void OutOfProcessWebView::notify_server_did_click_link(Badge<WebContentClient>, const URL& url, const String& target, unsigned int modifiers)
- {
- if (on_link_click)
- on_link_click(url, target, modifiers);
- }
- void OutOfProcessWebView::notify_server_did_middle_click_link(Badge<WebContentClient>, const URL& url, const String& target, unsigned int modifiers)
- {
- if (on_link_middle_click)
- on_link_middle_click(url, target, modifiers);
- }
- void OutOfProcessWebView::notify_server_did_start_loading(Badge<WebContentClient>, const URL& url)
- {
- if (on_load_start)
- on_load_start(url);
- }
- void OutOfProcessWebView::notify_server_did_finish_loading(Badge<WebContentClient>, const URL& url)
- {
- if (on_load_finish)
- on_load_finish(url);
- }
- void OutOfProcessWebView::notify_server_did_request_context_menu(Badge<WebContentClient>, const Gfx::IntPoint& content_position)
- {
- if (on_context_menu_request)
- on_context_menu_request(screen_relative_rect().location().translated(to_widget_position(content_position)));
- }
- void OutOfProcessWebView::notify_server_did_request_link_context_menu(Badge<WebContentClient>, const Gfx::IntPoint& content_position, const URL& url, const String&, unsigned)
- {
- if (on_link_context_menu_request)
- on_link_context_menu_request(url, screen_relative_rect().location().translated(to_widget_position(content_position)));
- }
- void OutOfProcessWebView::notify_server_did_request_alert(Badge<WebContentClient>, const String& message)
- {
- GUI::MessageBox::show(window(), message, "Alert", GUI::MessageBox::Type::Information);
- }
- void OutOfProcessWebView::did_scroll()
- {
- client().post_message(Messages::WebContentServer::SetViewportRect(visible_content_rect()));
- request_repaint();
- }
- void OutOfProcessWebView::request_repaint()
- {
- // If this widget was instantiated but not yet added to a window,
- // it won't have a back bitmap yet, so we can just skip repaint requests.
- if (!m_back_bitmap)
- return;
- client().post_message(Messages::WebContentServer::Paint(m_back_bitmap->rect().translated(horizontal_scrollbar().value(), vertical_scrollbar().value()), m_back_bitmap_id));
- }
- WebContentClient& OutOfProcessWebView::client()
- {
- return *m_client;
- }
- }
|