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
| // Copyright © 2016 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 context menu edit state bit flags.
| /// </summary>
| [Flags]
| public enum ContextMenuEditState
| {
| /// <summary>
| /// A binary constant representing the none flag.
| /// </summary>
| None = 0,
| /// <summary>
| /// A binary constant representing the can undo flag.
| /// </summary>
| CanUndo = 1 << 0,
| /// <summary>
| /// A binary constant representing the can redo flag.
| /// </summary>
| CanRedo = 1 << 1,
| /// <summary>
| /// A binary constant representing the can cut flag.
| /// </summary>
| CanCut = 1 << 2,
| /// <summary>
| /// A binary constant representing the can copy flag.
| /// </summary>
| CanCopy = 1 << 3,
| /// <summary>
| /// A binary constant representing the can paste flag.
| /// </summary>
| CanPaste = 1 << 4,
| /// <summary>
| /// A binary constant representing the can delete flag.
| /// </summary>
| CanDelete = 1 << 5,
| /// <summary>
| /// A binary constant representing the can select all flag.
| /// </summary>
| CanSelectAll = 1 << 6,
| /// <summary>
| /// A binary constant representing the can translate flag.
| /// </summary>
| CanTranslate = 1 << 7,
| }
| }
|
|