2
0

CustomLineCap.jvm.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. //
  2. // System.Drawing.Drawing2D.CustomLineCap.cs
  3. //
  4. // Authors:
  5. // Dennis Hayes ([email protected])
  6. // Andreas Nahr ([email protected])
  7. // Ravindra ([email protected])
  8. //
  9. // Copyright (C) 2002/3 Ximian, Inc. http://www.ximian.com
  10. // Copyright (C) 2004 Novell, Inc. http://www.novell.com
  11. //
  12. //
  13. // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
  14. //
  15. // Permission is hereby granted, free of charge, to any person obtaining
  16. // a copy of this software and associated documentation files (the
  17. // "Software"), to deal in the Software without restriction, including
  18. // without limitation the rights to use, copy, modify, merge, publish,
  19. // distribute, sublicense, and/or sell copies of the Software, and to
  20. // permit persons to whom the Software is furnished to do so, subject to
  21. // the following conditions:
  22. //
  23. // The above copyright notice and this permission notice shall be
  24. // included in all copies or substantial portions of the Software.
  25. //
  26. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  27. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  28. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  29. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  30. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  31. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  32. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  33. //
  34. using System;
  35. namespace System.Drawing.Drawing2D
  36. {
  37. /// <summary>
  38. /// Summary description for CustomLineCap.
  39. /// </summary>
  40. [MonoTODO]
  41. public class CustomLineCap : MarshalByRefObject, ICloneable
  42. {
  43. private bool disposed;
  44. // Constructors
  45. internal CustomLineCap () { }
  46. public CustomLineCap (GraphicsPath fillPath, GraphicsPath strokePath) : this (fillPath, strokePath, LineCap.Flat, 0)
  47. {
  48. }
  49. public CustomLineCap (GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap) : this (fillPath, strokePath, baseCap, 0)
  50. {
  51. }
  52. [MonoTODO]
  53. public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap, float baseInset)
  54. {
  55. throw new NotImplementedException();
  56. }
  57. [MonoTODO]
  58. public LineCap BaseCap {
  59. get {
  60. throw new NotImplementedException();
  61. }
  62. set {
  63. throw new NotImplementedException();
  64. }
  65. }
  66. [MonoTODO]
  67. public LineJoin StrokeJoin {
  68. get {
  69. throw new NotImplementedException();
  70. }
  71. set {
  72. throw new NotImplementedException();
  73. }
  74. }
  75. [MonoTODO]
  76. public float BaseInset {
  77. get {
  78. throw new NotImplementedException();
  79. }
  80. set {
  81. throw new NotImplementedException();
  82. }
  83. }
  84. [MonoTODO]
  85. public float WidthScale {
  86. get {
  87. throw new NotImplementedException();
  88. }
  89. set {
  90. throw new NotImplementedException();
  91. }
  92. }
  93. // Public Methods
  94. [MonoTODO]
  95. public virtual object Clone ()
  96. {
  97. throw new NotImplementedException();
  98. }
  99. [MonoTODO]
  100. public void GetStrokeCaps (out LineCap startCap, out LineCap endCap)
  101. {
  102. throw new NotImplementedException();
  103. }
  104. [MonoTODO]
  105. public void SetStrokeCaps(LineCap startCap, LineCap endCap)
  106. {
  107. throw new NotImplementedException();
  108. }
  109. }
  110. }