-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAGauge.cs
1560 lines (1412 loc) · 66.4 KB
/
AGauge.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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (C) 2007 A.J.Bauer
//
// This software is provided as-is, without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. if you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
//
// -----------------------------------------------------------------------------------
// Copyright (C) 2012 Code Artist
//
// Added several improvement to original code created by A.J.Bauer.
// Visit: http://codearteng.blogspot.com for more information on change history.
//
// -----------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Diagnostics;
using System.Collections;
namespace System.Windows.Forms
{
/// <summary>
/// <para>AGauge - Copyright (C) 2007 A.J.Bauer</para>
/// <link>http://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge</link>
/// </summary>
[ToolboxBitmapAttribute(typeof(AGauge), "AGauge.AGauge.bmp"),
DefaultEvent("ValueInRangeChanged"),
Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")]
public partial class AGauge : Control
{
#region Private Fields
private Single fontBoundY1;
private Single fontBoundY2;
private Bitmap gaugeBitmap;
private Boolean drawGaugeBackground = true;
private Single m_value;
private Point m_Center = new Point(100, 100);
private Single m_MinValue = -100;
private Single m_MaxValue = 400;
private Color m_BaseArcColor = Color.Gray;
private Int32 m_BaseArcRadius = 80;
private Int32 m_BaseArcStart = 135;
private Int32 m_BaseArcSweep = 270;
private Int32 m_BaseArcWidth = 2;
private Color m_ScaleLinesInterColor = Color.Black;
private Int32 m_ScaleLinesInterInnerRadius = 73;
private Int32 m_ScaleLinesInterOuterRadius = 80;
private Int32 m_ScaleLinesInterWidth = 1;
private Int32 m_ScaleLinesMinorTicks = 9;
private Color m_ScaleLinesMinorColor = Color.Gray;
private Int32 m_ScaleLinesMinorInnerRadius = 75;
private Int32 m_ScaleLinesMinorOuterRadius = 80;
private Int32 m_ScaleLinesMinorWidth = 1;
private Single m_ScaleLinesMajorStepValue = 50.0f;
private Color m_ScaleLinesMajorColor = Color.Black;
private Int32 m_ScaleLinesMajorInnerRadius = 70;
private Int32 m_ScaleLinesMajorOuterRadius = 80;
private Int32 m_ScaleLinesMajorWidth = 2;
private Int32 m_ScaleNumbersRadius = 95;
private Color m_ScaleNumbersColor = Color.Black;
private String m_ScaleNumbersFormat;
private Int32 m_ScaleNumbersStartScaleLine;
private Int32 m_ScaleNumbersStepScaleLines = 1;
private Int32 m_ScaleNumbersRotation;
private NeedleType m_NeedleType;
private Int32 m_NeedleRadius = 80;
private AGaugeNeedleColor m_NeedleColor1 = AGaugeNeedleColor.Gray;
private Color m_NeedleColor2 = Color.DimGray;
private Int32 m_NeedleWidth = 2;
#endregion
#region EventHandler
[Description("This event is raised when gauge value changed.")]
public event EventHandler ValueChanged;
private void OnValueChanged()
{
EventHandler e = ValueChanged;
if (e != null) e(this, null);
}
[Description("This event is raised if the value is entering or leaving defined range.")]
public event EventHandler<ValueInRangeChangedEventArgs> ValueInRangeChanged;
private void OnValueInRangeChanged(AGaugeRange range, Single value)
{
EventHandler<ValueInRangeChangedEventArgs> e = ValueInRangeChanged;
if (e != null) e(this, new ValueInRangeChangedEventArgs(range, value, range.InRange));
}
#endregion
#region Hidden and overridden inherited properties
public new Boolean AllowDrop { get { return false; } set { /*Do Nothing */ } }
public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } }
public new Boolean ForeColor { get { return false; } set { /*Do Nothing */ } }
public new Boolean ImeMode { get { return false; } set { /*Do Nothing */ } }
public override System.Drawing.Color BackColor
{
get { return base.BackColor; }
set
{
base.BackColor = value;
drawGaugeBackground = true;
Refresh();
}
}
public override System.Drawing.Font Font
{
get { return base.Font; }
set
{
base.Font = value;
drawGaugeBackground = true;
Refresh();
}
}
public override System.Windows.Forms.ImageLayout BackgroundImageLayout
{
get { return base.BackgroundImageLayout; }
set
{
base.BackgroundImageLayout = value;
drawGaugeBackground = true;
Refresh();
}
}
#endregion
public AGauge()
{
InitializeComponent();
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
_GaugeRanges = new AGaugeRangeCollection(this);
_GaugeLabels = new AGaugeLabelCollection(this);
//Default Values
Size = new Size(205, 180);
}
#region Properties
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("Gauge value.")]
public Single Value
{
get { return m_value; }
set
{
value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue);
if (m_value != value)
{
m_value = value;
OnValueChanged();
if (this.DesignMode) drawGaugeBackground = true;
foreach (AGaugeRange ptrRange in _GaugeRanges)
{
if ((m_value >= ptrRange.StartValue)
&& (m_value <= ptrRange.EndValue))
{
//Entering Range
if (!ptrRange.InRange)
{
ptrRange.InRange = true;
OnValueInRangeChanged(ptrRange, m_value);
}
}
else
{
//Leaving Range
if (ptrRange.InRange)
{
ptrRange.InRange = false;
OnValueInRangeChanged(ptrRange, m_value);
}
}
}
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("Gauge Ranges.")]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public AGaugeRangeCollection GaugeRanges { get { return _GaugeRanges; } }
private AGaugeRangeCollection _GaugeRanges;
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("Gauge Labels.")]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public AGaugeLabelCollection GaugeLabels { get { return _GaugeLabels; } }
private AGaugeLabelCollection _GaugeLabels;
#region << Gauge Base >>
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The center of the gauge (in the control's client area).")]
public Point Center
{
get { return m_Center; }
set
{
if (m_Center != value)
{
m_Center = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The color of the base arc.")]
public Color BaseArcColor
{
get { return m_BaseArcColor; }
set
{
if (m_BaseArcColor != value)
{
m_BaseArcColor = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The radius of the base arc.")]
public Int32 BaseArcRadius
{
get { return m_BaseArcRadius; }
set
{
if (m_BaseArcRadius != value)
{
m_BaseArcRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The start angle of the base arc.")]
public Int32 BaseArcStart
{
get { return m_BaseArcStart; }
set
{
if (m_BaseArcStart != value)
{
m_BaseArcStart = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The sweep angle of the base arc.")]
public Int32 BaseArcSweep
{
get { return m_BaseArcSweep; }
set
{
if (m_BaseArcSweep != value)
{
m_BaseArcSweep = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The width of the base arc.")]
public Int32 BaseArcWidth
{
get { return m_BaseArcWidth; }
set
{
if (m_BaseArcWidth != value)
{
m_BaseArcWidth = value;
drawGaugeBackground = true;
Refresh();
}
}
}
#endregion
#region << Gauge Scale >>
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The minimum value to show on the scale.")]
public Single MinValue
{
get { return m_MinValue; }
set
{
if ((m_MinValue != value) && (value < m_MaxValue))
{
m_MinValue = value;
m_value = Math.Min(Math.Max(m_value, m_MinValue), m_MaxValue);
m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue);
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The maximum value to show on the scale.")]
public Single MaxValue
{
get { return m_MaxValue; }
set
{
if ((m_MaxValue != value) && (value > m_MinValue))
{
m_MaxValue = value;
m_value= Math.Min(Math.Max(m_value, m_MinValue), m_MaxValue);
m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue);
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")]
public Color ScaleLinesInterColor
{
get { return m_ScaleLinesInterColor; }
set
{
if (m_ScaleLinesInterColor != value)
{
m_ScaleLinesInterColor = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")]
public Int32 ScaleLinesInterInnerRadius
{
get { return m_ScaleLinesInterInnerRadius; }
set
{
if (m_ScaleLinesInterInnerRadius != value)
{
m_ScaleLinesInterInnerRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")]
public Int32 ScaleLinesInterOuterRadius
{
get { return m_ScaleLinesInterOuterRadius; }
set
{
if (m_ScaleLinesInterOuterRadius != value)
{
m_ScaleLinesInterOuterRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")]
public Int32 ScaleLinesInterWidth
{
get { return m_ScaleLinesInterWidth; }
set
{
if (m_ScaleLinesInterWidth != value)
{
m_ScaleLinesInterWidth = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The number of minor scale lines.")]
public Int32 ScaleLinesMinorTicks
{
get { return m_ScaleLinesMinorTicks; }
set
{
if (m_ScaleLinesMinorTicks != value)
{
m_ScaleLinesMinorTicks = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The color of the minor scale lines.")]
public Color ScaleLinesMinorColor
{
get { return m_ScaleLinesMinorColor; }
set
{
if (m_ScaleLinesMinorColor != value)
{
m_ScaleLinesMinorColor = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The inner radius of the minor scale lines.")]
public Int32 ScaleLinesMinorInnerRadius
{
get { return m_ScaleLinesMinorInnerRadius; }
set
{
if (m_ScaleLinesMinorInnerRadius != value)
{
m_ScaleLinesMinorInnerRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The outer radius of the minor scale lines.")]
public Int32 ScaleLinesMinorOuterRadius
{
get { return m_ScaleLinesMinorOuterRadius; }
set
{
if (m_ScaleLinesMinorOuterRadius != value)
{
m_ScaleLinesMinorOuterRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The width of the minor scale lines.")]
public Int32 ScaleLinesMinorWidth
{
get { return m_ScaleLinesMinorWidth; }
set
{
if (m_ScaleLinesMinorWidth != value)
{
m_ScaleLinesMinorWidth = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The step value of the major scale lines.")]
public Single ScaleLinesMajorStepValue
{
get { return m_ScaleLinesMajorStepValue; }
set
{
if ((m_ScaleLinesMajorStepValue != value) && (value > 0))
{
m_ScaleLinesMajorStepValue = Math.Min(value, m_MaxValue - m_MinValue);
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The color of the major scale lines.")]
public Color ScaleLinesMajorColor
{
get { return m_ScaleLinesMajorColor; }
set
{
if (m_ScaleLinesMajorColor != value)
{
m_ScaleLinesMajorColor = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The inner radius of the major scale lines.")]
public Int32 ScaleLinesMajorInnerRadius
{
get { return m_ScaleLinesMajorInnerRadius; }
set
{
if (m_ScaleLinesMajorInnerRadius != value)
{
m_ScaleLinesMajorInnerRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The outer radius of the major scale lines.")]
public Int32 ScaleLinesMajorOuterRadius
{
get { return m_ScaleLinesMajorOuterRadius; }
set
{
if (m_ScaleLinesMajorOuterRadius != value)
{
m_ScaleLinesMajorOuterRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The width of the major scale lines.")]
public Int32 ScaleLinesMajorWidth
{
get { return m_ScaleLinesMajorWidth; }
set
{
if (m_ScaleLinesMajorWidth != value)
{
m_ScaleLinesMajorWidth = value;
drawGaugeBackground = true;
Refresh();
}
}
}
#endregion
#region << Gauge Scale Numbers >>
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The radius of the scale numbers.")]
public Int32 ScaleNumbersRadius
{
get { return m_ScaleNumbersRadius; }
set
{
if (m_ScaleNumbersRadius != value)
{
m_ScaleNumbersRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The color of the scale numbers.")]
public Color ScaleNumbersColor
{
get { return m_ScaleNumbersColor; }
set
{
if (m_ScaleNumbersColor != value)
{
m_ScaleNumbersColor = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The format of the scale numbers.")]
public String ScaleNumbersFormat
{
get { return m_ScaleNumbersFormat; }
set
{
if (m_ScaleNumbersFormat != value)
{
m_ScaleNumbersFormat = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The number of the scale line to start writing numbers next to.")]
public Int32 ScaleNumbersStartScaleLine
{
get { return m_ScaleNumbersStartScaleLine; }
set
{
if (m_ScaleNumbersStartScaleLine != value)
{
m_ScaleNumbersStartScaleLine = Math.Max(value, 1);
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The number of scale line steps for writing numbers.")]
public Int32 ScaleNumbersStepScaleLines
{
get { return m_ScaleNumbersStepScaleLines; }
set
{
if (m_ScaleNumbersStepScaleLines != value)
{
m_ScaleNumbersStepScaleLines = Math.Max(value, 1);
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")]
public Int32 ScaleNumbersRotation
{
get { return m_ScaleNumbersRotation; }
set
{
if (m_ScaleNumbersRotation != value)
{
m_ScaleNumbersRotation = value;
drawGaugeBackground = true;
Refresh();
}
}
}
#endregion
#region << Gauge Needle >>
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")]
public NeedleType NeedleType
{
get { return m_NeedleType; }
set
{
if (m_NeedleType != value)
{
m_NeedleType = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The radius of the needle.")]
public Int32 NeedleRadius
{
get { return m_NeedleRadius; }
set
{
if (m_NeedleRadius != value)
{
m_NeedleRadius = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The first color of the needle.")]
public AGaugeNeedleColor NeedleColor1
{
get { return m_NeedleColor1; }
set
{
if (m_NeedleColor1 != value)
{
m_NeedleColor1 = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The second color of the needle.")]
public Color NeedleColor2
{
get { return m_NeedleColor2; }
set
{
if (m_NeedleColor2 != value)
{
m_NeedleColor2 = value;
drawGaugeBackground = true;
Refresh();
}
}
}
[System.ComponentModel.Browsable(true),
System.ComponentModel.Category("AGauge"),
System.ComponentModel.Description("The width of the needle.")]
public Int32 NeedleWidth
{
get { return m_NeedleWidth; }
set
{
if (m_NeedleWidth != value)
{
m_NeedleWidth = value;
drawGaugeBackground = true;
Refresh();
}
}
}
#endregion
#endregion
#region Helper
private void FindFontBounds()
{
//find upper and lower bounds for numeric characters
Int32 c1;
Int32 c2;
Boolean boundfound;
Bitmap b;
Graphics g;
SolidBrush backBrush = new SolidBrush(Color.White);
SolidBrush foreBrush = new SolidBrush(Color.Black);
SizeF boundingBox;
b = new Bitmap(5, 5);
g = Graphics.FromImage(b);
boundingBox = g.MeasureString("0123456789", Font, -1, StringFormat.GenericTypographic);
b = new Bitmap((Int32)(boundingBox.Width), (Int32)(boundingBox.Height));
g = Graphics.FromImage(b);
g.FillRectangle(backBrush, 0.0F, 0.0F, boundingBox.Width, boundingBox.Height);
g.DrawString("0123456789", Font, foreBrush, 0.0F, 0.0F, StringFormat.GenericTypographic);
fontBoundY1 = 0;
fontBoundY2 = 0;
c1 = 0;
boundfound = false;
while ((c1 < b.Height) && (!boundfound))
{
c2 = 0;
while ((c2 < b.Width) && (!boundfound))
{
if (b.GetPixel(c2, c1) != backBrush.Color)
{
fontBoundY1 = c1;
boundfound = true;
}
c2++;
}
c1++;
}
c1 = b.Height - 1;
boundfound = false;
while ((0 < c1) && (!boundfound))
{
c2 = 0;
while ((c2 < b.Width) && (!boundfound))
{
if (b.GetPixel(c2, c1) != backBrush.Color)
{
fontBoundY2 = c1;
boundfound = true;
}
c2++;
}
c1--;
}
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public void RepaintControl()
{
drawGaugeBackground = true;
Refresh();
}
#endregion
#region Base member overrides
protected override void OnPaintBackground(PaintEventArgs pevent)
{
}
protected override void OnPaint(PaintEventArgs e)
{
if ((Width < 10) || (Height < 10))
{
return;
}
if (drawGaugeBackground)
{
drawGaugeBackground = false;
FindFontBounds();
gaugeBitmap = new Bitmap(Width, Height, e.Graphics);
Graphics ggr = Graphics.FromImage(gaugeBitmap);
ggr.FillRectangle(new SolidBrush(BackColor), ClientRectangle);
if (BackgroundImage != null)
{
switch (BackgroundImageLayout)
{
case ImageLayout.Center:
ggr.DrawImageUnscaled(BackgroundImage, Width / 2 - BackgroundImage.Width / 2, Height / 2 - BackgroundImage.Height / 2);
break;
case ImageLayout.None:
ggr.DrawImageUnscaled(BackgroundImage, 0, 0);
break;
case ImageLayout.Stretch:
ggr.DrawImage(BackgroundImage, 0, 0, Width, Height);
break;
case ImageLayout.Tile:
Int32 pixelOffsetX = 0;
Int32 pixelOffsetY = 0;
while (pixelOffsetX < Width)
{
pixelOffsetY = 0;
while (pixelOffsetY < Height)
{
ggr.DrawImageUnscaled(BackgroundImage, pixelOffsetX, pixelOffsetY);
pixelOffsetY += BackgroundImage.Height;
}
pixelOffsetX += BackgroundImage.Width;
}
break;
case ImageLayout.Zoom:
if ((Single)(BackgroundImage.Width / Width) < (Single)(BackgroundImage.Height / Height))
{
ggr.DrawImage(BackgroundImage, 0, 0, Height, Height);
}
else
{
ggr.DrawImage(BackgroundImage, 0, 0, Width, Width);
}
break;
}
}
ggr.SmoothingMode = SmoothingMode.HighQuality;
ggr.PixelOffsetMode = PixelOffsetMode.HighQuality;
GraphicsPath gp = new GraphicsPath();
Single rangeStartAngle;
Single rangeSweepAngle;
foreach (AGaugeRange ptrRange in _GaugeRanges)
{
if (ptrRange.EndValue > ptrRange.StartValue)
{
rangeStartAngle = m_BaseArcStart + (ptrRange.StartValue - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue);
rangeSweepAngle = (ptrRange.EndValue - ptrRange.StartValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue);
gp.Reset();
gp.AddPie(new Rectangle(m_Center.X - ptrRange.OuterRadius, m_Center.Y - ptrRange.OuterRadius,
2 * ptrRange.OuterRadius, 2 * ptrRange.OuterRadius), rangeStartAngle, rangeSweepAngle);
gp.Reverse();
gp.AddPie(new Rectangle(m_Center.X - ptrRange.InnerRadius, m_Center.Y - ptrRange.InnerRadius,
2 * ptrRange.InnerRadius, 2 * ptrRange.InnerRadius), rangeStartAngle, rangeSweepAngle);
gp.Reverse();
ggr.SetClip(gp);
ggr.FillPie(new SolidBrush(ptrRange.Color), new Rectangle(m_Center.X - ptrRange.OuterRadius, m_Center.Y - ptrRange.OuterRadius, 2 * ptrRange.OuterRadius, 2 * ptrRange.OuterRadius), rangeStartAngle, rangeSweepAngle);
}
}
ggr.SetClip(ClientRectangle);
if (m_BaseArcRadius > 0)
{
ggr.DrawArc(new Pen(m_BaseArcColor, m_BaseArcWidth), new Rectangle(m_Center.X - m_BaseArcRadius, m_Center.Y - m_BaseArcRadius, 2 * m_BaseArcRadius, 2 * m_BaseArcRadius), m_BaseArcStart, m_BaseArcSweep);
}
String valueText = "";
SizeF boundingBox;
Single countValue = 0;
Int32 counter1 = 0;
while (countValue <= (m_MaxValue - m_MinValue))
{
valueText = (m_MinValue + countValue).ToString(m_ScaleNumbersFormat);
ggr.ResetTransform();
boundingBox = ggr.MeasureString(valueText, Font, -1, StringFormat.GenericTypographic);
gp.Reset();
gp.AddEllipse(new Rectangle(m_Center.X - m_ScaleLinesMajorOuterRadius, m_Center.Y - m_ScaleLinesMajorOuterRadius, 2 * m_ScaleLinesMajorOuterRadius, 2 * m_ScaleLinesMajorOuterRadius));
gp.Reverse();
gp.AddEllipse(new Rectangle(m_Center.X - m_ScaleLinesMajorInnerRadius, m_Center.Y - m_ScaleLinesMajorInnerRadius, 2 * m_ScaleLinesMajorInnerRadius, 2 * m_ScaleLinesMajorInnerRadius));
gp.Reverse();
ggr.SetClip(gp);
ggr.DrawLine(new Pen(m_ScaleLinesMajorColor, m_ScaleLinesMajorWidth),
(Single)(Center.X),
(Single)(Center.Y),
(Single)(Center.X + 2 * m_ScaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)),
(Single)(Center.Y + 2 * m_ScaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)));
gp.Reset();
gp.AddEllipse(new Rectangle(m_Center.X - m_ScaleLinesMinorOuterRadius, m_Center.Y - m_ScaleLinesMinorOuterRadius, 2 * m_ScaleLinesMinorOuterRadius, 2 * m_ScaleLinesMinorOuterRadius));
gp.Reverse();
gp.AddEllipse(new Rectangle(m_Center.X - m_ScaleLinesMinorInnerRadius, m_Center.Y - m_ScaleLinesMinorInnerRadius, 2 * m_ScaleLinesMinorInnerRadius, 2 * m_ScaleLinesMinorInnerRadius));
gp.Reverse();
ggr.SetClip(gp);