summaryrefslogtreecommitdiff
path: root/horizonhelpwindow.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-02-27 22:08:16 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-03-01 18:39:45 -0600
commited87a0251092aa94f81fcc3ba559f340d2360b43 (patch)
treee33244c0771fa6b62365f19ca10da50b16a53c4e /horizonhelpwindow.hh
parenta3c5b6e75573ebe22b2cd2319448cdf828eaf1fc (diff)
downloadhorizon-qt5-ed87a0251092aa94f81fcc3ba559f340d2360b43.tar.gz
horizon-qt5-ed87a0251092aa94f81fcc3ba559f340d2360b43.tar.bz2
horizon-qt5-ed87a0251092aa94f81fcc3ba559f340d2360b43.tar.xz
horizon-qt5-ed87a0251092aa94f81fcc3ba559f340d2360b43.zip
Add help window and welcome help text
Diffstat (limited to 'horizonhelpwindow.hh')
-rw-r--r--horizonhelpwindow.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/horizonhelpwindow.hh b/horizonhelpwindow.hh
new file mode 100644
index 0000000..a84d33b
--- /dev/null
+++ b/horizonhelpwindow.hh
@@ -0,0 +1,17 @@
+#ifndef HORIZONHELPWINDOW_HH
+#define HORIZONHELPWINDOW_HH
+
+#include <QDialog>
+#include <QFile>
+
+class HorizonHelpWindow : public QDialog
+{
+ Q_OBJECT
+public:
+ explicit HorizonHelpWindow(QFile *helpFile, QWidget *parent = 0);
+
+private:
+ QFile *helpFile;
+};
+
+#endif // HORIZONHELPWINDOW_HH