21 lines
694 B
C#
21 lines
694 B
C#
using System.Collections.ObjectModel;
|
|
using FileTime.App.Core.Configuration;
|
|
using FileTime.App.Core.ViewModels;
|
|
using FileTime.GuiApp.App.Models;
|
|
|
|
namespace FileTime.GuiApp.App.ViewModels;
|
|
|
|
public interface IGuiAppState : IAppState
|
|
{
|
|
List<KeyConfig> PreviousKeys { get; }
|
|
bool IsAllShortcutVisible { get; set; }
|
|
bool NoCommandFound { get; set; }
|
|
List<CommandBindingConfiguration> PossibleCommands { get; set; }
|
|
ObservableCollection<RootDriveInfo> RootDriveInfos { get; set; }
|
|
IReadOnlyList<PlaceInfo> Places { get; set; }
|
|
ObservableCollection<string> PopupTexts { get; }
|
|
IObservable<GuiPanel> ActivePanel { get; }
|
|
|
|
void SetActivePanel(GuiPanel newPanel);
|
|
}
|