diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/qt/byte_view_tab.h | |
parent | Initial commit. (diff) | |
download | wireshark-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/byte_view_tab.h')
-rw-r--r-- | ui/qt/byte_view_tab.h | 78 |
1 files changed, 78 insertions, 0 deletions
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 <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef BYTE_VIEW_TAB_H +#define BYTE_VIEW_TAB_H + +#include <config.h> + +#include <epan/packet.h> +#include <epan/proto.h> +#include <epan/tvbuff.h> + +#include <ui/qt/utils/field_information.h> + +#include "cfile.h" + +#include <QTabWidget> + + +#include <ui/qt/widgets/byte_view_text.h> + +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<int>); + /* 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 |