mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
33 lines
577 B
C++
33 lines
577 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;
|
|
void setGroup(QString& group);
|
|
void setDescription(QString& description);
|
|
|
|
private:
|
|
enum Audio {
|
|
ATDefault,
|
|
ATInterface,
|
|
ATDevice
|
|
};
|
|
|
|
Ui::AddPresetDialog* ui;
|
|
};
|
|
|
|
#endif // INCLUDE_ADDPRESETDIALOG_H
|