Alejandro Acuña
2024-11-19 72a8eee716de93344f977ab79be7d3bfeb341462
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmAudio
    Inherits System.Windows.Forms.Form
 
    'Form 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()
        Me.components = New System.ComponentModel.Container
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAudio))
        Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
        Me.GroupBox2 = New System.Windows.Forms.GroupBox
        Me.ChkSilent = New System.Windows.Forms.CheckBox
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.BtnChirp = New System.Windows.Forms.Button
        Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
        Me.FromIPAnalyzer = New SigView.SignalViewer
        Me.ToIPAnalyzer = New SigView.SignalViewer
        Me.BtnTone = New System.Windows.Forms.Button
        Me.TableLayoutPanel1.SuspendLayout()
        Me.GroupBox2.SuspendLayout()
        Me.GroupBox1.SuspendLayout()
        Me.SuspendLayout()
        '
        'TableLayoutPanel1
        '
        Me.TableLayoutPanel1.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.TableLayoutPanel1.ColumnCount = 1
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.Controls.Add(Me.GroupBox2, 0, 1)
        Me.TableLayoutPanel1.Controls.Add(Me.GroupBox1, 0, 0)
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(0, 0)
        Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
        Me.TableLayoutPanel1.RowCount = 2
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!))
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(598, 342)
        Me.TableLayoutPanel1.TabIndex = 42
        '
        'GroupBox2
        '
        Me.GroupBox2.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.GroupBox2.Controls.Add(Me.FromIPAnalyzer)
        Me.GroupBox2.Controls.Add(Me.ChkSilent)
        Me.GroupBox2.Location = New System.Drawing.Point(3, 174)
        Me.GroupBox2.Name = "GroupBox2"
        Me.GroupBox2.Size = New System.Drawing.Size(592, 165)
        Me.GroupBox2.TabIndex = 43
        Me.GroupBox2.TabStop = False
        Me.GroupBox2.Text = "Audio from network"
        '
        'ChkSilent
        '
        Me.ChkSilent.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.ChkSilent.AutoSize = True
        Me.ChkSilent.Location = New System.Drawing.Point(404, 19)
        Me.ChkSilent.Name = "ChkSilent"
        Me.ChkSilent.Size = New System.Drawing.Size(52, 17)
        Me.ChkSilent.TabIndex = 42
        Me.ChkSilent.Text = "Silent"
        Me.ToolTip1.SetToolTip(Me.ChkSilent, "When checked, the received audio is not sent to the computer audio system to avoi" & _
                "d audio loopbacks.")
        Me.ChkSilent.UseVisualStyleBackColor = True
        '
        'GroupBox1
        '
        Me.GroupBox1.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.GroupBox1.Controls.Add(Me.ToIPAnalyzer)
        Me.GroupBox1.Controls.Add(Me.BtnTone)
        Me.GroupBox1.Controls.Add(Me.BtnChirp)
        Me.GroupBox1.Location = New System.Drawing.Point(3, 3)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(592, 165)
        Me.GroupBox1.TabIndex = 0
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "Audio to network"
        '
        'BtnChirp
        '
        Me.BtnChirp.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.BtnChirp.Location = New System.Drawing.Point(412, 47)
        Me.BtnChirp.Name = "BtnChirp"
        Me.BtnChirp.Size = New System.Drawing.Size(63, 22)
        Me.BtnChirp.TabIndex = 45
        Me.BtnChirp.Text = "Chirp..."
        Me.ToolTip1.SetToolTip(Me.BtnChirp, "Chirp tone generator")
        Me.BtnChirp.UseVisualStyleBackColor = True
        '
        'FromIPAnalyzer
        '
        Me.FromIPAnalyzer.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.FromIPAnalyzer.BackColor = System.Drawing.SystemColors.AppWorkspace
        Me.FromIPAnalyzer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
        Me.FromIPAnalyzer.LineColor = System.Drawing.Color.Red
        Me.FromIPAnalyzer.Location = New System.Drawing.Point(18, 14)
        Me.FromIPAnalyzer.LogarihmicScale = True
        Me.FromIPAnalyzer.Mode = SigView.SignalViewer.Modes.SpectrumAnalyzer
        Me.FromIPAnalyzer.Name = "FromIPAnalyzer"
        Me.FromIPAnalyzer.NumberVertDiv = 5
        Me.FromIPAnalyzer.NumSignalSamples = 512
        Me.FromIPAnalyzer.ReferenceLevel = 0
        Me.FromIPAnalyzer.ReferencePower = 0.5
        Me.FromIPAnalyzer.ScaleY = 20
        Me.FromIPAnalyzer.Size = New System.Drawing.Size(532, 146)
        Me.FromIPAnalyzer.TabIndex = 44
        Me.FromIPAnalyzer.TextColor = System.Drawing.Color.GreenYellow
        Me.FromIPAnalyzer.TextFont = New System.Drawing.Font("Microsoft Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ToolTip1.SetToolTip(Me.FromIPAnalyzer, "Incoming signal analyzer")
        '
        'ToIPAnalyzer
        '
        Me.ToIPAnalyzer.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.ToIPAnalyzer.BackColor = System.Drawing.SystemColors.AppWorkspace
        Me.ToIPAnalyzer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
        Me.ToIPAnalyzer.Location = New System.Drawing.Point(18, 16)
        Me.ToIPAnalyzer.LogarihmicScale = True
        Me.ToIPAnalyzer.Mode = SigView.SignalViewer.Modes.SpectrumAnalyzer
        Me.ToIPAnalyzer.Name = "ToIPAnalyzer"
        Me.ToIPAnalyzer.NumberVertDiv = 5
        Me.ToIPAnalyzer.NumSignalSamples = 512
        Me.ToIPAnalyzer.ReferenceLevel = 0
        Me.ToIPAnalyzer.ReferencePower = 0.5
        Me.ToIPAnalyzer.ScaleY = 20
        Me.ToIPAnalyzer.Size = New System.Drawing.Size(532, 146)
        Me.ToIPAnalyzer.TabIndex = 43
        Me.ToIPAnalyzer.TextColor = System.Drawing.Color.GreenYellow
        Me.ToIPAnalyzer.TextFont = New System.Drawing.Font("Microsoft Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ToolTip1.SetToolTip(Me.ToIPAnalyzer, "Outcoming signal analyzer")
        '
        'BtnTone
        '
        Me.BtnTone.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.BtnTone.Location = New System.Drawing.Point(393, 19)
        Me.BtnTone.Name = "BtnTone"
        Me.BtnTone.Size = New System.Drawing.Size(63, 22)
        Me.BtnTone.TabIndex = 44
        Me.BtnTone.Text = "Tone..."
        Me.ToolTip1.SetToolTip(Me.BtnTone, "Tone generator")
        Me.BtnTone.UseVisualStyleBackColor = True
        '
        'frmAudio
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None
        Me.ClientSize = New System.Drawing.Size(565, 342)
        Me.Controls.Add(Me.TableLayoutPanel1)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
        Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
        Me.Location = New System.Drawing.Point(413, 60)
        Me.MaximizeBox = False
        Me.MaximumSize = New System.Drawing.Size(800, 600)
        Me.Name = "frmAudio"
        Me.ShowInTaskbar = False
        Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual
        Me.Text = "Signal Levels"
        Me.WindowState = System.Windows.Forms.FormWindowState.Minimized
        Me.TableLayoutPanel1.ResumeLayout(False)
        Me.GroupBox2.ResumeLayout(False)
        Me.GroupBox2.PerformLayout()
        Me.GroupBox1.ResumeLayout(False)
        Me.ResumeLayout(False)
 
    End Sub
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents ChkSilent As System.Windows.Forms.CheckBox
    Friend WithEvents ToolTip1 As System.Windows.Forms.ToolTip
    Friend WithEvents ToIPAnalyzer As SigView.SignalViewer
    Friend WithEvents FromIPAnalyzer As SigView.SignalViewer
    Friend WithEvents BtnChirp As System.Windows.Forms.Button
    Friend WithEvents BtnTone As System.Windows.Forms.Button
End Class