-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathIFocusHandler.cs
More file actions
33 lines (30 loc) · 1.33 KB
/
IFocusHandler.cs
File metadata and controls
33 lines (30 loc) · 1.33 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
// Copyright © 2010-2017 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
/// <summary>
/// Implement this interface to handle events related to focus.
/// The methods of this class will be called on the CEF UI thread.
/// </summary>
public interface IFocusHandler
{
/// <summary>
/// Called when the browser component has received focus.
/// </summary>
void OnGotFocus();
/// <summary>
/// Called when the browser component is requesting focus.
/// </summary>
/// <param name="source">Indicates where the focus request is originating from.</param>
/// <returns>Return false to allow the focus to be set or true to cancel setting the focus.</returns>
bool OnSetFocus(CefFocusSource source);
/// <summary>
/// Called when the browser component is about to lose focus.
/// For instance, if focus was on the last HTML element and the user pressed the TAB key.
/// </summary>
/// <param name="next">Will be true if the browser is giving focus to the next component
/// and false if the browser is giving focus to the previous component.</param>
void OnTakeFocus(bool next);
}
}