blob: a25bded5c977d0f5a2e771b3d27d46df8ba934bb (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 20 00 00 00 20 08 03 00 00 00 44 a4 8a | .PNG........IHDR.............D.. |
| 0020 | c6 00 00 00 03 73 42 49 54 08 08 08 db e1 4f e0 00 00 00 09 70 48 59 73 00 00 00 dd 00 00 00 dd | .....sBIT.....O.....pHYs........ |
| 0040 | 01 70 53 a2 07 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 77 77 77 2e 69 6e 6b 73 63 61 | .pS......tEXtSoftware.www.inksca// 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 Tango.Scripting.Editors.Document;
using System;
namespace Tango.Scripting.Editors.Indentation
{
/// <summary>
/// Strategy how the text editor handles indentation when new lines are inserted.
/// </summary>
public interface IIndentationStrategy
{
/// <summary>
/// Sets the indentation for the specified line.
/// Usually this is constructed from the indentation of the previous line.
/// </summary>
void IndentLine(TextDocument document, DocumentLine line);
/// <summary>
/// Reindents a set of lines.
/// </summary>
void IndentLines(TextDocument document, int beginLine, int endLine);
}
}
|