-
Notifications
You must be signed in to change notification settings - Fork 2
/
DetailedLineSymbolControl.cs
733 lines (653 loc) · 53.6 KB
/
DetailedLineSymbolControl.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
// ********************************************************************************************************
// Product Name: DotSpatial.Symbology.Forms.dll
// Description: The core assembly for the DotSpatial 6.0 distribution.
// ********************************************************************************************************
// The contents of this file are subject to the MIT License (MIT)
// you may not use this file except in compliance with the License. You may obtain a copy of the License at
// http://dotspatial.codeplex.com/license
//
// Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
// ANY KIND, either expressed or implied. See the License for the specific language governing rights and
// limitations under the License.
//
// The Original Code is DotSpatial.dll
//
// The Initial Developer of this Original Code is Ted Dunsford. Created 4/28/2009 4:21:06 PM
//
// Contributor(s): (Open source contributors should list themselves and their modifications here).
//
// ********************************************************************************************************
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace DotSpatial.Symbology.Forms
{
/// <summary>
/// DetailedLineSymbolDialog
/// </summary>
public partial class DetailedLineSymbolControl : UserControl
{
#region Events
/// <summary>
/// Fires an event indicating that changes should be applied.
/// </summary>
public event EventHandler ChangesApplied;
/// <summary>
/// Occurs when the user clicks the AddToCustomSymbols button
/// </summary>
public event EventHandler<LineSymbolizerEventArgs> AddToCustomSymbols;
#endregion
#region Private Variables
private bool _ignoreChanges;
private ILineSymbolizer _original;
private ILineSymbolizer _symbolizer;
#endregion
#region Constructors
/// <summary>
/// Creates a new instance of DetailedLineSymbolDialog
/// </summary>
public DetailedLineSymbolControl()
{
_original = new LineSymbolizer();
_symbolizer = new LineSymbolizer();
Configure();
}
/// <summary>
/// Creates a new Detailed Line Symbol Dialog that displays a copy of the original,
/// and when apply changes is pressed, will copy properties to the original.
/// </summary>
/// <param name="original">The current symbolizer being viewed on the map</param>
public DetailedLineSymbolControl(ILineSymbolizer original)
{
_original = original;
_symbolizer = original.Copy();
Configure();
}
/// <summary>
/// This constructor shows a different symbolizer in the view from what is currently loaded on the map.
/// If apply changes is clicked, the properties of the current symbolizer will be copied to the original.
/// </summary>
/// <param name="original">The symbolizer on the map</param>
/// <param name="displayed">The symbolizer that defines the form setup</param>
public DetailedLineSymbolControl(ILineSymbolizer original, ILineSymbolizer displayed)
{
_symbolizer = displayed;
_original = original;
Configure();
}
private void Configure()
{
InitializeComponent();
ccStrokes.Strokes = _symbolizer.Strokes;
ccStrokes.AddClicked += ccStrokes_AddClicked;
ccStrokes.SelectedItemChanged += ccStrokes_SelectedItemChanged;
ccStrokes.ListChanged += ccStrokes_ListChanged;
ccDecorations.AddClicked += ccDecorations_AddClicked;
ccDecorations.SelectedItemChanged += ccDecorations_SelectedItemChanged;
ccDecorations.ListChanged += ccDecorations_ListChanged;
lblPreview.Paint += lblPreview_Paint;
lblDecorationPreview.Paint += lblDecorationPreview_Paint;
dashControl1.PatternChanged += dashControl1_PatternChanged;
dblWidthCartographic.TextChanged += dblWidthCartographic_TextChanged;
cbColorCartographic.ColorChanged += cbColorCartographic_ColorChanged;
cbColorSimple.ColorChanged += cbColorSimple_ColorChanged;
cmbScaleMode.SelectedItem = _symbolizer.ScaleMode.ToString();
chkSmoothing.Checked = _symbolizer.Smoothing;
dblOffset.TextChanged += dblOffset_TextChanged;
dblStrokeOffset.TextChanged += dblStrokeOffset_TextChanged;
sldOpacitySimple.ValueChanged += sldOpacitySimple_ValueChanged;
sldOpacityCartographic.ValueChanged += sldOpacityCartographic_ValueChanged;
if (_symbolizer != null && _symbolizer.Strokes != null && _symbolizer.Strokes.Count > 0)
{
ccStrokes.SelectedStroke = _symbolizer.Strokes[0];
}
}
private void radLineJoin_ValueChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
if (ccStrokes.SelectedStroke == null) return;
IStroke stroke = ccStrokes.SelectedStroke;
ICartographicStroke cs = stroke as ICartographicStroke;
if (cs != null)
{
cs.JoinType = radLineJoin.Value;
}
UpdatePreview();
}
private void cbColorSimple_ColorChanged(object sender, EventArgs e)
{
SetColor(cbColorSimple.Color);
}
private void cbColorCartographic_ColorChanged(object sender, EventArgs e)
{
SetColor(cbColorCartographic.Color);
}
private void sldOpacityCartographic_ValueChanged(object sender, EventArgs e)
{
UpdateOpacity((float)sldOpacityCartographic.Value);
}
private void sldOpacitySimple_ValueChanged(object sender, EventArgs e)
{
UpdateOpacity((float)sldOpacitySimple.Value);
}
/// <summary>
/// Updates the opacity of the simple/cartographic stroke
/// </summary>
/// <param name="value">THe floating point value to use for the opacity, where 0 is transparent and 1 is opaque</param>
private void UpdateOpacity(float value)
{
if (_ignoreChanges) return;
IStroke stroke = ccStrokes.SelectedStroke;
if (stroke == null) return;
ISimpleStroke ss = stroke as ISimpleStroke;
if (ss != null)
{
if (ss.Opacity != value)
{
ss.Opacity = value;
cbColorSimple.Color = ss.Color;
cbColorCartographic.Color = ss.Color;
}
}
}
private void dblStrokeOffset_TextChanged(object sender, EventArgs e)
{
if (ccStrokes == null) return;
ICartographicStroke cs = ccStrokes.SelectedStroke as ICartographicStroke;
if (cs == null) return;
cs.Offset = (float)dblStrokeOffset.Value;
UpdatePreview();
}
private void dblOffset_TextChanged(object sender, EventArgs e)
{
if (ccDecorations.SelectedDecoration == null) return;
ccDecorations.SelectedDecoration.Offset = dblOffset.Value;
UpdatePreview();
}
private void lblDecorationPreview_Paint(object sender, PaintEventArgs e)
{
UpdateDecorationPreview(e.Graphics);
}
private void ccDecorations_ListChanged(object sender, EventArgs e)
{
UpdatePreview();
}
private void ccDecorations_SelectedItemChanged(object sender, EventArgs e)
{
if (ccDecorations.SelectedDecoration != null)
{
UpdateDecorationControls();
}
UpdatePreview();
}
private void ccDecorations_AddClicked(object sender, EventArgs e)
{
ICartographicStroke currentStroke = ccStrokes.SelectedStroke as ICartographicStroke;
if (currentStroke != null)
{
LineDecoration decoration = new LineDecoration();
currentStroke.Decorations.Add(decoration);
ccDecorations.RefreshList();
ccDecorations.SelectedDecoration = decoration;
}
}
private void dblWidthCartographic_TextChanged(object sender, EventArgs e)
{
UpdateWidth(dblWidthCartographic.Value);
}
private void LoadLineCaps()
{
Array names = Enum.GetValues(typeof(LineCap));
foreach (object name in names)
{
cmbEndCap.Items.Add(name);
cmbStartCap.Items.Add(name);
}
}
private void dashControl1_PatternChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
IStroke stroke = ccStrokes.SelectedStroke;
if (stroke == null) return;
ICartographicStroke cs = stroke as ICartographicStroke;
if (cs != null)
{
cs.DashStyle = DashStyle.Custom;
cs.DashPattern = dashControl1.GetDashPattern();
cs.DashButtons = dashControl1.DashButtons;
cs.CompoundButtons = dashControl1.CompoundButtons;
cs.CompoundArray = dashControl1.GetCompoundArray();
cs.Width = cs.CompoundButtons.Length;
}
UpdatePreview();
}
private void ccStrokes_ListChanged(object sender, EventArgs e)
{
UpdatePreview();
}
private void lblPreview_Paint(object sender, PaintEventArgs e)
{
UpdatePreview(e.Graphics);
}
#endregion
#region Methods
/// <summary>
/// Initializes the control by updating the symbolizer
/// </summary>
/// <param name="original"></param>
public void Initialize(ILineSymbolizer original)
{
_original = original;
_symbolizer = original.Copy();
ccStrokes.Strokes = _symbolizer.Strokes;
chkSmoothing.Checked = _symbolizer.Smoothing;
ccStrokes.RefreshList();
if (_symbolizer.Strokes.Count > 0)
{
ccStrokes.SelectedStroke = _symbolizer.Strokes[0];
}
UpdatePreview();
UpdateStrokeControls();
}
/// <summary>
/// When the stroke is changed, this updates the controls to match it.
/// </summary>
private void UpdateStrokeControls()
{
_ignoreChanges = true;
ICartographicStroke cs = ccStrokes.SelectedStroke as ICartographicStroke;
if (cs != null)
{
cmbStrokeType.SelectedItem = "Cartographic";
if (tabStrokeProperties.TabPages.Contains(tabSimple))
{
tabStrokeProperties.TabPages.Remove(tabSimple);
}
if (tabStrokeProperties.TabPages.Contains(tabCartographic) == false)
{
tabStrokeProperties.TabPages.Add(tabCartographic);
}
if (tabStrokeProperties.TabPages.Contains(tabDash) == false)
{
tabStrokeProperties.TabPages.Add(tabDash);
}
if (tabStrokeProperties.TabPages.Contains(tabDecoration) == false)
{
tabStrokeProperties.TabPages.Add(tabDecoration);
}
// Cartographic Tab Page
if (cmbStartCap.Items.Count == 0)
{
LoadLineCaps();
}
cmbStartCap.SelectedItem = cs.StartCap;
cmbEndCap.SelectedItem = cs.EndCap;
radLineJoin.Value = cs.JoinType;
dblStrokeOffset.Value = cs.Offset;
// Template Tab Page
dashControl1.SetPattern(cs);
dashControl1.Invalidate();
// Decoration Tab Page
ccDecorations.Decorations = cs.Decorations;
if (cs.Decorations != null && cs.Decorations.Count > 0)
{
ccDecorations.SelectedDecoration = cs.Decorations[0];
}
}
else
{
cmbStrokeType.SelectedItem = "Simple";
if (tabStrokeProperties.TabPages.Contains(tabDash))
{
tabStrokeProperties.TabPages.Remove(tabDash);
}
if (tabStrokeProperties.TabPages.Contains(tabCartographic))
{
tabStrokeProperties.TabPages.Remove(tabCartographic);
}
if (tabStrokeProperties.TabPages.Contains(tabDecoration))
{
tabStrokeProperties.TabPages.Remove(tabDecoration);
}
if (tabStrokeProperties.TabPages.Contains(tabSimple) == false)
{
tabStrokeProperties.TabPages.Add(tabSimple);
}
}
ISimpleStroke ss = ccStrokes.SelectedStroke as ISimpleStroke;
if (ss != null)
{
// Simple Tab Page
cbColorSimple.Color = ss.Color;
cbColorCartographic.Color = ss.Color;
dblWidthCartographic.Value = ss.Width;
dblWidth.Value = ss.Width;
cmbStrokeStyle.SelectedIndex = (int)ss.DashStyle;
sldOpacityCartographic.MaximumColor = Color.FromArgb(255, ss.Color.R, ss.Color.G, ss.Color.B);
sldOpacitySimple.MaximumColor = Color.FromArgb(255, ss.Color.R, ss.Color.G, ss.Color.B);
sldOpacitySimple.Value = ss.Opacity;
sldOpacityCartographic.Value = ss.Opacity;
sldOpacityCartographic.Invalidate();
sldOpacitySimple.Invalidate();
}
_ignoreChanges = false;
}
#endregion
#region Properties
/// <summary>
/// Gets the current (copied) symbolizer or initializes this control to work with the
/// specified symbolizer as the original.
/// </summary>
[Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ILineSymbolizer Symbolizer
{
get { return _symbolizer; }
set
{
if (value != null) Initialize(value);
}
}
#endregion
#region Protected Methods
/// <summary>
/// Forces the original to apply the changes to the new control
/// </summary>
public void ApplyChanges()
{
OnApplyChanges();
}
/// <summary>
/// Fires the AddtoCustomSymbols event
/// </summary>
protected virtual void OnAddToCustomSymbols()
{
AddToCustomSymbols(this, new LineSymbolizerEventArgs(_symbolizer));
}
/// <summary>
/// Fires the ChangesApplied event
/// </summary>
protected void OnApplyChanges()
{
_original.CopyProperties(_symbolizer);
if (ChangesApplied != null) ChangesApplied(this, EventArgs.Empty);
}
#endregion
#region Event Handlers
private void dblWidth_TextChanged(object sender, EventArgs e)
{
UpdateWidth(dblWidth.Value);
}
private void UpdateWidth(double value)
{
if (_ignoreChanges) return;
IStroke stroke = ccStrokes.SelectedStroke;
if (stroke == null) return;
ISimpleStroke ss = stroke as ISimpleStroke;
if (ss != null)
{
ss.Width = dblWidth.Value;
}
// only call if changed, or else we will create an infinite loop here
if (dblWidth.Value != value) dblWidth.Value = value;
if (dblWidthCartographic.Value != value) dblWidthCartographic.Value = value;
UpdatePreview();
}
private void SetColor(Color color)
{
if (_ignoreChanges) return;
IStroke stroke = ccStrokes.SelectedStroke;
if (stroke == null) return;
ISimpleStroke ss = stroke as ISimpleStroke;
if (ss != null)
{
ss.Color = color;
}
ICartographicStroke cs = stroke as ICartographicStroke;
if (cs != null)
{
dashControl1.LineColor = color;
}
// only call if changed, or we will create an infinite loop here
if (cbColorSimple.Color != color) cbColorSimple.Color = color;
if (cbColorCartographic.Color != color) cbColorCartographic.Color = color;
sldOpacityCartographic.MaximumColor = Color.FromArgb(255, color);
sldOpacitySimple.MaximumColor = Color.FromArgb(255, color);
sldOpacityCartographic.Invalidate();
sldOpacitySimple.Invalidate();
UpdatePreview();
}
private void ccStrokes_AddClicked(object sender, EventArgs e)
{
if (cmbStrokeType.SelectedItem.ToString() == "Simple")
{
_symbolizer.Strokes.Add(new SimpleStroke());
ccStrokes.RefreshList();
}
if (cmbStrokeType.SelectedItem.ToString() == "Cartographic")
{
_symbolizer.Strokes.Add(new CartographicStroke());
ccStrokes.RefreshList();
}
UpdatePreview();
}
private void ccStrokes_SelectedItemChanged(object sender, EventArgs e)
{
if (ccStrokes.SelectedStroke != null)
{
UpdateStrokeControls();
}
UpdatePreview();
}
private void UpdateDecorationControls()
{
_ignoreChanges = true;
ILineDecoration decoration = ccDecorations.SelectedDecoration;
if (decoration != null)
{
chkFlipAll.Checked = decoration.FlipAll;
chkFlipFirst.Checked = decoration.FlipFirst;
if (decoration.RotateWithLine)
{
radRotationWithLine.Checked = true;
}
else
{
radRotationFixed.Checked = true;
}
nudDecorationCount.Value = decoration.NumSymbols;
nudPercentualPosition.Value = decoration.PercentualPosition;
nudPercentualPosition.Visible = decoration.NumSymbols == 1;
lblPercentualPosition.Visible = decoration.NumSymbols == 1;
dblOffset.Value = decoration.Offset;
}
_ignoreChanges = false;
}
private void cmbStrokeType_SelectedIndexChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
int index = ccStrokes.Strokes.IndexOf(ccStrokes.SelectedStroke);
if (index == -1) return;
string strokeType = cmbStrokeType.SelectedItem.ToString();
if (strokeType == "Cartographic")
{
ICartographicStroke cs = new CartographicStroke();
ccStrokes.Strokes[index] = cs;
ccStrokes.RefreshList();
ccStrokes.SelectedStroke = cs;
//UpdateStrokeControls();
}
else if (strokeType == "Simple")
{
ISimpleStroke ss = new SimpleStroke();
ccStrokes.Strokes[index] = ss;
ccStrokes.RefreshList();
ccStrokes.SelectedStroke = ss;
// UpdateStrokeControls();
}
//UpdatePreview();
}
private void cmbScaleMode_SelectedIndexChanged(object sender, EventArgs e)
{
switch (cmbScaleMode.SelectedItem.ToString())
{
case "Simple": _symbolizer.ScaleMode = ScaleMode.Simple; break;
case "Geographic": _symbolizer.ScaleMode = ScaleMode.Geographic; break;
case "Symbolic": _symbolizer.ScaleMode = ScaleMode.Symbolic; break;
}
}
private void chkSmoothing_CheckedChanged(object sender, EventArgs e)
{
_symbolizer.Smoothing = chkSmoothing.Checked;
UpdatePreview();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
if (ccStrokes.SelectedStroke == null) return;
ISimpleStroke ss = ccStrokes.SelectedStroke as ISimpleStroke;
if (ss != null) ss.DashStyle = (DashStyle)cmbStrokeStyle.SelectedIndex;
UpdatePreview();
}
private void cmbStartCap_SelectedIndexChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
if (ccStrokes.SelectedStroke == null) return;
IStroke stroke = ccStrokes.SelectedStroke;
ICartographicStroke cs = stroke as ICartographicStroke;
if (cs != null && cmbStartCap.SelectedIndex != -1)
{
cs.StartCap = (LineCap)cmbStartCap.SelectedItem;
}
UpdatePreview();
}
private void cmbEndCap_SelectedIndexChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
if (ccStrokes.SelectedStroke == null) return;
IStroke stroke = ccStrokes.SelectedStroke;
ICartographicStroke cs = stroke as ICartographicStroke;
if (cs != null && cmbEndCap.SelectedIndex != -1)
{
cs.EndCap = (LineCap)cmbEndCap.SelectedItem;
}
UpdatePreview();
}
private void nudDecorationCount_ValueChanged(object sender, EventArgs e)
{
nudPercentualPosition.Visible = nudDecorationCount.Value == 1;
lblPercentualPosition.Visible = nudDecorationCount.Value == 1;
if (_ignoreChanges) return;
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.NumSymbols = (int)nudDecorationCount.Value;
}
UpdatePreview();
}
/// <summary>
/// Update the selected linedecoration: set the percentual position between line start and end of the single decoration.
/// </summary>
private void nudPercentualPosition_ValueChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.PercentualPosition = (int)nudPercentualPosition.Value;
}
UpdatePreview();
}
/// <summary>
/// Update the selected linedecoration: set whether all decorations should be flipped.
/// </summary>
private void chkFlipAll_CheckedChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.FlipAll = chkFlipAll.Checked;
}
UpdatePreview();
}
/// <summary>
/// Update the selected linedecoration: set whether the first decoration should be flipped.
/// </summary>
private void chkFlipFirst_CheckedChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.FlipFirst = chkFlipFirst.Checked;
}
UpdatePreview();
}
private void radRotationWithLine_CheckedChanged(object sender, EventArgs e)
{
if (_ignoreChanges) return;
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.RotateWithLine = radRotationWithLine.Checked;
}
UpdatePreview();
}
private void btnEdit_Click(object sender, EventArgs e)
{
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec == null) return;
DetailedPointSymbolDialog dpd = new DetailedPointSymbolDialog(dec.Symbol);
dpd.ChangesApplied += dpd_ChangesApplied;
dpd.ShowDialog();
}
private void dpd_ChangesApplied(object sender, EventArgs e)
{
UpdatePreview();
ccDecorations.Refresh();
lblDecorationPreview.Refresh();
}
private void btnAddToCustom_Click(object sender, EventArgs e)
{
OnAddToCustomSymbols();
}
#endregion
#region Private Functions
private void UpdatePreview()
{
Graphics g = lblPreview.CreateGraphics();
UpdatePreview(g);
g.Dispose();
ICartographicStroke cs = ccStrokes.SelectedStroke as ICartographicStroke;
if (cs != null)
{
g = lblDecorationPreview.CreateGraphics();
UpdateDecorationPreview(g);
g.Dispose();
}
}
private void UpdatePreview(Graphics g)
{
g.FillRectangle(Brushes.White, new Rectangle(0, 0, lblPreview.Width, lblPreview.Height));
GraphicsPath gp = new GraphicsPath();
gp.AddLine(10, lblPreview.Height / 2, lblPreview.Width - 20, lblPreview.Height / 2);
foreach (IStroke stroke in _symbolizer.Strokes)
{
stroke.DrawPath(g, gp, 1);
}
gp.Dispose();
ccStrokes.Refresh();
}
private void UpdateDecorationPreview(Graphics g)
{
ILineDecoration dec = ccDecorations.SelectedDecoration;
if (dec != null)
{
dec.Symbol.Draw(g, lblDecorationPreview.ClientRectangle);
}
}
#endregion
}
}