bck
Alejandro Acuña
2024-11-11 f1cb4443aede6d4657bdc3396c8914d3a9f4fa93
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class SignalViewer
    Inherits System.Windows.Forms.UserControl
 
    'UserControl overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub
 
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
 
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(SignalViewer))
        Me.PBOutput = New System.Windows.Forms.PictureBox
        Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton
        Me.ToolStripButton2 = New System.Windows.Forms.ToolStripButton
        Me.ToolStrip1 = New System.Windows.Forms.ToolStrip
        Me.BtnAnalyzerMode = New System.Windows.Forms.ToolStripButton
        Me.BtnOscilloscopeMode = New System.Windows.Forms.ToolStripButton
        Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator
        Me.BtnLogarithmic = New System.Windows.Forms.ToolStripButton
        Me.BtnLinear = New System.Windows.Forms.ToolStripButton
        Me.ToolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator
        Me.BtnVerticalScaleDec = New System.Windows.Forms.ToolStripButton
        Me.LblVerticalScale = New System.Windows.Forms.ToolStripLabel
        Me.BtnVerticalScaleInc = New System.Windows.Forms.ToolStripButton
        Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator
        Me.BtnVerticalRefDec = New System.Windows.Forms.ToolStripButton
        Me.LlbVerticalRef = New System.Windows.Forms.ToolStripLabel
        Me.BtnVerticalRefInc = New System.Windows.Forms.ToolStripButton
        Me.ToolStripSeparator4 = New System.Windows.Forms.ToolStripSeparator
        CType(Me.PBOutput, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.ToolStrip1.SuspendLayout()
        Me.SuspendLayout()
        '
        'PBOutput
        '
        Me.PBOutput.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
                    Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.PBOutput.Location = New System.Drawing.Point(5, 5)
        Me.PBOutput.Name = "PBOutput"
        Me.PBOutput.Size = New System.Drawing.Size(520, 175)
        Me.PBOutput.TabIndex = 0
        Me.PBOutput.TabStop = False
        '
        'ToolStripButton1
        '
        Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image)
        Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.ToolStripButton1.Name = "ToolStripButton1"
        Me.ToolStripButton1.Size = New System.Drawing.Size(29, 20)
        Me.ToolStripButton1.Text = "Modo trabajo"
        '
        'ToolStripButton2
        '
        Me.ToolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.ToolStripButton2.Image = CType(resources.GetObject("ToolStripButton2.Image"), System.Drawing.Image)
        Me.ToolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.ToolStripButton2.Name = "ToolStripButton2"
        Me.ToolStripButton2.Size = New System.Drawing.Size(29, 20)
        Me.ToolStripButton2.Text = "ToolStripButton2"
        '
        'ToolStrip1
        '
        Me.ToolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom
        Me.ToolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden
        Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BtnAnalyzerMode, Me.BtnOscilloscopeMode, Me.ToolStripSeparator1, Me.BtnLogarithmic, Me.BtnLinear, Me.ToolStripSeparator2, Me.BtnVerticalScaleDec, Me.LblVerticalScale, Me.BtnVerticalScaleInc, Me.ToolStripSeparator3, Me.BtnVerticalRefDec, Me.LlbVerticalRef, Me.BtnVerticalRefInc, Me.ToolStripSeparator4})
        Me.ToolStrip1.Location = New System.Drawing.Point(0, 181)
        Me.ToolStrip1.Name = "ToolStrip1"
        Me.ToolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional
        Me.ToolStrip1.Size = New System.Drawing.Size(526, 25)
        Me.ToolStrip1.TabIndex = 1
        Me.ToolStrip1.Text = "Controles analizador"
        '
        'BtnAnalyzerMode
        '
        Me.BtnAnalyzerMode.Checked = True
        Me.BtnAnalyzerMode.CheckState = System.Windows.Forms.CheckState.Checked
        Me.BtnAnalyzerMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnAnalyzerMode.Image = CType(resources.GetObject("BtnAnalyzerMode.Image"), System.Drawing.Image)
        Me.BtnAnalyzerMode.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnAnalyzerMode.Name = "BtnAnalyzerMode"
        Me.BtnAnalyzerMode.Size = New System.Drawing.Size(23, 22)
        Me.BtnAnalyzerMode.Text = "Spectrum analyzer mode"
        '
        'BtnOscilloscopeMode
        '
        Me.BtnOscilloscopeMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnOscilloscopeMode.Image = CType(resources.GetObject("BtnOscilloscopeMode.Image"), System.Drawing.Image)
        Me.BtnOscilloscopeMode.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnOscilloscopeMode.Name = "BtnOscilloscopeMode"
        Me.BtnOscilloscopeMode.Size = New System.Drawing.Size(23, 22)
        Me.BtnOscilloscopeMode.Text = "Oscilloscope mode"
        '
        'ToolStripSeparator1
        '
        Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
        Me.ToolStripSeparator1.Size = New System.Drawing.Size(6, 25)
        '
        'BtnLogarithmic
        '
        Me.BtnLogarithmic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnLogarithmic.Image = CType(resources.GetObject("BtnLogarithmic.Image"), System.Drawing.Image)
        Me.BtnLogarithmic.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnLogarithmic.Name = "BtnLogarithmic"
        Me.BtnLogarithmic.Size = New System.Drawing.Size(23, 22)
        Me.BtnLogarithmic.Text = "Logarithmic Y axis"
        '
        'BtnLinear
        '
        Me.BtnLinear.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnLinear.Image = CType(resources.GetObject("BtnLinear.Image"), System.Drawing.Image)
        Me.BtnLinear.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnLinear.Name = "BtnLinear"
        Me.BtnLinear.Size = New System.Drawing.Size(23, 22)
        Me.BtnLinear.Text = "Linear Y axis"
        '
        'ToolStripSeparator2
        '
        Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
        Me.ToolStripSeparator2.Size = New System.Drawing.Size(6, 25)
        '
        'BtnVerticalScaleDec
        '
        Me.BtnVerticalScaleDec.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnVerticalScaleDec.Image = CType(resources.GetObject("BtnVerticalScaleDec.Image"), System.Drawing.Image)
        Me.BtnVerticalScaleDec.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnVerticalScaleDec.Name = "BtnVerticalScaleDec"
        Me.BtnVerticalScaleDec.Size = New System.Drawing.Size(23, 22)
        Me.BtnVerticalScaleDec.Text = "Vertical scale decrement"
        '
        'LblVerticalScale
        '
        Me.LblVerticalScale.Name = "LblVerticalScale"
        Me.LblVerticalScale.Size = New System.Drawing.Size(52, 22)
        Me.LblVerticalScale.Text = "20 dB/div"
        Me.LblVerticalScale.ToolTipText = "Vertical scale"
        '
        'BtnVerticalScaleInc
        '
        Me.BtnVerticalScaleInc.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnVerticalScaleInc.Image = CType(resources.GetObject("BtnVerticalScaleInc.Image"), System.Drawing.Image)
        Me.BtnVerticalScaleInc.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnVerticalScaleInc.Name = "BtnVerticalScaleInc"
        Me.BtnVerticalScaleInc.Size = New System.Drawing.Size(23, 22)
        Me.BtnVerticalScaleInc.Text = "Vertical scale increment"
        '
        'ToolStripSeparator3
        '
        Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
        Me.ToolStripSeparator3.Size = New System.Drawing.Size(6, 25)
        '
        'BtnVerticalRefDec
        '
        Me.BtnVerticalRefDec.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnVerticalRefDec.Image = CType(resources.GetObject("BtnVerticalRefDec.Image"), System.Drawing.Image)
        Me.BtnVerticalRefDec.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnVerticalRefDec.Name = "BtnVerticalRefDec"
        Me.BtnVerticalRefDec.Size = New System.Drawing.Size(23, 22)
        Me.BtnVerticalRefDec.Text = "Vertical reference decrement"
        '
        'LlbVerticalRef
        '
        Me.LlbVerticalRef.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
        Me.LlbVerticalRef.Name = "LlbVerticalRef"
        Me.LlbVerticalRef.Size = New System.Drawing.Size(13, 22)
        Me.LlbVerticalRef.Text = "0"
        Me.LlbVerticalRef.ToolTipText = "Vertical ref level"
        '
        'BtnVerticalRefInc
        '
        Me.BtnVerticalRefInc.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
        Me.BtnVerticalRefInc.Image = CType(resources.GetObject("BtnVerticalRefInc.Image"), System.Drawing.Image)
        Me.BtnVerticalRefInc.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.BtnVerticalRefInc.Name = "BtnVerticalRefInc"
        Me.BtnVerticalRefInc.Size = New System.Drawing.Size(23, 22)
        Me.BtnVerticalRefInc.Text = "Vertical reference increment"
        '
        'ToolStripSeparator4
        '
        Me.ToolStripSeparator4.Name = "ToolStripSeparator4"
        Me.ToolStripSeparator4.Size = New System.Drawing.Size(6, 25)
        '
        'SignalViewer
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.Controls.Add(Me.ToolStrip1)
        Me.Controls.Add(Me.PBOutput)
        Me.Name = "SignalViewer"
        Me.Size = New System.Drawing.Size(526, 206)
        CType(Me.PBOutput, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ToolStrip1.ResumeLayout(False)
        Me.ToolStrip1.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()
 
    End Sub
    Friend WithEvents PBOutput As System.Windows.Forms.PictureBox
    Friend WithEvents ToolStripButton1 As System.Windows.Forms.ToolStripButton
    Friend WithEvents ToolStripButton2 As System.Windows.Forms.ToolStripButton
    Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip
    Friend WithEvents BtnAnalyzerMode As System.Windows.Forms.ToolStripButton
    Friend WithEvents BtnOscilloscopeMode As System.Windows.Forms.ToolStripButton
    Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents BtnLinear As System.Windows.Forms.ToolStripButton
    Friend WithEvents BtnLogarithmic As System.Windows.Forms.ToolStripButton
    Friend WithEvents ToolStripSeparator2 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents ToolStripSeparator3 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents BtnVerticalRefInc As System.Windows.Forms.ToolStripButton
    Friend WithEvents LlbVerticalRef As System.Windows.Forms.ToolStripLabel
    Friend WithEvents BtnVerticalRefDec As System.Windows.Forms.ToolStripButton
    Friend WithEvents BtnVerticalScaleDec As System.Windows.Forms.ToolStripButton
    Friend WithEvents LblVerticalScale As System.Windows.Forms.ToolStripLabel
    Friend WithEvents BtnVerticalScaleInc As System.Windows.Forms.ToolStripButton
    Friend WithEvents ToolStripSeparator4 As System.Windows.Forms.ToolStripSeparator
 
End Class