mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
60 lines
1.0 KiB
C++
60 lines
1.0 KiB
C++
#ifndef DEVSETUP_H
|
|
#define DEVSETUP_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_devsetup.h"
|
|
|
|
class DevSetup : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DevSetup(QWidget *parent=0);
|
|
~DevSetup();
|
|
|
|
void initDlg();
|
|
qint32 m_idInt;
|
|
qint32 m_pttPort;
|
|
qint32 m_nDevIn;
|
|
qint32 m_nDevOut;
|
|
qint32 m_inDevList[100];
|
|
qint32 m_outDevList[100];
|
|
qint32 m_paInDevice;
|
|
qint32 m_paOutDevice;
|
|
qint32 m_timeout;
|
|
qint32 m_dPhi;
|
|
qint32 m_fCal;
|
|
qint32 m_udpPort;
|
|
qint32 m_astroFont;
|
|
qint32 m_mult570;
|
|
qint32 m_mult570Tx;
|
|
qint32 m_dB;
|
|
|
|
double m_fAdd;
|
|
double m_cal570;
|
|
double m_TxOffset;
|
|
|
|
bool m_network;
|
|
bool m_fs96000;
|
|
bool m_IQswap;
|
|
bool m_restartSoundIn;
|
|
bool m_initIQplus;
|
|
|
|
QString m_myCall;
|
|
QString m_myGrid;
|
|
QString m_saveDir;
|
|
QString m_azelDir;
|
|
QString m_editorCommand;
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private slots:
|
|
void on_soundCardRadioButton_toggled(bool checked);
|
|
|
|
private:
|
|
int r,g,b,r0,g0,b0,r1,g1,b1,r2,g2,b2,r3,g3,b3;
|
|
Ui::DialogSndCard ui;
|
|
};
|
|
|
|
#endif // DEVSETUP_H
|