Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
rowmove_tree_view.h
Go to the documentation of this file.
1
15#ifndef ROWMOVE_TREE_VIEW_H
16#define ROWMOVE_TREE_VIEW_H
17
18#include <config.h>
20
26{
27 Q_OBJECT
28
29public:
34 RowMoveTreeView(QWidget *parent = nullptr);
35
36protected:
41 void dropEvent(QDropEvent *event) override;
42};
43#endif // ROWMOVE_TREE_VIEW_H
A tree view that moves to the next column (same row) on Tab while editing, rather than the next row (...
Definition rowmove_tree_view.h:26
void dropEvent(QDropEvent *event) override
Handles drop events for row reordering within the tree.
Definition rowmove_tree_view.cpp:40
A QTreeView variant that advances to the next column (same row) on Tab instead of the next row (same ...
Definition tabnav_tree_view.h:26