aboutsummaryrefslogtreecommitdiff
path: root/about.h
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-02-10 21:24:06 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-02-10 21:24:06 -0500
commit1a92e988d63753d2904ac775c4b30589e76c7e5c (patch)
tree0a446ad31a46eefa580d1741190bf653fe9a3f56 /about.h
parentf9ab17d41c3c403eba221f7bc176d01efebe8d03 (diff)
downloadAleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.gz
AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.bz2
AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.zip
Added about dialog, address bar works
Diffstat (limited to 'about.h')
-rw-r--r--about.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/about.h b/about.h
new file mode 100644
index 0000000..a88d2ac
--- /dev/null
+++ b/about.h
@@ -0,0 +1,22 @@
+#ifndef ABOUT_H
+#define ABOUT_H
+
+#include <QDialog>
+
+namespace Ui {
+class About;
+}
+
+class About : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit About(QWidget *parent = nullptr);
+ ~About();
+
+private:
+ Ui::About *ui;
+};
+
+#endif // ABOUT_H