-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeDomainScopePanel.Designer.cs
More file actions
851 lines (764 loc) · 47.5 KB
/
Copy pathTimeDomainScopePanel.Designer.cs
File metadata and controls
851 lines (764 loc) · 47.5 KB
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
namespace SDRSharp.TimeDomainScope
{
partial class ControlPanel
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (_refreshTimer != null)
{
_refreshTimer.Stop();
_refreshTimer.Dispose();
}
if (_frozenImage != null)
{
_frozenImage.Dispose();
}
if (components != null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
#region Component Designer generated code
private void InitializeComponent()
{
// ============================================
// STEP 1: CREATE ALL CONTROLS
// ============================================
// Main containers
this.mainSplitContainer = new System.Windows.Forms.SplitContainer();
this.topSplitContainer = new System.Windows.Forms.SplitContainer();
this.waveformPanel = new System.Windows.Forms.Panel();
this.filteredWaveformPanel = new System.Windows.Forms.Panel();
this.templatePanel = new System.Windows.Forms.Panel();
this.controlPanel = new System.Windows.Forms.Panel();
// Top controls
this.timeWindowLabel = new System.Windows.Forms.Label();
this.timeWindowTrackBar = new System.Windows.Forms.TrackBar();
this.timeWindowValueLabel = new System.Windows.Forms.Label();
this.clearButton = new System.Windows.Forms.Button();
this.displayModeLabel = new System.Windows.Forms.Label();
this.displayModeComboBox = new System.Windows.Forms.ComboBox();
this.freezeButton = new System.Windows.Forms.Button();
this.saveButton = new System.Windows.Forms.Button();
// Matched Filter controls
this.matchedFilterGroupBox = new System.Windows.Forms.GroupBox();
this.enableFilterCheckBox = new System.Windows.Forms.CheckBox();
this.pulseWidthLabel = new System.Windows.Forms.Label();
this.pulseWidthTextBox = new System.Windows.Forms.TextBox();
this.pulseWidthMsLabel = new System.Windows.Forms.Label();
this.filterDutyCycleLabel = new System.Windows.Forms.Label();
this.filterDutyCycleNumeric = new System.Windows.Forms.NumericUpDown();
this.filterDutyCyclePercentLabel = new System.Windows.Forms.Label();
this.filterPeriodLabel = new System.Windows.Forms.Label();
this.filterPeriodValueLabel = new System.Windows.Forms.Label();
this.filterCarrierWaveformLabel = new System.Windows.Forms.Label();
this.filterCarrierWaveformComboBox = new System.Windows.Forms.ComboBox();
this.carrierFreqLabel = new System.Windows.Forms.Label();
this.carrierFreqTextBox = new System.Windows.Forms.TextBox();
this.carrierFreqKhzLabel = new System.Windows.Forms.Label();
this.pulseShapeLabel = new System.Windows.Forms.Label();
this.pulseShapeComboBox = new System.Windows.Forms.ComboBox();
this.filterModeLabel = new System.Windows.Forms.Label();
this.filterModeComboBox = new System.Windows.Forms.ComboBox();
this.highQualityCheckBox = new System.Windows.Forms.CheckBox();
this.filterOokPatternCheckBox = new System.Windows.Forms.CheckBox();
this.showFilteredButton = new System.Windows.Forms.Button();
this.showTemplateButton = new System.Windows.Forms.Button();
// Signal Generator controls
this.signalGeneratorGroupBox = new System.Windows.Forms.GroupBox();
this.sourceLabel = new System.Windows.Forms.Label();
this.sourceComboBox = new System.Windows.Forms.ComboBox();
this.generatorFreqLabel = new System.Windows.Forms.Label();
this.generatorFreqNumeric = new System.Windows.Forms.NumericUpDown();
this.generatorFreqUnitLabel = new System.Windows.Forms.Label();
this.frequencyStatusLabel = new System.Windows.Forms.Label();
this.waveformTypeLabel = new System.Windows.Forms.Label();
this.waveformTypeComboBox = new System.Windows.Forms.ComboBox();
this.amplitudeLabel = new System.Windows.Forms.Label();
this.amplitudeTrackBar = new System.Windows.Forms.TrackBar();
this.amplitudeValueLabel = new System.Windows.Forms.Label();
this.ookEnableCheckBox = new System.Windows.Forms.CheckBox();
this.genPulseWidthLabel = new System.Windows.Forms.Label();
this.genPulseWidthNumeric = new System.Windows.Forms.NumericUpDown();
this.genPulseWidthUnitLabel = new System.Windows.Forms.Label();
this.dutyCycleLabel = new System.Windows.Forms.Label();
this.dutyCycleNumeric = new System.Windows.Forms.NumericUpDown();
this.dutyCycleUnitLabel = new System.Windows.Forms.Label();
this.pulsePeriodInfoLabel = new System.Windows.Forms.Label();
this.pulsePeriodValueLabel = new System.Windows.Forms.Label();
this.resetGeneratorButton = new System.Windows.Forms.Button();
// ============================================
// STEP 2: SUSPEND LAYOUTS
// ============================================
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).BeginInit();
this.mainSplitContainer.Panel1.SuspendLayout();
this.mainSplitContainer.Panel2.SuspendLayout();
this.mainSplitContainer.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.topSplitContainer)).BeginInit();
this.topSplitContainer.Panel1.SuspendLayout();
this.topSplitContainer.Panel2.SuspendLayout();
this.topSplitContainer.SuspendLayout();
this.controlPanel.SuspendLayout();
this.matchedFilterGroupBox.SuspendLayout();
this.signalGeneratorGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.timeWindowTrackBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.filterDutyCycleNumeric)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.generatorFreqNumeric)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.amplitudeTrackBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.genPulseWidthNumeric)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dutyCycleNumeric)).BeginInit();
this.SuspendLayout();
// ============================================
// STEP 3: CONFIGURE MAIN CONTAINERS
// ============================================
//
// mainSplitContainer
//
this.mainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.mainSplitContainer.Location = new System.Drawing.Point(0, 0);
this.mainSplitContainer.Name = "mainSplitContainer";
this.mainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
this.mainSplitContainer.Panel1.Controls.Add(this.topSplitContainer);
this.mainSplitContainer.Panel2.Controls.Add(this.templatePanel);
this.mainSplitContainer.Size = new System.Drawing.Size(700, 450);
this.mainSplitContainer.SplitterDistance = 320;
this.mainSplitContainer.TabIndex = 0;
//
// topSplitContainer
//
this.topSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.topSplitContainer.Location = new System.Drawing.Point(0, 0);
this.topSplitContainer.Name = "topSplitContainer";
this.topSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
this.topSplitContainer.Panel1.Controls.Add(this.waveformPanel);
this.topSplitContainer.Panel2.Controls.Add(this.filteredWaveformPanel);
this.topSplitContainer.Size = new System.Drawing.Size(700, 350);
this.topSplitContainer.SplitterDistance = 175;
this.topSplitContainer.TabIndex = 0;
//
// waveformPanel
//
this.waveformPanel.BackColor = System.Drawing.Color.Black;
this.waveformPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.waveformPanel.Name = "waveformPanel";
this.waveformPanel.TabIndex = 0;
this.waveformPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.waveformPanel_Paint);
//
// filteredWaveformPanel
//
this.filteredWaveformPanel.BackColor = System.Drawing.Color.Black;
this.filteredWaveformPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.filteredWaveformPanel.Name = "filteredWaveformPanel";
this.filteredWaveformPanel.TabIndex = 0;
this.filteredWaveformPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.filteredWaveformPanel_Paint);
//
// templatePanel
//
this.templatePanel.BackColor = System.Drawing.Color.Black;
this.templatePanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.templatePanel.Name = "templatePanel";
this.templatePanel.TabIndex = 0;
this.templatePanel.Paint += new System.Windows.Forms.PaintEventHandler(this.templatePanel_Paint);
//
// controlPanel
//
this.controlPanel.AutoScroll = true;
this.controlPanel.BackColor = System.Drawing.Color.FromArgb(30, 30, 30);
this.controlPanel.Controls.Add(this.signalGeneratorGroupBox);
this.controlPanel.Controls.Add(this.matchedFilterGroupBox);
this.controlPanel.Controls.Add(this.saveButton);
this.controlPanel.Controls.Add(this.freezeButton);
this.controlPanel.Controls.Add(this.displayModeComboBox);
this.controlPanel.Controls.Add(this.displayModeLabel);
this.controlPanel.Controls.Add(this.clearButton);
this.controlPanel.Controls.Add(this.timeWindowValueLabel);
this.controlPanel.Controls.Add(this.timeWindowTrackBar);
this.controlPanel.Controls.Add(this.timeWindowLabel);
this.controlPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
this.controlPanel.Location = new System.Drawing.Point(0, 450);
this.controlPanel.Name = "controlPanel";
this.controlPanel.Size = new System.Drawing.Size(700, 235);
this.controlPanel.TabIndex = 1;
// ============================================
// STEP 4: CONFIGURE TOP CONTROLS (ROW 1 & 2)
// ============================================
//
// timeWindowLabel
//
this.timeWindowLabel.AutoSize = true;
this.timeWindowLabel.ForeColor = System.Drawing.Color.White;
this.timeWindowLabel.Location = new System.Drawing.Point(5, 12);
this.timeWindowLabel.Name = "timeWindowLabel";
this.timeWindowLabel.Size = new System.Drawing.Size(80, 15);
this.timeWindowLabel.TabIndex = 0;
this.timeWindowLabel.Text = "Time Window:";
//
// timeWindowTrackBar
//
this.timeWindowTrackBar.Location = new System.Drawing.Point(90, 5);
this.timeWindowTrackBar.Maximum = 200;
this.timeWindowTrackBar.Minimum = 10;
this.timeWindowTrackBar.Name = "timeWindowTrackBar";
this.timeWindowTrackBar.Size = new System.Drawing.Size(120, 45);
this.timeWindowTrackBar.TabIndex = 1;
this.timeWindowTrackBar.TickFrequency = 10;
this.timeWindowTrackBar.Value = 50;
this.timeWindowTrackBar.Scroll += new System.EventHandler(this.timeWindowTrackBar_Scroll);
//
// timeWindowValueLabel
//
this.timeWindowValueLabel.AutoSize = true;
this.timeWindowValueLabel.ForeColor = System.Drawing.Color.Lime;
this.timeWindowValueLabel.Location = new System.Drawing.Point(215, 12);
this.timeWindowValueLabel.Name = "timeWindowValueLabel";
this.timeWindowValueLabel.Size = new System.Drawing.Size(40, 15);
this.timeWindowValueLabel.TabIndex = 2;
this.timeWindowValueLabel.Text = "50 ms";
//
// clearButton
//
this.clearButton.Location = new System.Drawing.Point(270, 8);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(60, 23);
this.clearButton.TabIndex = 3;
this.clearButton.Text = "Clear";
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// freezeButton
//
this.freezeButton.Location = new System.Drawing.Point(336, 8);
this.freezeButton.Name = "freezeButton";
this.freezeButton.Size = new System.Drawing.Size(70, 23);
this.freezeButton.TabIndex = 4;
this.freezeButton.Text = "Freeze";
this.freezeButton.Click += new System.EventHandler(this.freezeButton_Click);
//
// saveButton
//
this.saveButton.Enabled = false;
this.saveButton.Location = new System.Drawing.Point(412, 8);
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(80, 23);
this.saveButton.TabIndex = 5;
this.saveButton.Text = "Save Image";
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// displayModeLabel
//
this.displayModeLabel.AutoSize = true;
this.displayModeLabel.ForeColor = System.Drawing.Color.White;
this.displayModeLabel.Location = new System.Drawing.Point(5, 42);
this.displayModeLabel.Name = "displayModeLabel";
this.displayModeLabel.Size = new System.Drawing.Size(80, 15);
this.displayModeLabel.TabIndex = 6;
this.displayModeLabel.Text = "Display Mode:";
//
// displayModeComboBox
//
this.displayModeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.displayModeComboBox.FormattingEnabled = true;
this.displayModeComboBox.Items.AddRange(new object[] {
"I Component (Carrier)",
"Q Component (Carrier)",
"Envelope (Magnitude)",
"Both I & Q"});
this.displayModeComboBox.Location = new System.Drawing.Point(90, 39);
this.displayModeComboBox.Name = "displayModeComboBox";
this.displayModeComboBox.Size = new System.Drawing.Size(150, 23);
this.displayModeComboBox.TabIndex = 7;
this.displayModeComboBox.SelectedIndex = 0;
this.displayModeComboBox.SelectedIndexChanged += new System.EventHandler(this.displayModeComboBox_SelectedIndexChanged);
// ============================================
// STEP 5: MATCHED FILTER GROUP BOX
// ============================================
//
// matchedFilterGroupBox
//
this.matchedFilterGroupBox.Controls.Add(this.showTemplateButton);
this.matchedFilterGroupBox.Controls.Add(this.showFilteredButton);
this.matchedFilterGroupBox.Controls.Add(this.filterOokPatternCheckBox);
this.matchedFilterGroupBox.Controls.Add(this.highQualityCheckBox);
this.matchedFilterGroupBox.Controls.Add(this.filterModeComboBox);
this.matchedFilterGroupBox.Controls.Add(this.filterModeLabel);
this.matchedFilterGroupBox.Controls.Add(this.pulseShapeComboBox);
this.matchedFilterGroupBox.Controls.Add(this.pulseShapeLabel);
this.matchedFilterGroupBox.Controls.Add(this.carrierFreqKhzLabel);
this.matchedFilterGroupBox.Controls.Add(this.carrierFreqTextBox);
this.matchedFilterGroupBox.Controls.Add(this.carrierFreqLabel);
this.matchedFilterGroupBox.Controls.Add(this.filterCarrierWaveformComboBox);
this.matchedFilterGroupBox.Controls.Add(this.filterCarrierWaveformLabel);
this.matchedFilterGroupBox.Controls.Add(this.filterPeriodValueLabel);
this.matchedFilterGroupBox.Controls.Add(this.filterPeriodLabel);
this.matchedFilterGroupBox.Controls.Add(this.filterDutyCyclePercentLabel);
this.matchedFilterGroupBox.Controls.Add(this.filterDutyCycleNumeric);
this.matchedFilterGroupBox.Controls.Add(this.filterDutyCycleLabel);
this.matchedFilterGroupBox.Controls.Add(this.pulseWidthMsLabel);
this.matchedFilterGroupBox.Controls.Add(this.pulseWidthTextBox);
this.matchedFilterGroupBox.Controls.Add(this.pulseWidthLabel);
this.matchedFilterGroupBox.Controls.Add(this.enableFilterCheckBox);
this.matchedFilterGroupBox.ForeColor = System.Drawing.Color.White;
this.matchedFilterGroupBox.Location = new System.Drawing.Point(5, 68);
this.matchedFilterGroupBox.Name = "matchedFilterGroupBox";
this.matchedFilterGroupBox.Size = new System.Drawing.Size(690, 75);
this.matchedFilterGroupBox.TabIndex = 8;
this.matchedFilterGroupBox.TabStop = false;
this.matchedFilterGroupBox.Text = "Matched Filter";
// ROW 1: Enable, PW, Duty, Period
this.enableFilterCheckBox.AutoSize = true;
this.enableFilterCheckBox.Location = new System.Drawing.Point(10, 20);
this.enableFilterCheckBox.Name = "enableFilterCheckBox";
this.enableFilterCheckBox.Size = new System.Drawing.Size(61, 19);
this.enableFilterCheckBox.TabIndex = 0;
this.enableFilterCheckBox.Text = "Enable";
this.enableFilterCheckBox.CheckedChanged += new System.EventHandler(this.enableFilterCheckBox_CheckedChanged);
this.pulseWidthLabel.AutoSize = true;
this.pulseWidthLabel.Location = new System.Drawing.Point(80, 21);
this.pulseWidthLabel.Name = "pulseWidthLabel";
this.pulseWidthLabel.Size = new System.Drawing.Size(27, 15);
this.pulseWidthLabel.TabIndex = 1;
this.pulseWidthLabel.Text = "PW:";
this.pulseWidthTextBox.Location = new System.Drawing.Point(110, 18);
this.pulseWidthTextBox.Name = "pulseWidthTextBox";
this.pulseWidthTextBox.Size = new System.Drawing.Size(40, 23);
this.pulseWidthTextBox.TabIndex = 2;
this.pulseWidthTextBox.Text = "50";
this.pulseWidthTextBox.TextChanged += new System.EventHandler(this.pulseWidthTextBox_TextChanged);
this.pulseWidthMsLabel.AutoSize = true;
this.pulseWidthMsLabel.Location = new System.Drawing.Point(155, 21);
this.pulseWidthMsLabel.Name = "pulseWidthMsLabel";
this.pulseWidthMsLabel.Size = new System.Drawing.Size(22, 15);
this.pulseWidthMsLabel.TabIndex = 3;
this.pulseWidthMsLabel.Text = "ms";
this.filterDutyCycleLabel.AutoSize = true;
this.filterDutyCycleLabel.Location = new System.Drawing.Point(185, 21);
this.filterDutyCycleLabel.Name = "filterDutyCycleLabel";
this.filterDutyCycleLabel.Size = new System.Drawing.Size(35, 15);
this.filterDutyCycleLabel.TabIndex = 4;
this.filterDutyCycleLabel.Text = "Duty:";
this.filterDutyCycleNumeric.Location = new System.Drawing.Point(225, 18);
this.filterDutyCycleNumeric.Maximum = new decimal(new int[] { 99, 0, 0, 0 });
this.filterDutyCycleNumeric.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
this.filterDutyCycleNumeric.Name = "filterDutyCycleNumeric";
this.filterDutyCycleNumeric.Size = new System.Drawing.Size(50, 23);
this.filterDutyCycleNumeric.TabIndex = 5;
this.filterDutyCycleNumeric.Value = new decimal(new int[] { 50, 0, 0, 0 });
this.filterDutyCycleNumeric.ValueChanged += new System.EventHandler(this.filterDutyCycleNumeric_ValueChanged);
this.filterDutyCyclePercentLabel.AutoSize = true;
this.filterDutyCyclePercentLabel.Location = new System.Drawing.Point(280, 21);
this.filterDutyCyclePercentLabel.Name = "filterDutyCyclePercentLabel";
this.filterDutyCyclePercentLabel.Size = new System.Drawing.Size(15, 15);
this.filterDutyCyclePercentLabel.TabIndex = 6;
this.filterDutyCyclePercentLabel.Text = "%";
this.filterPeriodLabel.AutoSize = true;
this.filterPeriodLabel.ForeColor = System.Drawing.Color.LightGray;
this.filterPeriodLabel.Location = new System.Drawing.Point(305, 21);
this.filterPeriodLabel.Name = "filterPeriodLabel";
this.filterPeriodLabel.Size = new System.Drawing.Size(45, 15);
this.filterPeriodLabel.TabIndex = 7;
this.filterPeriodLabel.Text = "Period:";
this.filterPeriodValueLabel.AutoSize = true;
this.filterPeriodValueLabel.ForeColor = System.Drawing.Color.Cyan;
this.filterPeriodValueLabel.Location = new System.Drawing.Point(355, 21);
this.filterPeriodValueLabel.Name = "filterPeriodValueLabel";
this.filterPeriodValueLabel.Size = new System.Drawing.Size(90, 15);
this.filterPeriodValueLabel.TabIndex = 8;
this.filterPeriodValueLabel.Text = "100.0ms (10Hz)";
// ROW 2: Carrier, Freq, Envelope, Mode
this.filterCarrierWaveformLabel.AutoSize = true;
this.filterCarrierWaveformLabel.Location = new System.Drawing.Point(10, 48);
this.filterCarrierWaveformLabel.Name = "filterCarrierWaveformLabel";
this.filterCarrierWaveformLabel.Size = new System.Drawing.Size(48, 15);
this.filterCarrierWaveformLabel.TabIndex = 9;
this.filterCarrierWaveformLabel.Text = "Carrier:";
this.filterCarrierWaveformComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.filterCarrierWaveformComboBox.FormattingEnabled = true;
this.filterCarrierWaveformComboBox.Items.AddRange(new object[] {
"None (Envelope)",
"Sine",
"Square",
"Triangle",
"Sawtooth"});
this.filterCarrierWaveformComboBox.Location = new System.Drawing.Point(63, 45);
this.filterCarrierWaveformComboBox.Name = "filterCarrierWaveformComboBox";
this.filterCarrierWaveformComboBox.Size = new System.Drawing.Size(105, 23);
this.filterCarrierWaveformComboBox.TabIndex = 10;
this.filterCarrierWaveformComboBox.SelectedIndex = 0;
this.filterCarrierWaveformComboBox.SelectedIndexChanged += new System.EventHandler(this.filterCarrierWaveformComboBox_SelectedIndexChanged);
this.carrierFreqLabel.AutoSize = true;
this.carrierFreqLabel.Location = new System.Drawing.Point(175, 48);
this.carrierFreqLabel.Name = "carrierFreqLabel";
this.carrierFreqLabel.Size = new System.Drawing.Size(33, 15);
this.carrierFreqLabel.TabIndex = 11;
this.carrierFreqLabel.Text = "Freq:";
this.carrierFreqTextBox.Enabled = false;
this.carrierFreqTextBox.Location = new System.Drawing.Point(213, 45);
this.carrierFreqTextBox.Name = "carrierFreqTextBox";
this.carrierFreqTextBox.Size = new System.Drawing.Size(40, 23);
this.carrierFreqTextBox.TabIndex = 12;
this.carrierFreqTextBox.Text = "0";
this.carrierFreqTextBox.TextChanged += new System.EventHandler(this.carrierFreqTextBox_TextChanged);
this.carrierFreqKhzLabel.AutoSize = true;
this.carrierFreqKhzLabel.Location = new System.Drawing.Point(258, 48);
this.carrierFreqKhzLabel.Name = "carrierFreqKhzLabel";
this.carrierFreqKhzLabel.Size = new System.Drawing.Size(28, 15);
this.carrierFreqKhzLabel.TabIndex = 13;
this.carrierFreqKhzLabel.Text = "kHz";
this.pulseShapeLabel.AutoSize = true;
this.pulseShapeLabel.Location = new System.Drawing.Point(292, 48);
this.pulseShapeLabel.Name = "pulseShapeLabel";
this.pulseShapeLabel.Size = new System.Drawing.Size(60, 15);
this.pulseShapeLabel.TabIndex = 14;
this.pulseShapeLabel.Text = "Envelope:";
this.pulseShapeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.pulseShapeComboBox.FormattingEnabled = true;
this.pulseShapeComboBox.Items.AddRange(new object[] {
"Square",
"Raised Cosine",
"Gaussian"});
this.pulseShapeComboBox.Location = new System.Drawing.Point(358, 45);
this.pulseShapeComboBox.Name = "pulseShapeComboBox";
this.pulseShapeComboBox.Size = new System.Drawing.Size(105, 23);
this.pulseShapeComboBox.TabIndex = 15;
this.pulseShapeComboBox.SelectedIndex = 0;
this.pulseShapeComboBox.SelectedIndexChanged += new System.EventHandler(this.pulseShapeComboBox_SelectedIndexChanged);
this.filterModeLabel.AutoSize = true;
this.filterModeLabel.Location = new System.Drawing.Point(473, 48);
this.filterModeLabel.Name = "filterModeLabel";
this.filterModeLabel.Size = new System.Drawing.Size(41, 15);
this.filterModeLabel.TabIndex = 16;
this.filterModeLabel.Text = "Mode:";
this.filterModeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.filterModeComboBox.FormattingEnabled = true;
this.filterModeComboBox.Items.AddRange(new object[] {
"Filter Input Signal",
"Filter Envelope Only"});
this.filterModeComboBox.Location = new System.Drawing.Point(520, 45);
this.filterModeComboBox.Name = "filterModeComboBox";
this.filterModeComboBox.Size = new System.Drawing.Size(130, 23);
this.filterModeComboBox.TabIndex = 17;
this.filterModeComboBox.SelectedIndex = 1;
this.filterModeComboBox.SelectedIndexChanged += new System.EventHandler(this.filterModeComboBox_SelectedIndexChanged);
// ROW 3 (inline): HQ, OOK Pattern, F, T buttons
this.highQualityCheckBox.AutoSize = true;
this.highQualityCheckBox.Location = new System.Drawing.Point(475, 21);
this.highQualityCheckBox.Name = "highQualityCheckBox";
this.highQualityCheckBox.Size = new System.Drawing.Size(40, 19);
this.highQualityCheckBox.TabIndex = 18;
this.highQualityCheckBox.Text = "HQ";
this.highQualityCheckBox.CheckedChanged += new System.EventHandler(this.highQualityCheckBox_CheckedChanged);
this.filterOokPatternCheckBox.AutoSize = true;
this.filterOokPatternCheckBox.Location = new System.Drawing.Point(520, 21);
this.filterOokPatternCheckBox.Name = "filterOokPatternCheckBox";
this.filterOokPatternCheckBox.Size = new System.Drawing.Size(95, 19);
this.filterOokPatternCheckBox.TabIndex = 19;
this.filterOokPatternCheckBox.Text = "OOK Pattern";
this.filterOokPatternCheckBox.CheckedChanged += new System.EventHandler(this.filterOokPatternCheckBox_CheckedChanged);
this.showFilteredButton.Location = new System.Drawing.Point(620, 18);
this.showFilteredButton.Name = "showFilteredButton";
this.showFilteredButton.Size = new System.Drawing.Size(25, 23);
this.showFilteredButton.TabIndex = 20;
this.showFilteredButton.Text = "F";
this.showFilteredButton.Click += new System.EventHandler(this.showFilteredButton_Click);
this.showTemplateButton.Location = new System.Drawing.Point(650, 18);
this.showTemplateButton.Name = "showTemplateButton";
this.showTemplateButton.Size = new System.Drawing.Size(25, 23);
this.showTemplateButton.TabIndex = 21;
this.showTemplateButton.Text = "T";
this.showTemplateButton.Click += new System.EventHandler(this.showTemplateButton_Click);
// ============================================
// STEP 6: SIGNAL GENERATOR GROUP BOX
// ============================================
//
// signalGeneratorGroupBox
//
this.signalGeneratorGroupBox.Controls.Add(this.resetGeneratorButton);
this.signalGeneratorGroupBox.Controls.Add(this.pulsePeriodValueLabel);
this.signalGeneratorGroupBox.Controls.Add(this.pulsePeriodInfoLabel);
this.signalGeneratorGroupBox.Controls.Add(this.dutyCycleUnitLabel);
this.signalGeneratorGroupBox.Controls.Add(this.dutyCycleNumeric);
this.signalGeneratorGroupBox.Controls.Add(this.dutyCycleLabel);
this.signalGeneratorGroupBox.Controls.Add(this.genPulseWidthUnitLabel);
this.signalGeneratorGroupBox.Controls.Add(this.genPulseWidthNumeric);
this.signalGeneratorGroupBox.Controls.Add(this.genPulseWidthLabel);
this.signalGeneratorGroupBox.Controls.Add(this.ookEnableCheckBox);
this.signalGeneratorGroupBox.Controls.Add(this.amplitudeValueLabel);
this.signalGeneratorGroupBox.Controls.Add(this.amplitudeTrackBar);
this.signalGeneratorGroupBox.Controls.Add(this.amplitudeLabel);
this.signalGeneratorGroupBox.Controls.Add(this.waveformTypeComboBox);
this.signalGeneratorGroupBox.Controls.Add(this.waveformTypeLabel);
this.signalGeneratorGroupBox.Controls.Add(this.frequencyStatusLabel);
this.signalGeneratorGroupBox.Controls.Add(this.generatorFreqUnitLabel);
this.signalGeneratorGroupBox.Controls.Add(this.generatorFreqNumeric);
this.signalGeneratorGroupBox.Controls.Add(this.generatorFreqLabel);
this.signalGeneratorGroupBox.Controls.Add(this.sourceComboBox);
this.signalGeneratorGroupBox.Controls.Add(this.sourceLabel);
this.signalGeneratorGroupBox.ForeColor = System.Drawing.Color.White;
this.signalGeneratorGroupBox.Location = new System.Drawing.Point(5, 148);
this.signalGeneratorGroupBox.Name = "signalGeneratorGroupBox";
this.signalGeneratorGroupBox.Size = new System.Drawing.Size(690, 75);
this.signalGeneratorGroupBox.TabIndex = 9;
this.signalGeneratorGroupBox.TabStop = false;
this.signalGeneratorGroupBox.Text = "Signal Generator (Test Mode)";
// ROW 1: Source, Freq, Status, Type, Amp
this.sourceLabel.AutoSize = true;
this.sourceLabel.Location = new System.Drawing.Point(10, 22);
this.sourceLabel.Name = "sourceLabel";
this.sourceLabel.Size = new System.Drawing.Size(45, 15);
this.sourceLabel.TabIndex = 0;
this.sourceLabel.Text = "Source:";
this.sourceComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.sourceComboBox.FormattingEnabled = true;
this.sourceComboBox.Items.AddRange(new object[] { "SDR Input", "Signal Generator" });
this.sourceComboBox.Location = new System.Drawing.Point(55, 19);
this.sourceComboBox.Name = "sourceComboBox";
this.sourceComboBox.Size = new System.Drawing.Size(100, 23);
this.sourceComboBox.TabIndex = 1;
this.sourceComboBox.SelectedIndex = 0;
this.sourceComboBox.SelectedIndexChanged += new System.EventHandler(this.sourceComboBox_SelectedIndexChanged);
this.generatorFreqLabel.AutoSize = true;
this.generatorFreqLabel.Location = new System.Drawing.Point(165, 22);
this.generatorFreqLabel.Name = "generatorFreqLabel";
this.generatorFreqLabel.Size = new System.Drawing.Size(33, 15);
this.generatorFreqLabel.TabIndex = 2;
this.generatorFreqLabel.Text = "Freq:";
this.generatorFreqNumeric.Enabled = false;
this.generatorFreqNumeric.Location = new System.Drawing.Point(200, 19);
this.generatorFreqNumeric.Maximum = new decimal(new int[] { 10000000, 0, 0, 0 });
this.generatorFreqNumeric.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
this.generatorFreqNumeric.Name = "generatorFreqNumeric";
this.generatorFreqNumeric.Size = new System.Drawing.Size(90, 23);
this.generatorFreqNumeric.TabIndex = 3;
this.generatorFreqNumeric.ThousandsSeparator = true;
this.generatorFreqNumeric.Value = new decimal(new int[] { 1000, 0, 0, 0 });
this.generatorFreqNumeric.ValueChanged += new System.EventHandler(this.generatorFreqNumeric_ValueChanged);
this.generatorFreqUnitLabel.AutoSize = true;
this.generatorFreqUnitLabel.Location = new System.Drawing.Point(295, 22);
this.generatorFreqUnitLabel.Name = "generatorFreqUnitLabel";
this.generatorFreqUnitLabel.Size = new System.Drawing.Size(20, 15);
this.generatorFreqUnitLabel.TabIndex = 4;
this.generatorFreqUnitLabel.Text = "Hz";
this.frequencyStatusLabel.AutoSize = true;
this.frequencyStatusLabel.ForeColor = System.Drawing.Color.LightGreen;
this.frequencyStatusLabel.Location = new System.Drawing.Point(320, 22);
this.frequencyStatusLabel.Name = "frequencyStatusLabel";
this.frequencyStatusLabel.Size = new System.Drawing.Size(22, 15);
this.frequencyStatusLabel.TabIndex = 5;
this.frequencyStatusLabel.Text = "OK";
this.waveformTypeLabel.AutoSize = true;
this.waveformTypeLabel.Location = new System.Drawing.Point(380, 22);
this.waveformTypeLabel.Name = "waveformTypeLabel";
this.waveformTypeLabel.Size = new System.Drawing.Size(33, 15);
this.waveformTypeLabel.TabIndex = 6;
this.waveformTypeLabel.Text = "Type:";
this.waveformTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.waveformTypeComboBox.Enabled = false;
this.waveformTypeComboBox.FormattingEnabled = true;
this.waveformTypeComboBox.Items.AddRange(new object[] { "Sine", "Square", "Triangle", "Sawtooth" });
this.waveformTypeComboBox.Location = new System.Drawing.Point(418, 19);
this.waveformTypeComboBox.Name = "waveformTypeComboBox";
this.waveformTypeComboBox.Size = new System.Drawing.Size(75, 23);
this.waveformTypeComboBox.TabIndex = 7;
this.waveformTypeComboBox.SelectedIndex = 0;
this.waveformTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.waveformTypeComboBox_SelectedIndexChanged);
this.amplitudeLabel.AutoSize = true;
this.amplitudeLabel.Location = new System.Drawing.Point(500, 22);
this.amplitudeLabel.Name = "amplitudeLabel";
this.amplitudeLabel.Size = new System.Drawing.Size(34, 15);
this.amplitudeLabel.TabIndex = 8;
this.amplitudeLabel.Text = "Amp:";
this.amplitudeTrackBar.Enabled = false;
this.amplitudeTrackBar.Location = new System.Drawing.Point(535, 15);
this.amplitudeTrackBar.Maximum = 100;
this.amplitudeTrackBar.Minimum = 0;
this.amplitudeTrackBar.Name = "amplitudeTrackBar";
this.amplitudeTrackBar.Size = new System.Drawing.Size(80, 30);
this.amplitudeTrackBar.TabIndex = 9;
this.amplitudeTrackBar.TickFrequency = 10;
this.amplitudeTrackBar.Value = 80;
this.amplitudeTrackBar.Scroll += new System.EventHandler(this.amplitudeTrackBar_Scroll);
this.amplitudeValueLabel.AutoSize = true;
this.amplitudeValueLabel.ForeColor = System.Drawing.Color.LightGreen;
this.amplitudeValueLabel.Location = new System.Drawing.Point(620, 22);
this.amplitudeValueLabel.Name = "amplitudeValueLabel";
this.amplitudeValueLabel.Size = new System.Drawing.Size(30, 15);
this.amplitudeValueLabel.TabIndex = 10;
this.amplitudeValueLabel.Text = "80%";
// ROW 2: OOK, PW, Duty, Period, Reset
this.ookEnableCheckBox.AutoSize = true;
this.ookEnableCheckBox.Enabled = false;
this.ookEnableCheckBox.Location = new System.Drawing.Point(10, 48);
this.ookEnableCheckBox.Name = "ookEnableCheckBox";
this.ookEnableCheckBox.Size = new System.Drawing.Size(50, 19);
this.ookEnableCheckBox.TabIndex = 11;
this.ookEnableCheckBox.Text = "OOK";
this.ookEnableCheckBox.CheckedChanged += new System.EventHandler(this.ookEnableCheckBox_CheckedChanged);
this.genPulseWidthLabel.AutoSize = true;
this.genPulseWidthLabel.Location = new System.Drawing.Point(65, 49);
this.genPulseWidthLabel.Name = "genPulseWidthLabel";
this.genPulseWidthLabel.Size = new System.Drawing.Size(27, 15);
this.genPulseWidthLabel.TabIndex = 12;
this.genPulseWidthLabel.Text = "PW:";
this.genPulseWidthNumeric.DecimalPlaces = 1;
this.genPulseWidthNumeric.Enabled = false;
this.genPulseWidthNumeric.Increment = new decimal(new int[] { 5, 0, 0, 65536 });
this.genPulseWidthNumeric.Location = new System.Drawing.Point(95, 47);
this.genPulseWidthNumeric.Maximum = new decimal(new int[] { 10000, 0, 0, 0 });
this.genPulseWidthNumeric.Minimum = new decimal(new int[] { 1, 0, 0, 65536 });
this.genPulseWidthNumeric.Name = "genPulseWidthNumeric";
this.genPulseWidthNumeric.Size = new System.Drawing.Size(60, 23);
this.genPulseWidthNumeric.TabIndex = 13;
this.genPulseWidthNumeric.Value = new decimal(new int[] { 10, 0, 0, 0 });
this.genPulseWidthNumeric.ValueChanged += new System.EventHandler(this.genPulseWidthNumeric_ValueChanged);
this.genPulseWidthUnitLabel.AutoSize = true;
this.genPulseWidthUnitLabel.Location = new System.Drawing.Point(160, 49);
this.genPulseWidthUnitLabel.Name = "genPulseWidthUnitLabel";
this.genPulseWidthUnitLabel.Size = new System.Drawing.Size(22, 15);
this.genPulseWidthUnitLabel.TabIndex = 14;
this.genPulseWidthUnitLabel.Text = "ms";
this.dutyCycleLabel.AutoSize = true;
this.dutyCycleLabel.Location = new System.Drawing.Point(185, 49);
this.dutyCycleLabel.Name = "dutyCycleLabel";
this.dutyCycleLabel.Size = new System.Drawing.Size(35, 15);
this.dutyCycleLabel.TabIndex = 15;
this.dutyCycleLabel.Text = "Duty:";
this.dutyCycleNumeric.Enabled = false;
this.dutyCycleNumeric.Location = new System.Drawing.Point(220, 47);
this.dutyCycleNumeric.Maximum = new decimal(new int[] { 99, 0, 0, 0 });
this.dutyCycleNumeric.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
this.dutyCycleNumeric.Name = "dutyCycleNumeric";
this.dutyCycleNumeric.Size = new System.Drawing.Size(55, 23);
this.dutyCycleNumeric.TabIndex = 16;
this.dutyCycleNumeric.Value = new decimal(new int[] { 50, 0, 0, 0 });
this.dutyCycleNumeric.ValueChanged += new System.EventHandler(this.dutyCycleNumeric_ValueChanged);
this.dutyCycleUnitLabel.AutoSize = true;
this.dutyCycleUnitLabel.Location = new System.Drawing.Point(280, 49);
this.dutyCycleUnitLabel.Name = "dutyCycleUnitLabel";
this.dutyCycleUnitLabel.Size = new System.Drawing.Size(15, 15);
this.dutyCycleUnitLabel.TabIndex = 17;
this.dutyCycleUnitLabel.Text = "%";
this.pulsePeriodInfoLabel.AutoSize = true;
this.pulsePeriodInfoLabel.ForeColor = System.Drawing.Color.LightGray;
this.pulsePeriodInfoLabel.Location = new System.Drawing.Point(310, 49);
this.pulsePeriodInfoLabel.Name = "pulsePeriodInfoLabel";
this.pulsePeriodInfoLabel.Size = new System.Drawing.Size(45, 15);
this.pulsePeriodInfoLabel.TabIndex = 18;
this.pulsePeriodInfoLabel.Text = "Period:";
this.pulsePeriodValueLabel.AutoSize = true;
this.pulsePeriodValueLabel.ForeColor = System.Drawing.Color.Cyan;
this.pulsePeriodValueLabel.Location = new System.Drawing.Point(360, 49);
this.pulsePeriodValueLabel.Name = "pulsePeriodValueLabel";
this.pulsePeriodValueLabel.Size = new System.Drawing.Size(80, 15);
this.pulsePeriodValueLabel.TabIndex = 19;
this.pulsePeriodValueLabel.Text = "20.0ms (50Hz)";
this.resetGeneratorButton.Enabled = false;
this.resetGeneratorButton.Location = new System.Drawing.Point(580, 49);
this.resetGeneratorButton.Name = "resetGeneratorButton";
this.resetGeneratorButton.Size = new System.Drawing.Size(100, 20);
this.resetGeneratorButton.TabIndex = 20;
this.resetGeneratorButton.Text = "Reset";
this.resetGeneratorButton.Click += new System.EventHandler(this.resetGeneratorButton_Click);
// ============================================
// STEP 7: FINALIZE
// ============================================
//
// ControlPanel
//
this.Controls.Add(this.mainSplitContainer);
this.Controls.Add(this.controlPanel);
this.Name = "ControlPanel";
this.Size = new System.Drawing.Size(700, 685);
// Resume layouts
this.mainSplitContainer.Panel1.ResumeLayout(false);
this.mainSplitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.mainSplitContainer)).EndInit();
this.mainSplitContainer.ResumeLayout(false);
this.topSplitContainer.Panel1.ResumeLayout(false);
this.topSplitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.topSplitContainer)).EndInit();
this.topSplitContainer.ResumeLayout(false);
this.controlPanel.ResumeLayout(false);
this.controlPanel.PerformLayout();
this.matchedFilterGroupBox.ResumeLayout(false);
this.matchedFilterGroupBox.PerformLayout();
this.signalGeneratorGroupBox.ResumeLayout(false);
this.signalGeneratorGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.timeWindowTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.filterDutyCycleNumeric)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.generatorFreqNumeric)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.amplitudeTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.genPulseWidthNumeric)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dutyCycleNumeric)).EndInit();
this.ResumeLayout(false);
}
#endregion
// ============================================
// FIELD DECLARATIONS
// ============================================
private System.Windows.Forms.SplitContainer mainSplitContainer;
private System.Windows.Forms.SplitContainer topSplitContainer;
private System.Windows.Forms.Panel waveformPanel;
private System.Windows.Forms.Panel filteredWaveformPanel;
private System.Windows.Forms.Panel templatePanel;
private System.Windows.Forms.Panel controlPanel;
private System.Windows.Forms.Label timeWindowLabel;
private System.Windows.Forms.TrackBar timeWindowTrackBar;
private System.Windows.Forms.Label timeWindowValueLabel;
private System.Windows.Forms.Button clearButton;
private System.Windows.Forms.Label displayModeLabel;
private System.Windows.Forms.ComboBox displayModeComboBox;
private System.Windows.Forms.Button freezeButton;
private System.Windows.Forms.Button saveButton;
// Matched Filter controls
private System.Windows.Forms.GroupBox matchedFilterGroupBox;
private System.Windows.Forms.CheckBox enableFilterCheckBox;
private System.Windows.Forms.Label pulseWidthLabel;
private System.Windows.Forms.TextBox pulseWidthTextBox;
private System.Windows.Forms.Label pulseWidthMsLabel;
private System.Windows.Forms.Label filterDutyCycleLabel;
private System.Windows.Forms.NumericUpDown filterDutyCycleNumeric;
private System.Windows.Forms.Label filterDutyCyclePercentLabel;
private System.Windows.Forms.Label filterPeriodLabel;
private System.Windows.Forms.Label filterPeriodValueLabel;
private System.Windows.Forms.Label filterCarrierWaveformLabel;
private System.Windows.Forms.ComboBox filterCarrierWaveformComboBox;
private System.Windows.Forms.Label carrierFreqLabel;
private System.Windows.Forms.TextBox carrierFreqTextBox;
private System.Windows.Forms.Label carrierFreqKhzLabel;
private System.Windows.Forms.Label pulseShapeLabel;
private System.Windows.Forms.ComboBox pulseShapeComboBox;
private System.Windows.Forms.Label filterModeLabel;
private System.Windows.Forms.ComboBox filterModeComboBox;
private System.Windows.Forms.CheckBox highQualityCheckBox;
private System.Windows.Forms.CheckBox filterOokPatternCheckBox;
private System.Windows.Forms.Button showFilteredButton;
private System.Windows.Forms.Button showTemplateButton;
// Signal Generator controls
private System.Windows.Forms.GroupBox signalGeneratorGroupBox;
private System.Windows.Forms.Label sourceLabel;
private System.Windows.Forms.ComboBox sourceComboBox;
private System.Windows.Forms.Label generatorFreqLabel;
private System.Windows.Forms.NumericUpDown generatorFreqNumeric;
private System.Windows.Forms.Label generatorFreqUnitLabel;
private System.Windows.Forms.Label frequencyStatusLabel;
private System.Windows.Forms.Label waveformTypeLabel;
private System.Windows.Forms.ComboBox waveformTypeComboBox;
private System.Windows.Forms.Label amplitudeLabel;
private System.Windows.Forms.TrackBar amplitudeTrackBar;
private System.Windows.Forms.Label amplitudeValueLabel;
private System.Windows.Forms.CheckBox ookEnableCheckBox;
private System.Windows.Forms.Label genPulseWidthLabel;
private System.Windows.Forms.NumericUpDown genPulseWidthNumeric;
private System.Windows.Forms.Label genPulseWidthUnitLabel;
private System.Windows.Forms.Label dutyCycleLabel;
private System.Windows.Forms.NumericUpDown dutyCycleNumeric;
private System.Windows.Forms.Label dutyCycleUnitLabel;
private System.Windows.Forms.Label pulsePeriodInfoLabel;
private System.Windows.Forms.Label pulsePeriodValueLabel;
private System.Windows.Forms.Button resetGeneratorButton;
}
}