-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtoolTips.cs
390 lines (346 loc) · 14.6 KB
/
toolTips.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// This is an independent project of an individual developer. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace ToolsGenGkode
{
/// <summary>
/// CustomizedToolTip to create tooltips with Image.
/// </summary>
internal class toolTips : ToolTip
{
#region Constants
private const int TOOLTIP_WIDTH = 200;
private const int TOOLTIP_HEIGHT = 60;
private const int BORDER_THICKNESS = 1;
private const int PADDING = 6;
private const int DEFAULT_IMAGE_WIDTH = 15;
#endregion
#region Fields
private static Color myBorderColor = Color.Red;
private static Font myFont = new Font("Arial", 8);
private StringFormat myTextFormat = new StringFormat();
private Rectangle myImageRectangle = new Rectangle();
private Rectangle myTextRectangle = new Rectangle();
private Rectangle myToolTipRectangle = new Rectangle();
private Brush myBackColorBrush = new SolidBrush(Color.LightYellow);
private Brush myTextBrush = new SolidBrush(Color.Black);
private Brush myBorderBrush = new SolidBrush(myBorderColor);
private Size mySize = new Size(TOOLTIP_WIDTH, TOOLTIP_HEIGHT);
private int myInternalImageWidth = DEFAULT_IMAGE_WIDTH;
private bool myAutoSize = true;
#endregion
#region Properties
/// <summary>
/// Gets or sets a value indicating whether the ToolTip is drawn by the operating
/// system or by code that you provide.
/// If true, the properties 'ToolTipIcon' and 'ToolTipTitle' will set to their default values
/// and the image will display in ToolTip otherwise only text will display.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets a value indicating whether the ToolTip is drawn by the operating system or by code that you provide. If true, the properties 'ToolTipIcon' and 'ToolTipTitle' will set to their default values and the image will display in ToolTip otherwise only text will display.")]
public new bool OwnerDraw
{
get
{
return base.OwnerDraw;
}
set
{
if (value)
{
this.ToolTipIcon = ToolTipIcon.None;
this.ToolTipTitle = string.Empty;
}
base.OwnerDraw = value;
}
}
/// <summary>
/// Gets or sets a value that defines the type of icon to be displayed alongside
/// the ToolTip text.
/// Cannot set if the property 'OwnerDraw' is true.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets a value that defines the type of icon to be displayed alongside the ToolTip text. Cannot set if the property 'OwnerDraw' is true.")]
public new ToolTipIcon ToolTipIcon
{
get
{
return base.ToolTipIcon;
}
set
{
if (!OwnerDraw)
{
base.ToolTipIcon = value;
}
}
}
/// <summary>
/// Gets or sets a title for the ToolTip window.
/// Cannot set if the property 'OwnerDraw' is true.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets a title for the ToolTip window. Cannot set if the property 'OwnerDraw' is true.")]
public new string ToolTipTitle
{
get
{
return base.ToolTipTitle;
}
set
{
if (!OwnerDraw)
{
base.ToolTipTitle = value;
}
}
}
/// <summary>
/// Gets or sets the background color for the ToolTip.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets the background color for the ToolTip.")]
public new Color BackColor
{
get
{
return base.BackColor;
}
set
{
base.BackColor = value;
Brush temp = myBackColorBrush;
myBackColorBrush = new SolidBrush(value);
temp.Dispose();
}
}
/// <summary>
/// Gets or sets the foreground color for the ToolTip.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets the foreground color for the ToolTip.")]
public new Color ForeColor
{
get
{
return base.ForeColor;
}
set
{
base.ForeColor = value;
Brush temp = myTextBrush;
myTextBrush = new SolidBrush(value);
temp.Dispose();
}
}
/// <summary>
/// Gets or sets a value that indicates whether the ToolTip resizes based on its text.
/// true if the ToolTip automatically resizes based on its text; otherwise, false. The default is true.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets a value that indicates whether the ToolTip resizes based on its text. true if the ToolTip automatically resizes based on its text; otherwise, false. The default is true.")]
public bool AutoSize
{
get { return myAutoSize; }
set
{
myAutoSize = value;
if (myAutoSize)
{
myTextFormat.Trimming = StringTrimming.None;
}
else
{
myTextFormat.Trimming = StringTrimming.EllipsisCharacter;
}
}
}
/// <summary>
/// Gets or sets the size of the ToolTip.
/// Valid only if the Property 'AutoSize' is false.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets the size of the ToolTip. Valid only if the Property 'AutoSize' is false.")]
public Size Size
{
get { return mySize; }
set
{
if (!myAutoSize)
{
mySize = value;
myToolTipRectangle.Size = mySize;
}
}
}
/// <summary>
/// Gets or sets the border color for the ToolTip.
/// </summary>
[CategoryAttribute("Custom Settings"), DescriptionAttribute(@"Gets or sets the border color for the ToolTip.")]
public Color BorderColor
{
get
{
return myBorderColor;
}
set
{
myBorderColor = value;
Brush temp = myBorderBrush;
myBorderBrush = new SolidBrush(value);
temp.Dispose();
}
}
#endregion
#region Constructor
/// <summary>
/// Constructor to create instance of CustomizedToolTip class that can display Thumbnails/Images in it.
/// </summary>
public toolTips()
{
try
{
this.OwnerDraw = true;
myTextFormat.FormatFlags = StringFormatFlags.LineLimit;
myTextFormat.Alignment = StringAlignment.Near;
myTextFormat.LineAlignment = StringAlignment.Center;
myTextFormat.Trimming = StringTrimming.None;
this.Popup += new PopupEventHandler(CustomizedToolTip_Popup);
this.Draw += new DrawToolTipEventHandler(CustomizedToolTip_Draw);
}
catch (Exception ex)
{
string logMessage = "Exception in CustomizedToolTip.CustomizedToolTip () " + ex.ToString();
Trace.TraceError(logMessage);
throw;
}
}
#endregion
#region Methods
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
try
{
//Dispose of the disposable objects.
try
{
if (disposing)
{
if (myFont != null)
{
myFont.Dispose();
}
if (myTextBrush != null)
{
myTextBrush.Dispose();
}
if (myBackColorBrush != null)
{
myBackColorBrush.Dispose();
}
if (myBorderBrush != null)
{
myBorderBrush.Dispose();
}
if (myTextFormat != null)
{
myTextFormat.Dispose();
}
}
}
finally
{
base.Dispose(disposing);
}
}
catch (Exception ex)
{
string logMessage = "Exception in CustomizedToolTip.Dispose (bool) " + ex.ToString();
Trace.TraceError(logMessage);
throw;
}
}
/// <summary>
/// CustomizedToolTip_Draw raised when tooltip is drawn.
/// </summary>
/// <param name="sender">sender</param>
/// <param name="e">e</param>
void CustomizedToolTip_Draw(object sender, DrawToolTipEventArgs e)
{
try
{
e.Graphics.CompositingQuality = CompositingQuality.HighQuality;
myToolTipRectangle.Size = e.Bounds.Size;
e.Graphics.FillRectangle(myBorderBrush, myToolTipRectangle);
myImageRectangle = Rectangle.Inflate(myToolTipRectangle, -BORDER_THICKNESS, -BORDER_THICKNESS);
e.Graphics.FillRectangle(myBackColorBrush, myImageRectangle);
Control parent = e.AssociatedControl;
Image toolTipImage = parent.Tag as Image;
if (toolTipImage != null)
{
myImageRectangle.Width = myInternalImageWidth;
myTextRectangle = new Rectangle(myImageRectangle.Right, myImageRectangle.Top,
(myToolTipRectangle.Width - myImageRectangle.Right - BORDER_THICKNESS), myImageRectangle.Height);
myTextRectangle.Location = new Point(myImageRectangle.Right, myImageRectangle.Top);
e.Graphics.FillRectangle(myBackColorBrush, myTextRectangle);
e.Graphics.DrawImage(toolTipImage, myImageRectangle);
e.Graphics.DrawString(e.ToolTipText, myFont, myTextBrush, myTextRectangle, myTextFormat);
}
else
{
e.Graphics.DrawString(e.ToolTipText, myFont, myTextBrush, myImageRectangle, myTextFormat);
}
}
catch (Exception ex)
{
string logMessage = "Exception in CustomizedToolTip.BlindHeaderToolTip_Draw (object, DrawToolTipEventArgs) " + ex.ToString();
Trace.TraceError(logMessage);
throw;
}
}
/// <summary>
/// CustomizedToolTip_Popup raised when tooltip pops up.
/// </summary>
/// <param name="sender">sender</param>
/// <param name="e">e</param>
void CustomizedToolTip_Popup(object sender, PopupEventArgs e)
{
try
{
if (OwnerDraw)
{
if (!myAutoSize)
{
e.ToolTipSize = mySize;
myInternalImageWidth = mySize.Height;
}
else
{
Size oldSize = e.ToolTipSize;
Control parent = e.AssociatedControl;
Image toolTipImage = parent.Tag as Image;
if (toolTipImage != null)
{
myInternalImageWidth = oldSize.Height;
oldSize.Width += myInternalImageWidth + PADDING;
}
else
{
oldSize.Width += PADDING;
}
e.ToolTipSize = oldSize;
}
}
}
catch (Exception ex)
{
string logMessage = "Exception in CustomizedToolTip.CustomizedToolTip_Popup (object, PopupEventArgs) " + ex.ToString();
Trace.TraceError(logMessage);
throw;
}
}
#endregion
}
}