mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/jtms3@2477 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			41 lines
		
	
	
		
			642 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			642 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;
 | 
						|
 | 
						|
  QString m_myCall;
 | 
						|
  QString m_myGrid;
 | 
						|
  QString m_saveDir;
 | 
						|
  QString m_azelDir;
 | 
						|
  QString m_dxccPfx;
 | 
						|
 | 
						|
public slots:
 | 
						|
  void accept();
 | 
						|
 | 
						|
private:
 | 
						|
  Ui::DialogSndCard ui;
 | 
						|
};
 | 
						|
 | 
						|
#endif // DEVSETUP_H
 |