blob: e6d11c7079d0852d20807e776006979c60dd19f4 (
plain)
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
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
namespace ICSharpCode.AvalonEdit.Snippets
{
/// <summary>
/// Provides information about the event that occured during use of snippets.
/// </summary>
public class SnippetEventArgs : EventArgs
{
/// <summary>
/// Gets the reason for deactivation.
/// </summary>
public DeactivateReason Reason { get; private set; }
/// <summary>
/// Creates a new SnippetEventArgs object, with a DeactivateReason.
/// </summary>
public SnippetEventArgs(DeactivateReason reason)
{
this.Reason = reason;
}
}
/// <summary>
/// Describes the reason for deactivation of a <see cref="SnippetElement" />.
/// </summary>
public enum DeactivateReason
{
/// <summary>
/// Unknown reason.
/// </summary>
Unknown,
/// <summary>
/// Snippet was deleted.
/// </summary>
Deleted,
/// <summary>
/// There are no active elements in the snippet.
/// </summary>
NoActiveElements,
/// <summary>
/// The SnippetInputHandler was detached.
/// </summary>
InputHandlerDetached,
/// <summary>
/// Return was pressed by the user.
/// </summary>
ReturnPressed,
/// <summary>
/// Escape was pressed by the user.
/// </summary>
EscapePressed
}
}
|