Сделан новый проект VisualPABCLinux И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
25 lines
665 B
C#
25 lines
665 B
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
|
|
// <version>$Revision: 1965 $</version>
|
|
// </file>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ICSharpCode.TextEditor.Document
|
|
{
|
|
/// <summary>
|
|
/// This interface is used for the folding capabilities
|
|
/// of the textarea.
|
|
/// </summary>
|
|
public interface IFoldingStrategy
|
|
{
|
|
/// <remarks>
|
|
/// Calculates the fold level of a specific line.
|
|
/// </remarks>
|
|
List<FoldMarker> GenerateFoldMarkers(IDocument document, string fileName, object parseInformation);
|
|
}
|
|
}
|