ConsoleUI FrequencyNavigation

This commit is contained in:
2023-08-16 22:35:17 +02:00
parent 3c996f0c20
commit 92726f1af9
10 changed files with 156 additions and 3 deletions

View File

@@ -10,6 +10,7 @@
<ItemGroup>
<ProjectReference Include="..\..\AppCommon\FileTime.App.CommandPalette.Abstractions\FileTime.App.CommandPalette.Abstractions.csproj" />
<ProjectReference Include="..\..\AppCommon\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj" />
<ProjectReference Include="..\..\AppCommon\FileTime.App.FrequencyNavigation.Abstractions\FileTime.App.FrequencyNavigation.Abstractions.csproj" />
<ProjectReference Include="..\..\Library\TerminalUI\TerminalUI.csproj" />
</ItemGroup>

View File

@@ -2,6 +2,7 @@
using FileTime.App.CommandPalette.ViewModels;
using FileTime.App.Core.ViewModels;
using FileTime.App.Core.ViewModels.Timeline;
using FileTime.App.FrequencyNavigation.ViewModels;
using FileTime.ConsoleUI.App.Services;
using FileTime.Core.Interactions;
using FileTime.Core.Models;
@@ -18,5 +19,6 @@ public interface IRootViewModel
IDialogService DialogService { get; }
ITimelineViewModel TimelineViewModel { get; }
IDeclarativeProperty<VolumeSizeInfo?> VolumeSizeInfo { get; }
IFrequencyNavigationViewModel FrequencyNavigation { get; }
event Action<IInputElement>? FocusReadInputElement;
}