summaryrefslogtreecommitdiff
path: root/ui/qt/about_dialog.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-01-02 17:04:10 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-01-02 17:04:10 +0000
commitf5c6f39201ffaff122d0de32d9db10497a89cd07 (patch)
treebdce5fb38088dedeecf6b063b37de557aaeeee58 /ui/qt/about_dialog.h
parent5490a6636d17ab525b61bf51168b3392260c5c4d (diff)
downloadwireshark-f5c6f39201ffaff122d0de32d9db10497a89cd07.tar.gz
Add About window for Wireshark Qt
svn path=/trunk/; revision=54557
Diffstat (limited to 'ui/qt/about_dialog.h')
-rw-r--r--ui/qt/about_dialog.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/ui/qt/about_dialog.h b/ui/qt/about_dialog.h
new file mode 100644
index 0000000000..f077e9748f
--- /dev/null
+++ b/ui/qt/about_dialog.h
@@ -0,0 +1,60 @@
+/* about_dialog.h
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef ABOUT_DIALOG_H
+#define ABOUT_DIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class AboutDialog;
+}
+
+class AboutDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit AboutDialog(QWidget *parent = 0);
+ ~AboutDialog();
+
+ void about_folders_row(const char *, const char *dir, const char *typ_file);
+ void plugins_scan();
+private:
+ Ui::AboutDialog *ui;
+};
+
+#endif // ABOUT_DIALOG_H
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */