aboutsummaryrefslogtreecommitdiff
path: root/src/session/sessiondialog.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-11-25 13:01:17 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-11-25 15:05:18 +0100
commit09c4508aee96ca20d084b8a60b4c6603de8bff8b (patch)
treefa17b39bb6018b96b8045b3af6bdfbd8e1ca5af5 /src/session/sessiondialog.h
parentAdd QT_NO_DEBUG to non-debug builds (diff)
downloadsmolbote-09c4508aee96ca20d084b8a60b4c6603de8bff8b.tar.xz
Add Session Dialog
Diffstat (limited to 'src/session/sessiondialog.h')
-rw-r--r--src/session/sessiondialog.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/session/sessiondialog.h b/src/session/sessiondialog.h
new file mode 100644
index 0000000..7fea3c2
--- /dev/null
+++ b/src/session/sessiondialog.h
@@ -0,0 +1,34 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef SMOLBOTE_SESSIONDIALOG_H
+#define SMOLBOTE_SESSIONDIALOG_H
+
+#include <QDialog>
+
+namespace Ui
+{
+class SessionDialog;
+}
+
+class SessionDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit SessionDialog(QWidget *parent = nullptr);
+ ~SessionDialog() override;
+
+private:
+ void openSession(const QString &filename);
+
+private:
+ Ui::SessionDialog *ui;
+};
+
+#endif // SMOLBOTE_SESSIONDIALOG_H