Metafile.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // System.Drawing.Imaging.Metafile.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Christian Meyer
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. using System.IO;
  11. using System.Reflection;
  12. namespace System.Drawing.Imaging {
  13. public sealed class Metafile : Image {
  14. // constructors
  15. [MonoTODO]
  16. public Metafile (Stream stream) {
  17. throw new NotImplementedException ();
  18. }
  19. [MonoTODO]
  20. public Metafile (string filename) {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public Metafile (IntPtr henhmetafile, bool deleteEmf) {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public Metafile (IntPtr referenceHtc, EmfType emfType) {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public Metafile (IntPtr referenceHtc, Rectangle frameRect) {
  33. throw new NotImplementedException ();
  34. }
  35. [MonoTODO]
  36. public Metafile (IntPtr referenceHtc, RectangleF frameRect) {
  37. throw new NotImplementedException ();
  38. }
  39. //[MonoTODO]
  40. //public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader) {
  41. // throw new NotImplementedException ();
  42. //}
  43. [MonoTODO]
  44. public Metafile (Stream stream, IntPtr referenceHtc) {
  45. throw new NotImplementedException ();
  46. }
  47. [MonoTODO]
  48. public Metafile (String fileName, IntPtr referenceHtc) {
  49. throw new NotImplementedException ();
  50. }
  51. [MonoTODO]
  52. public Metafile (IntPtr referenceHdc, EmfType emfType, string description) {
  53. throw new NotImplementedException ();
  54. }
  55. [MonoTODO]
  56. public Metafile (IntPtr referenceHdc, Rectangle frameRect, MetafileFrameUnit frameUnit) {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. public Metafile (IntPtr referenceHdc, RectangleF frameRect, MetafileFrameUnit frameUnit) {
  61. throw new NotImplementedException ();
  62. }
  63. // [MonoTODO]
  64. // public Metafile (IntPtr hmetafile, WmfPlaceableFileHeader wmfHeader, bool deleteWmf) {
  65. // throw new NotImplementedException ();
  66. // }
  67. [MonoTODO]
  68. public Metafile (Stream stream, IntPtr referenceHdc, EmfType type) {
  69. throw new NotImplementedException ();
  70. }
  71. [MonoTODO]
  72. public Metafile (Stream stream, IntPtr referenceHdc, Rectangle frameRect) {
  73. throw new NotImplementedException ();
  74. }
  75. [MonoTODO]
  76. public Metafile (Stream stream, IntPtr referenceHdc, RectangleF frameRect) {
  77. throw new NotImplementedException ();
  78. }
  79. [MonoTODO]
  80. public Metafile (string fileName, IntPtr referenceHdc, EmfType type) {
  81. throw new NotImplementedException ();
  82. }
  83. [MonoTODO]
  84. public Metafile (string fileName, IntPtr referenceHdc, Rectangle frameRect) {
  85. throw new NotImplementedException ();
  86. }
  87. // methods
  88. // properties
  89. }
  90. }