2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
2021-06-22 07:19:55 +00:00
|
|
|
|
using System.Collections.Generic;
|
2021-06-06 02:08:54 +00:00
|
|
|
|
using JetBrains.Annotations;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides access to skinnable elements.
|
|
|
|
|
/// </summary>
|
2019-04-25 08:36:17 +00:00
|
|
|
|
public interface ISkinSource : ISkin
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
event Action SourceChanged;
|
2021-06-06 02:08:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Find the first (if any) skin that can fulfill the lookup.
|
|
|
|
|
/// This should be used for cases where subsequent lookups (for related components) need to occur on the same skin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The skin to be used for subsequent lookups, or <c>null</c> if none is available.</returns>
|
|
|
|
|
[CanBeNull]
|
|
|
|
|
ISkin FindProvider(Func<ISkin, bool> lookupFunction);
|
2021-06-22 07:19:55 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieve all sources available for lookup, with highest priority source first.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IEnumerable<ISkin> AllSources { get; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|