summaryrefslogtreecommitdiff
path: root/src/maindialog.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/maindialog.hpp')
-rw-r--r--src/maindialog.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/maindialog.hpp b/src/maindialog.hpp
new file mode 100644
index 0000000..db22b2e
--- /dev/null
+++ b/src/maindialog.hpp
@@ -0,0 +1,29 @@
+/* ============================================================
+ * SPDX-License-Identifier: GPL-3.0-only
+ * Copyright (C) 2023 aqua <aqua@iserlohn-fortress.net>
+ * ============================================================ */
+
+#pragma once
+
+#include <QDialog>
+
+namespace Ui {
+class MainDialog;
+}
+class Playlist;
+class QMediaPlayer;
+class QAudioOutput;
+class MainDialog : public QDialog {
+ Q_OBJECT
+
+public:
+ MainDialog(QWidget *parent = nullptr);
+ ~MainDialog();
+
+private:
+ Ui::MainDialog *ui;
+ Playlist *m_playlist;
+
+ QMediaPlayer *m_player;
+ QAudioOutput *m_audioSink;
+};