Merge branch 'release/11.2' into release/11.2.2

This commit is contained in:
Max Katz 2024-11-25 19:27:27 -08:00
Родитель 43753b8e7b 35f6d73e0d
Коммит 578bdc7e02
3 изменённых файлов: 65 добавлений и 14 удалений

Просмотреть файл

@ -173,8 +173,7 @@ public:
if(initialDirectory != nullptr)
{
auto directoryString = [NSString stringWithUTF8String:initialDirectory];
panel.directoryURL = [NSURL fileURLWithPath:directoryString
isDirectory:true];
panel.directoryURL = [NSURL URLWithString:directoryString];
}
auto handler = ^(NSModalResponse result) {
@ -239,8 +238,7 @@ public:
if(initialDirectory != nullptr)
{
auto directoryString = [NSString stringWithUTF8String:initialDirectory];
panel.directoryURL = [NSURL fileURLWithPath:directoryString
isDirectory:true];
panel.directoryURL = [NSURL URLWithString:directoryString];
}
if(initialFile != nullptr)
@ -309,8 +307,7 @@ public:
if(initialDirectory != nullptr)
{
auto directoryString = [NSString stringWithUTF8String:initialDirectory];
panel.directoryURL = [NSURL fileURLWithPath:directoryString
isDirectory:true];
panel.directoryURL = [NSURL URLWithString:directoryString];
}
if(initialFile != nullptr)

Просмотреть файл

@ -213,9 +213,7 @@ namespace Avalonia.Layout
void ILayoutManager.RegisterEffectiveViewportListener(Layoutable control)
{
_effectiveViewportChangedListeners ??= new List<EffectiveViewportChangedListener>();
_effectiveViewportChangedListeners.Add(new EffectiveViewportChangedListener(
control,
CalculateEffectiveViewport(control)));
_effectiveViewportChangedListeners.Add(new EffectiveViewportChangedListener(control));
}
void ILayoutManager.UnregisterEffectiveViewportListener(Layoutable control)
@ -438,14 +436,13 @@ namespace Avalonia.Layout
private class EffectiveViewportChangedListener
{
public EffectiveViewportChangedListener(Layoutable listener, Rect viewport)
public EffectiveViewportChangedListener(Layoutable listener)
{
Listener = listener;
Viewport = viewport;
}
public Layoutable Listener { get; }
public Rect Viewport { get; set; }
public Rect? Viewport { get; set; }
}
private enum ArrangeResult

Просмотреть файл

@ -14,7 +14,7 @@ namespace Avalonia.Base.UnitTests.Layout
public class LayoutableTests_EffectiveViewportChanged
{
[Fact]
public async Task EffectiveViewportChanged_Not_Raised_When_Control_Added_To_Tree()
public async Task EffectiveViewportChanged_Not_Raised_When_Control_Added_To_Tree_And_Layout_Pass_Has_Not_Run()
{
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
await RunOnUIThread.Execute(async () =>
@ -34,6 +34,60 @@ namespace Avalonia.Base.UnitTests.Layout
Assert.Equal(0, raised);
});
}
[Fact]
public async Task EffectiveViewportChanged_Raised_When_Control_Added_To_Tree_And_Layout_Pass_Has_Run()
{
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
await RunOnUIThread.Execute(async () =>
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously
{
var root = CreateRoot();
var target = new Canvas();
var raised = 0;
target.EffectiveViewportChanged += (s, e) =>
{
++raised;
};
root.Child = target;
Assert.Equal(0, raised);
await ExecuteInitialLayoutPass(root);
Assert.Equal(1, raised);
});
}
[Fact]
public async Task EffectiveViewportChanged_Raised_When_Root_LayedOut_And_Then_Control_Added_To_Tree_And_Layout_Pass_Runs()
{
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
await RunOnUIThread.Execute(async () =>
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously
{
var root = CreateRoot();
var target = new Canvas();
var raised = 0;
target.EffectiveViewportChanged += (s, e) =>
{
++raised;
};
await ExecuteInitialLayoutPass(root);
root.Child = target;
Assert.Equal(0, raised);
await ExecuteInitialLayoutPass(root);
Assert.Equal(1, raised);
});
}
[Fact]
public async Task EffectiveViewportChanged_Raised_Before_LayoutUpdated()
@ -268,8 +322,11 @@ namespace Avalonia.Base.UnitTests.Layout
root.Child = parent;
await ExecuteInitialLayoutPass(root);
target.EffectiveViewportChanged += (s, e) => ++raised;
await ExecuteInitialLayoutPass(root);
raised = 0; // The initial layout pass is expected to raise.
target.RenderTransform = new TranslateTransform { X = 8 };
target.InvalidateMeasure();
await ExecuteLayoutPass(root);