summaryrefslogtreecommitdiffstats
path: root/indexerdialog.h
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2017-02-26 15:47:24 +0100
committerArno <arno@disconnect.de>2017-02-26 15:47:24 +0100
commit03534db307eead153283252a0d9ea4c30f7810ee (patch)
treed7448addc3aa90c3b2249ba51c09508ea655a0f4 /indexerdialog.h
parent707853a339a804c9fe90e8ce5b7743c131b75dc1 (diff)
downloadBeetPlayer-03534db307eead153283252a0d9ea4c30f7810ee.tar.gz
BeetPlayer-03534db307eead153283252a0d9ea4c30f7810ee.tar.bz2
BeetPlayer-03534db307eead153283252a0d9ea4c30f7810ee.zip
Turned IndexerWidget into a dialog
and got rid of the TabWidget!
Diffstat (limited to 'indexerdialog.h')
-rw-r--r--indexerdialog.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/indexerdialog.h b/indexerdialog.h
new file mode 100644
index 0000000..2928b08
--- /dev/null
+++ b/indexerdialog.h
@@ -0,0 +1,17 @@
+#ifndef INDEXERDIALOG_H
+#define INDEXERDIALOG_H
+
+#include <QDialog>
+
+class IndexerWidget;
+
+class IndexerDialog : public QDialog {
+ Q_OBJECT
+ public:
+ explicit IndexerDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
+
+ private:
+ IndexerWidget *mIndexer;
+};
+
+#endif // INDEXERDIALOG_H