This repository was archived by the owner on May 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathWebKitBrowserEvents.cs
More file actions
283 lines (248 loc) · 11.6 KB
/
WebKitBrowserEvents.cs
File metadata and controls
283 lines (248 loc) · 11.6 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
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
/*
* Copyright (c) 2009, Peter Nelson ([email protected])
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
// Various event handlers and argument classes used by WebKitBrowser to
// communicate with the client.
using System;
using System.ComponentModel;
namespace WebKit
{
#region Event handler delegates
/// <summary>
/// Represents the method that will handle the WebKitBrowser.Error event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A WebKitBrowserErrorEventArgs that contains the event data.</param>
public delegate void WebKitBrowserErrorEventHandler (object Sender, WebKitBrowserErrorEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.FileDownloadBegin event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A FileDownloadBeginEventArgs that contains the event data.</param>
public delegate void FileDownloadBeginEventHandler (object Sender, FileDownloadBeginEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.NewWindowRequest event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A NewWindowRequestEventArgs that contains the event data.</param>
public delegate void NewWindowRequestEventHandler (object Sender, NewWindowRequestEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.NewWindowCreated event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A NewWindowCreatedEventArgs that contains the event data.</param>
public delegate void NewWindowCreatedEventHandler (object Sender, NewWindowCreatedEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ProgressStartedEventHandler event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">An EventArgs that contains the event data.</param>
public delegate void ProgressStartedEventHandler(object Sender, EventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ProgressFinishedEventHandler event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">An EventArgs that contains the event data.</param>
public delegate void ProgressFinishedEventHandler(object Sender, EventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ProgressChangedEventHandler event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A ProgressChangedEventArgs that contains the event data.</param>
public delegate void ProgressChangedEventHandler(object Sender, ProgressChangedEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ShowJavaScriptAlertPanel event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A ShowJavaScriptAlertPanelEventArgs that contains the event data.</param>
public delegate void ShowJavaScriptAlertPanelEventHandler(object Sender, ShowJavaScriptAlertPanelEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ShowJavaScriptConfirmPanel event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A ShowJavaScriptConfirmPanelEventArgs that contains the event data.</param>
public delegate void ShowJavaScriptConfirmPanelEventHandler(object Sender, ShowJavaScriptConfirmPanelEventArgs Args);
/// <summary>
/// Represents the method that will handle the WebKitBrowser.ShowJavaScriptPromptPanel event.
/// </summary>
/// <param name="Sender">The source of the event.</param>
/// <param name="Args">A ShowJavaScriptPromptPanelEventArgs that contains the event data.</param>
public delegate void ShowJavaScriptPromptPanelEventHandler(object Sender, ShowJavaScriptPromptPanelEventArgs Args);
#endregion
#region EventArgs classes
/// <summary>
/// Provides data for the WebKitBrowser.Error event.
/// </summary>
public class WebKitBrowserErrorEventArgs : EventArgs
{
/// <summary>
/// Gets a description of the error that occurred.
/// </summary>
public string Description { get; private set; }
/// <summary>
/// Initializes a new instance of the WebKitBrowserErrorEventArgs class.
/// </summary>
/// <param name="Description">A description of the error that occurred.</param>
public WebKitBrowserErrorEventArgs(string Description)
{
this.Description = Description;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.FileDownloadBegin event.
/// </summary>
public class FileDownloadBeginEventArgs : EventArgs
{
/// <summary>
/// Gets the WebKitDownload representing the download.
/// </summary>
public WebKitDownload Download { get; private set; }
/// <summary>
/// Gets or sets a value indicating whether the download should be cancelled.
/// </summary>
public bool Cancel { get; set; }
/// <summary>
/// Initializes a new instance of the FileDownloadBeginEventArgs class.
/// </summary>
/// <param name="Download">A WebKitDownload representing the download.</param>
public FileDownloadBeginEventArgs(WebKitDownload Download)
{
this.Download = Download;
this.Cancel = false;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.NewWindowRequest event.
/// </summary>
public class NewWindowRequestEventArgs : EventArgs
{
/// <summary>
/// Gets or sets a value indicating whether opening the new window should be cancelled.
/// </summary>
public bool Cancel { get; set; }
/// <summary>
/// Gets the Url that the new window will attempt to navigate to.
/// </summary>
public string Url { get; private set; }
/// <summary>
/// Initializes a new instance of the NewWindowRequestEventArgs class.
/// </summary>
/// <param name="Url">The Url that the new window will attempt to navigate to.</param>
public NewWindowRequestEventArgs(string Url)
{
this.Cancel = false;
this.Url = Url;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.NewWindowCreated event.
/// </summary>
public class NewWindowCreatedEventArgs : EventArgs
{
/// <summary>
/// Gets the WebKitBrowser showing the contents of the new window.
/// </summary>
public IWebKitBrowser WebKitBrowser { get; private set; }
/// <summary>
/// Initializes a new instance of the NewWindowCreatedEventArgs class.
/// </summary>
/// <param name="Browser">The WebKitBrowser showing the contents of the new window.</param>
public NewWindowCreatedEventArgs(IWebKitBrowser Browser)
{
WebKitBrowser = Browser;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.ShowJavaScriptAlertPanel event.
/// </summary>
public class ShowJavaScriptAlertPanelEventArgs : EventArgs
{
/// <summary>
/// Gets the message to be shown in the alert panel.
/// </summary>
public string Message { get; private set; }
/// <summary>
/// Initializes a new instance of the ShowJavaScriptAlertPanelEventArgs class.
/// </summary>
/// <param name="Message">The message to be shown in the alert panel.</param>
public ShowJavaScriptAlertPanelEventArgs(string Message)
{
this.Message = Message;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.ShowJavaScriptConfirmPanel event.
/// </summary>
public class ShowJavaScriptConfirmPanelEventArgs : EventArgs
{
/// <summary>
/// Gets the message to be shown in the confirm panel.
/// </summary>
public string Message { get; private set; }
/// <summary>
/// Gets or sets the return value for the confirm panel.
/// </summary>
public bool ReturnValue { get; set; }
/// <summary>
/// Initializes a new instance of the ShowJavaScriptConfirmPanelEventArgs class.
/// </summary>
/// <param name="Message">The message to be shown in the confirm panel.</param>
public ShowJavaScriptConfirmPanelEventArgs(string Message)
{
this.Message = Message;
ReturnValue = false;
}
}
/// <summary>
/// Provides data for the WebKitBrowser.ShowJavaScriptPromptPanel event.
/// </summary>
public class ShowJavaScriptPromptPanelEventArgs : EventArgs
{
/// <summary>
/// Gets the message to be shown in the prompt panel.
/// </summary>
public string Message { get; private set; }
/// <summary>
/// Gets the default value of the prompt panel.
/// </summary>
public string DefaultValue { get; private set; }
/// <summary>
/// Gets or sets the return value for the prompt panel.
/// </summary>
public string ReturnValue { get; set; }
/// <summary>
/// Initializes a new instance of the ShowJavaScriptConfirmPanelEventArgs class.
/// </summary>
/// <param name="Message">The message to be shown in the prompt panel.</param>
/// <param name="DefaultValue">The default value to be shown in the prompt panel.</param>
public ShowJavaScriptPromptPanelEventArgs(string Message, string DefaultValue)
{
this.Message = Message;
this.DefaultValue = DefaultValue;
ReturnValue = DefaultValue;
}
}
#endregion
}