mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 21:01:00 +00:00 
			
		
		
		
	 5d6169793a
			
		
	
	
		5d6169793a
		
	
	
	
	
		
			
			WebView::ViewImplementation now remembers which JS interpreter it started with, and uses the same setting if the WebContent process crashes and we have to spawn a new one.
		
			
				
	
	
		
			117 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022-2023, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2023, Linus Groh <linusg@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/DeprecatedString.h>
 | |
| #include <AK/Function.h>
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <AK/URL.h>
 | |
| #include <LibGfx/Forward.h>
 | |
| #include <LibGfx/Rect.h>
 | |
| #include <LibGfx/StandardCursor.h>
 | |
| #include <LibWeb/CSS/PreferredColorScheme.h>
 | |
| #include <LibWeb/CSS/Selector.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| #include <LibWeb/HTML/ActivateTab.h>
 | |
| #include <LibWebView/ViewImplementation.h>
 | |
| #include <QAbstractScrollArea>
 | |
| #include <QPointer>
 | |
| #include <QUrl>
 | |
| 
 | |
| class QTextEdit;
 | |
| class QLineEdit;
 | |
| 
 | |
| namespace WebView {
 | |
| class WebContentClient;
 | |
| }
 | |
| 
 | |
| using WebView::WebContentClient;
 | |
| 
 | |
| class Tab;
 | |
| 
 | |
| class WebContentView final
 | |
|     : public QAbstractScrollArea
 | |
|     , public WebView::ViewImplementation {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     explicit WebContentView(StringView webdriver_content_ipc_path, WebView::EnableCallgrindProfiling, WebView::UseJavaScriptBytecode);
 | |
|     virtual ~WebContentView() override;
 | |
| 
 | |
|     Function<String(const AK::URL&, Web::HTML::ActivateTab)> on_tab_open_request;
 | |
| 
 | |
|     virtual void paintEvent(QPaintEvent*) override;
 | |
|     virtual void resizeEvent(QResizeEvent*) override;
 | |
|     virtual void wheelEvent(QWheelEvent*) override;
 | |
|     virtual void mouseMoveEvent(QMouseEvent*) override;
 | |
|     virtual void mousePressEvent(QMouseEvent*) override;
 | |
|     virtual void mouseReleaseEvent(QMouseEvent*) override;
 | |
|     virtual void mouseDoubleClickEvent(QMouseEvent*) override;
 | |
|     virtual void dragEnterEvent(QDragEnterEvent*) override;
 | |
|     virtual void dropEvent(QDropEvent*) override;
 | |
|     virtual void keyPressEvent(QKeyEvent* event) override;
 | |
|     virtual void keyReleaseEvent(QKeyEvent* event) override;
 | |
|     virtual void showEvent(QShowEvent*) override;
 | |
|     virtual void hideEvent(QHideEvent*) override;
 | |
|     virtual void focusInEvent(QFocusEvent*) override;
 | |
|     virtual void focusOutEvent(QFocusEvent*) override;
 | |
|     virtual bool event(QEvent*) override;
 | |
| 
 | |
|     ErrorOr<String> dump_layout_tree();
 | |
| 
 | |
|     void set_viewport_rect(Gfx::IntRect);
 | |
|     void set_window_size(Gfx::IntSize);
 | |
|     void set_window_position(Gfx::IntPoint);
 | |
| 
 | |
|     enum class PaletteMode {
 | |
|         Default,
 | |
|         Dark,
 | |
|     };
 | |
|     void update_palette(PaletteMode = PaletteMode::Default);
 | |
| 
 | |
|     virtual void notify_server_did_layout(Badge<WebContentClient>, Gfx::IntSize content_size) override;
 | |
|     virtual void notify_server_did_paint(Badge<WebContentClient>, i32 bitmap_id, Gfx::IntSize) override;
 | |
|     virtual void notify_server_did_invalidate_content_rect(Badge<WebContentClient>, Gfx::IntRect const&) override;
 | |
|     virtual void notify_server_did_change_selection(Badge<WebContentClient>) override;
 | |
|     virtual void notify_server_did_request_cursor_change(Badge<WebContentClient>, Gfx::StandardCursor cursor) override;
 | |
|     virtual void notify_server_did_request_scroll(Badge<WebContentClient>, i32, i32) override;
 | |
|     virtual void notify_server_did_request_scroll_to(Badge<WebContentClient>, Gfx::IntPoint) override;
 | |
|     virtual void notify_server_did_request_scroll_into_view(Badge<WebContentClient>, Gfx::IntRect const&) override;
 | |
|     virtual void notify_server_did_enter_tooltip_area(Badge<WebContentClient>, Gfx::IntPoint, DeprecatedString const&) override;
 | |
|     virtual void notify_server_did_leave_tooltip_area(Badge<WebContentClient>) override;
 | |
|     virtual void notify_server_did_request_alert(Badge<WebContentClient>, String const& message) override;
 | |
|     virtual void notify_server_did_request_confirm(Badge<WebContentClient>, String const& message) override;
 | |
|     virtual void notify_server_did_request_prompt(Badge<WebContentClient>, String const& message, String const& default_) override;
 | |
|     virtual void notify_server_did_request_set_prompt_text(Badge<WebContentClient>, String const& message) override;
 | |
|     virtual void notify_server_did_request_accept_dialog(Badge<WebContentClient>) override;
 | |
|     virtual void notify_server_did_request_dismiss_dialog(Badge<WebContentClient>) override;
 | |
|     virtual void notify_server_did_request_file(Badge<WebContentClient>, DeprecatedString const& path, i32) override;
 | |
|     virtual void notify_server_did_finish_handling_input_event(bool event_was_accepted) override;
 | |
| 
 | |
| signals:
 | |
|     void urls_dropped(QList<QUrl> const&);
 | |
| 
 | |
| private:
 | |
|     // ^WebView::ViewImplementation
 | |
|     virtual void create_client(WebView::EnableCallgrindProfiling = WebView::EnableCallgrindProfiling::No) override;
 | |
|     virtual void update_zoom() override;
 | |
|     virtual Gfx::IntRect viewport_rect() const override;
 | |
|     virtual Gfx::IntPoint to_content_position(Gfx::IntPoint widget_position) const override;
 | |
|     virtual Gfx::IntPoint to_widget_position(Gfx::IntPoint content_position) const override;
 | |
| 
 | |
|     void update_viewport_rect();
 | |
| 
 | |
|     qreal m_inverse_pixel_scaling_ratio { 1.0 };
 | |
|     bool m_should_show_line_box_borders { false };
 | |
| 
 | |
|     QPointer<QDialog> m_dialog;
 | |
| 
 | |
|     Gfx::IntRect m_viewport_rect;
 | |
| 
 | |
|     StringView m_webdriver_content_ipc_path;
 | |
| };
 |