aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/credentials_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/credentials_dialog.h')
-rw-r--r--ui/qt/credentials_dialog.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/ui/qt/credentials_dialog.h b/ui/qt/credentials_dialog.h
new file mode 100644
index 0000000000..a2a881bd39
--- /dev/null
+++ b/ui/qt/credentials_dialog.h
@@ -0,0 +1,55 @@
+/*
+ * credentials_dialog.h
+ *
+ * Copyright 2019 - Dario Lombardo <lomato@gmail.com>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef CREDENTIALS_DIALOG_H
+#define CREDENTIALS_DIALOG_H
+
+#include "config.h"
+
+#include <wireshark_dialog.h>
+#include "packet_list.h"
+#include <ui/tap-credentials.h>
+
+namespace Ui {
+class CredentialsDialog;
+}
+
+class CredentialsDialog : public WiresharkDialog
+{
+ Q_OBJECT
+
+public:
+ explicit CredentialsDialog(QWidget &parent, CaptureFile &cf, PacketList *packet_list);
+ ~CredentialsDialog();
+
+private slots:
+ void actionGoToPacket(const QModelIndex&);
+
+private:
+ Ui::CredentialsDialog *ui;
+ PacketList *packet_list_;
+};
+
+#endif // CREDENTIALS_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:
+ */