LabelStyle.cs
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:5k
源码类别:

GIS编程

开发平台:

C#

  1. // Copyright 2005, 2006 - Morten Nielsen (www.iter.dk)
  2. //
  3. // This file is part of SharpMap.
  4. // SharpMap is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. // 
  9. // SharpMap is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU Lesser General Public License for more details.
  13. // You should have received a copy of the GNU Lesser General Public License
  14. // along with SharpMap; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace SharpMap.Styles
  20. {
  21. /// <summary>
  22. /// Defines a style used for rendering labels
  23. /// </summary>
  24. public class LabelStyle : Style
  25. {
  26. /// <summary>
  27. /// Initializes a new LabelStyle
  28. /// </summary>
  29. public LabelStyle()
  30. {
  31. _Font = new System.Drawing.Font("Times New Roman", 12f);
  32. _Offset = new System.Drawing.PointF(0, 0);
  33. _CollisionDetection = false;
  34. _CollisionBuffer = new System.Drawing.Size(0, 0);
  35. _ForeColor = System.Drawing.Color.Black;
  36. _HorisontalAlignment = HorizontalAlignmentEnum.Center;
  37. _VerticalAlignment = VerticalAlignmentEnum.Middle;
  38. }
  39. private System.Drawing.Font _Font;
  40. /// <summary>
  41. /// Label Font
  42. /// </summary>
  43. public System.Drawing.Font Font
  44. {
  45. get { return _Font; }
  46. set { _Font = value; }
  47. }
  48. private System.Drawing.Color _ForeColor;
  49. /// <summary>
  50. /// Font color
  51. /// </summary>
  52. public System.Drawing.Color ForeColor
  53. {
  54. get { return _ForeColor; }
  55. set { _ForeColor = value; }
  56. }
  57. private System.Drawing.Brush _BackColor;
  58. /// <summary>
  59. /// The background color of the label. Set to transparent brush or null if background isn't needed
  60. /// </summary>
  61. public System.Drawing.Brush BackColor
  62. {
  63. get { return _BackColor; }
  64. set { _BackColor = value; }
  65. }
  66. private System.Drawing.Pen _Halo;
  67. /// <summary>
  68. /// Creates a halo around the text
  69. /// </summary>
  70. public System.Drawing.Pen Halo
  71. {
  72. get { return _Halo; }
  73. set { _Halo = value; }
  74. }
  75. private System.Drawing.PointF _Offset;
  76. /// <summary>
  77. /// Specifies relative position of labels with respect to objects label point
  78. /// </summary>
  79. public System.Drawing.PointF Offset
  80. {
  81. get { return _Offset; }
  82. set { _Offset = value; }
  83. }
  84. private bool _CollisionDetection;
  85. /// <summary>
  86. /// Gets or sets whether Collision Detection is enabled for the labels.
  87. /// If set to true, label collision will be tested.
  88. /// </summary>
  89. public bool CollisionDetection
  90. {
  91. get { return _CollisionDetection; }
  92. set { _CollisionDetection = value; }
  93. }
  94. private System.Drawing.SizeF _CollisionBuffer;
  95. /// <summary>
  96. /// Distance around label where collision buffer is active
  97. /// </summary>
  98. public System.Drawing.SizeF CollisionBuffer
  99. {
  100. get { return _CollisionBuffer; }
  101. set { _CollisionBuffer = value; }
  102. }
  103. private HorizontalAlignmentEnum _HorisontalAlignment;
  104. private VerticalAlignmentEnum _VerticalAlignment;
  105. /// <summary>
  106. /// The horisontal alignment of the text in relation to the labelpoint
  107. /// </summary>
  108. public HorizontalAlignmentEnum HorizontalAlignment
  109. {
  110. get { return _HorisontalAlignment; }
  111. set { _HorisontalAlignment = value; }
  112. }
  113. /// <summary>
  114. /// The horisontal alignment of the text in relation to the labelpoint
  115. /// </summary>
  116. public VerticalAlignmentEnum VerticalAlignment
  117. {
  118. get { return _VerticalAlignment; }
  119. set { _VerticalAlignment = value; }
  120. }
  121. /// <summary>
  122. /// Label text alignment
  123. /// </summary>
  124. public enum HorizontalAlignmentEnum : short
  125. /// <summary>
  126. /// Left oriented
  127. /// </summary>
  128. Left = 0,
  129. /// <summary>
  130. /// Right oriented
  131. /// </summary>
  132. Right = 2,
  133. /// <summary>
  134. /// Centered
  135. /// </summary>
  136. Center = 1
  137. }
  138. /// <summary>
  139. /// Label text alignment
  140. /// </summary>
  141. public enum VerticalAlignmentEnum : short
  142. {
  143. /// <summary>
  144. /// Left oriented
  145. /// </summary>
  146. Bottom = 0,
  147. /// <summary>
  148. /// Right oriented
  149. /// </summary>
  150. Top = 2,
  151. /// <summary>
  152. /// Centered
  153. /// </summary>
  154. Middle = 1
  155. }
  156. }
  157. }