aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/widgets/export_objects_view.h
blob: 172abbd83952f826c1020742e5411af1065fdd3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* export_objects_view.h
 * Tree view of Export object data.
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef EXPORT_OBJECTS_VIEW_H
#define EXPORT_OBJECTS_VIEW_H

#include <config.h>
#include <QTreeView>

class ExportObjectsTreeView : public QTreeView
{
    Q_OBJECT
public:
    ExportObjectsTreeView(QWidget *parent = 0);

signals:
    void currentIndexChanged(const QModelIndex &current);

protected slots:
    void currentChanged(const QModelIndex &current, const QModelIndex &previous);
};
#endif // EXPORT_OBJECTS_VIEW_H