summaryrefslogtreecommitdiff
path: root/ui/qt5/runner/errorpage.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-07 09:09:00 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-13 12:11:21 -0600
commit1257064e43c6c4269e1b8cf0507b238fd4a0ab1a (patch)
tree7c025c87b292bb6ab046cb13aa71042b14510e3a /ui/qt5/runner/errorpage.hh
parent70104d361e8ac781ffa50ac404e1e286e1239b43 (diff)
downloadhorizon-1257064e43c6c4269e1b8cf0507b238fd4a0ab1a.tar.gz
horizon-1257064e43c6c4269e1b8cf0507b238fd4a0ab1a.tar.bz2
horizon-1257064e43c6c4269e1b8cf0507b238fd4a0ab1a.tar.xz
horizon-1257064e43c6c4269e1b8cf0507b238fd4a0ab1a.zip
Qt UI: runner: Add error page
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 */