mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
// 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 |
|
} |
|
}
|
|
|