-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
ProportionalStackPanel.cs
498 lines (427 loc) · 16.6 KB
/
ProportionalStackPanel.cs
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
using System;
using System.Diagnostics;
using System.Linq;
using Avalonia.Data;
using Avalonia.Layout;
namespace Avalonia.Controls;
/// <summary>
/// A Panel that stacks controls either horizontally or vertically, with proportional resizing.
/// </summary>
public class ProportionalStackPanel : Panel
{
/// <summary>
/// Defines the <see cref="Orientation"/> property.
/// </summary>
public static readonly StyledProperty<Orientation> OrientationProperty =
AvaloniaProperty.Register<ProportionalStackPanel, Orientation>(nameof(Orientation), Orientation.Vertical);
/// <summary>
/// Gets or sets the orientation in which child controls will be arranged out.
/// </summary>
public Orientation Orientation
{
get => GetValue(OrientationProperty);
set => SetValue(OrientationProperty, value);
}
/// <summary>
/// Defines the Proportion attached property.
/// </summary>
public static readonly AttachedProperty<double> ProportionProperty =
AvaloniaProperty.RegisterAttached<ProportionalStackPanel, Control, double>("Proportion", double.NaN, false,
BindingMode.TwoWay);
/// <summary>
/// Gets the value of the Proportion attached property on the specified control.
/// </summary>
/// <param name="control">The control.</param>
/// <returns>The Proportion attached property.</returns>
public static double GetProportion(AvaloniaObject control)
{
return control.GetValue(ProportionProperty);
}
/// <summary>
/// Sets the value of the Proportion attached property on the specified control.
/// </summary>
/// <param name="control">The control.</param>
/// <param name="value">The value of the Proportion property.</param>
public static void SetProportion(AvaloniaObject control, double value)
{
control.SetValue(ProportionProperty, value);
}
/// <summary>
/// Defines the IsCollapsed attached property.
/// </summary>
public static readonly AttachedProperty<bool> IsCollapsedProperty =
AvaloniaProperty.RegisterAttached<ProportionalStackPanel, Control, bool>("IsCollapsed", false, false,
BindingMode.TwoWay);
/// <summary>
/// Gets the value of the IsCollapsed attached property on the specified control.
/// </summary>
/// <param name="control">The control.</param>
/// <returns>The IsCollapsed attached property.</returns>
public static bool GetIsCollapsed(AvaloniaObject control)
{
return control.GetValue(IsCollapsedProperty);
}
/// <summary>
/// Sets the value of the IsCollapsed attached property on the specified control.
/// </summary>
/// <param name="control">The control.</param>
/// <param name="value">The value of the IsCollapsed property.</param>
public static void SetIsCollapsed(AvaloniaObject control, bool value)
{
control.SetValue(IsCollapsedProperty, value);
}
private void AssignProportions(global::Avalonia.Controls.Controls children)
{
var assignedProportion = 0.0;
var unassignedProportions = 0;
for (var i = 0; i < children.Count; i++)
{
var control = children[i];
var isCollapsed = GetIsCollapsed(control);
var isSplitter = ProportionalStackPanelSplitter.IsSplitter(control, out _);
if (!isSplitter)
{
var proportion = GetProportion(control);
if (isCollapsed)
{
proportion = 0.0;
}
if (double.IsNaN(proportion))
{
unassignedProportions++;
}
else
{
assignedProportion += proportion;
}
}
}
if (unassignedProportions > 0)
{
var toAssign = assignedProportion;
foreach (var control in children.Where(c =>
{
var isCollapsed = GetIsCollapsed(c);
return !isCollapsed && double.IsNaN(GetProportion(c));
}))
{
if (!ProportionalStackPanelSplitter.IsSplitter(control, out _))
{
var proportion = (1.0 - toAssign) / unassignedProportions;
SetProportion(control, proportion);
assignedProportion += (1.0 - toAssign) / unassignedProportions;
}
}
}
if (assignedProportion < 1)
{
var numChildren = (double)children.Count(c => !ProportionalStackPanelSplitter.IsSplitter(c, out _));
var toAdd = (1.0 - assignedProportion) / numChildren;
foreach (var child in children.Where(c =>
{
var isCollapsed = GetIsCollapsed(c);
return !isCollapsed && !ProportionalStackPanelSplitter.IsSplitter(c, out _);
}))
{
var proportion = GetProportion(child) + toAdd;
SetProportion(child, proportion);
}
}
else if (assignedProportion > 1)
{
var numChildren = (double)children.Count(c => !ProportionalStackPanelSplitter.IsSplitter(c, out _));
var toRemove = (assignedProportion - 1.0) / numChildren;
foreach (var child in children.Where(c =>
{
var isCollapsed = GetIsCollapsed(c);
return !isCollapsed && !ProportionalStackPanelSplitter.IsSplitter(c, out _);
}))
{
var proportion = GetProportion(child) - toRemove;
SetProportion(child, proportion);
}
}
}
private double GetTotalSplitterThickness(global::Avalonia.Controls.Controls children)
{
var previousisCollapsed = false;
var totalThickness = 0.0;
for (var i = 0; i < children.Count; i++)
{
var c = children[i];
var isSplitter = ProportionalStackPanelSplitter.IsSplitter(c, out var proportionalStackPanelSplitter);
if (isSplitter && proportionalStackPanelSplitter is not null)
{
if (previousisCollapsed)
{
previousisCollapsed = false;
continue;
}
if (i + 1 < Children.Count)
{
var nextControl = Children[i + 1];
var nextisCollapsed = GetIsCollapsed(nextControl);
if (nextisCollapsed)
{
continue;
}
}
var thickness = proportionalStackPanelSplitter.Thickness;
totalThickness += thickness;
}
else
{
previousisCollapsed = GetIsCollapsed(c);
}
}
return double.IsNaN(totalThickness) ? 0 : totalThickness;
}
/// <inheritdoc/>
protected override Size MeasureOverride(Size constraint)
{
var horizontal = Orientation == Orientation.Horizontal;
if (constraint == Size.Infinity
|| (horizontal && double.IsInfinity(constraint.Width))
|| (!horizontal && double.IsInfinity(constraint.Height)))
{
throw new Exception("Proportional StackPanel cannot be inside a control that offers infinite space.");
}
var usedWidth = 0.0;
var usedHeight = 0.0;
var maximumWidth = 0.0;
var maximumHeight = 0.0;
var splitterThickness = GetTotalSplitterThickness(Children);
AssignProportions(Children);
var needsNextSplitter = false;
double sumOfFractions = 0;
// Measure each of the Children
for (var i = 0; i < Children.Count; i++)
{
var control = Children[i];
var isSplitter = ProportionalStackPanelSplitter.IsSplitter(control, out _);
// Get the child's desired size
var remainingSize = new Size(
Math.Max(0.0, constraint.Width - usedWidth - splitterThickness),
Math.Max(0.0, constraint.Height - usedHeight - splitterThickness));
var proportion = GetProportion(control);
var isCollapsed = !isSplitter && GetIsCollapsed(control);
if (isCollapsed)
{
var size = new Size();
control.Measure(size);
continue;
}
if (!isSplitter)
{
Debug.Assert(!double.IsNaN(proportion));
switch (Orientation)
{
case Orientation.Horizontal:
{
var width = CalculateDimension(constraint.Width - splitterThickness, proportion,
ref sumOfFractions);
var size = constraint.WithWidth(width);
control.Measure(size);
break;
}
case Orientation.Vertical:
{
var height = CalculateDimension(constraint.Height - splitterThickness, proportion,
ref sumOfFractions);
var size = constraint.WithHeight(height);
control.Measure(size);
break;
}
}
needsNextSplitter = true;
}
else
{
if (!needsNextSplitter)
{
var size = new Size();
control.Measure(size);
continue;
}
control.Measure(remainingSize);
needsNextSplitter = false;
}
var desiredSize = control.DesiredSize;
// Decrease the remaining space for the rest of the children
switch (Orientation)
{
case Orientation.Horizontal:
{
maximumHeight = Math.Max(maximumHeight, usedHeight + desiredSize.Height);
if (isSplitter)
{
usedWidth += desiredSize.Width;
}
else
{
usedWidth += CalculateDimension(constraint.Width - splitterThickness, proportion,
ref sumOfFractions);
}
break;
}
case Orientation.Vertical:
{
maximumWidth = Math.Max(maximumWidth, usedWidth + desiredSize.Width);
if (isSplitter)
{
usedHeight += desiredSize.Height;
}
else
{
usedHeight += CalculateDimension(constraint.Height - splitterThickness, proportion,
ref sumOfFractions);
}
break;
}
}
}
maximumWidth = Math.Max(maximumWidth, usedWidth);
maximumHeight = Math.Max(maximumHeight, usedHeight);
return new Size(maximumWidth, maximumHeight);
}
/// <inheritdoc/>
protected override Size ArrangeOverride(Size arrangeSize)
{
var left = 0.0;
var top = 0.0;
var right = 0.0;
var bottom = 0.0;
// Arrange each of the Children
var splitterThickness = GetTotalSplitterThickness(Children);
var index = 0;
AssignProportions(Children);
var needsNextSplitter = false;
double sumOfFractions = 0;
for (var i = 0; i < Children.Count; i++)
{
var control = Children[i];
var isSplitter = ProportionalStackPanelSplitter.IsSplitter(control, out _);
var isCollapsed = !isSplitter && GetIsCollapsed(control);
if (isCollapsed)
{
var rect = new Rect();
control.Arrange(rect);
index++;
continue;
}
if (!isSplitter)
needsNextSplitter = true;
else if (isSplitter && !needsNextSplitter)
{
var rect = new Rect();
control.Arrange(rect);
index++;
needsNextSplitter = false;
continue;
}
// Determine the remaining space left to arrange the element
var remainingRect = new Rect(
left,
top,
Math.Max(0.0, arrangeSize.Width - left - right),
Math.Max(0.0, arrangeSize.Height - top - bottom));
// Trim the remaining Rect to the docked size of the element
// (unless the element should fill the remaining space because
// of LastChildFill)
if (index < Children.Count)
{
var desiredSize = control.DesiredSize;
var proportion = GetProportion(control);
switch (Orientation)
{
case Orientation.Horizontal:
{
if (isSplitter)
{
left += desiredSize.Width;
remainingRect = remainingRect.WithWidth(desiredSize.Width);
}
else
{
Debug.Assert(!double.IsNaN(proportion));
var width = CalculateDimension(arrangeSize.Width - splitterThickness, proportion,
ref sumOfFractions);
remainingRect = remainingRect.WithWidth(width);
left += width;
}
break;
}
case Orientation.Vertical:
{
if (isSplitter)
{
top += desiredSize.Height;
remainingRect = remainingRect.WithHeight(desiredSize.Height);
}
else
{
Debug.Assert(!double.IsNaN(proportion));
var height = CalculateDimension(arrangeSize.Height - splitterThickness, proportion,
ref sumOfFractions);
remainingRect = remainingRect.WithHeight(height);
top += height;
}
break;
}
}
}
control.Arrange(remainingRect);
index++;
}
return arrangeSize;
}
private double CalculateDimension(
double dimension,
double proportion,
ref double sumOfFractions)
{
var childDimension = dimension * proportion;
var flooredChildDimension = Math.Floor(childDimension);
// sums fractions from the division
sumOfFractions += childDimension - flooredChildDimension;
// if the sum of fractions made up a whole pixel/pixels, add it to the dimension
var round = Math.Round(sumOfFractions, 1);
#if NETSTANDARD2_0
var clamp = Clamp(Math.Floor(sumOfFractions), 1, double.MaxValue);
#else
var clamp = Math.Clamp(Math.Floor(sumOfFractions), 1, double.MaxValue);
#endif
if (round - clamp >= 0)
{
sumOfFractions -= Math.Round(sumOfFractions);
return Math.Max(0, flooredChildDimension + 1);
}
return Math.Max(0, flooredChildDimension);
#if NETSTANDARD2_0
static T Clamp<T>(T value, T min, T max) where T : IComparable<T>
{
if (value.CompareTo(min) < 0)
return min;
if (value.CompareTo(max) > 0)
return max;
return value;
}
#endif
}
/// <inheritdoc/>
protected override void OnPropertyChanged(AvaloniaPropertyChangedEventArgs change)
{
base.OnPropertyChanged(change);
if (change.Property == OrientationProperty)
{
InvalidateMeasure();
}
}
static ProportionalStackPanel()
{
AffectsParentMeasure<ProportionalStackPanel>(IsCollapsedProperty);
AffectsParentArrange<ProportionalStackPanel>(IsCollapsedProperty);
AffectsParentMeasure<ProportionalStackPanel>(ProportionProperty);
AffectsParentArrange<ProportionalStackPanel>(ProportionProperty);
}
}