]> git.sesse.net Git - nageru/blobdiff - shared/aboutdialog.h
Give Futatabi an about/license dialog, and the same manual link as Nageru.
[nageru] / shared / aboutdialog.h
diff --git a/shared/aboutdialog.h b/shared/aboutdialog.h
new file mode 100644 (file)
index 0000000..ddc9dec
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef _ABOUTDIALOG_H
+#define _ABOUTDIALOG_H 1
+
+#include <QDialog>
+#include <QString>
+
+#include <string>
+
+class QObject;
+
+namespace Ui {
+class AboutDialog;
+}  // namespace Ui
+
+class AboutDialog : public QDialog
+{
+       Q_OBJECT
+
+public:
+       AboutDialog(const std::string &program, const std::string &subheading);
+
+private:
+       Ui::AboutDialog *ui;
+};
+
+#endif  // !defined(_ABOUTDIALOG_H)