InputLanguage.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //
  2. // System.Windows.Forms.InputLanguage.cs
  3. //
  4. // Author:
  5. // stubbed out by Daniel Carrera ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System.Globalization;
  11. namespace System.Windows.Forms {
  12. // <summary>
  13. // This is only a template. Nothing is implemented yet.
  14. //
  15. // </summary>
  16. public sealed class InputLanguage {
  17. //
  18. // --- Public Properties
  19. //
  20. [MonoTODO]
  21. public CultureInfo Culture {
  22. get {
  23. throw new NotImplementedException ();
  24. }
  25. }
  26. [MonoTODO]
  27. public static InputLanguage CurrentInputLanguage {
  28. get {
  29. throw new NotImplementedException ();
  30. }
  31. set {
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public static InputLanguage DefaultInputLanguage {
  37. get {
  38. throw new NotImplementedException ();
  39. }
  40. }
  41. [MonoTODO]
  42. public IntPtr Handle {
  43. get {
  44. throw new NotImplementedException ();
  45. }
  46. }
  47. [MonoTODO]
  48. public static InputLanguageCollection InstalledInputLanguages {
  49. get {
  50. throw new NotImplementedException ();
  51. }
  52. }
  53. [MonoTODO]
  54. public string LayoutName {
  55. get {
  56. throw new NotImplementedException ();
  57. }
  58. }
  59. //
  60. // --- Public Methods
  61. //
  62. [MonoTODO]
  63. public override bool Equals(object o)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. //public static bool Equals(object o1, object o2)
  68. //{
  69. // throw new NotImplementedException ();
  70. //}
  71. [MonoTODO]
  72. public static InputLanguage FromCulture(CultureInfo culture)
  73. {
  74. throw new NotImplementedException ();
  75. }
  76. [MonoTODO]
  77. public override int GetHashCode()
  78. {
  79. throw new NotImplementedException ();
  80. }
  81. }
  82. }