2015-09-29 21:53:56 +02:00
|
|
|
/* ============================================================
|
2017-08-25 17:55:52 +02:00
|
|
|
* Falkon - Qt web browser
|
2016-03-30 11:50:46 +02:00
|
|
|
* Copyright (C) 2015-2016 David Rosca <nowrep@gmail.com>
|
2015-09-29 21:53:56 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#ifndef WEBHITTESTRESULT_H
|
|
|
|
#define WEBHITTESTRESULT_H
|
|
|
|
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariantMap>
|
|
|
|
|
2016-03-30 11:50:46 +02:00
|
|
|
#include "qzcommon.h"
|
|
|
|
|
2016-12-26 17:23:52 +01:00
|
|
|
class QWebEngineContextMenuData;
|
|
|
|
|
2015-09-29 21:53:56 +02:00
|
|
|
class WebPage;
|
|
|
|
|
2017-08-25 17:11:29 +02:00
|
|
|
class FALKON_EXPORT WebHitTestResult
|
2015-09-29 21:53:56 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit WebHitTestResult(const WebPage *page, const QPoint &pos);
|
|
|
|
|
2016-12-26 17:23:52 +01:00
|
|
|
void updateWithContextMenuData(const QWebEngineContextMenuData &data);
|
|
|
|
|
2016-06-21 21:45:24 +02:00
|
|
|
QUrl baseUrl() const;
|
2015-09-29 21:53:56 +02:00
|
|
|
QString alternateText() const;
|
|
|
|
QRect boundingRect() const;
|
|
|
|
QUrl imageUrl() const;
|
|
|
|
bool isContentEditable() const;
|
|
|
|
bool isContentSelected() const;
|
|
|
|
bool isNull() const;
|
2015-09-29 23:15:46 +02:00
|
|
|
QString linkTitle() const;
|
2015-09-29 21:53:56 +02:00
|
|
|
QUrl linkUrl() const;
|
|
|
|
QUrl mediaUrl() const;
|
2015-09-30 15:26:52 +02:00
|
|
|
bool mediaPaused() const;
|
|
|
|
bool mediaMuted() const;
|
2015-09-29 21:53:56 +02:00
|
|
|
QPoint pos() const;
|
2016-12-27 11:58:10 +01:00
|
|
|
QPointF viewportPos() const;
|
2015-09-29 21:53:56 +02:00
|
|
|
QString tagName() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init(const QUrl &url, const QVariantMap &map);
|
|
|
|
|
|
|
|
bool m_isNull;
|
2016-06-21 21:45:24 +02:00
|
|
|
QUrl m_baseUrl;
|
2015-09-29 21:53:56 +02:00
|
|
|
QString m_alternateText;
|
|
|
|
QRect m_boundingRect;
|
|
|
|
QUrl m_imageUrl;
|
|
|
|
bool m_isContentEditable;
|
|
|
|
bool m_isContentSelected;
|
2015-09-29 23:15:46 +02:00
|
|
|
QString m_linkTitle;
|
2015-09-29 21:53:56 +02:00
|
|
|
QUrl m_linkUrl;
|
|
|
|
QUrl m_mediaUrl;
|
2015-09-30 15:26:52 +02:00
|
|
|
bool m_mediaPaused;
|
|
|
|
bool m_mediaMuted;
|
2015-09-29 21:53:56 +02:00
|
|
|
QPoint m_pos;
|
2016-12-27 11:58:10 +01:00
|
|
|
QPointF m_viewportPos;
|
2015-09-29 21:53:56 +02:00
|
|
|
QString m_tagName;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WEBHITTESTRESULT_H
|