blob: bf6cb9c9193a2f6c15e3185b60e693357c964e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="IUserSettingService.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The User Setting Service Interace.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Services.Interfaces
{
using HandBrake.ApplicationServices.EventArgs;
/// <summary>
/// The setting event handler.
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The e.
/// </param>
public delegate void SettingEventHandler(object sender, SettingChangedEventArgs e);
/// <summary>
/// The User Setting Service Interace.
/// </summary>
public interface IUserSettingService
{
/// <summary>
/// The setting changed.
/// </summary>
event SettingEventHandler SettingChanged;
/// <summary>
/// Set the specified user setting.
/// </summary>
/// <param name="name">
/// Name of the property
/// </param>
/// <param name="value">
/// The value to store.
/// </param>
void SetUserSetting(string name, object value);
/// <summary>
/// Get user setting for a given key.
/// </summary>
/// <param name="name">
/// The name.
/// </param>
/// <typeparam name="T">
/// The Type of the setting
/// </typeparam>
/// <returns>
/// The user setting
/// </returns>
T GetUserSetting<T>(string name);
/// <summary>
/// Get an StringCollection type user setting
/// </summary>
/// <param name="name">
/// The setting name
/// </param>
/// <returns>
/// The settings value
/// </returns>
System.Collections.Specialized.StringCollection GetUserSettingStringCollection(string name);
}
}
|