summaryrefslogtreecommitdiff
path: root/ui/qt5/runner/errorpage.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/runner/errorpage.hh')
-rw-r--r--ui/qt5/runner/errorpage.hh27
1 files changed, 27 insertions, 0 deletions
diff --git a/ui/qt5/runner/errorpage.hh b/ui/qt5/runner/errorpage.hh
new file mode 100644
index 0000000..0cb59af
--- /dev/null
+++ b/ui/qt5/runner/errorpage.hh
@@ -0,0 +1,27 @@
+/*
+ * errorpage.hh - Definition of the UI.Perform.Error page
+ * horizon-run-qt5, the Qt 5 executor user interface for
+ * Project Horizon
+ *
+ * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved.
+ * This code is licensed under the AGPL 3.0 license, as noted in the
+ * LICENSE-code file in the root directory of this repository.
+ *
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
+#ifndef ERRORPAGE_HH
+#define ERRORPAGE_HH
+
+#include "../horizonwizardpage.hh"
+#include <QLabel>
+
+class ErrorPage : public HorizonWizardPage {
+public:
+ ErrorPage(QWidget *parent = nullptr);
+ void initializePage();
+private:
+ QLabel *descLabel;
+};
+
+#endif /* !ERRORPAGE_HH */