Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
tabnav_tree_widget.h
1 /* tabnav_tree_widget.h
2  * Tree widget with saner tab navigation properties.
3  *
4  * Copyright 2017 Peter Wu <peter@lekensteyn.nl>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef TABNAV_TREE_WIDGET_H
14 #define TABNAV_TREE_WIDGET_H
15 
16 #include <config.h>
17 #include <QTreeWidget>
18 
23 class TabnavTreeWidget : public QTreeWidget
24 {
25  Q_OBJECT
26 public:
27  TabnavTreeWidget(QWidget *parent = 0);
28  QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
29 };
30 #endif // TABNAV_TREE_WIDGET_H
31 
32 /* * Editor modelines
33  *
34  * Local Variables:
35  * c-basic-offset: 4
36  * tab-width: 8
37  * indent-tabs-mode: nil
38  * End:
39  *
40  * ex: set shiftwidth=4 tabstop=8 expandtab:
41  * :indentSize=4:tabSize=8:noTabs=true:
42  */
Definition: tabnav_tree_widget.h:23