blob: 7f397c82e427dc543a3a501c2f677a785d042aa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// 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.Collections.Generic;
using System.Collections.ObjectModel;
using System.Windows;
using System.Windows.Threading;
using Tango.Scripting.Editors.Document;
using Tango.Scripting.Editors.Editing;
using Tango.Scripting.Editors.Rendering;
using Tango.Scripting.Editors.Utils;
namespace Tango.Scripting.Editors.Folding
{
/// <summary>
/// Helper class used for <see cref="FoldingManager.UpdateFoldings"/>.
/// </summary>
public class NewFolding : ISegment
{
/// <summary>
/// Gets/Sets the start offset.
/// </summary>
public int StartOffset { get; set; }
/// <summary>
/// Gets/Sets the end offset.
/// </summary>
public int EndOffset { get; set; }
/// <summary>
/// Gets/Sets the name displayed for the folding.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets/Sets whether the folding is closed by default.
/// </summary>
public bool DefaultClosed { get; set; }
/// <summary>
/// Creates a new NewFolding instance.
/// </summary>
public NewFolding()
{
}
/// <summary>
/// Creates a new NewFolding instance.
/// </summary>
public NewFolding(int start, int end)
{
if (!(start <= end))
throw new ArgumentException("'start' must be less than 'end'");
this.StartOffset = start;
this.EndOffset = end;
this.Name = null;
this.DefaultClosed = false;
}
int ISegment.Offset {
get { return this.StartOffset; }
}
int ISegment.Length {
get { return this.EndOffset - this.StartOffset; }
}
}
}
|