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
| // Copyright © 2013 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.
|
| using System;
|
| namespace CefSharp
| {
| /// <summary>
| /// Supported event bit flags.
| /// </summary>
| [FlagsAttribute]
| public enum CefEventFlags : uint
| {
| None = 0,
|
| CapsLockOn = 1 << 0,
|
| ShiftDown = 1 << 1,
| ControlDown = 1 << 2,
| AltDown = 1 << 3,
|
| LeftMouseButton = 1 << 4,
| MiddleMouseButton = 1 << 5,
| RightMouseButton = 1 << 6,
|
| /// <summary>
| /// Mac OS-X command key.
| /// </summary>
| CommandDown = 1 << 7,
|
| NumLockOn = 1 << 8,
| IsKeyPad = 1 << 9,
| IsLeft = 1 << 10,
| IsRight = 1 << 11,
| AltGrDown = 1 << 12
| }
| }
|
|