wireshark/ui/qt/models/proto_tree_model.h
Gerald Combs bdb6baa740 Qt: Switch ProtoTree to a treeview+model.
Add a ProtoTreeModel and use it in ProtoTree. This should make the UI
more responsive when we have lots of items in the tree.

Change-Id: Id26e6bcff84663867a8da17fd9ae86ff639b633f
Reviewed-on: https://code.wireshark.org/review/24774
Reviewed-by: Gerald Combs <gerald@wireshark.org>
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2017-12-15 20:58:14 +00:00

59 lines
1.5 KiB
C++

/* proto_tree_model.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0+
*/
#ifndef PROTO_TREE_MODEL_H
#define PROTO_TREE_MODEL_H
#include <ui/qt/utils/proto_node.h>
#include <QAbstractItemModel>
#include <QModelIndex>
class ProtoTreeModel : public QAbstractItemModel
{
Q_OBJECT
public:
explicit ProtoTreeModel(QObject * parent = 0);
QModelIndex index(int row, int, const QModelIndex &parent = QModelIndex()) const;
virtual QModelIndex parent(const QModelIndex &index) const;
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual int columnCount(const QModelIndex &) const { return 1; }
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
// root_node can be NULL.
void setRootNode(proto_node *root_node);
ProtoNode protoNodeFromIndex(const QModelIndex &index) const;
QModelIndex indexFromProtoNode(ProtoNode &index_node) const;
QModelIndex findFirstHfid(int hf_id);
QModelIndex findFieldInformation(FieldInformation *finfo);
private:
proto_node* root_node_;
static void foreachFindHfid(proto_node *node, gpointer find_hfid_ptr);
static void foreachFindField(proto_node *node, gpointer find_finfo_ptr);
};
#endif // PROTO_TREE_MODEL_H
/*
* Editor modelines
*
* Local Variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/