Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LocalizationExtenderProvider.cs « System.ComponentModel.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5be2cf0816d2b85820385448e48b171604eff847 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//
// System.ComponentModel.Design.LocalizationExtenderProvider
//
// Authors:
//      Martin Willemoes Hansen (mwh@sysrq.dk)
//
// (C) 2003 Martin Willemoes Hansen
//

using System.Globalization;

namespace System.ComponentModel.Design
{
	[ProvideProperty("Localizable", typeof(object))]
	[ProvideProperty("Language", typeof(object))]
	[ProvideProperty("LoadLanguage", typeof(object))]
	public class LocalizationExtenderProvider : IExtenderProvider, IDisposable
	{
		[MonoTODO]
		public LocalizationExtenderProvider (ISite serviceProvider,
						     IComponent baseComponent)
		{
		}

		[MonoTODO]
		public bool CanExtend (object o)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public void Dispose()
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		[Localizable (true)]
		[DesignOnly (true)]
		public CultureInfo GetLanguage (object o)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		[DesignOnly (true)]
		[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
		[Browsable (false)]
		public CultureInfo GetLoadLanguage (object o)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		[Localizable (true)]
		[DesignOnly (true)]
		public bool GetLocalizable (object o)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public void ResetLanguage (object o)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public void SetLanguage (object o, CultureInfo language)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public void SetLocalizable (object o, bool localizable)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public bool ShouldSerializeLanguage (object o)
		{
			throw new NotImplementedException();
		}
	}
}