forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibbrowser_osx_webview.h
More file actions
106 lines (75 loc) · 3.17 KB
/
libbrowser_osx_webview.h
File metadata and controls
106 lines (75 loc) · 3.17 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
/* Copyright (C) 2015 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_OSX_WEBVIEW_H__
#define __LIBBROWSER_OSX_WEBVIEW_H__
#include "libbrowser_internal.h"
@class MCWebView;
@class MCWebViewFrameLoadDelegate;
@class MCWebViewPolicyDelegate;
@class MCWebUIDelegate;
@class MCWebViewProgressDelegate;
class MCWebViewBrowser : public MCBrowserBase
{
public:
MCWebViewBrowser();
virtual ~MCWebViewBrowser();
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 GetUserAgent(char*& r_user_agent);
bool SetUserAgent(const char *p_user_agent);
bool GetJavaScriptHandlers(char *&r_handlers);
bool SetJavaScriptHandlers(const char *p_handlers);
bool GetIsSecure(bool& r_value);
bool GetAllowUserInteraction(bool& r_value);
bool SetAllowUserInteraction(bool p_value);
// Browser-specific actions
bool ExecExecute(const char * p_script, char *&r_result);
//UIScrollView *GetScrollView(void);
private:
bool GetView(WebView *&r_view);
bool SyncJavaScriptHandlers(NSArray *p_handlers);
bool FrameIsSecure(WebFrame *p_frame);
MCWebView *m_view;
MCWebViewFrameLoadDelegate *m_delegate;
MCWebViewPolicyDelegate *m_policy_delegate;
MCWebUIDelegate *m_ui_delegate;
MCWebViewProgressDelegate *m_progress_delegate;
char *m_js_handlers;
NSArray *m_js_handler_list;
};
//////////
bool MCWebViewBrowserFactoryCreate(MCBrowserFactoryRef &r_factory);
#endif // __LIBBROWSER_OSX_WEBVIEW_H__