2
0

CustomLineCap.jvm.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. public class CustomLineCap : MarshalByRefObject, ICloneable
  41. {
  42. private bool disposed;
  43. // Constructors
  44. internal CustomLineCap () { }
  45. public CustomLineCap (GraphicsPath fillPath, GraphicsPath strokePath) : this (fillPath, strokePath, LineCap.Flat, 0)
  46. {
  47. }
  48. public CustomLineCap (GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap) : this (fillPath, strokePath, baseCap, 0)
  49. {
  50. }
  51. public CustomLineCap(GraphicsPath fillPath, GraphicsPath strokePath, LineCap baseCap, float baseInset)
  52. {
  53. throw new NotImplementedException();
  54. }
  55. public LineCap BaseCap {
  56. get {
  57. throw new NotImplementedException();
  58. }
  59. set {
  60. throw new NotImplementedException();
  61. }
  62. }
  63. public LineJoin StrokeJoin {
  64. get {
  65. throw new NotImplementedException();
  66. }
  67. set {
  68. throw new NotImplementedException();
  69. }
  70. }
  71. public float BaseInset {
  72. get {
  73. throw new NotImplementedException();
  74. }
  75. set {
  76. throw new NotImplementedException();
  77. }
  78. }
  79. public float WidthScale {
  80. get {
  81. throw new NotImplementedException();
  82. }
  83. set {
  84. throw new NotImplementedException();
  85. }
  86. }
  87. // Public Methods
  88. public virtual object Clone ()
  89. {
  90. throw new NotImplementedException();
  91. }
  92. public void GetStrokeCaps (out LineCap startCap, out LineCap endCap)
  93. {
  94. throw new NotImplementedException();
  95. }
  96. public void SetStrokeCaps(LineCap startCap, LineCap endCap)
  97. {
  98. throw new NotImplementedException();
  99. }
  100. }
  101. }