Console improvements, info providers
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace FileTime.ConsoleUI.App;
|
||||
|
||||
public interface IColorSampleProvider
|
||||
{
|
||||
public Type? ForegroundColors { get; }
|
||||
public Type? BackgroundColors { get; }
|
||||
}
|
||||
@@ -1,5 +1,4 @@
|
||||
using TerminalUI.Color;
|
||||
using TerminalUI.Models;
|
||||
|
||||
namespace FileTime.ConsoleUI.App;
|
||||
|
||||
@@ -10,4 +9,5 @@ public interface ITheme
|
||||
IColor? ElementColor { get; }
|
||||
IColor? ContainerColor { get; }
|
||||
IColor? MarkedItemColor { get; }
|
||||
IColor? SelectedTabBackgroundColor { get; }
|
||||
}
|
||||
@@ -4,5 +4,5 @@ namespace FileTime.ConsoleUI.App.KeyInputHandling;
|
||||
|
||||
public interface IKeyInputHandlerService
|
||||
{
|
||||
void HandleKeyInput(GeneralKeyEventArgs keyEvent);
|
||||
void HandleKeyInput(GeneralKeyEventArgs keyEvent, SpecialKeysStatus specialKeysStatus);
|
||||
}
|
||||
Reference in New Issue
Block a user