pascalabcnet/Libraries/AvalonEdit/ICSharpCode.AvalonEdit/Rendering/IBackgroundRenderer.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

27 lines
830 B
C#

// 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;
using System.Windows.Media;
namespace ICSharpCode.AvalonEdit.Rendering
{
/// <summary>
/// Background renderers draw in the background of a known layer.
/// You can use background renderers to draw non-interactive elements on the TextView
/// without introducing new UIElements.
/// </summary>
public interface IBackgroundRenderer
{
/// <summary>
/// Gets the layer on which this background renderer should draw.
/// </summary>
KnownLayer Layer { get; }
/// <summary>
/// Causes the background renderer to draw.
/// </summary>
void Draw(TextView textView, DrawingContext drawingContext);
}
}