Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
resize_header_view.h
Go to the documentation of this file.
1
14#ifndef RESIZE_HEADER_VIEW_H
15#define RESIZE_HEADER_VIEW_H
16
17#include <config.h>
18#include <QHeaderView>
19
24class ResizeHeaderView : public QHeaderView
25{
26 Q_OBJECT
27
28public:
34 ResizeHeaderView(Qt::Orientation orientation, QWidget *parent = nullptr);
35
36protected:
42 void contextMenuEvent(QContextMenuEvent *e) override;
43};
44#endif // RESIZE_HEADER_VIEW_H
QHeaderView subclass that adds a context menu for interactively resizing or resetting column (or row)...
Definition resize_header_view.h:25
void contextMenuEvent(QContextMenuEvent *e) override
Presents a context menu at the position of e, offering actions to resize sections to their contents o...
Definition resize_header_view.cpp:32