forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventCommandNames.cs
More file actions
52 lines (43 loc) · 2.01 KB
/
EventCommandNames.cs
File metadata and controls
52 lines (43 loc) · 2.01 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
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Runtime.InteropServices;
using UnityEngine.Scripting;
namespace UnityEngine
{
internal static class EventCommandNames
{
//Some of these strings are also hardcoded on the native side. Change them at your own risk!
public const string Cut = "Cut";
public const string Copy = "Copy";
public const string Paste = "Paste";
public const string SelectAll = "SelectAll";
public const string DeselectAll = "DeselectAll";
public const string InvertSelection = "InvertSelection";
public const string Duplicate = "Duplicate";
public const string Delete = "Delete";
public const string SoftDelete = "SoftDelete";
public const string Find = "Find";
public const string SelectChildren = "SelectChildren";
public const string SelectPrefabRoot = "SelectPrefabRoot";
public const string UndoRedoPerformed = "UndoRedoPerformed";
public const string OnLostFocus = "OnLostFocus";
//Used by IMGUIContainer to force editing textfield when focus is changed with tab
public const string NewKeyboardFocus = "NewKeyboardFocus";
public const string ModifierKeysChanged = "ModifierKeysChanged";
//Used by ColorPicker
public const string EyeDropperUpdate = "EyeDropperUpdate";
public const string EyeDropperClicked = "EyeDropperClicked";
public const string EyeDropperCancelled = "EyeDropperCancelled";
public const string ColorPickerChanged = "ColorPickerChanged";
public const string FrameSelected = "FrameSelected";
public const string FrameSelectedWithLock = "FrameSelectedWithLock";
/*
public const string = "";
public const string = "";
public const string = "";
public const string = "";
*/
}
}