diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2018-12-20 14:33:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-20 14:33:08 -0600 |
| commit | ed67ac211306bee2067178ace1a0a7fbcd0bea1b (patch) | |
| tree | 8fe31503ba20a436457c8c94d61f953b4aa067b4 /src/listdialog.h | |
| parent | 2232bdfc779b8575c8374a723d4d02a2b41fb352 (diff) | |
| parent | 9a33dc148054443cb0efd5916ff758fca5bc09e3 (diff) | |
Merge pull request #586 from ModOrganizer2/Develop
Release 2.1.6
Diffstat (limited to 'src/listdialog.h')
| -rw-r--r-- | src/listdialog.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/listdialog.h b/src/listdialog.h new file mode 100644 index 00000000..7b5a5461 --- /dev/null +++ b/src/listdialog.h @@ -0,0 +1,29 @@ +#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; + +public slots: + void on_filterEdit_textChanged(QString filter); + +private: + Ui::ListDialog *ui; + QStringList m_Choices; +}; + +#endif // LISTDIALOG_H |
