mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Added a centralised ProfileEditorSurface for communication between VMs Prefixed Surface, Device and Led with Artemis to differentiate them better
22 lines
742 B
C#
22 lines
742 B
C#
using System;
|
|
using Artemis.Core.Models.Profile;
|
|
using Artemis.Core.Models.Profile.Abstract;
|
|
|
|
namespace Artemis.UI.Services.Interfaces
|
|
{
|
|
public interface IProfileEditorService : IArtemisUIService
|
|
{
|
|
Profile SelectedProfile { get; }
|
|
ProfileElement SelectedProfileElement { get; }
|
|
|
|
void ChangeSelectedProfile(Profile profile);
|
|
void UpdateSelectedProfile();
|
|
void ChangeSelectedProfileElement(ProfileElement profileElement);
|
|
void UpdateSelectedProfileElement();
|
|
|
|
event EventHandler SelectedProfileChanged;
|
|
event EventHandler SelectedProfileUpdated;
|
|
event EventHandler SelectedProfileElementChanged;
|
|
event EventHandler SelectedProfileElementUpdated;
|
|
}
|
|
} |