mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-08 01:26:01 -05:00
27 lines
527 B
C++
27 lines
527 B
C++
|
#include "gui/addpresetdialog.h"
|
||
|
#include "ui_addpresetdialog.h"
|
||
|
|
||
|
AddPresetDialog::AddPresetDialog(const QStringList& groups, const QString& group, QWidget* parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::AddPresetDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
ui->group->addItems(groups);
|
||
|
ui->group->lineEdit()->setText(group);
|
||
|
}
|
||
|
|
||
|
AddPresetDialog::~AddPresetDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
QString AddPresetDialog::group() const
|
||
|
{
|
||
|
return ui->group->lineEdit()->text();
|
||
|
}
|
||
|
|
||
|
QString AddPresetDialog::description() const
|
||
|
{
|
||
|
return ui->description->text();
|
||
|
}
|