forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGMapToolTip.cs
176 lines (146 loc) · 5.01 KB
/
GMapToolTip.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
namespace GMap.NET.WindowsForms
{
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Runtime.Serialization;
using System.Collections;
using System.Collections.Generic;
/// <summary>
/// GMap.NET marker
/// </summary>
[Serializable]
#if !PocketPC
public class GMapToolTip : ISerializable, IDisposable
#else
public class GMapToolTip: IDisposable
#endif
{
GMapMarker marker;
public GMapMarker Marker
{
get
{
return marker;
}
internal set
{
marker = value;
}
}
public Point Offset;
public static readonly StringFormat DefaultFormat = new StringFormat();
/// <summary>
/// string format
/// </summary>
[NonSerialized]
public readonly StringFormat Format = DefaultFormat;
#if !PocketPC
public static readonly Font DefaultFont = new Font(FontFamily.GenericSansSerif, 14, FontStyle.Bold, GraphicsUnit.Pixel);
#else
public static readonly Font DefaultFont = new Font(FontFamily.GenericSansSerif, 6, FontStyle.Bold);
#endif
/// <summary>
/// font
/// </summary>
[NonSerialized]
public Font Font = DefaultFont;
#if !PocketPC
public static readonly Pen DefaultStroke = new Pen(Color.FromArgb(140, Color.MidnightBlue));
#else
public static readonly Pen DefaultStroke = new Pen(Color.MidnightBlue);
#endif
/// <summary>
/// specifies how the outline is painted
/// </summary>
[NonSerialized]
public Pen Stroke = DefaultStroke;
#if !PocketPC
public static readonly Brush DefaultFill = new SolidBrush(Color.FromArgb(222, Color.AliceBlue));
#else
public static readonly Brush DefaultFill = new System.Drawing.SolidBrush(Color.AliceBlue);
#endif
/// <summary>
/// background color
/// </summary>
[NonSerialized]
public Brush Fill = DefaultFill;
public static readonly Brush DefaultForeground = new SolidBrush(Color.Navy);
/// <summary>
/// text foreground
/// </summary>
[NonSerialized]
public Brush Foreground = DefaultForeground;
/// <summary>
/// text padding
/// </summary>
public Size TextPadding = new Size(10, 10);
static GMapToolTip()
{
DefaultStroke.Width = 2;
#if !PocketPC
DefaultStroke.LineJoin = LineJoin.Round;
DefaultStroke.StartCap = LineCap.RoundAnchor;
#endif
#if !PocketPC
DefaultFormat.LineAlignment = StringAlignment.Center;
#endif
DefaultFormat.Alignment = StringAlignment.Center;
}
public GMapToolTip(GMapMarker marker)
{
this.Marker = marker;
this.Offset = new Point(14, -44);
}
public virtual void OnRender(IGraphics g)
{
System.Drawing.Size st = g.MeasureString(Marker.ToolTipText, Font).ToSize();
System.Drawing.Rectangle rect = new System.Drawing.Rectangle(Marker.ToolTipPosition.X, Marker.ToolTipPosition.Y - st.Height, st.Width + TextPadding.Width, st.Height + TextPadding.Height);
rect.Offset(Offset.X, Offset.Y);
g.DrawLine(Stroke, Marker.ToolTipPosition.X, Marker.ToolTipPosition.Y, rect.X, rect.Y + rect.Height / 2);
g.FillRectangle(Fill, rect);
g.DrawRectangle(Stroke, rect);
#if PocketPC
rect.Offset(0, (rect.Height - st.Height) / 2);
#endif
g.DrawString(Marker.ToolTipText, Font, Foreground, rect, Format);
}
#if !PocketPC
#region ISerializable Members
/// <summary>
/// Initializes a new instance of the <see cref="GMapToolTip"/> class.
/// </summary>
/// <param name="info">The info.</param>
/// <param name="context">The context.</param>
protected GMapToolTip(SerializationInfo info, StreamingContext context)
{
this.Offset = Extensions.GetStruct<Point>(info, "Offset", Point.Empty);
this.TextPadding = Extensions.GetStruct<Size>(info, "TextPadding", new Size(10, 10));
}
/// <summary>
/// Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
/// <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
/// <exception cref="T:System.Security.SecurityException">
/// The caller does not have the required permission.
/// </exception>
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
info.AddValue("Offset", this.Offset);
info.AddValue("TextPadding", this.TextPadding);
}
#endregion
#endif
#region IDisposable Members
bool disposed = false;
public void Dispose()
{
if(!disposed)
{
disposed = true;
}
}
#endregion
}
}