blob: e5eb56670d55ffd1d0cc99dece4152de86af538d (
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 10 00 00 00 10 08 03 00 00 00 28 2d 0f | .PNG........IHDR.............(-. |
| 0020 | 53 00 00 00 20 63 48 52 4d 00 00 7a 26 00 00 80 84 00 00 fa 00 00 00 80 e8 00 00 75 30 00 00 ea | S....cHRM..z&..............u0... |
| 0040 | 60 00 00 3a 98 00 00 17 70 9c ba 51 3c 00 00 01 ad 50 4c 54 45 00 00 00 ae ae ae b2 b2 b2 b7 b7 | `..:....p..Q<....PLTE........... |
| 0060 | b7 c0 c3 be ca ca ca c4 c4 d8 9c a3 cd c2 c2 c2 e0 e0 e0 e9 e9 e9 f6 f6 f6 a4 aa f5 de de de 96 | ................................ |
| 0080 | 9d f6 d9 d9 d9 87 8c ff d5 d5 d5 7a 80 ff d1 d1 d1 72 7a ff cd cd cd 66 6c ff c9 c9 c9 49 54 ff | ...........z.....rz....fl....IT. |
| 00a0 | c7 c7 c7 33 3d ff 86 86 86 2d 34 ff 29 25 20 28 24 1f 1a 17 14 92 91 8f 2c 2d ff 29 25 20 28 24 | ...3=....-4.)%.($.......,-.)%.($ |
| 00c0 | 1f 1b 18 15 8d 8c 8a 34 30 ff 29 25 20 28 24 1f 1b 18 15 8b 8a 88 00 16 ff 28 24 1f 1c 18 13 8f | .......40.)%.($..........($..... |
| 00e0 | 8e 8c 16 21 ff 09 00 ff 16 00 ff 0f 00 ff 23 1f 1a 44 40 3b ae ae ae d2 d2 d2 c6 c6 c6 0c 1b ff | ...!..........#..D@;............ |
| 0100 | 21 00 ff 0e 06 5d 1a 14 49 1c 16 3f f9 fa fc ff// 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 Tango.Scripting.Editors.Document
{
/// <summary>
/// Allows for low-level line tracking.
/// </summary>
/// <remarks>
/// The methods on this interface are called by the TextDocument's LineManager immediately after the document
/// has changed, *while* the DocumentLineTree is updating.
/// Thus, the DocumentLineTree may be in an invalid state when these methods are called.
/// This interface should only be used to update per-line data structures like the HeightTree.
/// Line trackers must not cause any events to be raised during an update to prevent other code from seeing
/// the invalid state.
/// Line trackers may be called while the TextDocument has taken a lock.
/// You must be careful not to dead-lock inside ILineTracker callbacks.
/// </remarks>
public interface ILineTracker
{
/// <summary>
/// Is called immediately before a document line is removed.
/// </summary>
void BeforeRemoveLine(DocumentLine line);
// /// <summary>
// /// Is called immediately after a document line is removed.
// /// </summary>
// void AfterRemoveLine(DocumentLine line);
/// <summary>
/// Is called immediately before a document line changes length.
/// This method will be called whenever the line is changed, even when the length stays as it is.
/// The method might be called multiple times for a single line because
/// a replacement is internally handled as removal followed by insertion.
/// </summary>
void SetLineLength(DocumentLine line, int newTotalLength);
/// <summary>
/// Is called immediately after a line was inserted.
/// </summary>
/// <param name="newLine">The new line</param>
/// <param name="insertionPos">The existing line before the new line</param>
void LineInserted(DocumentLine insertionPos, DocumentLine newLine);
/// <summary>
/// Indicates that there were changes to the document that the line tracker was not notified of.
/// The document is in a consistent state (but the line trackers aren't), and line trackers should
/// throw away their data and rebuild the document.
/// </summary>
void RebuildDocument();
}
}
|