mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define AK_DONT_REPLACE_STD
|
|
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/String.h>
|
|
#include <LibGfx/Forward.h>
|
|
#include <QAbstractScrollArea>
|
|
|
|
class HeadlessBrowserPageClient;
|
|
|
|
class WebView final : public QAbstractScrollArea {
|
|
Q_OBJECT
|
|
public:
|
|
WebView();
|
|
virtual ~WebView() override;
|
|
|
|
void load(String const& url);
|
|
void reload();
|
|
|
|
virtual void paintEvent(QPaintEvent*) override;
|
|
virtual void resizeEvent(QResizeEvent*) override;
|
|
virtual void mouseMoveEvent(QMouseEvent*) override;
|
|
virtual void mousePressEvent(QMouseEvent*) override;
|
|
virtual void mouseReleaseEvent(QMouseEvent*) override;
|
|
|
|
signals:
|
|
void linkHovered(QString, int timeout = 0);
|
|
void linkUnhovered();
|
|
void loadStarted(QString);
|
|
void title_changed(QString);
|
|
void favicon_changed(QIcon);
|
|
|
|
private:
|
|
Gfx::IntPoint to_content(Gfx::IntPoint) const;
|
|
|
|
OwnPtr<HeadlessBrowserPageClient> m_page_client;
|
|
|
|
qreal m_inverse_pixel_scaling_ratio { 1.0 };
|
|
};
|