diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-27 23:49:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-27 23:49:02 -0500 |
| commit | 83619ef25a64c9a82d8af992a6a02811b70ddadf (patch) | |
| tree | ee5828666157061abff08598e5d1b008da05b987 /MediaBrowser.Controller/Themes/IAppThemeManager.cs | |
| parent | 44e32d841bf715733ce3db45ee14c900b1f7790a (diff) | |
added app theme classes and service
Diffstat (limited to 'MediaBrowser.Controller/Themes/IAppThemeManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Themes/IAppThemeManager.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Themes/IAppThemeManager.cs b/MediaBrowser.Controller/Themes/IAppThemeManager.cs new file mode 100644 index 000000000..1a7c2aaab --- /dev/null +++ b/MediaBrowser.Controller/Themes/IAppThemeManager.cs @@ -0,0 +1,38 @@ +using MediaBrowser.Model.Themes; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Themes +{ + public interface IAppThemeManager + { + /// <summary> + /// Gets the themes. + /// </summary> + /// <param name="applicationName">Name of the application.</param> + /// <returns>IEnumerable{AppThemeInfo}.</returns> + IEnumerable<AppThemeInfo> GetThemes(string applicationName); + + /// <summary> + /// Gets the theme. + /// </summary> + /// <param name="applicationName">Name of the application.</param> + /// <param name="name">The name.</param> + /// <returns>AppTheme.</returns> + AppTheme GetTheme(string applicationName, string name); + + /// <summary> + /// Saves the theme. + /// </summary> + /// <param name="theme">The theme.</param> + void SaveTheme(AppTheme theme); + + /// <summary> + /// Gets the image image information. + /// </summary> + /// <param name="applicationName">Name of the application.</param> + /// <param name="themeName">Name of the theme.</param> + /// <param name="imageName">Name of the image.</param> + /// <returns>InternalThemeImage.</returns> + InternalThemeImage GetImageImageInfo(string applicationName, string themeName, string imageName); + } +} |
