summaryrefslogtreecommitdiff
path: root/ui/qt5/intropage.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/intropage.hh')
-rw-r--r--ui/qt5/intropage.hh24
1 files changed, 19 insertions, 5 deletions
diff --git a/ui/qt5/intropage.hh b/ui/qt5/intropage.hh
index 5c50d6d..1214854 100644
--- a/ui/qt5/intropage.hh
+++ b/ui/qt5/intropage.hh
@@ -1,19 +1,33 @@
-#ifndef WELCOMEPAGE_HH
-#define WELCOMEPAGE_HH
+/*
+ * intropage.hh - Definition of the UI.Intro page
+ * horizon-qt5, the Qt 5 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 INTROPAGE_HH
+#define INTROPAGE_HH
#ifdef HAS_INSTALL_ENV
#include <QPushButton>
-#endif
+#endif /* HAS_INSTALL_ENV */
+
#include "horizonwizardpage.hh"
class IntroPage : public HorizonWizardPage {
public:
IntroPage(QWidget *parent = nullptr);
int nextId() const;
+
#ifdef HAS_INSTALL_ENV
private:
QPushButton *toolButton;
-#endif
+#endif /* HAS_INSTALL_ENV */
};
-#endif // WELCOMEPAGE_HH
+#endif /* !INTROPAGE_HH */