forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibbrowser_wkwebview.h
More file actions
129 lines (91 loc) · 4.01 KB
/
libbrowser_wkwebview.h
File metadata and controls
129 lines (91 loc) · 4.01 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Copyright (C) 2019 LiveCode Ltd.
This file is part of LiveCode.
LiveCode is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License v3 as published by the Free
Software Foundation.
LiveCode 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 LiveCode. If not see <http://www.gnu.org/licenses/>. */
#ifndef __LIBBROWSER_WKWEBVIEW_H__
#define __LIBBROWSER_WKWEBVIEW_H__
#include "libbrowser_internal.h"
////////////////////////////////////////////////////////////////////////////////
@class com_livecode_libbrowser_MCWKWebViewNavigationDelegate;
@class MCWKWebViewScriptMessageHandler;
class MCWKWebViewBrowser : public MCBrowserBase
{
public:
MCWKWebViewBrowser();
virtual ~MCWKWebViewBrowser();
bool Init(void);
virtual void *GetNativeLayer();
virtual bool GetRect(MCBrowserRect &r_rect);
virtual bool SetRect(const MCBrowserRect &p_rect);
virtual bool GetBoolProperty(MCBrowserProperty p_property, bool &r_value);
virtual bool SetBoolProperty(MCBrowserProperty p_property, bool p_value);
virtual bool GetStringProperty(MCBrowserProperty p_property, char *&r_utf8_string);
virtual bool SetStringProperty(MCBrowserProperty p_property, const char *p_utf8_string);
virtual bool GetIntegerProperty(MCBrowserProperty p_property, int32_t &r_value);
virtual bool SetIntegerProperty(MCBrowserProperty p_property, int32_t p_value);
virtual bool GoBack();
virtual bool GoForward();
virtual bool GoToURL(const char *p_url);
virtual bool LoadHTMLText(const char *p_htmltext, const char *p_base_url);
virtual bool StopLoading();
virtual bool Reload();
virtual bool EvaluateJavaScript(const char *p_script, char *&r_result);
void SyncJavaScriptHandlers();
protected:
bool GetUrl(char *& r_url);
bool GetHTMLText(char *&r_htmltext);
bool SetHTMLText(const char *p_htmltext);
bool GetVerticalScrollbarEnabled(bool& r_value);
bool SetVerticalScrollbarEnabled(bool p_value);
bool GetHorizontalScrollbarEnabled(bool& r_value);
bool SetHorizontalScrollbarEnabled(bool p_value);
bool GetScrollEnabled(bool& r_value);
bool SetScrollEnabled(bool p_value);
bool GetScrollCanBounce(bool& r_value);
bool SetScrollCanBounce(bool p_value);
bool GetJavaScriptHandlers(char *&r_handlers);
bool SetJavaScriptHandlers(const char *p_handlers);
bool GetUserAgent(char *&r_useragent);
bool SetUserAgent(const char *p_useragent);
bool GetIsSecure(bool& r_value);
bool GetCanGoForward(bool& r_value);
bool GetCanGoBack(bool& r_value);
bool GetAllowUserInteraction(bool& r_value);
bool SetAllowUserInteraction(bool p_value);
bool GetDelayRequests(bool& r_value);
bool SetDelayRequests(bool p_value);
bool GetAutoFit(bool& r_value);
bool SetAutoFit(bool p_value);
bool GetDataDetectorTypes(int32_t &r_types);
bool SetDataDetectorTypes(int32_t p_types);
bool GetAllowsInlineMediaPlayback(bool& r_value);
bool SetAllowsInlineMediaPlayback(bool p_value);
bool GetMediaPlaybackRequiresUserAction(bool& r_value);
bool SetMediaPlaybackRequiresUserAction(bool p_value);
private:
bool GetWebView(WKWebView *&r_view);
bool GetContainerView(UIView *&r_view);
bool Reconfigure(void);
bool SyncJavaScriptHandlers(NSArray *p_handlers);
WKWebView *m_view;
UIView *m_container_view;
com_livecode_libbrowser_MCWKWebViewNavigationDelegate *m_delegate;
MCWKWebViewScriptMessageHandler *m_message_handler;
WKUserContentController *m_content_controller;
WKWebViewConfiguration *m_configuration;
char *m_js_handlers;
char *m_htmltext;
char *m_url;
bool m_autofit;
};
////////////////////////////////////////////////////////////////////////////////
bool MCWKWebViewBrowserFactoryCreate(MCBrowserFactoryRef &r_factory);
////////////////////////////////////////////////////////////////////////////////
#endif // __LIBBROWSER_WKWEBVIEW_H__