GraphicsPathIterator.jvm.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. //
  2. // System.Drawing.Drawing2D.GraphicsPathIterator.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // Duncan Mak ([email protected])
  7. // Ravindra ([email protected])
  8. //
  9. // Copyright (C) 2002/3 Ximian, Inc (http://www.ximian.com)
  10. //
  11. // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
  12. //
  13. // Permission is hereby granted, free of charge, to any person obtaining
  14. // a copy of this software and associated documentation files (the
  15. // "Software"), to deal in the Software without restriction, including
  16. // without limitation the rights to use, copy, modify, merge, publish,
  17. // distribute, sublicense, and/or sell copies of the Software, and to
  18. // permit persons to whom the Software is furnished to do so, subject to
  19. // the following conditions:
  20. //
  21. // The above copyright notice and this permission notice shall be
  22. // included in all copies or substantial portions of the Software.
  23. //
  24. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  28. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  29. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  30. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  31. //
  32. using System;
  33. using System.Drawing;
  34. namespace System.Drawing.Drawing2D
  35. {
  36. public sealed class GraphicsPathIterator : MarshalByRefObject, IDisposable
  37. {
  38. public GraphicsPathIterator (GraphicsPath path)
  39. {
  40. throw new NotImplementedException();
  41. }
  42. // Public Properites
  43. public int Count {
  44. get {
  45. throw new NotImplementedException();
  46. }
  47. }
  48. public int SubpathCount {
  49. get {
  50. throw new NotImplementedException();
  51. }
  52. }
  53. internal void Dispose (bool disposing)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. // Public Methods.
  58. public int CopyData (ref PointF [] points, ref byte [] types, int startIndex, int endIndex)
  59. {
  60. throw new NotImplementedException();
  61. }
  62. public void Dispose ()
  63. {
  64. throw new NotImplementedException();
  65. }
  66. ~GraphicsPathIterator ()
  67. {
  68. Dispose (false);
  69. }
  70. public int Enumerate (ref PointF [] points, ref byte [] types)
  71. {
  72. throw new NotImplementedException();
  73. }
  74. public bool HasCurve ()
  75. {
  76. throw new NotImplementedException();
  77. }
  78. public int NextMarker (GraphicsPath path)
  79. {
  80. throw new NotImplementedException();
  81. }
  82. public int NextMarker (out int startIndex, out int endIndex)
  83. {
  84. throw new NotImplementedException();
  85. }
  86. public int NextPathType (out byte pathType, out int startIndex, out int endIndex)
  87. {
  88. throw new NotImplementedException();
  89. }
  90. public int NextSubpath (GraphicsPath path, out bool isClosed)
  91. {
  92. throw new NotImplementedException();
  93. }
  94. public int NextSubpath (out int startIndex, out int endIndex, out bool isClosed)
  95. {
  96. throw new NotImplementedException();
  97. }
  98. public void Rewind ()
  99. {
  100. throw new NotImplementedException();
  101. }
  102. }
  103. }