Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
export_objects_view.h
1 /* export_objects_view.h
2  * Tree view of Export object data.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef EXPORT_OBJECTS_VIEW_H
12 #define EXPORT_OBJECTS_VIEW_H
13 
14 #include <config.h>
15 #include <QTreeView>
16 
17 class ExportObjectsTreeView : public QTreeView
18 {
19  Q_OBJECT
20 public:
21  ExportObjectsTreeView(QWidget *parent = 0);
22 
23 signals:
24  void goToPacket(int packet_num);
25 
26 protected slots:
27  void currentChanged(const QModelIndex &current, const QModelIndex &previous);
28 };
29 #endif // EXPORT_OBJECTS_VIEW_H
30 
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: export_objects_view.h:17