(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / InputLanguage.cs
blob8b466c7ed48c5f958d30c5f4cf99973864f6b7b1
1 //
2 // System.Windows.Forms.InputLanguage.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
10 using System.Globalization;
11 namespace System.Windows.Forms {
13 // <summary>
14 // This is only a template. Nothing is implemented yet.
16 // </summary>
18 public sealed class InputLanguage {
21 // --- Public Properties
23 [MonoTODO]
24 public CultureInfo Culture {
25 get {
26 throw new NotImplementedException ();
29 [MonoTODO]
30 public static InputLanguage CurrentInputLanguage {
31 get {
32 throw new NotImplementedException ();
34 set {
35 throw new NotImplementedException ();
38 [MonoTODO]
39 public static InputLanguage DefaultInputLanguage {
40 get {
41 throw new NotImplementedException ();
44 [MonoTODO]
45 public IntPtr Handle {
46 get {
47 throw new NotImplementedException ();
50 [MonoTODO]
51 public static InputLanguageCollection InstalledInputLanguages {
52 get {
53 throw new NotImplementedException ();
56 [MonoTODO]
57 public string LayoutName {
58 get {
59 throw new NotImplementedException ();
64 // --- Public Methods
66 [MonoTODO]
67 public override bool Equals(object o)
69 throw new NotImplementedException ();
71 //public static bool Equals(object o1, object o2)
72 //{
73 // throw new NotImplementedException ();
74 //}
75 [MonoTODO]
76 public static InputLanguage FromCulture(CultureInfo culture)
78 throw new NotImplementedException ();
80 [MonoTODO]
81 public override int GetHashCode()
83 throw new NotImplementedException ();