forked from joaompneves/CefSharp-Cef1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebView.h
311 lines (260 loc) · 11.5 KB
/
WebView.h
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#pragma once
#include "RenderClientAdapter.h"
#include "ScriptCore.h"
using namespace Microsoft::Win32::SafeHandles;
using namespace System;
using namespace System::Collections::Generic;
using namespace System::ComponentModel;
using namespace System::Runtime::InteropServices;
using namespace System::Windows;
using namespace System::Windows::Controls;
using namespace System::Windows::Controls::Primitives;
using namespace System::Windows::Input;
using namespace System::Windows::Interop;
using namespace System::Windows::Media;
using namespace System::Windows::Media::Imaging;
using namespace System::Windows::Threading;
namespace CefSharp
{
namespace Wpf
{
public ref class WebView sealed : public ContentControl, IRenderWebBrowser
{
private:
delegate void ActionHandler();
delegate bool MoveFocusHandler(TraversalRequest^ request);
BrowserSettings^ _settings;
MCefRefPtr<RenderClientAdapter> _clientAdapter;
BrowserCore^ _browserCore;
MCefRefPtr<ScriptCore> _scriptCore;
Object^ _sync;
HwndSource^ _source;
Matrix^ _matrix;
HwndSourceHook^ _hook;
::ToolTip^ _toolTip;
Popup^ _popup;
DispatcherTimer^ _timer;
Image^ _image;
int _width, _height;
InteropBitmap^ _ibitmap;
HANDLE _fileMappingHandle, _backBufferHandle;
ActionHandler^ _paintDelegate;
Image^ _popupImage;
int _popupWidth, _popupHeight, _popupX, _popupY;
int _popupImageWidth, _popupImageHeight;
Transform^ _popupOffsetTransform;
InteropBitmap^ _popupIbitmap;
HANDLE _popupFileMappingHandle, _popupBackBufferHandle;
ActionHandler^ _paintPopupDelegate;
ActionHandler^ _resizePopupDelegate;
Window^ _currentWindow;
void Initialize(String^ address, BrowserSettings^ settings);
bool TryGetCefBrowser(CefRefPtr<CefBrowser>& browser);
void BrowserCore_PropertyChanged(Object^ sender, PropertyChangedEventArgs^ e);
void Timer_Tick(Object^ sender, EventArgs^ e);
void ToolTip_Closed(Object^ sender, RoutedEventArgs^ e);
void SetCursor(SafeFileHandle^ handle);
void SetTooltipText(String^ text);
IntPtr SourceHook(IntPtr hWnd, int message, IntPtr wParam, IntPtr lParam, bool% handled);
void SetBitmap();
void SetBuffer(int& currentWidth, int& currentHeight, int width, int height,
HANDLE& fileMappingHandle, HANDLE& backBufferHandle,
InteropBitmap^& ibitmap, ActionHandler^ paintDelegate,
const void* buffer);
void SetPopupBitmap();
void OnPreviewKey(KeyEventArgs^ e);
void OnMouseButton(MouseButtonEventArgs^ e);
void ShowHidePopup(bool isOpened);
void SetPopupSizeAndPositionImpl();
void OnLoaded(Object^ sender, RoutedEventArgs^ e);
void OnUnloaded(Object^ sender, RoutedEventArgs^ e);
void OnGotKeyboardFocus(Object^ sender, KeyboardFocusChangedEventArgs^ e);
void OnLostKeyboardFocus(Object^ sender, KeyboardFocusChangedEventArgs^ e);
void OnPopupMouseMove(Object^ sender, MouseEventArgs^ e);
void OnPopupMouseWheel(Object^ sender,MouseWheelEventArgs^ e);
void OnPopupMouseDown(Object^ sender,MouseButtonEventArgs^ e);
void OnPopupMouseUp(Object^ sender, MouseButtonEventArgs^ e);
void OnPopupMouseLeave(Object^ sender, MouseEventArgs^ e);
void OnHidePopup(Object^ sender, EventArgs^ e);
void HidePopup();
void AddSourceHook();
bool IsNonStandardDpi();
Transform^ GetScaleTransform();
public protected: // a.k.a protected internal
virtual void OnVisualParentChanged(DependencyObject^ oldParent) override;
protected:
virtual Size ArrangeOverride(Size size) override;
virtual void OnPreviewKeyDown(KeyEventArgs^ e) override;
virtual void OnPreviewKeyUp(KeyEventArgs^ e) override;
virtual void OnPreviewTextInput(TextCompositionEventArgs^ e) override;
virtual void OnMouseMove(MouseEventArgs^ e) override;
virtual void OnMouseWheel(MouseWheelEventArgs^ e) override;
virtual void OnMouseDown(MouseButtonEventArgs^ e) override;
virtual void OnMouseUp(MouseButtonEventArgs^ e) override;
virtual void OnMouseLeave(MouseEventArgs^ e) override;
public:
virtual event PropertyChangedEventHandler^ PropertyChanged
{
void add(PropertyChangedEventHandler^ handler)
{
_browserCore->PropertyChanged += handler;
}
void remove(PropertyChangedEventHandler^ handler)
{
_browserCore->PropertyChanged -= handler;
}
}
virtual event ConsoleMessageEventHandler^ ConsoleMessage;
virtual event KeyEventHandler^ BrowserKey;
virtual event LoadCompletedEventHandler^ LoadCompleted;
WebView()
{
Initialize(String::Empty, gcnew BrowserSettings);
}
WebView(String^ address, BrowserSettings^ settings)
{
Initialize(address, settings);
}
~WebView()
{
if (_source && _hook)
{
_source->RemoveHook(_hook);
}
CefRefPtr<CefBrowser> browser;
if (TryGetCefBrowser(browser))
{
browser->CloseBrowser();
}
}
virtual property bool IsBrowserInitialized
{
bool get() { return _browserCore->IsBrowserInitialized; }
}
virtual property bool IsLoading
{
bool get() { return _browserCore->IsLoading; }
}
virtual property bool CanGoBack
{
bool get() { return _browserCore->CanGoBack; }
}
virtual property bool CanGoForward
{
bool get() { return _browserCore->CanGoForward; }
}
virtual property int ContentsWidth
{
int get() { return _browserCore->ContentsWidth; }
void set(int contentsWidth) { _browserCore->ContentsWidth = contentsWidth; }
}
virtual property int ContentsHeight
{
int get() { return _browserCore->ContentsHeight; }
void set(int contentsHeight) { _browserCore->ContentsHeight = contentsHeight; }
}
virtual property String^ Address
{
String^ get() { return _browserCore->Address; }
void set(String^ address) { _browserCore->Address = address; }
}
virtual property String^ Title
{
String^ get() { return _browserCore->Title; }
void set(String^ title) { _browserCore->Title = title; }
}
virtual property String^ TooltipText
{
String^ get() { return _browserCore->TooltipText; }
void set(String^ text) { _browserCore->TooltipText = text; }
}
virtual property ILifeSpanHandler^ LifeSpanHandler
{
ILifeSpanHandler^ get() { return _browserCore->LifeSpanHandler; }
void set(ILifeSpanHandler^ handler) { _browserCore->LifeSpanHandler = handler; }
}
virtual property ILoadHandler^ LoadHandler
{
ILoadHandler^ get() { return _browserCore->LoadHandler; }
void set(ILoadHandler^ handler) { _browserCore->LoadHandler = handler; }
}
virtual property IRequestHandler^ RequestHandler
{
IRequestHandler^ get() { return _browserCore->RequestHandler; }
void set(IRequestHandler^ handler) { _browserCore->RequestHandler = handler; }
}
virtual property IMenuHandler^ MenuHandler
{
IMenuHandler^ get() { return _browserCore->MenuHandler; }
void set(IMenuHandler^ handler) { _browserCore->MenuHandler = handler; }
}
virtual property IKeyboardHandler^ KeyboardHandler
{
IKeyboardHandler^ get() { return _browserCore->KeyboardHandler; }
void set(IKeyboardHandler^ handler) { _browserCore->KeyboardHandler = handler; }
}
virtual property IJsDialogHandler^ JsDialogHandler
{
IJsDialogHandler^ get() { return _browserCore->JsDialogHandler; }
void set(IJsDialogHandler^ handler) { _browserCore->JsDialogHandler = handler; }
}
virtual property double ZoomLevel
{
double get()
{
CefRefPtr<CefBrowser> browser;
if(!TryGetCefBrowser(browser))
{
return 0;
}
return browser->GetZoomLevel();
}
void set(double zoomLevel)
{
CefRefPtr<CefBrowser> browser;
if(!TryGetCefBrowser(browser))
{
return;
}
browser->SetZoomLevel(zoomLevel);
}
}
virtual void OnInitialized();
virtual void Load(String^ url);
virtual void LoadHtml(String^ html);
virtual void LoadHtml(String^ html, String^ url);
virtual void Stop();
virtual void Back();
virtual void Forward();
virtual void Reload();
virtual void Reload(bool ignoreCache);
virtual void ClearHistory();
virtual void ShowDevTools();
virtual void CloseDevTools();
virtual void Undo();
virtual void Redo();
virtual void Cut();
virtual void Copy();
virtual void Paste();
virtual void Delete();
virtual void SelectAll();
virtual void Print();
void ExecuteScript(String^ script);
Object^ EvaluateScript(String^ script);
Object^ EvaluateScript(String^ script, TimeSpan timeout);
virtual void SetNavState(bool isLoading, bool canGoBack, bool canGoForward);
virtual void OnFrameLoadStart(String^ url);
virtual void OnFrameLoadEnd(String^ url);
virtual void OnTakeFocus(bool next);
virtual void OnConsoleMessage(String^ message, String^ source, int line);
virtual void RegisterJsObject(String^ name, Object^ objectToBind);
virtual IDictionary<String^, Object^>^ GetBoundObjects();
virtual void OnApplyTemplate() override;
virtual void SetCursor(IntPtr cursor);
virtual void SetBuffer(int width, int height, const void* buffer);
virtual void SetPopupBuffer(int width, int height, const void* buffer);
virtual void SetPopupIsOpen(bool isOpen);
virtual void SetPopupSizeAndPosition(const void* rect);
};
}
}