mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
	
	
		
			31 lines
		
	
	
		
			501 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			31 lines
		
	
	
		
			501 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | #ifndef INCLUDE_ADDPRESETDIALOG_H
 | ||
|  | #define INCLUDE_ADDPRESETDIALOG_H
 | ||
|  | 
 | ||
|  | #include <QDialog>
 | ||
|  | 
 | ||
|  | namespace Ui { | ||
|  | 	class AddPresetDialog; | ||
|  | } | ||
|  | 
 | ||
|  | class AddPresetDialog : public QDialog { | ||
|  | 	Q_OBJECT | ||
|  | 
 | ||
|  | public: | ||
|  | 	explicit AddPresetDialog(const QStringList& groups, const QString& group, QWidget* parent = NULL); | ||
|  | 	~AddPresetDialog(); | ||
|  | 
 | ||
|  | 	QString group() const; | ||
|  | 	QString description() const; | ||
|  | 
 | ||
|  | private: | ||
|  | 	enum Audio { | ||
|  | 		ATDefault, | ||
|  | 		ATInterface, | ||
|  | 		ATDevice | ||
|  | 	}; | ||
|  | 
 | ||
|  | 	Ui::AddPresetDialog* ui; | ||
|  | }; | ||
|  | 
 | ||
|  | #endif // INCLUDE_ADDPRESETDIALOG_H
 |