NativePath, Editor, ToastMessageSink

This commit is contained in:
2022-02-15 19:47:38 +01:00
parent b11d009195
commit 45defb4021
28 changed files with 265 additions and 54 deletions

View File

@@ -31,6 +31,9 @@ namespace FileTime.Core.Timeline
public bool IsDestroyed { get; private set; }
//FIXME: currently this can be different of the real items NativePath, should be fixed
public string? NativePath => FullName;
public TimeContainer(string name, IContainer parent, IContentProvider contentProvider, IContentProvider virtualContentProvider, PointInTime pointInTime)
{
_parent = parent;

View File

@@ -22,6 +22,9 @@ namespace FileTime.Core.Timeline
public string? FullName { get; }
//FIXME: currently this can be different of the real items NativePath, should be fixed
public string? NativePath => FullName;
public bool IsHidden => false;
public SupportsDelete CanDelete => SupportsDelete.True;

View File

@@ -15,6 +15,7 @@ namespace FileTime.Core.Timeline
public string Name => "time";
public string? FullName => null;
public string? NativePath => null;
public bool IsHidden => false;