mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			740 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			740 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef INCLUDE_ADDPRESETDIALOG_H
 | 
						|
#define INCLUDE_ADDPRESETDIALOG_H
 | 
						|
 | 
						|
#include <QDialog>
 | 
						|
 | 
						|
#include "export.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
	class AddPresetDialog;
 | 
						|
}
 | 
						|
 | 
						|
class SDRGUI_API AddPresetDialog : public QDialog {
 | 
						|
	Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
	explicit AddPresetDialog(const QStringList& groups, const QString& group, QWidget* parent = NULL);
 | 
						|
	~AddPresetDialog();
 | 
						|
 | 
						|
	QString group() const;
 | 
						|
	QString description() const;
 | 
						|
	void setGroup(const QString& group);
 | 
						|
	void setDescription(const QString& description);
 | 
						|
	void showGroupOnly();
 | 
						|
	void setDialogTitle(const QString& title);
 | 
						|
	void setDescriptionBoxTitle(const QString& title);
 | 
						|
 | 
						|
private:
 | 
						|
	enum Audio {
 | 
						|
		ATDefault,
 | 
						|
		ATInterface,
 | 
						|
		ATDevice
 | 
						|
	};
 | 
						|
 | 
						|
	Ui::AddPresetDialog* ui;
 | 
						|
};
 | 
						|
 | 
						|
#endif // INCLUDE_ADDPRESETDIALOG_H
 |