Browse Source
- added props snippet - enhanced existing snippets git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5214 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
11 changed files with 99 additions and 20 deletions
@ -0,0 +1,61 @@
@@ -0,0 +1,61 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Siegfried Pammer" email="siegfriedpammer@gmail.com" />
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
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 |
||||
} |
||||
} |
Loading…
Reference in new issue