-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvirtual_oss_ctl_mainwindow.h
249 lines (184 loc) · 5.1 KB
/
virtual_oss_ctl_mainwindow.h
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
/*-
* Copyright (c) 2012-2022 Hans Petter Selasky
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef _VIRTUAL_OSS_CTL_MAINWINDOW_H_
#define _VIRTUAL_OSS_CTL_MAINWINDOW_H_
#include "virtual_oss_ctl.h"
class VOSSVolumeBar : public QWidget
{
Q_OBJECT;
public:
VOSSVolumeBar(VOSSController *parent = 0, int type = 0, int chan = 0, int num = 0);
~VOSSVolumeBar();
void drawBar(QPainter &, int, int, int);
VOSSController *parent;
struct virtual_oss_io_peak io_peak;
struct virtual_oss_mon_peak mon_peak;
struct virtual_oss_master_peak master_peak;
int type;
int channel;
int number;
int generation;
void paintEvent(QPaintEvent *);
};
class VOSSAudioDelayLocator : public QGroupBox
{
Q_OBJECT;
public:
VOSSAudioDelayLocator(VOSSMainWindow * = 0);
~VOSSAudioDelayLocator();
VOSSMainWindow *parent;
QGridLayout *gl;
QLabel *lbl_status;
QPushButton *but_reset;
QPushButton *but_enable_disable;
QPushButton *but_signal_up;
QPushButton *but_signal_down;
QSpinBox *spn_channel_in;
QSpinBox *spn_channel_out;
void read_state();
public slots:
void handle_reset();
void handle_signal_up();
void handle_signal_down();
void handle_enable_disable();
void handle_channel_in();
void handle_channel_out();
};
class VOSSRecordStatus : public QGroupBox
{
Q_OBJECT;
public:
VOSSRecordStatus(VOSSMainWindow * = 0);
~VOSSRecordStatus();
VOSSMainWindow *parent;
QGridLayout *gl;
QPushButton *but_start;
QPushButton *but_stop;
void read_state();
public slots:
void handle_start();
void handle_stop();
};
class VOSSAddOptions : public QGroupBox
{
Q_OBJECT;
public:
VOSSAddOptions(VOSSMainWindow * = 0);
~VOSSAddOptions();
VOSSMainWindow *parent;
QGridLayout *gl;
QLineEdit *led_config;
QPushButton *but_add;
char buffer[VIRTUAL_OSS_OPTIONS_MAX];
public slots:
void handle_add();
};
class VOSSSysInfoOptions : public QGroupBox
{
public:
VOSSSysInfoOptions(VOSSMainWindow * = 0);
~VOSSSysInfoOptions();
void updateInfo();
VOSSMainWindow *parent;
QGridLayout *gl;
QLabel lbl_status;
};
class VOSSController : public QGroupBox
{
Q_OBJECT;
public:
VOSSController(VOSSMainWindow *parent = 0, int type = 0, int channel = 0, int number = 0);
~VOSSController();
void set_desc(const char *);
void set_rx_amp(int);
void set_tx_amp(int);
void get_config(void);
void watchdog(void);
VOSSMainWindow *parent;
QGridLayout *gl;
QCheckBox *rx_mute;
QCheckBox *tx_mute;
QCheckBox *rx_polarity;
QCheckBox *tx_polarity;
QLabel *lbl_rx_amp;
QLabel *lbl_tx_amp;
QPushButton *rx_amp_up;
QPushButton *rx_amp_down;
QPushButton *tx_amp_up;
QPushButton *tx_amp_down;
QPushButton *rx_eq_show;
QPushButton *tx_eq_show;
VOSSEqualizer *rx_eq;
VOSSEqualizer *tx_eq;
QLineEdit *connect_input_label;
QLineEdit *connect_output_label;
uint32_t connect_row;
VOSSCompressor *compressor_edit;
QPushButton *compressor;
QSpinBox *spn_rx_chn;
QSpinBox *spn_tx_chn;
QSpinBox *spn_rx_dly;
VOSSVolumeBar *peak_vol;
int type;
int channel;
int number;
int rx_amp;
int tx_amp;
struct virtual_oss_io_info io_info;
struct virtual_oss_mon_info mon_info;
public slots:
void handle_rx_amp_up(void);
void handle_rx_amp_down(void);
void handle_rx_eq(void);
void handle_tx_amp_up(void);
void handle_tx_amp_down(void);
void handle_tx_eq(void);
void handle_set_config(void);
void handle_compressor(void);
};
class VOSSMainWindow : public QScrollArea
{
Q_OBJECT;
public:
VOSSMainWindow(const char *dsp = 0);
~VOSSMainWindow();
VOSSEqualizer *eq_copy;
VOSSCompressor *compressor_copy;
VOSSGridLayout *gl_ctl;
VOSSGridLayout *gl_main;
VOSSController *vb[MAX_VOLUME_BAR];
VOSSConnect *vconnect;
VOSSAudioDelayLocator *vaudiodelay;
VOSSRecordStatus *vrecordstatus;
VOSSAddOptions *vaddoptions;
VOSSSysInfoOptions *vsysinfo;
QTimer *watchdog;
const char *dsp_name;
int dsp_fd;
int generation;
public slots:
void handle_watchdog(void);
};
#endif /* _VIRTUAL_OSS_CTL_MAINWINDOW_H_ */