-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathAPIHitTestResult.h
More file actions
101 lines (75 loc) · 3.83 KB
/
APIHitTestResult.h
File metadata and controls
101 lines (75 loc) · 3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
* Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include "APIObject.h"
#include "WebHitTestResultData.h"
#include "WebPageProxy.h"
#include <WebCore/DictionaryPopupInfo.h>
#include <WebCore/FloatPoint.h>
#include <WebCore/IntRect.h>
#include <WebCore/PageOverlay.h>
#include <WebCore/SharedMemory.h>
#include <wtf/Forward.h>
#include <wtf/RefPtr.h>
#include <wtf/WeakPtr.h>
#include <wtf/text/WTFString.h>
namespace WebCore {
class HitTestResult;
}
namespace API {
class WebFrame;
class HitTestResult : public API::ObjectImpl<API::Object::Type::HitTestResult> {
public:
static Ref<HitTestResult> create(const WebKit::WebHitTestResultData&, WebKit::WebPageProxy*);
WTF::String absoluteImageURL() const { return m_data.absoluteImageURL; }
WTF::String absolutePDFURL() const { return m_data.absolutePDFURL; }
WTF::String absoluteLinkURL() const { return m_data.absoluteLinkURL; }
WTF::String absoluteMediaURL() const { return m_data.absoluteMediaURL; }
WTF::String linkLabel() const { return m_data.linkLabel; }
WTF::String linkTitle() const { return m_data.linkTitle; }
WTF::String linkSuggestedFilename() const { return m_data.linkSuggestedFilename; }
WTF::String imageSuggestedFilename() const { return m_data.imageSuggestedFilename; }
WTF::String lookupText() const { return m_data.lookupText; }
WTF::String sourceImageMIMEType() const { return m_data.sourceImageMIMEType; }
bool isContentEditable() const { return m_data.isContentEditable; }
WebCore::IntRect elementBoundingBox() const { return m_data.elementBoundingBox; }
bool isScrollbar() const { return m_data.isScrollbar != WebKit::WebHitTestResultData::IsScrollbar::No; }
bool isSelected() const { return m_data.isSelected; }
bool isTextNode() const { return m_data.isTextNode; }
bool isOverTextInsideFormControlElement() const { return m_data.isOverTextInsideFormControlElement; }
bool isDownloadableMedia() const { return m_data.isDownloadableMedia; }
bool mediaIsInFullscreen() const { return m_data.mediaIsInFullscreen; }
WebKit::WebHitTestResultData::ElementType elementType() const { return m_data.elementType; }
WebKit::WebPageProxy* page() { return m_page.get(); }
const std::optional<WebKit::FrameInfoData>& frameInfo() const LIFETIME_BOUND { return m_data.frameInfo; }
const std::optional<WebCore::FrameIdentifier> targetFrame() const { return m_data.targetFrame; }
bool allowsFollowingLink() const { return m_data.allowsFollowingLink; }
bool allowsFollowingImageURL() const { return m_data.allowsFollowingImageURL; }
const std::optional<WebCore::ResourceResponse>& linkLocalResourceResponse() const LIFETIME_BOUND { return m_data.linkLocalResourceResponse; }
private:
explicit HitTestResult(const WebKit::WebHitTestResultData& hitTestResultData, WebKit::WebPageProxy* page)
: m_data(hitTestResultData)
, m_page(page)
{
}
WebKit::WebHitTestResultData m_data;
WeakPtr<WebKit::WebPageProxy> m_page;
};
} // namespace API
SPECIALIZE_TYPE_TRAITS_API_OBJECT(HitTestResult);