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.
43 lines
1.1 KiB
43 lines
1.1 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; |
|
using System.Diagnostics; |
|
using System.Windows; |
|
using System.Windows.Media; |
|
|
|
namespace ICSharpCode.AvalonEdit.Rendering |
|
{ |
|
/// <summary> |
|
/// Base class for known layers. |
|
/// </summary> |
|
class Layer : UIElement |
|
{ |
|
protected readonly TextView textView; |
|
protected readonly KnownLayer knownLayer; |
|
|
|
public Layer(TextView textView, KnownLayer knownLayer) |
|
{ |
|
Debug.Assert(textView != null); |
|
this.textView = textView; |
|
this.knownLayer = knownLayer; |
|
this.Focusable = false; |
|
} |
|
|
|
protected override GeometryHitTestResult HitTestCore(GeometryHitTestParameters hitTestParameters) |
|
{ |
|
return null; |
|
} |
|
|
|
protected override HitTestResult HitTestCore(PointHitTestParameters hitTestParameters) |
|
{ |
|
return null; |
|
} |
|
|
|
protected override void OnRender(DrawingContext drawingContext) |
|
{ |
|
base.OnRender(drawingContext); |
|
textView.RenderBackground(drawingContext, knownLayer); |
|
} |
|
} |
|
}
|
|
|