mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
40 lines
904 B
C#
40 lines
904 B
C#
using Artemis.Core.Services;
|
|
using Artemis.UI.Avalonia.Providers;
|
|
using Artemis.UI.Avalonia.Services.Interfaces;
|
|
|
|
namespace Artemis.UI.Avalonia.Services
|
|
{
|
|
public class RegistrationService : IRegistrationService
|
|
{
|
|
private readonly IInputService _inputService;
|
|
|
|
public RegistrationService(IInputService inputService)
|
|
{
|
|
_inputService = inputService;
|
|
}
|
|
public void RegisterBuiltInDataModelDisplays()
|
|
{
|
|
}
|
|
|
|
public void RegisterBuiltInDataModelInputs()
|
|
{
|
|
}
|
|
|
|
public void RegisterBuiltInPropertyEditors()
|
|
{
|
|
}
|
|
|
|
public void RegisterProviders()
|
|
{
|
|
_inputService.AddInputProvider(new AvaloniaInputProvider());
|
|
}
|
|
|
|
public void RegisterControllers()
|
|
{
|
|
}
|
|
|
|
public void ApplyPreferredGraphicsContext()
|
|
{
|
|
}
|
|
}
|
|
} |