summaryrefslogtreecommitdiffstats
path: root/ui/qt/address_editor_frame.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/qt/address_editor_frame.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/qt/address_editor_frame.h')
-rw-r--r--ui/qt/address_editor_frame.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/ui/qt/address_editor_frame.h b/ui/qt/address_editor_frame.h
new file mode 100644
index 0000000..a4981e3
--- /dev/null
+++ b/ui/qt/address_editor_frame.h
@@ -0,0 +1,63 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef ADDRESS_EDITOR_FRAME_H
+#define ADDRESS_EDITOR_FRAME_H
+
+#include "accordion_frame.h"
+
+#include "capture_file.h"
+
+#include <ui/qt/utils/field_information.h>
+#include <ui/qt/utils/proto_node.h>
+
+namespace Ui {
+class AddressEditorFrame;
+}
+
+struct epan_column_info;
+
+class AddressEditorFrame : public AccordionFrame
+{
+ Q_OBJECT
+
+public:
+ explicit AddressEditorFrame(QWidget *parent = 0);
+ ~AddressEditorFrame();
+
+public slots:
+ void editAddresses(CaptureFile &cf, int column = -1);
+
+signals:
+ void showNameResolutionPreferences(const QString module_name);
+ void redissectPackets();
+
+protected:
+ virtual void showEvent(QShowEvent *event);
+ virtual void keyPressEvent(QKeyEvent *event);
+
+private slots:
+ void displayPreviousUserDefinedHostname();
+ void updateWidgets();
+ void on_nameResolutionPreferencesToolButton_clicked();
+ void on_addressComboBox_currentIndexChanged(int idx);
+ void on_nameLineEdit_textEdited(const QString &);
+ void on_buttonBox_accepted();
+ void on_buttonBox_rejected();
+
+private:
+ Ui::AddressEditorFrame *ui;
+ capture_file *cap_file_;
+
+ static QString addressToString(const FieldInformation& finfo);
+ static void addAddresses(const ProtoNode& node, QStringList& addresses);
+ bool isAddressColumn(struct epan_column_info *cinfo, int column);
+};
+
+#endif // ADDRESS_EDITOR_FRAME_H