diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2018-12-02 20:26:26 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2018-12-02 20:26:26 -0600 |
| commit | c0b55690bc47102459ef7b1720d69945d6523d08 (patch) | |
| tree | af2a78d88fd4935bed01728b5f18054f85660983 /src/listdialog.h | |
| parent | f1384cdfa7f6affc5a2a66e78e7514662ee6c4ea (diff) | |
Add "send to separator..." option for mods
Diffstat (limited to 'src/listdialog.h')
| -rw-r--r-- | src/listdialog.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/listdialog.h b/src/listdialog.h new file mode 100644 index 00000000..5e826a30 --- /dev/null +++ b/src/listdialog.h @@ -0,0 +1,25 @@ +#ifndef LISTDIALOG_H +#define LISTDIALOG_H + +#include <QDialog> + +namespace Ui { +class ListDialog; +} + +class ListDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ListDialog(QWidget *parent = nullptr); + ~ListDialog(); + + void setChoices(QStringList choices); + QString getChoice() const; + +private: + Ui::ListDialog *ui; +}; + +#endif // LISTDIALOG_H |
