mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
922226de7a
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3042 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
46 lines
791 B
C++
46 lines
791 B
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;
|
|
|
|
bool m_restartSoundIn;
|
|
bool m_restartSoundOut;
|
|
bool m_pskReporter;
|
|
|
|
QString m_myCall;
|
|
QString m_myGrid;
|
|
QString m_saveDir;
|
|
QString m_azelDir;
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private slots:
|
|
void on_myCallEntry_editingFinished();
|
|
void on_myGridEntry_editingFinished();
|
|
void on_cbPSKReporter_clicked(bool checked);
|
|
|
|
private:
|
|
Ui::DialogSndCard ui;
|
|
};
|
|
|
|
#endif // DEVSETUP_H
|