From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/qt/byte_view_tab.h | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 ui/qt/byte_view_tab.h (limited to 'ui/qt/byte_view_tab.h') diff --git a/ui/qt/byte_view_tab.h b/ui/qt/byte_view_tab.h new file mode 100644 index 00000000..dbf96c13 --- /dev/null +++ b/ui/qt/byte_view_tab.h @@ -0,0 +1,78 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef BYTE_VIEW_TAB_H +#define BYTE_VIEW_TAB_H + +#include + +#include +#include +#include + +#include + +#include "cfile.h" + +#include + + +#include + +class ByteViewTab : public QTabWidget +{ + Q_OBJECT + +public: + explicit ByteViewTab(QWidget *parent = 0, epan_dissect_t *edt_fixed = 0); + +public slots: + /* Set the capture file */ + void setCaptureFile(capture_file *cf); + /* Creates the tabs and data, depends on an dissection which has already run */ + void selectedFrameChanged(QList); + /* Selects or marks a field */ + void selectedFieldChanged(FieldInformation *); + /* Highlights field */ + void highlightedFieldChanged(FieldInformation *); + void captureFileClosing(void); + +signals: + void fieldSelected(FieldInformation *); + void fieldHighlight(FieldInformation *); + void byteViewSettingsChanged(void); + void byteViewUnmarkField(void); + void detachData(void); + +private: + capture_file *cap_file_; + bool is_fixed_packet_; /* true if this byte view is related to a single + packet in the packet dialog and false if the + packet dissection context can change. */ + epan_dissect_t *edt_; /* Packet dissection result for the currently selected packet. */ + bool disable_hover_; + + void setTabsVisible(); + ByteViewText * findByteViewTextForTvb(tvbuff_t * search, int * idx = 0); + void addTab(const char *name = "", tvbuff_t *tvb = NULL); + +protected: + void tabInserted(int); + void tabRemoved(int); + +private slots: + void byteViewTextHovered(int); + void byteViewTextMarked(int); + + void connectToMainWindow(); + + void captureActive(int); +}; + +#endif // BYTE_VIEW_TAB_H -- cgit v1.2.3