-
Notifications
You must be signed in to change notification settings - Fork 497
Expand file tree
/
Copy pathCollapsedLineSection.cs
More file actions
160 lines (147 loc) · 5.11 KB
/
CollapsedLineSection.cs
File metadata and controls
160 lines (147 loc) · 5.11 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#nullable enable
using System;
using ICSharpCode.AvalonEdit.Document;
namespace ICSharpCode.AvalonEdit.Rendering
{
/// <summary>
/// Represents a collapsed line section.
/// Use the Uncollapse() method to uncollapse the section.
/// </summary>
public sealed class CollapsedLineSection
{
// note: we don't need to store start/end, we could recompute them from
// the height tree if that had parent pointers.
DocumentLine? start, end;
internal readonly HeightTree heightTree;
internal HeightTreeLeafNode? startLeaf, endLeaf;
// tree nodes that contains the start/end of the collapsed section
internal byte startIndexInLeaf, endIndexInLeaf;
// start/end line within the HeightTreeLeafNode
#if DEBUG
internal string ID;
static int nextId;
#else
const string ID = "";
#endif
internal CollapsedLineSection(HeightTree heightTree, DocumentLine start, DocumentLine end)
{
this.heightTree = heightTree;
this.start = start;
this.end = end;
#if DEBUG
unchecked {
this.ID = " #" + (nextId++);
}
#endif
}
/// <summary>
/// Gets if the document line is collapsed.
/// This property initially is true and turns to false when uncollapsing the section.
/// </summary>
public bool IsCollapsed {
get { return start != null; }
}
/// <summary>
/// Gets the start line of the section.
/// When the section is uncollapsed or the text containing it is deleted,
/// this property returns null.
/// </summary>
public DocumentLine? Start {
get { return start; }
internal set { start = value; }
}
/// <summary>
/// Gets the end line of the section.
/// When the section is uncollapsed or the text containing it is deleted,
/// this property returns null.
/// </summary>
public DocumentLine? End {
get { return end; }
internal set { end = value; }
}
internal void Reset()
{
start = end = null;
startLeaf = endLeaf = null;
}
/// <summary>
/// Uncollapses the section.
/// This causes the Start and End properties to be set to null!
/// Does nothing if the section is already uncollapsed.
/// </summary>
public void Uncollapse()
{
if (startLeaf == null || endLeaf == null)
return;
HeightTreeNode startNode = startLeaf;
HeightTreeNode endNode = endLeaf;
while (startNode != endNode) {
startNode.RemoveEvent(this, HeightTreeNode.EventKind.Start);
endNode.RemoveEvent(this, HeightTreeNode.EventKind.End);
startNode.parent!.UpdateHeight(startNode.indexInParent);
endNode.parent!.UpdateHeight(endNode.indexInParent);
startNode = startNode.parent;
endNode = endNode.parent;
}
// Now we have arrived at the node which has both events.
startNode.RemoveEvent(this, HeightTreeNode.EventKind.Start);
startNode.RemoveEvent(this, HeightTreeNode.EventKind.End);
// Propagate the new height up to the root node.
while (startNode.parent != null) {
startNode.parent.UpdateHeight(startNode.indexInParent);
startNode = startNode.parent;
}
Reset();
}
/// <summary>
/// Gets a string representation of the collapsed section.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Globalization", "CA1305:SpecifyIFormatProvider", MessageId = "System.Int32.ToString")]
public override string ToString()
{
return "[CollapsedSection" + ID + " Start=" + (start != null ? start.LineNumber.ToString() : "null")
+ " End=" + (end != null ? end.LineNumber.ToString() : "null") + "]";
}
internal bool StartIsWithin(HeightTreeNode heightTreeNode, out int index)
{
index = startIndexInLeaf;
HeightTreeNode? node = startLeaf;
while (node != null) {
if (node == heightTreeNode)
return true;
index = node.indexInParent;
node = node.parent;
}
return false;
}
internal bool EndIsWithin(HeightTreeNode heightTreeNode, out int index)
{
index = endIndexInLeaf;
HeightTreeNode? node = endLeaf;
while (node != null) {
if (node == heightTreeNode)
return true;
index = node.indexInParent;
node = node.parent;
}
return false;
}
}
}