Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2016-11-24 02:26:42 +0300
committerMikkel Krautz <mikkel@krautz.dk>2016-11-24 02:27:32 +0300
commit821d547d1998bade468c8098fdc2c4f2bc58c922 (patch)
treecf21862cce52b3698c9479d93b09bab5dec8937a /src/murmur/About.h
parent33ae63e23937eadce6908e4ab721c02ecd139bba (diff)
Add About dialog to Murmur.
Diffstat (limited to 'src/murmur/About.h')
-rw-r--r--src/murmur/About.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/murmur/About.h b/src/murmur/About.h
new file mode 100644
index 000000000..095b4f2ed
--- /dev/null
+++ b/src/murmur/About.h
@@ -0,0 +1,25 @@
+// Copyright 2005-2016 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_MURMUR_ABOUT_H_
+#define MUMBLE_MURMUR_ABOUT_H_
+
+#include <QtCore/QtGlobal>
+#include <QtCore/QObject>
+#if QT_VERSION >= 0x050000
+# include <QtWidgets/QDialog>
+#else
+# include <QtGui/QDialog>
+#endif
+
+class AboutDialog : public QDialog {
+ private:
+ Q_OBJECT
+ Q_DISABLE_COPY(AboutDialog)
+ public:
+ AboutDialog(QWidget *parent);
+};
+
+#endif