SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
addpresetdialog.h
Go to the documentation of this file.
1 #ifndef INCLUDE_ADDPRESETDIALOG_H
2 #define INCLUDE_ADDPRESETDIALOG_H
3 
4 #include <QDialog>
5 
6 #include "export.h"
7 
8 namespace Ui {
9  class AddPresetDialog;
10 }
11 
12 class SDRGUI_API AddPresetDialog : public QDialog {
13  Q_OBJECT
14 
15 public:
16  explicit AddPresetDialog(const QStringList& groups, const QString& group, QWidget* parent = NULL);
17  ~AddPresetDialog();
18 
19  QString group() const;
20  QString description() const;
21  void setGroup(const QString& group);
22  void setDescription(const QString& description);
23  void showGroupOnly();
24  void setDialogTitle(const QString& title);
25  void setDescriptionBoxTitle(const QString& title);
26 
27 private:
28  enum Audio {
31  ATDevice
32  };
33 
34  Ui::AddPresetDialog* ui;
35 };
36 
37 #endif // INCLUDE_ADDPRESETDIALOG_H
Ui::AddPresetDialog * ui
#define SDRGUI_API
Definition: export.h:52